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

123

/macosx-10.10/llvmCore-3425.0.34/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)
65 Data64bitsDirective = is64Bit ? "\t.quad\t" : 0;
H A DPPCMCAsmInfo.h24 explicit PPCMCAsmInfoDarwin(bool is64Bit);
30 explicit PPCLinuxMCAsmInfo(bool is64Bit);
/macosx-10.10/llvmCore-3425.0.34/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()) {
/macosx-10.10/llvmCore-3425.0.34/lib/Target/
H A DTargetELFWriterInfo.cpp21 is64Bit(is64Bit_), isLittleEndian(isLittleEndian_) {
/macosx-10.10/llvmCore-3425.0.34/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)
/macosx-10.10/llvmCore-3425.0.34/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()) {
166 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
248 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); }
249 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 :
/macosx-10.10/llvmCore-3425.0.34/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
/macosx-10.10/JavaScriptCore-7600.1.17/disassembler/ARM64/
H A DA64DOpcode.cpp175 void A64DOpcode::appendRegisterName(unsigned registerNumber, bool is64Bit) argument
178 bufferPrintf(is64Bit ? "fp" : "wfp");
183 bufferPrintf(is64Bit ? "lr" : "wlr");
187 bufferPrintf("%c%u", is64Bit ? 'x' : 'w', registerNumber);
206 appendSPOrRegisterName(rd(), is64Bit());
209 appendSPOrRegisterName(rn(), is64Bit());
231 appendSPOrRegisterName(rd(), is64Bit());
234 appendSPOrRegisterName(rn(), is64Bit());
236 appendZROrRegisterName(rm(), is64Bit() && ((option() & 0x3) == 0x3));
252 if (!is64Bit()
[all...]
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dnewproc.d41 this->is64Bit = curpsinfo->pr_dmodel == PR_MODEL_ILP32 ? 0 : 1;
42 this->wordsize = this->is64Bit ? 8 : 4;
49 printf("%Y %d <%d> %s ", walltimestamp, pid, ppid, this->is64Bit ? "64b" : "32b");
57 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
69 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
81 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
93 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
105 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
117 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
/macosx-10.10/dtrace-147/DTTk/Proc/
H A Dnewproc.d41 this->is64Bit = curpsinfo->pr_dmodel == PR_MODEL_ILP32 ? 0 : 1;
42 this->wordsize = this->is64Bit ? 8 : 4;
49 printf("%Y %d <%d> %s ", walltimestamp, pid, ppid, this->is64Bit ? "64b" : "32b");
57 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
69 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
81 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
93 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
105 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
117 this->arg = this->is64Bit ? *(unsigned long long*)(this->here_argv) : *(unsigned long*)(this->here_argv);
/macosx-10.10/llvmCore-3425.0.34/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())
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Mips/
H A DMipsELFWriterInfo.h33 virtual bool hasRelocationAddend() const { return is64Bit ? true : false; }
/macosx-10.10/llvmCore-3425.0.34/lib/Target/X86/MCTargetDesc/
H A DX86MCAsmInfo.cpp45 bool is64Bit = T.getArch() == Triple::x86_64; local
46 if (is64Bit)
53 if (!is64Bit)
H A DX86MCTargetDesc.cpp379 bool is64Bit = TheTriple.getArch() == Triple::x86_64; local
383 if (is64Bit)
397 int stackGrowth = is64Bit ? -8 : -4;
401 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
405 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth);
406 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP);
418 bool is64Bit = T.getArch() == Triple::x86_64; local
425 if (is64Bit)
429 } else if (T.isOSWindows() && is64Bit)
440 if (is64Bit)
[all...]
/macosx-10.10/llvmCore-3425.0.34/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)
/macosx-10.10/xnu-2782.1.97/bsd/dev/i386/
H A Ddtrace_isa.c183 boolean_t is64Bit = proc_is64bit(current_proc()); local
186 if (is64Bit) {
274 boolean_t is64Bit = proc_is64bit(current_proc()); local
323 if (is64Bit) {
358 boolean_t is64Bit = proc_is64bit(current_proc()); local
376 if (is64Bit)
420 boolean_t is64Bit = proc_is64bit(current_proc()); local
445 if (is64Bit) {
490 boolean_t is64Bit = proc_is64bit(current_proc()); local
503 if (is64Bit) {
548 boolean_t is64Bit = proc_is64bit(current_proc()); local
[all...]

Completed in 219 milliseconds

123