[llvm] [RISCV] Use vsetvli instead of vlenb in Prologue/Epilogue (PR #113756)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 09:54:55 PDT 2025
================
@@ -1534,6 +1534,12 @@ def TuneVentanaVeyron : SubtargetFeature<"ventana-veyron", "RISCVProcFamily", "V
def TuneVXRMPipelineFlush : SubtargetFeature<"vxrm-pipeline-flush", "HasVXRMPipelineFlush",
"true", "VXRM writes causes pipeline flush">;
+def TunePreferVsetvliOverReadVLENB
+ : SubtargetFeature<"prefer-vsetvli-over-read-vlenb",
+ "PreferVsetvliOverReadVLENB",
+ "true",
+ "Prefer vsetvli over read vlenb CSR when calculate VLEN">;
----------------
topperc wrote:
`when calculate` -> `to calculate`
https://github.com/llvm/llvm-project/pull/113756
More information about the llvm-commits
mailing list