[llvm] [LV] Adjust exit recipe detection to run on early vplan (PR #183318)
Graham Hunter via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 5 07:30:34 PST 2026
================
@@ -245,6 +245,13 @@ struct HistogramInfo {
: Load(Load), Update(Update), Store(Store) {}
};
+/// Indicates the characteristics of a loop with an uncountable early exit.
+/// * None -- No uncountable exit present.
+/// * ReadOnly -- At least one uncountable exit in a readonly loop.
+/// * ReadWrite -- At least one uncountable exit in a loop with side effects
+/// that may require masking.
+enum class UncountableEarlyExitDetail { None, ReadOnly, ReadWrite };
----------------
huntergr-arm wrote:
Done, #184808
https://github.com/llvm/llvm-project/pull/183318
More information about the llvm-commits
mailing list