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 13#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h" 14#include <cstdint> 15#include <memory> 16 17namespace llvm { 18namespace pdb { 19 20class NativeSession; 21 22typedef uint32_t SymIndexId; 23 24class NativeRawSymbol : public IPDBRawSymbol { 25public: 26 NativeRawSymbol(NativeSession &PDBSession, SymIndexId SymbolId); 27 28 virtual std::unique_ptr<NativeRawSymbol> clone() const = 0; 29 30 void dump(raw_ostream &OS, int Indent) const override; 31 32 std::unique_ptr<IPDBEnumSymbols> 33 findChildren(PDB_SymType Type) const override; 34 std::unique_ptr<IPDBEnumSymbols> 35 findChildren(PDB_SymType Type, StringRef Name, 36 PDB_NameSearchFlags Flags) const override; 37 std::unique_ptr<IPDBEnumSymbols> 38 findChildrenByRVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 39 uint32_t RVA) const override; 40 std::unique_ptr<IPDBEnumSymbols> 41 findInlineFramesByRVA(uint32_t RVA) const override; 42 43 void getDataBytes(SmallVector<uint8_t, 32> &Bytes) const override; 44 void getFrontEndVersion(VersionInfo &Version) const override; 45 void getBackEndVersion(VersionInfo &Version) const override; 46 PDB_MemberAccess getAccess() const override; 47 uint32_t getAddressOffset() const override; 48 uint32_t getAddressSection() const override; 49 uint32_t getAge() const override; 50 uint32_t getArrayIndexTypeId() const override; 51 uint32_t getBaseDataOffset() const override; 52 uint32_t getBaseDataSlot() const override; 53 uint32_t getBaseSymbolId() const override; 54 PDB_BuiltinType getBuiltinType() const override; 55 uint32_t getBitPosition() const override; 56 PDB_CallingConv getCallingConvention() const override; 57 uint32_t getClassParentId() const override; 58 std::string getCompilerName() const override; 59 uint32_t getCount() const override; 60 uint32_t getCountLiveRanges() const override; 61 PDB_Lang getLanguage() const override; 62 uint32_t getLexicalParentId() const override; 63 std::string getLibraryName() const override; 64 uint32_t getLiveRangeStartAddressOffset() const override; 65 uint32_t getLiveRangeStartAddressSection() const override; 66 uint32_t getLiveRangeStartRelativeVirtualAddress() const override; 67 codeview::RegisterId getLocalBasePointerRegisterId() const override; 68 uint32_t getLowerBoundId() const override; 69 uint32_t getMemorySpaceKind() const override; 70 std::string getName() const override; 71 uint32_t getNumberOfAcceleratorPointerTags() const override; 72 uint32_t getNumberOfColumns() const override; 73 uint32_t getNumberOfModifiers() const override; 74 uint32_t getNumberOfRegisterIndices() const override; 75 uint32_t getNumberOfRows() const override; 76 std::string getObjectFileName() const override; 77 uint32_t getOemId() const override; 78 uint32_t getOemSymbolId() const override; 79 uint32_t getOffsetInUdt() const override; 80 PDB_Cpu getPlatform() const override; 81 uint32_t getRank() const override; 82 codeview::RegisterId getRegisterId() const override; 83 uint32_t getRegisterType() const override; 84 uint32_t getRelativeVirtualAddress() const override; 85 uint32_t getSamplerSlot() const override; 86 uint32_t getSignature() const override; 87 uint32_t getSizeInUdt() const override; 88 uint32_t getSlot() const override; 89 std::string getSourceFileName() const override; 90 uint32_t getStride() const override; 91 uint32_t getSubTypeId() const override; 92 std::string getSymbolsFileName() const override; 93 uint32_t getSymIndexId() const override; 94 uint32_t getTargetOffset() const override; 95 uint32_t getTargetRelativeVirtualAddress() const override; 96 uint64_t getTargetVirtualAddress() const override; 97 uint32_t getTargetSection() const override; 98 uint32_t getTextureSlot() const override; 99 uint32_t getTimeStamp() const override; 100 uint32_t getToken() const override; 101 uint32_t getTypeId() const override; 102 uint32_t getUavSlot() const override; 103 std::string getUndecoratedName() const override; 104 uint32_t getUnmodifiedTypeId() const override; 105 uint32_t getUpperBoundId() const override; 106 Variant getValue() const override; 107 uint32_t getVirtualBaseDispIndex() const override; 108 uint32_t getVirtualBaseOffset() const override; 109 uint32_t getVirtualTableShapeId() const override; 110 std::unique_ptr<PDBSymbolTypeBuiltin> 111 getVirtualBaseTableType() const override; 112 PDB_DataKind getDataKind() const override; 113 PDB_SymType getSymTag() const override; 114 codeview::GUID getGuid() const override; 115 int32_t getOffset() const override; 116 int32_t getThisAdjust() const override; 117 int32_t getVirtualBasePointerOffset() const override; 118 PDB_LocType getLocationType() const override; 119 PDB_Machine getMachineType() const override; 120 codeview::ThunkOrdinal getThunkOrdinal() const override; 121 uint64_t getLength() const override; 122 uint64_t getLiveRangeLength() const override; 123 uint64_t getVirtualAddress() const override; 124 PDB_UdtType getUdtKind() const override; 125 bool hasConstructor() const override; 126 bool hasCustomCallingConvention() const override; 127 bool hasFarReturn() const override; 128 bool isCode() const override; 129 bool isCompilerGenerated() const override; 130 bool isConstType() const override; 131 bool isEditAndContinueEnabled() const override; 132 bool isFunction() const override; 133 bool getAddressTaken() const override; 134 bool getNoStackOrdering() const override; 135 bool hasAlloca() const override; 136 bool hasAssignmentOperator() const override; 137 bool hasCTypes() const override; 138 bool hasCastOperator() const override; 139 bool hasDebugInfo() const override; 140 bool hasEH() const override; 141 bool hasEHa() const override; 142 bool hasInlAsm() const override; 143 bool hasInlineAttribute() const override; 144 bool hasInterruptReturn() const override; 145 bool hasFramePointer() const override; 146 bool hasLongJump() const override; 147 bool hasManagedCode() const override; 148 bool hasNestedTypes() const override; 149 bool hasNoInlineAttribute() const override; 150 bool hasNoReturnAttribute() const override; 151 bool hasOptimizedCodeDebugInfo() const override; 152 bool hasOverloadedOperator() const override; 153 bool hasSEH() const override; 154 bool hasSecurityChecks() const override; 155 bool hasSetJump() const override; 156 bool hasStrictGSCheck() const override; 157 bool isAcceleratorGroupSharedLocal() const override; 158 bool isAcceleratorPointerTagLiveRange() const override; 159 bool isAcceleratorStubFunction() const override; 160 bool isAggregated() const override; 161 bool isIntroVirtualFunction() const override; 162 bool isCVTCIL() const override; 163 bool isConstructorVirtualBase() const override; 164 bool isCxxReturnUdt() const override; 165 bool isDataAligned() const override; 166 bool isHLSLData() const override; 167 bool isHotpatchable() const override; 168 bool isIndirectVirtualBaseClass() const override; 169 bool isInterfaceUdt() const override; 170 bool isIntrinsic() const override; 171 bool isLTCG() const override; 172 bool isLocationControlFlowDependent() const override; 173 bool isMSILNetmodule() const override; 174 bool isMatrixRowMajor() const override; 175 bool isManagedCode() const override; 176 bool isMSILCode() const override; 177 bool isMultipleInheritance() const override; 178 bool isNaked() const override; 179 bool isNested() const override; 180 bool isOptimizedAway() const override; 181 bool isPacked() const override; 182 bool isPointerBasedOnSymbolValue() const override; 183 bool isPointerToDataMember() const override; 184 bool isPointerToMemberFunction() const override; 185 bool isPureVirtual() const override; 186 bool isRValueReference() const override; 187 bool isRefUdt() const override; 188 bool isReference() const override; 189 bool isRestrictedType() const override; 190 bool isReturnValue() const override; 191 bool isSafeBuffers() const override; 192 bool isScoped() const override; 193 bool isSdl() const override; 194 bool isSingleInheritance() const override; 195 bool isSplitted() const override; 196 bool isStatic() const override; 197 bool hasPrivateSymbols() const override; 198 bool isUnalignedType() const override; 199 bool isUnreached() const override; 200 bool isValueUdt() const override; 201 bool isVirtual() const override; 202 bool isVirtualBaseClass() const override; 203 bool isVirtualInheritance() const override; 204 bool isVolatileType() const override; 205 bool wasInlined() const override; 206 std::string getUnused() const override; 207 208protected: 209 NativeSession &Session; 210 SymIndexId SymbolId; 211}; 212 213} // end namespace pdb 214} // end namespace llvm 215 216#endif // LLVM_DEBUGINFO_PDB_NATIVE_NATIVERAWSYMBOL_H 217