This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from bd1ee1116fd [DAGCombiner] fold (addcarry (xor a, -1), b, c) -> (subcarr [...] new f50c6dfc442 [ADCE] Fix non-deterministic behaviour due to iterating ove [...] new ce4ba232b09 [Remarks][NFC] Combine ParserFormat and SerializerFormat new 00c0e0040f9 [Remarks] Simplify and refactor the RemarkParser interface new 04cfb01f5f2 Add missing test for r366215
The 4 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: docs/Remarks.rst | 1 + include/llvm-c/Remarks.h | 23 +- include/llvm/IR/RemarkStreamer.h | 16 +- include/llvm/Remarks/Remark.h | 16 +- include/llvm/Remarks/RemarkFormat.h | 33 ++ include/llvm/Remarks/RemarkParser.h | 43 ++- include/llvm/Support/SourceMgr.h | 2 + lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 1 + lib/IR/RemarkStreamer.cpp | 36 +- lib/Remarks/CMakeLists.txt | 1 + lib/Remarks/Remark.cpp | 4 + lib/Remarks/RemarkFormat.cpp | 30 ++ lib/Remarks/RemarkParser.cpp | 138 +++---- lib/Remarks/RemarkParserImpl.h | 33 -- lib/Remarks/YAMLRemarkParser.cpp | 429 ++++++++++++--------- lib/Remarks/YAMLRemarkParser.h | 130 +++---- lib/Transforms/Scalar/ADCE.cpp | 11 +- .../ADCE/blocks-with-dead-term-nondeterministic.ll | 71 ++++ tools/llvm-opt-report/OptReport.cpp | 26 +- tools/remarks-shlib/Remarks.exports | 1 + unittests/Remarks/YAMLRemarksParsingTest.cpp | 103 +++-- 21 files changed, 632 insertions(+), 516 deletions(-) create mode 100644 include/llvm/Remarks/RemarkFormat.h create mode 100644 lib/Remarks/RemarkFormat.cpp delete mode 100644 lib/Remarks/RemarkParserImpl.h create mode 100644 test/Transforms/ADCE/blocks-with-dead-term-nondeterministic.ll