Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===- PDBSymbolAnnotation.h - Accessors for querying PDB annotations ---*-===// |
| 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_PDBSYMBOLANNOTATION_H |
| 10 | #define LLVM_DEBUGINFO_PDB_PDBSYMBOLANNOTATION_H |
| 11 | |
| 12 | #include "PDBSymbol.h" |
| 13 | #include "PDBTypes.h" |
| 14 | |
| 15 | namespace llvm { |
| 16 | |
| 17 | class raw_ostream; |
| 18 | namespace pdb { |
| 19 | |
| 20 | class PDBSymbolAnnotation : public PDBSymbol { |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 21 | DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation) |
| 22 | |
Andrew Scull | 0372a57 | 2018-11-16 15:47:06 +0000 | [diff] [blame^] | 23 | public: |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 24 | void dump(PDBSymDumper &Dumper) const override; |
| 25 | |
| 26 | FORWARD_SYMBOL_METHOD(getAddressOffset) |
| 27 | FORWARD_SYMBOL_METHOD(getAddressSection) |
| 28 | FORWARD_SYMBOL_METHOD(getDataKind) |
| 29 | FORWARD_SYMBOL_METHOD(getRelativeVirtualAddress) |
| 30 | // FORWARD_SYMBOL_METHOD(getValue) |
| 31 | FORWARD_SYMBOL_METHOD(getVirtualAddress) |
| 32 | }; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLANNOTATION_H |