This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 499e3df2ce6 [Debugify] Export per-pass debug info loss statistics new c4c8d7b1655 Add PerfJITEventListener for perf profiling support.
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: CMakeLists.txt | 13 + docs/CMake.rst | 3 + include/llvm-c/ExecutionEngine.h | 1 + include/llvm/Config/llvm-config.h.cmake | 3 + include/llvm/ExecutionEngine/JITEventListener.h | 13 + lib/ExecutionEngine/CMakeLists.txt | 4 + lib/ExecutionEngine/LLVMBuild.txt | 2 +- lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt | 5 + .../{OProfileJIT => PerfJITEvents}/LLVMBuild.txt | 8 +- .../PerfJITEvents/PerfJITEventListener.cpp | 497 +++++++++++++++++++++ tools/lli/CMakeLists.txt | 9 + tools/lli/lli.cpp | 3 + 12 files changed, 555 insertions(+), 6 deletions(-) create mode 100644 lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt copy lib/ExecutionEngine/{OProfileJIT => PerfJITEvents}/LLVMBuild.txt (75%) create mode 100644 lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp