[all-commits] [llvm/llvm-project] 6abce1: [VPlan] Use Exiting-block instead of Exit-block te...
Florian Hahn via All-commits
all-commits at lists.llvm.org
Sat May 28 13:16:31 PDT 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 6abce17fc285747fb9b5522db2acab5fc06cabe6
https://github.com/llvm/llvm-project/commit/6abce17fc285747fb9b5522db2acab5fc06cabe6
Author: Florian Hahn <flo at fhahn.com>
Date: 2022-05-28 (Sat, 28 May 2022)
Changed paths:
M llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
M llvm/lib/Transforms/Vectorize/VPlan.cpp
M llvm/lib/Transforms/Vectorize/VPlan.h
M llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
M llvm/lib/Transforms/Vectorize/VPlanPredicator.cpp
M llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
Log Message:
-----------
[VPlan] Use Exiting-block instead of Exit-block terminology (NFC).
In LLVM's common loop terminology, an exit block is a block outside a
loop with a predecessor inside the loop. An exiting block is a block
inside the loop which branches to an exit block outside the loop.
This patch updates a few places where VPlan was using ExitBlock for a
block exiting a region. Those instances have been updated to use
ExitingBlock.
Reviewed By: Ayal
Differential Revision: https://reviews.llvm.org/D126173
More information about the All-commits
mailing list