[llvm] [VPlan] Introduce VPInstructionWithType, use instead of VPScalarCast(NFC) (PR #129706)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 15:06:57 PDT 2025
================
@@ -113,7 +113,12 @@ bool vputils::isUniformAcrossVFsAndUFs(VPValue *V) {
all_of(R->operands(),
[](VPValue *Op) { return isUniformAcrossVFsAndUFs(Op); });
})
- .Case<VPScalarCastRecipe, VPWidenCastRecipe>([](const auto *R) {
+ .Case<VPInstruction>([](const auto *VPI) {
+ return Instruction::isCast(VPI->getOpcode())
+ ? all_of(VPI->operands(), isUniformAcrossVFsAndUFs)
+ : false;
----------------
fhahn wrote:
Ah yes, just thought passing to all_of directly, but updated now, thanks
https://github.com/llvm/llvm-project/pull/129706
More information about the llvm-commits
mailing list