Searched refs:is64Bit (Results 1 - 25 of 61) sorted by relevance

123

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCAsmInfo.cpp21 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit, const Triple& T) { argument
22 if (is64Bit) {
30 if (!is64Bit)
47 PPCELFMCAsmInfo::PPCELFMCAsmInfo(bool is64Bit, const Triple& T) { argument
52 if (is64Bit) {
77 Data64bitsDirective = is64Bit ? "\t.quad\t" : nullptr;
H A DPPCMCAsmInfo.h27 explicit PPCMCAsmInfoDarwin(bool is64Bit, const Triple&);
33 explicit PPCELFMCAsmInfo(bool is64Bit, const Triple&);
H A DPPCELFObjectWriter.cpp234 if (is64Bit())
249 if (is64Bit())
348 if (is64Bit())
354 if (is64Bit())
360 if (is64Bit())
/external/llvm/lib/Target/Sparc/
H A DSparcSubtarget.cpp54 bool is64Bit)
55 : SparcGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit),
61 if (is64Bit()) {
52 SparcSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, TargetMachine &TM, bool is64Bit) argument
H A DSparcTargetMachine.cpp27 static std::string computeDataLayout(bool is64Bit) { argument
32 if (!is64Bit)
40 if (is64Bit)
45 if (is64Bit)
H A DSparcSubtarget.h76 bool is64Bit() const { return Is64Bit; } function in class:llvm::SparcSubtarget
81 return is64Bit() ? 2047 : 0;
H A DSparcRegisterInfo.cpp68 if (!Subtarget.is64Bit())
93 return Subtarget.is64Bit() ? &SP::I64RegsRegClass : &SP::IntRegsRegClass;
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.cpp45 bool is64Bit = T.getArch() == Triple::x86_64; local
46 if (is64Bit)
53 if (!is64Bit)
90 bool is64Bit = T.getArch() == Triple::x86_64; local
96 PointerSize = (is64Bit && !isX32) ? 8 : 4;
99 CalleeSaveStackSlotSize = is64Bit ? 8 : 4;
H A DX86MCTargetDesc.cpp120 bool is64Bit = TheTriple.getArch() == Triple::x86_64; local
124 if (is64Bit)
143 int stackGrowth = is64Bit ? -8 : -4;
146 unsigned StackPtr = is64Bit ? X86::RSP : X86::ESP;
152 unsigned InstPtr = is64Bit ? X86::RIP : X86::EIP;
166 bool is64Bit = T.getArch() == Triple::x86_64; local
173 if (is64Bit)
177 } else if (T.isOSWindows() && is64Bit)
188 if (is64Bit)
196 if (RM == Reloc::Static && T.isOSDarwin() && is64Bit)
[all...]
/external/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/llvm/lib/MC/
H A DMachObjectWriter.cpp141 Write32(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC);
150 if (is64Bit())
154 (is64Bit()?sizeof(MachO::mach_header_64): sizeof(MachO::mach_header)));
172 is64Bit() ? sizeof(MachO::segment_command_64):
174 Write32(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT);
176 NumSections * (is64Bit() ? sizeof(MachO::section_64) :
180 if (is64Bit()) {
224 if (is64Bit()) {
244 if (is64Bit())
247 assert(OS.tell() - Start == (is64Bit()
419 ComputeLinkerOptionsLoadCommandSize( const std::vector<std::string> &Options, bool is64Bit) argument
[all...]
H A DELFObjectWriter.cpp158 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } function in class:__anon10559::ELFObjectWriter
190 if (is64Bit())
420 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
445 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
451 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
613 SymbolTableWriter Writer(Asm, FWriter, is64Bit(), SectionIndexMap, SymtabF);
1125 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
1127 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
1296 RelSD.setAlignment(is64Bit()
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DJmeSystemDelegate.java105 private boolean is64Bit(String arch) { method in class:JmeSystemDelegate
128 boolean is64 = is64Bit(arch);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXFrameLowering.cpp47 if (static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit()) {
H A DNVPTXTargetMachine.h46 bool is64Bit() const { return is64bit; } function in class:llvm::NVPTXTargetMachine
H A DNVPTXTargetMachine.cpp75 static std::string computeDataLayout(bool is64Bit) { argument
78 if (!is64Bit)
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.cpp60 bool is64Bit = T.getArch() == Triple::ppc64 || T.getArch() == Triple::ppc64le; local
73 if (!is64Bit || T.getOS() == Triple::Lv2)
78 if (is64Bit || !T.isOSDarwin())
84 if (is64Bit)
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp132 if (Subtarget.is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
161 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX : X86::ECX,
164 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI : X86::EDI,
247 AVT = Subtarget.is64Bit() ? MVT::i64 : MVT::i32;
255 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RCX :
259 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RDI :
263 Chain = DAG.getCopyToReg(Chain, dl, Subtarget.is64Bit() ? X86::RSI :
H A DX86Subtarget.cpp167 is64Bit();
304 is64Bit() ? -8 : -4) {
309 } else if (is64Bit()) {
H A DX86Subtarget.h299 bool is64Bit() const { function in class:llvm::final
403 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
404 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
/external/llvm/test/tools/llvm-readobj/Inputs/
H A Drelocs.py91 self.is64Bit = None
143 if self.is64Bit:
149 if self.is64Bit:
203 if f.is64Bit:
265 f.is64Bit = False
267 f.is64Bit = True
281 if e_machine == 0x0008 and f.is64Bit: # EM_MIPS && 64 bit
370 f.isLSB, f.is64Bit = False, False
372 f.isLSB, f.is64Bit = True, False
374 f.isLSB, f.is64Bit
[all...]
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp68 if (O->is64Bit())
78 if (O->is64Bit()) {
92 bool Is64 = O->is64Bit();
239 if (O->is64Bit()) {
258 MachO::LoadCommandType SegmentLoadType = is64Bit() ?
307 const unsigned SegmentLoadSize = this->is64Bit()
336 unsigned SymbolTableEntrySize = is64Bit() ?
366 if (is64Bit()) {
386 if (is64Bit()) {
558 if (is64Bit())
1699 MachORebaseEntry(ArrayRef<uint8_t> Bytes, bool is64Bit) argument
1871 MachOBindEntry(ArrayRef<uint8_t> Bytes, bool is64Bit, Kind BK) argument
2591 bool MachOObjectFile::is64Bit() const { function in class:MachOObjectFile
[all...]
/external/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h58 bool is64Bit() const { return Is64Bit; } function in class:llvm::MCMachObjectTargetWriter
161 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } function in class:llvm::MachObjectWriter
H A DMCELFObjectWriter.h84 bool is64Bit() const { return Is64Bit; } function in class:llvm::MCELFObjectTargetWriter
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp219 bool is64Bit() const { function in class:__anon10874::SparcAsmBackend
249 return createSparcELFObjectWriter(OS, is64Bit(), OSABI);

Completed in 491 milliseconds

123