class PDBSymbolTypeManaged

Declaration

class PDBSymbolTypeManaged : public PDBSymbol { /* full declaration omitted */ };

Description

PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e.g. functions, executables, vtables, etc). All concrete symbol types inherit from PDBSymbol and expose the exact set of methods that are valid for that particular symbol type, as described in the Microsoft reference "Lexical and Class Hierarchy of Symbol Types": https://msdn.microsoft.com/en-us/library/370hs6k4.aspx

Declared at: llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h:19

Inherits from: PDBSymbol

Member Variables

public static const llvm::pdb::PDB_SymType Tag = PDB_SymType::ManagedType

Inherited from PDBSymbol:

protected Session
protected OwnedRawSymbol
protected RawSymbol = nullptr

Method Overview

  • public void dump(llvm::pdb::PDBSymDumper & Dumper) const

Inherited from PDBSymbol:

Methods

ΒΆvoid dump(llvm::pdb::PDBSymDumper& Dumper) const

Description

Dumps the contents of a symbol a raw_ostream. By default this will just call dump() on the underlying RawSymbol, which allows us to discover unknown properties, but individual implementations of PDBSymbol may override the behavior to only dump known fields.

Declared at: llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h:22

Parameters

llvm::pdb::PDBSymDumper& Dumper