/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeDeserializer.h | 45 if (auto EC = I.Mapping.visitTypeBegin(CVT)) in deserializeAs() 67 Error visitTypeBegin(CVType &Record) override { in visitTypeBegin() function 70 return Mapping->Mapping.visitTypeBegin(Record); in visitTypeBegin() 73 Error visitTypeBegin(CVType &Record, TypeIndex Index) override { in visitTypeBegin() function 74 return visitTypeBegin(Record); in visitTypeBegin() 116 consumeError(Mapping.Mapping.visitTypeBegin(FieldList)); in FieldListDeserializer()
|
H A D | TypeVisitorCallbackPipeline.h | 41 Error visitTypeBegin(CVType &Record) override { in visitTypeBegin() function 43 if (auto EC = Visitor->visitTypeBegin(Record)) in visitTypeBegin() 49 Error visitTypeBegin(CVType &Record, TypeIndex Index) override { in visitTypeBegin() function 51 if (auto EC = Visitor->visitTypeBegin(Record, Index)) in visitTypeBegin()
|
H A D | TypeRecordMapping.h | 32 using TypeVisitorCallbacks::visitTypeBegin; 33 Error visitTypeBegin(CVType &Record) override; 34 Error visitTypeBegin(CVType &Record, TypeIndex Index) override;
|
H A D | TypeVisitorCallbacks.h | 31 virtual Error visitTypeBegin(CVType &Record) { return Error::success(); } in visitTypeBegin() function 32 virtual Error visitTypeBegin(CVType &Record, TypeIndex Index) { in visitTypeBegin() function
|
H A D | TypeDumpVisitor.h | 50 Error visitTypeBegin(CVType &Record) override; 51 Error visitTypeBegin(CVType &Record, TypeIndex Index) override;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | RecordName.cpp | 42 Error visitTypeBegin(CVType &Record) override; 43 Error visitTypeBegin(CVType &Record, TypeIndex Index) override; 54 Error TypeNameComputer::visitTypeBegin(CVType &Record) { in visitTypeBegin() function in TypeNameComputer 55 llvm_unreachable("Must call visitTypeBegin with a TypeIndex!"); in visitTypeBegin() 59 Error TypeNameComputer::visitTypeBegin(CVType &Record, TypeIndex Index) { in visitTypeBegin() function in TypeNameComputer
|
H A D | SimpleTypeSerializer.cpp | 47 cantFail(Mapping.visitTypeBegin(CVT)); in serialize()
|
H A D | CVTypeVisitor.cpp | 125 if (auto EC = Callbacks.visitTypeBegin(Record, Index)) in visitTypeRecord() 132 if (auto EC = Callbacks.visitTypeBegin(Record)) in visitTypeRecord()
|
H A D | TypeDumpVisitor.cpp | 171 Error TypeDumpVisitor::visitTypeBegin(CVType &Record) { in visitTypeBegin() function in TypeDumpVisitor 172 return visitTypeBegin(Record, TypeIndex::fromArrayIndex(TpiTypes.size())); in visitTypeBegin() 175 Error TypeDumpVisitor::visitTypeBegin(CVType &Record, TypeIndex Index) { in visitTypeBegin() function in TypeDumpVisitor
|
H A D | ContinuationRecordBuilder.cpp | 72 cantFail(Mapping.visitTypeBegin(Type)); in begin()
|
H A D | TypeRecordMapping.cpp | 232 Error TypeRecordMapping::visitTypeBegin(CVType &CVR) { in visitTypeBegin() function in TypeRecordMapping 257 Error TypeRecordMapping::visitTypeBegin(CVType &CVR, TypeIndex Index) { in visitTypeBegin() function in TypeRecordMapping 261 return visitTypeBegin(CVR); in visitTypeBegin()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | MinimalTypeDumper.h | 37 Error visitTypeBegin(codeview::CVType &Record,
|
H A D | MinimalTypeDumper.cpp | 226 Error MinimalTypeDumpVisitor::visitTypeBegin(CVType &Record, TypeIndex Index) { in visitTypeBegin() function in MinimalTypeDumpVisitor
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/ |
H A D | LVCodeViewVisitor.h | 68 Error visitTypeBegin(CVType &Record) override; 69 Error visitTypeBegin(CVType &Record, TypeIndex TI) override;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
H A D | LVCodeViewVisitor.cpp | 491 Error LVTypeVisitor::visitTypeBegin(CVType &Record) { in visitTypeBegin() function in LVTypeVisitor 492 return visitTypeBegin(Record, TypeIndex::fromArrayIndex(Types.size())); in visitTypeBegin() 495 Error LVTypeVisitor::visitTypeBegin(CVType &Record, TypeIndex TI) { in visitTypeBegin() function in LVTypeVisitor
|