[llvm-branch-commits] [llvm] [LV] Mask off possibly aliasing vector lanes (PR #100579)
Sam Tebbs via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Fri Aug 15 05:44:16 PDT 2025
================
@@ -201,6 +201,13 @@ enum class TailFoldingStyle {
DataWithEVL,
};
+enum class RTCheckStyle {
+ /// Create runtime checks based on the difference between two pointers
+ ScalarDifference,
+ /// Form a mask based on elements which won't be a WAR or RAW hazard.
+ UseSafeEltsMask,
----------------
SamTebbs33 wrote:
I think `NoUnsafeAliasMask` could sound like it means there shouldn't be a mask, i.e. `No{...}Mask`.
https://github.com/llvm/llvm-project/pull/100579
More information about the llvm-branch-commits
mailing list