Searched refs:is64Bit (Results 1 - 25 of 57) sorted by relevance

123

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCAsmInfo.cpp19 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) { argument
20 if (is64Bit)
28 if (!is64Bit)
37 PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) { argument
38 if (is64Bit)
62 if (!is64Bit)
66 Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;
H A DPPCMCAsmInfo.h24 explicit PPCMCAsmInfoDarwin(bool is64Bit);
30 explicit PPCLinuxMCAsmInfo(bool is64Bit);
/external/llvm/include/llvm/Target/
H A DTargetELFWriterInfo.h28 bool is64Bit, isLittleEndian; member in class:llvm::TargetELFWriterInfo
66 unsigned getEIClass() const { return is64Bit ? ELFCLASS64 : ELFCLASS32; }
72 unsigned getHdrSize() const { return is64Bit ? 64 : 52; }
73 unsigned getSHdrSize() const { return is64Bit ? 64 : 40; }
76 unsigned getSymTabEntrySize() const { return is64Bit ? 24 : 16; }
80 unsigned getPrefELFAlignment() const { return is64Bit ? 8 : 4; }
84 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
/external/llvm/lib/Target/Sparc/
H A DSparcSubtarget.cpp27 const std::string &FS, bool is64Bit) :
32 Is64Bit(is64Bit) {
37 if (is64Bit)
26 SparcSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DSparcSubtarget.h45 bool is64Bit() const { return Is64Bit; } function in class:llvm::SparcSubtarget
48 if (is64Bit()) {
/external/llvm/lib/Target/
H A DTargetELFWriterInfo.cpp21 is64Bit(is64Bit_), isLittleEndian(isLittleEndian_) {
/external/llvm/lib/Target/X86/
H A DX86ELFWriterInfo.cpp30 EMachine = is64Bit ? EM_X86_64 : EM_386;
36 if (is64Bit) {
67 if (is64Bit) {
88 if (is64Bit) {
111 if (is64Bit) {
135 return is64Bit ?
H A DX86ELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; }
H A DX86TargetMachine.cpp77 bool is64Bit)
79 Subtarget(TT, CPU, FS, Options.StackAlignmentOverride, is64Bit),
81 ELFWriterInfo(is64Bit, true),
87 } else if (Subtarget.is64Bit()) {
151 if (!getX86Subtarget().is64Bit())
72 X86TargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL, bool is64Bit) argument
H A DX86Subtarget.h167 unsigned StackAlignOverride, bool is64Bit);
186 bool is64Bit() const { return In64BitMode; } function in class:llvm::X86Subtarget
242 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
243 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
H A DX86SelectionDAGInfo.cpp102 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
131 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
135 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
213 AVT = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
221 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
225 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
229 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
/external/llvm/lib/Target/PowerPC/
H A DPPCJITInfo.h26 bool is64Bit; member in class:llvm::PPCJITInfo
30 is64Bit = tmIs64Bit;
H A DPPCJITInfo.cpp49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ argument
55 } else if (!is64Bit) {
113 // r5 - is64Bit - always 0.
176 // r5 - is64Bit - always 0.
256 // r5 - is64Bit - always 1.
297 bool is64Bit) {
328 StubCallAddr -= is64Bit ? 9 : 6;
333 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit);
348 return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback;
379 EmitBranchToAt((intptr_t)Addr, (intptr_t)Fn, false, is64Bit);
295 PPCCompilationCallbackC(unsigned *StubCallAddrPlus4, unsigned *OrigCallAddrPlus4, bool is64Bit) argument
[all...]
H A DPPCSubtarget.cpp67 const std::string &FS, bool is64Bit)
74 , IsPPC64(is64Bit)
99 if (is64Bit) {
66 PPCSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DPPCTargetMachine.cpp35 bool is64Bit)
37 Subtarget(TT, CPU, FS, is64Bit),
39 FrameLowering(Subtarget), JITInfo(*this, is64Bit),
30 PPCTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL, bool is64Bit) argument
H A DPPCRegisterInfo.cpp206 bool is64Bit = Subtarget.isPPC64(); local
208 unsigned StackReg = is64Bit ? PPC::X1 : PPC::R1;
209 unsigned TmpReg = is64Bit ? PPC::X0 : PPC::R0;
210 unsigned ADDIInstr = is64Bit ? PPC::ADDI8 : PPC::ADDI;
211 unsigned ADDInstr = is64Bit ? PPC::ADD8 : PPC::ADD4;
212 unsigned LISInstr = is64Bit ? PPC::LIS8 : PPC::LIS;
213 unsigned ORIInstr = is64Bit ? PPC::ORI8 : PPC::ORI;
517 bool is64Bit = Subtarget.isPPC64(); local
519 (is64Bit ? PPC::X31 : PPC::R31) :
520 (is64Bit
[all...]
/external/llvm/lib/Target/PTX/
H A DPTXSubtarget.cpp28 const std::string &FS, bool is64Bit)
34 Is64Bit(is64Bit) {
27 PTXSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DPTXSubtarget.h84 const std::string &FS, bool is64Bit);
93 bool is64Bit() const { return Is64Bit; } function in class:llvm::PTXSubtarget
H A DPTXTargetMachine.cpp76 bool is64Bit)
78 DataLayout(is64Bit ? DataLayout64 : DataLayout32),
79 Subtarget(TT, CPU, FS, is64Bit),
71 PTXTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL, bool is64Bit) argument
/external/llvm/test/Scripts/
H A Dmacho-dumpx17 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...]
H A Delf-dump17 self.is64Bit = None
41 if self.is64Bit:
103 if not f.is64Bit:
113 if f.is64Bit:
126 if f.is64Bit:
146 f.is64Bit = False
148 f.is64Bit = True
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.cpp54 bool is64Bit = T.getArch() == Triple::x86_64; local
55 if (is64Bit)
63 if (!is64Bit)
H A DX86MCTargetDesc.cpp374 bool is64Bit = TheTriple.getArch() == Triple::x86_64; local
378 if (is64Bit)
392 int stackGrowth = is64Bit ? -8 : -4;
396 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
400 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
401 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP);
413 bool is64Bit = T.getArch() == Triple::x86_64; local
420 if (is64Bit)
424 } else if (T.isOSWindows() && is64Bit)
435 if (is64Bit)
[all...]
/external/llvm/include/llvm/Support/
H A DOutputBuffer.h27 /// is64Bit/isLittleEndian - This information is inferred from the target
29 bool is64Bit, isLittleEndian; member in class:llvm::OutputBuffer
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {}
105 if (!is64Bit)
150 if (!is64Bit)
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DJmeSystemDelegate.java105 private boolean is64Bit(String arch) { method in class:JmeSystemDelegate
128 boolean is64 = is64Bit(arch);

Completed in 179 milliseconds

123