Searched refs:CPUType (Results 1 - 25 of 43) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMachOUniversalWriter.h29 uint32_t CPUType; member in class:llvm::object::Slice
38 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType,
46 /// This constructor takes pre-specified \param CPUType , \param CPUSubType ,
49 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
61 uint32_t getCPUType() const { return CPUType; }
68 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType;
74 return ("unknown(" + Twine(CPUType) + "," +
80 if (Lhs.CPUType == Rhs.CPUType)
84 if (Lhs.CPUType
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCMachObjectTargetWriter.cpp16 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {}
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp145 CV_ENUM_CLASS_ENT(CPUType, Intel8080),
146 CV_ENUM_CLASS_ENT(CPUType, Intel8086),
147 CV_ENUM_CLASS_ENT(CPUType, Intel80286),
148 CV_ENUM_CLASS_ENT(CPUType, Intel80386),
149 CV_ENUM_CLASS_ENT(CPUType, Intel80486),
150 CV_ENUM_CLASS_ENT(CPUType, Pentium),
151 CV_ENUM_CLASS_ENT(CPUType, PentiumPro),
152 CV_ENUM_CLASS_ENT(CPUType, Pentium3),
153 CV_ENUM_CLASS_ENT(CPUType, MIPS),
154 CV_ENUM_CLASS_ENT(CPUType, MIPS1
[all...]
H A DSymbolRecordMapping.cpp487 CPUType CPU) {
493 case CPUType::Intel8080:
494 case CPUType::Intel8086:
495 case CPUType::Intel80286:
496 case CPUType::Intel80386:
497 case CPUType::Intel80486:
498 case CPUType::Pentium:
499 case CPUType::PentiumPro:
500 case CPUType::Pentium3:
508 case CPUType
[all...]
H A DSymbolDumper.cpp34 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes)
48 CPUType getCompilationCPUType() const { return CompilationCPUType; }
61 CPUType CompilationCPUType = CPUType::X64;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DMachO.cpp55 uint32_t CPUType;
56 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t));
58 CPUType = ByteSwap_32(CPUType);
61 dbgs() << "jitLink_MachO: cputype = " << format("0x%08" PRIx32, CPUType)
65 switch (CPUType) {
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolDumper.h29 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU,
45 CPUType getCompilationCPUType() const { return CompilationCPUType; }
52 CPUType CompilationCPUType;
H A DEnumTables.h23 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
H A DCodeView.h78 enum class CPUType : uint16_t { class in namespace:llvm::codeview
522 // Register Ids are shared between architectures in CodeView. CPUType is needed
526 CPURegister(CPUType Cpu, codeview::RegisterId Reg) {
530 CPUType Cpu;
543 RegisterId decodeFramePtrReg(EncodedFramePtrReg EncodedReg, CPUType CPU);
545 EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
H A DSymbolRecord.h711 CPUType Machine;
737 CPUType Machine;
784 RegisterId getLocalFramePtrReg(CPUType CPU) const {
790 RegisterId getParamFramePtrReg(CPUType CPU) const {
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp214 static std::string formatMachineType(CPUType Cpu) {
216 RETURN_CASE(CPUType, Intel8080, "intel 8080");
217 RETURN_CASE(CPUType, Intel8086, "intel 8086");
218 RETURN_CASE(CPUType, Intel80286, "intel 80286");
219 RETURN_CASE(CPUType, Intel80386, "intel 80386");
220 RETURN_CASE(CPUType, Intel80486, "intel 80486");
221 RETURN_CASE(CPUType, Pentium, "intel pentium");
222 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro");
223 RETURN_CASE(CPUType, Pentium3, "intel pentium 3");
224 RETURN_CASE(CPUType, MIP
[all...]
H A DMinimalSymbolDumper.h58 codeview::CPUType CompilationCPU = codeview::CPUType::X64;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/TextAPI/
H A DArchitecture.cpp23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { argument
25 if (CPUType == (Type) && \
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
H A DArchitecture.h35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOUniversalWriter.cpp78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, argument
80 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType),
84 : B(&O), CPUType(O.getHeader().cputype),
89 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, argument
91 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType),
227 unsigned CPUType, CPUSubType; local
228 std::tie(CPUType, CPUSubType) = CPUOrErr.get();
232 MachOObjectFile::getArchTriple(CPUType, CPUSubTyp
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.h55 createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype,
H A DAArch64MachObjectWriter.cpp40 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32) argument
41 : MCMachObjectTargetWriter(!IsILP32 /* is64Bit */, CPUType, CPUSubtype) {}
411 llvm::createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, argument
413 return std::make_unique<AArch64MachObjectWriter>(CPUType, CPUSubtype,
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h31 const uint32_t CPUType; member in class:llvm::MCMachObjectTargetWriter
64 uint32_t getCPUType() const { return CPUType; }
173 uint32_t CPUType = TargetObjectWriter->getCPUType(); local
174 return CPUType == MachO::CPU_TYPE_X86_64;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp52 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) argument
53 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
507 llvm::createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, argument
509 return std::make_unique<ARMMachObjectWriter>(Is64Bit, CPUType, CPUSubtype);
H A DARMMCTargetDesc.h104 createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h108 createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype);
H A DX86MachObjectWriter.cpp56 X86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) argument
57 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
600 llvm::createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, argument
602 return std::make_unique<X86MachObjectWriter>(Is64Bit, CPUType, CPUSubtype);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp58 LLVM_YAML_DECLARE_ENUM_TRAITS(CPUType)
142 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) {
145 io.enumCase(Cpu, E.Name.str().c_str(), static_cast<CPUType>(E.Value));
153 Optional<CPUType> CpuType;
158 CpuType = CPUType::Pentium3;
161 CpuType = CPUType::X64;
164 CpuType = CPUType::ARMNT;
167 CpuType = CPUType::ARM64;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/
H A Dllvm-libtool-darwin.cpp194 static uint64_t getCPUID(uint32_t CPUType, uint32_t CPUSubtype) { argument
195 switch (CPUType) {
202 return static_cast<uint64_t>(CPUType) << 32 | CPUSubtype;
204 return CPUType;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/lto/
H A Dlto.cpp329 Expected<uint32_t> CPUType = M->getMachOCPUType(); local
330 if (!CPUType) {
331 sLastErrorString = toString(CPUType.takeError());
334 *out_cputype = *CPUType;

Completed in 282 milliseconds

12