[llvm] [AArch64] Initial compiler support for SVE unwind on Windows. (PR #138609)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Wed May 7 03:58:53 PDT 2025
================
@@ -2757,10 +2853,27 @@ StackOffset AArch64FrameLowering::resolveFrameOffsetReference(
}
StackOffset ScalableOffset = {};
- if (UseFP && !(isFixed || isCSR))
- ScalableOffset = -SVEStackSize;
- if (!UseFP && (isFixed || isCSR))
- ScalableOffset = SVEStackSize;
+ bool FPAfterSVECalleeSaves =
----------------
MacDue wrote:
I think `resolveFrameOffsetReference` will also be incorrect for SVE CSs, not sure if that's an issue, but I think there should at least be an assertion.
https://github.com/llvm/llvm-project/pull/138609
More information about the llvm-commits
mailing list