[clang] [llvm] [RISCV] SiFive CLIC Support (PR #132481)

Sam Elliott via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 10:45:23 PDT 2025


================
@@ -486,6 +486,24 @@ def : SysReg<"mctrctl", 0x34e>;
 // Vendor CSRs
 //===-----------------------------------------------
 
+// XSfmclic
+let FeaturesRequired = [{ {RISCV::FeatureVendorXSfmclic} }] in {
+def : SysReg<"mtvt", 0x307>;
+def : SysReg<"mnxti", 0x345>;
+def : SysReg<"mintstatus", 0x346>;
+def : SysReg<"mscratchcsw", 0x348>;
+def : SysReg<"mscratchcswl", 0x349>;
+}
+
+// XSfsclic
+let FeaturesRequired = [{ {RISCV::FeatureVendorXSfsclic} }] in {
+def : SysReg<"stvt", 0x107>;
+def : SysReg<"snxti", 0x145>;
+def : SysReg<"sintstatus", 0x146>;
+def : SysReg<"sscratchcsw", 0x148>;
+def : SysReg<"sscratchcswl", 0x149>;
+}
----------------
lenary wrote:

We discussed this on the RISC-V LLVM Sync-up today. I will prefix these, and not add deprecated aliases.

https://github.com/llvm/llvm-project/pull/132481


More information about the llvm-commits mailing list