Searched refs:IsLP64 (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86FrameLowering.cpp | 45 IsLP64 = STI.isTarget64BitLP64(); in X86FrameLowering() 95 static unsigned getSUBriOpcode(bool IsLP64, int64_t Imm) { in getSUBriOpcode() argument 96 if (IsLP64) { in getSUBriOpcode() 107 static unsigned getADDriOpcode(bool IsLP64, int64_t Imm) { in getADDriOpcode() argument 108 if (IsLP64) { in getADDriOpcode() 119 static unsigned getSUBrrOpcode(bool IsLP64) { in getSUBrrOpcode() argument 120 return IsLP64 ? X86::SUB64rr : X86::SUB32rr; in getSUBrrOpcode() 123 static unsigned getADDrrOpcode(bool IsLP64) { in getADDrrOpcode() argument 124 return IsLP64 ? X86::ADD64rr : X86::ADD32rr; in getADDrrOpcode() 127 static unsigned getANDriOpcode(bool IsLP64, int64_t Imm) { in getANDriOpcode() argument [all …]
|
D | X86FrameLowering.h | 41 bool IsLP64; variable
|
D | X86InstrCompiler.td | 60 "#ADJCALLSTACKDOWN", []>, Requires<[IsLP64]>; 64 Requires<[IsLP64]>; 67 (ADJCALLSTACKDOWN64 i32imm:$amt1, i32imm:$amt2, 0)>, Requires<[IsLP64]>; 401 Requires<[IsLP64]>; 405 Requires<[IsLP64]>; 409 Requires<[IsLP64]>; 413 Requires<[IsLP64]>; 445 Requires<[IsLP64]>; 450 Requires<[IsLP64]>; 455 Requires<[IsLP64]>; [all …]
|
D | X86ISelLowering.cpp | 31082 const bool IsLP64 = Subtarget.isTarget64BitLP64(); in EmitLoweredSegAlloca() local 31085 const unsigned TlsOffset = IsLP64 ? 0x70 : Is64Bit ? 0x40 : 0x30; in EmitLoweredSegAlloca() 31117 IsLP64 || Subtarget.isTargetNaCl64() ? X86::RSP : X86::ESP; in EmitLoweredSegAlloca() 31132 BuildMI(BB, DL, TII->get(IsLP64 ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg) in EmitLoweredSegAlloca() 31134 BuildMI(BB, DL, TII->get(IsLP64 ? X86::CMP64mr:X86::CMP32mr)) in EmitLoweredSegAlloca() 31150 if (IsLP64) { in EmitLoweredSegAlloca() 31181 .addReg(IsLP64 ? X86::RAX : X86::EAX); in EmitLoweredSegAlloca()
|
D | X86InstrInfo.td | 955 def IsLP64 : Predicate<"Subtarget->isTarget64BitLP64()">;
|