HomeSort by relevance Sort by last modified time
    Searched defs:is64Bit (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 26 bool is64Bit;
30 is64Bit = tmIs64Bit;
PPCInstrInfo.cpp 506 bool is64Bit = TM.getSubtargetImpl()->isPPC64();
510 (is64Bit ? PPC::X2 : PPC::R2) :
511 (is64Bit ? PPC::X0 : PPC::R0);
512 NewMIs.push_back(BuildMI(MF, DL, get(is64Bit ? PPC::MFCR8pseud :
521 NewMIs.push_back(BuildMI(MF, DL, get(is64Bit ? PPC::RLWINM8 :
527 NewMIs.push_back(addFrameReference(BuildMI(MF, DL, get(is64Bit ?
PPCRegisterInfo.cpp 227 bool is64Bit = Subtarget.isPPC64();
229 unsigned StackReg = is64Bit ? PPC::X1 : PPC::R1;
230 unsigned TmpReg = is64Bit ? PPC::X0 : PPC::R0;
231 unsigned ADDIInstr = is64Bit ? PPC::ADDI8 : PPC::ADDI;
232 unsigned ADDInstr = is64Bit ? PPC::ADD8 : PPC::ADD4;
233 unsigned LISInstr = is64Bit ? PPC::LIS8 : PPC::LIS;
234 unsigned ORIInstr = is64Bit ? PPC::ORI8 : PPC::ORI;
538 bool is64Bit = Subtarget.isPPC64();
540 (is64Bit ? PPC::X31 : PPC::R31) :
541 (is64Bit ? PPC::X1 : PPC::R1)
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.h 31 bool Is64Bit;
35 const std::string &FS, bool is64bit);
45 bool is64Bit() const { return Is64Bit; }
48 if (is64Bit()) {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 41 bool is64Bit = T.getArch() == Triple::x86_64;
42 if (is64Bit)
49 if (!is64Bit)
X86MCTargetDesc.cpp 374 bool is64Bit = TheTriple.getArch() == Triple::x86_64;
378 if (is64Bit)
392 int stackGrowth = is64Bit ? -8 : -4;
396 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
400 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
401 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP);
413 bool is64Bit = T.getArch() == Triple::x86_64;
420 if (is64Bit)
424 } else if (T.isOSWindows() && is64Bit)
435 if (is64Bit)
    [all...]
  /external/llvm/include/llvm/Object/
MachOObject.h 61 bool Is64Bit;
79 MachOObject(MemoryBuffer *Buffer, bool IsLittleEndian, bool Is64Bit);
100 bool is64Bit() const { return Is64Bit; }
103 return Is64Bit ? macho::Header64Size : macho::Header32Size;
130 assert(is64Bit() && "Invalid access!");
  /external/llvm/include/llvm/Support/
OutputBuffer.h 27 /// is64Bit/isLittleEndian - This information is inferred from the target
29 bool is64Bit, isLittleEndian;
32 bool is64bit, bool le)
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
105 if (!is64Bit)
150 if (!is64Bit)
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
JmeSystemDelegate.java 105 private boolean is64Bit(String arch) {
128 boolean is64 = is64Bit(arch);
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 56 const unsigned Is64Bit : 1;
99 bool is64Bit() const { return Is64Bit; }
MCMachObjectWriter.h 28 const unsigned Is64Bit : 1;
51 bool is64Bit() const { return Is64Bit; }
142 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
  /external/llvm/include/llvm/Target/
TargetELFWriterInfo.h 28 bool is64Bit, isLittleEndian;
67 unsigned getEIClass() const { return is64Bit ? ELFCLASS64 : ELFCLASS32; }
73 unsigned getHdrSize() const { return is64Bit ? 64 : 52; }
74 unsigned getSHdrSize() const { return is64Bit ? 64 : 40; }
77 unsigned getSymTabEntrySize() const { return is64Bit ? 24 : 16; }
81 unsigned getPrefELFAlignment() const { return is64Bit ? 8 : 4; }
85 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
  /external/llvm/lib/Target/NVPTX/
NVPTXSubtarget.h 33 bool Is64Bit;
40 const std::string &FS, bool is64Bit);
66 bool is64Bit() const { return Is64Bit; }
76 if (is64Bit())
  /frameworks/rs/
rsFileA3D.cpp 317 uint32_t is64Bit = 0;
318 headerStream.addU32(is64Bit);
  /external/llvm/lib/Target/X86/
X86Subtarget.h 171 unsigned StackAlignOverride, bool is64Bit);
190 bool is64Bit() const { return In64BitMode; }
249 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
250 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
X86InstrInfo.cpp 94 : X86GenInstrInfo((tm.getSubtarget<X86Subtarget>().is64Bit()
97 (tm.getSubtarget<X86Subtarget>().is64Bit()
    [all...]
X86ISelLowering.cpp 139 bool is64Bit = Subtarget->is64Bit();
142 if (is64Bit)
161 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
179 else if (Subtarget->is64Bit())
227 if (Subtarget->is64Bit())
254 if (Subtarget->is64Bit()) {
311 if (Subtarget->is64Bit()) {
337 if (Subtarget->is64Bit()) {
374 if (Subtarget->is64Bit())
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 137 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
163 if (is64Bit())
387 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
406 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
413 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
419 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
451 if (is64Bit()) {
737 if (is64Bit())
758 if (is64Bit())
    [all...]

Completed in 1045 milliseconds