Reset processor mask if specified by command line switch
[binutils-gdb.git] / gas / config / tc-v850.c
1 /* tc-v850.c -- Assembler code for the NEC V850
2 Copyright (C) 1996, 1997 Free Software Foundation.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #include <stdio.h>
22 #include <ctype.h>
23 #include "as.h"
24 #include "subsegs.h"
25 #include "opcode/v850.h"
26
27 /* sign-extend a 16-bit number */
28 #define SEXT16(x) ((((x) & 0xffff) ^ (~ 0x7fff)) + 0x8000)
29
30 /* Temporarily holds the reloc in a cons expression. */
31 static bfd_reloc_code_real_type hold_cons_reloc;
32
33 /* Set to TRUE if we want to be pedantic about signed overflows. */
34 static boolean warn_signed_overflows = FALSE;
35 static boolean warn_unsigned_overflows = FALSE;
36
37 /* Indicates the target BFD machine number. */
38 static int machine = TARGET_MACHINE;
39
40 /* Indicates the target processor(s) for the assemble. */
41 static unsigned int processor_mask = TARGET_PROCESSOR;
42
43 \f
44 /* Structure to hold information about predefined registers. */
45 struct reg_name
46 {
47 const char * name;
48 int value;
49 };
50
51 /* Generic assembler global variables which must be defined by all targets. */
52
53 /* Characters which always start a comment. */
54 const char comment_chars[] = "#";
55
56 /* Characters which start a comment at the beginning of a line. */
57 const char line_comment_chars[] = ";#";
58
59 /* Characters which may be used to separate multiple commands on a
60 single line. */
61 const char line_separator_chars[] = ";";
62
63 /* Characters which are used to indicate an exponent in a floating
64 point number. */
65 const char EXP_CHARS[] = "eE";
66
67 /* Characters which mean that a number is a floating point constant,
68 as in 0d1.0. */
69 const char FLT_CHARS[] = "dD";
70 \f
71
72 const relax_typeS md_relax_table[] = {
73 {0xff, -0x100, 2, 1},
74 {0x1fffff, -0x200000, 6, 0},
75 };
76
77
78 static segT sdata_section = NULL;
79 static segT tdata_section = NULL;
80 static segT zdata_section = NULL;
81 static segT sbss_section = NULL;
82 static segT tbss_section = NULL;
83 static segT zbss_section = NULL;
84 static segT rosdata_section = NULL;
85 static segT rozdata_section = NULL;
86 /* start-sanitize-v850e */
87 static segT call_table_data_section = NULL;
88 static segT call_table_text_section = NULL;
89 /* end-sanitize-v850e */
90
91
92 /* local functions */
93 static unsigned long v850_insert_operand
94 PARAMS ((unsigned long insn, const struct v850_operand *operand,
95 offsetT val, char *file, unsigned int line));
96
97
98 /* fixups */
99 #define MAX_INSN_FIXUPS (5)
100 struct v850_fixup
101 {
102 expressionS exp;
103 int opindex;
104 bfd_reloc_code_real_type reloc;
105 };
106 struct v850_fixup fixups[MAX_INSN_FIXUPS];
107 static int fc;
108 \f
109 void
110 v850_sdata (int ignore)
111 {
112 subseg_set (sdata_section, (subsegT) get_absolute_expression ());
113
114 demand_empty_rest_of_line ();
115 }
116
117 void
118 v850_tdata (int ignore)
119 {
120 subseg_set (tdata_section, (subsegT) get_absolute_expression ());
121
122 demand_empty_rest_of_line ();
123 }
124
125 void
126 v850_zdata (int ignore)
127 {
128 subseg_set (zdata_section, (subsegT) get_absolute_expression ());
129
130 demand_empty_rest_of_line ();
131 }
132
133 void
134 v850_sbss (int ignore)
135 {
136 subseg_set (sbss_section, (subsegT) get_absolute_expression ());
137
138 demand_empty_rest_of_line ();
139 }
140
141 void
142 v850_tbss (int ignore)
143 {
144 subseg_set (tbss_section, (subsegT) get_absolute_expression ());
145
146 demand_empty_rest_of_line ();
147 }
148
149 void
150 v850_zbss (int ignore)
151 {
152 subseg_set (zbss_section, (subsegT) get_absolute_expression ());
153
154 demand_empty_rest_of_line ();
155 }
156
157 void
158 v850_rosdata (int ignore)
159 {
160 subseg_set (rosdata_section, (subsegT) get_absolute_expression ());
161
162 demand_empty_rest_of_line ();
163 }
164
165 void
166 v850_rozdata (int ignore)
167 {
168 subseg_set (rozdata_section, (subsegT) get_absolute_expression ());
169
170 demand_empty_rest_of_line ();
171 }
172
173 /* start-sanitize-v850e */
174 void
175 v850_call_table_data (int ignore)
176 {
177 subseg_set (call_table_data_section, (subsegT) get_absolute_expression ());
178
179 demand_empty_rest_of_line ();
180 }
181
182 void
183 v850_call_table_text (int ignore)
184 {
185 subseg_set (call_table_text_section, (subsegT) get_absolute_expression ());
186
187 demand_empty_rest_of_line ();
188 }
189 /* end-sanitize-v850e */
190
191 static void
192 v850_section (int arg)
193 {
194 char saved_c;
195 char * ptr;
196
197 for (ptr = input_line_pointer; * ptr != '\n' && * ptr != 0; ptr ++)
198 if (* ptr == ',' && ptr[1] == '.')
199 break;
200
201 saved_c = * ptr;
202 * ptr = ';';
203
204 obj_elf_section (arg);
205
206 * ptr = saved_c;
207 }
208
209 void
210 v850_bss (int ignore)
211 {
212 register int temp = get_absolute_expression ();
213
214 obj_elf_section_change_hook();
215
216 subseg_set (bss_section, (subsegT) temp);
217
218 demand_empty_rest_of_line ();
219 }
220
221 void
222 v850_offset (int ignore)
223 {
224 int temp = get_absolute_expression ();
225
226 temp -= frag_now_fix();
227
228 if (temp > 0)
229 (void) frag_more (temp);
230
231 demand_empty_rest_of_line ();
232 }
233
234 void
235 set_machine (int number)
236 {
237 machine = number;
238 bfd_set_arch_mach (stdoutput, TARGET_ARCH, machine);
239
240 switch (machine)
241 {
242 case 0: processor_mask = PROCESSOR_V850; break;
243 /* start-sanitize-v850e */
244 case bfd_mach_v850e: processor_mask = PROCESSOR_V850E; break;
245 /* end-sanitize-v850e */
246 /* start-sanitize-v850eq */
247 case bfd_mach_v850eq: processor_mask = PROCESSOR_V850EQ; break;
248 /* end-sanitize-v850eq */
249 }
250 }
251
252 /* The target specific pseudo-ops which we support. */
253 const pseudo_typeS md_pseudo_table[] =
254 {
255 {"sdata", v850_sdata, 0},
256 {"tdata", v850_tdata, 0},
257 {"zdata", v850_zdata, 0},
258 {"sbss", v850_sbss, 0},
259 {"tbss", v850_tbss, 0},
260 {"zbss", v850_zbss, 0},
261 {"rosdata", v850_rosdata, 0},
262 {"rozdata", v850_rozdata, 0},
263 {"bss", v850_bss, 0},
264 {"offset", v850_offset, 0},
265 {"section", v850_section, 0},
266 {"word", cons, 4},
267 {"v850", set_machine, 0},
268 /* start-sanitize-v850e */
269 {"call_table_data", v850_call_table_data, 0},
270 {"call_table_text", v850_call_table_text, 0},
271 {"v850e", set_machine, bfd_mach_v850e},
272 /* end-sanitize-v850e */
273 /* start-sanitize-v850eq */
274 {"v850eq", set_machine, bfd_mach_v850eq},
275 /* end-sanitize-v850eq */
276 { NULL, NULL, 0}
277 };
278
279 /* Opcode hash table. */
280 static struct hash_control *v850_hash;
281
282 /* This table is sorted. Suitable for searching by a binary search. */
283 static const struct reg_name pre_defined_registers[] =
284 {
285 { "ep", 30 }, /* ep - element ptr */
286 { "gp", 4 }, /* gp - global ptr */
287 { "hp", 2 }, /* hp - handler stack ptr */
288 { "lp", 31 }, /* lp - link ptr */
289 { "r0", 0 },
290 { "r1", 1 },
291 { "r10", 10 },
292 { "r11", 11 },
293 { "r12", 12 },
294 { "r13", 13 },
295 { "r14", 14 },
296 { "r15", 15 },
297 { "r16", 16 },
298 { "r17", 17 },
299 { "r18", 18 },
300 { "r19", 19 },
301 { "r2", 2 },
302 { "r20", 20 },
303 { "r21", 21 },
304 { "r22", 22 },
305 { "r23", 23 },
306 { "r24", 24 },
307 { "r25", 25 },
308 { "r26", 26 },
309 { "r27", 27 },
310 { "r28", 28 },
311 { "r29", 29 },
312 { "r3", 3 },
313 { "r30", 30 },
314 { "r31", 31 },
315 { "r4", 4 },
316 { "r5", 5 },
317 { "r6", 6 },
318 { "r7", 7 },
319 { "r8", 8 },
320 { "r9", 9 },
321 { "sp", 3 }, /* sp - stack ptr */
322 { "tp", 5 }, /* tp - text ptr */
323 { "zero", 0 },
324 };
325 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct reg_name))
326
327
328 static const struct reg_name system_registers[] =
329 {
330 /* start-sanitize-v850e */
331 { "ctbp", 20 },
332 { "ctpc", 16 },
333 { "ctpsw", 17 },
334 { "dbpc", 18 },
335 { "dbpsw", 19 },
336 /* end-sanitize-v850e */
337 { "ecr", 4 },
338 { "eipc", 0 },
339 { "eipsw", 1 },
340 { "fepc", 2 },
341 { "fepsw", 3 },
342 { "psw", 5 },
343 };
344 #define SYSREG_NAME_CNT (sizeof (system_registers) / sizeof (struct reg_name))
345
346 static const struct reg_name cc_names[] =
347 {
348 { "c", 0x1 },
349 { "e", 0x2 },
350 { "ge", 0xe },
351 { "gt", 0xf },
352 { "h", 0xb },
353 { "l", 0x1 },
354 { "le", 0x7 },
355 { "lt", 0x6 },
356 { "n", 0x4 },
357 { "nc", 0x9 },
358 { "ne", 0xa },
359 { "nh", 0x3 },
360 { "nl", 0x9 },
361 { "ns", 0xc },
362 { "nv", 0x8 },
363 { "nz", 0xa },
364 { "p", 0xc },
365 { "s", 0x4 },
366 { "sa", 0xd },
367 { "t", 0x5 },
368 { "v", 0x0 },
369 { "z", 0x2 },
370 };
371 #define CC_NAME_CNT (sizeof (cc_names) / sizeof (struct reg_name))
372
373 /* reg_name_search does a binary search of the given register table
374 to see if "name" is a valid regiter name. Returns the register
375 number from the array on success, or -1 on failure. */
376
377 static int
378 reg_name_search (regs, regcount, name)
379 const struct reg_name * regs;
380 int regcount;
381 const char * name;
382 {
383 int middle, low, high;
384 int cmp;
385
386 low = 0;
387 high = regcount - 1;
388
389 do
390 {
391 middle = (low + high) / 2;
392 cmp = strcasecmp (name, regs[middle].name);
393 if (cmp < 0)
394 high = middle - 1;
395 else if (cmp > 0)
396 low = middle + 1;
397 else
398 return regs[middle].value;
399 }
400 while (low <= high);
401 return -1;
402 }
403
404
405 /* Summary of register_name().
406 *
407 * in: Input_line_pointer points to 1st char of operand.
408 *
409 * out: A expressionS.
410 * The operand may have been a register: in this case, X_op == O_register,
411 * X_add_number is set to the register number, and truth is returned.
412 * Input_line_pointer->(next non-blank) char after operand, or is in
413 * its original state.
414 */
415 static boolean
416 register_name (expressionP)
417 expressionS * expressionP;
418 {
419 int reg_number;
420 char * name;
421 char * start;
422 char c;
423
424 /* Find the spelling of the operand */
425 start = name = input_line_pointer;
426
427 c = get_symbol_end ();
428
429 reg_number = reg_name_search (pre_defined_registers, REG_NAME_CNT, name);
430
431 * input_line_pointer = c; /* put back the delimiting char */
432
433 /* look to see if it's in the register table */
434 if (reg_number >= 0)
435 {
436 expressionP->X_op = O_register;
437 expressionP->X_add_number = reg_number;
438
439 /* make the rest nice */
440 expressionP->X_add_symbol = NULL;
441 expressionP->X_op_symbol = NULL;
442
443 return true;
444 }
445 else
446 {
447 /* reset the line as if we had not done anything */
448 input_line_pointer = start;
449
450 return false;
451 }
452 }
453
454 /* Summary of system_register_name().
455 *
456 * in: Input_line_pointer points to 1st char of operand.
457 *
458 * out: A expressionS.
459 * The operand may have been a register: in this case, X_op == O_register,
460 * X_add_number is set to the register number, and truth is returned.
461 * Input_line_pointer->(next non-blank) char after operand, or is in
462 * its original state.
463 */
464 static boolean
465 system_register_name (expressionP, accept_numbers)
466 expressionS * expressionP;
467 boolean accept_numbers;
468 {
469 int reg_number;
470 char * name;
471 char * start;
472 char c;
473
474 /* Find the spelling of the operand */
475 start = name = input_line_pointer;
476
477 c = get_symbol_end ();
478 reg_number = reg_name_search (system_registers, SYSREG_NAME_CNT, name);
479
480 * input_line_pointer = c; /* put back the delimiting char */
481
482 if (reg_number < 0
483 && accept_numbers)
484 {
485 input_line_pointer = start; /* reset input_line pointer */
486
487 if (isdigit (* input_line_pointer))
488 reg_number = strtol (input_line_pointer, & input_line_pointer, 10);
489
490 /* Make sure that the register number is allowable. */
491 if ( reg_number < 0
492 || reg_number > 5
493 /* start-sanitize-v850e */
494 && reg_number < 16
495 || reg_number > 20
496 /* end-sanitize-v850e */
497 )
498 {
499 reg_number = -1;
500 }
501 }
502
503 /* look to see if it's in the register table */
504 if (reg_number >= 0)
505 {
506 expressionP->X_op = O_register;
507 expressionP->X_add_number = reg_number;
508
509 /* make the rest nice */
510 expressionP->X_add_symbol = NULL;
511 expressionP->X_op_symbol = NULL;
512
513 return true;
514 }
515 else
516 {
517 /* reset the line as if we had not done anything */
518 input_line_pointer = start;
519
520 return false;
521 }
522 }
523
524 /* Summary of cc_name().
525 *
526 * in: Input_line_pointer points to 1st char of operand.
527 *
528 * out: A expressionS.
529 * The operand may have been a register: in this case, X_op == O_register,
530 * X_add_number is set to the register number, and truth is returned.
531 * Input_line_pointer->(next non-blank) char after operand, or is in
532 * its original state.
533 */
534 static boolean
535 cc_name (expressionP)
536 expressionS * expressionP;
537 {
538 int reg_number;
539 char * name;
540 char * start;
541 char c;
542
543 /* Find the spelling of the operand */
544 start = name = input_line_pointer;
545
546 c = get_symbol_end ();
547 reg_number = reg_name_search (cc_names, CC_NAME_CNT, name);
548
549 * input_line_pointer = c; /* put back the delimiting char */
550
551 /* look to see if it's in the register table */
552 if (reg_number >= 0)
553 {
554 expressionP->X_op = O_constant;
555 expressionP->X_add_number = reg_number;
556
557 /* make the rest nice */
558 expressionP->X_add_symbol = NULL;
559 expressionP->X_op_symbol = NULL;
560
561 return true;
562 }
563 else
564 {
565 /* reset the line as if we had not done anything */
566 input_line_pointer = start;
567
568 return false;
569 }
570 }
571
572 static void
573 skip_white_space (void)
574 {
575 while ( * input_line_pointer == ' '
576 || * input_line_pointer == '\t')
577 ++ input_line_pointer;
578 }
579
580 /* start-sanitize-v850e */
581 /* Summary of parse_register_list ().
582 *
583 * in: Input_line_pointer points to 1st char of a list of registers.
584 * insn is the partially constructed instruction.
585 * operand is the operand being inserted.
586 *
587 * out: True if the parse completed successfully, False otherwise.
588 * If the parse completes the correct bit fields in the
589 * instruction will be filled in.
590 *
591 * Parses register lists with the syntax:
592 *
593 * { rX }
594 * { rX, rY }
595 * { rX - rY }
596 * { rX - rY, rZ }
597 * etc
598 *
599 * and also parses constant epxressions whoes bits indicate the
600 * registers in the lists. The LSB in the expression refers to
601 * the lowest numbered permissable register in the register list,
602 * and so on upwards. System registers are considered to be very
603 * high numbers.
604 *
605 */
606 static char *
607 parse_register_list
608 (
609 unsigned long * insn,
610 const struct v850_operand * operand
611 )
612 {
613 static int type1_regs[ 32 ] = { 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 29, 28, 23, 22, 21, 20, 27, 26, 25, 24 };
614 /* start-sanitize-v850eq */
615 static int type2_regs[ 32 ] = { 19, 18, 17, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 31, 29, 28, 23, 22, 21, 20, 27, 26, 25, 24 };
616 static int type3_regs[ 32 ] = { 3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 15, 13, 12, 7, 6, 5, 4, 11, 10, 9, 8 };
617 /* end-sanitize-v850eq */
618 int * regs;
619 expressionS exp;
620
621
622 /* Select a register array to parse. */
623 switch (operand->shift)
624 {
625 case 0xffe00001: regs = type1_regs; break;
626 /* start-sanitize-v850eq */
627 case 0xfff8000f: regs = type2_regs; break;
628 case 0xfff8001f: regs = type3_regs; break;
629 /* end-sanitize-v850eq */
630 default:
631 as_bad ("unknown operand shift: %x\n", operand->shift );
632 return "internal failure in parse_register_list";
633 }
634
635 skip_white_space();
636
637 /* If the expression starts with a curly brace it is a register list.
638 Otherwise it is a constant expression ,whoes bits indicate which
639 registers are to be included in the list. */
640
641 if (* input_line_pointer != '{')
642 {
643 int bits;
644 int reg;
645 int i;
646
647 expression (& exp);
648
649 if (exp.X_op != O_constant)
650 return "constant expression or register list expected";
651
652 /* start-sanitize-v850eq */
653 if (regs == type1_regs)
654 /* end-sanitize-v850eq */
655 {
656 if (exp.X_add_number & 0xFFFFF000)
657 return "high bits set in register list expression";
658
659 for (reg = 20; reg < 32; reg ++)
660 if (exp.X_add_number & (1 << (reg - 20)))
661 {
662 for (i = 0; i < 32; i++)
663 if (regs[i] == reg)
664 * insn |= (1 << i);
665 }
666 }
667 /* start-sanitize-v850eq */
668 else if (regs == type2_regs)
669 {
670 if (exp.X_add_number & 0xFFFE0000)
671 return "high bits set in register list expression";
672
673 for (reg = 1; reg < 16; reg ++)
674 if (exp.X_add_number & (1 << (reg - 1)))
675 {
676 for (i = 0; i < 32; i++)
677 if (regs[i] == reg)
678 * insn |= (1 << i);
679 }
680
681 if (exp.X_add_number & (1 << 15))
682 * insn |= (1 << 3);
683
684 if (exp.X_add_number & (1 << 16))
685 * insn |= (1 << 19);
686 }
687 else /* regs == type3_regs */
688 {
689 if (exp.X_add_number & 0xFFFE0000)
690 return "high bits set in register list expression";
691
692 for (reg = 16; reg < 32; reg ++)
693 if (exp.X_add_number & (1 << (reg - 16)))
694 {
695 for (i = 0; i < 32; i++)
696 if (regs[i] == reg)
697 * insn |= (1 << i);
698 }
699
700 if (exp.X_add_number & (1 << 16))
701 * insn |= (1 << 19);
702 }
703 /* end-sanitize-v850eq */
704
705 return NULL;
706 }
707
708 input_line_pointer ++;
709
710 /* Parse the register list until a terminator (closing curly brace or new-line) is found. */
711 for (;;)
712 {
713 if (register_name (& exp))
714 {
715 int i;
716
717 /* Locate the given register in the list, and if it is there, insert the corresponding bit into the instruction. */
718 for (i = 0; i < 32; i++)
719 {
720 if (regs[ i ] == exp.X_add_number)
721 {
722 * insn |= (1 << i);
723 break;
724 }
725 }
726
727 if (i == 32)
728 {
729 return "illegal register included in list";
730 }
731 }
732 else if (system_register_name (& exp, true))
733 {
734 if (regs == type1_regs)
735 {
736 return "system registers cannot be included in list";
737 }
738 else if (exp.X_add_number == 5)
739 {
740 if (regs == type2_regs)
741 return "PSW cannot be included in list";
742 else
743 * insn |= 0x8;
744 }
745 else
746 * insn |= 0x80000;
747 }
748 else if (* input_line_pointer == '}')
749 {
750 input_line_pointer ++;
751 break;
752 }
753 else if (* input_line_pointer == ',')
754 {
755 input_line_pointer ++;
756 continue;
757 }
758 else if (* input_line_pointer == '-')
759 {
760 /* We have encountered a range of registers: rX - rY */
761 int j;
762 expressionS exp2;
763
764 /* Skip the dash. */
765 ++ input_line_pointer;
766
767 /* Get the second register in the range. */
768 if (! register_name (& exp2))
769 {
770 return "second register should follow dash in register list";
771 exp2.X_add_number = exp.X_add_number;
772 }
773
774 /* Add the rest of the registers in the range. */
775 for (j = exp.X_add_number + 1; j <= exp2.X_add_number; j++)
776 {
777 int i;
778
779 /* Locate the given register in the list, and if it is there, insert the corresponding bit into the instruction. */
780 for (i = 0; i < 32; i++)
781 {
782 if (regs[ i ] == j)
783 {
784 * insn |= (1 << i);
785 break;
786 }
787 }
788
789 if (i == 32)
790 {
791 return "illegal register included in list";
792 }
793 }
794 }
795 else
796 {
797 break;
798 }
799
800 skip_white_space();
801 }
802
803 return NULL;
804 }
805 /* end-sanitize-v850e */
806
807 CONST char * md_shortopts = "m:";
808
809 struct option md_longopts[] =
810 {
811 {NULL, no_argument, NULL, 0}
812 };
813 size_t md_longopts_size = sizeof md_longopts;
814
815
816 void
817 md_show_usage (stream)
818 FILE * stream;
819 {
820 fprintf (stream, "V850 options:\n");
821 fprintf (stream, "\t-wsigned_overflow Warn if signed immediate values overflow\n");
822 fprintf (stream, "\t-wunsigned_overflow Warn if unsigned immediate values overflow\n");
823 fprintf (stream, "\t-mv850 The code is targeted at the v850\n");
824 /* start-sanitize-v850e */
825 fprintf (stream, "\t-mv850e The code is targeted at the v850e\n");
826 /* end-sanitize-v850e */
827 /* start-sanitize-v850eq */
828 fprintf (stream, "\t-mv850eq The code is targeted at the v850eq\n");
829 /* end-sanitize-v850eq */
830 }
831
832 int
833 md_parse_option (c, arg)
834 int c;
835 char * arg;
836 {
837 switch (c)
838 {
839 case 'w':
840 if (strcmp (arg, "signed_overflow") == 0)
841 {
842 warn_signed_overflows = TRUE;
843 return 1;
844 }
845 else if (strcmp (arg, "unsigned_overflow") == 0)
846 {
847 warn_unsigned_overflows = TRUE;
848 return 1;
849 }
850 break;
851
852 case 'm':
853 if (strcmp (arg, "v850") == 0)
854 {
855 machine = 0;
856 processor_mask = PROCESSOR_V850;
857 return 1;
858 }
859 /* start-sanitize-v850e */
860 else if (strcmp (arg, "v850e") == 0)
861 {
862 machine = bfd_mach_v850e;
863 processor_mask = PROCESSOR_V850E;
864
865 return 1;
866 }
867 /* end-sanitize-v850e */
868 /* start-sanitize-v850eq */
869 else if (strcmp (arg, "v850eq") == 0)
870 {
871 machine = bfd_mach_v850eq;
872 processor_mask = PROCESSOR_V850EQ;
873 return 1;
874 }
875 /* end-sanitize-v850eq */
876 break;
877 }
878
879 return 0;
880 }
881
882 symbolS *
883 md_undefined_symbol (name)
884 char * name;
885 {
886 return 0;
887 }
888
889 char *
890 md_atof (type, litp, sizep)
891 int type;
892 char * litp;
893 int * sizep;
894 {
895 int prec;
896 LITTLENUM_TYPE words[4];
897 char * t;
898 int i;
899
900 switch (type)
901 {
902 case 'f':
903 prec = 2;
904 break;
905
906 case 'd':
907 prec = 4;
908 break;
909
910 default:
911 *sizep = 0;
912 return "bad call to md_atof";
913 }
914
915 t = atof_ieee (input_line_pointer, type, words);
916 if (t)
917 input_line_pointer = t;
918
919 *sizep = prec * 2;
920
921 for (i = prec - 1; i >= 0; i--)
922 {
923 md_number_to_chars (litp, (valueT) words[i], 2);
924 litp += 2;
925 }
926
927 return NULL;
928 }
929
930
931 /* Very gross. */
932 void
933 md_convert_frag (abfd, sec, fragP)
934 bfd * abfd;
935 asection * sec;
936 fragS * fragP;
937 {
938 subseg_change (sec, 0);
939 if (fragP->fr_subtype == 0)
940 {
941 fix_new (fragP, fragP->fr_fix, 2, fragP->fr_symbol,
942 fragP->fr_offset, 1, BFD_RELOC_UNUSED + (int)fragP->fr_opcode);
943 fragP->fr_var = 0;
944 fragP->fr_fix += 2;
945 }
946 else if (fragP->fr_subtype == 1)
947 {
948 /* Reverse the condition of the first branch. */
949 fragP->fr_literal[0] &= 0xf7;
950 /* Mask off all the displacement bits. */
951 fragP->fr_literal[0] &= 0x8f;
952 fragP->fr_literal[1] &= 0x07;
953 /* Now set the displacement bits so that we branch
954 around the unconditional branch. */
955 fragP->fr_literal[0] |= 0x30;
956
957 /* Now create the unconditional branch + fixup to the final
958 target. */
959 md_number_to_chars (&fragP->fr_literal[2], 0x00000780, 4);
960 fix_new (fragP, fragP->fr_fix + 2, 4, fragP->fr_symbol,
961 fragP->fr_offset, 1, BFD_RELOC_UNUSED + (int)fragP->fr_opcode + 1);
962 fragP->fr_var = 0;
963 fragP->fr_fix += 6;
964 }
965 else
966 abort ();
967 }
968
969 valueT
970 md_section_align (seg, addr)
971 asection * seg;
972 valueT addr;
973 {
974 int align = bfd_get_section_alignment (stdoutput, seg);
975 return ((addr + (1 << align) - 1) & (-1 << align));
976 }
977
978 void
979 md_begin ()
980 {
981 char * prev_name = "";
982 register const struct v850_opcode * op;
983 flagword applicable;
984
985
986 v850_hash = hash_new();
987
988 /* Insert unique names into hash table. The V850 instruction set
989 has many identical opcode names that have different opcodes based
990 on the operands. This hash table then provides a quick index to
991 the first opcode with a particular name in the opcode table. */
992
993 op = v850_opcodes;
994 while (op->name)
995 {
996 if (strcmp (prev_name, op->name))
997 {
998 prev_name = (char *) op->name;
999 hash_insert (v850_hash, op->name, (char *) op);
1000 }
1001 op++;
1002 }
1003
1004 bfd_set_arch_mach (stdoutput, TARGET_ARCH, machine);
1005
1006 applicable = bfd_applicable_section_flags (stdoutput);
1007
1008 sdata_section = subseg_new (".sdata", 0);
1009 bfd_set_section_flags (stdoutput, sdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1010
1011 tdata_section = subseg_new (".tdata", 0);
1012 bfd_set_section_flags (stdoutput, tdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1013
1014 zdata_section = subseg_new (".zdata", 0);
1015 bfd_set_section_flags (stdoutput, zdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1016
1017 sbss_section = subseg_new (".sbss", 0);
1018 bfd_set_section_flags (stdoutput, sbss_section, applicable & SEC_ALLOC);
1019
1020 tbss_section = subseg_new (".tbss", 0);
1021 bfd_set_section_flags (stdoutput, tbss_section, applicable & SEC_ALLOC);
1022
1023 zbss_section = subseg_new (".zbss", 0);
1024 bfd_set_section_flags (stdoutput, zbss_section, applicable & SEC_ALLOC);
1025
1026 rosdata_section = subseg_new (".rosdata", 0);
1027 bfd_set_section_flags (stdoutput, rosdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY));
1028
1029 rozdata_section = subseg_new (".rozdata", 0);
1030 bfd_set_section_flags (stdoutput, rozdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY));
1031
1032 /* start-sanitize-v850e */
1033 call_table_data_section = subseg_new (".call_table_data", 0);
1034 bfd_set_section_flags (stdoutput, call_table_data_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1035
1036 call_table_text_section = subseg_new (".call_table_text", 0);
1037 bfd_set_section_flags (stdoutput, call_table_text_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE));
1038 /* end-sanitize-v850e */
1039 }
1040
1041
1042 /* start-sanitize-v850e */
1043 static bfd_reloc_code_real_type
1044 handle_ctoff (const struct v850_operand * operand)
1045 {
1046 if (operand == NULL)
1047 return BFD_RELOC_V850_CALLT_16_16_OFFSET;
1048
1049 if ( operand->bits != 6
1050 || operand->shift != 0)
1051 {
1052 as_bad ("ctoff() relocation used on an instruction which does not support it");
1053 return BFD_RELOC_64; /* Used to indicate an error condition. */
1054 }
1055
1056 return BFD_RELOC_V850_CALLT_6_7_OFFSET;
1057 }
1058 /* end-sanitize-v850e */
1059
1060 static bfd_reloc_code_real_type
1061 handle_sdaoff (const struct v850_operand * operand)
1062 {
1063 if (operand == NULL) return BFD_RELOC_V850_SDA_16_16_OFFSET;
1064 if (operand->bits == 15 && operand->shift == 17) return BFD_RELOC_V850_SDA_15_16_OFFSET;
1065 /* start-sanitize-v850e */
1066 if (operand->bits == -1) return BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET;
1067 /* end-sanitize-v850e */
1068
1069 if ( operand->bits != 16
1070 || operand->shift != 16)
1071 {
1072 as_bad ("sdaoff() relocation used on an instruction which does not support it");
1073 return BFD_RELOC_64; /* Used to indicate an error condition. */
1074 }
1075
1076 return BFD_RELOC_V850_SDA_16_16_OFFSET;
1077 }
1078
1079 static bfd_reloc_code_real_type
1080 handle_zdaoff (const struct v850_operand * operand)
1081 {
1082 if (operand == NULL) return BFD_RELOC_V850_ZDA_16_16_OFFSET;
1083 if (operand->bits == 15 && operand->shift == 17) return BFD_RELOC_V850_ZDA_15_16_OFFSET;
1084 /* start-sanitize-v850e */
1085 if (operand->bits == -1) return BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET;
1086 /* end-sanitize-v850e */
1087
1088 if ( operand->bits != 16
1089 || operand->shift != 16)
1090 {
1091 as_bad ("zdaoff() relocation used on an instruction which does not support it");
1092 return BFD_RELOC_64; /* Used to indicate an error condition. */
1093 }
1094
1095 return BFD_RELOC_V850_ZDA_16_16_OFFSET;
1096 }
1097
1098 static bfd_reloc_code_real_type
1099 handle_tdaoff (const struct v850_operand * operand)
1100 {
1101 if (operand == NULL) return BFD_RELOC_V850_TDA_7_7_OFFSET; /* data item, not an instruction. */
1102 if (operand->bits == 6 && operand->shift == 1) return BFD_RELOC_V850_TDA_6_8_OFFSET; /* sld.w/sst.w, operand: D8_6 */
1103 /* start-sanitize-v850e */
1104 if (operand->bits == 4 && operand->insert != NULL) return BFD_RELOC_V850_TDA_4_5_OFFSET; /* sld.hu, operand: D5-4 */
1105 if (operand->bits == 4 && operand->insert == NULL) return BFD_RELOC_V850_TDA_4_4_OFFSET; /* sld.bu, operand: D4 */
1106 /* end-sanitize-v850e */
1107 if (operand->bits == 16 && operand->shift == 16) return BFD_RELOC_V850_TDA_16_16_OFFSET; /* set1 & chums, operands: D16 */
1108
1109 if (operand->bits != 7)
1110 {
1111 as_bad ("tdaoff() relocation used on an instruction which does not support it");
1112 return BFD_RELOC_64; /* Used to indicate an error condition. */
1113 }
1114
1115 return operand->insert != NULL
1116 ? BFD_RELOC_V850_TDA_7_8_OFFSET /* sld.h/sst.h, operand: D8_7 */
1117 : BFD_RELOC_V850_TDA_7_7_OFFSET; /* sld.b/sst.b, opreand: D7 */
1118 }
1119
1120 /* Warning: The code in this function relies upon the definitions
1121 in the v850_operands[] array (defined in opcodes/v850-opc.c)
1122 matching the hard coded values contained herein. */
1123
1124 static bfd_reloc_code_real_type
1125 v850_reloc_prefix (const struct v850_operand * operand)
1126 {
1127 boolean paren_skipped = false;
1128
1129
1130 /* Skip leading opening parenthesis. */
1131 if (* input_line_pointer == '(')
1132 {
1133 ++ input_line_pointer;
1134 paren_skipped = true;
1135 }
1136
1137 #define CHECK_(name, reloc) \
1138 if (strncmp (input_line_pointer, name##"(", strlen (name) + 1) == 0) \
1139 { \
1140 input_line_pointer += strlen (name); \
1141 return reloc; \
1142 }
1143
1144 CHECK_ ("hi0", BFD_RELOC_HI16);
1145 CHECK_ ("hi", BFD_RELOC_HI16_S);
1146 CHECK_ ("lo", BFD_RELOC_LO16);
1147 CHECK_ ("sdaoff", handle_sdaoff (operand));
1148 CHECK_ ("zdaoff", handle_zdaoff (operand));
1149 CHECK_ ("tdaoff", handle_tdaoff (operand));
1150
1151 /* start-sanitize-v850e */
1152 CHECK_ ("hilo", BFD_RELOC_32);
1153 CHECK_ ("ctoff", handle_ctoff (operand));
1154 /* end-sanitize-v850e */
1155
1156 /* Restore skipped parenthesis. */
1157 if (paren_skipped)
1158 -- input_line_pointer;
1159
1160 return BFD_RELOC_UNUSED;
1161 }
1162
1163 void
1164 md_assemble (str)
1165 char * str;
1166 {
1167 char * s;
1168 char * start_of_operands;
1169 struct v850_opcode * opcode;
1170 struct v850_opcode * next_opcode;
1171 const unsigned char * opindex_ptr;
1172 int next_opindex;
1173 int relaxable;
1174 unsigned long insn;
1175 unsigned long insn_size;
1176 char * f;
1177 int i;
1178 int match;
1179 boolean extra_data_after_insn = false;
1180 unsigned extra_data_len;
1181 unsigned long extra_data;
1182 char * saved_input_line_pointer;
1183
1184 /* Get the opcode. */
1185 for (s = str; *s != '\0' && ! isspace (*s); s++)
1186 continue;
1187
1188 if (*s != '\0')
1189 *s++ = '\0';
1190
1191 /* find the first opcode with the proper name */
1192 opcode = (struct v850_opcode *)hash_find (v850_hash, str);
1193 if (opcode == NULL)
1194 {
1195 as_bad ("Unrecognized opcode: `%s'", str);
1196 ignore_rest_of_line ();
1197 return;
1198 }
1199
1200 str = s;
1201 while (isspace (* str))
1202 ++ str;
1203
1204 start_of_operands = str;
1205
1206 saved_input_line_pointer = input_line_pointer;
1207
1208 for (;;)
1209 {
1210 const char * errmsg = NULL;
1211
1212 match = 0;
1213
1214 if ((opcode->processors & processor_mask) == 0)
1215 {
1216 errmsg = "Target processor does not support this instruction.";
1217 goto error;
1218 }
1219
1220 relaxable = 0;
1221 fc = 0;
1222 next_opindex = 0;
1223 insn = opcode->opcode;
1224 extra_data_after_insn = false;
1225
1226 input_line_pointer = str = start_of_operands;
1227
1228 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
1229 {
1230 const struct v850_operand * operand;
1231 char * hold;
1232 expressionS ex;
1233 bfd_reloc_code_real_type reloc;
1234
1235 if (next_opindex == 0)
1236 {
1237 operand = & v850_operands[ * opindex_ptr ];
1238 }
1239 else
1240 {
1241 operand = & v850_operands[ next_opindex ];
1242 next_opindex = 0;
1243 }
1244
1245 errmsg = NULL;
1246
1247 while (*str == ' ' || *str == ',' || *str == '[' || *str == ']')
1248 ++str;
1249
1250 if (operand->flags & V850_OPERAND_RELAX)
1251 relaxable = 1;
1252
1253 /* Gather the operand. */
1254 hold = input_line_pointer;
1255 input_line_pointer = str;
1256
1257 /* lo(), hi(), hi0(), etc... */
1258 if ((reloc = v850_reloc_prefix (operand)) != BFD_RELOC_UNUSED)
1259 {
1260 if (reloc == BFD_RELOC_64) /* This is a fake reloc, used to indicate an error condition. */
1261 {
1262 match = 1;
1263 goto error;
1264 }
1265
1266 expression (& ex);
1267
1268 if (ex.X_op == O_constant)
1269 {
1270 switch (reloc)
1271 {
1272 case BFD_RELOC_V850_ZDA_16_16_OFFSET:
1273 /* To cope with "not1 7, zdaoff(0xfffff006)[r0]" and the like. */
1274 /* Fall through. */
1275
1276 case BFD_RELOC_LO16:
1277 {
1278 /* Truncate, then sign extend the value. */
1279 ex.X_add_number = SEXT16 (ex.X_add_number);
1280 break;
1281 }
1282
1283 case BFD_RELOC_HI16:
1284 {
1285 /* Truncate, then sign extend the value. */
1286 ex.X_add_number = SEXT16 (ex.X_add_number >> 16);
1287 break;
1288 }
1289
1290 case BFD_RELOC_HI16_S:
1291 {
1292 /* Truncate, then sign extend the value. */
1293 int temp = (ex.X_add_number >> 16) & 0xffff;
1294
1295 temp += (ex.X_add_number >> 15) & 1;
1296
1297 ex.X_add_number = SEXT16 (temp);
1298 break;
1299 }
1300
1301 /* start-sanitize-v850e */
1302 case BFD_RELOC_32:
1303 if ((operand->flags & V850E_IMMEDIATE32) == 0)
1304 {
1305 errmsg = "use bigger instruction";
1306 goto error;
1307 }
1308
1309 extra_data_after_insn = true;
1310 extra_data_len = 4;
1311 extra_data = ex.X_add_number;
1312 ex.X_add_number = 0;
1313 break;
1314 /* end-sanitize-v850e */
1315
1316 default:
1317 fprintf (stderr, "reloc: %d\n", reloc);
1318 as_bad ("AAARG -> unhandled constant reloc");
1319 break;
1320 }
1321
1322 insn = v850_insert_operand (insn, operand, ex.X_add_number,
1323 (char *) NULL, 0);
1324 }
1325 else
1326 {
1327 if (reloc == BFD_RELOC_32)
1328 {
1329 if ((operand->flags & V850E_IMMEDIATE32) == 0)
1330 {
1331 errmsg = "use bigger instruction";
1332 goto error;
1333 }
1334
1335 extra_data_after_insn = true;
1336 extra_data_len = 4;
1337 extra_data = ex.X_add_number;
1338 ex.X_add_number = 0;
1339 }
1340
1341 if (fc > MAX_INSN_FIXUPS)
1342 as_fatal ("too many fixups");
1343
1344 fixups[ fc ].exp = ex;
1345 fixups[ fc ].opindex = * opindex_ptr;
1346 fixups[ fc ].reloc = reloc;
1347 fc++;
1348 }
1349 }
1350 else
1351 {
1352 errmsg = NULL;
1353
1354 if ((operand->flags & V850_OPERAND_REG) != 0)
1355 {
1356 if (!register_name (& ex))
1357 {
1358 errmsg = "invalid register name";
1359 }
1360
1361 if ((operand->flags & V850_NOT_R0)
1362 && ex.X_add_number == 0)
1363 {
1364 errmsg = "register r0 cannot be used here";
1365 }
1366 }
1367 else if ((operand->flags & V850_OPERAND_SRG) != 0)
1368 {
1369 if (!system_register_name (& ex, true))
1370 {
1371 errmsg = "invalid system register name";
1372 }
1373 }
1374 else if ((operand->flags & V850_OPERAND_EP) != 0)
1375 {
1376 char * start = input_line_pointer;
1377 char c = get_symbol_end ();
1378
1379 if (strcmp (start, "ep") != 0 && strcmp (start, "r30") != 0)
1380 {
1381 /* Put things back the way we found them. */
1382 *input_line_pointer = c;
1383 input_line_pointer = start;
1384 errmsg = "expected EP register";
1385 goto error;
1386 }
1387
1388 *input_line_pointer = c;
1389 str = input_line_pointer;
1390 input_line_pointer = hold;
1391
1392 while (*str == ' ' || *str == ',' || *str == '[' || *str == ']')
1393 ++str;
1394 continue;
1395 }
1396 else if ((operand->flags & V850_OPERAND_CC) != 0)
1397 {
1398 if (!cc_name (& ex))
1399 {
1400 errmsg = "invalid condition code name";
1401 }
1402 }
1403 /* start-sanitize-v850e */
1404 else if (operand->flags & V850E_PUSH_POP)
1405 {
1406 errmsg = parse_register_list (& insn, operand);
1407
1408 /* The parse_register_list() function has already done everything, so fake a dummy expression. */
1409 ex.X_op = O_constant;
1410 ex.X_add_number = 0;
1411 }
1412 else if (operand->flags & V850E_IMMEDIATE16)
1413 {
1414 expression (& ex);
1415
1416 if (ex.X_op != O_constant)
1417 errmsg = "constant expression expected";
1418 else if (ex.X_add_number & 0xffff0000)
1419 {
1420 if (ex.X_add_number & 0xffff)
1421 errmsg = "constant too big to fit into instruction";
1422 else if ((insn & 0x001fffc0) == 0x00130780)
1423 ex.X_add_number >>= 16;
1424 else
1425 errmsg = "constant too big to fit into instruction";
1426 }
1427
1428 extra_data_after_insn = true;
1429 extra_data_len = 2;
1430 extra_data = ex.X_add_number;
1431 ex.X_add_number = 0;
1432 }
1433 else if (operand->flags & V850E_IMMEDIATE32)
1434 {
1435 expression (& ex);
1436
1437 if (ex.X_op != O_constant)
1438 errmsg = "constant expression expected";
1439
1440 extra_data_after_insn = true;
1441 extra_data_len = 4;
1442 extra_data = ex.X_add_number;
1443 ex.X_add_number = 0;
1444 }
1445 /* end-sanitize-v850e */
1446 else if (register_name (&ex)
1447 && (operand->flags & V850_OPERAND_REG) == 0)
1448 {
1449 errmsg = "syntax error: register not expected";
1450 }
1451 else if (system_register_name (& ex, false)
1452 && (operand->flags & V850_OPERAND_SRG) == 0)
1453 {
1454 errmsg = "syntax error: system register not expected";
1455 }
1456 else if (cc_name (&ex)
1457 && (operand->flags & V850_OPERAND_CC) == 0)
1458 {
1459 errmsg = "syntax error: condition code not expected";
1460 }
1461 else
1462 {
1463 expression (& ex);
1464 /* start-sanitize-v850e */
1465 /* Special case:
1466 If we are assembling a MOV instruction (or a CALLT.... :-)
1467 and the immediate value does not fit into the bits available
1468 then create a fake error so that the next MOV instruction
1469 will be selected. This one has a 32 bit immediate field. */
1470
1471 if (((insn & 0x07e0) == 0x0200)
1472 && ex.X_op == O_constant
1473 && (ex.X_add_number < (- (1 << (operand->bits - 1))) || ex.X_add_number > ((1 << operand->bits) - 1)))
1474 errmsg = "use bigger instruction";
1475 /* end-sanitize-v850e */
1476 }
1477
1478 if (errmsg)
1479 goto error;
1480
1481 /* fprintf (stderr, "insn: %x, operand %d, op: %d, add_number: %d\n", insn, opindex_ptr - opcode->operands, ex.X_op, ex.X_add_number ); */
1482
1483 switch (ex.X_op)
1484 {
1485 case O_illegal:
1486 errmsg = "illegal operand";
1487 goto error;
1488 case O_absent:
1489 errmsg = "missing operand";
1490 goto error;
1491 case O_register:
1492 if ((operand->flags & (V850_OPERAND_REG | V850_OPERAND_SRG)) == 0)
1493 {
1494 errmsg = "invalid operand";
1495 goto error;
1496 }
1497 insn = v850_insert_operand (insn, operand, ex.X_add_number,
1498 (char *) NULL, 0);
1499 break;
1500
1501 case O_constant:
1502 insn = v850_insert_operand (insn, operand, ex.X_add_number,
1503 (char *) NULL, 0);
1504 break;
1505
1506 default:
1507 /* We need to generate a fixup for this expression. */
1508 if (fc >= MAX_INSN_FIXUPS)
1509 as_fatal ("too many fixups");
1510
1511 fixups[ fc ].exp = ex;
1512 fixups[ fc ].opindex = * opindex_ptr;
1513 fixups[ fc ].reloc = BFD_RELOC_UNUSED;
1514 ++fc;
1515 break;
1516 }
1517 }
1518
1519 str = input_line_pointer;
1520 input_line_pointer = hold;
1521
1522 while (*str == ' ' || *str == ',' || *str == '[' || *str == ']'
1523 || *str == ')')
1524 ++str;
1525 }
1526 match = 1;
1527
1528 error:
1529 if (match == 0)
1530 {
1531 next_opcode = opcode + 1;
1532 if (next_opcode->name != NULL && strcmp (next_opcode->name, opcode->name) == 0)
1533 {
1534 opcode = next_opcode;
1535 continue;
1536 }
1537
1538 as_bad (errmsg);
1539 ignore_rest_of_line ();
1540 input_line_pointer = saved_input_line_pointer;
1541 return;
1542 }
1543 break;
1544 }
1545
1546 while (isspace (*str))
1547 ++str;
1548
1549 if (*str != '\0')
1550 as_bad ("junk at end of line: `%s'", str);
1551
1552 input_line_pointer = str;
1553
1554 /* Write out the instruction.
1555
1556 Four byte insns have an opcode with the two high bits on. */
1557 if (relaxable && fc > 0)
1558 {
1559 f = frag_var (rs_machine_dependent, 6, 4, 0,
1560 fixups[0].exp.X_add_symbol,
1561 fixups[0].exp.X_add_number,
1562 (char *)fixups[0].opindex);
1563 insn_size = 2;
1564 md_number_to_chars (f, insn, insn_size);
1565 md_number_to_chars (f + 2, 0, 4);
1566 fc = 0;
1567 }
1568 else
1569 {
1570 if ((insn & 0x0600) == 0x0600)
1571 insn_size = 4;
1572 else
1573 insn_size = 2;
1574
1575 /* start-sanitize-v850e */
1576 /* Special case: 32 bit MOV */
1577 if ((insn & 0xffe0) == 0x0620)
1578 insn_size = 2;
1579 /* end-sanitize-v850e */
1580
1581 f = frag_more (insn_size);
1582
1583 md_number_to_chars (f, insn, insn_size);
1584
1585 if (extra_data_after_insn)
1586 {
1587 f = frag_more (extra_data_len);
1588
1589 md_number_to_chars (f, extra_data, extra_data_len);
1590
1591 extra_data_after_insn = false;
1592 }
1593 }
1594
1595 /* Create any fixups. At this point we do not use a
1596 bfd_reloc_code_real_type, but instead just use the
1597 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1598 handle fixups for any operand type, although that is admittedly
1599 not a very exciting feature. We pick a BFD reloc type in
1600 md_apply_fix. */
1601 for (i = 0; i < fc; i++)
1602 {
1603 const struct v850_operand * operand;
1604 bfd_reloc_code_real_type reloc;
1605
1606 operand = & v850_operands[ fixups[i].opindex ];
1607
1608 reloc = fixups[i].reloc;
1609
1610 if (reloc != BFD_RELOC_UNUSED)
1611 {
1612 reloc_howto_type * reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc);
1613 int size;
1614 int address;
1615 fixS * fixP;
1616
1617 if (!reloc_howto)
1618 abort();
1619
1620 size = bfd_get_reloc_size (reloc_howto);
1621
1622 if (size != 2 && size != 4) /* XXX this will abort on an R_V850_8 reloc - is this reloc actually used ? */
1623 abort();
1624
1625 address = (f - frag_now->fr_literal) + insn_size - size;
1626
1627 if (reloc == BFD_RELOC_32)
1628 {
1629 address += 2;
1630 }
1631
1632 fixP = fix_new_exp (frag_now, address, size,
1633 & fixups[i].exp,
1634 reloc_howto->pc_relative,
1635 reloc);
1636
1637 switch (reloc)
1638 {
1639 case BFD_RELOC_LO16:
1640 case BFD_RELOC_HI16:
1641 case BFD_RELOC_HI16_S:
1642 fixP->fx_no_overflow = 1;
1643 break;
1644 }
1645 }
1646 else
1647 {
1648 fix_new_exp (
1649 frag_now,
1650 f - frag_now->fr_literal, 4,
1651 & fixups[i].exp,
1652 1 /* FIXME: V850_OPERAND_RELATIVE ??? */,
1653 (bfd_reloc_code_real_type) (fixups[i].opindex + (int) BFD_RELOC_UNUSED)
1654 );
1655 }
1656 }
1657
1658 input_line_pointer = saved_input_line_pointer;
1659 }
1660
1661
1662 /* If while processing a fixup, a reloc really needs to be created */
1663 /* then it is done here. */
1664
1665 arelent *
1666 tc_gen_reloc (seg, fixp)
1667 asection * seg;
1668 fixS * fixp;
1669 {
1670 arelent * reloc;
1671
1672 reloc = (arelent *) xmalloc (sizeof (arelent));
1673 reloc->sym_ptr_ptr = & fixp->fx_addsy->bsym;
1674 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1675 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1676
1677 if (reloc->howto == (reloc_howto_type *) NULL)
1678 {
1679 as_bad_where (fixp->fx_file, fixp->fx_line,
1680 "reloc %d not supported by object file format", (int)fixp->fx_r_type);
1681
1682 xfree (reloc);
1683
1684 return NULL;
1685 }
1686
1687 reloc->addend = fixp->fx_addnumber;
1688
1689 return reloc;
1690 }
1691
1692 /* Assume everything will fit in two bytes, then expand as necessary. */
1693 int
1694 md_estimate_size_before_relax (fragp, seg)
1695 fragS * fragp;
1696 asection * seg;
1697 {
1698 fragp->fr_var = 4;
1699 return 2;
1700 }
1701
1702 long
1703 md_pcrel_from (fixp)
1704 fixS * fixp;
1705 {
1706 /* If the symbol is undefined, or in a section other than our own,
1707 then let the linker figure it out. */
1708 if (fixp->fx_addsy != (symbolS *) NULL && ! S_IS_DEFINED (fixp->fx_addsy))
1709 {
1710 /* The symbol is undefined. Let the linker figure it out. */
1711 return 0;
1712 }
1713 return fixp->fx_frag->fr_address + fixp->fx_where;
1714 }
1715
1716 int
1717 md_apply_fix3 (fixp, valuep, seg)
1718 fixS * fixp;
1719 valueT * valuep;
1720 segT seg;
1721 {
1722 valueT value;
1723 char * where;
1724
1725 if (fixp->fx_addsy == (symbolS *) NULL)
1726 {
1727 value = * valuep;
1728 fixp->fx_done = 1;
1729 }
1730 else if (fixp->fx_pcrel)
1731 value = * valuep;
1732 else
1733 {
1734 value = fixp->fx_offset;
1735 if (fixp->fx_subsy != (symbolS *) NULL)
1736 {
1737 if (S_GET_SEGMENT (fixp->fx_subsy) == absolute_section)
1738 value -= S_GET_VALUE (fixp->fx_subsy);
1739 else
1740 {
1741 /* We don't actually support subtracting a symbol. */
1742 as_bad_where (fixp->fx_file, fixp->fx_line,
1743 "expression too complex");
1744 }
1745 }
1746 }
1747
1748 if ((int) fixp->fx_r_type >= (int) BFD_RELOC_UNUSED)
1749 {
1750 int opindex;
1751 const struct v850_operand * operand;
1752 unsigned long insn;
1753
1754 opindex = (int) fixp->fx_r_type - (int) BFD_RELOC_UNUSED;
1755 operand = & v850_operands[ opindex ];
1756
1757 /* Fetch the instruction, insert the fully resolved operand
1758 value, and stuff the instruction back again.
1759
1760 Note the instruction has been stored in little endian
1761 format! */
1762 where = fixp->fx_frag->fr_literal + fixp->fx_where;
1763
1764 insn = bfd_getl32 ((unsigned char *) where);
1765 insn = v850_insert_operand (insn, operand, (offsetT) value,
1766 fixp->fx_file, fixp->fx_line);
1767 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);
1768
1769 if (fixp->fx_done)
1770 {
1771 /* Nothing else to do here. */
1772 return 1;
1773 }
1774
1775 /* Determine a BFD reloc value based on the operand information.
1776 We are only prepared to turn a few of the operands into relocs. */
1777
1778 if (operand->bits == 22)
1779 fixp->fx_r_type = BFD_RELOC_V850_22_PCREL;
1780 else if (operand->bits == 9)
1781 fixp->fx_r_type = BFD_RELOC_V850_9_PCREL;
1782 else
1783 {
1784 /* fprintf (stderr, "bits: %d, insn: %x\n", operand->bits, insn); */
1785
1786 as_bad_where(fixp->fx_file, fixp->fx_line,
1787 "unresolved expression that must be resolved");
1788 fixp->fx_done = 1;
1789 return 1;
1790 }
1791 }
1792 else if (fixp->fx_done)
1793 {
1794 /* We still have to insert the value into memory! */
1795 where = fixp->fx_frag->fr_literal + fixp->fx_where;
1796 if (fixp->fx_size == 1)
1797 *where = value & 0xff;
1798 else if (fixp->fx_size == 2)
1799 bfd_putl16 (value & 0xffff, (unsigned char *) where);
1800 else if (fixp->fx_size == 4)
1801 bfd_putl32 (value, (unsigned char *) where);
1802 }
1803
1804 fixp->fx_addnumber = value;
1805 return 1;
1806 }
1807
1808 \f
1809 /* Insert an operand value into an instruction. */
1810
1811 static unsigned long
1812 v850_insert_operand (insn, operand, val, file, line)
1813 unsigned long insn;
1814 const struct v850_operand * operand;
1815 offsetT val;
1816 char *file;
1817 unsigned int line;
1818 {
1819 if (operand->insert)
1820 {
1821 const char * message = NULL;
1822
1823 insn = (*operand->insert) (insn, val, & message);
1824 if (message != NULL)
1825 {
1826 if (file == (char *) NULL)
1827 as_warn (message);
1828 else
1829 as_warn_where (file, line, message);
1830 }
1831 }
1832 else
1833 {
1834 if (operand->bits != 32)
1835 {
1836 long min, max;
1837 offsetT test;
1838
1839 if ((operand->flags & V850_OPERAND_SIGNED) != 0)
1840 {
1841 if (! warn_signed_overflows)
1842 max = (1 << operand->bits) - 1;
1843 else
1844 max = (1 << (operand->bits - 1)) - 1;
1845
1846 min = - (1 << (operand->bits - 1));
1847 }
1848 else
1849 {
1850 max = (1 << operand->bits) - 1;
1851
1852 if (! warn_unsigned_overflows)
1853 min = - (1 << (operand->bits - 1));
1854 else
1855 min = 0;
1856 }
1857
1858 test = val;
1859
1860 if (test < (offsetT) min || test > (offsetT) max)
1861 {
1862 const char * err = "operand out of range (%s not between %ld and %ld)";
1863 char buf[100];
1864
1865 sprint_value (buf, test);
1866 if (file == (char *) NULL)
1867 as_warn (err, buf, min, max);
1868 else
1869 as_warn_where (file, line, err, buf, min, max);
1870 }
1871 }
1872
1873 insn |= (((long) val & ((1 << operand->bits) - 1)) << operand->shift);
1874 }
1875
1876 return insn;
1877 }
1878
1879 /* Parse a cons expression. We have to handle hi(), lo(), etc
1880 on the v850. */
1881 void
1882 parse_cons_expression_v850 (exp)
1883 expressionS *exp;
1884 {
1885 /* See if there's a reloc prefix like hi() we have to handle. */
1886 hold_cons_reloc = v850_reloc_prefix (NULL);
1887
1888 /* Do normal expression parsing. */
1889 expression (exp);
1890 }
1891
1892 /* Create a fixup for a cons expression. If parse_cons_expression_v850
1893 found a reloc prefix, then we use that reloc, else we choose an
1894 appropriate one based on the size of the expression. */
1895 void
1896 cons_fix_new_v850 (frag, where, size, exp)
1897 fragS *frag;
1898 int where;
1899 int size;
1900 expressionS *exp;
1901 {
1902 if (hold_cons_reloc == BFD_RELOC_UNUSED)
1903 {
1904 if (size == 4)
1905 hold_cons_reloc = BFD_RELOC_32;
1906 if (size == 2)
1907 hold_cons_reloc = BFD_RELOC_16;
1908 if (size == 1)
1909 hold_cons_reloc = BFD_RELOC_8;
1910 }
1911
1912 if (exp != NULL)
1913 fix_new_exp (frag, where, size, exp, 0, hold_cons_reloc);
1914 else
1915 fix_new (frag, where, size, NULL, 0, 0, hold_cons_reloc);
1916 }