reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/DebugInfo/CodeView/CodeView.h
  526   CPURegister(CPUType Cpu, codeview::RegisterId Reg) {
  530   CPUType Cpu;
  543 RegisterId decodeFramePtrReg(EncodedFramePtrReg EncodedReg, CPUType CPU);
  545 EncodedFramePtrReg encodeFramePtrReg(RegisterId Reg, CPUType CPU);
include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
  113   template <typename T> Error mapEnum(T &Value, const Twine &Comment = "") {
  117     using U = typename std::underlying_type<T>::type;
include/llvm/DebugInfo/CodeView/EnumTables.h
   23 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu);
include/llvm/DebugInfo/CodeView/SymbolDumper.h
   29                  std::unique_ptr<SymbolDumpDelegate> ObjDelegate, CPUType CPU,
   45   CPUType getCompilationCPUType() const { return CompilationCPUType; }
   52   CPUType CompilationCPUType;
include/llvm/DebugInfo/CodeView/SymbolRecord.h
  704   CPUType Machine;
  730   CPUType Machine;
  777   RegisterId getLocalFramePtrReg(CPUType CPU) const {
  783   RegisterId getParamFramePtrReg(CPUType CPU) const {
include/llvm/DebugInfo/PDB/PDBTypes.h
  121 using PDB_Cpu = codeview::CPUType;
include/llvm/Support/YAMLTraits.h
  313   using Signature_enumeration = void (*)(class IO&, T&);
  322     (sizeof(test<ScalarEnumerationTraits<T>>(nullptr)) == 1);
  329   using Signature_bitset = void (*)(class IO&, T&);
  337   static bool const value = (sizeof(test<ScalarBitSetTraits<T>>(nullptr)) == 1);
  344   using Signature_input = StringRef (*)(StringRef, void*, T&);
  345   using Signature_output = void (*)(const T&, void*, raw_ostream&);
  357       (sizeof(test<ScalarTraits<T>>(nullptr, nullptr, nullptr)) == 1);
  364   using Signature_input = StringRef (*)(StringRef, void *, T &);
  365   using Signature_output = void (*)(const T &, void *, raw_ostream &);
  375       (sizeof(test<BlockScalarTraits<T>>(nullptr, nullptr)) == 1);
  380   using Signature_input = StringRef (*)(StringRef, StringRef, void *, T &);
  381   using Signature_output = void (*)(const T &, void *, raw_ostream &,
  383   using Signature_mustQuote = QuotingType (*)(const T &, StringRef);
  393       (sizeof(test<TaggedScalarTraits<T>>(nullptr, nullptr, nullptr)) == 1);
  412   using Signature_mapping = void (*)(class IO &, T &);
  419   static bool const value = (sizeof(test<MappingTraits<T>>(nullptr)) == 1);
  438   using Signature_validate = StringRef (*)(class IO &, T &);
  445   static bool const value = (sizeof(test<MappingTraits<T>>(nullptr)) == 1);
  452   using Signature_size = size_t (*)(class IO&, T&);
  460   static bool const value =  (sizeof(test<SequenceTraits<T>>(nullptr)) == 1);
  467   using Signature_input = void (*)(IO &io, StringRef key, T &v);
  476       (sizeof(test<CustomMappingTraits<T>>(nullptr)) == 1);
  516   using Signature_size = size_t (*)(class IO &, T &);
  524   static bool const value = (sizeof(test<DocumentListTraits<T>>(nullptr))==1);
  528   using Signature_getKind = NodeKind (*)(const T &);
  535   static bool const value = (sizeof(test<PolymorphicTraits<T>>(nullptr)) == 1);
  793   void enumCase(T &Val, const char* Str, const T ConstVal) {
  793   void enumCase(T &Val, const char* Str, const T ConstVal) {
  801   void enumCase(T &Val, const char* Str, const uint32_t ConstVal) {
  849   template <typename T> void mapRequired(const char *Key, T &Val) {
  941   void processKey(const char *Key, T &Val, bool Required, Context &Ctx) {
  968 typename std::enable_if<has_ScalarEnumerationTraits<T>::value, void>::type
  969 yamlize(IO &io, T &Val, bool, EmptyContext &Ctx) {
  971   ScalarEnumerationTraits<T>::enumeration(io, Val);
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
  135 static CPUType mapArchToCVCPUType(Triple::ArchType Type) {
  138     return CPUType::Pentium3;
  140     return CPUType::X64;
  142     return CPUType::Thumb;
  144     return CPUType::ARM64;
lib/CodeGen/AsmPrinter/CodeViewDebug.h
   61   codeview::CPUType TheCPU;
lib/DebugInfo/CodeView/EnumTables.cpp
  436 ArrayRef<EnumEntry<uint16_t>> getRegisterNames(CPUType Cpu) {
  437   if (Cpu == CPUType::ARM64) {
lib/DebugInfo/CodeView/SymbolDumper.cpp
   34                      ScopedPrinter &W, CPUType CPU, bool PrintRecordBytes)
   48   CPUType getCompilationCPUType() const { return CompilationCPUType; }
   61   CPUType CompilationCPUType = CPUType::X64;
   61   CPUType CompilationCPUType = CPUType::X64;
lib/DebugInfo/CodeView/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:
  520 EncodedFramePtrReg codeview::encodeFramePtrReg(RegisterId Reg, CPUType CPU) {
  525   case CPUType::Intel8080:
  526   case CPUType::Intel8086:
  527   case CPUType::Intel80286:
  528   case CPUType::Intel80386:
  529   case CPUType::Intel80486:
  530   case CPUType::Pentium:
  531   case CPUType::PentiumPro:
  532   case CPUType::Pentium3:
  544   case CPUType::X64:
lib/DebugInfo/PDB/PDBExtras.cpp
  121   if (CpuReg.Cpu == llvm::codeview::CPUType::ARM64) {
lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  142 void ScalarEnumerationTraits<CPUType>::enumeration(IO &io, CPUType &Cpu) {
  150   auto RegNames = getRegisterNames(CPUType::X64);
tools/lld/COFF/PDB.cpp
 1350 static codeview::CPUType toCodeViewMachine(COFF::MachineTypes machine) {
 1353     return codeview::CPUType::X64;
 1355     return codeview::CPUType::ARM7;
 1357     return codeview::CPUType::ARM64;
 1359     return codeview::CPUType::ARMNT;
 1361     return codeview::CPUType::Intel80386;
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbFPOProgramToDWARFExpression.cpp
   28   llvm::codeview::CPUType cpu_type;
   31       cpu_type = llvm::codeview::CPUType::ARM64;
   35       cpu_type = llvm::codeview::CPUType::X64;
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
  572   CPUType cpu_type = index.compilands()
tools/llvm-pdbutil/FormatUtil.h
   44 template <typename T> std::string formatUnknownEnum(T Value) {
tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  214 static std::string formatMachineType(CPUType Cpu) {
  290 static std::string formatRegisterId(RegisterId Id, CPUType Cpu) {
  291   if (Cpu == CPUType::ARM64) {
  317 static std::string formatRegisterId(uint16_t Reg16, CPUType Cpu) {
  321 static std::string formatRegisterId(ulittle16_t &Reg16, CPUType Cpu) {
tools/llvm-pdbutil/MinimalSymbolDumper.h
   58   codeview::CPUType CompilationCPU = codeview::CPUType::X64;
   58   codeview::CPUType CompilationCPU = codeview::CPUType::X64;
tools/llvm-readobj/COFFDumper.cpp
  187   CPUType CompilationCPUType = CPUType::X64;
  187   CPUType CompilationCPUType = CPUType::X64;