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

References

include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
   36   template <typename T> static Error deserializeAs(CVSymbol Symbol, T &Record) {
   83   template <typename T> Error visitKnownRecordImpl(CVSymbol &CVR, T &Record) {
include/llvm/DebugInfo/CodeView/SymbolSerializer.h
   52   static CVSymbol writeOneSymbol(SymType &Sym, BumpPtrAllocator &Storage,
   75   Error visitKnownRecordImpl(CVSymbol &CVR, RecordKind &Record) {
include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
   60   void addGlobalSymbol(const codeview::ProcRefSym &Sym);
lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
   24   T KnownRecord(RK);
lib/DebugInfo/CodeView/SymbolDumper.cpp
  523 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, ProcRefSym &ProcRef) {
lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  372                                             ProcRefSym &ProcRef) {
lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
   63   template <typename T> void addSymbol(const T &Symbol, MSFBuilder &Msf) {
   64     T Copy(Symbol);
  290 void GSIStreamBuilder::addGlobalSymbol(const ProcRefSym &Sym) {
lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  231     return SymbolDeserializer::deserializeAs<T>(CVS, Symbol);
  234   mutable T Symbol;
tools/lld/COFF/PDB.cpp
  809     ProcRefSym ps(k);
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
  616       ProcRefSym ref{global.kind()};
  618           SymbolDeserializer::deserializeAs<ProcRefSym>(global, ref));
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.h
  120 template <typename RecordT> bool IsValidRecord(const RecordT &sym) {
  124 inline bool IsValidRecord(const llvm::codeview::ProcRefSym &sym) {
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
 1225     ProcRefSym proc(match.second.kind());
 1226     cantFail(SymbolDeserializer::deserializeAs<ProcRefSym>(match.second, proc));
tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  779 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ProcRefSym &PR) {