LLVM
15.0.0git
include
llvm
DebugInfo
PDB
PDBSymbolCustom.h
Go to the documentation of this file.
1
//===- PDBSymbolCustom.h - compiler-specific types --------------*- C++ -*-===//
2
//
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
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLCUSTOM_H
10
#define LLVM_DEBUGINFO_PDB_PDBSYMBOLCUSTOM_H
11
12
#include "
PDBSymbol.h
"
13
#include "
PDBTypes.h
"
14
#include "
llvm/ADT/SmallVector.h
"
15
16
namespace
llvm
{
17
18
namespace
pdb {
19
/// PDBSymbolCustom represents symbols that are compiler-specific and do not
20
/// fit anywhere else in the lexical hierarchy.
21
/// https://msdn.microsoft.com/en-us/library/d88sf09h.aspx
22
class
PDBSymbolCustom
:
public
PDBSymbol
{
23
DECLARE_PDB_SYMBOL_CONCRETE_TYPE
(
PDB_SymType::Custom
)
24
public
:
25
void
dump
(
PDBSymDumper
&Dumper)
const override
;
26
27
void
getDataBytes
(
llvm::SmallVector<uint8_t, 32>
&bytes);
28
};
29
30
}
// namespace llvm
31
}
32
33
#endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCUSTOM_H
llvm
This is an optimization pass for GlobalISel generic memory operations.
Definition:
AddressRanges.h:17
llvm::SmallVector< uint8_t, 32 >
DECLARE_PDB_SYMBOL_CONCRETE_TYPE
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition:
PDBSymbol.h:48
llvm::pdb::PDB_SymType::Custom
@ Custom
llvm::pdb::PDBSymbol
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e....
Definition:
PDBSymbol.h:71
PDBSymbol.h
PDBTypes.h
llvm::pdb::PDBSymDumper
Definition:
PDBSymDumper.h:19
llvm::pdb::PDBSymbolCustom::getDataBytes
void getDataBytes(llvm::SmallVector< uint8_t, 32 > &bytes)
Definition:
PDBSymbolCustom.cpp:17
SmallVector.h
llvm::pdb::PDBSymbolCustom::dump
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
Definition:
PDBSymbolCustom.cpp:21
llvm::pdb::PDBSymbolCustom
PDBSymbolCustom represents symbols that are compiler-specific and do not fit anywhere else in the lex...
Definition:
PDBSymbolCustom.h:22
Generated on Sun May 22 2022 05:52:34 for LLVM by
1.8.17