Searched refs:UnclobberableGR64s (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionRetHardening.cpp76 std::bitset<X86::NUM_TARGET_REGS> UnclobberableGR64s; local
77 UnclobberableGR64s.set(X86::RSP); // can't clobber stack pointer
78 UnclobberableGR64s.set(X86::RIP); // can't clobber instruction pointer
79 UnclobberableGR64s.set(X86::RAX); // used for function return
80 UnclobberableGR64s.set(X86::RDX); // used for function return
84 UnclobberableGR64s.set(Reg);
86 if (!UnclobberableGR64s.test(Reg)) {

Completed in 77 milliseconds