Searched refs:IsLP64 (Results 1 – 5 of 5) sorted by relevance
/external/llvm/lib/Target/X86/ |
D | X86FrameLowering.cpp | 46 IsLP64 = STI.isTarget64BitLP64(); in X86FrameLowering() 98 static unsigned getSUBriOpcode(unsigned IsLP64, int64_t Imm) { in getSUBriOpcode() argument 99 if (IsLP64) { in getSUBriOpcode() 110 static unsigned getADDriOpcode(unsigned IsLP64, int64_t Imm) { in getADDriOpcode() argument 111 if (IsLP64) { in getADDriOpcode() 130 static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) { in getANDriOpcode() argument 131 if (IsLP64) { in getANDriOpcode() 141 static unsigned getLEArOpcode(unsigned IsLP64) { in getLEArOpcode() argument 142 return IsLP64 ? X86::LEA64r : X86::LEA32r; in getLEArOpcode() 2056 GetScratchRegister(bool Is64Bit, bool IsLP64, const MachineFunction &MF, bool Primary) { in GetScratchRegister() argument [all …]
|
D | X86FrameLowering.h | 41 bool IsLP64; variable
|
D | X86InstrCompiler.td | 68 Requires<[IsLP64]>; 72 Requires<[IsLP64]>; 75 (ADJCALLSTACKDOWN64 i32imm:$amt1, 0)>, Requires<[IsLP64]>; 1183 Requires<[IsLP64]>; 1187 Requires<[IsLP64]>;
|
D | X86ISelLowering.cpp | 23465 const bool IsLP64 = Subtarget.isTarget64BitLP64(); in EmitLoweredSegAlloca() local 23468 const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30; in EmitLoweredSegAlloca() 23500 IsLP64 || Subtarget.isTargetNaCl64() ? X86::RSP : X86::ESP; in EmitLoweredSegAlloca() 23515 BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg) in EmitLoweredSegAlloca() 23517 BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr)) in EmitLoweredSegAlloca() 23533 if (IsLP64) { in EmitLoweredSegAlloca() 23564 .addReg(IsLP64 ? X86::RAX : X86::EAX); in EmitLoweredSegAlloca()
|
D | X86InstrInfo.td | 861 def IsLP64 : Predicate<"Subtarget->isTarget64BitLP64()">;
|