xref: /openbmc/qemu/target/riscv/insn32.decode (revision 2b7168fc)
1#
2# RISC-V translation routines for the RVXI Base Integer Instruction Set.
3#
4# Copyright (c) 2018 Peer Adelt, peer.adelt@hni.uni-paderborn.de
5#                    Bastian Koppelmann, kbastian@mail.uni-paderborn.de
6#
7# This program is free software; you can redistribute it and/or modify it
8# under the terms and conditions of the GNU General Public License,
9# version 2 or later, as published by the Free Software Foundation.
10#
11# This program is distributed in the hope it will be useful, but WITHOUT
12# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14# more details.
15#
16# You should have received a copy of the GNU General Public License along with
17# this program.  If not, see <http://www.gnu.org/licenses/>.
18
19# Fields:
20%rs3       27:5
21%rs2       20:5
22%rs1       15:5
23%rd        7:5
24
25%sh10    20:10
26%csr    20:12
27%rm     12:3
28
29# immediates:
30%imm_i    20:s12
31%imm_s    25:s7 7:5
32%imm_b    31:s1 7:1 25:6 8:4     !function=ex_shift_1
33%imm_j    31:s1 12:8 20:1 21:10  !function=ex_shift_1
34%imm_u    12:s20                 !function=ex_shift_12
35
36# Argument sets:
37&empty
38&b    imm rs2 rs1
39&i    imm rs1 rd
40&j    imm rd
41&r    rd rs1 rs2
42&s    imm rs1 rs2
43&u    imm rd
44&shift     shamt rs1 rd
45&atomic    aq rl rs2 rs1 rd
46
47# Formats 32:
48@r       .......   ..... ..... ... ..... ....... &r                %rs2 %rs1 %rd
49@i       ............    ..... ... ..... ....... &i      imm=%imm_i     %rs1 %rd
50@b       .......   ..... ..... ... ..... ....... &b      imm=%imm_b %rs2 %rs1
51@s       .......   ..... ..... ... ..... ....... &s      imm=%imm_s %rs2 %rs1
52@u       ....................      ..... ....... &u      imm=%imm_u          %rd
53@j       ....................      ..... ....... &j      imm=%imm_j          %rd
54
55@sh      ......  ...... .....  ... ..... ....... &shift  shamt=%sh10      %rs1 %rd
56@csr     ............   .....  ... ..... .......               %csr     %rs1 %rd
57
58@atom_ld ..... aq:1 rl:1 ..... ........ ..... ....... &atomic rs2=0     %rs1 %rd
59@atom_st ..... aq:1 rl:1 ..... ........ ..... ....... &atomic %rs2      %rs1 %rd
60
61@r4_rm   ..... ..  ..... ..... ... ..... ....... %rs3 %rs2 %rs1 %rm %rd
62@r_rm    .......   ..... ..... ... ..... ....... %rs2 %rs1 %rm %rd
63@r2_rm   .......   ..... ..... ... ..... ....... %rs1 %rm %rd
64@r2      .......   ..... ..... ... ..... ....... %rs1 %rd
65@r2_zimm . zimm:11  ..... ... ..... ....... %rs1 %rd
66
67@hfence_gvma ....... ..... .....   ... ..... ....... %rs2 %rs1
68@hfence_vvma ....... ..... .....   ... ..... ....... %rs2 %rs1
69
70@sfence_vma ....... ..... .....   ... ..... ....... %rs2 %rs1
71@sfence_vm  ....... ..... .....   ... ..... ....... %rs1
72
73
74# *** Privileged Instructions ***
75ecall       000000000000     00000 000 00000 1110011
76ebreak      000000000001     00000 000 00000 1110011
77uret        0000000    00010 00000 000 00000 1110011
78sret        0001000    00010 00000 000 00000 1110011
79mret        0011000    00010 00000 000 00000 1110011
80wfi         0001000    00101 00000 000 00000 1110011
81sfence_vma  0001001    ..... ..... 000 00000 1110011 @sfence_vma
82sfence_vm   0001000    00100 ..... 000 00000 1110011 @sfence_vm
83
84# *** RV32I Base Instruction Set ***
85lui      ....................       ..... 0110111 @u
86auipc    ....................       ..... 0010111 @u
87jal      ....................       ..... 1101111 @j
88jalr     ............     ..... 000 ..... 1100111 @i
89beq      ....... .....    ..... 000 ..... 1100011 @b
90bne      ....... .....    ..... 001 ..... 1100011 @b
91blt      ....... .....    ..... 100 ..... 1100011 @b
92bge      ....... .....    ..... 101 ..... 1100011 @b
93bltu     ....... .....    ..... 110 ..... 1100011 @b
94bgeu     ....... .....    ..... 111 ..... 1100011 @b
95lb       ............     ..... 000 ..... 0000011 @i
96lh       ............     ..... 001 ..... 0000011 @i
97lw       ............     ..... 010 ..... 0000011 @i
98lbu      ............     ..... 100 ..... 0000011 @i
99lhu      ............     ..... 101 ..... 0000011 @i
100sb       .......  .....   ..... 000 ..... 0100011 @s
101sh       .......  .....   ..... 001 ..... 0100011 @s
102sw       .......  .....   ..... 010 ..... 0100011 @s
103addi     ............     ..... 000 ..... 0010011 @i
104slti     ............     ..... 010 ..... 0010011 @i
105sltiu    ............     ..... 011 ..... 0010011 @i
106xori     ............     ..... 100 ..... 0010011 @i
107ori      ............     ..... 110 ..... 0010011 @i
108andi     ............     ..... 111 ..... 0010011 @i
109slli     00.... ......    ..... 001 ..... 0010011 @sh
110srli     00.... ......    ..... 101 ..... 0010011 @sh
111srai     01.... ......    ..... 101 ..... 0010011 @sh
112add      0000000 .....    ..... 000 ..... 0110011 @r
113sub      0100000 .....    ..... 000 ..... 0110011 @r
114sll      0000000 .....    ..... 001 ..... 0110011 @r
115slt      0000000 .....    ..... 010 ..... 0110011 @r
116sltu     0000000 .....    ..... 011 ..... 0110011 @r
117xor      0000000 .....    ..... 100 ..... 0110011 @r
118srl      0000000 .....    ..... 101 ..... 0110011 @r
119sra      0100000 .....    ..... 101 ..... 0110011 @r
120or       0000000 .....    ..... 110 ..... 0110011 @r
121and      0000000 .....    ..... 111 ..... 0110011 @r
122fence    ---- pred:4 succ:4 ----- 000 ----- 0001111
123fence_i  ---- ----   ----   ----- 001 ----- 0001111
124csrrw    ............     ..... 001 ..... 1110011 @csr
125csrrs    ............     ..... 010 ..... 1110011 @csr
126csrrc    ............     ..... 011 ..... 1110011 @csr
127csrrwi   ............     ..... 101 ..... 1110011 @csr
128csrrsi   ............     ..... 110 ..... 1110011 @csr
129csrrci   ............     ..... 111 ..... 1110011 @csr
130
131# *** RV32M Standard Extension ***
132mul      0000001 .....  ..... 000 ..... 0110011 @r
133mulh     0000001 .....  ..... 001 ..... 0110011 @r
134mulhsu   0000001 .....  ..... 010 ..... 0110011 @r
135mulhu    0000001 .....  ..... 011 ..... 0110011 @r
136div      0000001 .....  ..... 100 ..... 0110011 @r
137divu     0000001 .....  ..... 101 ..... 0110011 @r
138rem      0000001 .....  ..... 110 ..... 0110011 @r
139remu     0000001 .....  ..... 111 ..... 0110011 @r
140
141# *** RV32A Standard Extension ***
142lr_w       00010 . . 00000 ..... 010 ..... 0101111 @atom_ld
143sc_w       00011 . . ..... ..... 010 ..... 0101111 @atom_st
144amoswap_w  00001 . . ..... ..... 010 ..... 0101111 @atom_st
145amoadd_w   00000 . . ..... ..... 010 ..... 0101111 @atom_st
146amoxor_w   00100 . . ..... ..... 010 ..... 0101111 @atom_st
147amoand_w   01100 . . ..... ..... 010 ..... 0101111 @atom_st
148amoor_w    01000 . . ..... ..... 010 ..... 0101111 @atom_st
149amomin_w   10000 . . ..... ..... 010 ..... 0101111 @atom_st
150amomax_w   10100 . . ..... ..... 010 ..... 0101111 @atom_st
151amominu_w  11000 . . ..... ..... 010 ..... 0101111 @atom_st
152amomaxu_w  11100 . . ..... ..... 010 ..... 0101111 @atom_st
153
154# *** RV32F Standard Extension ***
155flw        ............   ..... 010 ..... 0000111 @i
156fsw        .......  ..... ..... 010 ..... 0100111 @s
157fmadd_s    ..... 00 ..... ..... ... ..... 1000011 @r4_rm
158fmsub_s    ..... 00 ..... ..... ... ..... 1000111 @r4_rm
159fnmsub_s   ..... 00 ..... ..... ... ..... 1001011 @r4_rm
160fnmadd_s   ..... 00 ..... ..... ... ..... 1001111 @r4_rm
161fadd_s     0000000  ..... ..... ... ..... 1010011 @r_rm
162fsub_s     0000100  ..... ..... ... ..... 1010011 @r_rm
163fmul_s     0001000  ..... ..... ... ..... 1010011 @r_rm
164fdiv_s     0001100  ..... ..... ... ..... 1010011 @r_rm
165fsqrt_s    0101100  00000 ..... ... ..... 1010011 @r2_rm
166fsgnj_s    0010000  ..... ..... 000 ..... 1010011 @r
167fsgnjn_s   0010000  ..... ..... 001 ..... 1010011 @r
168fsgnjx_s   0010000  ..... ..... 010 ..... 1010011 @r
169fmin_s     0010100  ..... ..... 000 ..... 1010011 @r
170fmax_s     0010100  ..... ..... 001 ..... 1010011 @r
171fcvt_w_s   1100000  00000 ..... ... ..... 1010011 @r2_rm
172fcvt_wu_s  1100000  00001 ..... ... ..... 1010011 @r2_rm
173fmv_x_w    1110000  00000 ..... 000 ..... 1010011 @r2
174feq_s      1010000  ..... ..... 010 ..... 1010011 @r
175flt_s      1010000  ..... ..... 001 ..... 1010011 @r
176fle_s      1010000  ..... ..... 000 ..... 1010011 @r
177fclass_s   1110000  00000 ..... 001 ..... 1010011 @r2
178fcvt_s_w   1101000  00000 ..... ... ..... 1010011 @r2_rm
179fcvt_s_wu  1101000  00001 ..... ... ..... 1010011 @r2_rm
180fmv_w_x    1111000  00000 ..... 000 ..... 1010011 @r2
181
182# *** RV32D Standard Extension ***
183fld        ............   ..... 011 ..... 0000111 @i
184fsd        ....... .....  ..... 011 ..... 0100111 @s
185fmadd_d    ..... 01 ..... ..... ... ..... 1000011 @r4_rm
186fmsub_d    ..... 01 ..... ..... ... ..... 1000111 @r4_rm
187fnmsub_d   ..... 01 ..... ..... ... ..... 1001011 @r4_rm
188fnmadd_d   ..... 01 ..... ..... ... ..... 1001111 @r4_rm
189fadd_d     0000001  ..... ..... ... ..... 1010011 @r_rm
190fsub_d     0000101  ..... ..... ... ..... 1010011 @r_rm
191fmul_d     0001001  ..... ..... ... ..... 1010011 @r_rm
192fdiv_d     0001101  ..... ..... ... ..... 1010011 @r_rm
193fsqrt_d    0101101  00000 ..... ... ..... 1010011 @r2_rm
194fsgnj_d    0010001  ..... ..... 000 ..... 1010011 @r
195fsgnjn_d   0010001  ..... ..... 001 ..... 1010011 @r
196fsgnjx_d   0010001  ..... ..... 010 ..... 1010011 @r
197fmin_d     0010101  ..... ..... 000 ..... 1010011 @r
198fmax_d     0010101  ..... ..... 001 ..... 1010011 @r
199fcvt_s_d   0100000  00001 ..... ... ..... 1010011 @r2_rm
200fcvt_d_s   0100001  00000 ..... ... ..... 1010011 @r2_rm
201feq_d      1010001  ..... ..... 010 ..... 1010011 @r
202flt_d      1010001  ..... ..... 001 ..... 1010011 @r
203fle_d      1010001  ..... ..... 000 ..... 1010011 @r
204fclass_d   1110001  00000 ..... 001 ..... 1010011 @r2
205fcvt_w_d   1100001  00000 ..... ... ..... 1010011 @r2_rm
206fcvt_wu_d  1100001  00001 ..... ... ..... 1010011 @r2_rm
207fcvt_d_w   1101001  00000 ..... ... ..... 1010011 @r2_rm
208fcvt_d_wu  1101001  00001 ..... ... ..... 1010011 @r2_rm
209
210# *** RV32H Base Instruction Set ***
211hfence_gvma 0110001  .....  ..... 000 00000 1110011 @hfence_gvma
212hfence_vvma 0010001  .....  ..... 000 00000 1110011 @hfence_vvma
213
214# *** RV32V Extension ***
215vsetvli         0 ........... ..... 111 ..... 1010111  @r2_zimm
216vsetvl          1000000 ..... ..... 111 ..... 1010111  @r
217