1 /* tc-d10v.c -- Assembler code for the Mitsubishi D10V
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005
3 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "safe-ctype.h"
26 #include "opcode/d10v.h"
29 const char comment_chars
[] = ";";
30 const char line_comment_chars
[] = "#";
31 const char line_separator_chars
[] = "";
32 const char *md_shortopts
= "O";
33 const char EXP_CHARS
[] = "eE";
34 const char FLT_CHARS
[] = "dD";
38 #define AT_WORD_P(X) ((X)->X_op == O_right_shift \
39 && (X)->X_op_symbol != NULL \
40 && symbol_constant_p ((X)->X_op_symbol) \
41 && S_GET_VALUE ((X)->X_op_symbol) == AT_WORD_RIGHT_SHIFT)
42 #define AT_WORD_RIGHT_SHIFT 2
45 #define MAX_INSN_FIXUPS (5)
52 bfd_reloc_code_real_type reloc
;
55 typedef struct _fixups
58 struct d10v_fixup fix
[MAX_INSN_FIXUPS
];
62 static Fixups FixUps
[2];
63 static Fixups
*fixups
;
65 static int do_not_ignore_hash
= 0;
67 typedef int packing_type
;
68 #define PACK_UNSPEC (0) /* Packing order not specified. */
69 #define PACK_PARALLEL (1) /* "||" */
70 #define PACK_LEFT_RIGHT (2) /* "->" */
71 #define PACK_RIGHT_LEFT (3) /* "<-" */
72 static packing_type etype
= PACK_UNSPEC
; /* Used by d10v_cleanup. */
74 /* TRUE if instruction swapping warnings should be inhibited.
76 static bfd_boolean flag_warn_suppress_instructionswap
;
78 /* TRUE if instruction packing should be performed when --gstabs is specified.
79 --gstabs-packing, --no-gstabs-packing. */
80 static bfd_boolean flag_allow_gstabs_packing
= 1;
82 /* Local functions. */
83 static int reg_name_search
PARAMS ((char *name
));
84 static int register_name
PARAMS ((expressionS
*expressionP
));
85 static int check_range
PARAMS ((unsigned long num
, int bits
, int flags
));
86 static int postfix
PARAMS ((char *p
));
87 static bfd_reloc_code_real_type get_reloc
PARAMS ((struct d10v_operand
*op
));
88 static int get_operands
PARAMS ((expressionS exp
[]));
89 static struct d10v_opcode
*find_opcode
PARAMS ((struct d10v_opcode
*opcode
, expressionS ops
[]));
90 static unsigned long build_insn
PARAMS ((struct d10v_opcode
*opcode
, expressionS
*opers
, unsigned long insn
));
91 static void write_long
PARAMS ((unsigned long insn
, Fixups
*fx
));
92 static void write_1_short
PARAMS ((struct d10v_opcode
*opcode
, unsigned long insn
, Fixups
*fx
));
93 static int write_2_short
PARAMS ((struct d10v_opcode
*opcode1
, unsigned long insn1
,
94 struct d10v_opcode
*opcode2
, unsigned long insn2
, packing_type exec_type
, Fixups
*fx
));
95 static unsigned long do_assemble
PARAMS ((char *str
, struct d10v_opcode
**opcode
));
96 static unsigned long d10v_insert_operand
PARAMS (( unsigned long insn
, int op_type
,
97 offsetT value
, int left
, fixS
*fix
));
98 static int parallel_ok
PARAMS ((struct d10v_opcode
*opcode1
, unsigned long insn1
,
99 struct d10v_opcode
*opcode2
, unsigned long insn2
,
100 packing_type exec_type
));
102 static void check_resource_conflict
PARAMS ((struct d10v_opcode
*opcode1
,
104 struct d10v_opcode
*opcode2
,
105 unsigned long insn2
));
107 static symbolS
* find_symbol_matching_register
PARAMS ((expressionS
*));
109 struct option md_longopts
[] =
111 #define OPTION_NOWARNSWAP (OPTION_MD_BASE)
112 {"nowarnswap", no_argument
, NULL
, OPTION_NOWARNSWAP
},
113 #define OPTION_GSTABSPACKING (OPTION_MD_BASE + 1)
114 {"gstabspacking", no_argument
, NULL
, OPTION_GSTABSPACKING
},
115 {"gstabs-packing", no_argument
, NULL
, OPTION_GSTABSPACKING
},
116 #define OPTION_NOGSTABSPACKING (OPTION_MD_BASE + 2)
117 {"nogstabspacking", no_argument
, NULL
, OPTION_NOGSTABSPACKING
},
118 {"no-gstabs-packing", no_argument
, NULL
, OPTION_NOGSTABSPACKING
},
119 {NULL
, no_argument
, NULL
, 0}
122 size_t md_longopts_size
= sizeof (md_longopts
);
124 static void d10v_dot_word
PARAMS ((int));
126 /* The target specific pseudo-ops which we support. */
127 const pseudo_typeS md_pseudo_table
[] =
129 { "word", d10v_dot_word
, 2 },
133 /* Opcode hash table. */
134 static struct hash_control
*d10v_hash
;
136 /* Do a binary search of the d10v_predefined_registers array to see if
137 NAME is a valid regiter name. Return the register number from the
138 array on success, or -1 on failure. */
141 reg_name_search (name
)
144 int middle
, low
, high
;
148 high
= d10v_reg_name_cnt () - 1;
152 middle
= (low
+ high
) / 2;
153 cmp
= strcasecmp (name
, d10v_predefined_registers
[middle
].name
);
159 return d10v_predefined_registers
[middle
].value
;
165 /* Check the string at input_line_pointer
166 to see if it is a valid register name. */
169 register_name (expressionP
)
170 expressionS
*expressionP
;
173 char c
, *p
= input_line_pointer
;
176 && *p
!= '\n' && *p
!= '\r' && *p
!= ',' && *p
!= ' ' && *p
!= ')')
183 /* Look to see if it's in the register table. */
184 reg_number
= reg_name_search (input_line_pointer
);
187 expressionP
->X_op
= O_register
;
188 /* Temporarily store a pointer to the string here. */
189 expressionP
->X_op_symbol
= (symbolS
*) input_line_pointer
;
190 expressionP
->X_add_number
= reg_number
;
191 input_line_pointer
= p
;
200 check_range (num
, bits
, flags
)
208 /* Don't bother checking 16-bit values. */
212 if (flags
& OPERAND_SHIFT
)
214 /* All special shift operands are unsigned and <= 16.
215 We allow 0 for now. */
222 if (flags
& OPERAND_SIGNED
)
224 /* Signed 3-bit integers are restricted to the (-2, 3) range. */
225 if (flags
& RESTRICTED_NUM3
)
227 if ((long) num
< -2 || (long) num
> 3)
232 max
= (1 << (bits
- 1)) - 1;
233 min
= - (1 << (bits
- 1));
234 if (((long) num
> max
) || ((long) num
< min
))
240 max
= (1 << bits
) - 1;
242 if (((long) num
> max
) || ((long) num
< min
))
249 md_show_usage (stream
)
252 fprintf (stream
, _("D10V options:\n\
253 -O Optimize. Will do some operations in parallel.\n\
254 --gstabs-packing Pack adjacent short instructions together even\n\
255 when --gstabs is specified. On by default.\n\
256 --no-gstabs-packing If --gstabs is specified, do not pack adjacent\n\
257 instructions together.\n"));
261 md_parse_option (c
, arg
)
263 char *arg ATTRIBUTE_UNUSED
;
268 /* Optimize. Will attempt to parallelize operations. */
271 case OPTION_NOWARNSWAP
:
272 flag_warn_suppress_instructionswap
= 1;
274 case OPTION_GSTABSPACKING
:
275 flag_allow_gstabs_packing
= 1;
277 case OPTION_NOGSTABSPACKING
:
278 flag_allow_gstabs_packing
= 0;
287 md_undefined_symbol (name
)
288 char *name ATTRIBUTE_UNUSED
;
293 /* Turn a string in input_line_pointer into a floating point constant
294 of type TYPE, and store the appropriate bytes in *LITP. The number
295 of LITTLENUMS emitted is stored in *SIZEP. An error message is
296 returned, or NULL on OK. */
299 md_atof (type
, litP
, sizeP
)
305 LITTLENUM_TYPE words
[4];
319 return _("bad call to md_atof");
322 t
= atof_ieee (input_line_pointer
, type
, words
);
324 input_line_pointer
= t
;
328 for (i
= 0; i
< prec
; i
++)
330 md_number_to_chars (litP
, (valueT
) words
[i
], 2);
337 md_convert_frag (abfd
, sec
, fragP
)
338 bfd
*abfd ATTRIBUTE_UNUSED
;
339 asection
*sec ATTRIBUTE_UNUSED
;
340 fragS
*fragP ATTRIBUTE_UNUSED
;
346 md_section_align (seg
, addr
)
350 int align
= bfd_get_section_alignment (stdoutput
, seg
);
351 return ((addr
+ (1 << align
) - 1) & (-1 << align
));
357 char *prev_name
= "";
358 struct d10v_opcode
*opcode
;
359 d10v_hash
= hash_new ();
361 /* Insert unique names into hash table. The D10v instruction set
362 has many identical opcode names that have different opcodes based
363 on the operands. This hash table then provides a quick index to
364 the first opcode with a particular name in the opcode table. */
366 for (opcode
= (struct d10v_opcode
*) d10v_opcodes
; opcode
->name
; opcode
++)
368 if (strcmp (prev_name
, opcode
->name
))
370 prev_name
= (char *) opcode
->name
;
371 hash_insert (d10v_hash
, opcode
->name
, (char *) opcode
);
376 FixUps
[0].next
= &FixUps
[1];
377 FixUps
[1].next
= &FixUps
[0];
380 /* Remove the postincrement or postdecrement operator ( '+' or '-' )
381 from an expression. */
387 while (*p
!= '-' && *p
!= '+')
389 if (*p
== 0 || *p
== '\n' || *p
== '\r')
408 static bfd_reloc_code_real_type
410 struct d10v_operand
*op
;
417 if (op
->flags
& OPERAND_ADDR
)
420 return (BFD_RELOC_D10V_10_PCREL_R
);
422 return (BFD_RELOC_D10V_18_PCREL
);
425 return (BFD_RELOC_16
);
428 /* Parse a string of operands. Return an array of expressions. */
434 char *p
= input_line_pointer
;
441 while (*p
== ' ' || *p
== '\t' || *p
== ',')
443 if (*p
== 0 || *p
== '\n' || *p
== '\r')
451 exp
[numops
].X_op
= O_absent
;
455 exp
[numops
].X_add_number
= OPERAND_ATPAR
;
460 exp
[numops
].X_add_number
= OPERAND_ATMINUS
;
464 exp
[numops
].X_add_number
= OPERAND_ATSIGN
;
468 exp
[numops
].X_op
= O_absent
;
469 exp
[numops
].X_add_number
= OPERAND_PLUS
;
480 /* Just skip the trailing paren. */
485 input_line_pointer
= p
;
487 /* Check to see if it might be a register name. */
488 if (!register_name (&exp
[numops
]))
490 /* Parse as an expression. */
493 /* Any expression that involves the indirect addressing
494 cannot also involve immediate addressing. Therefore
495 the use of the hash character is illegal. */
496 int save
= do_not_ignore_hash
;
497 do_not_ignore_hash
= 1;
499 expression (&exp
[numops
]);
501 do_not_ignore_hash
= save
;
504 expression (&exp
[numops
]);
507 if (strncasecmp (input_line_pointer
, "@word", 5) == 0)
509 input_line_pointer
+= 5;
510 if (exp
[numops
].X_op
== O_register
)
512 /* If it looked like a register name but was followed by
513 "@word" then it was really a symbol, so change it to
515 exp
[numops
].X_op
= O_symbol
;
516 exp
[numops
].X_add_symbol
=
517 symbol_find_or_make ((char *) exp
[numops
].X_op_symbol
);
520 /* Check for identifier@word+constant. */
521 if (*input_line_pointer
== '-' || *input_line_pointer
== '+')
524 expression (&new_exp
);
525 exp
[numops
].X_add_number
= new_exp
.X_add_number
;
528 /* Convert expr into a right shift by AT_WORD_RIGHT_SHIFT. */
531 memset (&new_exp
, 0, sizeof new_exp
);
532 new_exp
.X_add_number
= AT_WORD_RIGHT_SHIFT
;
533 new_exp
.X_op
= O_constant
;
534 new_exp
.X_unsigned
= 1;
535 exp
[numops
].X_op_symbol
= make_expr_symbol (&new_exp
);
536 exp
[numops
].X_op
= O_right_shift
;
539 know (AT_WORD_P (&exp
[numops
]));
542 if (exp
[numops
].X_op
== O_illegal
)
543 as_bad (_("illegal operand"));
544 else if (exp
[numops
].X_op
== O_absent
)
545 as_bad (_("missing operand"));
548 p
= input_line_pointer
;
553 case -1: /* Postdecrement mode. */
554 exp
[numops
].X_op
= O_absent
;
555 exp
[numops
++].X_add_number
= OPERAND_MINUS
;
557 case 1: /* Postincrement mode. */
558 exp
[numops
].X_op
= O_absent
;
559 exp
[numops
++].X_add_number
= OPERAND_PLUS
;
563 exp
[numops
].X_op
= 0;
568 d10v_insert_operand (insn
, op_type
, value
, left
, fix
)
577 shift
= d10v_operands
[op_type
].shift
;
581 bits
= d10v_operands
[op_type
].bits
;
583 /* Truncate to the proper number of bits. */
584 if (check_range (value
, bits
, d10v_operands
[op_type
].flags
))
585 as_bad_where (fix
->fx_file
, fix
->fx_line
,
586 _("operand out of range: %ld"), (long) value
);
588 value
&= 0x7FFFFFFF >> (31 - bits
);
589 insn
|= (value
<< shift
);
594 /* Take a pointer to the opcode entry in the opcode table and the
595 array of operand expressions. Return the instruction. */
598 build_insn (opcode
, opers
, insn
)
599 struct d10v_opcode
*opcode
;
603 int i
, bits
, shift
, flags
, format
;
604 unsigned long number
;
606 /* The insn argument is only used for the DIVS kludge. */
611 insn
= opcode
->opcode
;
612 format
= opcode
->format
;
615 for (i
= 0; opcode
->operands
[i
]; i
++)
617 flags
= d10v_operands
[opcode
->operands
[i
]].flags
;
618 bits
= d10v_operands
[opcode
->operands
[i
]].bits
;
619 shift
= d10v_operands
[opcode
->operands
[i
]].shift
;
620 number
= opers
[i
].X_add_number
;
622 if (flags
& OPERAND_REG
)
624 number
&= REGISTER_MASK
;
625 if (format
== LONG_L
)
629 if (opers
[i
].X_op
!= O_register
&& opers
[i
].X_op
!= O_constant
)
631 /* Now create a fixup. */
633 if (fixups
->fc
>= MAX_INSN_FIXUPS
)
634 as_fatal (_("too many fixups"));
636 if (AT_WORD_P (&opers
[i
]))
638 /* Recognize XXX>>1+N aka XXX@word+N as special (AT_WORD). */
639 fixups
->fix
[fixups
->fc
].reloc
= BFD_RELOC_D10V_18
;
640 opers
[i
].X_op
= O_symbol
;
641 opers
[i
].X_op_symbol
= NULL
; /* Should free it. */
642 /* number is left shifted by AT_WORD_RIGHT_SHIFT so
643 that, it is aligned with the symbol's value. Later,
644 BFD_RELOC_D10V_18 will right shift (symbol_value +
646 number
<<= AT_WORD_RIGHT_SHIFT
;
647 opers
[i
].X_add_number
= number
;
651 fixups
->fix
[fixups
->fc
].reloc
=
652 get_reloc ((struct d10v_operand
*) &d10v_operands
[opcode
->operands
[i
]]);
654 /* Check that an immediate was passed to ops that expect one. */
655 if ((flags
& OPERAND_NUM
)
656 && (fixups
->fix
[fixups
->fc
].reloc
== 0))
657 as_bad (_("operand is not an immediate"));
660 if (fixups
->fix
[fixups
->fc
].reloc
== BFD_RELOC_16
||
661 fixups
->fix
[fixups
->fc
].reloc
== BFD_RELOC_D10V_18
)
662 fixups
->fix
[fixups
->fc
].size
= 2;
664 fixups
->fix
[fixups
->fc
].size
= 4;
666 fixups
->fix
[fixups
->fc
].exp
= opers
[i
];
667 fixups
->fix
[fixups
->fc
].operand
= opcode
->operands
[i
];
668 fixups
->fix
[fixups
->fc
].pcrel
=
669 (flags
& OPERAND_ADDR
) ? TRUE
: FALSE
;
673 /* Truncate to the proper number of bits. */
674 if ((opers
[i
].X_op
== O_constant
) && check_range (number
, bits
, flags
))
675 as_bad (_("operand out of range: %lu"), number
);
676 number
&= 0x7FFFFFFF >> (31 - bits
);
677 insn
= insn
| (number
<< shift
);
680 /* kludge: for DIVS, we need to put the operands in twice on the second
681 pass, format is changed to LONG_R to force the second set of operands
682 to not be shifted over 15. */
683 if ((opcode
->opcode
== OPCODE_DIVS
) && (format
== LONG_L
))
684 insn
= build_insn (opcode
, opers
, insn
);
689 /* Write out a long form instruction. */
692 write_long (insn
, fx
)
697 char *f
= frag_more (4);
700 number_to_chars_bigendian (f
, insn
, 4);
702 for (i
= 0; i
< fx
->fc
; i
++)
704 if (fx
->fix
[i
].reloc
)
706 where
= f
- frag_now
->fr_literal
;
707 if (fx
->fix
[i
].size
== 2)
710 if (fx
->fix
[i
].reloc
== BFD_RELOC_D10V_18
)
711 fx
->fix
[i
].operand
|= 4096;
713 fix_new_exp (frag_now
,
718 fx
->fix
[i
].operand
|2048);
724 /* Write out a short form instruction by itself. */
727 write_1_short (opcode
, insn
, fx
)
728 struct d10v_opcode
*opcode
;
732 char *f
= frag_more (4);
735 if (opcode
->exec_type
& PARONLY
)
736 as_fatal (_("Instruction must be executed in parallel with another instruction."));
738 /* The other container needs to be NOP.
739 According to 4.3.1: for FM=00, sub-instructions performed only by IU
740 cannot be encoded in L-container. */
741 if (opcode
->unit
== IU
)
742 insn
|= FM00
| (NOP
<< 15); /* Right container. */
744 insn
= FM00
| (insn
<< 15) | NOP
; /* Left container. */
746 number_to_chars_bigendian (f
, insn
, 4);
747 for (i
= 0; i
< fx
->fc
; i
++)
749 if (fx
->fix
[i
].reloc
)
751 where
= f
- frag_now
->fr_literal
;
752 if (fx
->fix
[i
].size
== 2)
755 if (fx
->fix
[i
].reloc
== BFD_RELOC_D10V_18
)
756 fx
->fix
[i
].operand
|= 4096;
758 /* If it's an R reloc, we may have to switch it to L. */
759 if ((fx
->fix
[i
].reloc
== BFD_RELOC_D10V_10_PCREL_R
)
760 && (opcode
->unit
!= IU
))
761 fx
->fix
[i
].operand
|= 1024;
763 fix_new_exp (frag_now
,
768 fx
->fix
[i
].operand
|2048);
774 /* Expects two short instructions.
775 If possible, writes out both as a single packed instruction.
776 Otherwise, writes out the first one, packed with a NOP.
777 Returns number of instructions not written out. */
780 write_2_short (opcode1
, insn1
, opcode2
, insn2
, exec_type
, fx
)
781 struct d10v_opcode
*opcode1
, *opcode2
;
782 unsigned long insn1
, insn2
;
783 packing_type exec_type
;
790 if ((exec_type
!= PACK_PARALLEL
)
791 && ((opcode1
->exec_type
& PARONLY
) || (opcode2
->exec_type
& PARONLY
)))
792 as_fatal (_("Instruction must be executed in parallel"));
794 if ((opcode1
->format
& LONG_OPCODE
) || (opcode2
->format
& LONG_OPCODE
))
795 as_fatal (_("Long instructions may not be combined."));
799 case PACK_UNSPEC
: /* Order not specified. */
800 if (opcode1
->exec_type
& ALONE
)
802 /* Case of a short branch on a separate GAS line. Pack with NOP. */
803 write_1_short (opcode1
, insn1
, fx
->next
);
807 && parallel_ok (opcode1
, insn1
, opcode2
, insn2
, exec_type
))
810 if (opcode1
->unit
== IU
)
811 insn
= FM00
| (insn2
<< 15) | insn1
;
812 else if (opcode2
->unit
== MU
)
813 insn
= FM00
| (insn2
<< 15) | insn1
;
815 insn
= FM00
| (insn1
<< 15) | insn2
;
817 else if (opcode1
->unit
== IU
)
818 /* Reverse sequential with IU opcode1 on right and done first. */
819 insn
= FM10
| (insn2
<< 15) | insn1
;
821 /* Sequential with non-IU opcode1 on left and done first. */
822 insn
= FM01
| (insn1
<< 15) | insn2
;
826 if (opcode1
->exec_type
& SEQ
|| opcode2
->exec_type
& SEQ
)
828 (_("One of these instructions may not be executed in parallel."));
829 if (opcode1
->unit
== IU
)
831 if (opcode2
->unit
== IU
)
832 as_fatal (_("Two IU instructions may not be executed in parallel"));
833 if (!flag_warn_suppress_instructionswap
)
834 as_warn (_("Swapping instruction order"));
835 insn
= FM00
| (insn2
<< 15) | insn1
;
837 else if (opcode2
->unit
== MU
)
839 if (opcode1
->unit
== MU
)
840 as_fatal (_("Two MU instructions may not be executed in parallel"));
841 if (!flag_warn_suppress_instructionswap
)
842 as_warn (_("Swapping instruction order"));
843 insn
= FM00
| (insn2
<< 15) | insn1
;
846 insn
= FM00
| (insn1
<< 15) | insn2
;
847 check_resource_conflict (opcode1
, insn1
, opcode2
, insn2
);
850 case PACK_LEFT_RIGHT
:
851 if (opcode1
->unit
!= IU
)
852 insn
= FM01
| (insn1
<< 15) | insn2
;
853 else if (opcode2
->unit
== MU
|| opcode2
->unit
== EITHER
)
855 if (!flag_warn_suppress_instructionswap
)
856 as_warn (_("Swapping instruction order"));
857 insn
= FM10
| (insn2
<< 15) | insn1
;
860 as_fatal (_("IU instruction may not be in the left container"));
861 if (opcode1
->exec_type
& ALONE
)
862 as_warn (_("Instruction in R container is squashed by flow control instruction in L container."));
865 case PACK_RIGHT_LEFT
:
866 if (opcode2
->unit
!= MU
)
867 insn
= FM10
| (insn1
<< 15) | insn2
;
868 else if (opcode1
->unit
== IU
|| opcode1
->unit
== EITHER
)
870 if (!flag_warn_suppress_instructionswap
)
871 as_warn (_("Swapping instruction order"));
872 insn
= FM01
| (insn2
<< 15) | insn1
;
875 as_fatal (_("MU instruction may not be in the right container"));
876 if (opcode2
->exec_type
& ALONE
)
877 as_warn (_("Instruction in R container is squashed by flow control instruction in L container."));
881 as_fatal (_("unknown execution type passed to write_2_short()"));
885 number_to_chars_bigendian (f
, insn
, 4);
887 /* Process fixup chains. fx refers to insn2 when j == 0, and to
888 insn1 when j == 1. Yes, it's reversed. */
890 for (j
= 0; j
< 2; j
++)
892 for (i
= 0; i
< fx
->fc
; i
++)
894 if (fx
->fix
[i
].reloc
)
896 where
= f
- frag_now
->fr_literal
;
897 if (fx
->fix
[i
].size
== 2)
900 if (fx
->fix
[i
].reloc
== BFD_RELOC_D10V_10_PCREL_R
901 /* A BFD_RELOC_D10V_10_PCREL_R relocation applied to
902 the instruction in the L container has to be
903 adjusted to BDF_RELOC_D10V_10_PCREL_L. When
904 j==0, we're processing insn2's operands, so we
905 want to mark the operand if insn2 is *not* in the
906 R container. When j==1, we're processing insn1's
907 operands, so we want to mark the operand if insn2
908 *is* in the R container. Note that, if two
909 instructions are identical, we're never going to
910 swap them, so the test is safe. */
911 && j
== ((insn
& 0x7fff) == insn2
))
912 fx
->fix
[i
].operand
|= 1024;
914 if (fx
->fix
[i
].reloc
== BFD_RELOC_D10V_18
)
915 fx
->fix
[i
].operand
|= 4096;
917 fix_new_exp (frag_now
,
922 fx
->fix
[i
].operand
|2048);
931 /* Check 2 instructions and determine if they can be safely
932 executed in parallel. Return 1 if they can be. */
935 parallel_ok (op1
, insn1
, op2
, insn2
, exec_type
)
936 struct d10v_opcode
*op1
, *op2
;
937 unsigned long insn1
, insn2
;
938 packing_type exec_type
;
940 int i
, j
, flags
, mask
, shift
, regno
;
941 unsigned long ins
, mod
[2], used
[2];
942 struct d10v_opcode
*op
;
944 if ((op1
->exec_type
& SEQ
) != 0 || (op2
->exec_type
& SEQ
) != 0
945 || (op1
->exec_type
& PAR
) == 0 || (op2
->exec_type
& PAR
) == 0
946 || (op1
->unit
== BOTH
) || (op2
->unit
== BOTH
)
947 || (op1
->unit
== IU
&& op2
->unit
== IU
)
948 || (op1
->unit
== MU
&& op2
->unit
== MU
))
951 /* If this is auto parallelization, and the first instruction is a
952 branch or should not be packed, then don't parallelize. */
953 if (exec_type
== PACK_UNSPEC
954 && (op1
->exec_type
& (ALONE
| BRANCH
)))
957 /* The idea here is to create two sets of bitmasks (mod and used)
958 which indicate which registers are modified or used by each
959 instruction. The operation can only be done in parallel if
960 instruction 1 and instruction 2 modify different registers, and
961 the first instruction does not modify registers that the second
962 is using (The second instruction can modify registers that the
963 first is using as they are only written back after the first
964 instruction has completed). Accesses to control registers, PSW,
965 and memory are treated as accesses to a single register. So if
966 both instructions write memory or if the first instruction writes
967 memory and the second reads, then they cannot be done in
968 parallel. Likewise, if the first instruction mucks with the psw
969 and the second reads the PSW (which includes C, F0, and F1), then
970 they cannot operate safely in parallel. */
972 /* The bitmasks (mod and used) look like this (bit 31 = MSB).
979 for (j
= 0; j
< 2; j
++)
991 mod
[j
] = used
[j
] = 0;
992 if (op
->exec_type
& BRANCH_LINK
)
995 for (i
= 0; op
->operands
[i
]; i
++)
997 flags
= d10v_operands
[op
->operands
[i
]].flags
;
998 shift
= d10v_operands
[op
->operands
[i
]].shift
;
999 mask
= 0x7FFFFFFF >> (31 - d10v_operands
[op
->operands
[i
]].bits
);
1000 if (flags
& OPERAND_REG
)
1002 regno
= (ins
>> shift
) & mask
;
1003 if (flags
& (OPERAND_ACC0
| OPERAND_ACC1
))
1005 else if (flags
& OPERAND_CONTROL
) /* mvtc or mvfc. */
1012 else if (flags
& (OPERAND_FFLAG
| OPERAND_CFLAG
))
1015 if (flags
& OPERAND_DEST
)
1017 mod
[j
] |= 1 << regno
;
1018 if (flags
& OPERAND_EVEN
)
1019 mod
[j
] |= 1 << (regno
+ 1);
1023 used
[j
] |= 1 << regno
;
1024 if (flags
& OPERAND_EVEN
)
1025 used
[j
] |= 1 << (regno
+ 1);
1027 /* Auto inc/dec also modifies the register. */
1028 if (op
->operands
[i
+ 1] != 0
1029 && (d10v_operands
[op
->operands
[i
+ 1]].flags
1030 & (OPERAND_PLUS
| OPERAND_MINUS
)) != 0)
1031 mod
[j
] |= 1 << regno
;
1034 else if (flags
& OPERAND_ATMINUS
)
1036 /* SP implicitly used/modified. */
1041 if (op
->exec_type
& RMEM
)
1043 else if (op
->exec_type
& WMEM
)
1045 else if (op
->exec_type
& RF0
)
1047 else if (op
->exec_type
& WF0
)
1049 else if (op
->exec_type
& WCAR
)
1052 if ((mod
[0] & mod
[1]) == 0 && (mod
[0] & used
[1]) == 0)
1057 /* Determine if there are any resource conflicts among two manually
1058 parallelized instructions. Some of this was lifted from parallel_ok. */
1061 check_resource_conflict (op1
, insn1
, op2
, insn2
)
1062 struct d10v_opcode
*op1
, *op2
;
1063 unsigned long insn1
, insn2
;
1065 int i
, j
, flags
, mask
, shift
, regno
;
1066 unsigned long ins
, mod
[2];
1067 struct d10v_opcode
*op
;
1069 if ((op1
->exec_type
& SEQ
)
1070 || ! ((op1
->exec_type
& PAR
) || (op1
->exec_type
& PARONLY
)))
1072 as_warn (_("packing conflict: %s must dispatch sequentially"),
1077 if ((op2
->exec_type
& SEQ
)
1078 || ! ((op2
->exec_type
& PAR
) || (op2
->exec_type
& PARONLY
)))
1080 as_warn (_("packing conflict: %s must dispatch sequentially"),
1085 /* See if both instructions write to the same resource.
1087 The idea here is to create two sets of bitmasks (mod and used) which
1088 indicate which registers are modified or used by each instruction.
1089 The operation can only be done in parallel if neither instruction
1090 modifies the same register. Accesses to control registers and memory
1091 are treated as accesses to a single register. So if both instructions
1092 write memory or if the first instruction writes memory and the second
1093 reads, then they cannot be done in parallel. We treat reads to the PSW
1094 (which includes C, F0, and F1) in isolation. So simultaneously writing
1095 C and F0 in two different sub-instructions is permitted. */
1097 /* The bitmasks (mod and used) look like this (bit 31 = MSB).
1106 for (j
= 0; j
< 2; j
++)
1119 if (op
->exec_type
& BRANCH_LINK
)
1122 for (i
= 0; op
->operands
[i
]; i
++)
1124 flags
= d10v_operands
[op
->operands
[i
]].flags
;
1125 shift
= d10v_operands
[op
->operands
[i
]].shift
;
1126 mask
= 0x7FFFFFFF >> (31 - d10v_operands
[op
->operands
[i
]].bits
);
1127 if (flags
& OPERAND_REG
)
1129 regno
= (ins
>> shift
) & mask
;
1130 if (flags
& (OPERAND_ACC0
| OPERAND_ACC1
))
1132 else if (flags
& OPERAND_CONTROL
) /* mvtc or mvfc */
1139 else if (flags
& OPERAND_FFLAG
)
1141 else if (flags
& OPERAND_CFLAG
)
1144 if (flags
& OPERAND_DEST
1145 /* Auto inc/dec also modifies the register. */
1146 || (op
->operands
[i
+ 1] != 0
1147 && (d10v_operands
[op
->operands
[i
+ 1]].flags
1148 & (OPERAND_PLUS
| OPERAND_MINUS
)) != 0))
1150 mod
[j
] |= 1 << regno
;
1151 if (flags
& OPERAND_EVEN
)
1152 mod
[j
] |= 1 << (regno
+ 1);
1155 else if (flags
& OPERAND_ATMINUS
)
1157 /* SP implicitly used/modified. */
1162 if (op
->exec_type
& WMEM
)
1164 else if (op
->exec_type
& WF0
)
1166 else if (op
->exec_type
& WCAR
)
1170 if ((mod
[0] & mod
[1]) == 0)
1175 x
= mod
[0] & mod
[1];
1177 for (j
= 0; j
<= 15; j
++)
1179 as_warn (_("resource conflict (R%d)"), j
);
1180 for (j
= 16; j
<= 17; j
++)
1182 as_warn (_("resource conflict (A%d)"), j
- 16);
1184 as_warn (_("resource conflict (PSW)"));
1186 as_warn (_("resource conflict (C flag)"));
1188 as_warn (_("resource conflict (F flag)"));
1192 /* This is the main entry point for the machine-dependent assembler.
1193 str points to a machine-dependent instruction. This function is
1194 supposed to emit the frags/bytes it assembles to. For the D10V, it
1195 mostly handles the special VLIW parsing and packing and leaves the
1196 difficult stuff to do_assemble(). */
1198 static unsigned long prev_insn
;
1199 static struct d10v_opcode
*prev_opcode
= 0;
1200 static subsegT prev_subseg
;
1201 static segT prev_seg
= 0;;
1207 /* etype is saved extype. For multi-line instructions. */
1209 packing_type extype
= PACK_UNSPEC
; /* Parallel, etc. */
1211 struct d10v_opcode
*opcode
;
1215 if (etype
== PACK_UNSPEC
)
1217 /* Look for the special multiple instruction separators. */
1218 str2
= strstr (str
, "||");
1220 extype
= PACK_PARALLEL
;
1223 str2
= strstr (str
, "->");
1225 extype
= PACK_LEFT_RIGHT
;
1228 str2
= strstr (str
, "<-");
1230 extype
= PACK_RIGHT_LEFT
;
1234 /* str2 points to the separator, if there is one. */
1239 /* If two instructions are present and we already have one saved,
1240 then first write out the saved one. */
1243 /* Assemble first instruction and save it. */
1244 prev_insn
= do_assemble (str
, &prev_opcode
);
1246 prev_subseg
= now_subseg
;
1247 if (prev_insn
== (unsigned long) -1)
1248 as_fatal (_("can't find opcode "));
1249 fixups
= fixups
->next
;
1254 insn
= do_assemble (str
, &opcode
);
1255 if (insn
== (unsigned long) -1)
1257 if (extype
!= PACK_UNSPEC
)
1262 as_fatal (_("can't find opcode "));
1265 if (etype
!= PACK_UNSPEC
)
1268 etype
= PACK_UNSPEC
;
1271 /* If this is a long instruction, write it and any previous short
1273 if (opcode
->format
& LONG_OPCODE
)
1275 if (extype
!= PACK_UNSPEC
)
1276 as_fatal (_("Unable to mix instructions as specified"));
1278 write_long (insn
, fixups
);
1285 && ((prev_seg
!= now_seg
) || (prev_subseg
!= now_subseg
)))
1289 && (0 == write_2_short (prev_opcode
, prev_insn
, opcode
, insn
, extype
,
1292 /* No instructions saved. */
1297 if (extype
!= PACK_UNSPEC
)
1298 as_fatal (_("Unable to mix instructions as specified"));
1299 /* Save last instruction so it may be packed on next pass. */
1300 prev_opcode
= opcode
;
1303 prev_subseg
= now_subseg
;
1304 fixups
= fixups
->next
;
1308 /* Assemble a single instruction.
1309 Return an opcode, or -1 (an invalid opcode) on error. */
1311 static unsigned long
1312 do_assemble (str
, opcode
)
1314 struct d10v_opcode
**opcode
;
1316 unsigned char *op_start
, *op_end
;
1320 expressionS myops
[6];
1323 /* Drop leading whitespace. */
1327 /* Find the opcode end. */
1328 for (op_start
= op_end
= (unsigned char *) str
;
1329 *op_end
&& nlen
< 20 && !is_end_of_line
[*op_end
] && *op_end
!= ' ';
1332 name
[nlen
] = TOLOWER (op_start
[nlen
]);
1340 /* Find the first opcode with the proper name. */
1341 *opcode
= (struct d10v_opcode
*) hash_find (d10v_hash
, name
);
1342 if (*opcode
== NULL
)
1343 as_fatal (_("unknown opcode: %s"), name
);
1345 save
= input_line_pointer
;
1346 input_line_pointer
= (char *) op_end
;
1347 *opcode
= find_opcode (*opcode
, myops
);
1350 input_line_pointer
= save
;
1352 insn
= build_insn ((*opcode
), myops
, 0);
1356 /* Find the symbol which has the same name as the register in exp. */
1359 find_symbol_matching_register (exp
)
1364 if (exp
->X_op
!= O_register
)
1367 /* Find the name of the register. */
1368 for (i
= d10v_reg_name_cnt (); i
--;)
1369 if (d10v_predefined_registers
[i
].value
== exp
->X_add_number
)
1375 /* Now see if a symbol has been defined with the same name. */
1376 return symbol_find (d10v_predefined_registers
[i
].name
);
1379 /* Get a pointer to an entry in the opcode table.
1380 The function must look at all opcodes with the same name and use
1381 the operands to choose the correct opcode. */
1383 static struct d10v_opcode
*
1384 find_opcode (opcode
, myops
)
1385 struct d10v_opcode
*opcode
;
1386 expressionS myops
[];
1389 struct d10v_opcode
*next_opcode
;
1391 /* Get all the operands and save them as expressions. */
1392 get_operands (myops
);
1394 /* Now see if the operand is a fake. If so, find the correct size
1395 instruction, if possible. */
1396 if (opcode
->format
== OPCODE_FAKE
)
1398 int opnum
= opcode
->operands
[0];
1401 if (myops
[opnum
].X_op
== O_register
)
1403 myops
[opnum
].X_op
= O_symbol
;
1404 myops
[opnum
].X_add_symbol
=
1405 symbol_find_or_make ((char *) myops
[opnum
].X_op_symbol
);
1406 myops
[opnum
].X_add_number
= 0;
1407 myops
[opnum
].X_op_symbol
= NULL
;
1410 next_opcode
= opcode
+ 1;
1412 /* If the first operand is supposed to be a register, make sure
1413 we got a valid one. */
1414 flags
= d10v_operands
[next_opcode
->operands
[0]].flags
;
1415 if (flags
& OPERAND_REG
)
1417 int X_op
= myops
[0].X_op
;
1418 int num
= myops
[0].X_add_number
;
1420 if (X_op
!= O_register
1422 & (OPERAND_GPR
| OPERAND_ACC0
| OPERAND_ACC1
1423 | OPERAND_FFLAG
| OPERAND_CFLAG
| OPERAND_CONTROL
))
1424 || ((flags
& OPERAND_SP
) && ! (num
& OPERAND_SP
)))
1426 as_bad (_("bad opcode or operands"));
1431 if (myops
[opnum
].X_op
== O_constant
1432 || (myops
[opnum
].X_op
== O_symbol
1433 && S_IS_DEFINED (myops
[opnum
].X_add_symbol
)
1434 && (S_GET_SEGMENT (myops
[opnum
].X_add_symbol
) == now_seg
)))
1436 for (i
= 0; opcode
->operands
[i
+ 1]; i
++)
1438 int bits
= d10v_operands
[next_opcode
->operands
[opnum
]].bits
;
1439 int flags
= d10v_operands
[next_opcode
->operands
[opnum
]].flags
;
1440 if (flags
& OPERAND_ADDR
)
1443 if (myops
[opnum
].X_op
== O_constant
)
1445 if (!check_range (myops
[opnum
].X_add_number
, bits
, flags
))
1452 unsigned long current_position
;
1453 unsigned long symbol_position
;
1454 unsigned long value
;
1455 bfd_boolean found_symbol
;
1457 /* Calculate the address of the current instruction
1458 and the address of the symbol. Do this by summing
1459 the offsets of previous frags until we reach the
1460 frag containing the symbol, and the current frag. */
1461 sym_frag
= symbol_get_frag (myops
[opnum
].X_add_symbol
);
1462 found_symbol
= FALSE
;
1465 obstack_next_free (&frchain_now
->frch_obstack
)
1466 - frag_now
->fr_literal
;
1467 symbol_position
= S_GET_VALUE (myops
[opnum
].X_add_symbol
);
1469 for (f
= frchain_now
->frch_root
; f
; f
= f
->fr_next
)
1471 current_position
+= f
->fr_fix
+ f
->fr_offset
;
1474 found_symbol
= TRUE
;
1477 symbol_position
+= f
->fr_fix
+ f
->fr_offset
;
1480 value
= symbol_position
;
1482 if (flags
& OPERAND_ADDR
)
1483 value
-= current_position
;
1485 if (AT_WORD_P (&myops
[opnum
]))
1490 if (!check_range (value
, bits
, flags
))
1494 else if (!check_range (value
, bits
, flags
))
1500 if (opcode
->operands
[i
+ 1] == 0)
1501 as_fatal (_("value out of range"));
1503 opcode
= next_opcode
;
1507 /* Not a constant, so use a long instruction. */
1514 /* Now search the opcode table table for one with operands
1515 that matches what we've got. */
1519 for (i
= 0; opcode
->operands
[i
]; i
++)
1521 int flags
= d10v_operands
[opcode
->operands
[i
]].flags
;
1522 int X_op
= myops
[i
].X_op
;
1523 int num
= myops
[i
].X_add_number
;
1531 if (flags
& OPERAND_REG
)
1533 if ((X_op
!= O_register
)
1535 & (OPERAND_GPR
| OPERAND_ACC0
| OPERAND_ACC1
1536 | OPERAND_FFLAG
| OPERAND_CFLAG
1538 || ((flags
& OPERAND_SP
) && ! (num
& OPERAND_SP
)))
1545 if (((flags
& OPERAND_MINUS
) && ((X_op
!= O_absent
) || (num
!= OPERAND_MINUS
))) ||
1546 ((flags
& OPERAND_PLUS
) && ((X_op
!= O_absent
) || (num
!= OPERAND_PLUS
))) ||
1547 ((flags
& OPERAND_ATMINUS
) && ((X_op
!= O_absent
) || (num
!= OPERAND_ATMINUS
))) ||
1548 ((flags
& OPERAND_ATPAR
) && ((X_op
!= O_absent
) || (num
!= OPERAND_ATPAR
))) ||
1549 ((flags
& OPERAND_ATSIGN
) && ((X_op
!= O_absent
) || ((num
!= OPERAND_ATSIGN
) && (num
!= OPERAND_ATPAR
)))))
1555 /* Unfortunately, for the indirect operand in instructions such
1556 as ``ldb r1, @(c,r14)'' this function can be passed
1557 X_op == O_register (because 'c' is a valid register name).
1558 However we cannot just ignore the case when X_op == O_register
1559 but flags & OPERAND_REG is null, so we check to see if a symbol
1560 of the same name as the register exists. If the symbol does
1561 exist, then the parser was unable to distinguish the two cases
1562 and we fix things here. (Ref: PR14826) */
1564 if (!(flags
& OPERAND_REG
) && (X_op
== O_register
))
1568 sym
= find_symbol_matching_register (& myops
[i
]);
1572 myops
[i
].X_op
= X_op
= O_symbol
;
1573 myops
[i
].X_add_symbol
= sym
;
1577 (_("illegal operand - register name found where none expected"));
1581 /* We're only done if the operands matched so far AND there
1582 are no more to check. */
1583 if (match
&& myops
[i
].X_op
== 0)
1588 next_opcode
= opcode
+ 1;
1590 if (next_opcode
->opcode
== 0)
1593 if (strcmp (next_opcode
->name
, opcode
->name
))
1596 opcode
= next_opcode
;
1601 as_bad (_("bad opcode or operands"));
1605 /* Check that all registers that are required to be even are.
1606 Also, if any operands were marked as registers, but were really symbols,
1608 for (i
= 0; opcode
->operands
[i
]; i
++)
1610 if ((d10v_operands
[opcode
->operands
[i
]].flags
& OPERAND_EVEN
) &&
1611 (myops
[i
].X_add_number
& 1))
1612 as_fatal (_("Register number must be EVEN"));
1613 if ((d10v_operands
[opcode
->operands
[i
]].flags
& OPERAND_NOSP
)
1614 && (myops
[i
].X_add_number
& OPERAND_SP
))
1615 as_bad (_("Unsupported use of sp"));
1616 if (myops
[i
].X_op
== O_register
)
1618 if (!(d10v_operands
[opcode
->operands
[i
]].flags
& OPERAND_REG
))
1620 myops
[i
].X_op
= O_symbol
;
1621 myops
[i
].X_add_symbol
=
1622 symbol_find_or_make ((char *) myops
[i
].X_op_symbol
);
1623 myops
[i
].X_add_number
= 0;
1624 myops
[i
].X_op_symbol
= NULL
;
1627 if ((d10v_operands
[opcode
->operands
[i
]].flags
& OPERAND_CONTROL
)
1628 && (myops
[i
].X_add_number
== OPERAND_CONTROL
+ 4
1629 || myops
[i
].X_add_number
== OPERAND_CONTROL
+ 5
1630 || myops
[i
].X_add_number
== OPERAND_CONTROL
+ 6
1631 || myops
[i
].X_add_number
== OPERAND_CONTROL
+ 12
1632 || myops
[i
].X_add_number
== OPERAND_CONTROL
+ 13
1633 || myops
[i
].X_add_number
== OPERAND_CONTROL
+ 15))
1634 as_warn (_("cr%ld is a reserved control register"),
1635 myops
[i
].X_add_number
- OPERAND_CONTROL
);
1640 /* If while processing a fixup, a reloc really needs to be created.
1641 Then it is done here. */
1644 tc_gen_reloc (seg
, fixp
)
1645 asection
*seg ATTRIBUTE_UNUSED
;
1649 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
1650 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
1651 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1652 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1653 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
1654 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
1656 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1657 _("reloc %d not supported by object file format"),
1658 (int) fixp
->fx_r_type
);
1662 if (fixp
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
1663 reloc
->address
= fixp
->fx_offset
;
1671 md_estimate_size_before_relax (fragp
, seg
)
1672 fragS
*fragp ATTRIBUTE_UNUSED
;
1673 asection
*seg ATTRIBUTE_UNUSED
;
1680 md_pcrel_from_section (fixp
, sec
)
1684 if (fixp
->fx_addsy
!= (symbolS
*) NULL
1685 && (!S_IS_DEFINED (fixp
->fx_addsy
)
1686 || (S_GET_SEGMENT (fixp
->fx_addsy
) != sec
)))
1688 return fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1692 md_apply_fix3 (fixP
, valP
, seg
)
1695 segT seg ATTRIBUTE_UNUSED
;
1703 if (fixP
->fx_addsy
== (symbolS
*) NULL
)
1706 /* We don't actually support subtracting a symbol. */
1707 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
1708 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("expression too complex"));
1710 op_type
= fixP
->fx_r_type
;
1717 fixP
->fx_r_type
= BFD_RELOC_D10V_10_PCREL_L
;
1720 else if (op_type
& 4096)
1723 fixP
->fx_r_type
= BFD_RELOC_D10V_18
;
1727 get_reloc ((struct d10v_operand
*) &d10v_operands
[op_type
]);
1730 /* Fetch the instruction, insert the fully resolved operand
1731 value, and stuff the instruction back again. */
1732 where
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
1733 insn
= bfd_getb32 ((unsigned char *) where
);
1735 switch (fixP
->fx_r_type
)
1737 case BFD_RELOC_D10V_10_PCREL_L
:
1738 case BFD_RELOC_D10V_10_PCREL_R
:
1739 case BFD_RELOC_D10V_18_PCREL
:
1740 /* If the fix is relative to a global symbol, not a section
1741 symbol, then ignore the offset.
1742 XXX - Do we have to worry about branches to a symbol + offset ? */
1743 if (fixP
->fx_addsy
!= NULL
1744 && S_IS_EXTERN (fixP
->fx_addsy
) )
1746 segT fseg
= S_GET_SEGMENT (fixP
->fx_addsy
);
1747 segment_info_type
*segf
= seg_info(fseg
);
1749 if ( segf
&& segf
->sym
!= fixP
->fx_addsy
)
1753 case BFD_RELOC_D10V_18
:
1754 /* Instruction addresses are always right-shifted by 2. */
1755 value
>>= AT_WORD_RIGHT_SHIFT
;
1756 if (fixP
->fx_size
== 2)
1757 bfd_putb16 ((bfd_vma
) value
, (unsigned char *) where
);
1760 struct d10v_opcode
*rep
, *repi
;
1762 rep
= (struct d10v_opcode
*) hash_find (d10v_hash
, "rep");
1763 repi
= (struct d10v_opcode
*) hash_find (d10v_hash
, "repi");
1764 if ((insn
& FM11
) == FM11
1766 && (insn
& repi
->mask
) == (unsigned) repi
->opcode
)
1768 && (insn
& rep
->mask
) == (unsigned) rep
->opcode
))
1771 (_("line %d: rep or repi must include at least 4 instructions"),
1774 d10v_insert_operand (insn
, op_type
, (offsetT
) value
, left
, fixP
);
1775 bfd_putb32 ((bfd_vma
) insn
, (unsigned char *) where
);
1779 bfd_putb32 ((bfd_vma
) value
, (unsigned char *) where
);
1782 bfd_putb16 ((bfd_vma
) value
, (unsigned char *) where
);
1785 case BFD_RELOC_VTABLE_INHERIT
:
1786 case BFD_RELOC_VTABLE_ENTRY
:
1791 as_fatal (_("line %d: unknown relocation type: 0x%x"),
1792 fixP
->fx_line
, fixP
->fx_r_type
);
1796 /* d10v_cleanup() is called after the assembler has finished parsing
1797 the input file, when a label is read from the input file, or when a
1798 stab directive is output. Because the D10V assembler sometimes
1799 saves short instructions to see if it can package them with the
1800 next instruction, there may be a short instruction that still needs
1803 NOTE: accesses a global, etype.
1804 NOTE: invoked by various macros such as md_cleanup: see. */
1812 /* If cleanup was invoked because the assembler encountered, e.g., a
1813 user label, we write out the pending instruction, if any. If it
1814 was invoked because the assembler is outputting a piece of line
1815 debugging information, though, we write out the pending
1816 instruction only if the --no-gstabs-packing command line switch
1817 has been specified. */
1819 && etype
== PACK_UNSPEC
1820 && (! outputting_stabs_line_debug
|| ! flag_allow_gstabs_packing
))
1823 subseg
= now_subseg
;
1826 subseg_set (prev_seg
, prev_subseg
);
1828 write_1_short (prev_opcode
, prev_insn
, fixups
->next
);
1829 subseg_set (seg
, subseg
);
1835 /* Like normal .word, except support @word.
1836 Clobbers input_line_pointer, checks end-of-line. */
1839 d10v_dot_word (dummy
)
1840 int dummy ATTRIBUTE_UNUSED
;
1845 if (is_it_end_of_statement ())
1847 demand_empty_rest_of_line ();
1854 if (!strncasecmp (input_line_pointer
, "@word", 5))
1856 exp
.X_add_number
= 0;
1857 input_line_pointer
+= 5;
1860 fix_new_exp (frag_now
, p
- frag_now
->fr_literal
, 2,
1861 &exp
, 0, BFD_RELOC_D10V_18
);
1864 emit_expr (&exp
, 2);
1866 while (*input_line_pointer
++ == ',');
1868 input_line_pointer
--; /* Put terminator back into stream. */
1869 demand_empty_rest_of_line ();
1872 /* Mitsubishi asked that we support some old syntax that apparently
1873 had immediate operands starting with '#'. This is in some of their
1874 sample code but is not documented (although it appears in some
1875 examples in their assembler manual). For now, we'll solve this
1876 compatibility problem by simply ignoring any '#' at the beginning
1879 /* Operands that begin with '#' should fall through to here.
1883 md_operand (expressionP
)
1884 expressionS
*expressionP
;
1886 if (*input_line_pointer
== '#' && ! do_not_ignore_hash
)
1888 input_line_pointer
++;
1889 expression (expressionP
);
1894 d10v_fix_adjustable (fixP
)
1897 /* We need the symbol name for the VTABLE entries. */
1898 if (fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
1899 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)