diff options
author | Andrew Waterman <andrew@sifive.com> | 2020-03-03 18:09:58 -0800 |
---|---|---|
committer | Andrew Waterman <andrew@sifive.com> | 2020-03-03 18:09:58 -0800 |
commit | c7e17632237219090791ba67dd700c2fca432e20 (patch) | |
tree | f27522c5cb17b88ed7fd487f6e95dbefb8319fe9 /opcodes-rv32q | |
parent | 5d52b6321b02840d2a64f1663900f15b7c9f22a2 (diff) | |
download | riscv-opcodes-c7e17632237219090791ba67dd700c2fca432e20.zip riscv-opcodes-c7e17632237219090791ba67dd700c2fca432e20.tar.gz riscv-opcodes-c7e17632237219090791ba67dd700c2fca432e20.tar.bz2 |
Factor out opcodes into per-extension files
Diffstat (limited to 'opcodes-rv32q')
-rw-r--r-- | opcodes-rv32q | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/opcodes-rv32q b/opcodes-rv32q new file mode 100644 index 0000000..c28fcbd --- /dev/null +++ b/opcodes-rv32q @@ -0,0 +1,38 @@ +fadd.q rd rs1 rs2 31..27=0x00 rm 26..25=3 6..2=0x14 1..0=3 +fsub.q rd rs1 rs2 31..27=0x01 rm 26..25=3 6..2=0x14 1..0=3 +fmul.q rd rs1 rs2 31..27=0x02 rm 26..25=3 6..2=0x14 1..0=3 +fdiv.q rd rs1 rs2 31..27=0x03 rm 26..25=3 6..2=0x14 1..0=3 +fsgnj.q rd rs1 rs2 31..27=0x04 14..12=0 26..25=3 6..2=0x14 1..0=3 +fsgnjn.q rd rs1 rs2 31..27=0x04 14..12=1 26..25=3 6..2=0x14 1..0=3 +fsgnjx.q rd rs1 rs2 31..27=0x04 14..12=2 26..25=3 6..2=0x14 1..0=3 +fmin.q rd rs1 rs2 31..27=0x05 14..12=0 26..25=3 6..2=0x14 1..0=3 +fmax.q rd rs1 rs2 31..27=0x05 14..12=1 26..25=3 6..2=0x14 1..0=3 +fcvt.s.q rd rs1 24..20=3 31..27=0x08 rm 26..25=0 6..2=0x14 1..0=3 +fcvt.q.s rd rs1 24..20=0 31..27=0x08 rm 26..25=3 6..2=0x14 1..0=3 +fcvt.d.q rd rs1 24..20=3 31..27=0x08 rm 26..25=1 6..2=0x14 1..0=3 +fcvt.q.d rd rs1 24..20=1 31..27=0x08 rm 26..25=3 6..2=0x14 1..0=3 +fsqrt.q rd rs1 24..20=0 31..27=0x0B rm 26..25=3 6..2=0x14 1..0=3 + + + +fle.q rd rs1 rs2 31..27=0x14 14..12=0 26..25=3 6..2=0x14 1..0=3 +flt.q rd rs1 rs2 31..27=0x14 14..12=1 26..25=3 6..2=0x14 1..0=3 +feq.q rd rs1 rs2 31..27=0x14 14..12=2 26..25=3 6..2=0x14 1..0=3 + + +fcvt.w.q rd rs1 24..20=0 31..27=0x18 rm 26..25=3 6..2=0x14 1..0=3 +fcvt.wu.q rd rs1 24..20=1 31..27=0x18 rm 26..25=3 6..2=0x14 1..0=3 +fclass.q rd rs1 24..20=0 31..27=0x1C 14..12=1 26..25=3 6..2=0x14 1..0=3 + + +fcvt.q.w rd rs1 24..20=0 31..27=0x1A rm 26..25=3 6..2=0x14 1..0=3 +fcvt.q.wu rd rs1 24..20=1 31..27=0x1A rm 26..25=3 6..2=0x14 1..0=3 + +flq rd rs1 imm12 14..12=4 6..2=0x01 1..0=3 + +fsq imm12hi rs1 rs2 imm12lo 14..12=4 6..2=0x09 1..0=3 + +fmadd.q rd rs1 rs2 rs3 rm 26..25=3 6..2=0x10 1..0=3 +fmsub.q rd rs1 rs2 rs3 rm 26..25=3 6..2=0x11 1..0=3 +fnmsub.q rd rs1 rs2 rs3 rm 26..25=3 6..2=0x12 1..0=3 +fnmadd.q rd rs1 rs2 rs3 rm 26..25=3 6..2=0x13 1..0=3 |