
This Change adds support for two SiFive vendor attributes in clang: - "SiFive-CLIC-preemptible" - "SiFive-CLIC-stack-swap" These can be given together, and can be combined with "machine", but cannot be combined with any other interrupt attribute values. These are handled primarily in RISCVFrameLowering: - "SiFive-CLIC-stack-swap" entails swapping `sp` with `sf.mscratchcsw` at function entry and exit, which holds the trap stack pointer. - "SiFive-CLIC-preemptible" entails saving `mcause` and `mepc` before re-enabling interrupts using `mstatus`. To save these, `s0` and `s1` are first spilled to the stack, and then the values are read into these registers. If these registers are used in the function, their values will be spilled a second time onto the stack with the generic callee-saved-register handling. At the end of the function interrupts are disabled again before `mepc` and `mcause` are restored. This Change also adds support for the following two experimental extensions, which only contain CSRs: - XSfsclic - for SiFive's CLIC Supervisor-Mode CSRs - XSfmclic - for SiFive's CLIC Machine-Mode CSRs The latter is needed for interrupt support. The CFI information for this implementation is not correct, but I'd prefer to correct this in a follow-up. While it's unlikely anyone wants to unwind through a handler, the CFI information is also used by debuggers so it would be good to get it right. Co-authored-by: Ana Pazos <apazos@quicinc.com>
1663 lines
72 KiB
TableGen
1663 lines
72 KiB
TableGen
//===-- RISCVFeatures.td - RISC-V Features and Extensions --*- tablegen -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// RISC-V subtarget features and instruction predicates.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Subclass of SubtargetFeature to be used when the feature is also a RISC-V
|
|
// extension. Extensions have a version and may be experimental.
|
|
// NOTE: The extension name must start with
|
|
// - "FeatureStdExt" for standard extensions
|
|
// - "FeatureVendor" for vendor-specific extensions
|
|
//
|
|
// major - Major version of extension.
|
|
// minor - Minor version of extension.
|
|
// desc - Description of extension.
|
|
// implies - Extensions or features implied by this extension.
|
|
// fieldname - name of field to create in RISCVSubtarget. By default replaces
|
|
// uses the record name by replacing Feature with Has.
|
|
// value - Value to assign to the field in RISCVSubtarget when this
|
|
// extension is enabled. Usually "true", but can be changed.
|
|
// IsExperimental
|
|
// - Indicates whether the extension is experimental
|
|
class RISCVExtension<int major, int minor, string desc,
|
|
list<SubtargetFeature> implies = [],
|
|
string fieldname = !subst("Feature", "Has", NAME),
|
|
string value = "true", bit IsExperimental = false>
|
|
: SubtargetFeature<"", fieldname, value, "", implies> {
|
|
defvar extName = !subst("FeatureVendor", "", !subst("FeatureStdExt", "", NAME));
|
|
|
|
// Name - Name of the extension in lower case.
|
|
let Name = !if(IsExperimental, "experimental-", "") # !tolower(extName);
|
|
|
|
// Desc - Description of extension with its name.
|
|
let Desc = "'" # extName # "' (" # desc # ")";
|
|
|
|
// MajorVersion - The major version for this extension.
|
|
int MajorVersion = major;
|
|
|
|
// MinorVersion - The minor version for this extension.
|
|
int MinorVersion = minor;
|
|
|
|
// Experimental - Does extension require -menable-experimental-extensions.
|
|
bit Experimental = false;
|
|
}
|
|
|
|
// The groupID/bitmask of RISCVExtension is used to retrieve a specific bit value
|
|
// from __riscv_feature_bits based on the groupID and bitmask.
|
|
// groupID - groupID of extension
|
|
// bitPos - bit position of extension bitmask
|
|
class RISCVExtensionBitmask<bits<3> groupID, int bitPos> {
|
|
int GroupID = groupID;
|
|
int BitPos = bitPos;
|
|
}
|
|
|
|
// Version of RISCVExtension to be used for Experimental extensions. This
|
|
// sets the Experimental flag and prepends experimental- to the -mattr name.
|
|
class RISCVExperimentalExtension<int major, int minor, string desc,
|
|
list<RISCVExtension> implies = [],
|
|
string fieldname = !subst("Feature", "Has", NAME),
|
|
string value = "true">
|
|
: RISCVExtension<major, minor, desc, implies, fieldname, value, true> {
|
|
let Experimental = true;
|
|
}
|
|
|
|
// Integer Extensions
|
|
|
|
def FeatureStdExtI
|
|
: RISCVExtension<2, 1, "Base Integer Instruction Set">,
|
|
RISCVExtensionBitmask<0, 8>;
|
|
|
|
def FeatureStdExtE
|
|
: RISCVExtension<2, 0, "Embedded Instruction Set with 16 GPRs">;
|
|
|
|
def FeatureStdExtZic64b
|
|
: RISCVExtension<1, 0, "Cache Block Size Is 64 Bytes">;
|
|
|
|
def FeatureStdExtZicbom
|
|
: RISCVExtension<1, 0, "Cache-Block Management Instructions">;
|
|
def HasStdExtZicbom : Predicate<"Subtarget->hasStdExtZicbom()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicbom),
|
|
"'Zicbom' (Cache-Block Management Instructions)">;
|
|
|
|
def FeatureStdExtZicbop
|
|
: RISCVExtension<1, 0, "Cache-Block Prefetch Instructions">;
|
|
def HasStdExtZicbop : Predicate<"Subtarget->hasStdExtZicbop()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicbop),
|
|
"'Zicbop' (Cache-Block Prefetch Instructions)">;
|
|
|
|
def FeatureStdExtZicboz
|
|
: RISCVExtension<1, 0, "Cache-Block Zero Instructions">,
|
|
RISCVExtensionBitmask<0, 37>;
|
|
def HasStdExtZicboz : Predicate<"Subtarget->hasStdExtZicboz()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicboz),
|
|
"'Zicboz' (Cache-Block Zero Instructions)">;
|
|
|
|
def FeatureStdExtZiccamoa
|
|
: RISCVExtension<1, 0, "Main Memory Supports All Atomics in A">;
|
|
|
|
def FeatureStdExtZiccamoc
|
|
: RISCVExtension<1, 0, "Main Memory Supports Atomics in Zacas">;
|
|
|
|
def FeatureStdExtZiccif
|
|
: RISCVExtension<1, 0,
|
|
"Main Memory Supports Instruction Fetch with Atomicity Requirement">;
|
|
|
|
def FeatureStdExtZicclsm
|
|
: RISCVExtension<1, 0, "Main Memory Supports Misaligned Loads/Stores">;
|
|
|
|
def FeatureStdExtZiccrse
|
|
: RISCVExtension<1, 0,
|
|
"Main Memory Supports Forward Progress on LR/SC Sequences">;
|
|
|
|
def FeatureStdExtZicsr
|
|
: RISCVExtension<2, 0, "CSRs">;
|
|
def HasStdExtZicsr : Predicate<"Subtarget->hasStdExtZicsr()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicsr),
|
|
"'Zicsr' (CSRs)">;
|
|
|
|
def FeatureStdExtZicntr
|
|
: RISCVExtension<2, 0, "Base Counters and Timers",
|
|
[FeatureStdExtZicsr]>;
|
|
|
|
def FeatureStdExtZicond
|
|
: RISCVExtension<1, 0, "Integer Conditional Operations">,
|
|
RISCVExtensionBitmask<0, 38>;
|
|
def HasStdExtZicond : Predicate<"Subtarget->hasStdExtZicond()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicond),
|
|
"(Integer Conditional Operations)">;
|
|
|
|
def FeatureStdExtZifencei
|
|
: RISCVExtension<2, 0, "fence.i">;
|
|
def HasStdExtZifencei : Predicate<"Subtarget->hasStdExtZifencei()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZifencei),
|
|
"'Zifencei' (fence.i)">;
|
|
|
|
def FeatureStdExtZihintpause
|
|
: RISCVExtension<2, 0, "Pause Hint">,
|
|
RISCVExtensionBitmask<0, 40>;
|
|
def HasStdExtZihintpause : Predicate<"Subtarget->hasStdExtZihintpause()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZihintpause),
|
|
"'Zihintpause' (Pause Hint)">;
|
|
|
|
def FeatureStdExtZihintntl
|
|
: RISCVExtension<1, 0, "Non-Temporal Locality Hints">,
|
|
RISCVExtensionBitmask<0, 39>;
|
|
def HasStdExtZihintntl : Predicate<"Subtarget->hasStdExtZihintntl()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZihintntl),
|
|
"'Zihintntl' (Non-Temporal Locality Hints)">;
|
|
|
|
def FeatureStdExtZihpm
|
|
: RISCVExtension<2, 0, "Hardware Performance Counters",
|
|
[FeatureStdExtZicsr]>;
|
|
|
|
def FeatureStdExtZimop : RISCVExtension<1, 0, "May-Be-Operations">,
|
|
RISCVExtensionBitmask<1, 1>;
|
|
def HasStdExtZimop : Predicate<"Subtarget->hasStdExtZimop()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZimop),
|
|
"'Zimop' (May-Be-Operations)">;
|
|
|
|
def FeatureStdExtZicfilp
|
|
: RISCVExperimentalExtension<1, 0, "Landing pad",
|
|
[FeatureStdExtZicsr]>;
|
|
def HasStdExtZicfilp : Predicate<"Subtarget->hasStdExtZicfilp()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicfilp),
|
|
"'Zicfilp' (Landing pad)">;
|
|
def NoStdExtZicfilp : Predicate<"!Subtarget->hasStdExtZicfilp()">,
|
|
AssemblerPredicate<(all_of (not FeatureStdExtZicfilp))>;
|
|
|
|
def FeatureStdExtZicfiss
|
|
: RISCVExperimentalExtension<1, 0, "Shadow stack",
|
|
[FeatureStdExtZicsr, FeatureStdExtZimop]>;
|
|
def HasStdExtZicfiss : Predicate<"Subtarget->hasStdExtZicfiss()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZicfiss),
|
|
"'Zicfiss' (Shadow stack)">;
|
|
def NoHasStdExtZicfiss : Predicate<"!Subtarget->hasStdExtZicfiss()">;
|
|
|
|
def FeatureStdExtZilsd
|
|
: RISCVExtension<1, 0,
|
|
"Load/Store Pair Instructions">,
|
|
RISCVExtensionBitmask<1, 8>;
|
|
def HasStdExtZilsd : Predicate<"Subtarget->hasStdExtZilsd()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZilsd),
|
|
"'Zilsd' (Load/Store pair instructions)">;
|
|
|
|
// Multiply Extensions
|
|
|
|
def FeatureStdExtZmmul
|
|
: RISCVExtension<1, 0, "Integer Multiplication">;
|
|
def HasStdExtZmmul : Predicate<"Subtarget->hasStdExtZmmul()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZmmul),
|
|
"'Zmmul' (Integer Multiplication)">;
|
|
|
|
def FeatureStdExtM
|
|
: RISCVExtension<2, 0, "Integer Multiplication and Division",
|
|
[FeatureStdExtZmmul]>,
|
|
RISCVExtensionBitmask<0, 12>;
|
|
def HasStdExtM : Predicate<"Subtarget->hasStdExtM()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtM),
|
|
"'M' (Integer Multiplication and Division)">;
|
|
|
|
// Atomic Extensions
|
|
|
|
def FeatureStdExtZaamo
|
|
: RISCVExtension<1, 0, "Atomic Memory Operations">;
|
|
def HasStdExtZaamo
|
|
: Predicate<"Subtarget->hasStdExtZaamo()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZaamo),
|
|
"'Zaamo' (Atomic Memory Operations)">;
|
|
|
|
def FeatureStdExtZalrsc
|
|
: RISCVExtension<1, 0, "Load-Reserved/Store-Conditional">;
|
|
def HasStdExtZalrsc
|
|
: Predicate<"Subtarget->hasStdExtZalrsc()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZalrsc),
|
|
"'Zalrsc' (Load-Reserved/Store-Conditional)">;
|
|
|
|
def FeatureStdExtA
|
|
: RISCVExtension<2, 1, "Atomic Instructions",
|
|
[FeatureStdExtZaamo, FeatureStdExtZalrsc]>,
|
|
RISCVExtensionBitmask<0, 0>;
|
|
def HasStdExtA : Predicate<"Subtarget->hasStdExtA()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtA),
|
|
"'A' (Atomic Instructions)">;
|
|
|
|
def FeatureStdExtZtso
|
|
: RISCVExtension<1, 0, "Memory Model - Total Store Order">,
|
|
RISCVExtensionBitmask<0, 47>;
|
|
def HasStdExtZtso : Predicate<"Subtarget->hasStdExtZtso()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZtso),
|
|
"'Ztso' (Memory Model - Total Store Order)">;
|
|
def NotHasStdExtZtso : Predicate<"!Subtarget->hasStdExtZtso()">;
|
|
|
|
def FeatureStdExtZa64rs
|
|
: RISCVExtension<1, 0, "Reservation Set Size of at Most 64 Bytes">;
|
|
|
|
def FeatureStdExtZa128rs
|
|
: RISCVExtension<1, 0, "Reservation Set Size of at Most 128 Bytes">;
|
|
|
|
def FeatureStdExtZabha
|
|
: RISCVExtension<1, 0, "Byte and Halfword Atomic Memory Operations",
|
|
[FeatureStdExtZaamo]>;
|
|
def HasStdExtZabha : Predicate<"Subtarget->hasStdExtZabha()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZabha),
|
|
"'Zabha' (Byte and Halfword Atomic Memory Operations)">;
|
|
|
|
def FeatureStdExtZacas
|
|
: RISCVExtension<1, 0, "Atomic Compare-And-Swap Instructions",
|
|
[FeatureStdExtZaamo]>,
|
|
RISCVExtensionBitmask<0, 26>;
|
|
def HasStdExtZacas : Predicate<"Subtarget->hasStdExtZacas()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZacas),
|
|
"'Zacas' (Atomic Compare-And-Swap Instructions)">;
|
|
def NoStdExtZacas : Predicate<"!Subtarget->hasStdExtZacas()">;
|
|
|
|
def FeatureStdExtZalasr
|
|
: RISCVExperimentalExtension<0, 1, "Load-Acquire and Store-Release Instructions">;
|
|
def HasStdExtZalasr : Predicate<"Subtarget->hasStdExtZalasr()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZalasr),
|
|
"'Zalasr' (Load-Acquire and Store-Release Instructions)">;
|
|
|
|
def FeatureStdExtZama16b
|
|
: RISCVExtension<1, 0, "Atomic 16-byte misaligned loads, stores and AMOs">;
|
|
|
|
def FeatureStdExtZawrs : RISCVExtension<1, 0, "Wait on Reservation Set">,
|
|
RISCVExtensionBitmask<1, 7>;
|
|
def HasStdExtZawrs : Predicate<"Subtarget->hasStdExtZawrs()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZawrs),
|
|
"'Zawrs' (Wait on Reservation Set)">;
|
|
|
|
// Floating Point Extensions
|
|
|
|
def FeatureStdExtF
|
|
: RISCVExtension<2, 2, "Single-Precision Floating-Point",
|
|
[FeatureStdExtZicsr]>,
|
|
RISCVExtensionBitmask<0, 5>;
|
|
def HasStdExtF : Predicate<"Subtarget->hasStdExtF()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtF),
|
|
"'F' (Single-Precision Floating-Point)">;
|
|
|
|
def FeatureStdExtD
|
|
: RISCVExtension<2, 2, "Double-Precision Floating-Point",
|
|
[FeatureStdExtF]>,
|
|
RISCVExtensionBitmask<0, 3>;
|
|
def HasStdExtD : Predicate<"Subtarget->hasStdExtD()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtD),
|
|
"'D' (Double-Precision Floating-Point)">;
|
|
|
|
def FeatureStdExtZfhmin
|
|
: RISCVExtension<1, 0, "Half-Precision Floating-Point Minimal",
|
|
[FeatureStdExtF]>,
|
|
RISCVExtensionBitmask<0, 36>;
|
|
def HasStdExtZfhmin : Predicate<"Subtarget->hasStdExtZfhmin()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZfhmin),
|
|
"'Zfh' (Half-Precision Floating-Point) or "
|
|
"'Zfhmin' (Half-Precision Floating-Point Minimal)">;
|
|
|
|
def FeatureStdExtZfh
|
|
: RISCVExtension<1, 0, "Half-Precision Floating-Point",
|
|
[FeatureStdExtZfhmin]>,
|
|
RISCVExtensionBitmask<0, 35>;
|
|
def HasStdExtZfh : Predicate<"Subtarget->hasStdExtZfh()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZfh),
|
|
"'Zfh' (Half-Precision Floating-Point)">;
|
|
def NoStdExtZfh : Predicate<"!Subtarget->hasStdExtZfh()">;
|
|
|
|
def FeatureStdExtZfbfmin
|
|
: RISCVExtension<1, 0, "Scalar BF16 Converts", [FeatureStdExtF]>;
|
|
def HasStdExtZfbfmin : Predicate<"Subtarget->hasStdExtZfbfmin()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZfbfmin),
|
|
"'Zfbfmin' (Scalar BF16 Converts)">;
|
|
|
|
def HasHalfFPLoadStoreMove
|
|
: Predicate<"Subtarget->hasHalfFPLoadStoreMove()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZfh, FeatureStdExtZfhmin,
|
|
FeatureStdExtZfbfmin),
|
|
"'Zfh' (Half-Precision Floating-Point) or "
|
|
"'Zfhmin' (Half-Precision Floating-Point Minimal) or "
|
|
"'Zfbfmin' (Scalar BF16 Converts)">;
|
|
|
|
def FeatureStdExtZfa
|
|
: RISCVExtension<1, 0, "Additional Floating-Point", [FeatureStdExtF]>,
|
|
RISCVExtensionBitmask<0, 34>;
|
|
def HasStdExtZfa : Predicate<"Subtarget->hasStdExtZfa()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZfa),
|
|
"'Zfa' (Additional Floating-Point)">;
|
|
def NoStdExtZfa : Predicate<"!Subtarget->hasStdExtZfa()">;
|
|
|
|
def FeatureStdExtZfinx
|
|
: RISCVExtension<1, 0, "Float in Integer", [FeatureStdExtZicsr]>;
|
|
def HasStdExtZfinx : Predicate<"Subtarget->hasStdExtZfinx()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZfinx),
|
|
"'Zfinx' (Float in Integer)">;
|
|
def HasStdExtFOrZfinx : Predicate<"Subtarget->hasStdExtFOrZfinx()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtF,
|
|
FeatureStdExtZfinx),
|
|
"'F' (Single-Precision Floating-Point) or "
|
|
"'Zfinx' (Float in Integer)">;
|
|
|
|
def FeatureStdExtZdinx
|
|
: RISCVExtension<1, 0, "Double in Integer", [FeatureStdExtZfinx]>;
|
|
def HasStdExtZdinx : Predicate<"Subtarget->hasStdExtZdinx()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZdinx),
|
|
"'Zdinx' (Double in Integer)">;
|
|
|
|
def FeatureStdExtZhinxmin
|
|
: RISCVExtension<1, 0, "Half Float in Integer Minimal",
|
|
[FeatureStdExtZfinx]>;
|
|
def HasStdExtZhinxmin : Predicate<"Subtarget->hasStdExtZhinxmin()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZhinxmin),
|
|
"'Zhinx' (Half Float in Integer) or "
|
|
"'Zhinxmin' (Half Float in Integer Minimal)">;
|
|
|
|
def FeatureStdExtZhinx
|
|
: RISCVExtension<1, 0, "Half Float in Integer", [FeatureStdExtZhinxmin]>;
|
|
def HasStdExtZhinx : Predicate<"Subtarget->hasStdExtZhinx()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZhinx),
|
|
"'Zhinx' (Half Float in Integer)">;
|
|
def NoStdExtZhinx : Predicate<"!Subtarget->hasStdExtZhinx()">;
|
|
|
|
// Compressed Extensions
|
|
def FeatureNoRVCHints
|
|
: SubtargetFeature<"no-rvc-hints", "EnableRVCHintInstrs", "false",
|
|
"Disable RVC Hint Instructions.">;
|
|
def HasRVCHints : Predicate<"Subtarget->enableRVCHintInstrs()">,
|
|
AssemblerPredicate<(all_of(not FeatureNoRVCHints)),
|
|
"RVC Hint Instructions">;
|
|
|
|
def FeatureStdExtZca
|
|
: RISCVExtension<1, 0,
|
|
"part of the C extension, excluding compressed "
|
|
"floating point loads/stores">,
|
|
RISCVExtensionBitmask<1, 2>;
|
|
|
|
def FeatureStdExtC
|
|
: RISCVExtension<2, 0, "Compressed Instructions", [FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<0, 2>;
|
|
def HasStdExtC : Predicate<"Subtarget->hasStdExtC()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtC),
|
|
"'C' (Compressed Instructions)">;
|
|
|
|
|
|
def HasStdExtCOrZca
|
|
: Predicate<"Subtarget->hasStdExtCOrZca()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtC, FeatureStdExtZca),
|
|
"'C' (Compressed Instructions) or "
|
|
"'Zca' (part of the C extension, excluding "
|
|
"compressed floating point loads/stores)">;
|
|
|
|
def FeatureStdExtZcb
|
|
: RISCVExtension<1, 0, "Compressed basic bit manipulation instructions",
|
|
[FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<1, 3>;
|
|
def HasStdExtZcb : Predicate<"Subtarget->hasStdExtZcb()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZcb),
|
|
"'Zcb' (Compressed basic bit manipulation instructions)">;
|
|
|
|
def FeatureStdExtZcd
|
|
: RISCVExtension<1, 0,
|
|
"Compressed Double-Precision Floating-Point Instructions",
|
|
[FeatureStdExtD, FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<1, 4>;
|
|
|
|
def HasStdExtCOrZcd
|
|
: Predicate<"Subtarget->hasStdExtCOrZcd()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtC, FeatureStdExtZcd),
|
|
"'C' (Compressed Instructions) or "
|
|
"'Zcd' (Compressed Double-Precision Floating-Point Instructions)">;
|
|
|
|
def FeatureStdExtZcf
|
|
: RISCVExtension<1, 0,
|
|
"Compressed Single-Precision Floating-Point Instructions",
|
|
[FeatureStdExtF, FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<1, 5>;
|
|
|
|
def FeatureStdExtZclsd
|
|
: RISCVExtension<1, 0,
|
|
"Compressed Load/Store Pair Instructions",
|
|
[FeatureStdExtZilsd, FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<1, 9>;
|
|
def HasStdExtZclsd : Predicate<"Subtarget->hasStdExtZclsd()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZclsd),
|
|
"'Zclsd' (Compressed Load/Store pair instructions)">;
|
|
|
|
def FeatureStdExtZcmp
|
|
: RISCVExtension<1, 0,
|
|
"sequenced instructions for code-size reduction",
|
|
[FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<1, 10>;
|
|
def HasStdExtZcmp : Predicate<"Subtarget->hasStdExtZcmp() && !Subtarget->hasStdExtC()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZcmp),
|
|
"'Zcmp' (sequenced instructions for code-size reduction)">;
|
|
|
|
def FeatureStdExtZcmt
|
|
: RISCVExtension<1, 0,
|
|
"table jump instructions for code-size reduction",
|
|
[FeatureStdExtZca, FeatureStdExtZicsr]>;
|
|
def HasStdExtZcmt : Predicate<"Subtarget->hasStdExtZcmt()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZcmt),
|
|
"'Zcmt' (table jump instructions for code-size reduction)">;
|
|
|
|
def FeatureStdExtZce
|
|
: RISCVExtension<1, 0,
|
|
"Compressed extensions for microcontrollers",
|
|
[FeatureStdExtZcb, FeatureStdExtZcmp, FeatureStdExtZcmt]>;
|
|
|
|
def HasStdExtCOrZcfOrZce
|
|
: Predicate<"Subtarget->hasStdExtC() || Subtarget->hasStdExtZcf() "
|
|
"Subtarget->hasStdExtZce()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtC, FeatureStdExtZcf,
|
|
FeatureStdExtZce),
|
|
"'C' (Compressed Instructions) or "
|
|
"'Zcf' (Compressed Single-Precision Floating-Point Instructions)">;
|
|
|
|
def FeatureStdExtZcmop
|
|
: RISCVExtension<1, 0, "Compressed May-Be-Operations",
|
|
[FeatureStdExtZca]>,
|
|
RISCVExtensionBitmask<1, 6>;
|
|
def HasStdExtZcmop : Predicate<"Subtarget->hasStdExtZcmop()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZcmop),
|
|
"'Zcmop' (Compressed May-Be-Operations)">;
|
|
|
|
// Bitmanip Extensions
|
|
|
|
def FeatureStdExtZba
|
|
: RISCVExtension<1, 0, "Address Generation Instructions">,
|
|
RISCVExtensionBitmask<0, 27>;
|
|
def HasStdExtZba : Predicate<"Subtarget->hasStdExtZba()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZba),
|
|
"'Zba' (Address Generation Instructions)">;
|
|
def NotHasStdExtZba : Predicate<"!Subtarget->hasStdExtZba()">;
|
|
|
|
def FeatureStdExtZbb
|
|
: RISCVExtension<1, 0, "Basic Bit-Manipulation">,
|
|
RISCVExtensionBitmask<0, 28>;
|
|
def HasStdExtZbb : Predicate<"Subtarget->hasStdExtZbb()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZbb),
|
|
"'Zbb' (Basic Bit-Manipulation)">;
|
|
def NoStdExtZbb : Predicate<"!Subtarget->hasStdExtZbb()">,
|
|
AssemblerPredicate<(all_of (not FeatureStdExtZbb))>;
|
|
|
|
def FeatureStdExtZbc
|
|
: RISCVExtension<1, 0, "Carry-Less Multiplication">,
|
|
RISCVExtensionBitmask<0, 29>;
|
|
def HasStdExtZbc : Predicate<"Subtarget->hasStdExtZbc()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZbc),
|
|
"'Zbc' (Carry-Less Multiplication)">;
|
|
|
|
def FeatureStdExtZbs
|
|
: RISCVExtension<1, 0, "Single-Bit Instructions">,
|
|
RISCVExtensionBitmask<0, 33>;
|
|
def HasStdExtZbs : Predicate<"Subtarget->hasStdExtZbs()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZbs),
|
|
"'Zbs' (Single-Bit Instructions)">;
|
|
|
|
// Bitmanip Extensions for Cryptography Extensions
|
|
|
|
def FeatureStdExtB
|
|
: RISCVExtension<1, 0, "the collection of the Zba, Zbb, Zbs extensions",
|
|
[FeatureStdExtZba, FeatureStdExtZbb, FeatureStdExtZbs]>;
|
|
|
|
def FeatureStdExtZbkb
|
|
: RISCVExtension<1, 0, "Bitmanip instructions for Cryptography">,
|
|
RISCVExtensionBitmask<0, 30>;
|
|
def HasStdExtZbkb : Predicate<"Subtarget->hasStdExtZbkb()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZbkb),
|
|
"'Zbkb' (Bitmanip instructions for Cryptography)">;
|
|
def NoStdExtZbkb : Predicate<"!Subtarget->hasStdExtZbkb()">,
|
|
AssemblerPredicate<(all_of (not FeatureStdExtZbkb))>;
|
|
|
|
def FeatureStdExtZbkx
|
|
: RISCVExtension<1, 0, "Crossbar permutation instructions">,
|
|
RISCVExtensionBitmask<0, 32>;
|
|
def HasStdExtZbkx : Predicate<"Subtarget->hasStdExtZbkx()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZbkx),
|
|
"'Zbkx' (Crossbar permutation instructions)">;
|
|
|
|
def HasStdExtZbbOrZbkb
|
|
: Predicate<"Subtarget->hasStdExtZbb() || Subtarget->hasStdExtZbkb()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZbb, FeatureStdExtZbkb),
|
|
"'Zbb' (Basic Bit-Manipulation) or "
|
|
"'Zbkb' (Bitmanip instructions for Cryptography)">;
|
|
|
|
// The Carry-less multiply subextension for cryptography is a subset of basic
|
|
// carry-less multiply subextension. The former should be enabled if the latter
|
|
// is enabled.
|
|
def FeatureStdExtZbkc
|
|
: RISCVExtension<1, 0,
|
|
"Carry-less multiply instructions for Cryptography">,
|
|
RISCVExtensionBitmask<0, 31>;
|
|
def HasStdExtZbkc
|
|
: Predicate<"Subtarget->hasStdExtZbkc()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZbkc),
|
|
"'Zbkc' (Carry-less multiply instructions for Cryptography)">;
|
|
|
|
def HasStdExtZbcOrZbkc
|
|
: Predicate<"Subtarget->hasStdExtZbc() || Subtarget->hasStdExtZbkc()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZbc, FeatureStdExtZbkc),
|
|
"'Zbc' (Carry-Less Multiplication) or "
|
|
"'Zbkc' (Carry-less multiply instructions "
|
|
"for Cryptography)">;
|
|
|
|
// Cryptography Extensions
|
|
|
|
def FeatureStdExtZknd
|
|
: RISCVExtension<1, 0, "NIST Suite: AES Decryption">,
|
|
RISCVExtensionBitmask<0, 41>;
|
|
def HasStdExtZknd : Predicate<"Subtarget->hasStdExtZknd()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZknd),
|
|
"'Zknd' (NIST Suite: AES Decryption)">;
|
|
|
|
def FeatureStdExtZkne
|
|
: RISCVExtension<1, 0, "NIST Suite: AES Encryption">,
|
|
RISCVExtensionBitmask<0, 42>;
|
|
def HasStdExtZkne : Predicate<"Subtarget->hasStdExtZkne()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZkne),
|
|
"'Zkne' (NIST Suite: AES Encryption)">;
|
|
|
|
// Some instructions belong to both Zknd and Zkne subextensions.
|
|
// They should be enabled if either has been specified.
|
|
def HasStdExtZkndOrZkne
|
|
: Predicate<"Subtarget->hasStdExtZknd() || Subtarget->hasStdExtZkne()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZknd, FeatureStdExtZkne),
|
|
"'Zknd' (NIST Suite: AES Decryption) or "
|
|
"'Zkne' (NIST Suite: AES Encryption)">;
|
|
|
|
def FeatureStdExtZknh
|
|
: RISCVExtension<1, 0, "NIST Suite: Hash Function Instructions">,
|
|
RISCVExtensionBitmask<0, 43>;
|
|
def HasStdExtZknh : Predicate<"Subtarget->hasStdExtZknh()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZknh),
|
|
"'Zknh' (NIST Suite: Hash Function Instructions)">;
|
|
|
|
def FeatureStdExtZksed
|
|
: RISCVExtension<1, 0, "ShangMi Suite: SM4 Block Cipher Instructions">,
|
|
RISCVExtensionBitmask<0, 44>;
|
|
def HasStdExtZksed : Predicate<"Subtarget->hasStdExtZksed()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZksed),
|
|
"'Zksed' (ShangMi Suite: SM4 Block Cipher Instructions)">;
|
|
|
|
def FeatureStdExtZksh
|
|
: RISCVExtension<1, 0, "ShangMi Suite: SM3 Hash Function Instructions">,
|
|
RISCVExtensionBitmask<0, 45>;
|
|
def HasStdExtZksh : Predicate<"Subtarget->hasStdExtZksh()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZksh),
|
|
"'Zksh' (ShangMi Suite: SM3 Hash Function Instructions)">;
|
|
|
|
def FeatureStdExtZkr
|
|
: RISCVExtension<1, 0, "Entropy Source Extension">;
|
|
def HasStdExtZkr : Predicate<"Subtarget->hasStdExtZkr()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZkr),
|
|
"'Zkr' (Entropy Source Extension)">;
|
|
|
|
def FeatureStdExtZkn
|
|
: RISCVExtension<1, 0, "NIST Algorithm Suite",
|
|
[FeatureStdExtZbkb,
|
|
FeatureStdExtZbkc,
|
|
FeatureStdExtZbkx,
|
|
FeatureStdExtZkne,
|
|
FeatureStdExtZknd,
|
|
FeatureStdExtZknh]>;
|
|
|
|
def FeatureStdExtZks
|
|
: RISCVExtension<1, 0, "ShangMi Algorithm Suite",
|
|
[FeatureStdExtZbkb,
|
|
FeatureStdExtZbkc,
|
|
FeatureStdExtZbkx,
|
|
FeatureStdExtZksed,
|
|
FeatureStdExtZksh]>;
|
|
|
|
def FeatureStdExtZkt
|
|
: RISCVExtension<1, 0, "Data Independent Execution Latency">,
|
|
RISCVExtensionBitmask<0, 46>;
|
|
|
|
def FeatureStdExtZk
|
|
: RISCVExtension<1, 0, "Standard scalar cryptography extension",
|
|
[FeatureStdExtZkn,
|
|
FeatureStdExtZkr,
|
|
FeatureStdExtZkt]>;
|
|
|
|
// Vector Extensions
|
|
|
|
def FeatureStdExtZvl32b : RISCVExtension<1, 0,
|
|
"Minimum Vector Length 32", [],
|
|
"ZvlLen", "32">;
|
|
|
|
foreach i = { 6-16 } in {
|
|
defvar I = !shl(1, i);
|
|
def FeatureStdExtZvl#I#b :
|
|
RISCVExtension<1, 0, "Minimum Vector Length "#I,
|
|
[!cast<RISCVExtension>("FeatureStdExtZvl"#!srl(I, 1)#"b")],
|
|
"ZvlLen", !cast<string>(I)>;
|
|
}
|
|
|
|
def FeatureStdExtZve32x
|
|
: RISCVExtension<1, 0,
|
|
"Vector Extensions for Embedded Processors "
|
|
"with maximal 32 EEW",
|
|
[FeatureStdExtZicsr, FeatureStdExtZvl32b]>,
|
|
RISCVExtensionBitmask<0, 60>;
|
|
|
|
|
|
def FeatureStdExtZve32f
|
|
: RISCVExtension<1, 0,
|
|
"Vector Extensions for Embedded Processors "
|
|
"with maximal 32 EEW and F extension",
|
|
[FeatureStdExtZve32x, FeatureStdExtF]>,
|
|
RISCVExtensionBitmask<0, 61>;
|
|
|
|
def FeatureStdExtZve64x
|
|
: RISCVExtension<1, 0,
|
|
"Vector Extensions for Embedded Processors "
|
|
"with maximal 64 EEW",
|
|
[FeatureStdExtZve32x, FeatureStdExtZvl64b]>,
|
|
RISCVExtensionBitmask<0, 62>;
|
|
|
|
def FeatureStdExtZve64f
|
|
: RISCVExtension<1, 0,
|
|
"Vector Extensions for Embedded Processors "
|
|
"with maximal 64 EEW and F extension",
|
|
[FeatureStdExtZve32f, FeatureStdExtZve64x]>,
|
|
RISCVExtensionBitmask<0, 63>;
|
|
|
|
def FeatureStdExtZve64d
|
|
: RISCVExtension<1, 0,
|
|
"Vector Extensions for Embedded Processors "
|
|
"with maximal 64 EEW, F and D extension",
|
|
[FeatureStdExtZve64f, FeatureStdExtD]>,
|
|
RISCVExtensionBitmask<1, 0>;
|
|
|
|
def FeatureStdExtV
|
|
: RISCVExtension<1, 0,
|
|
"Vector Extension for Application Processors",
|
|
[FeatureStdExtZvl128b, FeatureStdExtZve64d]>,
|
|
RISCVExtensionBitmask<0, 21>;
|
|
|
|
def FeatureStdExtZvfbfmin
|
|
: RISCVExtension<1, 0, "Vector BF16 Converts", [FeatureStdExtZve32f]>;
|
|
def HasStdExtZvfbfmin : Predicate<"Subtarget->hasStdExtZvfbfmin()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvfbfmin),
|
|
"'Zvfbfmin' (Vector BF16 Converts)">;
|
|
|
|
def FeatureStdExtZvfbfwma
|
|
: RISCVExtension<1, 0, "Vector BF16 widening mul-add",
|
|
[FeatureStdExtZvfbfmin, FeatureStdExtZfbfmin]>;
|
|
def HasStdExtZvfbfwma : Predicate<"Subtarget->hasStdExtZvfbfwma()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvfbfwma),
|
|
"'Zvfbfwma' (Vector BF16 widening mul-add)">;
|
|
|
|
def FeatureStdExtZvfhmin
|
|
: RISCVExtension<1, 0,
|
|
"Vector Half-Precision Floating-Point Minimal",
|
|
[FeatureStdExtZve32f]>,
|
|
RISCVExtensionBitmask<0, 51>;
|
|
|
|
def FeatureStdExtZvfh
|
|
: RISCVExtension<1, 0, "Vector Half-Precision Floating-Point",
|
|
[FeatureStdExtZvfhmin, FeatureStdExtZfhmin]>,
|
|
RISCVExtensionBitmask<0, 50>;
|
|
|
|
def HasStdExtZfhOrZvfh
|
|
: Predicate<"Subtarget->hasStdExtZfh() || Subtarget->hasStdExtZvfh()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZfh, FeatureStdExtZvfh),
|
|
"'Zfh' (Half-Precision Floating-Point) or "
|
|
"'Zvfh' (Vector Half-Precision Floating-Point)">;
|
|
|
|
// Vector Cryptography and Bitmanip Extensions
|
|
|
|
def FeatureStdExtZvkb
|
|
: RISCVExtension<1, 0, "Vector Bit-manipulation used in Cryptography",
|
|
[FeatureStdExtZve32x]>,
|
|
RISCVExtensionBitmask<0, 52>;
|
|
def HasStdExtZvkb : Predicate<"Subtarget->hasStdExtZvkb()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvkb),
|
|
"'Zvkb' (Vector Bit-manipulation used in Cryptography)">;
|
|
|
|
def FeatureStdExtZvbb
|
|
: RISCVExtension<1, 0, "Vector basic bit-manipulation instructions",
|
|
[FeatureStdExtZvkb]>,
|
|
RISCVExtensionBitmask<0, 48>;
|
|
def HasStdExtZvbb : Predicate<"Subtarget->hasStdExtZvbb()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvbb),
|
|
"'Zvbb' (Vector basic bit-manipulation instructions)">;
|
|
|
|
def FeatureStdExtZvbc
|
|
: RISCVExtension<1, 0, "Vector Carryless Multiplication",
|
|
[FeatureStdExtZve64x]>,
|
|
RISCVExtensionBitmask<0, 49>;
|
|
def HasStdExtZvbc : Predicate<"Subtarget->hasStdExtZvbc()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvbc),
|
|
"'Zvbc' (Vector Carryless Multiplication)">;
|
|
|
|
def FeatureStdExtZvbc32e
|
|
: RISCVExperimentalExtension<0, 7,
|
|
"Vector Carryless Multiplication with 32-bits elements",
|
|
[FeatureStdExtZve32x]>;
|
|
|
|
def HasStdExtZvbcOrZvbc32e : Predicate<"Subtarget->hasStdExtZvbc() || Subtarget->hasStdExtZvbc32e()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZvbc, FeatureStdExtZvbc32e),
|
|
"'Zvbc' or 'Zvbc32e' (Vector Carryless Multiplication)">;
|
|
|
|
def FeatureStdExtZvkg
|
|
: RISCVExtension<1, 0, "Vector GCM instructions for Cryptography",
|
|
[FeatureStdExtZve32x]>,
|
|
RISCVExtensionBitmask<0, 53>;
|
|
def HasStdExtZvkg : Predicate<"Subtarget->hasStdExtZvkg()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvkg),
|
|
"'Zvkg' (Vector GCM instructions for Cryptography)">;
|
|
|
|
def FeatureStdExtZvkgs
|
|
: RISCVExperimentalExtension<0, 7,
|
|
"Vector-Scalar GCM instructions for Cryptography",
|
|
[FeatureStdExtZvkg]>;
|
|
def HasStdExtZvkgs : Predicate<"Subtarget->hasStdExtZvkgs()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvkgs),
|
|
"'Zvkgs' (Vector-Scalar GCM instructions for Cryptography)">;
|
|
|
|
def FeatureStdExtZvkned
|
|
: RISCVExtension<1, 0,
|
|
"Vector AES Encryption & Decryption (Single Round)",
|
|
[FeatureStdExtZve32x]>,
|
|
RISCVExtensionBitmask<0, 54>;
|
|
def HasStdExtZvkned : Predicate<"Subtarget->hasStdExtZvkned()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvkned),
|
|
"'Zvkned' (Vector AES Encryption & Decryption (Single Round))">;
|
|
|
|
def FeatureStdExtZvknha
|
|
: RISCVExtension<1, 0, "Vector SHA-2 (SHA-256 only)",
|
|
[FeatureStdExtZve32x]>,
|
|
RISCVExtensionBitmask<0, 55>;
|
|
def HasStdExtZvknha : Predicate<"Subtarget->hasStdExtZvknha()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvknha),
|
|
"'Zvknha' (Vector SHA-2 (SHA-256 only))">;
|
|
|
|
def FeatureStdExtZvknhb
|
|
: RISCVExtension<1, 0, "Vector SHA-2 (SHA-256 and SHA-512)",
|
|
[FeatureStdExtZve64x]>,
|
|
RISCVExtensionBitmask<0, 56>;
|
|
def HasStdExtZvknhb : Predicate<"Subtarget->hasStdExtZvknhb()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvknhb),
|
|
"'Zvknhb' (Vector SHA-2 (SHA-256 and SHA-512))">;
|
|
|
|
def HasStdExtZvknhaOrZvknhb : Predicate<"Subtarget->hasStdExtZvknha() || Subtarget->hasStdExtZvknhb()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZvknha, FeatureStdExtZvknhb),
|
|
"'Zvknha' or 'Zvknhb' (Vector SHA-2)">;
|
|
|
|
def FeatureStdExtZvksed
|
|
: RISCVExtension<1, 0, "SM4 Block Cipher Instructions",
|
|
[FeatureStdExtZve32x]>,
|
|
RISCVExtensionBitmask<0, 57>;
|
|
def HasStdExtZvksed : Predicate<"Subtarget->hasStdExtZvksed()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvksed),
|
|
"'Zvksed' (SM4 Block Cipher Instructions)">;
|
|
|
|
def FeatureStdExtZvksh
|
|
: RISCVExtension<1, 0, "SM3 Hash Function Instructions",
|
|
[FeatureStdExtZve32x]>,
|
|
RISCVExtensionBitmask<0, 58>;
|
|
def HasStdExtZvksh : Predicate<"Subtarget->hasStdExtZvksh()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvksh),
|
|
"'Zvksh' (SM3 Hash Function Instructions)">;
|
|
|
|
def FeatureStdExtZvkt
|
|
: RISCVExtension<1, 0, "Vector Data-Independent Execution Latency">,
|
|
RISCVExtensionBitmask<0, 59>;
|
|
|
|
// Zvk short-hand extensions
|
|
|
|
def FeatureStdExtZvkn
|
|
: RISCVExtension<1, 0,
|
|
"shorthand for 'Zvkned', 'Zvknhb', 'Zvkb', and 'Zvkt'",
|
|
[FeatureStdExtZvkned, FeatureStdExtZvknhb,
|
|
FeatureStdExtZvkb, FeatureStdExtZvkt]>;
|
|
|
|
def FeatureStdExtZvknc
|
|
: RISCVExtension<1, 0, "shorthand for 'Zvknc' and 'Zvbc'",
|
|
[FeatureStdExtZvkn, FeatureStdExtZvbc]>;
|
|
|
|
def FeatureStdExtZvkng
|
|
: RISCVExtension<1, 0, "shorthand for 'Zvkn' and 'Zvkg'",
|
|
[FeatureStdExtZvkn, FeatureStdExtZvkg]>;
|
|
|
|
def FeatureStdExtZvks
|
|
: RISCVExtension<1, 0,
|
|
"shorthand for 'Zvksed', 'Zvksh', 'Zvkb', and 'Zvkt'",
|
|
[FeatureStdExtZvksed, FeatureStdExtZvksh,
|
|
FeatureStdExtZvkb, FeatureStdExtZvkt]>;
|
|
|
|
def FeatureStdExtZvksc
|
|
: RISCVExtension<1, 0, "shorthand for 'Zvks' and 'Zvbc'",
|
|
[FeatureStdExtZvks, FeatureStdExtZvbc]>;
|
|
|
|
def FeatureStdExtZvksg
|
|
: RISCVExtension<1, 0, "shorthand for 'Zvks' and 'Zvkg'",
|
|
[FeatureStdExtZvks, FeatureStdExtZvkg]>;
|
|
|
|
// Vector quad widening dot product
|
|
|
|
def FeatureStdExtZvqdotq
|
|
: RISCVExperimentalExtension<0, 0, "Vector quad widening 4D Dot Product",
|
|
[FeatureStdExtZve32x]>;
|
|
def HasStdExtZvqdotq : Predicate<"Subtarget->hasStdExtZvqdotq()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtZvqdotq),
|
|
"'Zvqdotq' (Vector quad widening 4D Dot Product)">;
|
|
|
|
// Vector instruction predicates
|
|
|
|
def HasVInstructions : Predicate<"Subtarget->hasVInstructions()">,
|
|
AssemblerPredicate<
|
|
(any_of FeatureStdExtZve32x),
|
|
"'V' (Vector Extension for Application Processors), 'Zve32x' "
|
|
"(Vector Extensions for Embedded Processors)">;
|
|
def HasVInstructionsI64 : Predicate<"Subtarget->hasVInstructionsI64()">,
|
|
AssemblerPredicate<
|
|
(any_of FeatureStdExtZve64x),
|
|
"'V' (Vector Extension for Application Processors) or 'Zve64x' "
|
|
"(Vector Extensions for Embedded Processors)">;
|
|
def HasVInstructionsAnyF : Predicate<"Subtarget->hasVInstructionsAnyF()">,
|
|
AssemblerPredicate<
|
|
(any_of FeatureStdExtZve32f),
|
|
"'V' (Vector Extension for Application Processors), 'Zve32f' "
|
|
"(Vector Extensions for Embedded Processors)">;
|
|
|
|
def HasVInstructionsF16Minimal : Predicate<"Subtarget->hasVInstructionsF16Minimal()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZvfhmin, FeatureStdExtZvfh),
|
|
"'Zvfhmin' (Vector Half-Precision Floating-Point Minimal) or "
|
|
"'Zvfh' (Vector Half-Precision Floating-Point)">;
|
|
|
|
def HasVInstructionsBF16Minimal : Predicate<"Subtarget->hasVInstructionsBF16Minimal()">;
|
|
def HasVInstructionsF16 : Predicate<"Subtarget->hasVInstructionsF16()">;
|
|
def HasVInstructionsF64 : Predicate<"Subtarget->hasVInstructionsF64()">;
|
|
|
|
def HasVInstructionsFullMultiply : Predicate<"Subtarget->hasVInstructionsFullMultiply()">;
|
|
|
|
// Hypervisor Extensions
|
|
|
|
def FeatureStdExtH : RISCVExtension<1, 0, "Hypervisor">;
|
|
|
|
def HasStdExtH : Predicate<"Subtarget->hasStdExtH()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtH),
|
|
"'H' (Hypervisor)">;
|
|
|
|
// Supervisor extensions
|
|
|
|
def FeatureStdExtSdext : RISCVExtension<1, 0, "External debugger">;
|
|
|
|
def FeatureStdExtSdtrig : RISCVExtension<1, 0, "Debugger triggers">;
|
|
|
|
def FeatureStdExtShgatpa
|
|
: RISCVExtension<1, 0,
|
|
"SvNNx4 mode supported for all modes supported by satp, as well as Bare">;
|
|
def FeatureStdExtShvsatpa
|
|
: RISCVExtension<1, 0,
|
|
"vsatp supports all modes supported by satp">;
|
|
|
|
def FeatureStdExtSmaia
|
|
: RISCVExtension<1, 0,
|
|
"Advanced Interrupt Architecture Machine Level">;
|
|
def FeatureStdExtSsaia
|
|
: RISCVExtension<1, 0,
|
|
"Advanced Interrupt Architecture Supervisor Level">;
|
|
|
|
def FeatureStdExtSmcntrpmf
|
|
: RISCVExtension<1, 0, "Cycle and Instret Privilege Mode Filtering">;
|
|
|
|
def FeatureStdExtSmcsrind
|
|
: RISCVExtension<1, 0, "Indirect CSR Access Machine Level">;
|
|
def FeatureStdExtSscsrind
|
|
: RISCVExtension<1, 0, "Indirect CSR Access Supervisor Level">;
|
|
|
|
def FeatureStdExtSmdbltrp
|
|
: RISCVExtension<1, 0, "Double Trap Machine Level">;
|
|
def FeatureStdExtSsdbltrp
|
|
: RISCVExtension<1, 0, "Double Trap Supervisor Level">;
|
|
|
|
def FeatureStdExtSmepmp
|
|
: RISCVExtension<1, 0, "Enhanced Physical Memory Protection">;
|
|
|
|
def FeatureStdExtSmrnmi
|
|
: RISCVExtension<1, 0, "Resumable Non-Maskable Interrupts">;
|
|
def HasStdExtSmrnmi : Predicate<"Subtarget->hasStdExtSmrnmi()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtSmrnmi),
|
|
"'Smrnmi' (Resumable Non-Maskable Interrupts)">;
|
|
|
|
def FeatureStdExtSmcdeleg
|
|
: RISCVExtension<1, 0, "Counter Delegation Machine Level">;
|
|
def FeatureStdExtSsccfg
|
|
: RISCVExtension<1, 0, "Counter Configuration Supervisor Level">;
|
|
|
|
def FeatureStdExtSsccptr
|
|
: RISCVExtension<1, 0, "Main memory supports page table reads">;
|
|
|
|
def FeatureStdExtSscofpmf
|
|
: RISCVExtension<1, 0, "Count Overflow and Mode-Based Filtering">;
|
|
|
|
def FeatureStdExtShcounterenw
|
|
: RISCVExtension<1, 0,
|
|
"Support writeable hcounteren enable "
|
|
"bit for any hpmcounter that is not read-only zero">;
|
|
def FeatureStdExtSscounterenw
|
|
: RISCVExtension<1, 0,
|
|
"Support writeable scounteren enable "
|
|
"bit for any hpmcounter that is not read-only zero">;
|
|
|
|
def FeatureStdExtSmstateen
|
|
: RISCVExtension<1, 0,
|
|
"Machine-mode view of the state-enable extension">;
|
|
def FeatureStdExtSsstateen
|
|
: RISCVExtension<1, 0,
|
|
"Supervisor-mode view of the state-enable extension">;
|
|
|
|
def FeatureStdExtSsstrict
|
|
: RISCVExtension<1, 0,
|
|
"No non-conforming extensions are present">;
|
|
|
|
def FeatureStdExtSstc
|
|
: RISCVExtension<1, 0, "Supervisor-mode timer interrupts">;
|
|
|
|
def FeatureStdExtSsqosid
|
|
: RISCVExtension<1, 0, "Quality-of-Service (QoS) Identifiers">;
|
|
|
|
def FeatureStdExtShtvala
|
|
: RISCVExtension<1, 0, "htval provides all needed values">;
|
|
def FeatureStdExtShvstvala
|
|
: RISCVExtension<1, 0, "vstval provides all needed values">;
|
|
def FeatureStdExtSstvala
|
|
: RISCVExtension<1, 0, "stval provides all needed values">;
|
|
|
|
def FeatureStdExtShvstvecd
|
|
: RISCVExtension<1, 0, "vstvec supports Direct mode">;
|
|
def FeatureStdExtSstvecd
|
|
: RISCVExtension<1, 0, "stvec supports Direct mode">;
|
|
|
|
def FeatureStdExtSsu64xl
|
|
: RISCVExtension<1, 0, "UXLEN=64 supported">;
|
|
|
|
def FeatureStdExtSvade
|
|
: RISCVExtension<1, 0, "Raise exceptions on improper A/D bits">;
|
|
|
|
def FeatureStdExtSvadu
|
|
: RISCVExtension<1, 0, "Hardware A/D updates">;
|
|
|
|
def FeatureStdExtSvbare
|
|
: RISCVExtension<1, 0, "satp mode Bare supported">;
|
|
|
|
def FeatureStdExtSvinval
|
|
: RISCVExtension<1, 0,
|
|
"Fine-Grained Address-Translation Cache Invalidation">;
|
|
def HasStdExtSvinval : Predicate<"Subtarget->hasStdExtSvinval()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtSvinval),
|
|
"'Svinval' (Fine-Grained Address-Translation Cache Invalidation)">;
|
|
|
|
def FeatureStdExtSvnapot
|
|
: RISCVExtension<1, 0, "NAPOT Translation Contiguity">;
|
|
|
|
def FeatureStdExtSvpbmt
|
|
: RISCVExtension<1, 0, "Page-Based Memory Types">;
|
|
|
|
def FeatureStdExtSvvptc
|
|
: RISCVExtension<1, 0,
|
|
"Obviating Memory-Management Instructions after Marking PTEs Valid">;
|
|
|
|
def FeatureStdExtSha
|
|
: RISCVExtension<1, 0, "Augmented Hypervisor",
|
|
[FeatureStdExtH, FeatureStdExtSsstateen, FeatureStdExtShcounterenw,
|
|
FeatureStdExtShvstvala, FeatureStdExtShtvala, FeatureStdExtShvstvecd,
|
|
FeatureStdExtShvsatpa, FeatureStdExtShgatpa]>;
|
|
|
|
def FeatureStdExtSvukte
|
|
: RISCVExperimentalExtension<0, 3,
|
|
"Address-Independent Latency of User-Mode Faults to Supervisor Addresses">;
|
|
|
|
// Pointer Masking extensions
|
|
|
|
// A supervisor-level extension that provides pointer masking for the next lower
|
|
// privilege mode (U-mode), and for VS- and VU-modes if the H extension is
|
|
// present.
|
|
def FeatureStdExtSsnpm
|
|
: RISCVExtension<1, 0,
|
|
"Supervisor-level Pointer Masking for next lower privilege mode">;
|
|
|
|
// A machine-level extension that provides pointer masking for the next lower
|
|
// privilege mode (S/HS if S-mode is implemented, or U-mode otherwise).
|
|
def FeatureStdExtSmnpm
|
|
: RISCVExtension<1, 0,
|
|
"Machine-level Pointer Masking for next lower privilege mode">;
|
|
|
|
// A machine-level extension that provides pointer masking for M-mode.
|
|
def FeatureStdExtSmmpm
|
|
: RISCVExtension<1, 0,
|
|
"Machine-level Pointer Masking for M-mode">;
|
|
|
|
// An extension that indicates that there is pointer-masking support available
|
|
// in supervisor mode, with some facility provided in the supervisor execution
|
|
// environment to control pointer masking.
|
|
def FeatureStdExtSspm
|
|
: RISCVExtension<1, 0,
|
|
"Indicates Supervisor-mode Pointer Masking">;
|
|
|
|
// An extension that indicates that there is pointer-masking support available
|
|
// in user mode, with some facility provided in the application execution
|
|
// environment to control pointer masking.
|
|
def FeatureStdExtSupm
|
|
: RISCVExtension<1, 0,
|
|
"Indicates User-mode Pointer Masking">;
|
|
|
|
def FeatureStdExtSmctr
|
|
: RISCVExperimentalExtension<1, 0,
|
|
"Control Transfer Records Machine Level",
|
|
[FeatureStdExtSscsrind]>;
|
|
def FeatureStdExtSsctr
|
|
: RISCVExperimentalExtension<1, 0,
|
|
"Control Transfer Records Supervisor Level",
|
|
[FeatureStdExtSscsrind]>;
|
|
def HasStdExtSmctrOrSsctr : Predicate<"Subtarget->hasStdExtSmctrOrSsctr()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtSmctr, FeatureStdExtSsctr),
|
|
"'Smctr' (Control Transfer Records Machine Level) or "
|
|
"'Ssctr' (Control Transfer Records Supervisor Level)">;
|
|
|
|
// Packed SIMD Extensions
|
|
def FeatureStdExtP
|
|
: RISCVExperimentalExtension<0, 14,
|
|
"'Base P' (Packed SIMD)">;
|
|
def HasStdExtP : Predicate<"Subtarget->hasStdExtP()">,
|
|
AssemblerPredicate<(all_of FeatureStdExtP),
|
|
"'Base P' (Packed SIMD)">;
|
|
|
|
def HasStdExtZbaOrP
|
|
: Predicate<"Subtarget->hasStdExtZba() || Subtarget->hasStdExtP()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZba, FeatureStdExtP),
|
|
"'Zba' (Address Generation Instructions) or "
|
|
"'Base P' (Packed-SIMD)">;
|
|
|
|
def HasStdExtZbbOrP
|
|
: Predicate<"Subtarget->hasStdExtZbb() || Subtarget->hasStdExtP()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZbb, FeatureStdExtP),
|
|
"'Zbb' (Basic Bit-Manipulation) or "
|
|
"'Base P' (Packed-SIMD)">;
|
|
|
|
def HasStdExtZbkbOrP
|
|
: Predicate<"Subtarget->hasStdExtZbkb() || Subtarget->hasStdExtP()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZbkb, FeatureStdExtP),
|
|
"'Zbkb' (Bitmanip instructions for Cryptography) or "
|
|
"'Base P' (Packed-SIMD)">;
|
|
|
|
def HasStdExtZbbOrZbkbOrP
|
|
: Predicate<"Subtarget->HasStdExtZbbOrZbkb()|| Subtarget->hasStdExtP()">,
|
|
AssemblerPredicate<(any_of FeatureStdExtZbb, FeatureStdExtZbkb, FeatureStdExtP),
|
|
"'Zbb' (Basic Bit-Manipulation) or "
|
|
"'Zbkb' (Bitmanip instructions for Cryptography) or "
|
|
"'Base P' (Packed-SIMD)">;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Vendor extensions
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Ventana Extensions
|
|
|
|
def FeatureVendorXVentanaCondOps
|
|
: RISCVExtension<1, 0, "Ventana Conditional Ops">;
|
|
def HasVendorXVentanaCondOps : Predicate<"Subtarget->hasVendorXVentanaCondOps()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXVentanaCondOps),
|
|
"'XVentanaCondOps' (Ventana Conditional Ops)">;
|
|
|
|
// T-Head Extensions
|
|
|
|
def FeatureVendorXTHeadBa
|
|
: RISCVExtension<1, 0,
|
|
"T-Head address calculation instructions">;
|
|
def HasVendorXTHeadBa : Predicate<"Subtarget->hasVendorXTHeadBa()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadBa),
|
|
"'XTHeadBa' (T-Head address calculation instructions)">;
|
|
|
|
def FeatureVendorXTHeadBb
|
|
: RISCVExtension<1, 0,
|
|
"T-Head basic bit-manipulation instructions">;
|
|
def HasVendorXTHeadBb : Predicate<"Subtarget->hasVendorXTHeadBb()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadBb),
|
|
"'XTHeadBb' (T-Head basic bit-manipulation instructions)">;
|
|
|
|
def FeatureVendorXTHeadBs
|
|
: RISCVExtension<1, 0,
|
|
"T-Head single-bit instructions">;
|
|
def HasVendorXTHeadBs : Predicate<"Subtarget->hasVendorXTHeadBs()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadBs),
|
|
"'XTHeadBs' (T-Head single-bit instructions)">;
|
|
|
|
def FeatureVendorXTHeadCondMov
|
|
: RISCVExtension<1, 0,
|
|
"T-Head conditional move instructions">;
|
|
def HasVendorXTHeadCondMov : Predicate<"Subtarget->hasVendorXTHeadCondMov()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadCondMov),
|
|
"'XTHeadCondMov' (T-Head conditional move instructions)">;
|
|
|
|
def FeatureVendorXTHeadCmo
|
|
: RISCVExtension<1, 0,
|
|
"T-Head cache management instructions">;
|
|
def HasVendorXTHeadCmo : Predicate<"Subtarget->hasVendorXTHeadCmo()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadCmo),
|
|
"'XTHeadCmo' (T-Head cache management instructions)">;
|
|
|
|
def FeatureVendorXTHeadFMemIdx
|
|
: RISCVExtension<1, 0,
|
|
"T-Head FP Indexed Memory Operations">;
|
|
def HasVendorXTHeadFMemIdx : Predicate<"Subtarget->hasVendorXTHeadFMemIdx()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadFMemIdx),
|
|
"'XTHeadFMemIdx' (T-Head FP Indexed Memory Operations)">;
|
|
|
|
def FeatureVendorXTHeadMac
|
|
: RISCVExtension<1, 0,
|
|
"T-Head Multiply-Accumulate Instructions">;
|
|
def HasVendorXTHeadMac : Predicate<"Subtarget->hasVendorXTHeadMac()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadMac),
|
|
"'XTHeadMac' (T-Head Multiply-Accumulate Instructions)">;
|
|
|
|
def FeatureVendorXTHeadMemIdx
|
|
: RISCVExtension<1, 0,
|
|
"T-Head Indexed Memory Operations">;
|
|
def HasVendorXTHeadMemIdx : Predicate<"Subtarget->hasVendorXTHeadMemIdx()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadMemIdx),
|
|
"'XTHeadMemIdx' (T-Head Indexed Memory Operations)">;
|
|
|
|
def FeatureVendorXTHeadMemPair
|
|
: RISCVExtension<1, 0,
|
|
"T-Head two-GPR Memory Operations">;
|
|
def HasVendorXTHeadMemPair : Predicate<"Subtarget->hasVendorXTHeadMemPair()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadMemPair),
|
|
"'XTHeadMemPair' (T-Head two-GPR Memory Operations)">;
|
|
|
|
def FeatureVendorXTHeadSync
|
|
: RISCVExtension<1, 0,
|
|
"T-Head multicore synchronization instructions">;
|
|
def HasVendorXTHeadSync : Predicate<"Subtarget->hasVendorXTHeadSync()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadSync),
|
|
"'XTHeadSync' (T-Head multicore synchronization instructions)">;
|
|
|
|
def FeatureVendorXTHeadVdot
|
|
: RISCVExtension<1, 0,
|
|
"T-Head Vector Extensions for Dot",
|
|
[FeatureStdExtV]>;
|
|
def HasVendorXTHeadVdot : Predicate<"Subtarget->hasVendorXTHeadVdot()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXTHeadVdot),
|
|
"'XTHeadVdot' (T-Head Vector Extensions for Dot)">;
|
|
|
|
// SiFive Extensions
|
|
|
|
def FeatureVendorXSfvcp
|
|
: RISCVExtension<1, 0,
|
|
"SiFive Custom Vector Coprocessor Interface Instructions",
|
|
[FeatureStdExtZve32x]>;
|
|
def HasVendorXSfvcp : Predicate<"Subtarget->hasVendorXSfvcp()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSfvcp),
|
|
"'XSfvcp' (SiFive Custom Vector Coprocessor Interface Instructions)">;
|
|
|
|
def FeatureVendorXSfvqmaccdod
|
|
: RISCVExtension<1, 0,
|
|
"SiFive Int8 Matrix Multiplication Instructions (2-by-8 and 8-by-2)",
|
|
[FeatureStdExtZve32x]>;
|
|
def HasVendorXSfvqmaccdod
|
|
: Predicate<"Subtarget->hasVendorXSfvqmaccdod()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSfvqmaccdod),
|
|
"'XSfvqmaccdod' (SiFive Int8 Matrix Multiplication Instructions (2-by-8 and 8-by-2))">;
|
|
|
|
def FeatureVendorXSfvqmaccqoq
|
|
: RISCVExtension<1, 0,
|
|
"SiFive Int8 Matrix Multiplication Instructions (4-by-8 and 8-by-4)",
|
|
[FeatureStdExtZve32x]>;
|
|
def HasVendorXSfvqmaccqoq
|
|
: Predicate<"Subtarget->hasVendorXSfvqmaccqoq()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSfvqmaccqoq),
|
|
"'XSfvqmaccqoq' (SiFive Int8 Matrix Multiplication Instructions (4-by-8 and 8-by-4))">;
|
|
|
|
def FeatureVendorXSfvfwmaccqqq
|
|
: RISCVExtension<1, 0,
|
|
"SiFive Matrix Multiply Accumulate Instruction and 4-by-4)",
|
|
[FeatureStdExtZvfbfmin]>;
|
|
def HasVendorXSfvfwmaccqqq
|
|
: Predicate<"Subtarget->hasVendorXSfvfwmaccqqq()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSfvfwmaccqqq),
|
|
"'XSfvfwmaccqqq' (SiFive Matrix Multiply Accumulate Instruction and 4-by-4))">;
|
|
|
|
def FeatureVendorXSfvfnrclipxfqf
|
|
: RISCVExtension<1, 0,
|
|
"SiFive FP32-to-int8 Ranged Clip Instructions",
|
|
[FeatureStdExtZve32f]>;
|
|
def HasVendorXSfvfnrclipxfqf
|
|
: Predicate<"Subtarget->hasVendorXSfvfnrclipxfqf()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSfvfnrclipxfqf),
|
|
"'XSfvfnrclipxfqf' (SiFive FP32-to-int8 Ranged Clip Instructions)">;
|
|
|
|
def FeatureVendorXSiFivecdiscarddlone
|
|
: RISCVExtension<1, 0,
|
|
"SiFive sf.cdiscard.d.l1 Instruction", []>;
|
|
def HasVendorXSiFivecdiscarddlone
|
|
: Predicate<"Subtarget->hasVendorXSiFivecdiscarddlone()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSiFivecdiscarddlone),
|
|
"'XSiFivecdiscarddlone' (SiFive sf.cdiscard.d.l1 Instruction)">;
|
|
|
|
def FeatureVendorXSiFivecflushdlone
|
|
: RISCVExtension<1, 0,
|
|
"SiFive sf.cflush.d.l1 Instruction", []>;
|
|
def HasVendorXSiFivecflushdlone
|
|
: Predicate<"Subtarget->hasVendorXSiFivecflushdlone()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSiFivecflushdlone),
|
|
"'XSiFivecflushdlone' (SiFive sf.cflush.d.l1 Instruction)">;
|
|
|
|
def FeatureVendorXSfcease
|
|
: RISCVExtension<1, 0,
|
|
"SiFive sf.cease Instruction", []>;
|
|
def HasVendorXSfcease
|
|
: Predicate<"Subtarget->hasVendorXSfcease()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXSfcease),
|
|
"'XSfcease' (SiFive sf.cease Instruction)">;
|
|
|
|
def FeatureVendorXSfmclic
|
|
: RISCVExperimentalExtension<0, 1,
|
|
"SiFive CLIC Machine-mode CSRs">;
|
|
|
|
def FeatureVendorXSfsclic
|
|
: RISCVExperimentalExtension<0, 1,
|
|
"SiFive CLIC Supervisor-mode CSRs">;
|
|
|
|
// Core-V Extensions
|
|
|
|
def FeatureVendorXCVelw
|
|
: RISCVExtension<1, 0, "CORE-V Event Load Word">;
|
|
def HasVendorXCVelw
|
|
: Predicate<"Subtarget->hasVendorXCVelw()">,
|
|
AssemblerPredicate<(any_of FeatureVendorXCVelw),
|
|
"'XCVelw' (CORE-V Event Load Word)">;
|
|
|
|
def FeatureVendorXCVbitmanip
|
|
: RISCVExtension<1, 0, "CORE-V Bit Manipulation">;
|
|
def HasVendorXCVbitmanip
|
|
: Predicate<"Subtarget->hasVendorXCVbitmanip()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXCVbitmanip),
|
|
"'XCVbitmanip' (CORE-V Bit Manipulation)">;
|
|
|
|
def FeatureVendorXCVmac
|
|
: RISCVExtension<1, 0, "CORE-V Multiply-Accumulate">;
|
|
def HasVendorXCVmac
|
|
: Predicate<"Subtarget->hasVendorXCVmac()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXCVmac),
|
|
"'XCVmac' (CORE-V Multiply-Accumulate)">;
|
|
|
|
def FeatureVendorXCVmem
|
|
: RISCVExtension<1, 0, "CORE-V Post-incrementing Load & Store">;
|
|
def HasVendorXCVmem
|
|
: Predicate<"Subtarget->hasVendorXCVmem()">,
|
|
AssemblerPredicate<(any_of FeatureVendorXCVmem),
|
|
"'XCVmem' (CORE-V Post-incrementing Load & Store)">;
|
|
|
|
def FeatureVendorXCValu
|
|
: RISCVExtension<1, 0, "CORE-V ALU Operations">;
|
|
def HasVendorXCValu
|
|
: Predicate<"Subtarget->hasVendorXCValu()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXCValu),
|
|
"'XCValu' (CORE-V ALU Operations)">;
|
|
|
|
def FeatureVendorXCVsimd
|
|
: RISCVExtension<1, 0, "CORE-V SIMD ALU">;
|
|
def HasVendorXCVsimd
|
|
: Predicate<"Subtarget->hasVendorXCVsimd()">,
|
|
AssemblerPredicate<(any_of FeatureVendorXCVsimd),
|
|
"'XCVsimd' (CORE-V SIMD ALU)">;
|
|
|
|
def FeatureVendorXCVbi
|
|
: RISCVExtension<1, 0, "CORE-V Immediate Branching">;
|
|
def HasVendorXCVbi
|
|
: Predicate<"Subtarget->hasVendorXCVbi()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXCVbi),
|
|
"'XCVbi' (CORE-V Immediate Branching)">;
|
|
// MIPS Extensions
|
|
|
|
def FeatureVendorXMIPSCMov
|
|
: RISCVExtension<1, 0, "MIPS conditional move instruction (mips.ccmov)">;
|
|
def HasVendorXMIPSCMov
|
|
: Predicate<"Subtarget->hasVendorXMIPSCMov()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXMIPSCMov),
|
|
"'Xmipscmov' ('mips.ccmov' instruction)">;
|
|
def UseCCMovInsn : Predicate<"Subtarget->useCCMovInsn()">;
|
|
def FeatureVendorXMIPSLSP
|
|
: RISCVExtension<1, 0, "MIPS optimization for hardware load-store bonding">;
|
|
def HasVendorXMIPSLSP
|
|
: Predicate<"Subtarget->hasVendorXMIPSLSP()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXMIPSLSP),
|
|
"'Xmipslsp' (load and store pair instructions)">;
|
|
|
|
// WCH / Nanjing Qinheng Microelectronics Extension(s)
|
|
|
|
def FeatureVendorXwchc
|
|
: RISCVExtension<2, 2,
|
|
"WCH/QingKe additional compressed opcodes",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXwchc
|
|
: Predicate<"Subtarget->hasVendorXwchc()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXwchc),
|
|
"'Xwchc' (WCH/QingKe additional compressed opcodes)">;
|
|
|
|
// Qualcomm Extension(s)
|
|
|
|
def FeatureVendorXqcicsr
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC CSR Extension">;
|
|
def HasVendorXqcicsr
|
|
: Predicate<"Subtarget->hasVendorXqcicsr()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcicsr),
|
|
"'Xqcicsr' (Qualcomm uC CSR Extension)">;
|
|
|
|
def FeatureVendorXqcisls
|
|
: RISCVExperimentalExtension<0, 2,
|
|
"Qualcomm uC Scaled Load Store Extension">;
|
|
def HasVendorXqcisls
|
|
: Predicate<"Subtarget->hasVendorXqcisls()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcisls),
|
|
"'Xqcisls' (Qualcomm uC Scaled Load Store Extension)">;
|
|
|
|
def FeatureVendorXqcia
|
|
: RISCVExperimentalExtension<0, 4, "Qualcomm uC Arithmetic Extension">;
|
|
def HasVendorXqcia
|
|
: Predicate<"Subtarget->hasVendorXqcia()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcia),
|
|
"'Xqcia' (Qualcomm uC Arithmetic Extension)">;
|
|
|
|
def FeatureVendorXqcics
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Conditional Select Extension">;
|
|
def HasVendorXqcics
|
|
: Predicate<"Subtarget->hasVendorXqcics()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcics),
|
|
"'Xqcics' (Qualcomm uC Conditional Select Extension)">;
|
|
|
|
def FeatureVendorXqcilsm
|
|
: RISCVExperimentalExtension<0, 2,
|
|
"Qualcomm uC Load Store Multiple Extension">;
|
|
def HasVendorXqcilsm
|
|
: Predicate<"Subtarget->hasVendorXqcilsm()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcilsm),
|
|
"'Xqcilsm' (Qualcomm uC Load Store Multiple Extension)">;
|
|
|
|
def FeatureVendorXqciac
|
|
: RISCVExperimentalExtension<0, 3, "Qualcomm uC Load-Store Address Calculation Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqciac
|
|
: Predicate<"Subtarget->hasVendorXqciac()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqciac),
|
|
"'Xqciac' (Qualcomm uC Load-Store Address Calculation Extension)">;
|
|
|
|
def FeatureVendorXqcicli
|
|
: RISCVExperimentalExtension<0, 2,
|
|
"Qualcomm uC Conditional Load Immediate Extension">;
|
|
def HasVendorXqcicli
|
|
: Predicate<"Subtarget->hasVendorXqcicli()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcicli),
|
|
"'Xqcicli' (Qualcomm uC Conditional Load Immediate Extension)">;
|
|
|
|
def FeatureVendorXqcicm
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Conditional Move Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcicm
|
|
: Predicate<"Subtarget->hasVendorXqcicm()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcicm),
|
|
"'Xqcicm' (Qualcomm uC Conditional Move Extension)">;
|
|
|
|
def FeatureVendorXqciio
|
|
: RISCVExperimentalExtension<0, 1, "Qualcomm uC External Input Output Extension">;
|
|
def HasVendorXqciio
|
|
: Predicate<"Subtarget->hasVendorXqciio()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqciio),
|
|
"'Xqciio' (Qualcomm uC External Input Output Extension)">;
|
|
|
|
def FeatureVendorXqciint
|
|
: RISCVExperimentalExtension<0, 4, "Qualcomm uC Interrupts Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqciint
|
|
: Predicate<"Subtarget->hasVendorXqciint()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqciint),
|
|
"'Xqciint' (Qualcomm uC Interrupts Extension)">;
|
|
|
|
def FeatureVendorXqcilb
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Long Branch Extension",
|
|
[FeatureStdExtZca]>;
|
|
|
|
def HasVendorXqcilb : Predicate<"Subtarget->hasVendorXqcilb()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcilb),
|
|
"'Xqcilb' (Qualcomm uC Long Branch Extension)">;
|
|
|
|
def FeatureVendorXqcili
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Load Large Immediate Extension",
|
|
[FeatureStdExtZca]>;
|
|
|
|
def HasVendorXqcili : Predicate<"Subtarget->hasVendorXqcili()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcili),
|
|
"'Xqcili' (Qualcomm uC Load Large Immediate Extension)">;
|
|
|
|
def FeatureVendorXqcilia
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Large Immediate Arithmetic Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcilia
|
|
: Predicate<"Subtarget->hasVendorXqcilia()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcilia),
|
|
"'Xqcilia' (Qualcomm uC Large Immediate Arithmetic Extension)">;
|
|
|
|
def FeatureVendorXqcibm
|
|
: RISCVExperimentalExtension<0, 4, "Qualcomm uC Bit Manipulation Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcibm
|
|
: Predicate<"Subtarget->hasVendorXqcibm()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcibm),
|
|
"'Xqcibm' (Qualcomm uC Bit Manipulation Extension)">;
|
|
|
|
def FeatureVendorXqcibi
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Branch Immediate Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcibi
|
|
: Predicate<"Subtarget->hasVendorXqcibi()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcibi),
|
|
"'Xqcibi' (Qualcomm uC Branch Immediate Extension)">;
|
|
|
|
def FeatureVendorXqcilo
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Large Offset Load Store Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcilo
|
|
: Predicate<"Subtarget->hasVendorXqcilo()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcilo),
|
|
"'Xqcilo' (Qualcomm uC Large Offset Load Store Extension)">;
|
|
|
|
def FeatureVendorXqccmp
|
|
: RISCVExperimentalExtension<0, 1,
|
|
"Qualcomm 16-bit Push/Pop and Double Moves",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqccmp : Predicate<"Subtarget->hasVendorXqccmp()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqccmp),
|
|
"'Xqccmp' (Qualcomm 16-bit Push/Pop and Double Moves)">;
|
|
|
|
def FeatureVendorXqcisim
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Simulation Hint Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcisim
|
|
: Predicate<"Subtarget->hasVendorXqcisim()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcisim),
|
|
"'Xqcisim' (Qualcomm uC Simulation Hint Extension)">;
|
|
|
|
def FeatureVendorXqcisync
|
|
: RISCVExperimentalExtension<0, 2, "Qualcomm uC Sync Delay Extension",
|
|
[FeatureStdExtZca]>;
|
|
def HasVendorXqcisync
|
|
: Predicate<"Subtarget->hasVendorXqcisync()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXqcisync),
|
|
"'Xqcisync' (Qualcomm uC Sync Delay Extension)">;
|
|
|
|
// Rivos Extension(s)
|
|
|
|
def FeatureVendorXRivosVisni
|
|
: RISCVExperimentalExtension<0, 1, "Rivos Vector Integer Small New">;
|
|
def HasVendorXRivosVisni
|
|
: Predicate<"Subtarget->hasVendorXRivosVisni()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXRivosVisni),
|
|
"'XRivosVisni' (Rivos Vector Integer Small New)">;
|
|
|
|
def FeatureVendorXRivosVizip
|
|
: RISCVExperimentalExtension<0, 1, "Rivos Vector Register Zips">;
|
|
def HasVendorXRivosVizip
|
|
: Predicate<"Subtarget->hasVendorXRivosVizip()">,
|
|
AssemblerPredicate<(all_of FeatureVendorXRivosVizip),
|
|
"'XRivosVizip' (Rivos Vector Register Zips)">;
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// LLVM specific features and extensions
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Feature32Bit exists to mark CPUs that support RV32 to distinguish them from
|
|
// tuning CPU names.
|
|
def Feature32Bit
|
|
: SubtargetFeature<"32bit", "IsRV32", "true", "Implements RV32">;
|
|
def Feature64Bit
|
|
: SubtargetFeature<"64bit", "IsRV64", "true", "Implements RV64">;
|
|
def IsRV64 : Predicate<"Subtarget->is64Bit()">,
|
|
AssemblerPredicate<(all_of Feature64Bit),
|
|
"RV64I Base Instruction Set">;
|
|
def IsRV32 : Predicate<"!Subtarget->is64Bit()">,
|
|
AssemblerPredicate<(all_of (not Feature64Bit)),
|
|
"RV32I Base Instruction Set">;
|
|
|
|
defvar RV32 = DefaultMode;
|
|
def RV64 : HwMode<"+64bit", [IsRV64]>;
|
|
|
|
def FeatureRelax
|
|
: SubtargetFeature<"relax", "EnableLinkerRelax", "true",
|
|
"Enable Linker relaxation.">;
|
|
|
|
def FeatureExactAssembly
|
|
: SubtargetFeature<"exact-asm", "EnableExactAssembly", "true",
|
|
"Enable Exact Assembly (Disables Compression and Relaxation)">;
|
|
|
|
foreach i = {1-31} in
|
|
def FeatureReserveX#i :
|
|
SubtargetFeature<"reserve-x"#i, "UserReservedRegister[RISCV::X"#i#"]",
|
|
"true", "Reserve X"#i>;
|
|
|
|
def FeatureSaveRestore : SubtargetFeature<"save-restore", "EnableSaveRestore",
|
|
"true", "Enable save/restore.">;
|
|
|
|
def FeatureNoTrailingSeqCstFence : SubtargetFeature<"no-trailing-seq-cst-fence",
|
|
"EnableTrailingSeqCstFence",
|
|
"false",
|
|
"Disable trailing fence for seq-cst store.">;
|
|
|
|
def FeatureUnalignedScalarMem
|
|
: SubtargetFeature<"unaligned-scalar-mem", "EnableUnalignedScalarMem",
|
|
"true", "Has reasonably performant unaligned scalar "
|
|
"loads and stores">;
|
|
|
|
def FeatureUnalignedVectorMem
|
|
: SubtargetFeature<"unaligned-vector-mem", "EnableUnalignedVectorMem",
|
|
"true", "Has reasonably performant unaligned vector "
|
|
"loads and stores">;
|
|
|
|
def TuneNLogNVRGather
|
|
: SubtargetFeature<"log-vrgather", "RISCVVRGatherCostModel", "NLog2N",
|
|
"Has vrgather.vv with LMUL*log2(LMUL) latency">;
|
|
|
|
def TunePostRAScheduler : SubtargetFeature<"use-postra-scheduler",
|
|
"UsePostRAScheduler", "true", "Schedule again after register allocation">;
|
|
|
|
def TuneDisableLatencySchedHeuristic
|
|
: SubtargetFeature<"disable-latency-sched-heuristic", "DisableLatencySchedHeuristic", "true",
|
|
"Disable latency scheduling heuristic">;
|
|
|
|
def TunePredictableSelectIsExpensive
|
|
: SubtargetFeature<"predictable-select-expensive", "PredictableSelectIsExpensive", "true",
|
|
"Prefer likely predicted branches over selects">;
|
|
|
|
def TuneOptimizedZeroStrideLoad
|
|
: SubtargetFeature<"optimized-zero-stride-load", "HasOptimizedZeroStrideLoad",
|
|
"true", "Optimized (perform fewer memory operations)"
|
|
"zero-stride vector load">;
|
|
|
|
foreach nf = {2-8} in
|
|
def TuneOptimizedNF#nf#SegmentLoadStore :
|
|
SubtargetFeature<"optimized-nf"#nf#"-segment-load-store",
|
|
"HasOptimizedNF"#nf#"SegmentLoadStore",
|
|
"true", "vlseg"#nf#"eN.v and vsseg"#nf#"eN.v are "
|
|
"implemented as a wide memory op and shuffle">;
|
|
|
|
def Experimental
|
|
: SubtargetFeature<"experimental", "HasExperimental",
|
|
"true", "Experimental intrinsics">;
|
|
|
|
// Some vector hardware implementations do not process all VLEN bits in parallel
|
|
// and instead split over multiple cycles. DLEN refers to the datapath width
|
|
// that can be done in parallel.
|
|
def TuneDLenFactor2
|
|
: SubtargetFeature<"dlen-factor-2", "DLenFactor2", "true",
|
|
"Vector unit DLEN(data path width) is half of VLEN">;
|
|
|
|
def TuneNoDefaultUnroll
|
|
: SubtargetFeature<"no-default-unroll", "EnableDefaultUnroll", "false",
|
|
"Disable default unroll preference.">;
|
|
|
|
// SiFive 7 is able to fuse integer ALU operations with a preceding branch
|
|
// instruction.
|
|
def TuneShortForwardBranchOpt
|
|
: SubtargetFeature<"short-forward-branch-opt", "HasShortForwardBranchOpt",
|
|
"true", "Enable short forward branch optimization">;
|
|
def HasShortForwardBranchOpt : Predicate<"Subtarget->hasShortForwardBranchOpt()">;
|
|
def NoShortForwardBranchOpt : Predicate<"!Subtarget->hasShortForwardBranchOpt()">;
|
|
|
|
// Some subtargets require a S2V transfer buffer to move scalars into vectors.
|
|
// FIXME: Forming .vx/.vf/.wx/.wf can reduce register pressure.
|
|
def TuneNoSinkSplatOperands
|
|
: SubtargetFeature<"no-sink-splat-operands", "SinkSplatOperands",
|
|
"false", "Disable sink splat operands to enable .vx, .vf,"
|
|
".wx, and .wf instructions">;
|
|
|
|
def TunePreferWInst
|
|
: SubtargetFeature<"prefer-w-inst", "PreferWInst", "true",
|
|
"Prefer instructions with W suffix">;
|
|
|
|
def TuneConditionalCompressedMoveFusion
|
|
: SubtargetFeature<"conditional-cmv-fusion", "HasConditionalCompressedMoveFusion",
|
|
"true", "Enable branch+c.mv fusion">;
|
|
def HasConditionalMoveFusion : Predicate<"Subtarget->hasConditionalMoveFusion()">;
|
|
def NoConditionalMoveFusion : Predicate<"!Subtarget->hasConditionalMoveFusion()">;
|
|
|
|
def TuneMIPSP8700
|
|
: SubtargetFeature<"mips-p8700", "RISCVProcFamily", "MIPSP8700",
|
|
"MIPS p8700 processor">;
|
|
|
|
def TuneSiFive7 : SubtargetFeature<"sifive7", "RISCVProcFamily", "SiFive7",
|
|
"SiFive 7-Series processors">;
|
|
|
|
def TuneVentanaVeyron : SubtargetFeature<"ventana-veyron", "RISCVProcFamily", "VentanaVeyron",
|
|
"Ventana Veyron-Series processors">;
|
|
|
|
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 to calculate VLEN">;
|
|
|
|
// Assume that lock-free native-width atomics are available, even if the target
|
|
// and operating system combination would not usually provide them. The user
|
|
// is responsible for providing any necessary __sync implementations. Code
|
|
// built with this feature is not ABI-compatible with code built without this
|
|
// feature, if atomic variables are exposed across the ABI boundary.
|
|
def FeatureForcedAtomics : SubtargetFeature<
|
|
"forced-atomics", "HasForcedAtomics", "true",
|
|
"Assume that lock-free native-width atomics are available">;
|
|
def HasAtomicLdSt
|
|
: Predicate<"Subtarget->hasStdExtA() || Subtarget->hasForcedAtomics()">;
|
|
|
|
def FeatureTaggedGlobals : SubtargetFeature<"tagged-globals",
|
|
"AllowTaggedGlobals",
|
|
"true", "Use an instruction sequence for taking the address of a global "
|
|
"that allows a memory tag in the upper address bits">;
|