1 //===- NativeExeSymbol.h - native impl for PDBSymbolExe ---------*- C++ -*-===//
3 // 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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_DEBUGINFO_PDB_NATIVE_NATIVEEXESYMBOL_H
10 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVEEXESYMBOL_H
12 #include "llvm/DebugInfo/PDB/Native/NativeRawSymbol.h"
13 #include "llvm/DebugInfo/PDB/Native/NativeSession.h"
20 class NativeExeSymbol
: public NativeRawSymbol
{
21 // EXE symbol is the authority on the various symbol types.
22 DbiStream
*Dbi
= nullptr;
25 NativeExeSymbol(NativeSession
&Session
, SymIndexId Id
);
27 std::unique_ptr
<IPDBEnumSymbols
>
28 findChildren(PDB_SymType Type
) const override
;
30 uint32_t getAge() const override
;
31 std::string
getSymbolsFileName() const override
;
32 codeview::GUID
getGuid() const override
;
33 bool hasCTypes() const override
;
34 bool hasPrivateSymbols() const override
;