master
h 26 lines 954 Bytes
Raw
1 /*
2 * QEMU disassembler -- RISC-V specific header (xthead*).
3 *
4 * Copyright (c) 2023 VRULL GmbH
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9 #ifndef DISAS_RISCV_XTHEAD_H
10 #define DISAS_RISCV_XTHEAD_H
11
12 #include "disas/riscv.h"
13
14 const rv_opcode_data *decode_xtheadba(rv_decode *, rv_isa);
15 const rv_opcode_data *decode_xtheadbb(rv_decode *, rv_isa);
16 const rv_opcode_data *decode_xtheadbs(rv_decode *, rv_isa);
17 const rv_opcode_data *decode_xtheadcmo(rv_decode *, rv_isa);
18 const rv_opcode_data *decode_xtheadcondmov(rv_decode *, rv_isa);
19 const rv_opcode_data *decode_xtheadfmemidx(rv_decode *, rv_isa);
20 const rv_opcode_data *decode_xtheadfmv(rv_decode *, rv_isa);
21 const rv_opcode_data *decode_xtheadmac(rv_decode *, rv_isa);
22 const rv_opcode_data *decode_xtheadmemidx(rv_decode *, rv_isa);
23 const rv_opcode_data *decode_xtheadmempair(rv_decode *, rv_isa);
24 const rv_opcode_data *decode_xtheadsync(rv_decode *, rv_isa);
25
26 #endif /* DISAS_RISCV_XTHEAD_H */