File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -88,16 +88,16 @@ have to support 32-bit memory addresses in their ABI.
8888* [Memory page limits][valid limits] and [Table entry limits][valid limits] are
8989 classified by their respective address types
9090 - ```
91- ⊦ it : k n <= k (m <= k)? (n < m)?
91+ ⊦ at : k n <= k (m <= k)? (n < m)?
9292 -------------------------------------------
93- ⊦ { min n, max m? } : it
93+ ⊦ { min n, max m? } : at
9494 ```
9595
9696* Memory and Table types are validated accordingly:
9797 - ```
98- ⊦ limits : it
98+ ⊦ limits : at
9999 --------------
100- ⊦ it limits ok
100+ ⊦ at limits ok
101101 ```
102102
103103* All [memory instructions][valid meminst] are changed to use the address type,
@@ -195,11 +195,11 @@ have to support 32-bit memory addresses in their ABI.
195195 ----------------------------------
196196 C ⊦ tables.fill x : [at t at] → []
197197 ```
198- - table.copy x y
198+ - table.copy d s
199199 - ```
200- C.tables[d] = aN limits t C.tables[s] = aM limits t K = min {aN, AM }
200+ C.tables[d] = aD limits t C.tables[s] = aS limits t aN = min {aD, aS }
201201 -----------------------------------------------------------------------------
202- C ⊦ table.copy d s : [aN aM aK ] → []
202+ C ⊦ table.copy d s : [aD aS aN ] → []
203203 ```
204204 - table.init x y
205205 - ```
You can’t perform that action at this time.
0 commit comments