LLVM  4.0.0
PDBSymbolLabel.h
Go to the documentation of this file.
1 //===- PDBSymbolLabel.h - label info ----------------------------*- C++ -*-===//
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 
10 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLLABEL_H
11 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLLABEL_H
12 
13 #include "PDBSymbol.h"
14 #include "PDBTypes.h"
15 
16 namespace llvm {
17 
18 class raw_ostream;
19 namespace pdb {
20 
21 class PDBSymbolLabel : public PDBSymbol {
22 public:
23  PDBSymbolLabel(const IPDBSession &PDBSession,
24  std::unique_ptr<IPDBRawSymbol> LabelSymbol);
25 
27 
28  void dump(PDBSymDumper &Dumper) const override;
29 
30  FORWARD_SYMBOL_METHOD(getAddressOffset)
31  FORWARD_SYMBOL_METHOD(getAddressSection)
32  FORWARD_SYMBOL_METHOD(hasCustomCallingConvention)
33  FORWARD_SYMBOL_METHOD(hasFarReturn)
34  FORWARD_SYMBOL_METHOD(hasInterruptReturn)
35  FORWARD_SYMBOL_METHOD(getLexicalParentId)
36  FORWARD_SYMBOL_METHOD(getLocationType)
38  FORWARD_SYMBOL_METHOD(hasNoInlineAttribute)
39  FORWARD_SYMBOL_METHOD(hasNoReturnAttribute)
40  FORWARD_SYMBOL_METHOD(isUnreached)
42  FORWARD_SYMBOL_METHOD(hasOptimizedCodeDebugInfo)
43  FORWARD_SYMBOL_METHOD(getRelativeVirtualAddress)
44  FORWARD_SYMBOL_METHOD(getVirtualAddress)
45 };
46 
47 } // namespace llvm
48 }
49 
50 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLLABEL_H
PDBSymbolLabel(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > LabelSymbol)
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
static StringRef getName(Value *V)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
static Error getOffset(const SymbolRef &Sym, SectionRef Sec, uint64_t &Result)
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