blob: ea288aa159f1fba6bf2e5e1435c1826af5d0b66e [file] [log] [blame]
Brad Bishop26bdd442019-08-16 17:08:17 -04001From 200359b776fbb19a1423ff4d0c46f5301af197c6 Mon Sep 17 00:00:00 2001
2From: Nagaraju Mekala <nmekala@xilix.com>
3Date: Mon, 18 Jul 2016 12:24:28 +0530
4Subject: [PATCH] Add new bit-field instructions
Brad Bishop286d45c2018-10-02 15:21:57 -04005
Brad Bishop26bdd442019-08-16 17:08:17 -04006This patches adds new bsefi and bsifi instructions.
7BSEFI- The instruction shall extract a bit field from a
8register and place it right-adjusted in the destination register.
9The other bits in the destination register shall be set to zero
10BSIFI- The instruction shall insert a right-adjusted bit field
11from a register at another position in the destination register.
12The rest of the bits in the destination register shall be unchanged
Brad Bishop286d45c2018-10-02 15:21:57 -040013
Brad Bishop26bdd442019-08-16 17:08:17 -040014Signed-off-by :Nagaraju Mekala <nmekala@xilix.com>
15
Brad Bishop286d45c2018-10-02 15:21:57 -040016---
17 gas/config/tc-microblaze.c | 71 +++++++++++++++++++++++++++++++++++++++++++++-
18 opcodes/microblaze-dis.c | 16 +++++++++++
19 opcodes/microblaze-opc.h | 12 +++++++-
20 opcodes/microblaze-opcm.h | 6 +++-
21 4 files changed, 102 insertions(+), 3 deletions(-)
22
23diff --git a/gas/config/tc-microblaze.c b/gas/config/tc-microblaze.c
Brad Bishop26bdd442019-08-16 17:08:17 -040024index fa665b4..71bb888 100644
Brad Bishop286d45c2018-10-02 15:21:57 -040025--- a/gas/config/tc-microblaze.c
26+++ b/gas/config/tc-microblaze.c
Brad Bishop26bdd442019-08-16 17:08:17 -040027@@ -917,7 +917,7 @@ md_assemble (char * str)
Brad Bishop286d45c2018-10-02 15:21:57 -040028 unsigned reg2;
29 unsigned reg3;
30 unsigned isize;
31- unsigned int immed, temp;
32+ unsigned int immed, immed2, temp;
33 expressionS exp;
34 char name[20];
35
Brad Bishop26bdd442019-08-16 17:08:17 -040036@@ -1172,7 +1172,76 @@ md_assemble (char * str)
Brad Bishop286d45c2018-10-02 15:21:57 -040037 inst |= (reg2 << RA_LOW) & RA_MASK;
38 inst |= (immed << IMM_LOW) & IMM5_MASK;
39 break;
40+ case INST_TYPE_RD_R1_IMM5_IMM5:
41+ if (strcmp (op_end, ""))
42+ op_end = parse_reg (op_end + 1, &reg1); /* Get rd. */
43+ else
44+ {
45+ as_fatal (_("Error in statement syntax"));
46+ reg1 = 0;
47+ }
48+ if (strcmp (op_end, ""))
49+ op_end = parse_reg (op_end + 1, &reg2); /* Get r1. */
50+ else
51+ {
52+ as_fatal (_("Error in statement syntax"));
53+ reg2 = 0;
54+ }
55+
56+ /* Check for spl registers. */
57+ if (check_spl_reg (&reg1))
58+ as_fatal (_("Cannot use special register with this instruction"));
59+ if (check_spl_reg (&reg2))
60+ as_fatal (_("Cannot use special register with this instruction"));
61
62+ /* Width immediate value. */
63+ if (strcmp (op_end, ""))
64+ op_end = parse_imm (op_end + 1, &exp, MIN_IMM_WIDTH, MAX_IMM_WIDTH);
65+ else
66+ as_fatal (_("Error in statement syntax"));
67+ if (exp.X_op != O_constant)
68+ {
69+ as_warn (_("Symbol used as immediate width value for bit field instruction"));
70+ immed = 1;
71+ }
72+ else
73+ immed = exp.X_add_number;
74+ if (opcode->instr == bsefi && immed > 31)
75+ as_fatal (_("Width value must be less than 32"));
76+
77+ /* Shift immediate value. */
78+ if (strcmp (op_end, ""))
79+ op_end = parse_imm (op_end + 1, &exp, MIN_IMM, MAX_IMM);
80+ else
81+ as_fatal (_("Error in statement syntax"));
82+ if (exp.X_op != O_constant)
83+ {
84+ as_warn (_("Symbol used as immediate shift value for bit field instruction"));
85+ immed2 = 0;
86+ }
87+ else
88+ {
89+ output = frag_more (isize);
90+ immed2 = exp.X_add_number;
91+ }
92+ if (immed2 != (immed2 % 32))
93+ {
94+ as_warn (_("Shift value greater than 32. using <value %% 32>"));
95+ immed2 = immed2 % 32;
96+ }
97+
98+ /* Check combined value. */
99+ if (immed + immed2 > 32)
100+ as_fatal (_("Width value + shift value must not be greater than 32"));
101+
102+ inst |= (reg1 << RD_LOW) & RD_MASK;
103+ inst |= (reg2 << RA_LOW) & RA_MASK;
104+ if (opcode->instr == bsefi)
105+ inst |= (immed & IMM5_MASK) << IMM_WIDTH_LOW; /* bsefi */
106+ else
107+ inst |= ((immed + immed2 - 1) & IMM5_MASK) << IMM_WIDTH_LOW; /* bsifi */
108+ inst |= (immed2 << IMM_LOW) & IMM5_MASK;
109+ break;
110 case INST_TYPE_R1_R2:
111 if (strcmp (op_end, ""))
112 op_end = parse_reg (op_end + 1, &reg1); /* Get r1. */
113diff --git a/opcodes/microblaze-dis.c b/opcodes/microblaze-dis.c
Brad Bishop26bdd442019-08-16 17:08:17 -0400114index f691740..f8aaf27 100644
Brad Bishop286d45c2018-10-02 15:21:57 -0400115--- a/opcodes/microblaze-dis.c
116+++ b/opcodes/microblaze-dis.c
Brad Bishop26bdd442019-08-16 17:08:17 -0400117@@ -74,6 +74,18 @@ get_field_imm5_mbar (long instr)
Brad Bishop286d45c2018-10-02 15:21:57 -0400118 }
119
Brad Bishop26bdd442019-08-16 17:08:17 -0400120 static char *
Brad Bishop286d45c2018-10-02 15:21:57 -0400121+get_field_imm5width (long instr)
122+{
123+ char tmpstr[25];
124+
125+ if (instr & 0x00004000)
126+ sprintf (tmpstr, "%d", (short)(((instr & IMM5_WIDTH_MASK) >> IMM_WIDTH_LOW))); /* bsefi */
127+ else
128+ sprintf (tmpstr, "%d", (short)(((instr & IMM5_WIDTH_MASK) >> IMM_WIDTH_LOW) - ((instr & IMM5_MASK) >> IMM_LOW) + 1)); /* bsifi */
129+ return (strdup (tmpstr));
130+}
131+
Brad Bishop26bdd442019-08-16 17:08:17 -0400132+static char *
Brad Bishop286d45c2018-10-02 15:21:57 -0400133 get_field_rfsl (long instr)
134 {
Brad Bishop26bdd442019-08-16 17:08:17 -0400135 char tmpstr[25];
Brad Bishop286d45c2018-10-02 15:21:57 -0400136@@ -396,6 +408,10 @@ print_insn_microblaze (bfd_vma memaddr, struct disassemble_info * info)
137 /* For mbar 16 or sleep insn. */
138 case INST_TYPE_NONE:
139 break;
140+ /* For bit field insns. */
141+ case INST_TYPE_RD_R1_IMM5_IMM5:
142+ print_func (stream, "\t%s, %s, %s, %s", get_field_rd (inst),get_field_r1(inst),get_field_imm5width (inst), get_field_imm5 (inst));
143+ break;
144 /* For tuqula instruction */
145 case INST_TYPE_RD:
146 print_func (stream, "\t%s", get_field_rd (inst));
147diff --git a/opcodes/microblaze-opc.h b/opcodes/microblaze-opc.h
Brad Bishop26bdd442019-08-16 17:08:17 -0400148index 2a6b841..ce8ac35 100644
Brad Bishop286d45c2018-10-02 15:21:57 -0400149--- a/opcodes/microblaze-opc.h
150+++ b/opcodes/microblaze-opc.h
151@@ -59,6 +59,9 @@
152 /* For mbar. */
153 #define INST_TYPE_IMM5 20
154
155+/* For bsefi and bsifi */
156+#define INST_TYPE_RD_R1_IMM5_IMM5 21
157+
158 #define INST_TYPE_NONE 25
159
160
161@@ -89,7 +92,9 @@
162 #define OPCODE_MASK_H124 0xFFFF07FF /* High 16, and low 11 bits. */
163 #define OPCODE_MASK_H1234 0xFFFFFFFF /* All 32 bits. */
164 #define OPCODE_MASK_H3 0xFC000600 /* High 6 bits and bits 21, 22. */
165+#define OPCODE_MASK_H3B 0xFC00C600 /* High 6 bits and bits 16, 17, 21, 22. */
166 #define OPCODE_MASK_H32 0xFC00FC00 /* High 6 bits and bit 16-21. */
167+#define OPCODE_MASK_H32B 0xFC00C000 /* High 6 bits and bit 16, 17. */
168 #define OPCODE_MASK_H34B 0xFC0000FF /* High 6 bits and low 8 bits. */
169 #define OPCODE_MASK_H35B 0xFC0004FF /* High 6 bits and low 9 bits. */
170 #define OPCODE_MASK_H34C 0xFC0007E0 /* High 6 bits and bits 21-26. */
171@@ -102,7 +107,7 @@
172 #define DELAY_SLOT 1
173 #define NO_DELAY_SLOT 0
174
175-#define MAX_OPCODES 299
176+#define MAX_OPCODES 301
177
178 struct op_code_struct
179 {
180@@ -159,6 +164,8 @@ struct op_code_struct
181 {"bslli", INST_TYPE_RD_R1_IMM5, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x64000400, OPCODE_MASK_H3, bslli, barrel_shift_inst },
182 {"bsrai", INST_TYPE_RD_R1_IMM5, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x64000200, OPCODE_MASK_H3, bsrai, barrel_shift_inst },
183 {"bsrli", INST_TYPE_RD_R1_IMM5, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x64000000, OPCODE_MASK_H3, bsrli, barrel_shift_inst },
184+ {"bsefi", INST_TYPE_RD_R1_IMM5_IMM5, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x64004000, OPCODE_MASK_H32B, bsefi, barrel_shift_inst },
185+ {"bsifi", INST_TYPE_RD_R1_IMM5_IMM5, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x64008000, OPCODE_MASK_H32B, bsifi, barrel_shift_inst },
186 {"or", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x80000000, OPCODE_MASK_H4, microblaze_or, logical_inst },
187 {"and", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x84000000, OPCODE_MASK_H4, microblaze_and, logical_inst },
188 {"xor", INST_TYPE_RD_R1_R2, INST_NO_OFFSET, NO_DELAY_SLOT, IMMVAL_MASK_NON_SPECIAL, 0x88000000, OPCODE_MASK_H4, microblaze_xor, logical_inst },
189@@ -438,5 +445,8 @@ char pvr_register_prefix[] = "rpvr";
190 #define MIN_IMM5 ((int) 0x00000000)
191 #define MAX_IMM5 ((int) 0x0000001f)
192
193+#define MIN_IMM_WIDTH ((int) 0x00000001)
194+#define MAX_IMM_WIDTH ((int) 0x00000020)
195+
196 #endif /* MICROBLAZE_OPC */
197
198diff --git a/opcodes/microblaze-opcm.h b/opcodes/microblaze-opcm.h
Brad Bishop26bdd442019-08-16 17:08:17 -0400199index 1c39dbf..2866269 100644
Brad Bishop286d45c2018-10-02 15:21:57 -0400200--- a/opcodes/microblaze-opcm.h
201+++ b/opcodes/microblaze-opcm.h
202@@ -29,7 +29,7 @@ enum microblaze_instr
203 addi, rsubi, addic, rsubic, addik, rsubik, addikc, rsubikc, mul,
204 mulh, mulhu, mulhsu,swapb,swaph,
205 idiv, idivu, bsll, bsra, bsrl, get, put, nget, nput, cget, cput,
206- ncget, ncput, muli, bslli, bsrai, bsrli, mului,
207+ ncget, ncput, muli, bslli, bsrai, bsrli, bsefi, bsifi, mului,
208 /* 'or/and/xor' are C++ keywords. */
209 microblaze_or, microblaze_and, microblaze_xor,
210 andn, pcmpbf, pcmpbc, pcmpeq, pcmpne, sra, src, srl, sext8, sext16,
211@@ -129,6 +129,7 @@ enum microblaze_instr_type
212 #define RB_LOW 11 /* Low bit for RB. */
213 #define IMM_LOW 0 /* Low bit for immediate. */
214 #define IMM_MBAR 21 /* low bit for mbar instruction. */
215+#define IMM_WIDTH_LOW 6 /* Low bit for immediate width */
216
217 #define RD_MASK 0x03E00000
218 #define RA_MASK 0x001F0000
219@@ -141,6 +142,9 @@ enum microblaze_instr_type
220 /* Imm mask for mbar. */
221 #define IMM5_MBAR_MASK 0x03E00000
222
223+/* Imm mask for extract/insert width. */
224+#define IMM5_WIDTH_MASK 0x000007C0
225+
226 /* FSL imm mask for get, put instructions. */
227 #define RFSL_MASK 0x000000F
228