mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
target/openrisc: Implement l.adrp
This was added to the 1.3 spec. Reviewed-by: Stafford Horne <shorne@gmail.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
a465772eea
commit
3e0e41ef33
3 changed files with 16 additions and 0 deletions
|
@ -98,6 +98,7 @@ INSN(sw, "%d(r%d), r%d", a->i, a->a, a->b)
|
|||
INSN(sb, "%d(r%d), r%d", a->i, a->a, a->b)
|
||||
INSN(sh, "%d(r%d), r%d", a->i, a->a, a->b)
|
||||
INSN(nop, "")
|
||||
INSN(adrp, "r%d, %d", a->d, a->i)
|
||||
INSN(addi, "r%d, r%d, %d", a->d, a->a, a->i)
|
||||
INSN(addic, "r%d, r%d, %d", a->d, a->a, a->i)
|
||||
INSN(muli, "r%d, r%d, %d", a->d, a->a, a->i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue