HomeSort by: relevance | last modified time | path
    Searched defs:CPUSubType (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
MachOUniversalWriter.h 30 uint32_t CPUSubType;
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,
63 uint32_t getCPUSubType() const { return CPUSubType; }
68 return static_cast<uint64_t>(CPUType) << 32 | CPUSubType;
75 Twine(CPUSubType & ~MachO::CPU_SUBTYPE_MASK) + ")")
81 return Lhs.CPUSubType < Rhs.CPUSubType;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOUniversalWriter.cpp 78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
80 : B(&A), CPUType(CPUType), CPUSubType(CPUSubType),
85 CPUSubType(O.getHeader().cpusubtype),
89 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType,
91 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType),
138 std::tie(MFO->getHeader().cputype, MFO->getHeader().cpusubtype) !=
139 std::tie(O->getHeader().cputype, O->getHeader().cpusubtype)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 555 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TheTriple));
556 return createAArch64MachObjectWriter(CPUType, CPUSubType,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.h 30 uint32_t CPUSubType;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 423 Expected<uint32_t> CPUSubType = (*ModuleOrErr)->getMachOCPUSubType();
427 if (!CPUSubType)
428 error("Error while printing mach-o cpusubtype: " +
429 toString(CPUSubType.takeError()));
431 Filename.c_str(), *CPUType, *CPUSubType);
  /src/external/apache2/llvm/dist/llvm/tools/lto/
lto.cpp 336 Expected<uint32_t> CPUSubType = M->getMachOCPUSubType();
337 if (!CPUSubType) {
338 sLastErrorString = toString(CPUSubType.takeError());
341 *out_cpusubtype = *CPUSubType;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 1433 uint32_t CPUSubType = cantFail(MachO::getCPUSubType(TT));
1434 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 1869 T = MachOObjectFile::getArchTriple(H_64.cputype, H_64.cpusubtype,
1873 T = MachOObjectFile::getArchTriple(H.cputype, H.cpusubtype,
2008 static void printUnknownCPUType(uint32_t cputype, uint32_t cpusubtype) {
2010 outs() << " cpusubtype (" << cpusubtype << ")\n";
2015 static void printCPUType(uint32_t cputype, uint32_t cpusubtype) {
2018 switch (cpusubtype) {
2021 outs() << " cpusubtype CPU_SUBTYPE_I386_ALL\n";
2024 printUnknownCPUType(cputype, cpusubtype);
2029 switch (cpusubtype) {
2157 uint32_t cpusubtype = OFA.getCPUSubType(); local
    [all...]

Completed in 33 milliseconds