HomeSort by relevance Sort by last modified time
    Searched full:is64bit (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86WinCOFFObjectWriter.cpp 24 const bool Is64Bit;
37 Is64Bit(Is64Bit_) {}
46 return Is64Bit ? COFF::IMAGE_REL_AMD64_REL32 : COFF::IMAGE_REL_I386_REL32;
49 return Is64Bit ? COFF::IMAGE_REL_AMD64_ADDR32 : COFF::IMAGE_REL_I386_DIR32;
51 if (Is64Bit)
55 return Is64Bit ? COFF::IMAGE_REL_AMD64_SECREL : COFF::IMAGE_REL_I386_SECREL;
62 bool Is64Bit) {
63 MCWinCOFFObjectTargetWriter *MOTW = new X86WinCOFFObjectWriter(Is64Bit);
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/lib/Target/R600/
AMDILDeviceInfo.cpp 23 bool is64bit, bool is64on32bit) {
35 assert(!is64bit && "This device does not support 64bit pointers!");
42 assert(!is64bit && "This device does not support 64bit pointers!");
49 assert(!is64bit && "This device does not support 64bit pointers!");
56 assert(!is64bit && "This device does not support 64bit pointers!");
63 assert(!is64bit && "This device does not support 64bit pointers!");
70 assert(!is64bit && "This device does not support 64bit pointers!");
77 assert(!is64bit && "This device does not support 64bit pointers!");
86 assert(!is64bit && "This device does not support 64bit pointers!");
AMDGPUSubtarget.cpp 32 Is64bit = false;
38 Device = AMDGPUDeviceInfo::getDeviceFromName(DevName, this, Is64bit);
52 AMDGPUSubtarget::is64bit() const {
53 return Is64bit;
AMDGPUSubtarget.h 35 bool Is64bit;
50 bool is64bit() const;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCAsmInfo.cpp 19 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) {
20 if (is64Bit) {
29 if (!is64Bit)
38 PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) {
39 if (is64Bit) {
67 Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;
PPCMCAsmInfo.h 24 explicit PPCMCAsmInfoDarwin(bool is64Bit);
30 explicit PPCLinuxMCAsmInfo(bool is64Bit);
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.cpp 27 const std::string &FS, bool is64Bit) :
32 Is64Bit(is64Bit) {
37 if (is64Bit)
SparcSubtarget.h 31 bool Is64Bit;
35 const std::string &FS, bool is64bit);
45 bool is64Bit() const { return Is64Bit; }
48 if (is64Bit()) {
  /external/llvm/test/Scripts/
macho-dumpx 17 self.is64Bit = None
69 f.isLSB, f.is64Bit = False, False
71 f.isLSB, f.is64Bit = True, False
73 f.isLSB, f.is64Bit = False, True
75 f.isLSB, f.is64Bit = True, True
92 if f.is64Bit:
136 def dumpSegmentLoadCommand(f, opts, is64Bit):
138 if is64Bit:
156 dumpSection(f, i, opts, is64Bit)
195 if f.is64Bit
    [all...]
elf-dump 17 self.is64Bit = None
42 if self.is64Bit:
58 if f.is64Bit:
65 if not f.is64Bit:
129 if not f.is64Bit:
139 if f.is64Bit:
165 if f.is64Bit:
185 f.is64Bit = False
187 f.is64Bit = True
211 if e_machine[0] == 0x0008 and f.is64Bit: # EM_MIPS && 64 bi
    [all...]
  /external/llvm/lib/MC/
MCMachObjectTargetWriter.cpp 17 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_),
MachObjectWriter.cpp 139 Write32(is64Bit() ? macho::HM_Object64 : macho::HM_Object32);
148 if (is64Bit())
152 (is64Bit() ? macho::Header64Size : macho::Header32Size));
170 is64Bit() ? macho::SegmentLoadCommand64Size:
172 Write32(is64Bit() ? macho::LCT_Segment64 : macho::LCT_Segment);
174 NumSections * (is64Bit() ? macho::Section64Size :
178 if (is64Bit()) {
220 if (is64Bit()) {
240 if (is64Bit())
243 assert(OS.tell() - Start == (is64Bit() ? macho::Section64Size
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.h 25 bool is64bit; member in class:llvm::NVPTXFrameLowering
30 tm(_tm), is64bit(_is64bit) {}
NVPTXSubtarget.h 31 bool Is64Bit;
44 const std::string &FS, bool is64Bit);
71 bool is64Bit() const { return Is64Bit; }
83 if (is64Bit())
NVPTXSubtarget.cpp 36 const std::string &FS, bool is64Bit)
38 Is64Bit(is64Bit),
  /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/lib/Target/PowerPC/
PPCJITInfo.h 26 bool is64Bit;
30 is64Bit = tmIs64Bit;
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsAsmBackend.cpp 88 bool Is64Bit; // 32 or 64 bit words
93 :MCAsmBackend(), OSType(_OSType), IsLittle(_isLittle), Is64Bit(_is64Bit) {}
97 MCELFObjectTargetWriter::getOSABI(OSType), IsLittle, Is64Bit);
259 /*IsLittle*/true, /*Is64Bit*/false);
265 /*IsLittle*/false, /*Is64Bit*/false);
271 /*IsLittle*/true, /*Is64Bit*/true);
277 /*IsLittle*/false, /*Is64Bit*/true);
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 92 bool Is64Bit) {
132 const uint16_t *CS = Is64Bit ? CallerSavedRegs64Bit : CallerSavedRegs32Bit;
148 bool Is64Bit, bool IsLP64, bool UseLEA,
165 if (ThisVal == (Is64Bit ? 8 : 4)) {
168 ? (unsigned)(Is64Bit ? X86::RAX : X86::EAX)
169 : findDeadCallerSavedReg(MBB, MBBI, TRI, Is64Bit);
172 ? (Is64Bit ? X86::PUSH64r : X86::PUSH32r)
173 : (Is64Bit ? X86::POP64r : X86::POP32r);
388 unsigned RegCount, bool Is64Bit) {
407 const uint16_t *CURegs = (Is64Bit ? CU64BitRegs : CU32BitRegs)
    [all...]
X86SelectionDAGInfo.cpp 104 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
133 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
137 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
223 AVT = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
231 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
235 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
239 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
X86RegisterInfo.cpp 59 : X86GenRegisterInfo((tm.getSubtarget<X86Subtarget>().is64Bit()
63 (tm.getSubtarget<X86Subtarget>().is64Bit()
70 Is64Bit = Subtarget->is64Bit();
73 if (Is64Bit) {
85 BasePtr = Is64Bit ? X86::RBX : X86::ESI;
119 if (!Is64Bit && Idx == X86::sub_8bit)
131 if (!Is64Bit && SubIdx == X86::sub_8bit) {
194 else if (Subtarget.is64Bit())
208 if (Is64Bit)
    [all...]
  /external/llvm/include/llvm/MC/
MCMachObjectWriter.h 28 const unsigned Is64Bit : 1;
58 bool is64Bit() const { return Is64Bit; }
156 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }

Completed in 515 milliseconds

1 2 3 4