[llvm] [RISCV] Simplify getStackAdjBase. NFC (PR #129281)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 10:15:09 PST 2025
https://github.com/topperc created https://github.com/llvm/llvm-project/pull/129281
Use math instead of a switch.
>From 067744ccbe66017e9e3ef23148769c21a9b32fc5 Mon Sep 17 00:00:00 2001
From: Craig Topper <craig.topper at sifive.com>
Date: Fri, 28 Feb 2025 10:13:51 -0800
Subject: [PATCH] [RISCV] Simplify getStackAdjBase. NFC
Use math instead of a switch.
---
.../Target/RISCV/MCTargetDesc/RISCVBaseInfo.h | 50 +++----------------
1 file changed, 7 insertions(+), 43 deletions(-)
diff --git a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
index 82b562bec9bf6..47c475b1a86d4 100644
--- a/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
+++ b/llvm/lib/Target/RISCV/MCTargetDesc/RISCVBaseInfo.h
@@ -592,49 +592,13 @@ inline unsigned encodeRlist(MCRegister EndReg, bool IsRV32E = false) {
inline static unsigned getStackAdjBase(unsigned RlistVal, bool IsRV64) {
assert(RlistVal != RLISTENCODE::INVALID_RLIST &&
"{ra, s0-s10} is not supported, s11 must be included.");
- if (!IsRV64) {
- switch (RlistVal) {
- case RLISTENCODE::RA:
- case RLISTENCODE::RA_S0:
- case RLISTENCODE::RA_S0_S1:
- case RLISTENCODE::RA_S0_S2:
- return 16;
- case RLISTENCODE::RA_S0_S3:
- case RLISTENCODE::RA_S0_S4:
- case RLISTENCODE::RA_S0_S5:
- case RLISTENCODE::RA_S0_S6:
- return 32;
- case RLISTENCODE::RA_S0_S7:
- case RLISTENCODE::RA_S0_S8:
- case RLISTENCODE::RA_S0_S9:
- return 48;
- case RLISTENCODE::RA_S0_S11:
- return 64;
- }
- } else {
- switch (RlistVal) {
- case RLISTENCODE::RA:
- case RLISTENCODE::RA_S0:
- return 16;
- case RLISTENCODE::RA_S0_S1:
- case RLISTENCODE::RA_S0_S2:
- return 32;
- case RLISTENCODE::RA_S0_S3:
- case RLISTENCODE::RA_S0_S4:
- return 48;
- case RLISTENCODE::RA_S0_S5:
- case RLISTENCODE::RA_S0_S6:
- return 64;
- case RLISTENCODE::RA_S0_S7:
- case RLISTENCODE::RA_S0_S8:
- return 80;
- case RLISTENCODE::RA_S0_S9:
- return 96;
- case RLISTENCODE::RA_S0_S11:
- return 112;
- }
- }
- llvm_unreachable("Unexpected RlistVal");
+ unsigned NumRegs = (RlistVal - RLISTENCODE::RA) + 1;
+ // s10 and s11 are saved together.
+ if (RlistVal == RLISTENCODE::RA_S0_S11)
+ ++NumRegs;
+
+ unsigned RegSize = IsRV64 ? 8 : 4;
+ return alignTo(NumRegs * RegSize, 16);
}
void printRlist(unsigned SlistEncode, raw_ostream &OS);
More information about the llvm-commits
mailing list