Home
last modified time | relevance | path

Searched refs:AppendingTypeTableBuilder (Results 1 – 8 of 8) sorted by relevance

/src/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DAppendingTypeTableBuilder.cpp23 TypeIndex AppendingTypeTableBuilder::nextTypeIndex() const { in nextTypeIndex()
27 AppendingTypeTableBuilder::AppendingTypeTableBuilder(BumpPtrAllocator &Storage) in AppendingTypeTableBuilder() function in AppendingTypeTableBuilder
30 AppendingTypeTableBuilder::~AppendingTypeTableBuilder() = default;
32 std::optional<TypeIndex> AppendingTypeTableBuilder::getFirst() { in getFirst()
39 std::optional<TypeIndex> AppendingTypeTableBuilder::getNext(TypeIndex Prev) { in getNext()
45 CVType AppendingTypeTableBuilder::getType(TypeIndex Index){ in getType()
49 StringRef AppendingTypeTableBuilder::getTypeName(TypeIndex Index) { in getTypeName()
53 bool AppendingTypeTableBuilder::contains(TypeIndex Index) { in contains()
60 uint32_t AppendingTypeTableBuilder::size() { return SeenRecords.size(); } in size()
62 uint32_t AppendingTypeTableBuilder::capacity() { return SeenRecords.size(); } in capacity()
[all …]
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DAppendingTypeTableBuilder.h26 class AppendingTypeTableBuilder : public TypeCollection {
35 explicit AppendingTypeTableBuilder(BumpPtrAllocator &Storage);
36 ~AppendingTypeTableBuilder();
/src/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLTypes.h29 class AppendingTypeTableBuilder; variable
49 toCodeViewRecord(codeview::AppendingTypeTableBuilder &Serializer) const;
/src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp85 virtual CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const = 0;
99 CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const override { in toCodeViewRecord()
111 CVType toCodeViewRecord(AppendingTypeTableBuilder &TS) const override;
501 AppendingTypeTableBuilder &TS) const { in toCodeViewRecord()
705 LeafRecord::toCodeViewRecord(AppendingTypeTableBuilder &Serializer) const { in toCodeViewRecord()
808 AppendingTypeTableBuilder TS(Alloc); in toDebugT()
/src/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.h89 std::unique_ptr<AppendingTypeTableBuilder> Builder;
/src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp460 Builder = std::make_unique<AppendingTypeTableBuilder>(BuilderAllocator); in loadPrecompiledObject()
/src/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp863 AppendingTypeTableBuilder TS(Allocator); in yamlToPdb()
/src/lib/clang/libllvm/
H A DMakefile530 SRCS_MIN+= DebugInfo/CodeView/AppendingTypeTableBuilder.cpp