Added code to cope with a constant offset to a ZDA relocation.
[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 return 1;
857 }
858 /* start-sanitize-v850e */
859 else if (strcmp (arg, "v850e") == 0)
860 {
861 machine = bfd_mach_v850e;
862 processor_mask = PROCESSOR_V850 | PROCESSOR_V850E;
863
864 return 1;
865 }
866 /* end-sanitize-v850e */
867 /* start-sanitize-v850eq */
868 else if (strcmp (arg, "v850eq") == 0)
869 {
870 machine = bfd_mach_v850eq;
871 processor_mask = PROCESSOR_V850EQ;
872 return 1;
873 }
874 /* end-sanitize-v850eq */
875 break;
876 }
877
878 return 0;
879 }
880
881 symbolS *
882 md_undefined_symbol (name)
883 char * name;
884 {
885 return 0;
886 }
887
888 char *
889 md_atof (type, litp, sizep)
890 int type;
891 char * litp;
892 int * sizep;
893 {
894 int prec;
895 LITTLENUM_TYPE words[4];
896 char * t;
897 int i;
898
899 switch (type)
900 {
901 case 'f':
902 prec = 2;
903 break;
904
905 case 'd':
906 prec = 4;
907 break;
908
909 default:
910 *sizep = 0;
911 return "bad call to md_atof";
912 }
913
914 t = atof_ieee (input_line_pointer, type, words);
915 if (t)
916 input_line_pointer = t;
917
918 *sizep = prec * 2;
919
920 for (i = prec - 1; i >= 0; i--)
921 {
922 md_number_to_chars (litp, (valueT) words[i], 2);
923 litp += 2;
924 }
925
926 return NULL;
927 }
928
929
930 /* Very gross. */
931 void
932 md_convert_frag (abfd, sec, fragP)
933 bfd * abfd;
934 asection * sec;
935 fragS * fragP;
936 {
937 subseg_change (sec, 0);
938 if (fragP->fr_subtype == 0)
939 {
940 fix_new (fragP, fragP->fr_fix, 2, fragP->fr_symbol,
941 fragP->fr_offset, 1, BFD_RELOC_UNUSED + (int)fragP->fr_opcode);
942 fragP->fr_var = 0;
943 fragP->fr_fix += 2;
944 }
945 else if (fragP->fr_subtype == 1)
946 {
947 /* Reverse the condition of the first branch. */
948 fragP->fr_literal[0] &= 0xf7;
949 /* Mask off all the displacement bits. */
950 fragP->fr_literal[0] &= 0x8f;
951 fragP->fr_literal[1] &= 0x07;
952 /* Now set the displacement bits so that we branch
953 around the unconditional branch. */
954 fragP->fr_literal[0] |= 0x30;
955
956 /* Now create the unconditional branch + fixup to the final
957 target. */
958 md_number_to_chars (&fragP->fr_literal[2], 0x00000780, 4);
959 fix_new (fragP, fragP->fr_fix + 2, 4, fragP->fr_symbol,
960 fragP->fr_offset, 1, BFD_RELOC_UNUSED + (int)fragP->fr_opcode + 1);
961 fragP->fr_var = 0;
962 fragP->fr_fix += 6;
963 }
964 else
965 abort ();
966 }
967
968 valueT
969 md_section_align (seg, addr)
970 asection * seg;
971 valueT addr;
972 {
973 int align = bfd_get_section_alignment (stdoutput, seg);
974 return ((addr + (1 << align) - 1) & (-1 << align));
975 }
976
977 void
978 md_begin ()
979 {
980 char * prev_name = "";
981 register const struct v850_opcode * op;
982 flagword applicable;
983
984
985 v850_hash = hash_new();
986
987 /* Insert unique names into hash table. The V850 instruction set
988 has many identical opcode names that have different opcodes based
989 on the operands. This hash table then provides a quick index to
990 the first opcode with a particular name in the opcode table. */
991
992 op = v850_opcodes;
993 while (op->name)
994 {
995 if (strcmp (prev_name, op->name))
996 {
997 prev_name = (char *) op->name;
998 hash_insert (v850_hash, op->name, (char *) op);
999 }
1000 op++;
1001 }
1002
1003 bfd_set_arch_mach (stdoutput, TARGET_ARCH, machine);
1004
1005 applicable = bfd_applicable_section_flags (stdoutput);
1006
1007 sdata_section = subseg_new (".sdata", 0);
1008 bfd_set_section_flags (stdoutput, sdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1009
1010 tdata_section = subseg_new (".tdata", 0);
1011 bfd_set_section_flags (stdoutput, tdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1012
1013 zdata_section = subseg_new (".zdata", 0);
1014 bfd_set_section_flags (stdoutput, zdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1015
1016 sbss_section = subseg_new (".sbss", 0);
1017 bfd_set_section_flags (stdoutput, sbss_section, applicable & SEC_ALLOC);
1018
1019 tbss_section = subseg_new (".tbss", 0);
1020 bfd_set_section_flags (stdoutput, tbss_section, applicable & SEC_ALLOC);
1021
1022 zbss_section = subseg_new (".zbss", 0);
1023 bfd_set_section_flags (stdoutput, zbss_section, applicable & SEC_ALLOC);
1024
1025 rosdata_section = subseg_new (".rosdata", 0);
1026 bfd_set_section_flags (stdoutput, rosdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY));
1027
1028 rozdata_section = subseg_new (".rozdata", 0);
1029 bfd_set_section_flags (stdoutput, rozdata_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_READONLY));
1030
1031 /* start-sanitize-v850e */
1032 call_table_data_section = subseg_new (".call_table_data", 0);
1033 bfd_set_section_flags (stdoutput, call_table_data_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC | SEC_DATA | SEC_HAS_CONTENTS));
1034
1035 call_table_text_section = subseg_new (".call_table_text", 0);
1036 bfd_set_section_flags (stdoutput, call_table_text_section, applicable & (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE));
1037 /* end-sanitize-v850e */
1038 }
1039
1040
1041 /* start-sanitize-v850e */
1042 static bfd_reloc_code_real_type
1043 handle_ctoff (const struct v850_operand * operand)
1044 {
1045 if (operand == NULL)
1046 return BFD_RELOC_V850_CALLT_16_16_OFFSET;
1047
1048 assert (operand->bits == 6);
1049 assert (operand->shift == 0);
1050
1051 return BFD_RELOC_V850_CALLT_6_7_OFFSET;
1052 }
1053 /* end-sanitize-v850e */
1054
1055 static bfd_reloc_code_real_type
1056 handle_sdaoff (const struct v850_operand * operand)
1057 {
1058 if (operand == NULL) return BFD_RELOC_V850_SDA_16_16_OFFSET;
1059 if (operand->bits == 15 && operand->shift == 17) return BFD_RELOC_V850_SDA_15_16_OFFSET;
1060 /* start-sanitize-v850e */
1061 if (operand->bits == -1) return BFD_RELOC_V850_SDA_16_16_SPLIT_OFFSET;
1062 /* end-sanitize-v850e */
1063
1064 assert (operand->bits == 16);
1065 assert (operand->shift == 16);
1066
1067 return BFD_RELOC_V850_SDA_16_16_OFFSET;
1068 }
1069
1070 static bfd_reloc_code_real_type
1071 handle_zdaoff (const struct v850_operand * operand)
1072 {
1073 if (operand == NULL) return BFD_RELOC_V850_ZDA_16_16_OFFSET;
1074 if (operand->bits == 15 && operand->shift == 17) return BFD_RELOC_V850_ZDA_15_16_OFFSET;
1075 /* start-sanitize-v850e */
1076 if (operand->bits == -1) return BFD_RELOC_V850_ZDA_16_16_SPLIT_OFFSET;
1077 /* end-sanitize-v850e */
1078
1079 assert (operand->bits == 16);
1080 assert (operand->shift == 16);
1081
1082 return BFD_RELOC_V850_ZDA_16_16_OFFSET;
1083 }
1084
1085 static bfd_reloc_code_real_type
1086 handle_tdaoff (const struct v850_operand * operand)
1087 {
1088 if (operand == NULL) return BFD_RELOC_V850_TDA_7_7_OFFSET; /* data item, not an instruction. */
1089 if (operand->bits == 6 && operand->shift == 1) return BFD_RELOC_V850_TDA_6_8_OFFSET; /* sld.w/sst.w, operand: D8_6 */
1090 /* start-sanitize-v850e */
1091 if (operand->bits == 4 && operand->insert != NULL) return BFD_RELOC_V850_TDA_4_5_OFFSET; /* sld.hu, operand: D5-4 */
1092 if (operand->bits == 4 && operand->insert == NULL) return BFD_RELOC_V850_TDA_4_4_OFFSET; /* sld.bu, operand: D4 */
1093 /* end-sanitize-v850e */
1094 if (operand->bits == 16 && operand->shift == 16) return BFD_RELOC_V850_TDA_16_16_OFFSET; /* set1 & chums, operands: D16 */
1095
1096 assert (operand->bits == 7);
1097
1098 return operand->insert != NULL
1099 ? BFD_RELOC_V850_TDA_7_8_OFFSET /* sld.h/sst.h, operand: D8_7 */
1100 : BFD_RELOC_V850_TDA_7_7_OFFSET; /* sld.b/sst.b, opreand: D7 */
1101 }
1102
1103 /* Warning: The code in this function relies upon the definitions
1104 in the v850_operands[] array (defined in opcodes/v850-opc.c)
1105 matching the hard coded values contained herein. */
1106
1107 static bfd_reloc_code_real_type
1108 v850_reloc_prefix (const struct v850_operand * operand)
1109 {
1110 boolean paren_skipped = false;
1111
1112
1113 /* Skip leading opening parenthesis. */
1114 if (* input_line_pointer == '(')
1115 {
1116 ++ input_line_pointer;
1117 paren_skipped = true;
1118 }
1119
1120 #define CHECK_(name, reloc) \
1121 if (strncmp (input_line_pointer, name##"(", strlen (name) + 1) == 0) \
1122 { \
1123 input_line_pointer += strlen (name); \
1124 return reloc; \
1125 }
1126
1127 CHECK_ ("hi0", BFD_RELOC_HI16);
1128 CHECK_ ("hi", BFD_RELOC_HI16_S);
1129 CHECK_ ("lo", BFD_RELOC_LO16);
1130 CHECK_ ("sdaoff", handle_sdaoff (operand));
1131 CHECK_ ("zdaoff", handle_zdaoff (operand));
1132 CHECK_ ("tdaoff", handle_tdaoff (operand));
1133
1134 /* start-sanitize-v850e */
1135 CHECK_ ("hilo", BFD_RELOC_32);
1136 CHECK_ ("ctoff", handle_ctoff (operand));
1137 /* end-sanitize-v850e */
1138
1139 /* Restore skipped parenthesis. */
1140 if (paren_skipped)
1141 -- input_line_pointer;
1142
1143 return BFD_RELOC_UNUSED;
1144 }
1145
1146 void
1147 md_assemble (str)
1148 char * str;
1149 {
1150 char * s;
1151 char * start_of_operands;
1152 struct v850_opcode * opcode;
1153 struct v850_opcode * next_opcode;
1154 const unsigned char * opindex_ptr;
1155 int next_opindex;
1156 int relaxable;
1157 unsigned long insn;
1158 unsigned long insn_size;
1159 char * f;
1160 int i;
1161 int match;
1162 boolean extra_data_after_insn = false;
1163 unsigned extra_data_len;
1164 unsigned long extra_data;
1165 char * saved_input_line_pointer;
1166
1167 /* Get the opcode. */
1168 for (s = str; *s != '\0' && ! isspace (*s); s++)
1169 continue;
1170
1171 if (*s != '\0')
1172 *s++ = '\0';
1173
1174 /* find the first opcode with the proper name */
1175 opcode = (struct v850_opcode *)hash_find (v850_hash, str);
1176 if (opcode == NULL)
1177 {
1178 as_bad ("Unrecognized opcode: `%s'", str);
1179 ignore_rest_of_line ();
1180 return;
1181 }
1182
1183 str = s;
1184 while (isspace (* str))
1185 ++ str;
1186
1187 start_of_operands = str;
1188
1189 saved_input_line_pointer = input_line_pointer;
1190
1191 for (;;)
1192 {
1193 const char * errmsg = NULL;
1194
1195 match = 0;
1196
1197 if ((opcode->processors & processor_mask) == 0)
1198 {
1199 errmsg = "Target processor does not support this instruction.";
1200 goto error;
1201 }
1202
1203 relaxable = 0;
1204 fc = 0;
1205 next_opindex = 0;
1206 insn = opcode->opcode;
1207 extra_data_after_insn = false;
1208
1209 input_line_pointer = str = start_of_operands;
1210
1211 for (opindex_ptr = opcode->operands; *opindex_ptr != 0; opindex_ptr++)
1212 {
1213 const struct v850_operand * operand;
1214 char * hold;
1215 expressionS ex;
1216 bfd_reloc_code_real_type reloc;
1217
1218 if (next_opindex == 0)
1219 {
1220 operand = & v850_operands[ * opindex_ptr ];
1221 }
1222 else
1223 {
1224 operand = & v850_operands[ next_opindex ];
1225 next_opindex = 0;
1226 }
1227
1228 errmsg = NULL;
1229
1230 while (*str == ' ' || *str == ',' || *str == '[' || *str == ']')
1231 ++str;
1232
1233 if (operand->flags & V850_OPERAND_RELAX)
1234 relaxable = 1;
1235
1236 /* Gather the operand. */
1237 hold = input_line_pointer;
1238 input_line_pointer = str;
1239
1240 /* fprintf (stderr, "operand: %s index = %d, opcode = %s\n", input_line_pointer, opindex_ptr - opcode->operands, opcode->name ); */
1241
1242 /* lo(), hi(), hi0(), etc... */
1243 if ((reloc = v850_reloc_prefix (operand)) != BFD_RELOC_UNUSED)
1244 {
1245 expression (& ex);
1246
1247 if (ex.X_op == O_constant)
1248 {
1249 switch (reloc)
1250 {
1251 case BFD_RELOC_V850_ZDA_16_16_OFFSET:
1252 /* To cope with "not1 7, zdaoff(0xfffff006)[r0]" and the like. */
1253 /* Fall through. */
1254
1255 case BFD_RELOC_LO16:
1256 {
1257 /* Truncate, then sign extend the value. */
1258 ex.X_add_number = SEXT16 (ex.X_add_number);
1259 break;
1260 }
1261
1262 case BFD_RELOC_HI16:
1263 {
1264 /* Truncate, then sign extend the value. */
1265 ex.X_add_number = SEXT16 (ex.X_add_number >> 16);
1266 break;
1267 }
1268
1269 case BFD_RELOC_HI16_S:
1270 {
1271 /* Truncate, then sign extend the value. */
1272 int temp = (ex.X_add_number >> 16) & 0xffff;
1273
1274 temp += (ex.X_add_number >> 15) & 1;
1275
1276 ex.X_add_number = SEXT16 (temp);
1277 break;
1278 }
1279
1280 /* start-sanitize-v850e */
1281 case BFD_RELOC_32:
1282 if ((operand->flags & V850E_IMMEDIATE32) == 0)
1283 {
1284 errmsg = "use bigger instruction";
1285 goto error;
1286 }
1287
1288 extra_data_after_insn = true;
1289 extra_data_len = 4;
1290 extra_data = ex.X_add_number;
1291 ex.X_add_number = 0;
1292 break;
1293 /* end-sanitize-v850e */
1294
1295 default:
1296 fprintf (stderr, "reloc: %d\n", reloc);
1297 as_bad ("AAARG -> unhandled constant reloc");
1298 break;
1299 }
1300
1301 insn = v850_insert_operand (insn, operand, ex.X_add_number,
1302 (char *) NULL, 0);
1303 }
1304 else
1305 {
1306 if (reloc == BFD_RELOC_32)
1307 {
1308 if ((operand->flags & V850E_IMMEDIATE32) == 0)
1309 {
1310 errmsg = "use bigger instruction";
1311 goto error;
1312 }
1313
1314 extra_data_after_insn = true;
1315 extra_data_len = 4;
1316 extra_data = ex.X_add_number;
1317 ex.X_add_number = 0;
1318 }
1319
1320 if (fc > MAX_INSN_FIXUPS)
1321 as_fatal ("too many fixups");
1322
1323 fixups[ fc ].exp = ex;
1324 fixups[ fc ].opindex = * opindex_ptr;
1325 fixups[ fc ].reloc = reloc;
1326 fc++;
1327 }
1328 }
1329 else
1330 {
1331 errmsg = NULL;
1332
1333 if ((operand->flags & V850_OPERAND_REG) != 0)
1334 {
1335 if (!register_name (& ex))
1336 {
1337 errmsg = "invalid register name";
1338 }
1339
1340 if ((operand->flags & V850_NOT_R0)
1341 && ex.X_add_number == 0)
1342 {
1343 errmsg = "register r0 cannot be used here";
1344 }
1345 }
1346 else if ((operand->flags & V850_OPERAND_SRG) != 0)
1347 {
1348 if (!system_register_name (& ex, true))
1349 {
1350 errmsg = "invalid system register name";
1351 }
1352 }
1353 else if ((operand->flags & V850_OPERAND_EP) != 0)
1354 {
1355 char * start = input_line_pointer;
1356 char c = get_symbol_end ();
1357
1358 if (strcmp (start, "ep") != 0 && strcmp (start, "r30") != 0)
1359 {
1360 /* Put things back the way we found them. */
1361 *input_line_pointer = c;
1362 input_line_pointer = start;
1363 errmsg = "expected EP register";
1364 goto error;
1365 }
1366
1367 *input_line_pointer = c;
1368 str = input_line_pointer;
1369 input_line_pointer = hold;
1370
1371 while (*str == ' ' || *str == ',' || *str == '[' || *str == ']')
1372 ++str;
1373 continue;
1374 }
1375 else if ((operand->flags & V850_OPERAND_CC) != 0)
1376 {
1377 if (!cc_name (& ex))
1378 {
1379 errmsg = "invalid condition code name";
1380 }
1381 }
1382 /* start-sanitize-v850e */
1383 else if (operand->flags & V850E_PUSH_POP)
1384 {
1385 errmsg = parse_register_list (& insn, operand);
1386
1387 /* The parse_register_list() function has already done everything, so fake a dummy expression. */
1388 ex.X_op = O_constant;
1389 ex.X_add_number = 0;
1390 }
1391 else if (operand->flags & V850E_IMMEDIATE16)
1392 {
1393 expression (& ex);
1394
1395 if (ex.X_op != O_constant)
1396 errmsg = "constant expression expected";
1397 else if (ex.X_add_number & 0xffff0000)
1398 {
1399 if (ex.X_add_number & 0xffff)
1400 errmsg = "constant too big to fit into instruction";
1401 else if ((insn & 0x001fffc0) == 0x00130780)
1402 ex.X_add_number >>= 16;
1403 else
1404 errmsg = "constant too big to fit into instruction";
1405 }
1406
1407 extra_data_after_insn = true;
1408 extra_data_len = 2;
1409 extra_data = ex.X_add_number;
1410 ex.X_add_number = 0;
1411 }
1412 else if (operand->flags & V850E_IMMEDIATE32)
1413 {
1414 expression (& ex);
1415
1416 if (ex.X_op != O_constant)
1417 errmsg = "constant expression expected";
1418
1419 extra_data_after_insn = true;
1420 extra_data_len = 4;
1421 extra_data = ex.X_add_number;
1422 ex.X_add_number = 0;
1423 }
1424 /* end-sanitize-v850e */
1425 else if (register_name (&ex)
1426 && (operand->flags & V850_OPERAND_REG) == 0)
1427 {
1428 errmsg = "syntax error: register not expected";
1429 }
1430 else if (system_register_name (& ex, false)
1431 && (operand->flags & V850_OPERAND_SRG) == 0)
1432 {
1433 errmsg = "syntax error: system register not expected";
1434 }
1435 else if (cc_name (&ex)
1436 && (operand->flags & V850_OPERAND_CC) == 0)
1437 {
1438 errmsg = "syntax error: condition code not expected";
1439 }
1440 else
1441 {
1442 expression (& ex);
1443 /* start-sanitize-v850e */
1444 /* Special case:
1445 If we are assembling a MOV instruction (or a CALLT.... :-)
1446 and the immediate value does not fit into the bits available
1447 then create a fake error so that the next MOV instruction
1448 will be selected. This one has a 32 bit immediate field. */
1449
1450 if (((insn & 0x07e0) == 0x0200)
1451 && ex.X_op == O_constant
1452 && (ex.X_add_number < (- (1 << (operand->bits - 1))) || ex.X_add_number > ((1 << operand->bits) - 1)))
1453 errmsg = "use bigger instruction";
1454 /* end-sanitize-v850e */
1455 }
1456
1457 if (errmsg)
1458 goto error;
1459
1460 /* fprintf (stderr, "insn: %x, operand %d, op: %d, add_number: %d\n", insn, opindex_ptr - opcode->operands, ex.X_op, ex.X_add_number ); */
1461
1462 switch (ex.X_op)
1463 {
1464 case O_illegal:
1465 errmsg = "illegal operand";
1466 goto error;
1467 case O_absent:
1468 errmsg = "missing operand";
1469 goto error;
1470 case O_register:
1471 if ((operand->flags & (V850_OPERAND_REG | V850_OPERAND_SRG)) == 0)
1472 {
1473 errmsg = "invalid operand";
1474 goto error;
1475 }
1476 insn = v850_insert_operand (insn, operand, ex.X_add_number,
1477 (char *) NULL, 0);
1478 break;
1479
1480 case O_constant:
1481 insn = v850_insert_operand (insn, operand, ex.X_add_number,
1482 (char *) NULL, 0);
1483 break;
1484
1485 default:
1486 /* We need to generate a fixup for this expression. */
1487 if (fc >= MAX_INSN_FIXUPS)
1488 as_fatal ("too many fixups");
1489
1490 fixups[ fc ].exp = ex;
1491 fixups[ fc ].opindex = * opindex_ptr;
1492 fixups[ fc ].reloc = BFD_RELOC_UNUSED;
1493 ++fc;
1494 break;
1495 }
1496 }
1497
1498 str = input_line_pointer;
1499 input_line_pointer = hold;
1500
1501 while (*str == ' ' || *str == ',' || *str == '[' || *str == ']'
1502 || *str == ')')
1503 ++str;
1504 }
1505 match = 1;
1506
1507 error:
1508 if (match == 0)
1509 {
1510 next_opcode = opcode + 1;
1511 if (next_opcode->name != NULL && strcmp (next_opcode->name, opcode->name) == 0)
1512 {
1513 opcode = next_opcode;
1514 continue;
1515 }
1516
1517 as_bad (errmsg);
1518 ignore_rest_of_line ();
1519 input_line_pointer = saved_input_line_pointer;
1520 return;
1521 }
1522 break;
1523 }
1524
1525 while (isspace (*str))
1526 ++str;
1527
1528 if (*str != '\0')
1529 as_bad ("junk at end of line: `%s'", str);
1530
1531 input_line_pointer = str;
1532
1533 /* Write out the instruction.
1534
1535 Four byte insns have an opcode with the two high bits on. */
1536 if (relaxable && fc > 0)
1537 {
1538 f = frag_var (rs_machine_dependent, 6, 4, 0,
1539 fixups[0].exp.X_add_symbol,
1540 fixups[0].exp.X_add_number,
1541 (char *)fixups[0].opindex);
1542 insn_size = 2;
1543 md_number_to_chars (f, insn, insn_size);
1544 md_number_to_chars (f + 2, 0, 4);
1545 fc = 0;
1546 }
1547 else
1548 {
1549 if ((insn & 0x0600) == 0x0600)
1550 insn_size = 4;
1551 else
1552 insn_size = 2;
1553
1554 /* start-sanitize-v850e */
1555 /* Special case: 32 bit MOV */
1556 if ((insn & 0xffe0) == 0x0620)
1557 insn_size = 2;
1558 /* end-sanitize-v850e */
1559
1560 f = frag_more (insn_size);
1561
1562 md_number_to_chars (f, insn, insn_size);
1563
1564 if (extra_data_after_insn)
1565 {
1566 f = frag_more (extra_data_len);
1567
1568 md_number_to_chars (f, extra_data, extra_data_len);
1569
1570 extra_data_after_insn = false;
1571 }
1572 }
1573
1574 /* Create any fixups. At this point we do not use a
1575 bfd_reloc_code_real_type, but instead just use the
1576 BFD_RELOC_UNUSED plus the operand index. This lets us easily
1577 handle fixups for any operand type, although that is admittedly
1578 not a very exciting feature. We pick a BFD reloc type in
1579 md_apply_fix. */
1580 for (i = 0; i < fc; i++)
1581 {
1582 const struct v850_operand * operand;
1583 bfd_reloc_code_real_type reloc;
1584
1585 operand = & v850_operands[ fixups[i].opindex ];
1586
1587 reloc = fixups[i].reloc;
1588
1589 if (reloc != BFD_RELOC_UNUSED)
1590 {
1591 reloc_howto_type * reloc_howto = bfd_reloc_type_lookup (stdoutput, reloc);
1592 int size;
1593 int address;
1594 fixS * fixP;
1595
1596 if (!reloc_howto)
1597 abort();
1598
1599 size = bfd_get_reloc_size (reloc_howto);
1600
1601 if (size != 2 && size != 4) /* XXX this will abort on an R_V850_8 reloc - is this reloc actually used ? */
1602 abort();
1603
1604 address = (f - frag_now->fr_literal) + insn_size - size;
1605
1606 if (reloc == BFD_RELOC_32)
1607 {
1608 address += 2;
1609 }
1610
1611 fixP = fix_new_exp (frag_now, address, size,
1612 & fixups[i].exp,
1613 reloc_howto->pc_relative,
1614 reloc);
1615
1616 switch (reloc)
1617 {
1618 case BFD_RELOC_LO16:
1619 case BFD_RELOC_HI16:
1620 case BFD_RELOC_HI16_S:
1621 fixP->fx_no_overflow = 1;
1622 break;
1623 }
1624 }
1625 else
1626 {
1627 fix_new_exp (
1628 frag_now,
1629 f - frag_now->fr_literal, 4,
1630 & fixups[i].exp,
1631 1 /* FIXME: V850_OPERAND_RELATIVE ??? */,
1632 (bfd_reloc_code_real_type) (fixups[i].opindex + (int) BFD_RELOC_UNUSED)
1633 );
1634 }
1635 }
1636
1637 input_line_pointer = saved_input_line_pointer;
1638 }
1639
1640
1641 /* If while processing a fixup, a reloc really needs to be created */
1642 /* then it is done here. */
1643
1644 arelent *
1645 tc_gen_reloc (seg, fixp)
1646 asection * seg;
1647 fixS * fixp;
1648 {
1649 arelent * reloc;
1650
1651 reloc = (arelent *) xmalloc (sizeof (arelent));
1652 reloc->sym_ptr_ptr = & fixp->fx_addsy->bsym;
1653 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1654 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1655
1656 if (reloc->howto == (reloc_howto_type *) NULL)
1657 {
1658 as_bad_where (fixp->fx_file, fixp->fx_line,
1659 "reloc %d not supported by object file format", (int)fixp->fx_r_type);
1660
1661 xfree (reloc);
1662
1663 return NULL;
1664 }
1665
1666 reloc->addend = fixp->fx_addnumber;
1667
1668 return reloc;
1669 }
1670
1671 /* Assume everything will fit in two bytes, then expand as necessary. */
1672 int
1673 md_estimate_size_before_relax (fragp, seg)
1674 fragS * fragp;
1675 asection * seg;
1676 {
1677 fragp->fr_var = 4;
1678 return 2;
1679 }
1680
1681 long
1682 md_pcrel_from (fixp)
1683 fixS * fixp;
1684 {
1685 /* If the symbol is undefined, or in a section other than our own,
1686 then let the linker figure it out. */
1687 if (fixp->fx_addsy != (symbolS *) NULL && ! S_IS_DEFINED (fixp->fx_addsy))
1688 {
1689 /* The symbol is undefined. Let the linker figure it out. */
1690 return 0;
1691 }
1692 return fixp->fx_frag->fr_address + fixp->fx_where;
1693 }
1694
1695 int
1696 md_apply_fix3 (fixp, valuep, seg)
1697 fixS * fixp;
1698 valueT * valuep;
1699 segT seg;
1700 {
1701 valueT value;
1702 char * where;
1703
1704 if (fixp->fx_addsy == (symbolS *) NULL)
1705 {
1706 value = * valuep;
1707 fixp->fx_done = 1;
1708 }
1709 else if (fixp->fx_pcrel)
1710 value = * valuep;
1711 else
1712 {
1713 value = fixp->fx_offset;
1714 if (fixp->fx_subsy != (symbolS *) NULL)
1715 {
1716 if (S_GET_SEGMENT (fixp->fx_subsy) == absolute_section)
1717 value -= S_GET_VALUE (fixp->fx_subsy);
1718 else
1719 {
1720 /* We don't actually support subtracting a symbol. */
1721 as_bad_where (fixp->fx_file, fixp->fx_line,
1722 "expression too complex");
1723 }
1724 }
1725 }
1726
1727 if ((int) fixp->fx_r_type >= (int) BFD_RELOC_UNUSED)
1728 {
1729 int opindex;
1730 const struct v850_operand * operand;
1731 unsigned long insn;
1732
1733 opindex = (int) fixp->fx_r_type - (int) BFD_RELOC_UNUSED;
1734 operand = & v850_operands[ opindex ];
1735
1736 /* Fetch the instruction, insert the fully resolved operand
1737 value, and stuff the instruction back again.
1738
1739 Note the instruction has been stored in little endian
1740 format! */
1741 where = fixp->fx_frag->fr_literal + fixp->fx_where;
1742
1743 insn = bfd_getl32 ((unsigned char *) where);
1744 insn = v850_insert_operand (insn, operand, (offsetT) value,
1745 fixp->fx_file, fixp->fx_line);
1746 bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);
1747
1748 if (fixp->fx_done)
1749 {
1750 /* Nothing else to do here. */
1751 return 1;
1752 }
1753
1754 /* Determine a BFD reloc value based on the operand information.
1755 We are only prepared to turn a few of the operands into relocs. */
1756
1757 if (operand->bits == 22)
1758 fixp->fx_r_type = BFD_RELOC_V850_22_PCREL;
1759 else if (operand->bits == 9)
1760 fixp->fx_r_type = BFD_RELOC_V850_9_PCREL;
1761 else
1762 {
1763 /* fprintf (stderr, "bits: %d, insn: %x\n", operand->bits, insn); */
1764
1765 as_bad_where(fixp->fx_file, fixp->fx_line,
1766 "unresolved expression that must be resolved");
1767 fixp->fx_done = 1;
1768 return 1;
1769 }
1770 }
1771 else if (fixp->fx_done)
1772 {
1773 /* We still have to insert the value into memory! */
1774 where = fixp->fx_frag->fr_literal + fixp->fx_where;
1775 if (fixp->fx_size == 1)
1776 *where = value & 0xff;
1777 else if (fixp->fx_size == 2)
1778 bfd_putl16 (value & 0xffff, (unsigned char *) where);
1779 else if (fixp->fx_size == 4)
1780 bfd_putl32 (value, (unsigned char *) where);
1781 }
1782
1783 fixp->fx_addnumber = value;
1784 return 1;
1785 }
1786
1787 \f
1788 /* Insert an operand value into an instruction. */
1789
1790 static unsigned long
1791 v850_insert_operand (insn, operand, val, file, line)
1792 unsigned long insn;
1793 const struct v850_operand * operand;
1794 offsetT val;
1795 char *file;
1796 unsigned int line;
1797 {
1798 if (operand->insert)
1799 {
1800 const char * message = NULL;
1801
1802 insn = (*operand->insert) (insn, val, & message);
1803 if (message != NULL)
1804 {
1805 if (file == (char *) NULL)
1806 as_warn (message);
1807 else
1808 as_warn_where (file, line, message);
1809 }
1810 }
1811 else
1812 {
1813 if (operand->bits != 32)
1814 {
1815 long min, max;
1816 offsetT test;
1817
1818 if ((operand->flags & V850_OPERAND_SIGNED) != 0)
1819 {
1820 if (! warn_signed_overflows)
1821 max = (1 << operand->bits) - 1;
1822 else
1823 max = (1 << (operand->bits - 1)) - 1;
1824
1825 min = - (1 << (operand->bits - 1));
1826 }
1827 else
1828 {
1829 max = (1 << operand->bits) - 1;
1830
1831 if (! warn_unsigned_overflows)
1832 min = - (1 << (operand->bits - 1));
1833 else
1834 min = 0;
1835 }
1836
1837 test = val;
1838
1839 if (test < (offsetT) min || test > (offsetT) max)
1840 {
1841 const char * err = "operand out of range (%s not between %ld and %ld)";
1842 char buf[100];
1843
1844 sprint_value (buf, test);
1845 if (file == (char *) NULL)
1846 as_warn (err, buf, min, max);
1847 else
1848 as_warn_where (file, line, err, buf, min, max);
1849 }
1850 }
1851
1852 insn |= (((long) val & ((1 << operand->bits) - 1)) << operand->shift);
1853 }
1854
1855 return insn;
1856 }
1857
1858 /* Parse a cons expression. We have to handle hi(), lo(), etc
1859 on the v850. */
1860 void
1861 parse_cons_expression_v850 (exp)
1862 expressionS *exp;
1863 {
1864 /* See if there's a reloc prefix like hi() we have to handle. */
1865 hold_cons_reloc = v850_reloc_prefix (NULL);
1866
1867 /* Do normal expression parsing. */
1868 expression (exp);
1869 }
1870
1871 /* Create a fixup for a cons expression. If parse_cons_expression_v850
1872 found a reloc prefix, then we use that reloc, else we choose an
1873 appropriate one based on the size of the expression. */
1874 void
1875 cons_fix_new_v850 (frag, where, size, exp)
1876 fragS *frag;
1877 int where;
1878 int size;
1879 expressionS *exp;
1880 {
1881 if (hold_cons_reloc == BFD_RELOC_UNUSED)
1882 {
1883 if (size == 4)
1884 hold_cons_reloc = BFD_RELOC_32;
1885 if (size == 2)
1886 hold_cons_reloc = BFD_RELOC_16;
1887 if (size == 1)
1888 hold_cons_reloc = BFD_RELOC_8;
1889 }
1890
1891 if (exp != NULL)
1892 fix_new_exp (frag, where, size, exp, 0, hold_cons_reloc);
1893 else
1894 fix_new (frag, where, size, NULL, 0, 0, hold_cons_reloc);
1895 }