[llvm] [RISCV] Shrink the size of the VLMul field in RegisterClass target flags. Use uint8_t for TSFlags. NFC (PR #131227)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 14:58:06 PDT 2025
https://github.com/topperc created https://github.com/llvm/llvm-project/pull/131227
There are only 4 possible LMULs corresponding to log2 of 1, 2, 4, and 8. Those fit in 2 bits.
Use uint8_t for the flag bits to match the size in TargetRegisterClass.
>From 2728e8fbc130257eebd9eaf8a7ff5c83bf92b77e Mon Sep 17 00:00:00 2001
From: Craig Topper <craig.topper at sifive.com>
Date: Thu, 13 Mar 2025 14:55:24 -0700
Subject: [PATCH] [RISCV] Shrink the size of the VLMul field in RegisterClass
target flags. Use uint8_t for TSFlags. NFC
There are only 4 possible LMULs corresponding to log2 of 1, 2, 4, and 8.
Those fit in 2 bits.
Use uint8_t for the flag bits to match the size in TargetRegisterClass.
---
llvm/lib/Target/RISCV/RISCVRegisterInfo.h | 12 ++++++------
llvm/lib/Target/RISCV/RISCVRegisterInfo.td | 4 ++--
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/llvm/lib/Target/RISCV/RISCVRegisterInfo.h b/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
index e70b9a912b520..5260198878451 100644
--- a/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
+++ b/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
@@ -22,34 +22,34 @@
namespace llvm {
namespace RISCVRI {
-enum {
+enum : uint8_t {
// The IsVRegClass value of this RegisterClass.
IsVRegClassShift = 0,
IsVRegClassShiftMask = 0b1 << IsVRegClassShift,
// The VLMul value of this RegisterClass. This value is valid iff IsVRegClass
// is true.
VLMulShift = IsVRegClassShift + 1,
- VLMulShiftMask = 0b111 << VLMulShift,
+ VLMulShiftMask = 0b11 << VLMulShift,
// The NF value of this RegisterClass. This value is valid iff IsVRegClass is
// true.
- NFShift = VLMulShift + 3,
+ NFShift = VLMulShift + 2,
NFShiftMask = 0b111 << NFShift,
};
/// \returns the IsVRegClass for the register class.
-static inline bool isVRegClass(uint64_t TSFlags) {
+static inline bool isVRegClass(uint8_t TSFlags) {
return (TSFlags & IsVRegClassShiftMask) >> IsVRegClassShift;
}
/// \returns the LMUL for the register class.
-static inline RISCVVType::VLMUL getLMul(uint64_t TSFlags) {
+static inline RISCVVType::VLMUL getLMul(uint8_t TSFlags) {
return static_cast<RISCVVType::VLMUL>((TSFlags & VLMulShiftMask) >>
VLMulShift);
}
/// \returns the NF for the register class.
-static inline unsigned getNF(uint64_t TSFlags) {
+static inline unsigned getNF(uint8_t TSFlags) {
return static_cast<unsigned>((TSFlags & NFShiftMask) >> NFShift) + 1;
}
} // namespace RISCVRI
diff --git a/llvm/lib/Target/RISCV/RISCVRegisterInfo.td b/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
index bbb1e82fbadaa..a974be4860703 100644
--- a/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
+++ b/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
@@ -229,8 +229,8 @@ class RISCVRegisterClass<list<ValueType> regTypes, int align, dag regList>
let CopyCost = !if(IsVRegClass, !mul(VLMul, NF), 1);
let TSFlags{0} = IsVRegClass;
- let TSFlags{3-1} = !logtwo(VLMul);
- let TSFlags{6-4} = !sub(NF, 1);
+ let TSFlags{2-1} = !logtwo(VLMul);
+ let TSFlags{5-3} = !sub(NF, 1);
}
class GPRRegisterClass<dag regList>
More information about the llvm-commits
mailing list