/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | EnumTables.cpp | 148 CV_ENUM_CLASS_ENT(CPUType, Intel8080), 149 CV_ENUM_CLASS_ENT(CPUType, Intel8086), 150 CV_ENUM_CLASS_ENT(CPUType, Intel80286), 151 CV_ENUM_CLASS_ENT(CPUType, Intel80386), 152 CV_ENUM_CLASS_ENT(CPUType, Intel80486), 153 CV_ENUM_CLASS_ENT(CPUType, Pentium), 154 CV_ENUM_CLASS_ENT(CPUType, PentiumPro), 155 CV_ENUM_CLASS_ENT(CPUType, Pentium3), 156 CV_ENUM_CLASS_ENT(CPUType, MIPS), 157 CV_ENUM_CLASS_ENT(CPUType, MIPS16), [all …]
|
H A D | SymbolRecordMapping.cpp | 500 CPUType CPU) { in decodeFramePtrReg() 506 case CPUType::Intel8080: in decodeFramePtrReg() 507 case CPUType::Intel8086: in decodeFramePtrReg() 508 case CPUType::Intel80286: in decodeFramePtrReg() 509 case CPUType::Intel80386: in decodeFramePtrReg() 510 case CPUType::Intel80486: in decodeFramePtrReg() 511 case CPUType::Pentium: in decodeFramePtrReg() 512 case CPUType::PentiumPro: in decodeFramePtrReg() 513 case CPUType::Pentium3: in decodeFramePtrReg() 521 case CPUType in encodeFramePtrReg() [all...] |
H A D | SymbolDumper.cpp | 32 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes) in CVSymbolDumperImpl() 46 CPUType getCompilationCPUType() const { return CompilationCPUType; } in getCompilationCPUType() 59 CPUType CompilationCPUType = CPUType::X64;
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | MinimalSymbolDumper.cpp | 223 static std::string formatMachineType(CPUType Cpu) { in formatMachineType() 225 RETURN_CASE(CPUType, Intel8080, "intel 8080"); in formatMachineType() 226 RETURN_CASE(CPUType, Intel8086, "intel 8086"); in formatMachineType() 227 RETURN_CASE(CPUType, Intel80286, "intel 80286"); in formatMachineType() 228 RETURN_CASE(CPUType, Intel80386, "intel 80386"); in formatMachineType() 229 RETURN_CASE(CPUType, Intel80486, "intel 80486"); in formatMachineType() 230 RETURN_CASE(CPUType, Pentium, "intel pentium"); in formatMachineType() 231 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro"); in formatMachineType() 232 RETURN_CASE(CPUType, Pentium3, "intel pentium 3"); in formatMachineType() 233 RETURN_CASE(CPUType, MIPS, "mips"); in formatMachineType() [all …]
|
H A D | MinimalSymbolDumper.h | 58 codeview::CPUType CompilationCPU = codeview::CPUType::X64;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | MachOUniversalWriter.h | 36 uint32_t CPUType; variable 45 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, 53 /// This constructor takes pre-specified \param CPUType , \param CPUSubType , 56 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, 68 uint32_t getCPUType() const { return CPUType; } in getCPUType() 75 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType; in getCPUID() 81 return ("unknown(" + Twine(CPUType) + "," + in getArchString() 87 if (Lhs.CPUType == Rhs.CPUType) 91 if (Lhs.CPUType [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | MachO.cpp | 54 uint32_t CPUType; in createLinkGraphFromMachOObject() local 55 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t)); in createLinkGraphFromMachOObject() 57 CPUType = llvm::byteswap<uint32_t>(CPUType); in createLinkGraphFromMachOObject() 60 dbgs() << "jitLink_MachO: cputype = " << format("0x%08" PRIx32, CPUType) in createLinkGraphFromMachOObject() 64 switch (CPUType) { in createLinkGraphFromMachOObject()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | MachOUniversalWriter.cpp | 85 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument 87 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType), in Slice() 91 : B(&O), CPUType(O.getHeader().cputype), in Slice() 96 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument 98 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType), in Slice() 230 unsigned CPUType, CPUSubType; in create() 231 std::tie(CPUType, CPUSubType) = CPUOrErr.get(); in create() 235 MachOObjectFile::getArchTriple(CPUType, CPUSubTyp in create() 234 unsigned CPUType, CPUSubType; create() local [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | SymbolDumper.h | 31 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU, in CVSymbolDumper() 47 CPUType getCompilationCPUType() const { return CompilationCPUType; } in getCompilationCPUType() 54 CPUType CompilationCPUType;
|
H A D | CodeView.h | 76 enum class CPUType : uint16_t { enum 541 CPURegister(CPUType Cpu, codeview::RegisterId Reg) { in CPURegister() 545 CPUType Cpu; 558 RegisterId decodeFramePtrReg(EncodedFramePtrReg EncodedReg, CPUType CPU); 560 EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
|
H A D | EnumTables.h | 23 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | PdbFPOProgramToDWARFExpression.cpp | 28 llvm::codeview::CPUType cpu_type; in ResolveLLDBRegisterNum() 31 cpu_type = llvm::codeview::CPUType::ARM64; in ResolveLLDBRegisterNum() 35 cpu_type = llvm::codeview::CPUType::X64; in ResolveLLDBRegisterNum()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Architecture.cpp | 23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() argument 25 if (CPUType == (Type) && \ in getArchitectureFromCpuType()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
H A D | MCMachObjectWriter.h | 34 const uint32_t CPUType; variable 67 uint32_t getCPUType() const { return CPUType; } in getCPUType() 266 uint32_t CPUType = TargetObjectWriter->getCPUType(); in isX86_64() local 267 return CPUType == MachO::CPU_TYPE_X86_64; in isX86_64()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64MachObjectWriter.cpp | 40 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32) in AArch64MachObjectWriter() argument 41 : MCMachObjectTargetWriter(!IsILP32 /* is64Bit */, CPUType, CPUSubtype) {} in AArch64MachObjectWriter() 409 llvm::createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, in createAArch64MachObjectWriter() argument 411 return std::make_unique<AArch64MachObjectWriter>(CPUType, CPUSubtype, in createAArch64MachObjectWriter()
|
H A D | AArch64MCTargetDesc.h | 53 createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype,
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLSymbols.cpp | 60 LLVM_YAML_DECLARE_ENUM_TRAITS(CPUType) in LLVM_YAML_IS_SEQUENCE_VECTOR() 145 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) { in enumeration() 148 io.enumCase(Cpu, E.Name.str().c_str(), static_cast<CPUType>(E.Value)); in enumeration() 156 std::optional<CPUType> CpuType; in enumeration() 161 CpuType = CPUType::Pentium3; in enumeration() 164 CpuType = CPUType::X64; in enumeration() 167 CpuType = CPUType::ARMNT; in enumeration() 172 CpuType = CPUType::ARM64; in enumeration()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMachObjectWriter.cpp | 47 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in ARMMachObjectWriter() argument 48 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in ARMMachObjectWriter() 490 llvm::createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, in createARMMachObjectWriter() argument 492 return std::make_unique<ARMMachObjectWriter>(Is64Bit, CPUType, CPUSubtype); in createARMMachObjectWriter()
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCMachObjectTargetWriter.cpp | 16 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {} in MCMachObjectTargetWriter()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MachObjectWriter.cpp | 52 X86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype) in X86MachObjectWriter() argument 53 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {} in X86MachObjectWriter() 589 llvm::createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, in createX86MachObjectWriter() argument 591 return std::make_unique<X86MachObjectWriter>(Is64Bit, CPUType, CPUSubtype); in createX86MachObjectWriter()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | Architecture.h | 35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
H A D | LVReader.h | 251 void setCompileUnitCPUType(codeview::CPUType Type) { in setCompileUnitCPUType() 254 codeview::CPUType getCompileUnitCPUType() { in getCompileUnitCPUType()
|
H A D | LVScope.h | 414 codeview::CPUType CompilationCPUType = codeview::CPUType::X64; 543 void setCPUType(codeview::CPUType Type) { CompilationCPUType = Type; } in setCPUType() 544 codeview::CPUType getCPUType() { return CompilationCPUType; } in getCPUType()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
H A D | MachOReader.cpp | 23 O.Header.CPUType = MachOObj.getHeader().cputype; in readHeader() 95 const uint32_t CPUType = MachOObj.getHeader().cputype; in extractSections() 106 R.IsAddend = !R.Scattered && (CPUType == MachO::CPU_TYPE_ARM64 && in extractSections() 93 const uint32_t CPUType = MachOObj.getHeader().cputype; extractSections() local
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | SectionPriorities.cpp | 310 CPUType cpuType = StringSwitch<CPUType>(line) in parseOrderFile()
|