diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-21 14:27:15 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-04-21 14:27:15 -0400 |
commit | 1c96401f0cf3f7b77488e306705c2ea946149b36 (patch) | |
tree | 51cf08ffb5d055e1e9945cac6909bde15bf58c2a /doc/il.txt | |
parent | 5053577e0e9776ef4854c384fc8dd145be29bb07 (diff) | |
download | roux-1c96401f0cf3f7b77488e306705c2ea946149b36.tar.gz |
oops fix wrong instruction names in doc
Diffstat (limited to 'doc/il.txt')
-rw-r--r-- | doc/il.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/il.txt b/doc/il.txt index 9179eda..d11699b 100644 --- a/doc/il.txt +++ b/doc/il.txt @@ -553,9 +553,9 @@ towards zero. * `loadd` -- `d(m)` * `loads` -- `s(m)` * `loadl` -- `l(m)` - * `loadsw`, `loadzw` -- `I(mm)` - * `loadsh`, `loadzh` -- `I(mm)` - * `loadsb`, `loadzb` -- `I(mm)` + * `loadsw`, `loaduw` -- `I(mm)` + * `loadsh`, `loaduh` -- `I(mm)` + * `loadsb`, `loadub` -- `I(mm)` For types smaller than long, two variants of the load instruction is available: one will sign extend the value @@ -563,7 +563,7 @@ towards zero. all loads smaller than long can load to either a long or a word. - The two instructions `loadsw` and `loadzw` have the same + The two instructions `loadsw` and `loaduw` have the same effect when they are used to define a word temporary. A `loadw` instruction is provided as syntactic sugar for `loadsw` to make explicit that the extension mechanism @@ -656,9 +656,9 @@ the value of the source type. Conversions can extend the precision of a temporary (e.g. from signed 8 bits to 32 bits), or convert a floating point into an integer and vice versa. - * `extsw`, `extzw` -- `l(w)` - * `extsh`, `extzh` -- `I(ww)` - * `extsb`, `extzb` -- `I(ww)` + * `extsw`, `extuw` -- `l(w)` + * `extsh`, `extuh` -- `I(ww)` + * `extsb`, `extub` -- `I(ww)` * `exts` -- `d(s)` * `truncd` -- `s(d)` * `ftosi` -- `I(F)` |