Searched defs:is64Bit (Results 1 - 25 of 64) sorted by last modified time

123

/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DBinaryObject.h40 BinaryObject(bool isLittleEndian, bool is64Bit) argument
41 : IsLittleEndian(isLittleEndian), Is64Bit(is64Bit) {}
43 BinaryObject(const std::string &name, bool isLittleEndian, bool is64Bit) argument
44 : Name(name), IsLittleEndian(isLittleEndian), Is64Bit(is64Bit) {}
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCELFObjectWriter.h34 bool is64Bit() { return Is64Bit; } function in class:llvm::MCELFObjectTargetWriter
H A DMCMachObjectWriter.h51 bool is64Bit() const { return Is64Bit; } function in class:llvm::MCMachObjectTargetWriter
142 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } function in class:llvm::MachObjectWriter
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DMachOObject.h100 bool is64Bit() const { return Is64Bit; } function in class:llvm::object::MachOObject
130 assert(is64Bit() && "Invalid access!");
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DOutputBuffer.h27 /// is64Bit/isLittleEndian - This information is inferred from the target
29 bool is64Bit, isLittleEndian; member in class:llvm::OutputBuffer
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
105 if (!is64Bit)
150 if (!is64Bit)
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetELFWriterInfo.h31 bool is64Bit, isLittleEndian; member in class:llvm::TargetELFWriterInfo
69 unsigned getEIClass() const { return is64Bit ? ELFCLASS64 : ELFCLASS32; }
75 unsigned getHdrSize() const { return is64Bit ? 64 : 52; }
76 unsigned getSHdrSize() const { return is64Bit ? 64 : 40; }
79 unsigned getSymTabEntrySize() const { return is64Bit ? 24 : 16; }
83 unsigned getPrefELFAlignment() const { return is64Bit ? 8 : 4; }
87 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELF.h193 ELFSection(const std::string &name, bool isLittleEndian, bool is64Bit) argument
194 : BinaryObject(name, isLittleEndian, is64Bit), Type(0), Flags(0), Addr(0),
209 uint64_t getInfo(bool is64Bit) const {
210 if (is64Bit)
H A DELFWriter.h100 /// is64Bit/isLittleEndian - This information is inferred from the target
102 bool is64Bit, isLittleEndian; member in class:llvm::ELFWriter
159 SectionList.push_back(new ELFSection(Name, isLittleEndian, is64Bit));
/external/swiftshader/third_party/LLVM/lib/MC/
H A DELFObjectWriter.h158 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } function in class:llvm::ELFObjectWriter
174 if (is64Bit())
H A DWinCOFFObjectWriter.cpp142 WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit);
316 WinCOFFObjectWriter::WinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) argument
318 , Is64Bit(is64Bit) {
890 MCObjectWriter *createWinCOFFObjectWriter(raw_ostream &OS, bool is64Bit) { argument
891 return new WinCOFFObjectWriter(OS, is64Bit);
/external/swiftshader/third_party/LLVM/lib/Target/Mips/MCTargetDesc/
H A DMipsAsmBackend.cpp22 MipsELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine, argument
24 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine,
/external/swiftshader/third_party/LLVM/lib/Target/PTX/
H A DPTXSubtarget.cpp26 const std::string &FS, bool is64Bit)
32 Is64Bit(is64Bit) {
25 PTXSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DPTXSubtarget.h83 const std::string &FS, bool is64Bit);
92 bool is64Bit() const { return Is64Bit; } function in class:llvm::PTXSubtarget
H A DPTXTargetMachine.cpp91 bool is64Bit)
93 DataLayout(is64Bit ? DataLayout64 : DataLayout32),
94 Subtarget(TT, CPU, FS, is64Bit),
88 PTXTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, Reloc::Model RM, CodeModel::Model CM, bool is64Bit) argument
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCAsmInfo.cpp17 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) { argument
18 if (is64Bit)
26 if (!is64Bit)
33 PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) { argument
34 if (is64Bit)
58 if (!is64Bit)
62 Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCJITInfo.cpp49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ argument
55 } else if (!is64Bit) {
113 // r5 - is64Bit - always 0.
176 // r5 - is64Bit - always 0.
256 // r5 - is64Bit - always 1.
296 bool is64Bit) {
327 StubCallAddr -= is64Bit ? 9 : 6;
332 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
346 return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback;
377 EmitBranchToAt((intptr_t)Addr, (intptr_t)Fn, false, is64Bit);
294 PPCCompilationCallbackC(unsigned *StubCallAddrPlus4, unsigned *OrigCallAddrPlus4, bool is64Bit) argument
[all...]
H A DPPCJITInfo.h26 bool is64Bit; member in class:llvm::PPCJITInfo
30 is64Bit = tmIs64Bit;
H A DPPCRegisterInfo.cpp286 bool is64Bit = Subtarget.isPPC64(); local
288 unsigned StackReg = is64Bit ? PPC::X1 : PPC::R1;
289 unsigned TmpReg = is64Bit ? PPC::X0 : PPC::R0;
290 unsigned ADDIInstr = is64Bit ? PPC::ADDI8 : PPC::ADDI;
291 unsigned ADDInstr = is64Bit ? PPC::ADD8 : PPC::ADD4;
292 unsigned LISInstr = is64Bit ? PPC::LIS8 : PPC::LIS;
293 unsigned ORIInstr = is64Bit ? PPC::ORI8 : PPC::ORI;
H A DPPCSubtarget.cpp66 const std::string &FS, bool is64Bit)
73 , IsPPC64(is64Bit)
97 if (is64Bit) {
65 PPCSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DPPCTargetMachine.cpp32 bool is64Bit)
34 Subtarget(TT, CPU, FS, is64Bit),
36 FrameLowering(Subtarget), JITInfo(*this, is64Bit),
29 PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, Reloc::Model RM, CodeModel::Model CM, bool is64Bit) argument
/external/swiftshader/third_party/LLVM/lib/Target/Sparc/
H A DSparcSubtarget.cpp25 const std::string &FS, bool is64Bit) :
30 Is64Bit(is64Bit) {
35 if (is64Bit)
24 SparcSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DSparcSubtarget.h44 bool is64Bit() const { return Is64Bit; } function in class:llvm::SparcSubtarget
47 if (is64Bit()) {
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp60 X86ELFObjectWriter(bool is64Bit, Triple::OSType OSType, uint16_t EMachine, argument
62 : MCELFObjectTargetWriter(is64Bit, OSType, EMachine, HasRelocationAddend) {}
359 WindowsX86AsmBackend(const Target &T, bool is64Bit) argument
361 , Is64Bit(is64Bit) {
H A DX86MCAsmInfo.cpp52 bool is64Bit = T.getArch() == Triple::x86_64; local
53 if (is64Bit)
61 if (!is64Bit)
H A DX86MCTargetDesc.cpp302 bool is64Bit = TheTriple.getArch() == Triple::x86_64; local
306 if (is64Bit)
318 int stackGrowth = is64Bit ? -8 : -4;
322 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
326 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
327 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP);
338 bool is64Bit = T.getArch() == Triple::x86_64; local
345 if (is64Bit)
349 } else if (T.isOSWindows() && is64Bit)
360 if (is64Bit)
[all...]

Completed in 250 milliseconds

123