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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
MachOUniversalWriter.h 29 uint32_t CPUType;
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 == MachO::CPU_TYPE_ARM64
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCMachObjectWriter.h 31 const uint32_t CPUType;
64 uint32_t getCPUType() const { return CPUType; }
173 uint32_t CPUType = TargetObjectWriter->getCPUType();
174 return CPUType == MachO::CPU_TYPE_X86_64;
  /src/external/apache2/llvm/dist/llvm/lib/Object/
MachOUniversalWriter.cpp 63 switch (ObjectFile.getHeader().cputype) {
78 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
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,
91 : B(&IRO), CPUType(CPUType), CPUSubType(CPUSubType),
138 std::tie(MFO->getHeader().cputype, MFO->getHeader().cpusubtype) !
    [all...]
MachOObjectFile.cpp 128 return O.getHeader().cputype;
1015 uint32_t cputype = getCPUType(Obj); local
1037 if (cputype == MachO::CPU_TYPE_I386) {
1056 } else if (cputype == MachO::CPU_TYPE_X86_64) {
1123 } else if (cputype == MachO::CPU_TYPE_ARM) {
1142 } else if (cputype == MachO::CPU_TYPE_ARM64 ||
1143 cputype == MachO::CPU_TYPE_ARM64_32) {
1162 } else if (cputype == MachO::CPU_TYPE_POWERPC) {
1182 return malformedError("unknown cputype (" + Twine(cputype) + ") load
1265 uint32_t cputype; local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeAnalyzer.cpp 486 unsigned CPUType = support::endian::read32le(&BufPtr[BWH_CPUTypeField]);
493 << " CPUType=" << format_hex(CPUType, 10) << "/>\n";
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 554 uint32_t CPUType = cantFail(MachO::getCPUType(TheTriple));
556 return createAArch64MachObjectWriter(CPUType, CPUSubType,
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.h 29 uint32_t CPUType;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 422 Expected<uint32_t> CPUType = (*ModuleOrErr)->getMachOCPUType();
424 if (!CPUType)
425 error("Error while printing mach-o cputype: " +
426 toString(CPUType.takeError()));
431 Filename.c_str(), *CPUType, *CPUSubType);
  /src/external/apache2/llvm/dist/llvm/tools/lto/
lto.cpp 329 Expected<uint32_t> CPUType = M->getMachOCPUType();
330 if (!CPUType) {
331 sLastErrorString = toString(CPUType.takeError());
334 *out_cputype = *CPUType;
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 1432 uint32_t CPUType = cantFail(MachO::getCPUType(TT));
1434 return createX86MachObjectWriter(Is64Bit, CPUType, CPUSubType);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CodeView.h 78 enum class CPUType : uint16_t {
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);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 4469 /// uint32_t CPUType; // CPU specifier.
4474 unsigned CPUType = ~0U;
4477 // armv[0-9]-*, thumbv[0-9]-*, armv5te-*, or armv6t2-*. The CPUType is a magic
4489 CPUType = DARWIN_CPU_TYPE_X86 | DARWIN_CPU_ARCH_ABI64;
4491 CPUType = DARWIN_CPU_TYPE_X86;
4493 CPUType = DARWIN_CPU_TYPE_POWERPC;
4495 CPUType = DARWIN_CPU_TYPE_POWERPC | DARWIN_CPU_ARCH_ABI64;
4497 CPUType = DARWIN_CPU_TYPE_ARM;
4511 writeInt32ToBuffer(CPUType, Buffer, Position);
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MachO.h 511 uint32_t cputype; member in struct:llvm::MachO::mach_header
521 uint32_t cputype; member in struct:llvm::MachO::mach_header_64
940 uint32_t cputype; member in struct:llvm::MachO::fat_arch
948 uint32_t cputype; member in struct:llvm::MachO::fat_arch_64
1011 sys::swapByteOrder(mh.cputype);
1019 sys::swapByteOrder(mh.cputype);
1029 sys::swapByteOrder(mh.cputype);
1039 sys::swapByteOrder(H.cputype);
1417 // Constants for the cputype field.
1418 enum CPUType {
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 619 uint32_t cputype = O->getHeader().cputype; local
620 if (cputype & MachO::CPU_ARCH_ABI64)
629 if (cputype & MachO::CPU_ARCH_ABI64)
725 static void PrintRType(const uint64_t cputype, const unsigned r_type) {
751 switch (cputype) {
770 static void PrintRLength(const uint64_t cputype, const unsigned r_type,
772 if (cputype == MachO::CPU_TYPE_ARM &&
795 if (cputype == MachO::CPU_TYPE_X86_64)
809 const uint64_t cputype,
982 const uint64_t cputype = O->getHeader().cputype; local
1655 uint32_t cputype = O->getHeader().cputype; local
2156 uint32_t cputype = OFA.getCPUType(); local
10235 uint32_t cputype = 0; local
    [all...]

Completed in 31 milliseconds