| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/MCTargetDesc/ |
| PPCMCAsmInfo.h | 26 explicit PPCELFMCAsmInfo(bool is64Bit, const Triple &); 33 explicit PPCXCOFFMCAsmInfo(bool is64Bit, const Triple &);
|
| PPCMCAsmInfo.cpp | 21 PPCELFMCAsmInfo::PPCELFMCAsmInfo(bool is64Bit, const Triple& T) { 26 if (is64Bit) { 52 Data64bitsDirective = is64Bit ? "\t.quad\t" : nullptr; 59 PPCXCOFFMCAsmInfo::PPCXCOFFMCAsmInfo(bool Is64Bit, const Triple &T) { 62 CodePointerSize = CalleeSaveStackSlotSize = Is64Bit ? 8 : 4; 65 Data64bitsDirective = Is64Bit ? "\t.vbyte\t8, " : nullptr;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
| X86MCAsmInfo.cpp | 40 bool is64Bit = T.getArch() == Triple::x86_64; 41 if (is64Bit) 48 if (!is64Bit) 83 bool is64Bit = T.getArch() == Triple::x86_64; 89 CodePointerSize = (is64Bit && !isX32) ? 8 : 4; 92 CalleeSaveStackSlotSize = is64Bit ? 8 : 4;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| SparcSubtarget.cpp | 55 CPUName = (Is64Bit) ? "v9" : "v8"; 69 bool is64Bit) 71 Is64Bit(is64Bit), InstrInfo(initializeSubtargetDependencies(CPU, FS)), 76 if (is64Bit()) {
|
| SparcSubtarget.h | 39 bool Is64Bit; 62 const std::string &FS, const TargetMachine &TM, bool is64bit); 107 bool is64Bit() const { return Is64Bit; } 112 return is64Bit() ? 2047 : 0;
|
| SparcTargetMachine.cpp | 30 static std::string computeDataLayout(const Triple &T, bool is64Bit) { 36 if (!is64Bit) 44 if (is64Bit) 49 if (is64Bit) 73 bool Is64Bit, bool JIT) { 81 if (Is64Bit) { 93 Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT, bool is64bit) 94 : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options, 97 CM, getEffectiveRelocModel(RM), is64bit, JIT), 100 Subtarget(TT, std::string(CPU), std::string(FS), *this, is64bit), [all...] |
| SparcTargetMachine.h | 25 bool is64Bit; 31 CodeGenOpt::Level OL, bool JIT, bool is64bit);
|
| SparcRegisterInfo.cpp | 67 if (!Subtarget.is64Bit()) 82 if (ReserveAppRegisters || !Subtarget.is64Bit()) 108 return Subtarget.is64Bit() ? &SP::I64RegsRegClass : &SP::IntRegsRegClass;
|
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| XCOFFObjectFile.cpp | 102 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 111 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 119 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); 129 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 134 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 140 assert(!is64Bit() && "32-bit interface called on 64-bit object file."); 146 assert(is64Bit() && "64-bit interface called on a 32-bit object file."); 202 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); 207 assert(!is64Bit() && "Symbol table support not implemented for 64-bit."); 250 if (is64Bit()) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCXCOFFObjectWriter.h | 20 MCXCOFFObjectTargetWriter(bool Is64Bit); 29 bool is64Bit() const { return Is64Bit; } 39 bool Is64Bit;
|
| MCWasmObjectWriter.h | 22 const unsigned Is64Bit : 1; 41 bool is64Bit() const { return Is64Bit; }
|
| MCMachObjectWriter.h | 30 const unsigned Is64Bit : 1; 63 bool is64Bit() const { return Is64Bit; } 132 StringTable(TargetObjectWriter->is64Bit() ? StringTableBuilder::MachO64 171 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
| TapiFile.h | 44 bool is64Bit() { return MachO::is64Bit(Arch); }
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86Subtarget.cpp | 74 if (is64Bit()) { 154 if (is64Bit()) { 199 if (is64Bit() && F && (CallingConv::X86_RegCall == F->getCallingConv())) 207 is64Bit()) 210 if (!is64Bit() && !GV && TM.getRelocationModel() == Reloc::Static) 215 if (is64Bit()) { 308 else if (is64Bit())
|
| X86Subtarget.h | 595 bool is64Bit() const { 627 bool hasCMov() const { return HasCMov || X86SSELevel >= SSE1 || is64Bit(); } 690 bool hasLAHFSAHF() const { return HasLAHFSAHF64 || !is64Bit(); } 703 bool hasCmpxchg16b() const { return HasCmpxchg16b && is64Bit(); } 813 bool isXRaySupported() const override { return is64Bit(); } 824 bool hasMFence() const { return hasSSE2() || is64Bit(); } 843 bool isTargetNaCl32() const { return isTargetNaCl() && !is64Bit(); } 844 bool isTargetNaCl64() const { return isTargetNaCl() && is64Bit(); }
|
| X86FixupSetCC.cpp | 101 const TargetRegisterClass *RC = MF.getSubtarget<X86Subtarget>().is64Bit()
|
| X86LoadValueInjectionRetHardening.cpp | 64 if (!Subtarget->useLVIControlFlowIntegrity() || !Subtarget->is64Bit())
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/ |
| Architecture.h | 50 bool is64Bit(Architecture);
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MachObjectWriter.cpp | 148 W.write<uint32_t>(is64Bit() ? MachO::MH_MAGIC_64 : MachO::MH_MAGIC); 157 if (is64Bit()) 160 assert(W.OS.tell() - Start == (is64Bit() ? sizeof(MachO::mach_header_64) 185 is64Bit() ? sizeof(MachO::segment_command_64): 187 W.write<uint32_t>(is64Bit() ? MachO::LC_SEGMENT_64 : MachO::LC_SEGMENT); 189 NumSections * (is64Bit() ? sizeof(MachO::section_64) : 193 if (is64Bit()) { 236 if (is64Bit()) { 252 if (is64Bit()) 256 (is64Bit() ? sizeof(MachO::section_64) : sizeof(MachO::section))) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
| Architecture.cpp | 78 bool is64Bit(Architecture Arch) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| TargetParser.cpp | 249 bool is64Bit() const { return (Features & FK_64BIT); } 261 return RISCVCPUInfo[static_cast<unsigned>(Kind)].is64Bit() == IsRV64; 267 return RISCVCPUInfo[static_cast<unsigned>(Kind)].is64Bit() == IsRV64; 300 if (C.Kind != CK_INVALID && IsRV64 == C.is64Bit()) 307 if (C.Kind != CK_INVALID && IsRV64 == C.is64Bit())
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| WebAssemblyWasmObjectWriter.cpp | 34 explicit WebAssemblyWasmObjectWriter(bool Is64Bit, bool IsEmscripten); 42 WebAssemblyWasmObjectWriter::WebAssemblyWasmObjectWriter(bool Is64Bit, 44 : MCWasmObjectTargetWriter(Is64Bit, IsEmscripten) {} 79 return is64Bit() ? wasm::R_WASM_TABLE_INDEX_REL_SLEB64 85 return is64Bit() ? wasm::R_WASM_MEMORY_ADDR_REL_SLEB64 149 llvm::createWebAssemblyWasmObjectWriter(bool Is64Bit, bool IsEmscripten) { 150 return std::make_unique<WebAssemblyWasmObjectWriter>(Is64Bit, IsEmscripten);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| XCOFFDumper.cpp | 79 if (Obj.is64Bit()) { 99 if (Obj.is64Bit()) 106 if (Obj.is64Bit()) 168 if (Obj.is64Bit()) 202 assert(!Obj.is64Bit() && "32-bit interface called on 64-bit object file."); 226 assert(!Obj.is64Bit() && "32-bit interface called on 64-bit object file."); 303 if (Obj.is64Bit()) 443 if (Obj.is64Bit()) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXFrameLowering.cpp | 47 bool Is64Bit = 48 static_cast<const NVPTXTargetMachine &>(MF.getTarget()).is64Bit(); 50 (Is64Bit ? NVPTX::cvta_local_yes_64 : NVPTX::cvta_local_yes); 52 (Is64Bit ? NVPTX::MOV_DEPOT_ADDR_64 : NVPTX::MOV_DEPOT_ADDR);
|
| NVPTXTargetMachine.h | 25 bool is64bit; member in class:llvm::NVPTXTargetMachine 39 CodeGenOpt::Level OP, bool is64bit); 46 bool is64Bit() const { return is64bit; }
|