This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from bb82f0a Emit the DW_AT_type for a C++ static member definition if it [...] new 7306956 [CodeView] Hook up CodeViewRecordIO to type serialization path. new 82efd07 Fix some size_t / uint32_t ambiguity errors.
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h | 43 ++- .../DebugInfo/CodeView/FieldListRecordBuilder.h | 67 ----- .../llvm/DebugInfo/CodeView/ListRecordBuilder.h | 65 ----- .../DebugInfo/CodeView/MemoryTypeTableBuilder.h | 50 ---- .../DebugInfo/CodeView/MethodListRecordBuilder.h | 35 --- .../llvm/DebugInfo/CodeView/RecordSerialization.h | 2 +- include/llvm/DebugInfo/CodeView/TypeDeserializer.h | 12 +- include/llvm/DebugInfo/CodeView/TypeIndex.h | 2 +- include/llvm/DebugInfo/CodeView/TypeRecord.h | 11 +- .../llvm/DebugInfo/CodeView/TypeRecordMapping.h | 6 + .../DebugInfo/CodeView/TypeSerializationVisitor.h | 85 ------ include/llvm/DebugInfo/CodeView/TypeSerializer.h | 140 ++++++++++ include/llvm/DebugInfo/CodeView/TypeTableBuilder.h | 135 +++++++--- .../CodeView/TypeVisitorCallbackPipeline.h | 28 +- include/llvm/DebugInfo/MSF/StreamWriter.h | 2 +- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 204 +++++++------- lib/CodeGen/AsmPrinter/CodeViewDebug.h | 4 +- lib/DebugInfo/CodeView/CMakeLists.txt | 7 +- lib/DebugInfo/CodeView/CVTypeVisitor.cpp | 65 +---- lib/DebugInfo/CodeView/CodeViewRecordIO.cpp | 41 ++- lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp | 132 --------- lib/DebugInfo/CodeView/ListRecordBuilder.cpp | 103 ------- lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp | 46 ---- lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp | 49 ---- lib/DebugInfo/CodeView/TypeDumper.cpp | 4 +- lib/DebugInfo/CodeView/TypeRecordBuilder.cpp | 119 -------- lib/DebugInfo/CodeView/TypeRecordMapping.cpp | 100 +++++-- lib/DebugInfo/CodeView/TypeSerializer.cpp | 243 +++++++++++++++++ lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 15 +- lib/DebugInfo/CodeView/TypeTableBuilder.cpp | 300 --------------------- tools/llvm-pdbdump/PdbYaml.cpp | 11 +- tools/llvm-pdbdump/YamlSerializationContext.h | 13 +- tools/llvm-pdbdump/YamlTypeDumper.cpp | 53 ++-- tools/llvm-pdbdump/YamlTypeDumper.h | 1 - tools/llvm-readobj/COFFDumper.cpp | 13 +- tools/llvm-readobj/ObjDumper.h | 7 +- tools/llvm-readobj/llvm-readobj.cpp | 10 +- 37 files changed, 853 insertions(+), 1370 deletions(-) delete mode 100644 include/llvm/DebugInfo/CodeView/FieldListRecordBuilder.h delete mode 100644 include/llvm/DebugInfo/CodeView/ListRecordBuilder.h delete mode 100644 include/llvm/DebugInfo/CodeView/MemoryTypeTableBuilder.h delete mode 100644 include/llvm/DebugInfo/CodeView/MethodListRecordBuilder.h delete mode 100644 include/llvm/DebugInfo/CodeView/TypeSerializationVisitor.h create mode 100644 include/llvm/DebugInfo/CodeView/TypeSerializer.h delete mode 100644 lib/DebugInfo/CodeView/FieldListRecordBuilder.cpp delete mode 100644 lib/DebugInfo/CodeView/ListRecordBuilder.cpp delete mode 100644 lib/DebugInfo/CodeView/MemoryTypeTableBuilder.cpp delete mode 100644 lib/DebugInfo/CodeView/MethodListRecordBuilder.cpp delete mode 100644 lib/DebugInfo/CodeView/TypeRecordBuilder.cpp create mode 100644 lib/DebugInfo/CodeView/TypeSerializer.cpp delete mode 100644 lib/DebugInfo/CodeView/TypeTableBuilder.cpp