/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/ |
H A D | MachOUniversalWriter.h | 30 uint32_t CPUSubType; variable 38 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, 49 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, 63 uint32_t getCPUSubType() const { return CPUSubType; } in getCPUSubType() 68 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType; in getCPUID() 75 Twine(CPUSubType & ~MachO::CPU_SUBTYPE_MASK) + ")") in getArchString() 81 return Lhs.CPUSubType < Rhs.CPUSubType;
|
H A D | MachO.h | 571 static Triple::ArchType getArch(uint32_t CPUType, uint32_t CPUSubType); 572 static Triple getArchTriple(uint32_t CPUType, uint32_t CPUSubType,
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
H A D | MachOUniversalWriter.cpp | 78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument 80 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType), in Slice() 85 CPUSubType(O.getHeader().cpusubtype), in Slice() 89 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, in Slice() argument 91 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType), in Slice() 227 unsigned CPUType, CPUSubType; in create() local 228 std::tie(CPUType, CPUSubType) = CPUOrErr.get(); in create() 232 MachOObjectFile::getArchTriple(CPUType, CPUSubType).getArchName()); in create() 233 return Slice{IRO, CPUType, CPUSubType, std::move(ArchName), Align}; in create()
|
H A D | MachOObjectFile.cpp | 2584 Triple::ArchType MachOObjectFile::getArch(uint32_t CPUType, uint32_t CPUSubType) { in getArch() argument 2605 Triple MachOObjectFile::getArchTriple(uint32_t CPUType, uint32_t CPUSubType, in getArchTriple() argument 2615 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2624 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2637 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2692 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2709 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2720 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple() 2729 switch (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) { in getArchTriple()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
H A D | Architecture.cpp | 23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) { in getArchitectureFromCpuType() argument 26 (CPUSubType & ~MachO::CPU_SUBTYPE_MASK) == (Subtype)) \ in getArchitectureFromCpuType()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/ |
H A D | Architecture.h | 35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/lto/ |
H A D | lto.cpp | 336 Expected<uint32_t> CPUSubType = M->getMachOCPUSubType(); in lto_module_get_macho_cputype() local 337 if (!CPUSubType) { in lto_module_get_macho_cputype() 338 sLastErrorString = toString(CPUSubType.takeError()); in lto_module_get_macho_cputype() 341 *out_cpusubtype = *CPUSubType; in lto_module_get_macho_cputype()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lto/ |
H A D | llvm-lto.cpp | 423 Expected<uint32_t> CPUSubType = (*ModuleOrErr)->getMachOCPUSubType(); in printMachOCPUOnly() local 427 if (!CPUSubType) in printMachOCPUOnly() 429 toString(CPUSubType.takeError())); in printMachOCPUOnly() 431 Filename.c_str(), *CPUType, *CPUSubType); in printMachOCPUOnly()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
H A D | AArch64AsmBackend.cpp | 555 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TheTriple)); in createObjectTargetWriter() local 556 return createAArch64MachObjectWriter(CPUType, CPUSubType, in createObjectTargetWriter()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/ |
H A D | Object.h | 30 uint32_t CPUSubType; member
|
H A D | MachOReader.cpp | 23 O.Header.CPUSubType = MachOObj.getHeader().cpusubtype; in readHeader()
|
H A D | MachOWriter.cpp | 150 Header.cpusubtype = O.Header.CPUSubType; in writeHeader()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86AsmBackend.cpp | 1433 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TT)); in createObjectTargetWriter() local 1434 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType); in createObjectTargetWriter()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
H A D | MachODump.cpp | 7394 uint32_t CPUType, CPUSubType; in DisassembleMachO() local 7399 CPUSubType = H_64.cpusubtype; in DisassembleMachO() 7403 CPUSubType = H.cpusubtype; in DisassembleMachO() 7405 Triple T = MachOObjectFile::getArchTriple(CPUType, CPUSubType, nullptr, in DisassembleMachO()
|