Searched refs:is64Bit (Results 1 - 25 of 58) 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/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/include/llvm/Target/
H A DTargetELFWriterInfo.h28 bool is64Bit, isLittleEndian; member in class:llvm::TargetELFWriterInfo
67 unsigned getEIClass() const { return is64Bit ? ELFCLASS64 : ELFCLASS32; }
73 unsigned getHdrSize() const { return is64Bit ? 64 : 52; }
74 unsigned getSHdrSize() const { return is64Bit ? 64 : 40; }
77 unsigned getSymTabEntrySize() const { return is64Bit ? 24 : 16; }
81 unsigned getPrefELFAlignment() const { return is64Bit ? 8 : 4; }
85 return is64Bit ? (hasRelocationAddend() ? 24 : 16)
/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()) {
160 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.h171 unsigned StackAlignOverride, bool is64Bit);
190 bool is64Bit() const { return In64BitMode; } function in class:llvm::X86Subtarget
249 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
250 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
H A DX86SelectionDAGInfo.cpp104 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 :
215 AVT = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
223 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
227 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
231 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.cpp30 const std::string &FS, bool is64Bit)
37 , IsPPC64(is64Bit)
64 if (is64Bit) {
29 PPCSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DPPCTargetMachine.cpp40 bool is64Bit)
42 Subtarget(TT, CPU, FS, is64Bit),
44 FrameLowering(Subtarget), JITInfo(*this, is64Bit),
35 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
/external/llvm/lib/Target/NVPTX/
H A DNVPTXSubtarget.cpp36 const std::string &FS, bool is64Bit)
40 Is64Bit(is64Bit) {
35 NVPTXSubtarget(const std::string &TT, const std::string &CPU, const std::string &FS, bool is64Bit) argument
H A DNVPTXSubtarget.h40 const std::string &FS, bool is64Bit);
66 bool is64Bit() const { return Is64Bit; } function in class:llvm::NVPTXSubtarget
76 if (is64Bit())
/external/llvm/lib/Target/Mips/
H A DMipsELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; }
/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
42 if self.is64Bit:
104 if not f.is64Bit:
114 if f.is64Bit:
140 if f.is64Bit:
160 f.is64Bit = False
162 f.is64Bit = True
186 if e_machine[0] == 0x0008 and f.is64Bit: # EM_MIPS && 64 bit
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.cpp41 bool is64Bit = T.getArch() == Triple::x86_64; local
42 if (is64Bit)
49 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);
/external/llvm/include/llvm/Object/
H A DMachOObject.h100 bool is64Bit() const { return Is64Bit; } function in class:llvm::object::MachOObject
130 assert(is64Bit() && "Invalid access!");

Completed in 220 milliseconds

123