[PATCH] D158623: [RISCV] Reorder the stack frame objects.

lcvon via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 27 19:58:06 PDT 2023


lcvon007 added inline comments.


================
Comment at: llvm/lib/Target/RISCV/RISCVFrameLowering.cpp:555
+  const unsigned Opcode = MI.getOpcode();
+  return isCompressibleLwOrSw(STI, Opcode) ||
+         isCompressibleLdOrSd(STI, Opcode) ||
----------------
wangpc wrote:
> Do we really need these small inline functions? What about making them branches (manually inlining)?
done, thanks for you


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D158623/new/

https://reviews.llvm.org/D158623



More information about the llvm-commits mailing list