* v850-opc.c (v850_opcodes): Fix opcode numbers for "mov"
[deliverable/binutils-gdb.git] / opcodes / v850-opc.c
CommitLineData
6d1e1ee8
C
1#include "ansidecl.h"
2#include "opcode/v850.h"
3
4f235110
C
4/* Local insertion and extraction functions. */
5static unsigned long insert_d9 PARAMS ((unsigned long, long, const char **));
6static long extract_d9 PARAMS ((unsigned long, int *));
7
6d1e1ee8
C
8/* regular opcode */
9#define OP(x) ((x & 0x3f) << 5)
10#define OP_MASK OP(0x3f)
11
12/* conditional branch opcode */
13#define BOP(x) ((0x0b << 7) | (x & 0x0f))
14#define BOP_MASK ((0x0b << 7) | 0x0f)
15
16/* one-word opcodes */
17#define one(x) ((unsigned int) (x))
18
19/* two-word opcodes */
b1e897a9 20#define two(x,y) ((unsigned int) (x) | ((unsigned int) (y) << 16))
6d1e1ee8
C
21
22
23\f
24const struct v850_operand v850_operands[] = {
25#define UNUSED 0
69463cbb 26 { 0, 0, 0, 0, 0 },
6d1e1ee8
C
27
28/* The R1 field in a format 1, 6, 7, or 9 insn. */
29#define R1 (UNUSED+1)
69463cbb 30 { 5, 0, 0, 0, V850_OPERAND_REG },
6d1e1ee8
C
31
32/* The R2 field in a format 1, 2, 4, 5, 6, 7, 9 insn. */
33#define R2 (R1+1)
69463cbb 34 { 5, 11, 0, 0, V850_OPERAND_REG },
6d1e1ee8
C
35
36/* The IMM5 field in a format 2 insn. */
37#define I5 (R2+1)
dbc6a8f6
C
38 { 5, 0, 0, 0, V850_OPERAND_SIGNED },
39
40#define I5U (I5+1)
41 { 5, 0, 0, 0, 0 },
6d1e1ee8 42
4f235110 43/* The IMM16 field in a format 6 insn. */
dbc6a8f6 44#define I16 (I5U+1)
9ad8ddf1 45 { 16, 16, 0, 0, 0 },
6d1e1ee8 46
4be84c49
JL
47/* The signed DISP7 field in a format 4 insn. */
48#define D7S (I16+1)
49 { 7, 0, 0, 0, V850_OPERAND_SIGNED },
6d1e1ee8 50
4f235110 51/* The DISP9 field in a format 3 insn. */
4be84c49 52#define D9 (D7S+1)
dbc6a8f6 53 { 0, 0, insert_d9, extract_d9, V850_OPERAND_SIGNED },
6d1e1ee8
C
54
55/* The DISP16 field in a format 6 insn. */
4f235110 56#define D16 (D9+1)
9ab069ea 57 { 16, 16, 0, 0, V850_OPERAND_SIGNED },
6d1e1ee8
C
58
59/* The DISP22 field in a format 4 insn. */
60#define D22 (D16+1)
69463cbb 61 { 16, 0, 0, 0, 0 },
7c8157dd
JL
62
63#define B3 (D22+1)
64/* The 3 bit immediate field in format 8 insn. */
3c72ab70 65 { 3, 11, 0, 0, 0 },
69463cbb
C
66
67#define CCCC (B3+1)
68/* The 4 bit condition code in a setf instruction */
4be84c49
JL
69 { 4, 0, 0, 0, V850_OPERAND_CC },
70
71/* The unsigned DISP8 field in a format 4 insn. */
72#define D8 (CCCC+1)
73 { 8, 0, 0, 0, 0 },
74
e41c99bd
JL
75/* System register operands. */
76#define SR1 (D8+1)
18c97701 77 { 5, 0, 0, 0, V850_OPERAND_SRG }
6d1e1ee8
C
78} ;
79
80\f
81/* reg-reg instruction format (Format I) */
82#define IF1 {R1, R2}
83
84/* imm-reg instruction format (Format II) */
85#define IF2 {I5, R2}
86
87/* conditional branch instruction format (Format III) */
4f235110 88#define IF3 {D9}
6d1e1ee8
C
89
90/* 16-bit load/store instruction (Format IV) */
4be84c49
JL
91#define IF4A {D7S, R1, R2}
92#define IF4B {R2, D7S, R1}
93#define IF4C {D8, R1, R2}
94#define IF4D {R2, D8, R1}
6d1e1ee8
C
95
96/* Jump instruction (Format V) */
97#define IF5 {D22}
98
99/* 3 operand instruction (Format VI) */
e89a42c1 100#define IF6 {I16, R1, R2}
6d1e1ee8
C
101
102/* 32-bit load/store instruction (Format VII) */
e89a42c1
C
103#define IF7A {D16, R1, R2}
104#define IF7B {R2, D16, R1}
6d1e1ee8 105
b10e29f4 106/* Bit manipulation function. */
6d1e1ee8
C
107
108
109\f
110/* The opcode table.
111
112 The format of the opcode table is:
113
114 NAME OPCODE MASK { OPERANDS }
115
116 NAME is the name of the instruction.
117 OPCODE is the instruction opcode.
118 MASK is the opcode mask; this is used to tell the disassembler
119 which bits in the actual opcode must match OPCODE.
120 OPERANDS is the list of operands.
121
122 The disassembler reads the table in order and prints the first
123 instruction which matches, so this table is sorted to put more
124 specific instructions before more general instructions. It is also
125 sorted by major opcode. */
126
127const struct v850_opcode v850_opcodes[] = {
128/* load/store instructions */
fb6da868
JL
129{ "sld.b", one(0x0300), one(0x0780), IF4A, 2 },
130{ "sld.h", one(0x0400), one(0x0780), IF4A, 2 },
131{ "sld.w", one(0x0500), one(0x0780), IF4A, 2 },
280d40df
JL
132{ "sst.b", OP(0x00), OP_MASK, IF4B, 2 },
133{ "sst.h", OP(0x00), OP_MASK, IF4D, 2 },
134{ "sst.w", OP(0x00), OP_MASK, IF4D, 2 },
135
fb6da868
JL
136{ "ld.b", two(0x0700,0x0000), two (0x07e0,0x0000), IF7A, 4 },
137{ "ld.h", two(0x0720,0x0000), two (0x07e0,0x0001), IF7A, 4 },
138{ "ld.w", two(0x0720,0x0001), two (0x07e0,0x0001), IF7A, 4 },
139{ "st.b", two(0x0740,0x0000), two (0x07e0,0x0000), IF7B, 4 },
140{ "st.h", two(0x0760,0x0000), two (0x07e0,0x0001), IF7B, 4 },
141{ "st.w", two(0x0760,0x0001), two (0x07e0,0x0001), IF7B, 4 },
6d1e1ee8
C
142
143/* arithmetic operation instructions */
280d40df 144{ "mov", OP(0x00), OP_MASK, IF1, 2 },
18c97701 145{ "mov", OP(0x10), OP_MASK, IF2, 2 },
280d40df 146{ "movea", OP(0x31), OP_MASK, IF6, 4 },
18c97701 147{ "movhi", OP(0x32), OP_MASK, IF6, 4 },
280d40df
JL
148{ "add", OP(0x0e), OP_MASK, IF1, 2 },
149{ "add", OP(0x12), OP_MASK, IF2, 2 },
150{ "addi", OP(0x30), OP_MASK, IF6, 4 },
151{ "sub", OP(0x0d), OP_MASK, IF1, 2 },
152{ "subr", OP(0x0c), OP_MASK, IF1, 2 },
153{ "mulh", OP(0x07), OP_MASK, IF1, 2 },
154{ "mulh", OP(0x17), OP_MASK, IF2, 2 },
155{ "mulhi", OP(0x37), OP_MASK, IF6, 4 },
156{ "divh", OP(0x02), OP_MASK, IF1, 2 },
157{ "cmp", OP(0x0f), OP_MASK, IF1, 2 },
158{ "cmp", OP(0x13), OP_MASK, IF2, 2 },
6c1fc4d3 159{ "setf", two(0x07e0,0x0000), two(0x07f0,0xffff), {CCCC,R2}, 4 },
6d1e1ee8
C
160
161/* saturated operation instructions */
280d40df
JL
162{ "satadd", OP(0x06), OP_MASK, IF1, 2 },
163{ "satadd", OP(0x11), OP_MASK, IF2, 2 },
164{ "satsub", OP(0x05), OP_MASK, IF1, 2 },
165{ "satsubi", OP(0x33), OP_MASK, IF6, 4 },
166{ "satsubr", OP(0x04), OP_MASK, IF1, 2 },
6d1e1ee8
C
167
168/* logical operation instructions */
280d40df
JL
169{ "tst", OP(0x0b), OP_MASK, IF1, 2 },
170{ "or", OP(0x08), OP_MASK, IF1, 2 },
171{ "ori", OP(0x34), OP_MASK, IF6, 4 },
172{ "and", OP(0x0a), OP_MASK, IF1, 2 },
173{ "andi", OP(0x36), OP_MASK, IF6, 4 },
174{ "xor", OP(0x09), OP_MASK, IF1, 2 },
175{ "xori", OP(0x35), OP_MASK, IF6, 4 },
38c7a450 176{ "not", OP(0x01), OP_MASK, IF1, 2 },
280d40df
JL
177{ "sar", OP(0x15), OP_MASK, {I5U, R2}, 2 },
178{ "sar", two(0x07e0,0x00a0), two(0x07e0,0xffff), {R1,R2}, 4 },
179{ "shl", OP(0x16), OP_MASK, {I5U, R2}, 2 },
180{ "shl", two(0x07e0,0x00c0), two(0x07e0,0xffff), {R1,R2}, 4 },
181{ "shr", OP(0x14), OP_MASK, {I5U, R2}, 2 },
182{ "shr", two(0x07e0,0x0080), two(0x07e0,0xffff), {R1,R2}, 4 },
6d1e1ee8
C
183
184/* branch instructions */
6bc33c7f 185 /* signed integer */
280d40df
JL
186{ "bgt", BOP(0xf), BOP_MASK, IF3, 2 },
187{ "bge", BOP(0xe), BOP_MASK, IF3, 2 },
188{ "blt", BOP(0x6), BOP_MASK, IF3, 2 },
189{ "ble", BOP(0x7), BOP_MASK, IF3, 2 },
6bc33c7f 190 /* unsigned integer */
280d40df
JL
191{ "bh", BOP(0xb), BOP_MASK, IF3, 2 },
192{ "bnh", BOP(0x3), BOP_MASK, IF3, 2 },
193{ "bl", BOP(0x1), BOP_MASK, IF3, 2 },
194{ "bnl", BOP(0x9), BOP_MASK, IF3, 2 },
6bc33c7f 195 /* common */
280d40df
JL
196{ "be", BOP(0x2), BOP_MASK, IF3, 2 },
197{ "bne", BOP(0xa), BOP_MASK, IF3, 2 },
6bc33c7f 198 /* others */
280d40df
JL
199{ "bv", BOP(0x0), BOP_MASK, IF3, 2 },
200{ "bnv", BOP(0x8), BOP_MASK, IF3, 2 },
201{ "bn", BOP(0x4), BOP_MASK, IF3, 2 },
202{ "bp", BOP(0xc), BOP_MASK, IF3, 2 },
203{ "bc", BOP(0x1), BOP_MASK, IF3, 2 },
204{ "bnc", BOP(0x9), BOP_MASK, IF3, 2 },
205{ "bz", BOP(0x2), BOP_MASK, IF3, 2 },
206{ "bnz", BOP(0xa), BOP_MASK, IF3, 2 },
207{ "br", BOP(0x5), BOP_MASK, IF3, 2 },
208{ "bsa", BOP(0xd), BOP_MASK, IF3, 2 },
209
85b52013 210{ "jmp", one(0x0060), one(0xffe0), { R1}, 2 },
280d40df
JL
211{ "jarl", one(0x0780), one(0xf83f), { D22, R2 }, 4 },
212{ "jr", one(0x0780), one(0xffe0), { D22 }, 4 },
6d1e1ee8 213
6d1e1ee8 214/* bit manipulation instructions */
280d40df
JL
215{ "set1", two(0x07c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
216{ "not1", two(0x47c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
217{ "clr1", two(0x87c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
218{ "tst1", two(0xc7c0,0x0000), two(0xc7e0,0x0000), {B3, D16, R1}, 4 },
6d1e1ee8
C
219
220/* special instructions */
280d40df
JL
221{ "di", two(0x07e0,0x0160), two(0xffff,0xffff), {0}, 4 },
222{ "ei", two(0x87e0,0x0160), two(0xffff,0xffff), {0}, 4 },
223{ "halt", two(0x07e0,0x0120), two(0xffff,0xffff), {0}, 4 },
224{ "reti", two(0x07e0,0x0140), two(0xffff,0xffff), {0}, 4 },
c262d7d8 225{ "trap", two(0x07e0,0x0100), two(0xffe0,0xffff), {I5U}, 4 },
18c97701 226{ "ldsr", two(0x07e0,0x0020), two(0x07e0,0xffff), {R2,SR1}, 4 },
e41c99bd 227{ "stsr", two(0x07e0,0x0040), two(0x07e0,0xffff), {SR1,R2}, 4 },
280d40df 228{ "nop", one(0x00), one(0xff), {0}, 2 },
6d1e1ee8
C
229
230} ;
231
232const int v850_num_opcodes =
233 sizeof (v850_opcodes) / sizeof (v850_opcodes[0]);
234
4f235110
C
235\f
236/* The functions used to insert and extract complicated operands. */
237
238static unsigned long
239insert_d9 (insn, value, errmsg)
240 unsigned long insn;
241 long value;
242 const char **errmsg;
243{
244 if (value > 511 || value <= -512)
245 *errmsg = "value out of range";
246
247 return (insn | ((value & 0x1f0) << 7) | ((value & 0x0e) << 3));
248}
249
250static long
251extract_d9 (insn, invalid)
252 unsigned long insn;
253 int *invalid;
254{
255 long ret = ((insn & 0xf800) >> 7) | ((insn & 0x0070) >> 3);
256
257 if ((insn & 0x8000) != 0)
258 ret -= 0x0200;
259
260 return ret;
261}
This page took 0.035883 seconds and 4 git commands to generate.