HomeSort by: relevance | last modified time | path
    Searched refs:CPUType (Results 1 - 25 of 43) sorted by relevancy

1 2

  /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/lib/MC/
MCMachObjectTargetWriter.cpp 16 : Is64Bit(Is64Bit_), CPUType(CPUType_), CPUSubtype(CPUSubtype_) {}
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
EnumTables.cpp 145 CV_ENUM_CLASS_ENT(CPUType, Intel8080),
146 CV_ENUM_CLASS_ENT(CPUType, Intel8086),
147 CV_ENUM_CLASS_ENT(CPUType, Intel80286),
148 CV_ENUM_CLASS_ENT(CPUType, Intel80386),
149 CV_ENUM_CLASS_ENT(CPUType, Intel80486),
150 CV_ENUM_CLASS_ENT(CPUType, Pentium),
151 CV_ENUM_CLASS_ENT(CPUType, PentiumPro),
152 CV_ENUM_CLASS_ENT(CPUType, Pentium3),
153 CV_ENUM_CLASS_ENT(CPUType, MIPS),
154 CV_ENUM_CLASS_ENT(CPUType, MIPS16)
    [all...]
SymbolRecordMapping.cpp 487 CPUType CPU) {
493 case CPUType::Intel8080:
494 case CPUType::Intel8086:
495 case CPUType::Intel80286:
496 case CPUType::Intel80386:
497 case CPUType::Intel80486:
498 case CPUType::Pentium:
499 case CPUType::PentiumPro:
500 case CPUType::Pentium3:
508 case CPUType::X64
    [all...]
SymbolDumper.cpp 34 ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes)
48 CPUType getCompilationCPUType() const { return CompilationCPUType; }
61 CPUType CompilationCPUType = CPUType::X64;
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
MachO.cpp 55 uint32_t CPUType;
56 memcpy(&CPUType, Data.data() + 4, sizeof(uint32_t));
58 CPUType = ByteSwap_32(CPUType);
61 dbgs() << "jitLink_MachO: cputype = " << format("0x%08" PRIx32, CPUType)
65 switch (CPUType) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
SymbolDumper.h 29 std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU,
45 CPUType getCompilationCPUType() const { return CompilationCPUType; }
52 CPUType CompilationCPUType;
EnumTables.h 23 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
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);
SymbolRecord.h 711 CPUType Machine;
737 CPUType Machine;
784 RegisterId getLocalFramePtrReg(CPUType CPU) const {
790 RegisterId getParamFramePtrReg(CPUType CPU) const {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalSymbolDumper.cpp 214 static std::string formatMachineType(CPUType Cpu) {
216 RETURN_CASE(CPUType, Intel8080, "intel 8080");
217 RETURN_CASE(CPUType, Intel8086, "intel 8086");
218 RETURN_CASE(CPUType, Intel80286, "intel 80286");
219 RETURN_CASE(CPUType, Intel80386, "intel 80386");
220 RETURN_CASE(CPUType, Intel80486, "intel 80486");
221 RETURN_CASE(CPUType, Pentium, "intel pentium");
222 RETURN_CASE(CPUType, PentiumPro, "intel pentium pro");
223 RETURN_CASE(CPUType, Pentium3, "intel pentium 3");
224 RETURN_CASE(CPUType, MIPS, "mips")
    [all...]
MinimalSymbolDumper.h 58 codeview::CPUType CompilationCPU = codeview::CPUType::X64;
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
Architecture.cpp 23 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType) {
25 if (CPUType == (Type) && \
  /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/
Architecture.h 35 Architecture getArchitectureFromCpuType(uint32_t CPUType, uint32_t CPUSubType);
  /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...]
  /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/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.h 55 createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype,
AArch64MachObjectWriter.cpp 40 AArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype, bool IsILP32)
41 : MCMachObjectTargetWriter(!IsILP32 /* is64Bit */, CPUType, CPUSubtype) {}
411 llvm::createAArch64MachObjectWriter(uint32_t CPUType, uint32_t CPUSubtype,
413 return std::make_unique<AArch64MachObjectWriter>(CPUType, CPUSubtype,
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLSymbols.cpp 58 LLVM_YAML_DECLARE_ENUM_TRAITS(CPUType)
142 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) {
145 io.enumCase(Cpu, E.Name.str().c_str(), static_cast<CPUType>(E.Value));
153 Optional<CPUType> CpuType;
158 CpuType = CPUType::Pentium3;
161 CpuType = CPUType::X64
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.h 104 createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType,
ARMMachObjectWriter.cpp 52 ARMMachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype)
53 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
507 llvm::createARMMachObjectWriter(bool Is64Bit, uint32_t CPUType,
509 return std::make_unique<ARMMachObjectWriter>(Is64Bit, CPUType, CPUSubtype);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.h 108 createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype);
X86MachObjectWriter.cpp 56 X86MachObjectWriter(bool Is64Bit, uint32_t CPUType, uint32_t CPUSubtype)
57 : MCMachObjectTargetWriter(Is64Bit, CPUType, CPUSubtype) {}
600 llvm::createX86MachObjectWriter(bool Is64Bit, uint32_t CPUType,
602 return std::make_unique<X86MachObjectWriter>(Is64Bit, CPUType, CPUSubtype);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/
llvm-libtool-darwin.cpp 194 static uint64_t getCPUID(uint32_t CPUType, uint32_t CPUSubtype) {
195 switch (CPUType) {
202 return static_cast<uint64_t>(CPUType) << 32 | CPUSubtype;
204 return CPUType;
  /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;

Completed in 32 milliseconds

1 2