[clang] [llvm] [RISCV] Add Zilsd and Zclsd Extensions (PR #131094)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 08:25:58 PDT 2025
================
@@ -401,6 +408,14 @@ def FeatureStdExtZcf
"Compressed Single-Precision Floating-Point Instructions",
[FeatureStdExtF, FeatureStdExtZca]>;
+def FeatureStdExtZclsd
+ : RISCVExtension<1, 0,
+ "Compressed Load/Store pair instructions",
+ [FeatureStdExtZilsd,FeatureStdExtZca]>;
+def HasStdExtZclsd : Predicate<"Subtarget->hasStdExtZclsd() && !Subtarget->hasStdExtZcf()">,
----------------
topperc wrote:
The conflict with Zcf needs to be checked in `RISCVISAInfo::checkDependency` in llvm/lib/TargetParser/RISCVISAInfo.cpp
https://github.com/llvm/llvm-project/pull/131094
More information about the llvm-commits
mailing list