1 /* Assemble V850 instructions.
2 Copyright (C) 1996 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 #include "opcode/v850.h"
23 #define OP(x) ((x & 0x3f) << 5)
24 #define OP_MASK OP (0x3f)
26 /* conditional branch opcode */
27 #define BOP(x) ((0x0b << 7) | (x & 0x0f))
28 #define BOP_MASK ((0x0f << 7) | 0x0f)
30 /* one-word opcodes */
31 #define one(x) ((unsigned int) (x))
33 /* two-word opcodes */
34 #define two(x,y) ((unsigned int) (x) | ((unsigned int) (y) << 16))
38 /* The functions used to insert and extract complicated operands. */
41 insert_d9 (insn, value, errmsg)
46 if (value > 0xff || value < -0x100)
47 *errmsg = "branch value out of range";
50 *errmsg = "branch to odd offset";
52 return (insn | ((value & 0x1f0) << 7) | ((value & 0x0e) << 3));
56 extract_d9 (insn, invalid)
60 unsigned long ret = ((insn & 0xf800) >> 7) | ((insn & 0x0070) >> 3);
62 if ((insn & 0x8000) != 0)
69 insert_d22 (insn, value, errmsg)
74 if (value > 0x1fffff || value < -0x200000)
75 *errmsg = "branch value out of range";
78 *errmsg = "branch to odd offset";
80 return (insn | ((value & 0xfffe) << 16) | ((value & 0x3f0000) >> 16));
84 extract_d22 (insn, invalid)
88 unsigned long ret = ((insn & 0xfffe0000) >> 16) | ((insn & 0x3f) << 16);
90 return ((ret << 10) >> 10);
94 insert_d16_15 (insn, value, errmsg)
99 if (value > 0x7fff || value < -0x8000)
100 *errmsg = "value out of range";
102 if ((value % 2) != 0)
103 *errmsg = "load/store half/word at odd offset";
105 return insn | ((value & 0xfffe) << 16);
109 extract_d16_15 (insn, invalid)
113 signed long ret = (insn & 0xfffe0000);
119 insert_d8_7 (insn, value, errmsg)
124 if (value > 0xff || value < 0)
125 *errmsg = "short load/store half value out of range";
127 if ((value % 2) != 0)
128 *errmsg = "short load/store half at odd offset";
132 return (insn | (value & 0x7f));
136 extract_d8_7 (insn, invalid)
140 unsigned long ret = (insn & 0x7f);
146 insert_d8_6 (insn, value, errmsg)
151 if (value > 0xff || value < 0)
152 *errmsg = "short load/store word value out of range";
154 if ((value % 4) != 0)
155 *errmsg = "short load/store word at odd offset";
159 return (insn | (value & 0x7e));
163 extract_d8_6 (insn, invalid)
167 unsigned long ret = (insn & 0x7e);
172 /* start-sanitize-v850e */
175 insert_d5_4 (insn, value, errmsg)
178 const char ** errmsg;
180 if (value > 0x1f || value < 0)
181 *errmsg = "unsigned short load half value out of range";
184 *errmsg = "unsigned short load half at odd offset";
188 return (insn | (value & 0x0f));
192 extract_d5_4 (insn, invalid)
196 unsigned long ret = (insn & 0x0f);
202 insert_d16_16 (insn, value, errmsg)
205 const char ** errmsg;
207 if (value > 0x7fff || value < -0x8000)
208 *errmsg = "value out of range";
210 return (insn | ((value & 0xfffe) << 16) | ((value & 1) << 5));
214 extract_d16_16 (insn, invalid)
218 signed long ret = insn & 0xfffe0000;
222 ret |= ((insn & 0x20) >> 5);
228 insert_i9 (insn, value, errmsg)
231 const char ** errmsg;
233 if (value > 0xff || value < -0x100)
234 *errmsg = "value out of range";
236 return insn | ((value & 0x1e0) << 13) | (value & 0x1f);
240 extract_i9 (insn, invalid)
244 signed long ret = insn & 0x003c0000;
249 ret |= (insn & 0x1f);
255 insert_u9 (insn, value, errmsg)
258 const char ** errmsg;
261 *errmsg = "value out of range";
263 return insn | ((value & 0x1e0) << 13) | (value & 0x1f);
267 extract_u9 (insn, invalid)
271 unsigned long ret = insn & 0x003c0000;
275 ret |= (insn & 0x1f);
280 /* start-sanitize-v850e */
282 insert_spe (insn, value, errmsg)
285 const char ** errmsg;
288 *errmsg = "invalid register for stack adjustment";
290 return insn & (~ 0x180000);
294 extract_spe (insn, invalid)
301 /* end-sanitize-v850e */
302 /* start-sanitize-v850eq */
305 insert_i5div (insn, value, errmsg)
308 const char ** errmsg;
311 *errmsg = "value out of range";
314 *errmsg = "value must be even";
318 return insn | ((value & 0x1e) << 17);
322 extract_i5div (insn, invalid)
326 unsigned long ret = insn & 0x3c0000;
335 /* end-sanitize-v850eq */
338 const struct v850_operand v850_operands[] =
343 /* The R1 field in a format 1, 6, 7, or 9 insn. */
344 #define R1 (UNUSED+1)
345 { 5, 0, 0, 0, V850_OPERAND_REG },
347 /* The R1 field in a format 1, 6, 7, or 9 insn. */
348 #define R1_NOTR0 (R1 + 1)
349 { 5, 0, 0, 0, V850_OPERAND_REG | V850_NOT_R0 },
351 /* The R2 field in a format 1, 2, 4, 5, 6, 7, 9 insn. */
352 #define R2 (R1_NOTR0 + 1)
353 { 5, 11, 0, 0, V850_OPERAND_REG },
355 /* The R2 field in a format 1, 2, 4, 5, 6, 7, 9 insn. */
356 #define R2_NOTR0 (R2 + 1)
357 { 5, 11, 0, 0, V850_OPERAND_REG | V850_NOT_R0 },
359 /* The IMM5 field in a format 2 insn. */
360 #define I5 (R2_NOTR0 + 1)
361 { 5, 0, 0, 0, V850_OPERAND_SIGNED },
366 /* The IMM16 field in a format 6 insn. */
368 { 16, 16, 0, 0, V850_OPERAND_SIGNED },
370 /* The signed DISP7 field in a format 4 insn. */
374 /* The DISP16 field in a format 6 insn. */
375 #define D16_15 (D7+1)
376 { 16, 16, insert_d16_15, extract_d16_15, V850_OPERAND_SIGNED },
378 #define B3 (D16_15+1)
379 /* The 3 bit immediate field in format 8 insn. */
383 /* The 4 bit condition code in a setf instruction */
384 { 4, 0, 0, 0, V850_OPERAND_CC },
386 /* The unsigned DISP8_7 field in a format 4 insn. */
387 #define D8_7 (CCCC+1)
388 { 8, 0, insert_d8_7, extract_d8_7, V850_OPERAND_ADJUST_SHORT_MEMORY },
390 /* The unsigned DISP8_6 field in a format 4 insn. */
391 #define D8_6 (D8_7+1)
392 { 8, 0, insert_d8_6, extract_d8_6, V850_OPERAND_ADJUST_SHORT_MEMORY },
394 /* System register operands. */
396 { 5, 0, 0, 0, V850_OPERAND_SRG },
400 { 0, 0, 0, 0, V850_OPERAND_EP },
402 /* The IMM16 field (unsigned0 in a format 6 insn. */
406 /* The R2 field as a system register. */
408 { 5, 11, 0, 0, V850_OPERAND_SRG },
410 /* The DISP16 field in a format 8 insn. */
412 { 16, 16, 0, 0, V850_OPERAND_SIGNED },
414 /* The DISP22 field in a format 4 insn, relaxable. */
415 #define D9_RELAX (D16+1)
416 { 9, 0, insert_d9, extract_d9, V850_OPERAND_RELAX | V850_OPERAND_SIGNED | V850_OPERAND_DISP },
418 /* The DISP22 field in a format 4 insn.
420 This _must_ follow D9_RELAX; the assembler assumes that the longer
421 version immediately follows the shorter version for relaxing. */
422 #define D22 (D9_RELAX+1)
423 { 22, 0, insert_d22, extract_d22, V850_OPERAND_SIGNED | V850_OPERAND_DISP },
425 /* start-sanitize-v850e */
427 /* The signed DISP4 field in a format 4 insn. */
431 /* The unsigned DISP5_4 field in a format 4 insn. */
432 #define D5_4 (D4 + 1)
433 { 5, 0, insert_d5_4, extract_d5_4, V850_OPERAND_ADJUST_SHORT_MEMORY },
435 /* The DISP16 field in an unsigned format 7 byte load insn. */
436 #define D16_16 (D5_4 + 1)
437 { 16, 16, insert_d16_16, extract_d16_16, 0 },
439 /* Third register in conditional moves. */
440 #define R3 (D16_16 + 1)
441 { 5, 27, 0, 0, V850_OPERAND_REG },
443 /* Condition code in conditional moves. */
444 #define MOVCC (R3 + 1)
445 { 4, 17, 0, 0, V850_OPERAND_CC },
447 /* The IMM9 field in a multiply word. */
448 #define I9 (MOVCC + 1)
449 { 9, 0, insert_i9, extract_i9, V850_OPERAND_SIGNED },
451 /* The IMM9 field in a multiply word. */
453 { 9, 0, insert_u9, extract_u9, 0 },
455 /* A list of registers in a prepare/dispose instruction. */
456 #define LIST12 (U9 + 1)
457 { -1, 0xffe00001, 0, 0, V850E_PUSH_POP },
459 /* The IMM6 field in a call instruction. */
460 #define I6 (LIST12 + 1)
463 /* The 16 bit immediate following a 32 bit instruction. */
464 #define IMM16 (I6 + 1)
465 { 16, 16, 0, 0, V850_OPERAND_SIGNED | V850E_IMMEDIATE16 },
467 /* The 32 bit immediate following a 32 bit instruction. */
468 #define IMM32 (IMM16 + 1)
469 { 0, 0, 0, 0, V850E_IMMEDIATE32 },
471 /* The IMM5 field in a push/pop instruction. */
472 #define IMM5 (IMM32 + 1)
475 /* Reg2 in dispose instruction. */
476 #define R2DISPOSE (IMM5 + 1)
477 { 5, 16, 0, 0, V850_OPERAND_REG | V850_NOT_R0 },
479 /* Stack pointer in prepare instruction. */
480 #define SP (R2DISPOSE + 1)
481 { 2, 19, insert_spe, extract_spe, V850_OPERAND_REG },
483 /* end-sanitize-v850e */
484 /* start-sanitize-v850eq */
486 /* The IMM5 field in a divide N step instruction. */
487 #define I5DIV (SP + 1)
488 { 9, 0, insert_i5div, extract_i5div, V850_OPERAND_SIGNED },
490 /* The list of registers in a PUSHMH/POPMH instruction. */
491 #define LIST18_H (I5DIV + 1)
492 { -1, 0xfff8000f, 0, 0, V850E_PUSH_POP },
494 /* The list of registers in a PUSHML/POPML instruction. */
495 #define LIST18_L (LIST18_H + 1)
496 { -1, 0xfff8001f, 0, 0, V850E_PUSH_POP }, /* The setting of the 4th bit is a flag to disassmble() in v850-dis.c */
498 /* end-sanitize-v850eq */
502 /* reg-reg instruction format (Format I) */
505 /* imm-reg instruction format (Format II) */
508 /* conditional branch instruction format (Format III) */
509 #define IF3 {D9_RELAX}
511 /* 3 operand instruction (Format VI) */
512 #define IF6 {I16, R1, R2}
514 /* 3 operand instruction (Format VI) */
515 #define IF6U {I16U, R1, R2}
521 The format of the opcode table is:
523 NAME OPCODE MASK { OPERANDS } MEMOP
525 NAME is the name of the instruction.
526 OPCODE is the instruction opcode.
527 MASK is the opcode mask; this is used to tell the disassembler
528 which bits in the actual opcode must match OPCODE.
529 OPERANDS is the list of operands.
530 MEMOP specifies which operand (if any) is a memory operand.
532 The disassembler reads the table in order and prints the first
533 instruction which matches, so this table is sorted to put more
534 specific instructions before more general instructions. It is also
535 sorted by major opcode. */
537 const struct v850_opcode v850_opcodes[] =
539 { "breakpoint", 0xffff, 0xffff, {UNUSED}, 0 },
541 { "jmp", one (0x0060), one (0xffe0), {R1}, 1 },
543 /* load/store instructions */
545 { "sld.bu", one (0x0300), one (0x0780), {D7, EP, R2_NOTR0}, 1 },
546 { "sld.hu", one (0x0400), one (0x0780), {D8_7, EP, R2_NOTR0}, 1 },
547 { "sld.b", one (0x0060), one (0x07f0), {D4, EP, R2}, 1 },
548 { "sld.h", one (0x0070), one (0x07f0), {D5_4, EP, R2}, 1 },
550 { "sld.b", one (0x0300), one (0x0780), {D7, EP, R2}, 1 },
551 { "sld.h", one (0x0400), one (0x0780), {D8_7, EP, R2}, 1 },
552 { "sld.bu", one (0x0060), one (0x07f0), {D4, EP, R2_NOTR0}, 1 },
553 { "sld.hu", one (0x0070), one (0x07f0), {D5_4, EP, R2_NOTR0}, 1 },
555 { "sld.w", one (0x0500), one (0x0781), {D8_6, EP, R2}, 1 },
556 { "sst.b", one (0x0380), one (0x0780), {R2, D7, EP}, 2 },
557 { "sst.h", one (0x0480), one (0x0780), {R2, D8_7, EP}, 2 },
558 { "sst.w", one (0x0501), one (0x0781), {R2, D8_6, EP}, 2 },
560 /* start-sanitize-v850eq */
561 { "pushml", two (0x07e0, 0x0001), two (0xfff0, 0x0007), {LIST18_L}, 0 },
562 { "pushmh", two (0x07e0, 0x0003), two (0xfff0, 0x0007), {LIST18_H}, 0 },
563 { "popml", two (0x07f0, 0x0001), two (0xfff0, 0x0007), {LIST18_L}, 0 },
564 { "popmh", two (0x07f0, 0x0003), two (0xfff0, 0x0007), {LIST18_H}, 0 },
565 /* end-sanitize-v850e */
567 /* start-sanitize-v850e */
568 { "prepare", two (0x0780, 0x0003), two (0xffc0, 0x001f), {LIST12, IMM5, SP}, 0 },
569 { "prepare", two (0x0780, 0x000b), two (0xffc0, 0x001f), {LIST12, IMM5, IMM16}, 0 },
570 { "prepare", two (0x0780, 0x0013), two (0xffc0, 0x001f), {LIST12, IMM5, IMM16}, 0 },
571 { "prepare", two (0x0780, 0x001b), two (0xffc0, 0x001f), {LIST12, IMM5, IMM32}, 0 },
572 { "prepare", two (0x0780, 0x0001), two (0xffc0, 0x001f), {LIST12, IMM5}, 0 },
573 { "dispose", one (0x0640), one (0xffc0), {IMM5, LIST12, R2DISPOSE},0 },
574 { "dispose", two (0x0640, 0x0000), two (0xffc0, 0x001f), {IMM5, LIST12}, 0 },
575 /* end-sanitize-v850e */
577 { "ld.b", two (0x0700, 0x0000), two (0x07e0, 0x0000), {D16, R1, R2}, 1 },
578 { "ld.h", two (0x0720, 0x0000), two (0x07e0, 0x0001), {D16_15, R1, R2}, 1 },
579 { "ld.w", two (0x0720, 0x0001), two (0x07e0, 0x0001), {D16_15, R1, R2}, 1 },
580 /* start-sanitize-v850e */
581 { "ld.bu", two (0x0780, 0x0001), two (0x07c0, 0x0001), {D16_16, R1, R2_NOTR0}, 1 },
582 { "ld.hu", two (0x07e0, 0x0001), two (0x07e0, 0x0001), {D16_15, R1, R2_NOTR0}, 1 },
583 /* end-sanitize-v850e */
584 { "st.b", two (0x0740, 0x0000), two (0x07e0, 0x0000), {R2, D16, R1}, 2 },
585 { "st.h", two (0x0760, 0x0000), two (0x07e0, 0x0001), {R2, D16_15, R1}, 2 },
586 { "st.w", two (0x0760, 0x0001), two (0x07e0, 0x0001), {R2, D16_15, R1}, 2 },
588 /* start-sanitize-v850e */
589 /* byte swap/extend instructions */
590 { "zxb", one (0x0080), one (0xffe0), {R1_NOTR0}, 0 },
591 { "zxh", one (0x00c0), one (0xffe0), {R1_NOTR0}, 0 },
592 { "sxb", one (0x00a0), one (0xffe0), {R1_NOTR0}, 0 },
593 { "sxh", one (0x00e0), one (0xffe0), {R1_NOTR0}, 0 },
594 { "bsh", two (0x07e0, 0x0342), two (0x07ff, 0x07ff), {R2, R3}, 0 },
595 { "bsw", two (0x07e0, 0x0340), two (0x07ff, 0x07ff), {R2, R3}, 0 },
596 { "hsw", two (0x07e0, 0x0344), two (0x07ff, 0x07ff), {R2, R3}, 0 },
598 /* jump table instructions */
599 { "switch", one (0x0040), one (0xffe0), {R1}, 1 },
600 { "callt", one (0x0200), one (0xffc0), {I6}, 0 },
601 { "ctret", two (0x07e0, 0x0144), two (0xffff, 0xffff), {0}, 0 },
602 /* end-sanitize-v850e */
604 /* arithmetic operation instructions */
605 { "setf", two (0x07e0, 0x0000), two (0x07f0, 0xffff), {CCCC, R2}, 0 },
606 /* start-sanitize-v850e */
607 { "cmov", two (0x07e0, 0x0320), two (0x07e0, 0x07e1), {MOVCC, R2, R1, R3}, 0 },
608 { "cmov", two (0x07e0, 0x0300), two (0x07e0, 0x07e1), {MOVCC, I5, R2, R3}, 0 },
609 /* end-sanitize-v850e */
610 { "mul", two (0x07e0, 0x0220), two (0x07e0, 0x07ff), {R1, R2, R3}, 0 },
611 /* start-sanitize-v850e */
612 { "mul", two (0x07e0, 0x0240), two (0x07e0, 0x07c3), {I9, R2, R3}, 0 },
613 /* end-sanitize-v850e */
614 { "mulu", two (0x07e0, 0x0222), two (0x07e0, 0x07ff), {R1, R2, R3}, 0 },
616 /* start-sanitize-v850e */
617 { "mulu", two (0x07e0, 0x0242), two (0x07e0, 0x07c3), {U9, R2, R3}, 0 },
618 { "div", two (0x07e0, 0x02c0), two (0x07e0, 0x07ff), {R1, R2, R3}, 0 },
619 { "divu", two (0x07e0, 0x02c2), two (0x07e0, 0x07ff), {R1, R2, R3}, 0 },
620 { "divhu", two (0x07e0, 0x0282), two (0x07e0, 0x07ff), {R1, R2, R3}, 0 },
621 { "divh", two (0x07e0, 0x0280), two (0x07e0, 0x07ff), {R1, R2, R3}, 0 },
622 /* end-sanitize-v850e */
623 { "divh", OP (0x02), OP_MASK, {R1, R2_NOTR0}, 0 },
625 /* start-sanitize-v850eq */
626 { "divhn", two (0x07e0, 0x0280), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
627 { "divhun", two (0x07e0, 0x0282), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
628 { "divn", two (0x07e0, 0x02c0), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
629 { "divun", two (0x07e0, 0x02c2), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
630 { "sdivhn", two (0x07e0, 0x0180), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
631 { "sdivhun", two (0x07e0, 0x0182), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
632 { "sdivn", two (0x07e0, 0x01c0), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
633 { "sdivun", two (0x07e0, 0x01c2), two (0x07e0, 0x07c3), {I5DIV, R1, R2, R3}, 0 },
634 /* end-sanitize-v850eq */
636 { "nop", one (0x00), one (0xffff), {0}, 0 },
637 { "mov", OP (0x10), OP_MASK, {I5, R2_NOTR0}, 0 },
638 /* start-sanitize-v850e */
639 { "mov", one (0x0620), one (0xffe0), {IMM32, R1_NOTR0}, 0 },
640 /* end-sanitize-v850e */
641 { "mov", OP (0x00), OP_MASK, {R1, R2_NOTR0}, 0 },
642 { "movea", OP (0x31), OP_MASK, {I16, R1, R2_NOTR0}, 0 },
643 { "movhi", OP (0x32), OP_MASK, {I16U, R1, R2_NOTR0}, 0 },
644 { "add", OP (0x0e), OP_MASK, IF1, 0 },
645 { "add", OP (0x12), OP_MASK, IF2, 0 },
646 { "addi", OP (0x30), OP_MASK, IF6, 0 },
647 { "sub", OP (0x0d), OP_MASK, IF1, 0 },
648 { "subr", OP (0x0c), OP_MASK, IF1, 0 },
649 { "mulh", OP (0x17), OP_MASK, {I5, R2_NOTR0}, 0 },
650 { "mulh", OP (0x07), OP_MASK, {R1, R2_NOTR0}, 0 },
651 { "mulhi", OP (0x37), OP_MASK, {I16, R1, R2_NOTR0}, 0 },
652 { "cmp", OP (0x0f), OP_MASK, IF1, 0 },
653 { "cmp", OP (0x13), OP_MASK, IF2, 0 },
655 /* saturated operation instructions */
656 { "satadd", OP (0x11), OP_MASK, {I5, R2_NOTR0}, 0 },
657 { "satadd", OP (0x06), OP_MASK, {R1, R2_NOTR0}, 0 },
658 { "satsub", OP (0x05), OP_MASK, {R1, R2_NOTR0}, 0 },
659 { "satsubi", OP (0x33), OP_MASK, {I16, R1, R2_NOTR0}, 0 },
660 { "satsubr", OP (0x04), OP_MASK, {R1, R2_NOTR0}, 0 },
662 /* logical operation instructions */
663 { "tst", OP (0x0b), OP_MASK, IF1, 0 },
664 { "or", OP (0x08), OP_MASK, IF1, 0 },
665 { "ori", OP (0x34), OP_MASK, IF6U, 0 },
666 { "and", OP (0x0a), OP_MASK, IF1, 0 },
667 { "andi", OP (0x36), OP_MASK, IF6U, 0 },
668 { "xor", OP (0x09), OP_MASK, IF1, 0 },
669 { "xori", OP (0x35), OP_MASK, IF6U, 0 },
670 { "not", OP (0x01), OP_MASK, IF1, 0 },
671 { "sar", OP (0x15), OP_MASK, {I5U, R2}, 0 },
672 { "sar", two (0x07e0, 0x00a0), two (0x07e0, 0xffff), {R1, R2}, 0 },
673 { "shl", OP (0x16), OP_MASK, {I5U, R2}, 0 },
674 { "shl", two (0x07e0, 0x00c0), two (0x07e0, 0xffff), {R1, R2}, 0 },
675 { "shr", OP (0x14), OP_MASK, {I5U, R2}, 0 },
676 { "shr", two (0x07e0, 0x0080), two (0x07e0, 0xffff), {R1, R2}, 0 },
677 /* start-sanitize-v850e */
678 { "sasf", two (0x07e0, 0x0200), two (0x07f0, 0xffff), {CCCC, R2}, 0 },
679 /* end-sanitize-v850e */
681 /* branch instructions */
683 { "bgt", BOP (0xf), BOP_MASK, IF3, 0 },
684 { "bge", BOP (0xe), BOP_MASK, IF3, 0 },
685 { "blt", BOP (0x6), BOP_MASK, IF3, 0 },
686 { "ble", BOP (0x7), BOP_MASK, IF3, 0 },
687 /* unsigned integer */
688 { "bh", BOP (0xb), BOP_MASK, IF3, 0 },
689 { "bnh", BOP (0x3), BOP_MASK, IF3, 0 },
690 { "bl", BOP (0x1), BOP_MASK, IF3, 0 },
691 { "bnl", BOP (0x9), BOP_MASK, IF3, 0 },
693 { "be", BOP (0x2), BOP_MASK, IF3, 0 },
694 { "bne", BOP (0xa), BOP_MASK, IF3, 0 },
696 { "bv", BOP (0x0), BOP_MASK, IF3, 0 },
697 { "bnv", BOP (0x8), BOP_MASK, IF3, 0 },
698 { "bn", BOP (0x4), BOP_MASK, IF3, 0 },
699 { "bp", BOP (0xc), BOP_MASK, IF3, 0 },
700 { "bc", BOP (0x1), BOP_MASK, IF3, 0 },
701 { "bnc", BOP (0x9), BOP_MASK, IF3, 0 },
702 { "bz", BOP (0x2), BOP_MASK, IF3, 0 },
703 { "bnz", BOP (0xa), BOP_MASK, IF3, 0 },
704 { "br", BOP (0x5), BOP_MASK, IF3, 0 },
705 { "bsa", BOP (0xd), BOP_MASK, IF3, 0 },
709 We use the short form in the opcode/mask fields. The assembler
710 will twiddle bits as necessary if the long form is needed. */
713 { "jgt", BOP (0xf), BOP_MASK, IF3, 0 },
714 { "jge", BOP (0xe), BOP_MASK, IF3, 0 },
715 { "jlt", BOP (0x6), BOP_MASK, IF3, 0 },
716 { "jle", BOP (0x7), BOP_MASK, IF3, 0 },
717 /* unsigned integer */
718 { "jh", BOP (0xb), BOP_MASK, IF3, 0 },
719 { "jnh", BOP (0x3), BOP_MASK, IF3, 0 },
720 { "jl", BOP (0x1), BOP_MASK, IF3, 0 },
721 { "jnl", BOP (0x9), BOP_MASK, IF3, 0 },
723 { "je", BOP (0x2), BOP_MASK, IF3, 0 },
724 { "jne", BOP (0xa), BOP_MASK, IF3, 0 },
726 { "jv", BOP (0x0), BOP_MASK, IF3, 0 },
727 { "jnv", BOP (0x8), BOP_MASK, IF3, 0 },
728 { "jn", BOP (0x4), BOP_MASK, IF3, 0 },
729 { "jp", BOP (0xc), BOP_MASK, IF3, 0 },
730 { "jc", BOP (0x1), BOP_MASK, IF3, 0 },
731 { "jnc", BOP (0x9), BOP_MASK, IF3, 0 },
732 { "jz", BOP (0x2), BOP_MASK, IF3, 0 },
733 { "jnz", BOP (0xa), BOP_MASK, IF3, 0 },
734 { "jsa", BOP (0xd), BOP_MASK, IF3, 0 },
735 { "jbr", BOP (0x5), BOP_MASK, IF3, 0 },
737 { "jr", one (0x0780), two (0xffc0, 0x0001), {D22}, 0 },
738 { "jarl", one (0x0780), two (0x07c0, 0x0001), {D22, R2}, 0 },
740 /* bit manipulation instructions */
741 { "set1", two (0x07c0, 0x0000), two (0xc7e0, 0x0000), {B3, D16, R1}, 2 },
742 /* start-sanitize-v850e */
743 { "set1", two (0x07e0, 0x00e0), two (0x07e0, 0xffff), {R2, R1}, 2 },
744 /* end-sanitize-v850e */
745 { "not1", two (0x47c0, 0x0000), two (0xc7e0, 0x0000), {B3, D16, R1}, 2 },
746 /* start-sanitize-v850e */
747 { "not1", two (0x07e0, 0x00e2), two (0x07e0, 0xffff), {R2, R1}, 2 },
748 /* end-sanitize-v850e */
749 { "clr1", two (0x87c0, 0x0000), two (0xc7e0, 0x0000), {B3, D16, R1}, 2 },
750 /* start-sanitize-v850e */
751 { "clr1", two (0x07e0, 0x00e4), two (0x07e0, 0xffff), {R2, R1}, 2 },
752 /* end-sanitize-v850e */
753 { "tst1", two (0xc7c0, 0x0000), two (0xc7e0, 0x0000), {B3, D16, R1}, 2 },
754 /* start-sanitize-v850e */
755 { "tst1", two (0x07e0, 0x00e6), two (0x07e0, 0xffff), {R2, R1}, 2 },
756 /* end-sanitize-v850e */
758 /* special instructions */
759 { "di", two (0x07e0, 0x0160), two (0xffff, 0xffff), {0}, 0 },
760 { "ei", two (0x87e0, 0x0160), two (0xffff, 0xffff), {0}, 0 },
761 { "halt", two (0x07e0, 0x0120), two (0xffff, 0xffff), {0}, 0 },
762 { "reti", two (0x07e0, 0x0140), two (0xffff, 0xffff), {0}, 0 },
763 { "trap", two (0x07e0, 0x0100), two (0xffe0, 0xffff), {I5U}, 0 },
764 { "ldsr", two (0x07e0, 0x0020), two (0x07e0, 0xffff), {R1, SR2}, 0 },
765 { "stsr", two (0x07e0, 0x0040), two (0x07e0, 0xffff), {SR1, R2}, 0 },
770 const int v850_num_opcodes =
771 sizeof (v850_opcodes) / sizeof (v850_opcodes[0]);