This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from c77e9347357 [mips] Fix decoding of microMIPS JALX instruction new b68f7fd8cdc [Remarks] Add parser for bitstream remarks new a503e8648e1 [X86] Allow _MM_FROUND_CUR_DIRECTION and _MM_FROUND_NO_EXC [...]
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-c/Remarks.h | 17 +- include/llvm/Bitstream/BitstreamReader.h | 1 + include/llvm/Remarks/BitstreamRemarkParser.h | 116 +++++ lib/Remarks/BitstreamRemarkParser.cpp | 586 ++++++++++++++++++++++ lib/Remarks/BitstreamRemarkParser.h | 83 +++ lib/Remarks/CMakeLists.txt | 1 + lib/Remarks/LLVMBuild.txt | 2 +- lib/Remarks/RemarkParser.cpp | 16 +- lib/Target/X86/X86ISelLowering.cpp | 12 +- test/CodeGen/X86/avx512-intrinsics.ll | 2 +- tools/remarks-shlib/Remarks.exports | 1 + unittests/Remarks/BitstreamRemarksParsingTest.cpp | 401 +++++++++++++++ unittests/Remarks/CMakeLists.txt | 1 + 13 files changed, 1228 insertions(+), 11 deletions(-) create mode 100644 include/llvm/Remarks/BitstreamRemarkParser.h create mode 100644 lib/Remarks/BitstreamRemarkParser.cpp create mode 100644 lib/Remarks/BitstreamRemarkParser.h create mode 100644 unittests/Remarks/BitstreamRemarksParsingTest.cpp