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;
PPCRegisterInfo.cpp 646 bool is64Bit = Subtarget.isPPC64();
649 const TargetRegisterClass *RC = is64Bit ? G8RC : GPRC;
654 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::LIS8 : PPC::LIS), SRegHi)
656 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()) {
59 return is64Bit() ? 2047 : 0;
  /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;
293 unsigned StackPtr = is64Bit ? X86::RSP : X86::ESP;
299 unsigned InstPtr = is64Bit ? X86::RIP : X86::EIP;
313 bool is64Bit = T.getArch() == Triple::x86_64;
320 if (is64Bit)
324 } else if (T.isOSWindows() && is64Bit)
335 if (is64Bit)
343 if (RM == Reloc::Static && T.isOSDarwin() && is64Bit)
    [all...]
  /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 51 const unsigned Is64Bit : 1;
94 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);
68 bool is64Bit() const { return Is64Bit; }
80 if (is64Bit())
  /frameworks/rs/
rsFileA3D.cpp 322 uint32_t is64Bit = 0;
323 headerStream.addU32(is64Bit);
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 366 static bool is64Bit(const ELFYAML::Object &Doc) {
387 if (is64Bit(Doc)) {
  /external/llvm/lib/Target/X86/
X86Subtarget.h 208 unsigned StackAlignOverride, bool is64Bit);
234 bool is64Bit() const {
318 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
319 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
X86InstrInfo.cpp 94 : X86GenInstrInfo((tm.getSubtarget<X86Subtarget>().is64Bit()
97 (tm.getSubtarget<X86Subtarget>().is64Bit()
    [all...]
X86ISelLowering.cpp 180 bool is64Bit = Subtarget->is64Bit();
183 if (is64Bit)
236 else if (Subtarget->is64Bit())
247 if (Subtarget->is64Bit())
289 if (Subtarget->is64Bit())
316 if (Subtarget->is64Bit()) {
373 if (Subtarget->is64Bit()) {
399 if (Subtarget->is64Bit()) {
442 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()) {
765 if (is64Bit())
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 228 if (O->is64Bit()) {
241 bool Is64 = O->is64Bit();
405 if (O->is64Bit()) {
419 macho::LoadCommandType SegmentLoadType = is64Bit() ?
450 unsigned SymbolTableEntrySize = is64Bit() ?
469 if (is64Bit()) {
488 if (is64Bit()) {
684 if (is64Bit()) {
696 if (is64Bit()) {
712 if (is64Bit()) {
    [all...]

Completed in 605 milliseconds