Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions parts/cap-man-insn.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ github_ref:SPLIT[Sail definition]
* `Invalid capability (25)`
- `x[rs1].valid` is `0` (invalid).
* `Unexpected capability type (26)`
- `x[rs1].type` is neither `0` (linear) nor `1` (non-linear).
- `x[rs1].type` is not `0` (linear), `1` (non-linear) or `3` (uninitialised).
* `Illegal operand value (29)`
- `x[rs2] \<= x[rs1].base` or `x[rs2] >= x[rs1].end`.
****
Expand All @@ -299,8 +299,9 @@ github_ref:SPLIT[Sail definition]
// in case rs2 = rd
. Set `val` to `x[rs2]`.
. Write `x[rs1]` to `x[rd]`.
. Set `x[rs1].end` to `val`, `x[rs1].cursor` to `x[rs1].base`.
. Set `x[rd].base` to `val`, `x[rd].cursor` to `val`.
. Set `x[rs1].end` to `val`, and `x[rd].base` to `val`.
. If `x[rs1].cursor < val`, set `x[rd].cursor` to `val`.
. If `x[rs1].cursor >= val`, set `x[rs1].cursor` to `val`.
====

[#tighten]
Expand Down
8 changes: 4 additions & 4 deletions parts/cmp.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ in the following table.
|SEAL | CSealEntry | -
|CIncOffset | CIncOffset | CIncAddr
|CIncOffsetImm | CIncOffsetImm | CIncAddrImm
|LCC | CGetAddr, CGetBase, CGetType, CGetPerm | CGetAddr, CGetBase, CGetTop, CGetType, CGetPerm
|LCC | CGetAddr, CGetBase, CGetOffset, CGetType, CGetPerm | CGetAddr, CGetBase, CGetTop, CGetType, CGetPerm
|SCC | CSetAddr | CSetAddr
|TIGHTEN | CAndPerm | CAndPerm
|SHRINK | CSetBounds, CSetBoundsExact | CSetBounds, CSetBoundsExact
|MOVC | CMove | CMove
|LDC | LC.CAP, LC.DDC, CLC | CLC
|STC | SC.CAP, LC.DDC, CSC | CSC
|L[BHWD] | L[BHWD][U].CAP | L[BHWD][U]
|S[BHWD] | S[BHWD][U].CAP | S[BHWD][U]
|STC | SC.CAP, SC.DDC, CSC | CSC
|L[BHWD][U] | L[BHWD][U].CAP, L[BHWD][U].DDC | L[BHWD][U]
|S[BHWD][U] | S[BHWD][U].CAP, S[BHWD][U].DDC | S[BHWD][U]
|CCSRRW | CSpecialRW | CSpecialRW
|===

Expand Down
2 changes: 1 addition & 1 deletion parts/version.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:reproducible:

*Version Information:* Version 1.0
*Version Information:* Version 1.01

ifdef::backend-html5[]
*Other formats:* This document is also available in the following formats:
Expand Down