[PATCH] D157373: [RISCV] add a compress optimization for stack inst.
Craig Topper via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 16 11:56:39 PDT 2023
craig.topper added inline comments.
================
Comment at: llvm/lib/Target/RISCV/RISCVFrameLowering.cpp:1304
if (!isInt<12>(StackSize) && (CSI.size() > 0)) {
// FirstSPAdjustAmount is chosen as (2048 - StackAlign) because 2048 will
// cause sp = sp + 2048 in the epilogue to be split into multiple
----------------
This comment is about the code after the compressed handling. Should it be moved down?
================
Comment at: llvm/lib/Target/RISCV/RISCVFrameLowering.cpp:1324
+ // Avoid increasing extra instructions when ld/st can be compressed.
+ if ((CSI.size() <= RVCompressLen) &&
+ (StackSize <= 2048 + RVCompressLen ||
----------------
Isn't CSI.size() the number of registers being saved? RVCompressLen is 256 or 512. Won't CSI.size() always be less than that? They aren't the same units.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157373/new/
https://reviews.llvm.org/D157373
More information about the llvm-commits
mailing list