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) {
lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
   24   T KnownRecord(RK);
lib/DebugInfo/CodeView/SymbolDumper.cpp
  135 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, Thunk32Sym &Thunk) {
lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
   17 template <typename RecordT> static RecordT createRecord(const CVSymbol &sym) {
   18   RecordT record(static_cast<SymbolRecordKind>(sym.kind()));
   19   cantFail(SymbolDeserializer::deserializeAs<RecordT>(sym, record));
   40     Thunk32Sym Thunk = createRecord<Thunk32Sym>(Sym);
   40     Thunk32Sym Thunk = createRecord<Thunk32Sym>(Sym);
   71     Thunk32Sym Thunk = createRecord<Thunk32Sym>(Sym);
   71     Thunk32Sym Thunk = createRecord<Thunk32Sym>(Sym);
lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
   59 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, Thunk32Sym &Thunk) {
lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  231     return SymbolDeserializer::deserializeAs<T>(CVS, Symbol);
  234   mutable T Symbol;
tools/lld/COFF/PDB.cpp
 1551     Thunk32Sym ts(SymbolRecordKind::Thunk32Sym);
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
  209 template <typename RecordT> RecordT createRecord(const CVSymbol &sym) {
  210   RecordT record(static_cast<SymbolRecordKind>(sym.kind()));
  211   cantFail(SymbolDeserializer::deserializeAs<RecordT>(sym, record));
  227 template <> SegmentOffset GetSegmentAndOffset<Thunk32Sym>(const CVSymbol &sym) {
  228   Thunk32Sym record = createRecord<Thunk32Sym>(sym);
  228   Thunk32Sym record = createRecord<Thunk32Sym>(sym);
  259     return ::GetSegmentAndOffset<Thunk32Sym>(sym);
  309 SegmentOffsetLength GetSegmentOffsetAndLength<Thunk32Sym>(const CVSymbol &sym) {
  310   Thunk32Sym record = createRecord<Thunk32Sym>(sym);
  310   Thunk32Sym record = createRecord<Thunk32Sym>(sym);
  332     return ::GetSegmentOffsetAndLength<Thunk32Sym>(sym);
tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  396 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, Thunk32Sym &Thunk) {