This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 062cf6681d2 [PowerPC] Collapse RLDICL/RLDICR into RLDIC when possible new d800abbe0a2 [NFC][FnAttrs] Stress tests for attribute deduction new f64487e26fc [Attributor] Pass infrastructure and fixpoint framework
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/InitializePasses.h | 1 + include/llvm/LinkAllPasses.h | 2 + include/llvm/Transforms/IPO/Attributor.h | 565 ++++++++++++++++++++ lib/LTO/LTOCodeGenerator.cpp | 1 + lib/Passes/PassBuilder.cpp | 1 + lib/Passes/PassRegistry.def | 1 + lib/Transforms/IPO/Attributor.cpp | 529 ++++++++++++++++++ lib/Transforms/IPO/CMakeLists.txt | 1 + lib/Transforms/IPO/IPO.cpp | 1 + lib/Transforms/IPO/PassManagerBuilder.cpp | 11 +- test/Other/opt-O2-pipeline.ll | 1 + test/Other/opt-O3-pipeline.ll | 1 + test/Other/opt-Os-pipeline.ll | 1 + test/Transforms/FunctionAttrs/arg_nocapture.ll | 446 ++++++++++++++++ test/Transforms/FunctionAttrs/arg_returned.ll | 590 +++++++++++++++++++++ test/Transforms/FunctionAttrs/fn_noreturn.ll | 135 +++++ .../read_write_returned_arguments_scc.ll | 165 ++++++ test/Transforms/FunctionAttrs/readattrs.ll | 31 +- 18 files changed, 2481 insertions(+), 2 deletions(-) create mode 100644 include/llvm/Transforms/IPO/Attributor.h create mode 100644 lib/Transforms/IPO/Attributor.cpp create mode 100644 test/Transforms/FunctionAttrs/arg_nocapture.ll create mode 100644 test/Transforms/FunctionAttrs/arg_returned.ll create mode 100644 test/Transforms/FunctionAttrs/fn_noreturn.ll create mode 100644 test/Transforms/FunctionAttrs/read_write_returned_arguments_scc.ll