Searched refs:CPUType (Results 26 - 42 of 42) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DPDB.cpp1119 static codeview::CPUType toCodeViewMachine(COFF::MachineTypes machine) {
1122 return codeview::CPUType::X64;
1124 return codeview::CPUType::ARM7;
1126 return codeview::CPUType::ARM64;
1128 return codeview::CPUType::ARMNT;
1130 return codeview::CPUType::Intel80386;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp589 uint32_t CPUType = cantFail(MachO::getCPUType(TheTriple)); variable
591 return createAArch64MachObjectWriter(CPUType, CPUSubType,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h123 using PDB_Cpu = codeview::CPUType;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOReader.cpp22 O.Header.CPUType = MachOObj.getHeader().cputype;
H A DMachOWriter.cpp141 Header.cputype = O.Header.CPUType;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.h61 codeview::CPUType TheCPU;
H A DCodeViewDebug.cpp135 static CPUType mapArchToCVCPUType(Triple::ArchType Type) {
138 return CPUType::Pentium3;
140 return CPUType::X64;
142 return CPUType::Thumb;
144 return CPUType::ARM64;
146 report_fatal_error("target architecture doesn't map to a CodeView CPUType");
800 OS.AddComment("CPUType");
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h571 static Triple::ArchType getArch(uint32_t CPUType, uint32_t CPUSubType);
572 static Triple getArchTriple(uint32_t CPUType, uint32_t CPUSubType,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp479 unsigned CPUType = support::endian::read32le(&BufPtr[BWH_CPUTypeField]); local
486 << " CPUType=" << format_hex(CPUType, 10) << "/>\n";
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp121 if (CpuReg.Cpu == llvm::codeview::CPUType::ARM64) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp1402 uint32_t CPUType = cantFail(MachO::getCPUType(TT)); variable
1404 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp2549 unsigned CPUType = getCPUType(*this); local
2551 switch (CPUType) {
2565 switch (CPUType) {
2577 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType, uint32_t CPUSubType) { argument
2578 switch (CPUType) {
2598 Triple MachOObjectFile::getArchTriple(uint32_t CPUType, uint32_t CPUSubType, argument
2606 switch (CPUType) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp572 CPUType cpu_type = index.compilands()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp4347 /// uint32_t CPUType; // CPU specifier.
4352 unsigned CPUType = ~0U; local
4355 // armv[0-9]-*, thumbv[0-9]-*, armv5te-*, or armv6t2-*. The CPUType is a magic
4367 CPUType = DARWIN_CPU_TYPE_X86 | DARWIN_CPU_ARCH_ABI64;
4369 CPUType = DARWIN_CPU_TYPE_X86;
4371 CPUType = DARWIN_CPU_TYPE_POWERPC;
4373 CPUType = DARWIN_CPU_TYPE_POWERPC | DARWIN_CPU_ARCH_ABI64;
4375 CPUType = DARWIN_CPU_TYPE_ARM;
4389 writeInt32ToBuffer(CPUType, Buffer, Position);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp190 CPUType CompilationCPUType = CPUType::X64;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h1415 enum CPUType { enum
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp7385 uint32_t CPUType, CPUSubType; local
7389 CPUType = H_64.cputype;
7393 CPUType = H.cputype;
7396 Triple T = MachOObjectFile::getArchTriple(CPUType, CPUSubType, nullptr,

Completed in 905 milliseconds

12