[llvm] [AArch64] Runtime-unroll small load/store loops for Apple Silicon CPUs. (PR #118317)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 3 02:55:01 PST 2024
================
@@ -4010,6 +4094,12 @@ void AArch64TTIImpl::getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
EnableFalkorHWPFUnrollFix)
getFalkorUnrollingPreferences(L, SE, UP);
+ if (ST->getProcFamily() == AArch64Subtarget::AppleA14 ||
+ ST->getProcFamily() == AArch64Subtarget::AppleA15 ||
+ ST->getProcFamily() == AArch64Subtarget::AppleA16 ||
+ ST->getProcFamily() == AArch64Subtarget::AppleM4)
+ getAppleRuntimeUnrollPreferences(L, SE, UP, *this);
----------------
fhahn wrote:
Done thanks! Also included the code for Falkor from above in the new switch
https://github.com/llvm/llvm-project/pull/118317
More information about the llvm-commits
mailing list