HomeSort by relevance Sort by last modified time
    Searched refs:is64Bit (Results 1 - 25 of 57) sorted by null

1 2 3

  /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) {
68 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 28 const std::string &FS, bool is64Bit) :
33 Is64Bit(is64Bit) {
38 if (is64Bit)
52 if (is64Bit()) {
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;
SparcFrameLowering.h 29 ST.is64Bit() ? 16 : 8, 0, ST.is64Bit() ? 16 : 8),
SparcRegisterInfo.cpp 59 if (!Subtarget.is64Bit())
74 return Subtarget.is64Bit() ? &SP::I64RegsRegClass : &SP::IntRegsRegClass;
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 26 bool is64Bit;
30 is64Bit = tmIs64Bit;
PPCJITInfo.cpp 49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){
55 } else if (!is64Bit) {
118 // r5 - is64Bit - always 0.
181 // r5 - is64Bit - always 0.
260 // r5 - is64Bit - always 1.
298 bool is64Bit) {
329 StubCallAddr -= is64Bit ? 9 : 6;
334 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
349 return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback;
380 EmitBranchToAt((intptr_t)Addr, (intptr_t)Fn, false, is64Bit);
    [all...]
PPCTargetMachine.cpp 41 bool is64Bit)
43 Subtarget(TT, CPU, FS, is64Bit),
45 FrameLowering(Subtarget), JITInfo(*this, is64Bit),
PPCSubtarget.cpp 33 const std::string &FS, bool is64Bit)
35 , IsPPC64(is64Bit)
PPCTargetMachine.h 44 CodeGenOpt::Level OL, bool is64Bit);
  /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/lib/Target/NVPTX/
NVPTXSubtarget.cpp 24 const std::string &FS, bool is64Bit)
25 : NVPTXGenSubtargetInfo(TT, CPU, FS), Is64Bit(is64Bit), PTXVersion(0),
NVPTXSubtarget.h 31 bool Is64Bit;
44 const std::string &FS, bool is64Bit);
68 bool is64Bit() const { return Is64Bit; }
80 if (is64Bit())
NVPTXRegisterInfo.cpp 75 : NVPTXGenRegisterInfo(0), Is64Bit(st.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/X86/
X86TargetMachine.cpp 83 bool is64Bit)
85 Subtarget(TT, CPU, FS, Options.StackAlignmentOverride, is64Bit),
92 } else if (Subtarget.is64Bit()) {
180 if (!getX86Subtarget().is64Bit())
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 :
X86FrameLowering.h 59 (sti.is64Bit() ? -8 : -4)),
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(); }
X86TargetMachine.h 42 bool is64Bit);
  /external/llvm/lib/MC/
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/jmonkeyengine/engine/src/core/com/jme3/system/
JmeSystemDelegate.java 105 private boolean is64Bit(String arch) {
128 boolean is64 = is64Bit(arch);
  /external/llvm/test/tools/llvm-readobj/Inputs/
relocs.py 91 self.is64Bit = None
143 if self.is64Bit:
149 if self.is64Bit:
203 if f.is64Bit:
265 f.is64Bit = False
267 f.is64Bit = True
281 if e_machine == 0x0008 and f.is64Bit: # EM_MIPS && 64 bit
366 f.isLSB, f.is64Bit = False, False
368 f.isLSB, f.is64Bit = True, False
370 f.isLSB, f.is64Bit = False, Tru
    [all...]

Completed in 766 milliseconds

1 2 3