This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 54374f63ac1 hwasan: Read shadow address from ifunc if we don't need a f [...] new 6866f6ea0e3 [LV][VPlan] Change to implement VPlan based predication for [...]
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: lib/Transforms/Vectorize/CMakeLists.txt | 1 + .../Vectorize/LoopVectorizationLegality.cpp | 7 +- lib/Transforms/Vectorize/LoopVectorize.cpp | 27 ++- lib/Transforms/Vectorize/VPlan.cpp | 13 ++ lib/Transforms/Vectorize/VPlan.h | 53 +++++ lib/Transforms/Vectorize/VPlanPredicator.cpp | 249 +++++++++++++++++++++ lib/Transforms/Vectorize/VPlanPredicator.h | 75 +++++++ unittests/Transforms/Vectorize/CMakeLists.txt | 1 + .../Transforms/Vectorize/VPlanPredicatorTest.cpp | 230 +++++++++++++++++++ 9 files changed, 650 insertions(+), 6 deletions(-) create mode 100644 lib/Transforms/Vectorize/VPlanPredicator.cpp create mode 100644 lib/Transforms/Vectorize/VPlanPredicator.h create mode 100644 unittests/Transforms/Vectorize/VPlanPredicatorTest.cpp