LLVM  8.0.1
NativeRawSymbol.h
Go to the documentation of this file.
1 //==- NativeRawSymbol.h - Native implementation of IPDBRawSymbol -*- C++ -*-==//
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_NATIVE_NATIVERAWSYMBOL_H
11 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVERAWSYMBOL_H
12 
14 #include <cstdint>
15 #include <memory>
16 
17 namespace llvm {
18 namespace pdb {
19 
20 class NativeSession;
21 
23  friend class SymbolCache;
24  virtual void initialize() {}
25 
26 public:
29 
30  void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
31  PdbSymbolIdField RecurseIdFields) const override;
32 
33  std::unique_ptr<IPDBEnumSymbols>
34  findChildren(PDB_SymType Type) const override;
35  std::unique_ptr<IPDBEnumSymbols>
37  PDB_NameSearchFlags Flags) const override;
38  std::unique_ptr<IPDBEnumSymbols>
40  PDB_NameSearchFlags Flags,
41  uint32_t Section, uint32_t Offset) const override;
42  std::unique_ptr<IPDBEnumSymbols>
44  uint64_t VA) const override;
45  std::unique_ptr<IPDBEnumSymbols>
47  uint32_t RVA) const override;
48 
49  std::unique_ptr<IPDBEnumSymbols>
51  std::unique_ptr<IPDBEnumSymbols>
52  findInlineFramesByRVA(uint32_t RVA) const override;
53  std::unique_ptr<IPDBEnumSymbols>
54  findInlineFramesByVA(uint64_t VA) const override;
55 
56  std::unique_ptr<IPDBEnumLineNumbers> findInlineeLines() const override;
57  std::unique_ptr<IPDBEnumLineNumbers>
59  uint32_t Length) const override;
60  std::unique_ptr<IPDBEnumLineNumbers>
61  findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const override;
62  std::unique_ptr<IPDBEnumLineNumbers>
63  findInlineeLinesByVA(uint64_t VA, uint32_t Length) const override;
64 
65  void getDataBytes(SmallVector<uint8_t, 32> &Bytes) const override;
66  void getFrontEndVersion(VersionInfo &Version) const override;
67  void getBackEndVersion(VersionInfo &Version) const override;
68  PDB_MemberAccess getAccess() const override;
69  uint32_t getAddressOffset() const override;
70  uint32_t getAddressSection() const override;
71  uint32_t getAge() const override;
72  SymIndexId getArrayIndexTypeId() const override;
73  uint32_t getBaseDataOffset() const override;
74  uint32_t getBaseDataSlot() const override;
75  SymIndexId getBaseSymbolId() const override;
76  PDB_BuiltinType getBuiltinType() const override;
77  uint32_t getBitPosition() const override;
78  PDB_CallingConv getCallingConvention() const override;
79  SymIndexId getClassParentId() const override;
80  std::string getCompilerName() const override;
81  uint32_t getCount() const override;
82  uint32_t getCountLiveRanges() const override;
83  PDB_Lang getLanguage() const override;
84  SymIndexId getLexicalParentId() const override;
85  std::string getLibraryName() const override;
90  SymIndexId getLowerBoundId() const override;
91  uint32_t getMemorySpaceKind() const override;
92  std::string getName() const override;
94  uint32_t getNumberOfColumns() const override;
95  uint32_t getNumberOfModifiers() const override;
96  uint32_t getNumberOfRegisterIndices() const override;
97  uint32_t getNumberOfRows() const override;
98  std::string getObjectFileName() const override;
99  uint32_t getOemId() const override;
100  SymIndexId getOemSymbolId() const override;
101  uint32_t getOffsetInUdt() const override;
102  PDB_Cpu getPlatform() const override;
103  uint32_t getRank() const override;
104  codeview::RegisterId getRegisterId() const override;
105  uint32_t getRegisterType() const override;
106  uint32_t getRelativeVirtualAddress() const override;
107  uint32_t getSamplerSlot() const override;
108  uint32_t getSignature() const override;
109  uint32_t getSizeInUdt() const override;
110  uint32_t getSlot() const override;
111  std::string getSourceFileName() const override;
112  std::unique_ptr<IPDBLineNumber> getSrcLineOnTypeDefn() const override;
113  uint32_t getStride() const override;
114  SymIndexId getSubTypeId() const override;
115  std::string getSymbolsFileName() const override;
116  SymIndexId getSymIndexId() const override;
117  uint32_t getTargetOffset() const override;
118  uint32_t getTargetRelativeVirtualAddress() const override;
119  uint64_t getTargetVirtualAddress() const override;
120  uint32_t getTargetSection() const override;
121  uint32_t getTextureSlot() const override;
122  uint32_t getTimeStamp() const override;
123  uint32_t getToken() const override;
124  SymIndexId getTypeId() const override;
125  uint32_t getUavSlot() const override;
126  std::string getUndecoratedName() const override;
127  std::string getUndecoratedNameEx(PDB_UndnameFlags Flags) const override;
128  SymIndexId getUnmodifiedTypeId() const override;
129  SymIndexId getUpperBoundId() const override;
130  Variant getValue() const override;
131  uint32_t getVirtualBaseDispIndex() const override;
132  uint32_t getVirtualBaseOffset() const override;
133  SymIndexId getVirtualTableShapeId() const override;
134  std::unique_ptr<PDBSymbolTypeBuiltin>
135  getVirtualBaseTableType() const override;
136  PDB_DataKind getDataKind() const override;
137  PDB_SymType getSymTag() const override;
138  codeview::GUID getGuid() const override;
139  int32_t getOffset() const override;
140  int32_t getThisAdjust() const override;
141  int32_t getVirtualBasePointerOffset() const override;
142  PDB_LocType getLocationType() const override;
143  PDB_Machine getMachineType() const override;
144  codeview::ThunkOrdinal getThunkOrdinal() const override;
145  uint64_t getLength() const override;
146  uint64_t getLiveRangeLength() const override;
147  uint64_t getVirtualAddress() const override;
148  PDB_UdtType getUdtKind() const override;
149  bool hasConstructor() const override;
150  bool hasCustomCallingConvention() const override;
151  bool hasFarReturn() const override;
152  bool isCode() const override;
153  bool isCompilerGenerated() const override;
154  bool isConstType() const override;
155  bool isEditAndContinueEnabled() const override;
156  bool isFunction() const override;
157  bool getAddressTaken() const override;
158  bool getNoStackOrdering() const override;
159  bool hasAlloca() const override;
160  bool hasAssignmentOperator() const override;
161  bool hasCTypes() const override;
162  bool hasCastOperator() const override;
163  bool hasDebugInfo() const override;
164  bool hasEH() const override;
165  bool hasEHa() const override;
166  bool hasInlAsm() const override;
167  bool hasInlineAttribute() const override;
168  bool hasInterruptReturn() const override;
169  bool hasFramePointer() const override;
170  bool hasLongJump() const override;
171  bool hasManagedCode() const override;
172  bool hasNestedTypes() const override;
173  bool hasNoInlineAttribute() const override;
174  bool hasNoReturnAttribute() const override;
175  bool hasOptimizedCodeDebugInfo() const override;
176  bool hasOverloadedOperator() const override;
177  bool hasSEH() const override;
178  bool hasSecurityChecks() const override;
179  bool hasSetJump() const override;
180  bool hasStrictGSCheck() const override;
181  bool isAcceleratorGroupSharedLocal() const override;
182  bool isAcceleratorPointerTagLiveRange() const override;
183  bool isAcceleratorStubFunction() const override;
184  bool isAggregated() const override;
185  bool isIntroVirtualFunction() const override;
186  bool isCVTCIL() const override;
187  bool isConstructorVirtualBase() const override;
188  bool isCxxReturnUdt() const override;
189  bool isDataAligned() const override;
190  bool isHLSLData() const override;
191  bool isHotpatchable() const override;
192  bool isIndirectVirtualBaseClass() const override;
193  bool isInterfaceUdt() const override;
194  bool isIntrinsic() const override;
195  bool isLTCG() const override;
196  bool isLocationControlFlowDependent() const override;
197  bool isMSILNetmodule() const override;
198  bool isMatrixRowMajor() const override;
199  bool isManagedCode() const override;
200  bool isMSILCode() const override;
201  bool isMultipleInheritance() const override;
202  bool isNaked() const override;
203  bool isNested() const override;
204  bool isOptimizedAway() const override;
205  bool isPacked() const override;
206  bool isPointerBasedOnSymbolValue() const override;
207  bool isPointerToDataMember() const override;
208  bool isPointerToMemberFunction() const override;
209  bool isPureVirtual() const override;
210  bool isRValueReference() const override;
211  bool isRefUdt() const override;
212  bool isReference() const override;
213  bool isRestrictedType() const override;
214  bool isReturnValue() const override;
215  bool isSafeBuffers() const override;
216  bool isScoped() const override;
217  bool isSdl() const override;
218  bool isSingleInheritance() const override;
219  bool isSplitted() const override;
220  bool isStatic() const override;
221  bool hasPrivateSymbols() const override;
222  bool isUnalignedType() const override;
223  bool isUnreached() const override;
224  bool isValueUdt() const override;
225  bool isVirtual() const override;
226  bool isVirtualBaseClass() const override;
227  bool isVirtualInheritance() const override;
228  bool isVolatileType() const override;
229  bool wasInlined() const override;
230  std::string getUnused() const override;
231 
232 protected:
236 };
237 
238 } // end namespace pdb
239 } // end namespace llvm
240 
241 #endif // LLVM_DEBUGINFO_PDB_NATIVE_NATIVERAWSYMBOL_H
uint32_t getAddressSection() const override
uint32_t getLiveRangeStartRelativeVirtualAddress() const override
bool hasManagedCode() const override
uint32_t getRegisterType() const override
bool wasInlined() const override
void getBackEndVersion(VersionInfo &Version) const override
uint32_t getBitPosition() const override
std::string getSymbolsFileName() const override
bool hasSetJump() const override
This class represents lattice values for constants.
Definition: AllocatorList.h:24
uint32_t getSlot() const override
int32_t getVirtualBasePointerOffset() const override
bool isReference() const override
uint32_t getNumberOfRegisterIndices() const override
SymIndexId getUpperBoundId() const override
bool hasFarReturn() const override
std::unique_ptr< IPDBEnumLineNumbers > findInlineeLinesByVA(uint64_t VA, uint32_t Length) const override
bool isIntrinsic() const override
PDB_UdtType
These values correspond to the UdtKind enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/wcstk66t.aspx.
Definition: PDBTypes.h:250
uint32_t getNumberOfRows() const override
uint32_t getRank() const override
PDB_BuiltinType getBuiltinType() const override
bool isHLSLData() const override
PDB_NameSearchFlags
Defines flags used for enumerating child symbols.
Definition: PDBTypes.h:101
bool hasStrictGSCheck() const override
bool isConstType() const override
PDB_CallingConv getCallingConvention() const override
std::unique_ptr< IPDBEnumLineNumbers > findInlineeLines() const override
uint64_t getLiveRangeLength() const override
std::string getUndecoratedNameEx(PDB_UndnameFlags Flags) const override
bool hasEHa() const override
void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields, PdbSymbolIdField RecurseIdFields) const override
bool isMatrixRowMajor() const override
bool isPureVirtual() const override
bool hasPrivateSymbols() const override
bool isInterfaceUdt() const override
bool hasSecurityChecks() const override
bool hasInlineAttribute() const override
uint32_t getVirtualBaseOffset() const override
bool isRValueReference() const override
uint32_t getTextureSlot() const override
uint32_t getSamplerSlot() const override
uint32_t getNumberOfModifiers() const override
bool isRestrictedType() const override
bool isRefUdt() const override
uint32_t getStride() const override
amdgpu Simplify well known AMD library false Value Value const Twine & Name
bool isIndirectVirtualBaseClass() const override
PDB_UdtType getUdtKind() const override
PDB_Machine getMachineType() const override
uint32_t getVirtualBaseDispIndex() const override
bool isLTCG() const override
bool isOptimizedAway() const override
codeview::RegisterId getLocalBasePointerRegisterId() const override
void getDataBytes(SmallVector< uint8_t, 32 > &Bytes) const override
bool isCxxReturnUdt() const override
uint32_t getOemId() const override
bool getAddressTaken() const override
bool hasCastOperator() const override
bool isUnreached() const override
This represents the &#39;GUID&#39; type from windows.h.
Definition: GUID.h:22
std::unique_ptr< IPDBEnumSymbols > findInlineFramesByRVA(uint32_t RVA) const override
std::unique_ptr< IPDBEnumSymbols > findChildrenByRVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, uint32_t RVA) const override
std::string getUndecoratedName() const override
std::unique_ptr< IPDBEnumSymbols > findChildrenByVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, uint64_t VA) const override
bool isSplitted() const override
bool isFunction() const override
PDB_DataKind getDataKind() const override
uint32_t getOffsetInUdt() const override
bool isLocationControlFlowDependent() const override
std::unique_ptr< IPDBLineNumber > getSrcLineOnTypeDefn() const override
std::unique_ptr< IPDBEnumSymbols > findInlineFramesByAddr(uint32_t Section, uint32_t Offset) const override
uint32_t getRelativeVirtualAddress() const override
uint32_t getSizeInUdt() const override
SymIndexId getLowerBoundId() const override
uint64_t getVirtualAddress() const override
SymIndexId getClassParentId() const override
int32_t getThisAdjust() const override
bool hasInterruptReturn() const override
PDB_Lang getLanguage() const override
bool isConstructorVirtualBase() const override
PDB_UndnameFlags
These values correspond to the flags that can be combined to control the return of an undecorated nam...
Definition: PDBTypes.h:301
uint32_t getSignature() const override
uint32_t getTimeStamp() const override
SymIndexId getTypeId() const override
bool isSafeBuffers() const override
PDB_SymType
These values correspond to the SymTagEnum enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/bkedss5f.aspx.
Definition: PDBTypes.h:183
bool isEditAndContinueEnabled() const override
SymIndexId getSymIndexId() const override
std::string getLibraryName() const override
std::string getUnused() const override
SymIndexId getSubTypeId() const override
bool getNoStackOrdering() const override
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
PDB_LocType getLocationType() const override
uint32_t getBaseDataOffset() const override
int32_t getOffset() const override
PDB_DataKind
These values correspond to the DataKind enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/b2x2t313.aspx.
Definition: PDBTypes.h:168
PDB_Cpu getPlatform() const override
Variant getValue() const override
IPDBRawSymbol defines an interface used to represent an arbitrary symbol.
Definition: IPDBRawSymbol.h:50
bool isReturnValue() const override
uint32_t getTargetOffset() const override
std::unique_ptr< IPDBEnumSymbols > findChildren(PDB_SymType Type) const override
PDB_MemberAccess getAccess() const override
bool hasConstructor() const override
SymIndexId getVirtualTableShapeId() const override
uint64_t getTargetVirtualAddress() const override
codeview::RegisterId getRegisterId() const override
bool isAcceleratorStubFunction() const override
uint32_t getCount() const override
codeview::ThunkOrdinal getThunkOrdinal() const override
PDB_LocType
These values correspond to the LocationType enumeration, and are documented here: https://msdn...
Definition: PDBTypes.h:232
bool isUnalignedType() const override
bool hasInlAsm() const override
bool hasOverloadedOperator() const override
SymIndexId getBaseSymbolId() const override
uint32_t getNumberOfAcceleratorPointerTags() const override
std::unique_ptr< IPDBEnumLineNumbers > findInlineeLinesByRVA(uint32_t RVA, uint32_t Length) const override
std::string getSourceFileName() const override
std::unique_ptr< PDBSymbolTypeBuiltin > getVirtualBaseTableType() const override
SourceLanguage
These values correspond to the CV_CFL_LANG enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/bw3aekw6.aspx.
Definition: CodeView.h:144
bool isDataAligned() const override
bool isPointerToMemberFunction() const override
bool isValueUdt() const override
std::unique_ptr< IPDBEnumLineNumbers > findInlineeLinesByAddr(uint32_t Section, uint32_t Offset, uint32_t Length) const override
bool isMSILNetmodule() const override
SymIndexId getArrayIndexTypeId() const override
NativeRawSymbol(NativeSession &PDBSession, PDB_SymType Tag, SymIndexId SymbolId)
CPUType
These values correspond to the CV_CPU_TYPE_e enumeration, and are documented here: https://msdn...
Definition: CodeView.h:79
uint32_t getMemorySpaceKind() const override
bool isPacked() const override
bool hasNoReturnAttribute() const override
bool isSdl() const override
bool isNaked() const override
bool hasCustomCallingConvention() const override
std::unique_ptr< IPDBEnumSymbols > findChildrenByAddr(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, uint32_t Section, uint32_t Offset) const override
bool isCode() const override
bool isAcceleratorGroupSharedLocal() const override
bool isMultipleInheritance() const override
SymIndexId getLexicalParentId() const override
bool isManagedCode() const override
static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, ArrayRef< StringRef > StandardNames)
Initialize the set of available library functions based on the specified target triple.
uint32_t getLiveRangeStartAddressOffset() const override
bool hasAlloca() const override
bool isPointerBasedOnSymbolValue() const override
SymIndexId getUnmodifiedTypeId() const override
uint32_t getBaseDataSlot() const override
bool isCVTCIL() const override
PDB_SymType getSymTag() const override
bool isAcceleratorPointerTagLiveRange() const override
uint32_t getCountLiveRanges() const override
uint32_t getTargetSection() const override
bool hasEH() const override
bool hasAssignmentOperator() const override
bool hasNoInlineAttribute() const override
uint32_t getUavSlot() const override
std::unique_ptr< IPDBEnumSymbols > findInlineFramesByVA(uint64_t VA) const override
bool isIntroVirtualFunction() const override
uint32_t getTargetRelativeVirtualAddress() const override
std::string getName() const override
bool hasFramePointer() const override
std::string getCompilerName() const override
bool hasCTypes() const override
uint32_t getNumberOfColumns() const override
uint32_t getToken() const override
bool hasNestedTypes() const override
ThunkOrdinal
These values correspond to the THUNK_ORDINAL enumeration.
Definition: CodeView.h:531
bool hasOptimizedCodeDebugInfo() const override
PDB_BuiltinType
These values correspond to the Basictype enumeration, and are documented here: https://msdn.microsoft.com/en-us/library/4szdtzc3.aspx.
Definition: PDBTypes.h:275
std::string getObjectFileName() const override
bool hasDebugInfo() const override
bool isMSILCode() const override
Definition: JSON.cpp:598
bool isAggregated() const override
bool isScoped() const override
bool isVirtualInheritance() const override
bool isVolatileType() const override
void getFrontEndVersion(VersionInfo &Version) const override
uint64_t getLength() const override
bool hasSEH() const override
CallingConvention
These values correspond to the CV_call_e enumeration, and are documented at the following locations: ...
Definition: CodeView.h:173
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
codeview::GUID getGuid() const override
bool isVirtual() const override
bool isHotpatchable() const override
SymIndexId getOemSymbolId() const override
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49
bool isCompilerGenerated() const override
uint32_t getLiveRangeStartAddressSection() const override
bool isSingleInheritance() const override
uint32_t getAge() const override
const uint64_t Version
Definition: InstrProf.h:895
bool isPointerToDataMember() const override
bool isStatic() const override
bool hasLongJump() const override
bool isVirtualBaseClass() const override
uint32_t getAddressOffset() const override
bool isNested() const override
PDB_MemberAccess
Definition: PDBTypes.h:324