LLVM  8.0.1
PDBSymbolThunk.h
Go to the documentation of this file.
1 //===- PDBSymbolThunk.h - Support for querying PDB thunks ---------------*-===//
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_PDBSYMBOLTHUNK_H
11 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLTHUNK_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 PDBSymbolThunk : public PDBSymbol {
23 public:
24  void dump(PDBSymDumper &Dumper) const override;
25 
26  FORWARD_SYMBOL_METHOD(getAccess)
27  FORWARD_SYMBOL_METHOD(getAddressOffset)
28  FORWARD_SYMBOL_METHOD(getAddressSection)
29  FORWARD_SYMBOL_ID_METHOD(getClassParent)
30  FORWARD_SYMBOL_METHOD(isConstType)
31  FORWARD_SYMBOL_METHOD(isIntroVirtualFunction)
32  FORWARD_SYMBOL_METHOD(isStatic)
33  FORWARD_SYMBOL_METHOD(getLength)
34  FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
36  FORWARD_SYMBOL_METHOD(isPureVirtual)
37  FORWARD_SYMBOL_METHOD(getRelativeVirtualAddress)
38  FORWARD_SYMBOL_METHOD(getTargetOffset)
39  FORWARD_SYMBOL_METHOD(getTargetRelativeVirtualAddress)
40  FORWARD_SYMBOL_METHOD(getTargetVirtualAddress)
41  FORWARD_SYMBOL_METHOD(getTargetSection)
42  FORWARD_SYMBOL_METHOD(getThunkOrdinal)
44  FORWARD_SYMBOL_METHOD(isUnalignedType)
45  FORWARD_SYMBOL_METHOD(isVirtual)
46  FORWARD_SYMBOL_METHOD(getVirtualAddress)
47  FORWARD_SYMBOL_METHOD(getVirtualBaseOffset)
48  FORWARD_SYMBOL_METHOD(isVolatileType)
49 };
50 } // namespace llvm
51 }
52 
53 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTHUNK_H
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:51
This class represents lattice values for constants.
Definition: AllocatorList.h:24
static StringRef getName(Value *V)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
static wasm::ValType getType(const TargetRegisterClass *RC)
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:74
#define FORWARD_SYMBOL_ID_METHOD(MethodName)
Definition: PDBSymbol.h:39
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.