This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 93c47434af5 [UpdateTestChecks] Moved core functionality of add_asm_chec [...] new ff02230cf50 [Plugins] Add a slim plugin API to work together with the new PM new 370e64a807e [llvm-mca] Remove flag -max-retire-per-cycle, and update the docs.
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: docs/CommandGuide/llvm-mca.rst | 5 -- include/llvm/Demangle/Compiler.h | 18 +++++++ include/llvm/Passes/PassPlugin.h | 114 +++++++++++++++++++++++++++++++++++++++ include/llvm/Support/Compiler.h | 1 + lib/Passes/CMakeLists.txt | 1 + lib/Passes/PassPlugin.cpp | 50 +++++++++++++++++ tools/llvm-mca/Backend.h | 6 +-- tools/llvm-mca/Dispatch.h | 11 ++-- tools/llvm-mca/llvm-mca.cpp | 9 +--- tools/opt/NewPMDriver.cpp | 17 ++++++ unittests/CMakeLists.txt | 1 + unittests/Passes/CMakeLists.txt | 21 ++++++++ unittests/Passes/PluginsTest.cpp | 53 ++++++++++++++++++ unittests/Passes/TestPlugin.cxx | 39 ++++++++++++++ unittests/Passes/TestPlugin.h | 2 + 15 files changed, 327 insertions(+), 21 deletions(-) create mode 100644 include/llvm/Passes/PassPlugin.h create mode 100644 lib/Passes/PassPlugin.cpp create mode 100644 unittests/Passes/CMakeLists.txt create mode 100644 unittests/Passes/PluginsTest.cpp create mode 100644 unittests/Passes/TestPlugin.cxx create mode 100644 unittests/Passes/TestPlugin.h