/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
H A D | PDBExtras.cpp | 238 raw_ostream &llvm::pdb::operator<<(raw_ostream &OS, const PDB_SymType &Tag) { in operator <<() 240 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Exe, OS) in operator <<() 241 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Compiland, OS) in operator <<() 242 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CompilandDetails, OS) in operator <<() 243 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, CompilandEnv, OS) in operator <<() 244 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Function, OS) in operator <<() 245 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Block, OS) in operator <<() 246 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Data, OS) in operator <<() 247 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Annotation, OS) in operator <<() 248 CASE_OUTPUT_ENUM_CLASS_NAME(PDB_SymType, Label, OS) in operator <<() [all …]
|
H A D | PDBSymbol.cpp | 60 case PDB_SymType::Tag: \ 64 PDBSymbol::createSymbol(const IPDBSession &PDBSession, PDB_SymType Tag) { in createSymbol() 139 PDB_SymType PDBSymbol::getSymTag() const { return RawSymbol->getSymTag(); } in getSymTag() 143 return findAllChildren(PDB_SymType::None); in findAllChildren() 147 PDBSymbol::findAllChildren(PDB_SymType Type) const { in findAllChildren() 152 PDBSymbol::findChildren(PDB_SymType Type, StringRef Name, in findChildren() 158 PDBSymbol::findChildrenByRVA(PDB_SymType Type, StringRef Name, in findChildrenByRVA()
|
H A D | PDBContext.cpp | 40 Session->findSymbolByAddress(Address.Address, PDB_SymType::None); in getLineInfoForAddress() 93 Session->findSymbolByAddress(Address.Address, PDB_SymType::Function); in getInliningInfoForAddress() 140 Session->findSymbolByAddress(Address, PDB_SymType::Function); in getFunctionName() 148 Session->findSymbolByAddress(Address, PDB_SymType::PublicSymbol); in getFunctionName()
|
H A D | PDBSymbolData.cpp | 59 if (LexParent->getSymTag() == PDB_SymType::Exe) in getCompilandId() 61 if (LexParent->getSymTag() == PDB_SymType::Compiland) in getCompilandId()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
H A D | NativeExeSymbol.cpp | 33 : NativeRawSymbol(Session, PDB_SymType::Exe, SymbolId), in NativeExeSymbol() 37 NativeExeSymbol::findChildren(PDB_SymType Type) const { in findChildren() 39 case PDB_SymType::Compiland: { in findChildren() 43 case PDB_SymType::ArrayType: in findChildren() 45 case PDB_SymType::Enum: in findChildren() 47 case PDB_SymType::PointerType: in findChildren() 49 case PDB_SymType::UDT: in findChildren() 53 case PDB_SymType::VTableShape: in findChildren() 55 case PDB_SymType::FunctionSig: in findChildren() 58 case PDB_SymType::Typedef: in findChildren()
|
H A D | NativeTypeBuiltin.cpp | 19 : NativeRawSymbol(PDBSession, PDB_SymType::BuiltinType, Id), in NativeTypeBuiltin() 28 PDB_SymType NativeTypeBuiltin::getSymTag() const { in getSymTag() 29 return PDB_SymType::BuiltinType; in getSymTag()
|
H A D | NativeCompilandSymbol.cpp | 20 : NativeRawSymbol(Session, PDB_SymType::Compiland, SymbolId), Module(MI) {} in NativeCompilandSymbol() 22 PDB_SymType NativeCompilandSymbol::getSymTag() const { in getSymTag() 23 return PDB_SymType::Compiland; in getSymTag()
|
H A D | NativeTypeFunctionSig.cpp | 30 : NativeRawSymbol(Session, PDB_SymType::FunctionArg, 0), in NativeTypeFunctionArg() 80 : NativeRawSymbol(Session, PDB_SymType::FunctionSig, Id), in NativeTypeFunctionSig() 86 : NativeRawSymbol(Session, PDB_SymType::FunctionSig, Id), in NativeTypeFunctionSig() 134 NativeTypeFunctionSig::findChildren(PDB_SymType Type) const { in findChildren() 135 if (Type != PDB_SymType::FunctionArg) in findChildren()
|
H A D | NativeRawSymbol.cpp | 18 NativeRawSymbol::NativeRawSymbol(NativeSession &PDBSession, PDB_SymType Tag, in NativeRawSymbol() 32 NativeRawSymbol::findChildren(PDB_SymType Type) const { in findChildren() 37 NativeRawSymbol::findChildren(PDB_SymType Type, StringRef Name, in findChildren() 43 NativeRawSymbol::findChildrenByAddr(PDB_SymType Type, StringRef Name, in findChildrenByAddr() 49 NativeRawSymbol::findChildrenByVA(PDB_SymType Type, StringRef Name, in findChildrenByVA() 55 NativeRawSymbol::findChildrenByRVA(PDB_SymType Type, StringRef Name, in findChildrenByRVA() 364 PDB_SymType NativeRawSymbol::getSymTag() const { return Tag; } in getSymTag()
|
H A D | NativeTypeEnum.cpp | 117 : NativeRawSymbol(Session, PDB_SymType::Enum, Id), Index(Index), in NativeTypeEnum() 123 : NativeRawSymbol(Session, PDB_SymType::Enum, Id), in NativeTypeEnum() 164 NativeTypeEnum::findChildren(PDB_SymType Type) const { in findChildren() 165 if (Type != PDB_SymType::Data) in findChildren() 176 PDB_SymType NativeTypeEnum::getSymTag() const { return PDB_SymType::Enum; } in getSymTag()
|
H A D | NativeTypeUDT.cpp | 21 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI), in NativeTypeUDT() 26 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI), in NativeTypeUDT() 32 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), in NativeTypeUDT()
|
H A D | SymbolCache.cpp | 138 case PDB_SymType::Enum: in createSymbolForModifiedType() 141 case PDB_SymType::UDT: in createSymbolForModifiedType() 310 PDB_SymType Type) { in findSymbolBySectOffset() 312 case PDB_SymType::Function: in findSymbolBySectOffset() 314 case PDB_SymType::PublicSymbol: in findSymbolBySectOffset() 316 case PDB_SymType::Compiland: { in findSymbolBySectOffset() 322 case PDB_SymType::None: { in findSymbolBySectOffset()
|
H A D | NativeTypePointer.cpp | 21 : NativeRawSymbol(Session, PDB_SymType::PointerType, Id), TI(TI) { in NativeTypePointer() 29 : NativeRawSymbol(Session, PDB_SymType::PointerType, Id), TI(TI), in NativeTypePointer()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/ |
H A D | PDBSymbol.h | 53 static const PDB_SymType Tag = TagValue; \ 72 PDB_SymType Tag); 116 PDB_SymType getSymTag() const; 133 std::unique_ptr<IPDBEnumSymbols> findAllChildren(PDB_SymType Type) const; 137 findChildren(PDB_SymType Type, StringRef Name, 139 std::unique_ptr<IPDBEnumSymbols> findChildrenByRVA(PDB_SymType Type,
|
H A D | IPDBRawSymbol.h | 53 findChildren(PDB_SymType Type) const = 0; 56 findChildren(PDB_SymType Type, StringRef Name, 59 findChildrenByAddr(PDB_SymType Type, StringRef Name, 63 findChildrenByVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 66 findChildrenByRVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 158 virtual PDB_SymType getSymTag() const = 0;
|
H A D | PDBSymbolUnknown.h | 20 DECLARE_PDB_SYMBOL_CUSTOM_TYPE(S->getSymTag() == PDB_SymType::None || 21 S->getSymTag() >= PDB_SymType::Max)
|
H A D | IPDBSession.h | 46 PDB_SymType Type) = 0; 48 PDB_SymType Type) = 0; 50 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, PDB_SymType Type) = 0;
|
H A D | PDBSymbolExe.h | 22 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Exe) 38 void dumpChildren(raw_ostream &OS, StringRef Label, PDB_SymType ChildType,
|
H A D | PDBExtras.h | 23 using TagStats = std::unordered_map<PDB_SymType, int>; 35 raw_ostream &operator<<(raw_ostream &OS, const PDB_SymType &Tag);
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | NativeRawSymbol.h | 26 NativeRawSymbol(NativeSession &PDBSession, PDB_SymType Tag, 33 findChildren(PDB_SymType Type) const override; 35 findChildren(PDB_SymType Type, StringRef Name, 38 findChildrenByAddr(PDB_SymType Type, StringRef Name, 42 findChildrenByVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 45 findChildrenByRVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 136 PDB_SymType getSymTag() const override; 233 PDB_SymType Tag;
|
H A D | NativeSession.h | 58 PDB_SymType Type) override; 60 PDB_SymType Type) override; 63 PDB_SymType Type) override;
|
H A D | NativeTypeEnum.h | 37 findChildren(PDB_SymType Type) const override; 40 PDB_SymType getSymTag() const override;
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/DIA/ |
H A D | DIARawSymbol.h | 28 findChildren(PDB_SymType Type) const override; 30 findChildren(PDB_SymType Type, StringRef Name, 33 findChildrenByAddr(PDB_SymType Type, StringRef Name, 37 findChildrenByVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 40 findChildrenByRVA(PDB_SymType Type, StringRef Name, PDB_NameSearchFlags Flags, 131 PDB_SymType getSymTag() const override;
|
H A D | DIASession.h | 42 PDB_SymType Type) override; 44 PDB_SymType Type) override; 47 PDB_SymType Type) override;
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
H A D | llvm-pdbutil.cpp | 1018 std::vector<PDB_SymType> SymTypes; in dumpDia() 1021 SymTypes.push_back(PDB_SymType::Compiland); in dumpDia() 1023 SymTypes.push_back(PDB_SymType::Enum); in dumpDia() 1025 SymTypes.push_back(PDB_SymType::PointerType); in dumpDia() 1027 SymTypes.push_back(PDB_SymType::UDT); in dumpDia() 1029 SymTypes.push_back(PDB_SymType::FunctionSig); in dumpDia() 1031 SymTypes.push_back(PDB_SymType::ArrayType); in dumpDia() 1033 SymTypes.push_back(PDB_SymType::VTableShape); in dumpDia() 1035 SymTypes.push_back(PDB_SymType::Typedef); in dumpDia() 1045 for (PDB_SymType ST : SymTypes) { in dumpDia() [all …]
|