Searched refs:IsLP64 (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86FrameLowering.cpp | 56 IsLP64 = STI.isTarget64BitLP64(); in X86FrameLowering() 110 static unsigned getSUBriOpcode(bool IsLP64, int64_t Imm) { in getSUBriOpcode() argument 111 if (IsLP64) { in getSUBriOpcode() 122 static unsigned getADDriOpcode(bool IsLP64, int64_t Imm) { in getADDriOpcode() argument 123 if (IsLP64) { in getADDriOpcode() 134 static unsigned getSUBrrOpcode(bool IsLP64) { in getSUBrrOpcode() argument 135 return IsLP64 ? X86::SUB64rr : X86::SUB32rr; in getSUBrrOpcode() 138 static unsigned getADDrrOpcode(bool IsLP64) { in getADDrrOpcode() argument 139 return IsLP64 ? X86::ADD64rr : X86::ADD32rr; in getADDrrOpcode() 142 static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) { in getANDriOpcode() argument [all …]
|
| H A D | X86FrameLowering.h | 48 bool IsLP64; variable
|
| H A D | X86InstrCompiler.td | 60 "#ADJCALLSTACKDOWN", []>, Requires<[IsLP64]>; 64 Requires<[IsLP64]>; 67 (ADJCALLSTACKDOWN64 i32imm:$amt1, i32imm:$amt2, 0)>, Requires<[IsLP64]>; 91 (implicit EFLAGS)]>, Requires<[In64BitMode, IsLP64]>; 412 Requires<[IsLP64]>; 416 Requires<[IsLP64]>; 420 Requires<[IsLP64]>; 424 Requires<[IsLP64]>; 456 Requires<[IsLP64]>; 461 Requires<[IsLP64]>; [all …]
|
| H A D | X86ISelLowering.cpp | 35976 static unsigned getSUBriOpcode(bool IsLP64, int64_t Imm) { in getSUBriOpcode() argument 35977 if (IsLP64) { in getSUBriOpcode() 36093 const bool IsLP64 = Subtarget.isTarget64BitLP64(); in EmitLoweredSegAlloca() local 36096 const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30; in EmitLoweredSegAlloca() 36128 IsLP64 || Subtarget.isTargetNaCl64() ? X86::RSP : X86::ESP; in EmitLoweredSegAlloca() 36143 BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg) in EmitLoweredSegAlloca() 36145 BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr)) in EmitLoweredSegAlloca() 36161 if (IsLP64) { in EmitLoweredSegAlloca() 36192 .addReg(IsLP64 ? X86::RAX : X86::EAX); in EmitLoweredSegAlloca()
|
| H A D | X86InstrInfo.td | 1014 def IsLP64 : Predicate<"Subtarget->isTarget64BitLP64()">;
|