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

  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 26 bool is64Bit;
30 is64Bit = tmIs64Bit;
PPCRegisterInfo.cpp 427 bool is64Bit = Subtarget.isPPC64();
429 (is64Bit ? PPC::X31 : PPC::R31) :
430 (is64Bit ? PPC::X1 : PPC::R1),
500 unsigned SReg = MF.getRegInfo().createVirtualRegister(is64Bit ? G8RC : GPRC);
503 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::LIS8 : PPC::LIS), SReg)
505 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::ORI8 : PPC::ORI), SReg)
PPCFrameLowering.cpp     [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 45 bool is64Bit = T.getArch() == Triple::x86_64;
46 if (is64Bit)
53 if (!is64Bit)
79 bool is64Bit = T.getArch() == Triple::x86_64;
85 PointerSize = (is64Bit && !isX32) ? 8 : 4;
88 CalleeSaveStackSlotSize = is64Bit ? 8 : 4;
X86MCTargetDesc.cpp 268 bool is64Bit = TheTriple.getArch() == Triple::x86_64;
272 if (is64Bit)
290 int stackGrowth = is64Bit ? -8 : -4;
294 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
298 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
299 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP);
311 bool is64Bit = T.getArch() == Triple::x86_64;
318 if (is64Bit)
322 } else if (T.isOSWindows() && is64Bit)
333 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;
101 bool is64Bit() const { return Is64Bit; }
MCMachObjectWriter.h 28 const unsigned Is64Bit : 1;
58 bool is64Bit() const { return Is64Bit; }
156 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
  /external/llvm/lib/Target/NVPTX/
NVPTXSubtarget.h 31 bool Is64Bit;
44 const std::string &FS, bool is64Bit);
71 bool is64Bit() const { return Is64Bit; }
83 if (is64Bit())
  /frameworks/rs/
rsFileA3D.cpp 317 uint32_t is64Bit = 0;
318 headerStream.addU32(is64Bit);
  /external/llvm/lib/Target/X86/
X86Subtarget.h 183 unsigned StackAlignOverride, bool is64Bit);
209 bool is64Bit() const {
284 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
285 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
X86InstrInfo.cpp 94 : X86GenInstrInfo((tm.getSubtarget<X86Subtarget>().is64Bit()
97 (tm.getSubtarget<X86Subtarget>().is64Bit()
    [all...]
X86ISelLowering.cpp 144 bool is64Bit = Subtarget->is64Bit();
147 if (is64Bit)
183 else if (Subtarget->is64Bit())
192 if (Subtarget->is64Bit())
234 if (Subtarget->is64Bit())
261 if (Subtarget->is64Bit()) {
318 if (Subtarget->is64Bit()) {
344 if (Subtarget->is64Bit()) {
387 if (Subtarget->is64Bit())
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 142 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
164 if (is64Bit())
390 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS]
409 WriteWord(SectionDataSize + (is64Bit() ? sizeof(ELF::Elf64_Ehdr) :
416 Write16(is64Bit() ? sizeof(ELF::Elf64_Ehdr) : sizeof(ELF::Elf32_Ehdr));
422 Write16(is64Bit() ? sizeof(ELF::Elf64_Shdr) : sizeof(ELF::Elf32_Shdr));
454 if (is64Bit()) {
768 if (is64Bit())
    [all...]

Completed in 1421 milliseconds