blob: c76466a97b66d6e8e78dc8bca0e20e162ceabdf3 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- PDBSymbolAnnotation.h - Accessors for querying PDB annotations ---*-===//
2//
Andrew Walbran16937d02019-10-22 13:54:20 +01003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01006//
7//===----------------------------------------------------------------------===//
8#ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLANNOTATION_H
9#define LLVM_DEBUGINFO_PDB_PDBSYMBOLANNOTATION_H
10
11#include "PDBSymbol.h"
12#include "PDBTypes.h"
13
14namespace llvm {
15
16class raw_ostream;
17namespace pdb {
18
19class PDBSymbolAnnotation : public PDBSymbol {
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010020 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Annotation)
21
Andrew Scull0372a572018-11-16 15:47:06 +000022public:
Andrew Scull5e1ddfa2018-08-14 10:06:54 +010023 void dump(PDBSymDumper &Dumper) const override;
24
25 FORWARD_SYMBOL_METHOD(getAddressOffset)
26 FORWARD_SYMBOL_METHOD(getAddressSection)
27 FORWARD_SYMBOL_METHOD(getDataKind)
28 FORWARD_SYMBOL_METHOD(getRelativeVirtualAddress)
29 // FORWARD_SYMBOL_METHOD(getValue)
30 FORWARD_SYMBOL_METHOD(getVirtualAddress)
31};
32}
33}
34
35#endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLANNOTATION_H