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

  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.h 32 bool Is64Bit; // 32 or 64 bit words
36 bool Is64Bit)
37 : MCAsmBackend(), OSType(OSType), IsLittle(IsLittle), Is64Bit(Is64Bit) {}
  /art/runtime/
elf_file.h 90 bool Is64Bit() const {
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
AMDGPUAsmBackend.cpp 169 bool Is64Bit;
172 ELFAMDGPUAsmBackend(const Target &T, bool Is64Bit) :
173 AMDGPUAsmBackend(T), Is64Bit(Is64Bit) { }
176 return createAMDGPUELFObjectWriter(Is64Bit, OS);
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.cpp 49 bool Is64Bit =
50 static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit();
52 (Is64Bit ? NVPTX::cvta_local_yes_64 : NVPTX::cvta_local_yes);
54 (Is64Bit ? NVPTX::MOV_DEPOT_ADDR_64 : NVPTX::MOV_DEPOT_ADDR);
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 104 bool Is64Bit;
110 Is64Bit(StringRef(TheTarget.getName()) == "sparcv9") {}
294 return createSparcELFObjectWriter(OS, Is64Bit, IsLittleEndian, OSABI);
  /external/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyAsmBackend.cpp 31 bool Is64Bit;
34 explicit WebAssemblyAsmBackend(bool Is64Bit)
35 : MCAsmBackend(), Is64Bit(Is64Bit) {}
94 return createWebAssemblyELFObjectWriter(OS, Is64Bit, 0);
  /external/llvm/lib/Target/X86/
X86FrameLowering.h 38 /// Is64Bit implies that x86_64 instructions are available.
39 bool Is64Bit;
X86RegisterInfo.h 27 /// Is64Bit - Is the target 64-bits.
29 bool Is64Bit;
X86FastISel.cpp     [all...]
X86ISelLowering.cpp 90 else if (Subtarget->is64Bit())
101 if (Subtarget->hasSlowDivide64() && Subtarget->is64Bit())
136 if (Subtarget->is64Bit())
166 if (Subtarget->is64Bit()) {
233 if (Subtarget->is64Bit()) {
262 if (Subtarget->is64Bit()) {
312 if (Subtarget->is64Bit())
342 if (Subtarget->is64Bit())
347 if (Subtarget->is64Bit())
360 if (Subtarget->is64Bit())
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCTLSDynamicCall.cpp 55 bool Is64Bit = MBB.getParent()->getSubtarget<PPCSubtarget>().isPPC64();
74 unsigned GPR3 = Is64Bit ? PPC::X3 : PPC::R3;
PPCInstrInfo.cpp 739 bool Is64Bit = PPC::G8RCRegClass.hasSubClassEq(RC) ||
741 assert((Is64Bit ||
746 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.h 37 bool Is64Bit;
47 const std::string &FS, TargetMachine &TM, bool is64bit);
78 bool is64Bit() const { return Is64Bit; }
83 return is64Bit() ? 2047 : 0;
  /external/llvm/utils/TableGen/
X86RecognizableInstr.h 84 bool Is64Bit;
  /external/google-breakpad/src/client/mac/handler/
dynamic_images.h 162 bool Is64Bit() { return (GetCPUType() & CPU_ARCH_ABI64) == CPU_ARCH_ABI64; }
271 bool Is64Bit() { return (GetCPUType() & CPU_ARCH_ABI64) == CPU_ARCH_ABI64; }
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 51 bool Is64Bit;
64 SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit);
128 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
155 if (is64Bit())
259 SymbolTableWriter::SymbolTableWriter(ELFObjectWriter &EWriter, bool Is64Bit)
260 : EWriter(EWriter), Is64Bit(Is64Bit), NumWritten(0) {}
279 if (Is64Bit) {
320 write8(is64Bit() ? ELF::ELFCLASS64 : ELF::ELFCLASS32); // e_ident[EI_CLASS
    [all...]
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 184 if (Obj.is64Bit()) {
293 if (Obj.is64Bit())
308 static unsigned segmentLoadCommandSize(bool Is64Bit, unsigned NumSections) {
309 if (Is64Bit)
343 bool Is64Bit = Writer.is64Bit();
376 Is64Bit ? sizeof(MachO::mach_header_64) : sizeof(MachO::mach_header);
383 LoadCommandSize += segmentLoadCommandSize(Is64Bit, Segment.nsects);
406 LoadCommandSize += segmentLoadCommandSize(Is64Bit, NumDwarfSections);
411 unsigned NListSize = Is64Bit ? sizeof(MachO::nlist_64) : sizeof(MachO::nlist)
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 64 X86ELFObjectWriter(bool is64Bit, uint8_t OSABI, uint16_t EMachine,
66 : MCELFObjectTargetWriter(is64Bit, OSABI, EMachine, HasRelocationAddend) {}
418 bool Is64Bit;
421 WindowsX86AsmBackend(const Target &T, bool is64Bit, StringRef CPU)
423 , Is64Bit(is64Bit) {
427 return createX86WinCOFFObjectWriter(OS, Is64Bit);
464 bool Is64Bit;
506 unsigned SubtractInstrIdx = Is64Bit ? 3 : 2;
530 (Is64Bit ? X86::RBP : X86::EBP) && "Invalid frame pointer!")
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 72 bool Is64Bit = (Opcode == AArch64::SBFMXri || Opcode == AArch64::UBFMXri);
82 else if (!Is64Bit)
88 else if (!Is64Bit)
93 if (Is64Bit && IsSigned)
146 << ", #" << (Is64Bit ? 64 : 32) - Op2.getImm() << ", #" << Op3.getImm() + 1;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 302 bool Is64Bit = AArch64::GPR64allRegClass.hasSubClassEq(MRI.getRegClass(VReg));
320 Opc = Is64Bit ? AArch64::CSINCXr : AArch64::CSINCWr;
330 Opc = Is64Bit ? AArch64::CSINVXr : AArch64::CSINVWr;
347 Opc = Is64Bit ? AArch64::CSNEGXr : AArch64::CSNEGWr;
418 bool Is64Bit;
423 Is64Bit = 0;
427 Is64Bit = 1;
431 Is64Bit = 0;
435 Is64Bit = 1;
440 if (Is64Bit) {
    [all...]
AArch64FastISel.cpp 363 bool Is64Bit = (VT == MVT::f64);
368 Is64Bit ? AArch64_AM::getFP64Imm(Val) : AArch64_AM::getFP32Imm(Val);
370 unsigned Opc = Is64Bit ? AArch64::FMOVDi : AArch64::FMOVSi;
376 unsigned Opc1 = Is64Bit ? AArch64::MOVi64imm : AArch64::MOVi32imm;
377 const TargetRegisterClass *RC = Is64Bit ?
403 unsigned Opc = Is64Bit ? AArch64::LDRDui : AArch64::LDRSui;
489 bool Is64Bit = (VT == MVT::f64);
490 unsigned ZReg = Is64Bit ? AArch64::XZR : AArch64::WZR;
491 unsigned Opc = Is64Bit ? AArch64::FMOVXDr : AArch64::FMOVWSr;
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]

Completed in 3581 milliseconds