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