aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Target/RISCV/RISCVFeatures.td
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@sifive.com>2023-12-28 12:21:22 -0800
committerCraig Topper <craig.topper@sifive.com>2023-12-28 13:54:15 -0800
commit6dc5ba4cca72a5c25597722b8a8c7dcff5fb67be (patch)
treedcd67a3e403c1e39295a145af4f1098984cf3d60 /llvm/lib/Target/RISCV/RISCVFeatures.td
parent76facde32c2151c3ba6774ff7416281c680bf8bf (diff)
downloadllvm-6dc5ba4cca72a5c25597722b8a8c7dcff5fb67be.zip
llvm-6dc5ba4cca72a5c25597722b8a8c7dcff5fb67be.tar.gz
llvm-6dc5ba4cca72a5c25597722b8a8c7dcff5fb67be.tar.bz2
[RISCV] Remove XSfcie extension.
This reverts 0d3eee33f262402562a1ff28106dbb2f59031bdb and 4c37d30e22ae655394c8b3a7e292c06d393b9b44. XSfcie is not an official SiFive extension name. It stands for SiFive Custom Instruction Extension, which is mentioned in the S76 manual, but then elsewhere in the manual says it is not supported for S76. LLVM had various instructions and CSRs listed as part of this extension, but as far as SiFive is concerned, none of them are part of it. There are no documented extension names for these instructions and CSRs either externally or internally. If these are important to LLVM users, I can facilitate creating extension names for them and have them documented. For now I'm removing everything. Unfortunately, these instructions and CSRs are in LLVM 17 so this is an incompatible change.
Diffstat (limited to 'llvm/lib/Target/RISCV/RISCVFeatures.td')
-rw-r--r--llvm/lib/Target/RISCV/RISCVFeatures.td7
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/Target/RISCV/RISCVFeatures.td b/llvm/lib/Target/RISCV/RISCVFeatures.td
index adf3c84..bdab052 100644
--- a/llvm/lib/Target/RISCV/RISCVFeatures.td
+++ b/llvm/lib/Target/RISCV/RISCVFeatures.td
@@ -826,13 +826,6 @@ def HasVendorXSfvcp : Predicate<"Subtarget->hasVendorXSfvcp()">,
AssemblerPredicate<(all_of FeatureVendorXSfvcp),
"'XSfvcp' (SiFive Custom Vector Coprocessor Interface Instructions)">;
-def FeatureVendorXSfcie
- : SubtargetFeature<"xsfcie", "HasVendorXSfcie", "true",
- "'XSfcie' (SiFive Custom Instruction Extension SCIE.)">;
-def HasVendorXSfcie : Predicate<"Subtarget->hasVendorXSfcie()">,
- AssemblerPredicate<(all_of FeatureVendorXSfcie),
- "'XSfcie' (SiFive Custom Instruction Extension SCIE.)">;
-
def FeatureVendorXSfvqmaccdod
: SubtargetFeature<"xsfvqmaccdod", "HasVendorXSfvqmaccdod", "true",
"'XSfvqmaccdod' (SiFive Int8 Matrix Multiplication Instructions (2-by-8 and 8-by-2))",