[llvm] [RISCV] Add assertions to VSETVLIInfo accessors. NFC (PR #169462)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 24 23:00:37 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-risc-v
Author: Craig Topper (topperc)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/169462.diff
1 Files Affected:
- (modified) llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp (+30-6)
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp b/llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp
index 2ddc9b0adb9e1..2ab8c113294f4 100644
--- a/llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp
+++ b/llvm/lib/Target/RISCV/RISCVInsertVSETVLI.cpp
@@ -607,12 +607,36 @@ class VSETVLIInfo {
}
}
- unsigned getSEW() const { return SEW; }
- RISCVVType::VLMUL getVLMUL() const { return VLMul; }
- bool getTailAgnostic() const { return TailAgnostic; }
- bool getMaskAgnostic() const { return MaskAgnostic; }
- bool getAltFmt() const { return AltFmt; }
- unsigned getTWiden() const { return TWiden; }
+ unsigned getSEW() const {
+ assert(isValid() && !isUnknown() &&
+ "Can't use VTYPE for uninitialized or unknown");
+ return SEW;
+ }
+ RISCVVType::VLMUL getVLMUL() const {
+ assert(isValid() && !isUnknown() &&
+ "Can't use VTYPE for uninitialized or unknown");
+ return VLMul;
+ }
+ bool getTailAgnostic() const {
+ assert(isValid() && !isUnknown() &&
+ "Can't use VTYPE for uninitialized or unknown");
+ return TailAgnostic;
+ }
+ bool getMaskAgnostic() const {
+ assert(isValid() && !isUnknown() &&
+ "Can't use VTYPE for uninitialized or unknown");
+ return MaskAgnostic;
+ }
+ bool getAltFmt() const {
+ assert(isValid() && !isUnknown() &&
+ "Can't use VTYPE for uninitialized or unknown");
+ return AltFmt;
+ }
+ unsigned getTWiden() const {
+ assert(isValid() && !isUnknown() &&
+ "Can't use VTYPE for uninitialized or unknown");
+ return TWiden;
+ }
bool hasNonZeroAVL(const LiveIntervals *LIS) const {
if (hasAVLImm())
``````````
</details>
https://github.com/llvm/llvm-project/pull/169462
More information about the llvm-commits
mailing list