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

/freebsd-10.2-release/contrib/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp58 static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) { argument
59 if (IsLP64) {
70 static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) { argument
71 if (IsLP64) {
82 static unsigned getLEArOpcode(unsigned IsLP64) { argument
83 return IsLP64 ? X86::LEA64r : X86::LEA32r;
148 bool Is64Bit, bool IsLP64, bool UseLEA,
154 Opc = getLEArOpcode(IsLP64);
157 ? getSUBriOpcode(IsLP64, Offset)
158 : getADDriOpcode(IsLP64, Offse
146 emitSPUpdate(MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, unsigned StackPtr, int64_t NumBytes, bool Is64Bit, bool IsLP64, bool UseLEA, const TargetInstrInfo &TII, const TargetRegisterInfo &TRI) argument
[all...]

Completed in 40 milliseconds