2016-11-02 00:45:57 +08:00
|
|
|
/* riscv.h. RISC-V opcode list for GDB, the GNU debugger.
|
2022-01-02 06:30:17 +08:00
|
|
|
Copyright (C) 2011-2022 Free Software Foundation, Inc.
|
2016-11-02 00:45:57 +08:00
|
|
|
Contributed by Andrew Waterman
|
|
|
|
|
|
|
|
This file is part of GDB, GAS, and the GNU binutils.
|
|
|
|
|
|
|
|
GDB, GAS, and the GNU binutils are free software; you can redistribute
|
|
|
|
them and/or modify them under the terms of the GNU General Public
|
|
|
|
License as published by the Free Software Foundation; either version
|
|
|
|
3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GDB, GAS, and the GNU binutils are distributed in the hope that they
|
|
|
|
will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
|
|
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|
|
|
the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; see the file COPYING3. If not,
|
|
|
|
see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#ifndef _RISCV_H_
|
|
|
|
#define _RISCV_H_
|
|
|
|
|
|
|
|
#include "riscv-opc.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
typedef uint64_t insn_t;
|
|
|
|
|
|
|
|
static inline unsigned int riscv_insn_length (insn_t insn)
|
|
|
|
{
|
2021-01-13 10:05:48 +08:00
|
|
|
if ((insn & 0x3) != 0x3) /* RVC instructions. */
|
2016-11-02 00:45:57 +08:00
|
|
|
return 2;
|
2021-01-13 10:05:48 +08:00
|
|
|
if ((insn & 0x1f) != 0x1f) /* 32-bit instructions. */
|
2016-11-02 00:45:57 +08:00
|
|
|
return 4;
|
2021-01-13 10:05:48 +08:00
|
|
|
if ((insn & 0x3f) == 0x1f) /* 48-bit instructions. */
|
2016-11-02 00:45:57 +08:00
|
|
|
return 6;
|
2021-01-13 10:05:48 +08:00
|
|
|
if ((insn & 0x7f) == 0x3f) /* 64-bit instructions. */
|
2016-11-02 00:45:57 +08:00
|
|
|
return 8;
|
|
|
|
/* Longer instructions not supported at the moment. */
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * const riscv_rm[8] =
|
|
|
|
{
|
|
|
|
"rne", "rtz", "rdn", "rup", "rmm", 0, 0, "dyn"
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char * const riscv_pred_succ[16] =
|
|
|
|
{
|
|
|
|
0, "w", "r", "rw", "o", "ow", "or", "orw",
|
|
|
|
"i", "iw", "ir", "irw", "io", "iow", "ior", "iorw"
|
|
|
|
};
|
|
|
|
|
|
|
|
#define RVC_JUMP_BITS 11
|
|
|
|
#define RVC_JUMP_REACH ((1ULL << RVC_JUMP_BITS) * RISCV_JUMP_ALIGN)
|
|
|
|
|
|
|
|
#define RVC_BRANCH_BITS 8
|
|
|
|
#define RVC_BRANCH_REACH ((1ULL << RVC_BRANCH_BITS) * RISCV_BRANCH_ALIGN)
|
|
|
|
|
|
|
|
#define RV_X(x, s, n) (((x) >> (s)) & ((1 << (n)) - 1))
|
|
|
|
#define RV_IMM_SIGN(x) (-(((x) >> 31) & 1))
|
|
|
|
|
|
|
|
#define EXTRACT_ITYPE_IMM(x) \
|
|
|
|
(RV_X(x, 20, 12) | (RV_IMM_SIGN(x) << 12))
|
|
|
|
#define EXTRACT_STYPE_IMM(x) \
|
|
|
|
(RV_X(x, 7, 5) | (RV_X(x, 25, 7) << 5) | (RV_IMM_SIGN(x) << 12))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_BTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 8, 4) << 1) | (RV_X(x, 25, 6) << 5) | (RV_X(x, 7, 1) << 11) | (RV_IMM_SIGN(x) << 12))
|
|
|
|
#define EXTRACT_UTYPE_IMM(x) \
|
|
|
|
((RV_X(x, 12, 20) << 12) | (RV_IMM_SIGN(x) << 32))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_JTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 21, 10) << 1) | (RV_X(x, 20, 1) << 11) | (RV_X(x, 12, 8) << 12) | (RV_IMM_SIGN(x) << 20))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CITYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
(RV_X(x, 2, 5) | (-RV_X(x, 12, 1) << 5))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CITYPE_LUI_IMM(x) \
|
|
|
|
(EXTRACT_CITYPE_IMM (x) << RISCV_IMM_BITS)
|
|
|
|
#define EXTRACT_CITYPE_ADDI16SP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 6, 1) << 4) | (RV_X(x, 2, 1) << 5) | (RV_X(x, 5, 1) << 6) | (RV_X(x, 3, 2) << 7) | (-RV_X(x, 12, 1) << 9))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CITYPE_LWSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 4, 3) << 2) | (RV_X(x, 12, 1) << 5) | (RV_X(x, 2, 2) << 6))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CITYPE_LDSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 5, 2) << 3) | (RV_X(x, 12, 1) << 5) | (RV_X(x, 2, 3) << 6))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CSSTYPE_IMM(x) \
|
|
|
|
(RV_X(x, 7, 6) << 0)
|
|
|
|
#define EXTRACT_CSSTYPE_SWSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 9, 4) << 2) | (RV_X(x, 7, 2) << 6))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CSSTYPE_SDSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 10, 3) << 3) | (RV_X(x, 7, 3) << 6))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CIWTYPE_IMM(x) \
|
|
|
|
(RV_X(x, 5, 8))
|
|
|
|
#define EXTRACT_CIWTYPE_ADDI4SPN_IMM(x) \
|
|
|
|
((RV_X(x, 6, 1) << 2) | (RV_X(x, 5, 1) << 3) | (RV_X(x, 11, 2) << 4) | (RV_X(x, 7, 4) << 6))
|
|
|
|
#define EXTRACT_CLTYPE_IMM(x) \
|
|
|
|
((RV_X(x, 5, 2) << 0) | (RV_X(x, 10, 3) << 2))
|
|
|
|
#define EXTRACT_CLTYPE_LW_IMM(x) \
|
|
|
|
((RV_X(x, 6, 1) << 2) | (RV_X(x, 10, 3) << 3) | (RV_X(x, 5, 1) << 6))
|
|
|
|
#define EXTRACT_CLTYPE_LD_IMM(x) \
|
|
|
|
((RV_X(x, 10, 3) << 3) | (RV_X(x, 5, 2) << 6))
|
|
|
|
#define EXTRACT_CBTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 3, 2) << 1) | (RV_X(x, 10, 2) << 3) | (RV_X(x, 2, 1) << 5) | (RV_X(x, 5, 2) << 6) | (-RV_X(x, 12, 1) << 8))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define EXTRACT_CJTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 3, 3) << 1) | (RV_X(x, 11, 1) << 4) | (RV_X(x, 2, 1) << 5) | (RV_X(x, 7, 1) << 6) | (RV_X(x, 6, 1) << 7) | (RV_X(x, 9, 2) << 8) | (RV_X(x, 8, 1) << 10) | (-RV_X(x, 12, 1) << 11))
|
2021-11-17 18:46:11 +08:00
|
|
|
#define EXTRACT_RVV_VI_IMM(x) \
|
|
|
|
(RV_X(x, 15, 5) | (-RV_X(x, 19, 1) << 5))
|
|
|
|
#define EXTRACT_RVV_VI_UIMM(x) \
|
|
|
|
(RV_X(x, 15, 5))
|
|
|
|
#define EXTRACT_RVV_OFFSET(x) \
|
|
|
|
(RV_X(x, 29, 3))
|
|
|
|
#define EXTRACT_RVV_VB_IMM(x) \
|
|
|
|
(RV_X(x, 20, 10))
|
|
|
|
#define EXTRACT_RVV_VC_IMM(x) \
|
|
|
|
(RV_X(x, 20, 11))
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
#define ENCODE_ITYPE_IMM(x) \
|
|
|
|
(RV_X(x, 0, 12) << 20)
|
|
|
|
#define ENCODE_STYPE_IMM(x) \
|
|
|
|
((RV_X(x, 0, 5) << 7) | (RV_X(x, 5, 7) << 25))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_BTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 1, 4) << 8) | (RV_X(x, 5, 6) << 25) | (RV_X(x, 11, 1) << 7) | (RV_X(x, 12, 1) << 31))
|
|
|
|
#define ENCODE_UTYPE_IMM(x) \
|
|
|
|
(RV_X(x, 12, 20) << 12)
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_JTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 1, 10) << 21) | (RV_X(x, 11, 1) << 20) | (RV_X(x, 12, 8) << 12) | (RV_X(x, 20, 1) << 31))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CITYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 0, 5) << 2) | (RV_X(x, 5, 1) << 12))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CITYPE_LUI_IMM(x) \
|
|
|
|
ENCODE_CITYPE_IMM ((x) >> RISCV_IMM_BITS)
|
|
|
|
#define ENCODE_CITYPE_ADDI16SP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 4, 1) << 6) | (RV_X(x, 5, 1) << 2) | (RV_X(x, 6, 1) << 5) | (RV_X(x, 7, 2) << 3) | (RV_X(x, 9, 1) << 12))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CITYPE_LWSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 2, 3) << 4) | (RV_X(x, 5, 1) << 12) | (RV_X(x, 6, 2) << 2))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CITYPE_LDSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 3, 2) << 5) | (RV_X(x, 5, 1) << 12) | (RV_X(x, 6, 3) << 2))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CSSTYPE_IMM(x) \
|
|
|
|
(RV_X(x, 0, 6) << 7)
|
|
|
|
#define ENCODE_CSSTYPE_SWSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 2, 4) << 9) | (RV_X(x, 6, 2) << 7))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CSSTYPE_SDSP_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 3, 3) << 10) | (RV_X(x, 6, 3) << 7))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CIWTYPE_IMM(x) \
|
|
|
|
(RV_X(x, 0, 8) << 5)
|
|
|
|
#define ENCODE_CIWTYPE_ADDI4SPN_IMM(x) \
|
|
|
|
((RV_X(x, 2, 1) << 6) | (RV_X(x, 3, 1) << 5) | (RV_X(x, 4, 2) << 11) | (RV_X(x, 6, 4) << 7))
|
|
|
|
#define ENCODE_CLTYPE_IMM(x) \
|
|
|
|
((RV_X(x, 0, 2) << 5) | (RV_X(x, 2, 3) << 10))
|
|
|
|
#define ENCODE_CLTYPE_LW_IMM(x) \
|
|
|
|
((RV_X(x, 2, 1) << 6) | (RV_X(x, 3, 3) << 10) | (RV_X(x, 6, 1) << 5))
|
|
|
|
#define ENCODE_CLTYPE_LD_IMM(x) \
|
|
|
|
((RV_X(x, 3, 3) << 10) | (RV_X(x, 6, 2) << 5))
|
|
|
|
#define ENCODE_CBTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 1, 2) << 3) | (RV_X(x, 3, 2) << 10) | (RV_X(x, 5, 1) << 2) | (RV_X(x, 6, 2) << 5) | (RV_X(x, 8, 1) << 12))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define ENCODE_CJTYPE_IMM(x) \
|
2016-11-02 00:45:57 +08:00
|
|
|
((RV_X(x, 1, 3) << 3) | (RV_X(x, 4, 1) << 11) | (RV_X(x, 5, 1) << 2) | (RV_X(x, 6, 1) << 7) | (RV_X(x, 7, 1) << 6) | (RV_X(x, 8, 2) << 9) | (RV_X(x, 10, 1) << 8) | (RV_X(x, 11, 1) << 12))
|
2021-11-17 18:46:11 +08:00
|
|
|
#define ENCODE_RVV_VB_IMM(x) \
|
|
|
|
(RV_X(x, 0, 10) << 20)
|
|
|
|
#define ENCODE_RVV_VC_IMM(x) \
|
|
|
|
(RV_X(x, 0, 11) << 20)
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
#define VALID_ITYPE_IMM(x) (EXTRACT_ITYPE_IMM(ENCODE_ITYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_STYPE_IMM(x) (EXTRACT_STYPE_IMM(ENCODE_STYPE_IMM(x)) == (x))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define VALID_BTYPE_IMM(x) (EXTRACT_BTYPE_IMM(ENCODE_BTYPE_IMM(x)) == (x))
|
2016-11-02 00:45:57 +08:00
|
|
|
#define VALID_UTYPE_IMM(x) (EXTRACT_UTYPE_IMM(ENCODE_UTYPE_IMM(x)) == (x))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define VALID_JTYPE_IMM(x) (EXTRACT_JTYPE_IMM(ENCODE_JTYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_CITYPE_IMM(x) (EXTRACT_CITYPE_IMM(ENCODE_CITYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_CITYPE_LUI_IMM(x) (ENCODE_CITYPE_LUI_IMM(x) != 0 \
|
|
|
|
&& EXTRACT_CITYPE_LUI_IMM(ENCODE_CITYPE_LUI_IMM(x)) == (x))
|
|
|
|
#define VALID_CITYPE_ADDI16SP_IMM(x) (ENCODE_CITYPE_ADDI16SP_IMM(x) != 0 \
|
|
|
|
&& EXTRACT_CITYPE_ADDI16SP_IMM(ENCODE_CITYPE_ADDI16SP_IMM(x)) == (x))
|
|
|
|
#define VALID_CITYPE_LWSP_IMM(x) (EXTRACT_CITYPE_LWSP_IMM(ENCODE_CITYPE_LWSP_IMM(x)) == (x))
|
|
|
|
#define VALID_CITYPE_LDSP_IMM(x) (EXTRACT_CITYPE_LDSP_IMM(ENCODE_CITYPE_LDSP_IMM(x)) == (x))
|
|
|
|
#define VALID_CSSTYPE_IMM(x) (EXTRACT_CSSTYPE_IMM(ENCODE_CSSTYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_CSSTYPE_SWSP_IMM(x) (EXTRACT_CSSTYPE_SWSP_IMM(ENCODE_CSSTYPE_SWSP_IMM(x)) == (x))
|
|
|
|
#define VALID_CSSTYPE_SDSP_IMM(x) (EXTRACT_CSSTYPE_SDSP_IMM(ENCODE_CSSTYPE_SDSP_IMM(x)) == (x))
|
|
|
|
#define VALID_CIWTYPE_IMM(x) (EXTRACT_CIWTYPE_IMM(ENCODE_CIWTYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_CIWTYPE_ADDI4SPN_IMM(x) (EXTRACT_CIWTYPE_ADDI4SPN_IMM(ENCODE_CIWTYPE_ADDI4SPN_IMM(x)) == (x))
|
|
|
|
#define VALID_CLTYPE_IMM(x) (EXTRACT_CLTYPE_IMM(ENCODE_CLTYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_CLTYPE_LW_IMM(x) (EXTRACT_CLTYPE_LW_IMM(ENCODE_CLTYPE_LW_IMM(x)) == (x))
|
|
|
|
#define VALID_CLTYPE_LD_IMM(x) (EXTRACT_CLTYPE_LD_IMM(ENCODE_CLTYPE_LD_IMM(x)) == (x))
|
|
|
|
#define VALID_CBTYPE_IMM(x) (EXTRACT_CBTYPE_IMM(ENCODE_CBTYPE_IMM(x)) == (x))
|
|
|
|
#define VALID_CJTYPE_IMM(x) (EXTRACT_CJTYPE_IMM(ENCODE_CJTYPE_IMM(x)) == (x))
|
2021-11-17 18:46:11 +08:00
|
|
|
#define VALID_RVV_VB_IMM(x) (EXTRACT_RVV_VB_IMM(ENCODE_RVV_VB_IMM(x)) == (x))
|
|
|
|
#define VALID_RVV_VC_IMM(x) (EXTRACT_RVV_VC_IMM(ENCODE_RVV_VC_IMM(x)) == (x))
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
#define RISCV_RTYPE(insn, rd, rs1, rs2) \
|
|
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ((rs1) << OP_SH_RS1) | ((rs2) << OP_SH_RS2))
|
|
|
|
#define RISCV_ITYPE(insn, rd, rs1, imm) \
|
|
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ((rs1) << OP_SH_RS1) | ENCODE_ITYPE_IMM(imm))
|
|
|
|
#define RISCV_STYPE(insn, rs1, rs2, imm) \
|
|
|
|
((MATCH_ ## insn) | ((rs1) << OP_SH_RS1) | ((rs2) << OP_SH_RS2) | ENCODE_STYPE_IMM(imm))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define RISCV_BTYPE(insn, rs1, rs2, target) \
|
|
|
|
((MATCH_ ## insn) | ((rs1) << OP_SH_RS1) | ((rs2) << OP_SH_RS2) | ENCODE_BTYPE_IMM(target))
|
2016-11-02 00:45:57 +08:00
|
|
|
#define RISCV_UTYPE(insn, rd, bigimm) \
|
|
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ENCODE_UTYPE_IMM(bigimm))
|
2021-01-26 18:02:38 +08:00
|
|
|
#define RISCV_JTYPE(insn, rd, target) \
|
|
|
|
((MATCH_ ## insn) | ((rd) << OP_SH_RD) | ENCODE_JTYPE_IMM(target))
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
#define RISCV_NOP RISCV_ITYPE(ADDI, 0, 0, 0)
|
|
|
|
#define RVC_NOP MATCH_C_ADDI
|
|
|
|
|
|
|
|
#define RISCV_CONST_HIGH_PART(VALUE) \
|
|
|
|
(((VALUE) + (RISCV_IMM_REACH/2)) & ~(RISCV_IMM_REACH-1))
|
|
|
|
#define RISCV_CONST_LOW_PART(VALUE) ((VALUE) - RISCV_CONST_HIGH_PART (VALUE))
|
|
|
|
#define RISCV_PCREL_HIGH_PART(VALUE, PC) RISCV_CONST_HIGH_PART((VALUE) - (PC))
|
|
|
|
#define RISCV_PCREL_LOW_PART(VALUE, PC) RISCV_CONST_LOW_PART((VALUE) - (PC))
|
|
|
|
|
|
|
|
#define RISCV_JUMP_BITS RISCV_BIGIMM_BITS
|
|
|
|
#define RISCV_JUMP_ALIGN_BITS 1
|
|
|
|
#define RISCV_JUMP_ALIGN (1 << RISCV_JUMP_ALIGN_BITS)
|
|
|
|
#define RISCV_JUMP_REACH ((1ULL << RISCV_JUMP_BITS) * RISCV_JUMP_ALIGN)
|
|
|
|
|
|
|
|
#define RISCV_IMM_BITS 12
|
|
|
|
#define RISCV_BIGIMM_BITS (32 - RISCV_IMM_BITS)
|
|
|
|
#define RISCV_IMM_REACH (1LL << RISCV_IMM_BITS)
|
|
|
|
#define RISCV_BIGIMM_REACH (1LL << RISCV_BIGIMM_BITS)
|
|
|
|
#define RISCV_RVC_IMM_REACH (1LL << 6)
|
|
|
|
#define RISCV_BRANCH_BITS RISCV_IMM_BITS
|
|
|
|
#define RISCV_BRANCH_ALIGN_BITS RISCV_JUMP_ALIGN_BITS
|
|
|
|
#define RISCV_BRANCH_ALIGN (1 << RISCV_BRANCH_ALIGN_BITS)
|
|
|
|
#define RISCV_BRANCH_REACH (RISCV_IMM_REACH * RISCV_BRANCH_ALIGN)
|
|
|
|
|
|
|
|
/* RV fields. */
|
|
|
|
|
|
|
|
#define OP_MASK_OP 0x7f
|
|
|
|
#define OP_SH_OP 0
|
|
|
|
#define OP_MASK_RS2 0x1f
|
|
|
|
#define OP_SH_RS2 20
|
|
|
|
#define OP_MASK_RS1 0x1f
|
|
|
|
#define OP_SH_RS1 15
|
2020-08-31 11:47:06 +08:00
|
|
|
#define OP_MASK_RS3 0x1fU
|
2016-11-02 00:45:57 +08:00
|
|
|
#define OP_SH_RS3 27
|
|
|
|
#define OP_MASK_RD 0x1f
|
|
|
|
#define OP_SH_RD 7
|
|
|
|
#define OP_MASK_SHAMT 0x3f
|
|
|
|
#define OP_SH_SHAMT 20
|
|
|
|
#define OP_MASK_SHAMTW 0x1f
|
|
|
|
#define OP_SH_SHAMTW 20
|
|
|
|
#define OP_MASK_RM 0x7
|
|
|
|
#define OP_SH_RM 12
|
|
|
|
#define OP_MASK_PRED 0xf
|
|
|
|
#define OP_SH_PRED 24
|
|
|
|
#define OP_MASK_SUCC 0xf
|
|
|
|
#define OP_SH_SUCC 20
|
|
|
|
#define OP_MASK_AQ 0x1
|
|
|
|
#define OP_SH_AQ 26
|
|
|
|
#define OP_MASK_RL 0x1
|
|
|
|
#define OP_SH_RL 25
|
|
|
|
|
2020-08-31 11:47:06 +08:00
|
|
|
#define OP_MASK_CSR 0xfffU
|
2016-11-02 00:45:57 +08:00
|
|
|
#define OP_SH_CSR 20
|
|
|
|
|
2021-01-15 09:36:51 +08:00
|
|
|
#define OP_MASK_FUNCT3 0x7
|
|
|
|
#define OP_SH_FUNCT3 12
|
|
|
|
#define OP_MASK_FUNCT7 0x7fU
|
|
|
|
#define OP_SH_FUNCT7 25
|
|
|
|
#define OP_MASK_FUNCT2 0x3
|
|
|
|
#define OP_SH_FUNCT2 25
|
2018-03-15 07:04:03 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* RVC fields. */
|
|
|
|
|
2021-01-15 09:36:51 +08:00
|
|
|
#define OP_MASK_OP2 0x3
|
|
|
|
#define OP_SH_OP2 0
|
|
|
|
|
|
|
|
#define OP_MASK_CRS2 0x1f
|
|
|
|
#define OP_SH_CRS2 2
|
|
|
|
#define OP_MASK_CRS1S 0x7
|
|
|
|
#define OP_SH_CRS1S 7
|
|
|
|
#define OP_MASK_CRS2S 0x7
|
|
|
|
#define OP_SH_CRS2S 2
|
|
|
|
|
|
|
|
#define OP_MASK_CFUNCT6 0x3f
|
|
|
|
#define OP_SH_CFUNCT6 10
|
|
|
|
#define OP_MASK_CFUNCT4 0xf
|
|
|
|
#define OP_SH_CFUNCT4 12
|
|
|
|
#define OP_MASK_CFUNCT3 0x7
|
|
|
|
#define OP_SH_CFUNCT3 13
|
|
|
|
#define OP_MASK_CFUNCT2 0x3
|
|
|
|
#define OP_SH_CFUNCT2 5
|
2018-03-15 07:04:03 +08:00
|
|
|
|
2021-11-15 11:03:42 +08:00
|
|
|
/* Scalar crypto fields. */
|
|
|
|
|
|
|
|
#define OP_SH_BS 30
|
|
|
|
#define OP_MASK_BS 3
|
|
|
|
#define OP_SH_RNUM 20
|
|
|
|
#define OP_MASK_RNUM 0xf
|
|
|
|
|
2021-11-17 18:46:11 +08:00
|
|
|
/* RVV fields. */
|
|
|
|
|
|
|
|
#define OP_MASK_VD 0x1f
|
|
|
|
#define OP_SH_VD 7
|
|
|
|
#define OP_MASK_VS1 0x1f
|
|
|
|
#define OP_SH_VS1 15
|
|
|
|
#define OP_MASK_VS2 0x1f
|
|
|
|
#define OP_SH_VS2 20
|
|
|
|
#define OP_MASK_VIMM 0x1f
|
|
|
|
#define OP_SH_VIMM 15
|
|
|
|
#define OP_MASK_VMASK 0x1
|
|
|
|
#define OP_SH_VMASK 25
|
|
|
|
#define OP_MASK_VFUNCT6 0x3f
|
|
|
|
#define OP_SH_VFUNCT6 26
|
|
|
|
#define OP_MASK_VLMUL 0x7
|
|
|
|
#define OP_SH_VLMUL 0
|
|
|
|
#define OP_MASK_VSEW 0x7
|
|
|
|
#define OP_SH_VSEW 3
|
|
|
|
#define OP_MASK_VTA 0x1
|
|
|
|
#define OP_SH_VTA 6
|
|
|
|
#define OP_MASK_VMA 0x1
|
|
|
|
#define OP_SH_VMA 7
|
|
|
|
#define OP_MASK_VWD 0x1
|
|
|
|
#define OP_SH_VWD 26
|
|
|
|
|
|
|
|
#define NVECR 32
|
|
|
|
#define NVECM 1
|
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* ABI names for selected x-registers. */
|
|
|
|
|
|
|
|
#define X_RA 1
|
|
|
|
#define X_SP 2
|
|
|
|
#define X_GP 3
|
|
|
|
#define X_TP 4
|
|
|
|
#define X_T0 5
|
|
|
|
#define X_T1 6
|
|
|
|
#define X_T2 7
|
|
|
|
#define X_T3 28
|
|
|
|
|
|
|
|
#define NGPR 32
|
|
|
|
#define NFPR 32
|
|
|
|
|
opcodes/riscv: Hide '.L0 ' fake symbols
The RISC-V assembler generates fake labels with the name '.L0 ' as
part of the debug information (see
gas/config/tc-riscv.h:FAKE_LABEL_NAME).
The problem is that currently, when disassembling an object file, the
output looks like this (this is an example from the GDB testsuite, but
is pretty representative of anything with debug information):
000000000000001e <main>:
1e: 7179 addi sp,sp,-48
20: f406 sd ra,40(sp)
22: f022 sd s0,32(sp)
24: 1800 addi s0,sp,48
0000000000000026 <.L0 >:
26: 87aa mv a5,a0
28: feb43023 sd a1,-32(s0)
2c: fcc43c23 sd a2,-40(s0)
30: fef42623 sw a5,-20(s0)
0000000000000034 <.L0 >:
34: fec42783 lw a5,-20(s0)
38: 0007871b sext.w a4,a5
3c: 678d lui a5,0x3
3e: 03978793 addi a5,a5,57 # 3039 <.LASF30+0x2a9d>
42: 02f71463 bne a4,a5,6a <.L0 >
0000000000000046 <.L0 >:
46: 000007b7 lui a5,0x0
4a: 0007b783 ld a5,0(a5) # 0 <need_malloc>
4e: 6f9c ld a5,24(a5)
0000000000000050 <.L0 >:
50: 86be mv a3,a5
52: 466d li a2,27
54: 4585 li a1,1
56: 000007b7 lui a5,0x0
5a: 00078513 mv a0,a5
5e: 00000097 auipc ra,0x0
62: 000080e7 jalr ra # 5e <.L0 +0xe>
0000000000000066 <.L0 >:
66: 4785 li a5,1
68: a869 j 102 <.L0 >
000000000000006a <.L0 >:
6a: 000007b7 lui a5,0x0
6e: 00078513 mv a0,a5
72: 00000097 auipc ra,0x0
76: 000080e7 jalr ra # 72 <.L0 +0x8>
The frequent repeated '.L0 ' labels are pointless, as they are
non-unique there's no way to match a use of '.L0 ' to its appearence
in the output, so we'd be better off just not printing it at all.
That's what this patch does by defining a 'symbol_is_valid' method for
RISC-V. With this commit, the same disassembly now looks like this:
000000000000001e <main>:
1e: 7179 addi sp,sp,-48
20: f406 sd ra,40(sp)
22: f022 sd s0,32(sp)
24: 1800 addi s0,sp,48
26: 87aa mv a5,a0
28: feb43023 sd a1,-32(s0)
2c: fcc43c23 sd a2,-40(s0)
30: fef42623 sw a5,-20(s0)
34: fec42783 lw a5,-20(s0)
38: 0007871b sext.w a4,a5
3c: 678d lui a5,0x3
3e: 03978793 addi a5,a5,57 # 3039 <.LASF30+0x2a9d>
42: 02f71463 bne a4,a5,6a <.L4>
46: 000007b7 lui a5,0x0
4a: 0007b783 ld a5,0(a5) # 0 <need_malloc>
4e: 6f9c ld a5,24(a5)
50: 86be mv a3,a5
52: 466d li a2,27
54: 4585 li a1,1
56: 000007b7 lui a5,0x0
5a: 00078513 mv a0,a5
5e: 00000097 auipc ra,0x0
62: 000080e7 jalr ra # 5e <main+0x40>
66: 4785 li a5,1
68: a869 j 102 <.L5>
000000000000006a <.L4>:
6a: 000007b7 lui a5,0x0
6e: 00078513 mv a0,a5
72: 00000097 auipc ra,0x0
76: 000080e7 jalr ra # 72 <.L4+0x8>
In order to share the fake label between the assembler and the
libopcodes library, I've added some new defines RISCV_FAKE_LABEL_NAME
and RISCV_FAKE_LABEL_CHAR in include/opcode/riscv.h. I could have
just moved FAKE_LABEL_NAME to the include file, however, I thnk this
would be confusing, someone working on the assembler would likely not
expect to find FAKE_LABEL_NAME defined outside of the assembler source
tree. By introducing the RISCV_FAKE_LABEL_* defines I can leave the
assembler standard FAKE_LABEL_ defines in the assembler source, but
still share the RISCV_FAKE_LABEL_* with libopcodes.
gas/ChangeLog:
* config/tc-riscv.h (FAKE_LABEL_NAME): Define as
RISCV_FAKE_LABEL_NAME.
(FAKE_LABEL_CHAR): Define as RISCV_FAKE_LABEL_CHAR.
include/ChangeLog:
* dis-asm.h (riscv_symbol_is_valid): Declare.
* opcode/riscv.h (RISCV_FAKE_LABEL_NAME): Define.
(RISCV_FAKE_LABEL_CHAR): Define.
opcodes/ChangeLog:
* disassembler.c (disassemble_init_for_target): Add RISC-V
initialisation.
* riscv-dis.c (riscv_symbol_is_valid): New function.
2018-12-03 22:46:18 +08:00
|
|
|
/* These fake label defines are use by both the assembler, and
|
|
|
|
libopcodes. The assembler uses this when it needs to generate a fake
|
|
|
|
label, and libopcodes uses it to hide the fake labels in its output. */
|
|
|
|
#define RISCV_FAKE_LABEL_NAME ".L0 "
|
|
|
|
#define RISCV_FAKE_LABEL_CHAR ' '
|
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* Replace bits MASK << SHIFT of STRUCT with the equivalent bits in
|
|
|
|
VALUE << SHIFT. VALUE is evaluated exactly once. */
|
|
|
|
#define INSERT_BITS(STRUCT, VALUE, MASK, SHIFT) \
|
|
|
|
(STRUCT) = (((STRUCT) & ~((insn_t)(MASK) << (SHIFT))) \
|
|
|
|
| ((insn_t)((VALUE) & (MASK)) << (SHIFT)))
|
|
|
|
|
|
|
|
/* Extract bits MASK << SHIFT from STRUCT and shift them right
|
|
|
|
SHIFT places. */
|
|
|
|
#define EXTRACT_BITS(STRUCT, MASK, SHIFT) \
|
|
|
|
(((STRUCT) >> (SHIFT)) & (MASK))
|
|
|
|
|
|
|
|
/* Extract the operand given by FIELD from integer INSN. */
|
|
|
|
#define EXTRACT_OPERAND(FIELD, INSN) \
|
|
|
|
EXTRACT_BITS ((INSN), OP_MASK_##FIELD, OP_SH_##FIELD)
|
|
|
|
|
2021-01-13 10:05:48 +08:00
|
|
|
/* The maximal number of subset can be required. */
|
2018-08-31 04:23:12 +08:00
|
|
|
#define MAX_SUBSET_NUM 4
|
|
|
|
|
2019-09-18 08:59:08 +08:00
|
|
|
/* All RISC-V instructions belong to at least one of these classes. */
|
|
|
|
enum riscv_insn_class
|
2021-01-15 09:36:51 +08:00
|
|
|
{
|
|
|
|
INSN_CLASS_NONE,
|
|
|
|
|
|
|
|
INSN_CLASS_I,
|
|
|
|
INSN_CLASS_C,
|
|
|
|
INSN_CLASS_A,
|
|
|
|
INSN_CLASS_M,
|
|
|
|
INSN_CLASS_F,
|
|
|
|
INSN_CLASS_D,
|
|
|
|
INSN_CLASS_Q,
|
|
|
|
INSN_CLASS_F_AND_C,
|
|
|
|
INSN_CLASS_D_AND_C,
|
|
|
|
INSN_CLASS_ZICSR,
|
|
|
|
INSN_CLASS_ZIFENCEI,
|
|
|
|
INSN_CLASS_ZIHINTPAUSE,
|
2021-11-17 20:10:07 +08:00
|
|
|
INSN_CLASS_F_OR_ZFINX,
|
|
|
|
INSN_CLASS_D_OR_ZDINX,
|
|
|
|
INSN_CLASS_Q_OR_ZQINX,
|
2020-03-26 18:38:27 +08:00
|
|
|
INSN_CLASS_ZFH,
|
2022-05-30 10:35:02 +08:00
|
|
|
INSN_CLASS_ZFH_OR_ZHINX,
|
|
|
|
INSN_CLASS_D_AND_ZFH_INX,
|
|
|
|
INSN_CLASS_Q_AND_ZFH_INX,
|
2021-02-24 13:26:29 +08:00
|
|
|
INSN_CLASS_ZBA,
|
|
|
|
INSN_CLASS_ZBB,
|
|
|
|
INSN_CLASS_ZBC,
|
2021-10-07 04:26:46 +08:00
|
|
|
INSN_CLASS_ZBS,
|
2021-11-15 11:03:42 +08:00
|
|
|
INSN_CLASS_ZBKB,
|
|
|
|
INSN_CLASS_ZBKC,
|
|
|
|
INSN_CLASS_ZBKX,
|
|
|
|
INSN_CLASS_ZKND,
|
|
|
|
INSN_CLASS_ZKNE,
|
|
|
|
INSN_CLASS_ZKNH,
|
|
|
|
INSN_CLASS_ZKSED,
|
|
|
|
INSN_CLASS_ZKSH,
|
|
|
|
INSN_CLASS_ZBB_OR_ZBKB,
|
|
|
|
INSN_CLASS_ZBC_OR_ZBKC,
|
|
|
|
INSN_CLASS_ZKND_OR_ZKNE,
|
2021-11-17 18:46:11 +08:00
|
|
|
INSN_CLASS_V,
|
|
|
|
INSN_CLASS_ZVEF,
|
2021-07-22 13:47:07 +08:00
|
|
|
INSN_CLASS_SVINVAL,
|
2022-01-11 18:14:02 +08:00
|
|
|
INSN_CLASS_ZICBOM,
|
2022-01-11 18:14:02 +08:00
|
|
|
INSN_CLASS_ZICBOP,
|
2022-01-11 18:14:02 +08:00
|
|
|
INSN_CLASS_ZICBOZ,
|
2021-01-15 09:36:51 +08:00
|
|
|
};
|
2019-09-18 08:59:08 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* This structure holds information for a particular instruction. */
|
|
|
|
struct riscv_opcode
|
|
|
|
{
|
|
|
|
/* The name of the instruction. */
|
|
|
|
const char *name;
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2018-08-31 04:23:12 +08:00
|
|
|
/* The requirement of xlen for the instruction, 0 if no requirement. */
|
2018-12-04 05:59:44 +08:00
|
|
|
unsigned xlen_requirement;
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2019-09-18 08:59:08 +08:00
|
|
|
/* Class to which this instruction belongs. Used to decide whether or
|
|
|
|
not this instruction is legal in the current -march context. */
|
|
|
|
enum riscv_insn_class insn_class;
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* A string describing the arguments for this instruction. */
|
|
|
|
const char *args;
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* The basic opcode for the instruction. When assembling, this
|
|
|
|
opcode is modified by the arguments to produce the actual opcode
|
|
|
|
that is used. If pinfo is INSN_MACRO, then this is 0. */
|
|
|
|
insn_t match;
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* If pinfo is not INSN_MACRO, then this is a bit mask for the
|
|
|
|
relevant portions of the opcode when disassembling. If the
|
|
|
|
actual opcode anded with the match field equals the opcode field,
|
|
|
|
then we have found the correct instruction. If pinfo is
|
|
|
|
INSN_MACRO, then this field is the macro identifier. */
|
|
|
|
insn_t mask;
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* A function to determine if a word corresponds to this instruction.
|
|
|
|
Usually, this computes ((word & mask) == match). */
|
|
|
|
int (*match_func) (const struct riscv_opcode *op, insn_t word);
|
2021-01-15 09:36:51 +08:00
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* For a macro, this is INSN_MACRO. Otherwise, it is a collection
|
|
|
|
of bits describing the instruction, notably any relevant hazard
|
|
|
|
information. */
|
|
|
|
unsigned long pinfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Instruction is a simple alias (e.g. "mv" for "addi"). */
|
|
|
|
#define INSN_ALIAS 0x00000001
|
2018-07-31 04:55:41 +08:00
|
|
|
|
|
|
|
/* These are for setting insn_info fields.
|
|
|
|
|
|
|
|
Nonbranch is the default. Noninsn is used only if there is no match.
|
|
|
|
There are no condjsr or dref2 instructions. So that leaves condbranch,
|
|
|
|
branch, jsr, and dref that we need to handle here, encoded in 3 bits. */
|
|
|
|
#define INSN_TYPE 0x0000000e
|
|
|
|
|
|
|
|
/* Instruction is an unconditional branch. */
|
|
|
|
#define INSN_BRANCH 0x00000002
|
|
|
|
/* Instruction is a conditional branch. */
|
|
|
|
#define INSN_CONDBRANCH 0x00000004
|
|
|
|
/* Instruction is a jump to subroutine. */
|
|
|
|
#define INSN_JSR 0x00000006
|
|
|
|
/* Instruction is a data reference. */
|
|
|
|
#define INSN_DREF 0x00000008
|
2021-11-17 18:46:11 +08:00
|
|
|
/* Instruction is allowed when eew >= 64. */
|
|
|
|
#define INSN_V_EEW64 0x10000000
|
2018-07-31 04:55:41 +08:00
|
|
|
|
|
|
|
/* We have 5 data reference sizes, which we can encode in 3 bits. */
|
|
|
|
#define INSN_DATA_SIZE 0x00000070
|
|
|
|
#define INSN_DATA_SIZE_SHIFT 4
|
|
|
|
#define INSN_1_BYTE 0x00000010
|
|
|
|
#define INSN_2_BYTE 0x00000020
|
|
|
|
#define INSN_4_BYTE 0x00000030
|
|
|
|
#define INSN_8_BYTE 0x00000040
|
|
|
|
#define INSN_16_BYTE 0x00000050
|
|
|
|
|
2016-11-02 00:45:57 +08:00
|
|
|
/* Instruction is actually a macro. It should be ignored by the
|
|
|
|
disassembler, and requires special treatment by the assembler. */
|
|
|
|
#define INSN_MACRO 0xffffffff
|
|
|
|
|
2021-01-13 10:05:48 +08:00
|
|
|
/* This is a list of macro expanded instructions. */
|
2016-11-02 00:45:57 +08:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
M_LA,
|
|
|
|
M_LLA,
|
|
|
|
M_LA_TLS_GD,
|
|
|
|
M_LA_TLS_IE,
|
|
|
|
M_LB,
|
|
|
|
M_LBU,
|
|
|
|
M_LH,
|
|
|
|
M_LHU,
|
|
|
|
M_LW,
|
|
|
|
M_LWU,
|
|
|
|
M_LD,
|
|
|
|
M_SB,
|
|
|
|
M_SH,
|
|
|
|
M_SW,
|
|
|
|
M_SD,
|
|
|
|
M_FLW,
|
|
|
|
M_FLD,
|
2017-01-04 01:42:01 +08:00
|
|
|
M_FLQ,
|
2016-11-02 00:45:57 +08:00
|
|
|
M_FSW,
|
|
|
|
M_FSD,
|
2017-01-04 01:42:01 +08:00
|
|
|
M_FSQ,
|
2016-11-02 00:45:57 +08:00
|
|
|
M_CALL,
|
|
|
|
M_J,
|
|
|
|
M_LI,
|
RISC-V: Add sext.[bh] and zext.[bhw] pseudo instructions.
https://github.com/riscv/riscv-asm-manual/pull/61
We aleady have sext.w, so just add sext.b, sext.h, zext.b, zext.h
and zext.w. In a certain sense, zext.b is not a pseudo - It is an
alias of andi. Similarly, sext.b and sext.h are aliases of other
rvb instructions, when we enable b extension; But they are pseudos
when we just enable rvi. However, this patch does not consider the
rvb cases. Besides, zext.w is only valid in rv64.
gas/
* config/tc-riscv.c (riscv_ext): New function. Use md_assemblef
to expand the zext and sext pseudos, to give them a chance to be
expanded into c-ext instructions.
(macro): Handle M_ZEXTH, M_ZEXTW, M_SEXTB and M_SEXTH.
* testsuite/gas/riscv/ext.s: New testcase.
* testsuite/gas/riscv/ext-32.d: Likewise.
* testsuite/gas/riscv/ext-64.d: Likewise.
include/
* opcode/riscv.h (M_ZEXTH, M_ZEXTW, M_SEXTB, M_SEXTH.): Added.
opcodes/
* riscv-opc.c (riscv_opcodes): Add sext.[bh] and zext.[bhw].
2020-12-09 13:53:22 +08:00
|
|
|
M_ZEXTH,
|
|
|
|
M_ZEXTW,
|
|
|
|
M_SEXTB,
|
|
|
|
M_SEXTH,
|
2021-11-17 18:46:11 +08:00
|
|
|
M_VMSGE,
|
|
|
|
M_VMSGEU,
|
2020-03-26 18:38:27 +08:00
|
|
|
M_FLH,
|
|
|
|
M_FSH,
|
2016-11-02 00:45:57 +08:00
|
|
|
M_NUM_MACROS
|
|
|
|
};
|
|
|
|
|
RISC-V: PR27916, Support mapping symbols.
Similar to ARM/AARCH64, we add mapping symbols in the symbol table,
to mark the start addresses of data and instructions. The $d means
data, and the $x means instruction. Then the disassembler uses these
symbols to decide whether we should dump data or instruction.
Consider the mapping-04 test case,
$ cat tmp.s
.text
.option norelax
.option norvc
.fill 2, 4, 0x1001
.byte 1
.word 0
.balign 8
add a0, a0, a0
.fill 5, 2, 0x2002
add a1, a1, a1
.data
.word 0x1 # No need to add mapping symbols.
.word 0x2
$ riscv64-unknown-elf-as tmp.s -o tmp.o
$ riscv64-unknown-elf-objdump -d tmp.o
Disassembly of section .text:
0000000000000000 <.text>:
0: 00001001 .word 0x00001001 # Marked $d, .fill directive.
4: 00001001 .word 0x00001001
8: 00000001 .word 0x00000001 # .byte + part of .word.
c: 00 .byte 0x00 # remaining .word.
d: 00 .byte 0x00 # Marked $d, odd byte of alignment.
e: 0001 nop # Marked $x, nops for alignment.
10: 00a50533 add a0,a0,a0
14: 20022002 .word 0x20022002 # Marked $d, .fill directive.
18: 20022002 .word 0x20022002
1c: 2002 .short 0x2002
1e: 00b585b3 add a1,a1,a1 # Marked $x.
22: 0001 nop # Section tail alignment.
24: 00000013 nop
* Use $d and $x to mark the distribution of data and instructions.
Alignments of code are recognized as instructions, since we usually
fill nops for them.
* If the alignment have odd bytes, then we cannot just fill the nops
into the spaces. We always fill an odd byte 0x00 at the start of
the spaces. Therefore, add a $d mapping symbol for the odd byte,
to tell disassembler that it isn't an instruction. The behavior
is same as Arm and Aarch64.
The elf/linux toolchain regressions all passed. Besides, I also
disable the mapping symbols internally, but use the new objudmp, the
regressions passed, too. Therefore, the new objudmp should dump
the objects corretly, even if they don't have any mapping symbols.
bfd/
pr 27916
* cpu-riscv.c (riscv_elf_is_mapping_symbols): Define mapping symbols.
* cpu-riscv.h: extern riscv_elf_is_mapping_symbols.
* elfnn-riscv.c (riscv_maybe_function_sym): Do not choose mapping
symbols as a function name.
(riscv_elf_is_target_special_symbol): Add mapping symbols.
binutils/
pr 27916
* testsuite/binutils-all/readelf.s: Updated.
* testsuite/binutils-all/readelf.s-64: Likewise.
* testsuite/binutils-all/readelf.s-64-unused: Likewise.
* testsuite/binutils-all/readelf.ss: Likewise.
* testsuite/binutils-all/readelf.ss-64: Likewise.
* testsuite/binutils-all/readelf.ss-64-unused: Likewise.
gas/
pr 27916
* config/tc-riscv.c (make_mapping_symbol): Create a new mapping symbol.
(riscv_mapping_state): Decide whether to create mapping symbol for
frag_now. Only add the mapping symbols to text sections.
(riscv_add_odd_padding_symbol): Add the mapping symbols for the
riscv_handle_align, which have odd bytes spaces.
(riscv_check_mapping_symbols): Remove any excess mapping symbols.
(md_assemble): Marked as MAP_INSN.
(riscv_frag_align_code): Marked as MAP_INSN.
(riscv_init_frag): Add mapping symbols for frag, it usually called
by frag_var. Marked as MAP_DATA for rs_align and rs_fill, and
marked as MAP_INSN for rs_align_code.
(s_riscv_insn): Marked as MAP_INSN.
(riscv_adjust_symtab): Call riscv_check_mapping_symbols.
* config/tc-riscv.h (md_cons_align): Defined to riscv_mapping_state
with MAP_DATA.
(TC_SEGMENT_INFO_TYPE): Record mapping state for each segment.
(TC_FRAG_TYPE): Record the first and last mapping symbols for the
fragments. The first mapping symbol must be placed at the start
of the fragment.
(TC_FRAG_INIT): Defined to riscv_init_frag.
* testsuite/gas/riscv/mapping-01.s: New testcase.
* testsuite/gas/riscv/mapping-01a.d: Likewise.
* testsuite/gas/riscv/mapping-01b.d: Likewise.
* testsuite/gas/riscv/mapping-02.s: Likewise.
* testsuite/gas/riscv/mapping-02a.d: Likewise.
* testsuite/gas/riscv/mapping-02b.d: Likewise.
* testsuite/gas/riscv/mapping-03.s: Likewise.
* testsuite/gas/riscv/mapping-03a.d: Likewise.
* testsuite/gas/riscv/mapping-03b.d: Likewise.
* testsuite/gas/riscv/mapping-04.s: Likewise.
* testsuite/gas/riscv/mapping-04a.d: Likewise.
* testsuite/gas/riscv/mapping-04b.d: Likewise.
* testsuite/gas/riscv/mapping-norelax-04a.d: Likewise.
* testsuite/gas/riscv/mapping-norelax-04b.d: Likewise.
* testsuite/gas/riscv/no-relax-align.d: Updated.
* testsuite/gas/riscv/no-relax-align-2.d: Likewise.
include/
pr 27916
* opcode/riscv.h (enum riscv_seg_mstate): Added.
opcodes/
pr 27916
* riscv-dis.c (last_map_symbol, last_stop_offset, last_map_state):
Added to dump sections with mapping symbols.
(riscv_get_map_state): Get the mapping state from the symbol.
(riscv_search_mapping_symbol): Check the sorted symbol table, and
then find the suitable mapping symbol.
(riscv_data_length): Decide which data size we should print.
(riscv_disassemble_data): Dump the data contents.
(print_insn_riscv): Handle the mapping symbols.
(riscv_symbol_is_valid): Marked mapping symbols as invalid.
2021-07-13 18:09:38 +08:00
|
|
|
/* The mapping symbol states. */
|
|
|
|
enum riscv_seg_mstate
|
|
|
|
{
|
|
|
|
MAP_NONE = 0, /* Must be zero, for seginfo in new sections. */
|
|
|
|
MAP_DATA, /* Data. */
|
|
|
|
MAP_INSN, /* Instructions. */
|
|
|
|
};
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
extern const char * const riscv_gpr_names_numeric[NGPR];
|
|
|
|
extern const char * const riscv_gpr_names_abi[NGPR];
|
|
|
|
extern const char * const riscv_fpr_names_numeric[NFPR];
|
|
|
|
extern const char * const riscv_fpr_names_abi[NFPR];
|
2021-11-17 18:46:11 +08:00
|
|
|
extern const char * const riscv_vecr_names_numeric[NVECR];
|
|
|
|
extern const char * const riscv_vecm_names_numeric[NVECM];
|
|
|
|
extern const char * const riscv_vsew[8];
|
|
|
|
extern const char * const riscv_vlmul[8];
|
|
|
|
extern const char * const riscv_vta[2];
|
|
|
|
extern const char * const riscv_vma[2];
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
extern const struct riscv_opcode riscv_opcodes[];
|
2018-03-15 07:04:03 +08:00
|
|
|
extern const struct riscv_opcode riscv_insn_types[];
|
2016-11-02 00:45:57 +08:00
|
|
|
|
|
|
|
#endif /* _RISCV_H_ */
|