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 286 bool is64Bit = Subtarget.isPPC64();
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;
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 21 const unsigned Is64Bit : 1;
34 bool is64Bit() { return Is64Bit; }
MCMachObjectWriter.h 28 const unsigned Is64Bit : 1;
51 bool is64Bit() const { return Is64Bit; }
142 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.h 30 bool Is64Bit;
34 const std::string &FS, bool is64bit);
44 bool is64Bit() const { return Is64Bit; }
47 if (is64Bit()) {
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 52 bool is64Bit = T.getArch() == Triple::x86_64;
53 if (is64Bit)
61 if (!is64Bit)
X86MCTargetDesc.cpp 356 bool is64Bit = TheTriple.getArch() == Triple::x86_64;
360 if (is64Bit)
372 int stackGrowth = is64Bit ? -8 : -4;
376 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
380 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
381 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP);
392 bool is64Bit = T.getArch() == Triple::x86_64;
399 if (is64Bit)
403 } else if (T.isOSWindows() && is64Bit)
414 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/llvm/include/llvm/Target/
TargetELFWriterInfo.h 31 bool is64Bit, isLittleEndian;
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/llvm/lib/CodeGen/
ELFWriter.h 100 /// is64Bit/isLittleEndian - This information is inferred from the target
102 bool is64Bit, isLittleEndian;
159 SectionList.push_back(new ELFSection(Name, isLittleEndian, is64Bit));
  /frameworks/base/libs/rs/
rsFileA3D.cpp 299 uint32_t is64Bit = 0;
300 headerStream.addU32(is64Bit);
  /external/llvm/lib/MC/
ELFObjectWriter.h 158 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
174 if (is64Bit())
  /external/llvm/lib/Target/PTX/
PTXSubtarget.h 78 bool Is64Bit;
83 const std::string &FS, bool is64Bit);
92 bool is64Bit() const { return Is64Bit; }
  /external/llvm/lib/Target/X86/
X86Subtarget.h 147 unsigned StackAlignOverride, bool is64Bit);
166 bool is64Bit() const { return In64BitMode; }
220 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
221 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
X86InstrInfo.cpp 87 : X86GenInstrInfo((tm.getSubtarget<X86Subtarget>().is64Bit()
90 (tm.getSubtarget<X86Subtarget>().is64Bit()
    [all...]
X86ISelLowering.cpp 154 bool is64Bit = Subtarget->is64Bit();
157 if (is64Bit)
174 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
189 if (Subtarget->is64Bit())
230 if (Subtarget->is64Bit())
257 if (Subtarget->is64Bit()) {
314 if (Subtarget->is64Bit()) {
334 if (Subtarget->is64Bit()) {
371 if (Subtarget->is64Bit())
    [all...]

Completed in 583 milliseconds