[llvm] [AArch64] Add flag to control unrolling for small multi-exit loops (PR #131998)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 27 15:12:34 PDT 2025
================
@@ -4370,6 +4375,81 @@ getFalkorUnrollingPreferences(Loop *L, ScalarEvolution &SE,
}
}
+static bool shouldUnrollLoopWithInstruction(Instruction &I,
+ AArch64TTIImpl &TTI) {
+ // Don't unroll vectorised loop.
+ if (I.getType()->isVectorTy())
+ return false;
+
+ if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
+ if (const Function *F = cast<CallBase>(I).getCalledFunction())
+ if (!TTI.isLoweredToCall(F))
+ return true;
+ return false;
+ }
+
+ return true;
+}
+
+static InstructionCost getSizeOfLoop(Loop *L, AArch64TTIImpl &TTI) {
----------------
fhahn wrote:
Can this also be shared with `getAppleRuntimeUnrollPreferences`? Although there we explicitly don't bail out on vector instructions. We only bail out on loops LV already vectorized.
https://github.com/llvm/llvm-project/pull/131998
More information about the llvm-commits
mailing list