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

  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 25 bool is64Bit;
PPCRegisterInfo.cpp 796 bool is64Bit = Subtarget.isPPC64();
799 const TargetRegisterClass *RC = is64Bit ? G8RC : GPRC;
804 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::LIS8 : PPC::LIS), SRegHi)
806 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::ORI8 : PPC::ORI), SReg)
    [all...]
PPCFrameLowering.cpp     [all...]
PPCISelLowering.cpp 1603 bool is64bit = Subtarget.isPPC64(); local
6326 bool is64bit = Subtarget.isPPC64(); local
6864 bool is64bit = MI->getOpcode() == PPC::ATOMIC_CMP_SWAP_I64; local
6933 bool is64bit = Subtarget.isPPC64(); local
    [all...]
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 219 bool is64Bit() const {
249 return createSparcELFObjectWriter(OS, is64Bit(), OSABI);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCAsmInfo.cpp 45 bool is64Bit = T.getArch() == Triple::x86_64;
46 if (is64Bit)
53 if (!is64Bit)
91 bool is64Bit = T.getArch() == Triple::x86_64;
97 PointerSize = (is64Bit && !isX32) ? 8 : 4;
100 CalleeSaveStackSlotSize = is64Bit ? 8 : 4;
X86MCTargetDesc.cpp 262 bool is64Bit = TheTriple.getArch() == Triple::x86_64;
266 if (is64Bit)
284 int stackGrowth = is64Bit ? -8 : -4;
287 unsigned StackPtr = is64Bit ? X86::RSP : X86::ESP;
293 unsigned InstPtr = is64Bit ? X86::RIP : X86::EIP;
307 bool is64Bit = T.getArch() == Triple::x86_64;
314 if (is64Bit)
318 } else if (T.isOSWindows() && is64Bit)
329 if (is64Bit)
337 if (RM == Reloc::Static && T.isOSDarwin() && is64Bit)
    [all...]
  /external/llvm/include/llvm/MC/
MCELFObjectWriter.h 31 const unsigned Is64Bit : 1;
64 bool is64Bit() const { return Is64Bit; }
MCMachObjectWriter.h 27 const unsigned Is64Bit : 1;
57 bool is64Bit() const { return Is64Bit; }
157 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
  /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/lib/Target/Sparc/
SparcSubtarget.h 38 bool Is64Bit;
50 const std::string &FS, TargetMachine &TM, bool is64bit);
75 bool is64Bit() const { return Is64Bit; }
80 return is64Bit() ? 2047 : 0;
SparcISelLowering.cpp 176 if (Subtarget->is64Bit())
328 if (Subtarget->is64Bit())
655 if (Subtarget->is64Bit())
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXSubtarget.h 36 bool Is64Bit;
58 const std::string &FS, const TargetMachine &TM, bool is64Bit);
97 bool is64Bit() const { return Is64Bit; }
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 463 static bool is64Bit(const ELFYAML::Object &Doc) {
483 if (is64Bit(Doc)) {
  /frameworks/rs/
rsFileA3D.cpp 324 uint32_t is64Bit = 0;
325 headerStream.addU32(is64Bit);
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 100 public native boolean is64Bit();
  /art/compiler/dex/quick/x86/
utility_x86.cc 123 case kOpNeg: opcode = r_dest_src.Is64Bit() ? kX86Neg64R : kX86Neg32R; break;
124 case kOpNot: opcode = r_dest_src.Is64Bit() ? kX86Not64R : kX86Not32R; break;
125 case kOpRev: opcode = r_dest_src.Is64Bit() ? kX86Bswap64R : kX86Bswap32R; break;
137 if (r_dest_src1.Is64Bit()) {
196 bool is64Bit = r_dest_src1.Is64Bit();
215 case kOpSub: opcode = is64Bit ? kX86Sub64RR : kX86Sub32RR; break;
216 case kOpSbc: opcode = is64Bit ? kX86Sbb64RR : kX86Sbb32RR; break;
217 case kOpLsl: opcode = is64Bit ? kX86Sal64RC : kX86Sal32RC; src2_must_be_cx = true; break;
218 case kOpLsr: opcode = is64Bit ? kX86Shr64RC : kX86Shr32RC; src2_must_be_cx = true; break
640 bool is64bit = ((size == k64) || (size == kDouble)); local
787 bool is64bit = (size == k64) || (size == kDouble); local
    [all...]
int_x86.cc 97 NewLIR2(src1.Is64Bit() ? kX86Cmp64RR : kX86Cmp32RR, src1.GetReg(), src2.GetReg());
109 NewLIR2(reg.Is64Bit() ? kX86Test64RR: kX86Test32RR, reg.GetReg(), reg.GetReg());
111 if (reg.Is64Bit()) {
133 LIR* res = RawLIR(current_dalvik_offset_, r_dest.Is64Bit() ? kX86Mov64RR : kX86Mov32RR,
234 NewLIR2(rs_dest.Is64Bit() ? kX86Movzx8qRR : kX86Movzx8RR, rs_dest.GetReg(), rs_dest.GetReg());
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 79 bool is64Bit() const { return STI.getTargetTriple().startswith("sparcv9"); }
509 return parseDirectiveWord(is64Bit() ? 8 : 4, DirectiveID.getLoc());
511 if (is64Bit() && IDVal == ".xword")
  /frameworks/compile/slang/
slang_rs_context.h 133 inline bool is64Bit() const {
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 57 bool Is64Bit;
74 SymbolTableWriter(MCAssembler &Asm, FragmentWriter &FWriter, bool Is64Bit,
180 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
198 if (is64Bit())
349 bool Is64Bit,
352 : Asm(Asm), FWriter(FWriter), Is64Bit(Is64Bit),
375 if (Is64Bit) {
442 Write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 250 if (O->is64Bit()) {
263 bool Is64 = O->is64Bit();
417 if (O->is64Bit()) {
432 MachO::LoadCommandType SegmentLoadType = is64Bit() ?
468 unsigned SymbolTableEntrySize = is64Bit() ?
489 if (is64Bit()) {
509 if (is64Bit()) {
677 if (is64Bit()) {
689 if (is64Bit()) {
705 if (is64Bit()) {
    [all...]
  /external/llvm/lib/Target/X86/
X86Subtarget.h 277 bool is64Bit() const {
375 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
376 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
X86InstrInfo.cpp 103 (STI.is64Bit() ? X86::ADJCALLSTACKDOWN64 : X86::ADJCALLSTACKDOWN32),
104 (STI.is64Bit() ? X86::ADJCALLSTACKUP64 : X86::ADJCALLSTACKUP32)),
    [all...]

Completed in 360 milliseconds