| Summary: | SVP64 LD/ST auto-increment mode (working with LDST-update) | ||
|---|---|---|---|
| Product: | Libre-SOC's first SoC | Reporter: | Luke Kenneth Casson Leighton <lkcl> |
| Component: | Specification | Assignee: | Luke Kenneth Casson Leighton <lkcl> |
| Status: | CONFIRMED --- | ||
| Severity: | enhancement | CC: | libre-soc-isa |
| Priority: | --- | ||
| Version: | unspecified | ||
| Hardware: | Other | ||
| OS: | Linux | ||
| URL: | https://libre-soc.org/openpower/sv/ldst/ | ||
| NLnet milestone: | --- | total budget (EUR) for completion of task and all subtasks: | 0 |
| budget (EUR) for this task, excluding subtasks' budget: | 0 | parent task for budget allocation: | |
| child tasks for budget allocation: | The table of payments (in EUR) for this task; TOML format: | ||
|
Description
Luke Kenneth Casson Leighton
2022-10-03 17:16:20 BST
in LD/ST-immediate there is a mode-combination reserved, which can be used
for saying "use RA only as the EA, but write out (RA+imm) as the update".
this is a significant change as it means modifying the pseudocode:
ea <- RA+D
if preincrement then EA <- ea
else EA <- RA
RT -< MEM(EA, sz)
RA <- ea
with a default "preincrement=1" in Scalar ISA
in progress, experimental, separate branch https://git.libre-soc.org/?p=openpower-isa.git;a=commitdiff;h=daf2ab55feac8ff1a9ffb8fdf2f5182594513a9a pseudocode: https://git.libre-soc.org/?p=openpower-isa.git;a=blob;f=openpower/isa/pifixedload.mdwn;hb=HEAD |