Home
last modified time | relevance | path

Searched refs:is64Bit (Results 1 – 25 of 63) sorted by relevance

123

/external/llvm/lib/Target/PowerPC/MCTargetDesc/
DPPCMCAsmInfo.cpp17 PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) { in PPCMCAsmInfoDarwin() argument
18 if (is64Bit) in PPCMCAsmInfoDarwin()
26 if (!is64Bit) in PPCMCAsmInfoDarwin()
33 PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) { in PPCLinuxMCAsmInfo() argument
54 if (!is64Bit) in PPCLinuxMCAsmInfo()
58 Data64bitsDirective = is64Bit ? "\t.quad\t" : 0; in PPCLinuxMCAsmInfo()
DPPCMCAsmInfo.h22 explicit PPCMCAsmInfoDarwin(bool is64Bit);
26 explicit PPCLinuxMCAsmInfo(bool is64Bit);
/external/llvm/include/llvm/Target/
DTargetELFWriterInfo.h31 bool is64Bit, isLittleEndian; variable
69 unsigned getEIClass() const { return is64Bit ? ELFCLASS64 : ELFCLASS32; } in getEIClass()
75 unsigned getHdrSize() const { return is64Bit ? 64 : 52; } in getHdrSize()
76 unsigned getSHdrSize() const { return is64Bit ? 64 : 40; } in getSHdrSize()
79 unsigned getSymTabEntrySize() const { return is64Bit ? 24 : 16; } in getSymTabEntrySize()
83 unsigned getPrefELFAlignment() const { return is64Bit ? 8 : 4; } in getPrefELFAlignment()
87 return is64Bit ? (hasRelocationAddend() ? 24 : 16) in getRelocationEntrySize()
/external/llvm/test/Scripts/
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): argument
138 if is64Bit:
156 dumpSection(f, i, opts, is64Bit)
195 if f.is64Bit:
[all …]
Delf-dump17 self.is64Bit = None
47 if self.is64Bit:
53 if self.is64Bit:
115 if not f.is64Bit:
123 if f.is64Bit:
136 if f.is64Bit:
154 f.is64Bit = False
156 f.is64Bit = True
/external/llvm/lib/Target/X86/
DX86ELFWriterInfo.cpp30 EMachine = is64Bit ? EM_X86_64 : EM_386; in X86ELFWriterInfo()
36 if (is64Bit) { in getRelocationType()
68 if (is64Bit) { in getDefaultAddendForRelTy()
90 if (is64Bit) { in getRelocationTySize()
114 if (is64Bit) { in isPCRelativeRel()
139 return is64Bit ? in getAbsoluteLabelMachineRelTy()
DX86TargetMachine.cpp100 Reloc::Model RM, bool is64Bit) in X86TargetMachine() argument
102 Subtarget(TT, CPU, FS, StackAlignmentOverride, is64Bit), in X86TargetMachine()
104 ELFWriterInfo(is64Bit, true) { in X86TargetMachine()
109 } else if (Subtarget.is64Bit()) { in X86TargetMachine()
140 if (!Subtarget.is64Bit()) in addInstSelector()
189 if (Subtarget.is64Bit()) in setCodeModelForJIT()
DX86SelectionDAGInfo.cpp101 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned in EmitTargetCodeForMemset()
130 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX : in EmitTargetCodeForMemset()
134 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI : in EmitTargetCodeForMemset()
212 AVT = Subtarget->is64Bit() ? MVT::i64 : MVT::i32; in EmitTargetCodeForMemcpy()
220 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX : in EmitTargetCodeForMemcpy()
224 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI : in EmitTargetCodeForMemcpy()
228 Chain = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI : in EmitTargetCodeForMemcpy()
/external/llvm/lib/Target/PowerPC/
DPPCJITInfo.cpp49 static void EmitBranchToAt(uint64_t At, uint64_t To, bool isCall, bool is64Bit){ in EmitBranchToAt() argument
55 } else if (!is64Bit) { in EmitBranchToAt()
296 bool is64Bit) { in PPCCompilationCallbackC() argument
327 StubCallAddr -= is64Bit ? 9 : 6; in PPCCompilationCallbackC()
332 EmitBranchToAt((intptr_t)StubCallAddr, (intptr_t)Target, false, is64Bit); in PPCCompilationCallbackC()
346 return is64Bit ? PPC64CompilationCallback : PPC32CompilationCallback; in getLazyResolverFunction()
377 EmitBranchToAt((intptr_t)Addr, (intptr_t)Fn, false, is64Bit); in emitFunctionStub()
383 if (is64Bit) { in emitFunctionStub()
404 EmitBranchToAt(BranchAddr, (intptr_t)Fn, true, is64Bit); in emitFunctionStub()
466 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit); in replaceMachineCodeForFunction()
DPPCSubtarget.cpp66 const std::string &FS, bool is64Bit) in PPCSubtarget() argument
73 , IsPPC64(is64Bit) in PPCSubtarget()
97 if (is64Bit) { in PPCSubtarget()
DPPCTargetMachine.cpp57 Reloc::Model RM, bool is64Bit) in PPCTargetMachine() argument
59 Subtarget(TT, CPU, FS, is64Bit), in PPCTargetMachine()
61 FrameLowering(Subtarget), JITInfo(*this, is64Bit), in PPCTargetMachine()
DPPCJITInfo.h26 bool is64Bit; variable
30 is64Bit = tmIs64Bit; in PPCJITInfo()
/external/llvm/lib/Target/Sparc/
DSparcSubtarget.cpp25 const std::string &FS, bool is64Bit) : in SparcSubtarget() argument
30 Is64Bit(is64Bit) { in SparcSubtarget()
35 if (is64Bit) in SparcSubtarget()
DSparcSubtarget.h44 bool is64Bit() const { return Is64Bit; } in is64Bit() function
47 if (is64Bit()) { in getDataLayout()
/external/llvm/lib/Target/X86/MCTargetDesc/
DX86MCTargetDesc.cpp305 bool is64Bit = TheTriple.getArch() == Triple::x86_64; in createX86MCAsmInfo() local
309 if (is64Bit) in createX86MCAsmInfo()
321 int stackGrowth = is64Bit ? -8 : -4; in createX86MCAsmInfo()
325 MachineLocation Src(is64Bit ? X86::RSP : X86::ESP, stackGrowth); in createX86MCAsmInfo()
329 MachineLocation CSDst(is64Bit ? X86::RSP : X86::ESP, stackGrowth); in createX86MCAsmInfo()
330 MachineLocation CSSrc(is64Bit ? X86::RIP : X86::EIP); in createX86MCAsmInfo()
346 bool is64Bit = T.getArch() == Triple::x86_64; in createX86MCCodeGenInfo() local
353 if (is64Bit) in createX86MCCodeGenInfo()
357 } else if (T.isOSWindows() && is64Bit) in createX86MCCodeGenInfo()
368 if (is64Bit) in createX86MCCodeGenInfo()
[all …]
DX86MCAsmInfo.cpp52 bool is64Bit = T.getArch() == Triple::x86_64; in X86MCAsmInfoDarwin() local
53 if (is64Bit) in X86MCAsmInfoDarwin()
61 if (!is64Bit) in X86MCAsmInfoDarwin()
/external/llvm/lib/MC/
DMachObjectWriter.cpp124 Write32(is64Bit() ? macho::HM_Object64 : macho::HM_Object32); in WriteHeader()
133 if (is64Bit()) in WriteHeader()
137 (is64Bit() ? macho::Header64Size : macho::Header32Size)); in WriteHeader()
155 is64Bit() ? macho::SegmentLoadCommand64Size: in WriteSegmentLoadCommand()
157 Write32(is64Bit() ? macho::LCT_Segment64 : macho::LCT_Segment); in WriteSegmentLoadCommand()
159 NumSections * (is64Bit() ? macho::Section64Size : in WriteSegmentLoadCommand()
163 if (is64Bit()) { in WriteSegmentLoadCommand()
205 if (is64Bit()) { in WriteSection()
225 if (is64Bit()) in WriteSection()
228 assert(OS.tell() - Start == (is64Bit() ? macho::Section64Size : in WriteSection()
[all …]
/external/llvm/lib/Target/PTX/
DPTXTargetMachine.cpp53 Reloc::Model RM, bool is64Bit) in PTXTargetMachine() argument
55 DataLayout(is64Bit ? DataLayout64 : DataLayout32), in PTXTargetMachine()
56 Subtarget(TT, CPU, FS, is64Bit), in PTXTargetMachine()
DPTXSubtarget.cpp26 const std::string &FS, bool is64Bit) in PTXSubtarget() argument
32 Is64Bit(is64Bit) { in PTXSubtarget()
DPTXSubtarget.h83 const std::string &FS, bool is64Bit);
92 bool is64Bit() const { return Is64Bit; } in is64Bit() function
/external/llvm/include/llvm/Support/
DOutputBuffer.h29 bool is64Bit, isLittleEndian; variable
33 : Output(Out), is64Bit(is64bit), isLittleEndian(le) {} in OutputBuffer()
105 if (!is64Bit) in outaddr()
150 if (!is64Bit) in fixaddr()
/external/llvm/lib/CodeGen/
DELF.h193 ELFSection(const std::string &name, bool isLittleEndian, bool is64Bit) in ELFSection() argument
194 : BinaryObject(name, isLittleEndian, is64Bit), Type(0), Flags(0), Addr(0), in ELFSection()
209 uint64_t getInfo(bool is64Bit) const { in getInfo() argument
210 if (is64Bit) in getInfo()
/external/llvm/include/llvm/MC/
DMCMachObjectWriter.h51 bool is64Bit() const { return Is64Bit; } in is64Bit() function
142 bool is64Bit() const { return TargetObjectWriter->is64Bit(); } in is64Bit() function
/external/llvm/lib/Object/
DMachOObjectFile.cpp149 if (MachOObj->is64Bit()) { in getSymbolName()
163 if (MachOObj->is64Bit()) { in getSymbolAddress()
184 if (MachOObj->is64Bit()) { in getSymbolNMTypeChar()
218 if (MachOObj->is64Bit()) { in isSymbolInternal()
391 if (MachOObj->is64Bit()) { in sectionContainsSymbol()
420 return MachOObj->is64Bit() ? 8 : 4; in getBytesInAddress()
424 if (!MachOObj->is64Bit()) { in getFileFormatName()
/external/llvm/include/llvm/CodeGen/
DBinaryObject.h40 BinaryObject(bool isLittleEndian, bool is64Bit) in BinaryObject() argument
41 : IsLittleEndian(isLittleEndian), Is64Bit(is64Bit) {} in BinaryObject()
43 BinaryObject(const std::string &name, bool isLittleEndian, bool is64Bit) in BinaryObject() argument
44 : Name(name), IsLittleEndian(isLittleEndian), Is64Bit(is64Bit) {} in BinaryObject()

123