This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from a710db28b7f [X86][X87] Tag FP_TO_INT_IN_MEM pseudos with hasNoSchedulingInfo new ab45c0673e7 [CodeView] Refactor / Rewrite TypeSerializer and TypeTableBuilder.
The 1 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: .../DebugInfo/CodeView/ContinuationRecordBuilder.h | 65 ++++ .../llvm/DebugInfo/CodeView/SimpleTypeSerializer.h | 53 +++ include/llvm/DebugInfo/CodeView/TypeSerializer.h | 159 --------- include/llvm/DebugInfo/CodeView/TypeTableBuilder.h | 129 +++---- include/llvm/ObjectYAML/CodeViewYAMLTypes.h | 8 +- include/llvm/Support/BinaryByteStream.h | 6 +- lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 92 ++--- lib/DebugInfo/CodeView/CMakeLists.txt | 4 +- .../CodeView/ContinuationRecordBuilder.cpp | 256 ++++++++++++++ lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp | 62 ++++ lib/DebugInfo/CodeView/TypeRecordMapping.cpp | 3 +- lib/DebugInfo/CodeView/TypeSerializer.cpp | 389 --------------------- lib/DebugInfo/CodeView/TypeStreamMerger.cpp | 2 +- lib/DebugInfo/CodeView/TypeTableBuilder.cpp | 206 +++++++++++ lib/DebugInfo/CodeView/TypeTableCollection.cpp | 1 - lib/ObjectYAML/CodeViewYAMLTypes.cpp | 44 ++- test/DebugInfo/COFF/big-type.ll | 15 + tools/llvm-pdbutil/PdbYaml.cpp | 1 - tools/llvm-pdbutil/llvm-pdbutil.cpp | 5 +- .../DebugInfo/CodeView/RandomAccessVisitorTest.cpp | 7 +- .../DebugInfo/CodeView/TypeIndexDiscoveryTest.cpp | 20 +- 21 files changed, 795 insertions(+), 732 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h create mode 100644 include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h delete mode 100644 include/llvm/DebugInfo/CodeView/TypeSerializer.h create mode 100644 lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp create mode 100644 lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp delete mode 100644 lib/DebugInfo/CodeView/TypeSerializer.cpp create mode 100644 lib/DebugInfo/CodeView/TypeTableBuilder.cpp