This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 775d402bf18 [AMDGPU] Come back patch for the 'Assign register class for [...] new e0cea293248 Revert "Add a pass to lower is.constant and objectsize intrinsics"
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: .../transforms/scalar_opts/llvm_scalar_opts.mli | 5 - .../transforms/scalar_opts/scalar_opts_ocaml.c | 6 - include/llvm-c/Transforms/Scalar.h | 3 - include/llvm/InitializePasses.h | 1 - include/llvm/LinkAllPasses.h | 1 - include/llvm/Transforms/Scalar.h | 7 - .../Transforms/Scalar/LowerConstantIntrinsics.h | 41 ----- lib/CodeGen/CodeGenPrepare.cpp | 22 ++- lib/CodeGen/GlobalISel/IRTranslator.cpp | 14 +- lib/CodeGen/SelectionDAG/FastISel.cpp | 24 ++- lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 24 ++- lib/CodeGen/TargetPassConfig.cpp | 1 - lib/Passes/PassBuilder.cpp | 3 - lib/Passes/PassRegistry.def | 1 - lib/Transforms/IPO/PassManagerBuilder.cpp | 1 - lib/Transforms/Scalar/CMakeLists.txt | 1 - lib/Transforms/Scalar/LowerConstantIntrinsics.cpp | 170 --------------------- lib/Transforms/Scalar/Scalar.cpp | 5 - .../AArch64/GlobalISel/arm64-irtranslator.ll | 17 +++ test/CodeGen/AArch64/O0-pipeline.ll | 1 - test/CodeGen/AArch64/O3-pipeline.ll | 1 - test/CodeGen/ARM/O3-pipeline.ll | 1 - test/CodeGen/Generic/is-constant.ll | 114 ++++++++++++++ test/CodeGen/X86/O0-pipeline.ll | 1 - test/CodeGen/X86/O3-pipeline.ll | 1 - test/CodeGen/X86/is-constant.ll | 50 ++++++ test/CodeGen/X86/object-size.ll | 55 +++++++ test/Other/new-pm-defaults.ll | 1 - test/Other/new-pm-thinlto-defaults.ll | 1 - test/Other/opt-O2-pipeline.ll | 2 - test/Other/opt-O3-pipeline.ll | 2 - test/Other/opt-Os-pipeline.ll | 2 - .../CodeGenPrepare/X86/overflow-intrinsics.ll | 20 +++ .../basic.ll} | 17 ++- .../Transforms/CodeGenPrepare/builtin-condition.ll | 123 +++++++++++++++ .../crash-on-large-allocas.ll | 2 +- .../LowerConstantIntrinsics/constant-intrinsics.ll | 114 -------------- .../secondary/llvm/lib/Transforms/Scalar/BUILD.gn | 1 - 38 files changed, 457 insertions(+), 399 deletions(-) delete mode 100644 include/llvm/Transforms/Scalar/LowerConstantIntrinsics.h delete mode 100644 lib/Transforms/Scalar/LowerConstantIntrinsics.cpp create mode 100644 test/CodeGen/Generic/is-constant.ll create mode 100644 test/CodeGen/X86/is-constant.ll create mode 100644 test/CodeGen/X86/object-size.ll rename test/Transforms/{LowerConstantIntrinsics/objectsize_basic.ll => CodeGenPrep [...] create mode 100644 test/Transforms/CodeGenPrepare/builtin-condition.ll rename test/Transforms/{LowerConstantIntrinsics => CodeGenPrepare}/crash-on-large- [...] delete mode 100644 test/Transforms/LowerConstantIntrinsics/constant-intrinsics.ll