This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f638013 [ThinLTO] Import composite types as declarations new eb30028 [libFuzzer] add an experimental flag -experimental_len_contro [...] new c7ab3c7 [libFuzzer] avoid msan false positives in more cases new 3b75dc7 Resubmit "[CodeView] Hook CodeViewRecordIO for reading/writin [...]
The 3 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/CodeView.h | 2 +- include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h | 14 + .../llvm/DebugInfo/CodeView/SymbolDeserializer.h | 48 +- include/llvm/DebugInfo/CodeView/SymbolRecord.h | 1180 ++++++-------------- .../llvm/DebugInfo/CodeView/SymbolRecordMapping.h | 44 + include/llvm/DebugInfo/CodeView/SymbolSerializer.h | 96 ++ lib/CodeGen/AsmPrinter/CodeViewDebug.cpp | 30 +- lib/DebugInfo/CodeView/CMakeLists.txt | 2 + lib/DebugInfo/CodeView/CodeViewRecordIO.cpp | 31 + lib/DebugInfo/CodeView/SymbolDumper.cpp | 276 +++-- lib/DebugInfo/CodeView/SymbolRecordMapping.cpp | 464 ++++++++ lib/DebugInfo/CodeView/SymbolSerializer.cpp | 1 + lib/Fuzzer/FuzzerCorpus.h | 6 + lib/Fuzzer/FuzzerDefs.h | 7 + lib/Fuzzer/FuzzerDriver.cpp | 3 + lib/Fuzzer/FuzzerFlags.def | 1 + lib/Fuzzer/FuzzerLoop.cpp | 26 +- lib/Fuzzer/FuzzerMutate.cpp | 7 - lib/Fuzzer/FuzzerOptions.h | 1 + lib/Fuzzer/FuzzerTracePC.cpp | 8 +- lib/MC/MCCodeView.cpp | 4 +- test/DebugInfo/PDB/pdb-yaml-symbols.test | 19 +- test/DebugInfo/PDB/pdbdump-headers.test | 10 - tools/llvm-pdbdump/YamlSymbolDumper.cpp | 300 +++-- 24 files changed, 1391 insertions(+), 1189 deletions(-) create mode 100644 include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h create mode 100644 include/llvm/DebugInfo/CodeView/SymbolSerializer.h create mode 100644 lib/DebugInfo/CodeView/SymbolRecordMapping.cpp create mode 100644 lib/DebugInfo/CodeView/SymbolSerializer.cpp