(no commit message)
authorlkcl <lkcl@web>
Sun, 23 Jun 2019 15:42:05 +0000 (16:42 +0100)
committerIkiWiki <ikiwiki.info>
Sun, 23 Jun 2019 15:42:05 +0000 (16:42 +0100)
simple_v_extension/sv_prefix_proposal.rst

index 2224466657a664789aa65a6e836f85bfd041e542..5026f925391e36c8e4f0f6ca92208ad08dd86d55 100644 (file)
@@ -21,7 +21,7 @@ Conventions used in this document:
 * Operations work on variable-length vectors of sub-vectors up to *VL* in length, where each sub-vector has a length *svlen*, and *svlen* elements of type *etype*.
 * The actual total number of elements is therefore *svlen* times *VL*.
 * When the vectors are stored in registers, all elements are packed so that there is no padding in-between elements of the same vector.
-* The register file itself is thus best viewed as a byte-level SRAM that is typecast to an array of *etype*s
+* The register file itself is thus best viewed as a byte-level SRAM that is typecast to an array of *etypes*
 * The number of bytes in a sub-vector, *svsz*, is the product of *svlen* and the element size in bytes.
 
 Options
@@ -32,10 +32,10 @@ The following partial / full implementation options are possible:
 * SVPrefix augments the main Specification_
 * SVPregix operates independently, without the main spec VL (and MVL) CSRs (in any priv level)
 * SVPrefix operates independently, without the main spec SUBVL CSRs (in any priv level)
-* SVPrefix operates independently, with no support for VL (or MVL) overrides in the 64 bit instruction format either (VLtyp=0 as the only legal permitted value)
-* SVPrefix operates independently, with no support for svlen overrides in either the 48 or 64 bit instruction format either (svlen=0 as the only legal permitted value).
+* SVPrefix has no support for VL (or MVL) overrides in the 64 bit instruction format (VLtyp=0 as the only legal permitted value)
+* SVPrefix has no support for svlen overrides in either the 48 or 64 bit instruction format either (svlen=0 as the only legal permitted value).
 
-All permutations of the above options are permitted, and the UNIX platform must raise illegal instruction exceptions on implementations that do not support each option.  For example, an implementation that has no support for VLtyp that sees a nonzero VLtyp must raise an illegal instruction exception.
+All permutations of the above options are permitted, and the UNIX platform must raise illegal instruction exceptions on implementations that do not support each option.  For example, an implementation that has no support for VLtyp that sees an opcode with a nonzero VLtyp must raise an illegal instruction exception.
 
 Note that SVPrefix (VLtyp and svlen) and the main spec share (modify) the STATE CSR. P48 and P64 opcodes must **NOT** set VLtyp or svlen inside loops that also use VL or SUBVL. Doing so will result in undefined behaviour, as STATE will be affected by doing so.