Searched refs:IsLP64 (Results 1 – 5 of 5) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86FrameLowering.cpp | 53 IsLP64 = STI.isTarget64BitLP64(); in X86FrameLowering() 105 static unsigned getSUBriOpcode(bool IsLP64, int64_t Imm) { in getSUBriOpcode() argument 106 if (IsLP64) { in getSUBriOpcode() 117 static unsigned getADDriOpcode(bool IsLP64, int64_t Imm) { in getADDriOpcode() argument 118 if (IsLP64) { in getADDriOpcode() 129 static unsigned getSUBrrOpcode(bool IsLP64) { in getSUBrrOpcode() argument 130 return IsLP64 ? X86::SUB64rr : X86::SUB32rr; in getSUBrrOpcode() 133 static unsigned getADDrrOpcode(bool IsLP64) { in getADDrrOpcode() argument 134 return IsLP64 ? X86::ADD64rr : X86::ADD32rr; in getADDrrOpcode() 137 static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) { in getANDriOpcode() argument [all …]
|
| H A D | X86FrameLowering.h | 42 bool IsLP64; variable
|
| H A D | X86InstrCompiler.td | 60 "#ADJCALLSTACKDOWN", []>, Requires<[IsLP64]>; 64 Requires<[IsLP64]>; 67 (ADJCALLSTACKDOWN64 i32imm:$amt1, i32imm:$amt2, 0)>, Requires<[IsLP64]>; 95 (implicit EFLAGS)]>, Requires<[In64BitMode, IsLP64]>; 377 Requires<[IsLP64]>; 381 Requires<[IsLP64]>; 385 Requires<[IsLP64]>; 389 Requires<[IsLP64]>; 421 Requires<[IsLP64]>; 426 Requires<[IsLP64]>; [all …]
|
| H A D | X86ISelLowering.cpp | 32775 static unsigned getSUBriOpcode(bool IsLP64, int64_t Imm) { in getSUBriOpcode() argument 32776 if (IsLP64) { in getSUBriOpcode() 32892 const bool IsLP64 = Subtarget.isTarget64BitLP64(); in EmitLoweredSegAlloca() local 32895 const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30; in EmitLoweredSegAlloca() 32927 IsLP64 || Subtarget.isTargetNaCl64() ? X86::RSP : X86::ESP; in EmitLoweredSegAlloca() 32942 BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg) in EmitLoweredSegAlloca() 32944 BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr)) in EmitLoweredSegAlloca() 32960 if (IsLP64) { in EmitLoweredSegAlloca() 32991 .addReg(IsLP64 ? X86::RAX : X86::EAX); in EmitLoweredSegAlloca()
|
| H A D | X86InstrInfo.td | 1000 def IsLP64 : Predicate<"Subtarget->isTarget64BitLP64()">;
|