LLVM  4.0.0
PDBSymbolBlock.h
Go to the documentation of this file.
1 //===- PDBSymbolBlock.h - Accessors for querying PDB blocks -------------*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLBLOCK_H
10 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLBLOCK_H
11 
12 #include "PDBSymbol.h"
13 #include "PDBTypes.h"
14 
15 namespace llvm {
16 
17 class raw_ostream;
18 
19 namespace pdb {
20 
21 class PDBSymbolBlock : public PDBSymbol {
22 public:
23  PDBSymbolBlock(const IPDBSession &PDBSession,
24  std::unique_ptr<IPDBRawSymbol> Symbol);
25 
27 
28  void dump(PDBSymDumper &Dumper) const override;
29 
30  FORWARD_SYMBOL_METHOD(getAddressOffset)
31  FORWARD_SYMBOL_METHOD(getAddressSection)
32  FORWARD_SYMBOL_METHOD(getLength)
33  FORWARD_SYMBOL_METHOD(getLexicalParentId)
34  FORWARD_SYMBOL_METHOD(getLocationType)
36  FORWARD_SYMBOL_METHOD(getRelativeVirtualAddress)
37  FORWARD_SYMBOL_METHOD(getVirtualAddress)
38 };
39 }
40 }
41 
42 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLBLOCK_H
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:25
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:33
PDBSymbolBlock(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > Symbol)
static StringRef getName(Value *V)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:43