]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/config/tc-sparc.c
* config/tc-sparc.c (sparc_ip): Add default case to reloc switch.
[thirdparty/binutils-gdb.git] / gas / config / tc-sparc.c
1 /* tc-sparc.c -- Assemble for the SPARC
2 Copyright (C) 1989, 90-96, 97, 98, 1999 Free Software Foundation, Inc.
3 This file is part of GAS, the GNU Assembler.
4
5 GAS is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
9
10 GAS is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public
16 License along with GAS; see the file COPYING. If not, write
17 to the Free Software Foundation, 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
19
20 #include <stdio.h>
21 #include <ctype.h>
22
23 #include "as.h"
24 #include "subsegs.h"
25
26 #include "opcode/sparc.h"
27
28 #ifdef OBJ_ELF
29 #include "elf/sparc.h"
30 #endif
31
32 static struct sparc_arch *lookup_arch PARAMS ((char *));
33 static void init_default_arch PARAMS ((void));
34 static int sparc_ip PARAMS ((char *, const struct sparc_opcode **));
35 static int in_signed_range PARAMS ((bfd_signed_vma, bfd_signed_vma));
36 static int in_unsigned_range PARAMS ((bfd_vma, bfd_vma));
37 static int in_bitfield_range PARAMS ((bfd_signed_vma, bfd_signed_vma));
38 static int sparc_ffs PARAMS ((unsigned int));
39 static void synthetize_setuw PARAMS ((const struct sparc_opcode *));
40 static void synthetize_setsw PARAMS ((const struct sparc_opcode *));
41 static void synthetize_setx PARAMS ((const struct sparc_opcode *));
42 static bfd_vma BSR PARAMS ((bfd_vma, int));
43 static int cmp_reg_entry PARAMS ((const PTR, const PTR));
44 static int parse_keyword_arg PARAMS ((int (*) (const char *), char **, int *));
45 static int parse_const_expr_arg PARAMS ((char **, int *));
46 static int get_expression PARAMS ((char *str));
47
48 /* Default architecture. */
49 /* ??? The default value should be V8, but sparclite support was added
50 by making it the default. GCC now passes -Asparclite, so maybe sometime in
51 the future we can set this to V8. */
52 #ifndef DEFAULT_ARCH
53 #define DEFAULT_ARCH "sparclite"
54 #endif
55 static char *default_arch = DEFAULT_ARCH;
56
57 /* Non-zero if the initial values of `max_architecture' and `sparc_arch_size'
58 have been set. */
59 static int default_init_p;
60
61 /* Current architecture. We don't bump up unless necessary. */
62 static enum sparc_opcode_arch_val current_architecture = SPARC_OPCODE_ARCH_V6;
63
64 /* The maximum architecture level we can bump up to.
65 In a 32 bit environment, don't allow bumping up to v9 by default.
66 The native assembler works this way. The user is required to pass
67 an explicit argument before we'll create v9 object files. However, if
68 we don't see any v9 insns, a v8plus object file is not created. */
69 static enum sparc_opcode_arch_val max_architecture;
70
71 /* Either 32 or 64, selects file format. */
72 static int sparc_arch_size;
73 /* Initial (default) value, recorded separately in case a user option
74 changes the value before md_show_usage is called. */
75 static int default_arch_size;
76
77 #ifdef OBJ_ELF
78 /* The currently selected v9 memory model. Currently only used for
79 ELF. */
80 static enum { MM_TSO, MM_PSO, MM_RMO } sparc_memory_model = MM_RMO;
81 #endif
82
83 static int architecture_requested;
84 static int warn_on_bump;
85
86 /* If warn_on_bump and the needed architecture is higher than this
87 architecture, issue a warning. */
88 static enum sparc_opcode_arch_val warn_after_architecture;
89
90 /* Non-zero if we are generating PIC code. */
91 int sparc_pic_code;
92
93 /* Non-zero if we should give an error when misaligned data is seen. */
94 static int enforce_aligned_data;
95
96 extern int target_big_endian;
97
98 static int target_little_endian_data;
99
100 /* V9 and 86x have big and little endian data, but instructions are always big
101 endian. The sparclet has bi-endian support but both data and insns have
102 the same endianness. Global `target_big_endian' is used for data.
103 The following macro is used for instructions. */
104 #ifndef INSN_BIG_ENDIAN
105 #define INSN_BIG_ENDIAN (target_big_endian \
106 || default_arch_type == sparc86x \
107 || SPARC_OPCODE_ARCH_V9_P (max_architecture))
108 #endif
109
110 /* handle of the OPCODE hash table */
111 static struct hash_control *op_hash;
112
113 static int log2 PARAMS ((int));
114 static void s_data1 PARAMS ((void));
115 static void s_seg PARAMS ((int));
116 static void s_proc PARAMS ((int));
117 static void s_reserve PARAMS ((int));
118 static void s_common PARAMS ((int));
119 static void s_empty PARAMS ((int));
120 static void s_uacons PARAMS ((int));
121 static void s_ncons PARAMS ((int));
122
123 const pseudo_typeS md_pseudo_table[] =
124 {
125 {"align", s_align_bytes, 0}, /* Defaulting is invalid (0) */
126 {"common", s_common, 0},
127 {"empty", s_empty, 0},
128 {"global", s_globl, 0},
129 {"half", cons, 2},
130 {"nword", s_ncons, 0},
131 {"optim", s_ignore, 0},
132 {"proc", s_proc, 0},
133 {"reserve", s_reserve, 0},
134 {"seg", s_seg, 0},
135 {"skip", s_space, 0},
136 {"word", cons, 4},
137 {"xword", cons, 8},
138 {"uahalf", s_uacons, 2},
139 {"uaword", s_uacons, 4},
140 {"uaxword", s_uacons, 8},
141 #ifdef OBJ_ELF
142 /* these are specific to sparc/svr4 */
143 {"pushsection", obj_elf_section, 0},
144 {"popsection", obj_elf_previous, 0},
145 {"2byte", s_uacons, 2},
146 {"4byte", s_uacons, 4},
147 {"8byte", s_uacons, 8},
148 #endif
149 {NULL, 0, 0},
150 };
151
152 const int md_reloc_size = 12; /* Size of relocation record */
153
154 /* This array holds the chars that always start a comment. If the
155 pre-processor is disabled, these aren't very useful */
156 const char comment_chars[] = "!"; /* JF removed '|' from comment_chars */
157
158 /* This array holds the chars that only start a comment at the beginning of
159 a line. If the line seems to have the form '# 123 filename'
160 .line and .file directives will appear in the pre-processed output */
161 /* Note that input_file.c hand checks for '#' at the beginning of the
162 first line of the input file. This is because the compiler outputs
163 #NO_APP at the beginning of its output. */
164 /* Also note that comments started like this one will always
165 work if '/' isn't otherwise defined. */
166 const char line_comment_chars[] = "#";
167
168 const char line_separator_chars[] = "";
169
170 /* Chars that can be used to separate mant from exp in floating point nums */
171 const char EXP_CHARS[] = "eE";
172
173 /* Chars that mean this number is a floating point constant */
174 /* As in 0f12.456 */
175 /* or 0d1.2345e12 */
176 const char FLT_CHARS[] = "rRsSfFdDxXpP";
177
178 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
179 changed in read.c. Ideally it shouldn't have to know about it at all,
180 but nothing is ideal around here. */
181
182 #define isoctal(c) ((unsigned)((c) - '0') < '8')
183
184 struct sparc_it
185 {
186 char *error;
187 unsigned long opcode;
188 struct nlist *nlistp;
189 expressionS exp;
190 expressionS exp2;
191 int pcrel;
192 bfd_reloc_code_real_type reloc;
193 };
194
195 struct sparc_it the_insn, set_insn;
196
197 static void output_insn
198 PARAMS ((const struct sparc_opcode *, struct sparc_it *));
199 \f
200 /* Table of arguments to -A.
201 The sparc_opcode_arch table in sparc-opc.c is insufficient and incorrect
202 for this use. That table is for opcodes only. This table is for opcodes
203 and file formats. */
204
205 enum sparc_arch_types {v6, v7, v8, sparclet, sparclite, sparc86x, v8plus,
206 v8plusa, v9, v9a, v9_64};
207
208 static struct sparc_arch {
209 char *name;
210 char *opcode_arch;
211 enum sparc_arch_types arch_type;
212 /* Default word size, as specified during configuration.
213 A value of zero means can't be used to specify default architecture. */
214 int default_arch_size;
215 /* Allowable arg to -A? */
216 int user_option_p;
217 } sparc_arch_table[] = {
218 { "v6", "v6", v6, 0, 1 },
219 { "v7", "v7", v7, 0, 1 },
220 { "v8", "v8", v8, 32, 1 },
221 { "sparclet", "sparclet", sparclet, 32, 1 },
222 { "sparclite", "sparclite", sparclite, 32, 1 },
223 { "sparc86x", "sparclite", sparc86x, 32, 1 },
224 { "v8plus", "v9", v9, 0, 1 },
225 { "v8plusa", "v9a", v9, 0, 1 },
226 { "v9", "v9", v9, 0, 1 },
227 { "v9a", "v9a", v9, 0, 1 },
228 /* This exists to allow configure.in/Makefile.in to pass one
229 value to specify both the default machine and default word size. */
230 { "v9-64", "v9", v9, 64, 0 },
231 { NULL, NULL, v8, 0, 0 }
232 };
233
234 /* Variant of default_arch */
235 static enum sparc_arch_types default_arch_type;
236
237 static struct sparc_arch *
238 lookup_arch (name)
239 char *name;
240 {
241 struct sparc_arch *sa;
242
243 for (sa = &sparc_arch_table[0]; sa->name != NULL; sa++)
244 if (strcmp (sa->name, name) == 0)
245 break;
246 if (sa->name == NULL)
247 return NULL;
248 return sa;
249 }
250
251 /* Initialize the default opcode arch and word size from the default
252 architecture name. */
253
254 static void
255 init_default_arch ()
256 {
257 struct sparc_arch *sa = lookup_arch (default_arch);
258
259 if (sa == NULL
260 || sa->default_arch_size == 0)
261 as_fatal (_("Invalid default architecture, broken assembler."));
262
263 max_architecture = sparc_opcode_lookup_arch (sa->opcode_arch);
264 if (max_architecture == SPARC_OPCODE_ARCH_BAD)
265 as_fatal (_("Bad opcode table, broken assembler."));
266 default_arch_size = sparc_arch_size = sa->default_arch_size;
267 default_init_p = 1;
268 default_arch_type = sa->arch_type;
269 }
270
271 /* Called by TARGET_FORMAT. */
272
273 const char *
274 sparc_target_format ()
275 {
276 /* We don't get a chance to initialize anything before we're called,
277 so handle that now. */
278 if (! default_init_p)
279 init_default_arch ();
280
281 #ifdef OBJ_AOUT
282 #ifdef TE_NetBSD
283 return "a.out-sparc-netbsd";
284 #else
285 #ifdef TE_SPARCAOUT
286 if (target_big_endian)
287 return "a.out-sunos-big";
288 else if (default_arch_type == sparc86x && target_little_endian_data)
289 return "a.out-sunos-big";
290 else return "a.out-sparc-little";
291 #else
292 return "a.out-sunos-big";
293 #endif
294 #endif
295 #endif
296
297 #ifdef OBJ_BOUT
298 return "b.out.big";
299 #endif
300
301 #ifdef OBJ_COFF
302 #ifdef TE_LYNX
303 return "coff-sparc-lynx";
304 #else
305 return "coff-sparc";
306 #endif
307 #endif
308
309 #ifdef OBJ_ELF
310 return sparc_arch_size == 64 ? "elf64-sparc" : "elf32-sparc";
311 #endif
312
313 abort ();
314 }
315 \f
316 /*
317 * md_parse_option
318 * Invocation line includes a switch not recognized by the base assembler.
319 * See if it's a processor-specific option. These are:
320 *
321 * -bump
322 * Warn on architecture bumps. See also -A.
323 *
324 * -Av6, -Av7, -Av8, -Asparclite, -Asparclet
325 * Standard 32 bit architectures.
326 * -Av8plus, -Av8plusa
327 * Sparc64 in a 32 bit world.
328 * -Av9, -Av9a
329 * Sparc64 in either a 32 or 64 bit world (-32/-64 says which).
330 * This used to only mean 64 bits, but properly specifying it
331 * complicated gcc's ASM_SPECs, so now opcode selection is
332 * specified orthogonally to word size (except when specifying
333 * the default, but that is an internal implementation detail).
334 * -xarch=v8plus, -xarch=v8plusa
335 * Same as -Av8plus{,a}, for compatibility with Sun's assembler.
336 *
337 * Select the architecture and possibly the file format.
338 * Instructions or features not supported by the selected
339 * architecture cause fatal errors.
340 *
341 * The default is to start at v6, and bump the architecture up
342 * whenever an instruction is seen at a higher level. In 32 bit
343 * environments, v9 is not bumped up to, the user must pass
344 * -Av8plus{,a}.
345 *
346 * If -bump is specified, a warning is printing when bumping to
347 * higher levels.
348 *
349 * If an architecture is specified, all instructions must match
350 * that architecture. Any higher level instructions are flagged
351 * as errors. Note that in the 32 bit environment specifying
352 * -Av8plus does not automatically create a v8plus object file, a
353 * v9 insn must be seen.
354 *
355 * If both an architecture and -bump are specified, the
356 * architecture starts at the specified level, but bumps are
357 * warnings. Note that we can't set `current_architecture' to
358 * the requested level in this case: in the 32 bit environment,
359 * we still must avoid creating v8plus object files unless v9
360 * insns are seen.
361 *
362 * Note:
363 * Bumping between incompatible architectures is always an
364 * error. For example, from sparclite to v9.
365 */
366
367 #ifdef OBJ_ELF
368 CONST char *md_shortopts = "A:K:VQ:sq";
369 #else
370 #ifdef OBJ_AOUT
371 CONST char *md_shortopts = "A:k";
372 #else
373 CONST char *md_shortopts = "A:";
374 #endif
375 #endif
376 struct option md_longopts[] = {
377 #define OPTION_BUMP (OPTION_MD_BASE)
378 {"bump", no_argument, NULL, OPTION_BUMP},
379 #define OPTION_SPARC (OPTION_MD_BASE + 1)
380 {"sparc", no_argument, NULL, OPTION_SPARC},
381 #define OPTION_XARCH (OPTION_MD_BASE + 2)
382 {"xarch", required_argument, NULL, OPTION_XARCH},
383 #ifdef OBJ_ELF
384 #define OPTION_32 (OPTION_MD_BASE + 3)
385 {"32", no_argument, NULL, OPTION_32},
386 #define OPTION_64 (OPTION_MD_BASE + 4)
387 {"64", no_argument, NULL, OPTION_64},
388 #define OPTION_TSO (OPTION_MD_BASE + 5)
389 {"TSO", no_argument, NULL, OPTION_TSO},
390 #define OPTION_PSO (OPTION_MD_BASE + 6)
391 {"PSO", no_argument, NULL, OPTION_PSO},
392 #define OPTION_RMO (OPTION_MD_BASE + 7)
393 {"RMO", no_argument, NULL, OPTION_RMO},
394 #endif
395 #ifdef SPARC_BIENDIAN
396 #define OPTION_LITTLE_ENDIAN (OPTION_MD_BASE + 8)
397 {"EL", no_argument, NULL, OPTION_LITTLE_ENDIAN},
398 #define OPTION_BIG_ENDIAN (OPTION_MD_BASE + 9)
399 {"EB", no_argument, NULL, OPTION_BIG_ENDIAN},
400 #endif
401 #define OPTION_ENFORCE_ALIGNED_DATA (OPTION_MD_BASE + 10)
402 {"enforce-aligned-data", no_argument, NULL, OPTION_ENFORCE_ALIGNED_DATA},
403 #define OPTION_LITTLE_ENDIAN_DATA (OPTION_MD_BASE + 11)
404 {"little-endian-data", no_argument, NULL, OPTION_LITTLE_ENDIAN_DATA},
405 {NULL, no_argument, NULL, 0}
406 };
407 size_t md_longopts_size = sizeof(md_longopts);
408
409 int
410 md_parse_option (c, arg)
411 int c;
412 char *arg;
413 {
414 /* We don't get a chance to initialize anything before we're called,
415 so handle that now. */
416 if (! default_init_p)
417 init_default_arch ();
418
419 switch (c)
420 {
421 case OPTION_BUMP:
422 warn_on_bump = 1;
423 warn_after_architecture = SPARC_OPCODE_ARCH_V6;
424 break;
425
426 case OPTION_XARCH:
427 /* This is for compatibility with Sun's assembler. */
428 if (strcmp (arg, "v8plus") != 0
429 && strcmp (arg, "v8plusa") != 0)
430 {
431 as_bad (_("invalid architecture -xarch=%s"), arg);
432 return 0;
433 }
434
435 /* fall through */
436
437 case 'A':
438 {
439 struct sparc_arch *sa;
440 enum sparc_opcode_arch_val opcode_arch;
441
442 sa = lookup_arch (arg);
443 if (sa == NULL
444 || ! sa->user_option_p)
445 {
446 as_bad (_("invalid architecture -A%s"), arg);
447 return 0;
448 }
449
450 opcode_arch = sparc_opcode_lookup_arch (sa->opcode_arch);
451 if (opcode_arch == SPARC_OPCODE_ARCH_BAD)
452 as_fatal (_("Bad opcode table, broken assembler."));
453
454 max_architecture = opcode_arch;
455 architecture_requested = 1;
456 }
457 break;
458
459 case OPTION_SPARC:
460 /* Ignore -sparc, used by SunOS make default .s.o rule. */
461 break;
462
463 case OPTION_ENFORCE_ALIGNED_DATA:
464 enforce_aligned_data = 1;
465 break;
466
467 #ifdef SPARC_BIENDIAN
468 case OPTION_LITTLE_ENDIAN:
469 target_big_endian = 0;
470 if (default_arch_type != sparclet)
471 as_fatal ("This target does not support -EL");
472 break;
473 case OPTION_LITTLE_ENDIAN_DATA:
474 target_little_endian_data = 1;
475 target_big_endian = 0;
476 if (default_arch_type != sparc86x
477 && default_arch_type != v9)
478 as_fatal ("This target does not support --little-endian-data");
479 break;
480 case OPTION_BIG_ENDIAN:
481 target_big_endian = 1;
482 break;
483 #endif
484
485 #ifdef OBJ_AOUT
486 case 'k':
487 sparc_pic_code = 1;
488 break;
489 #endif
490
491 #ifdef OBJ_ELF
492 case OPTION_32:
493 case OPTION_64:
494 {
495 const char **list, **l;
496
497 sparc_arch_size = c == OPTION_32 ? 32 : 64;
498 list = bfd_target_list ();
499 for (l = list; *l != NULL; l++)
500 {
501 if (sparc_arch_size == 32)
502 {
503 if (strcmp (*l, "elf32-sparc") == 0)
504 break;
505 }
506 else
507 {
508 if (strcmp (*l, "elf64-sparc") == 0)
509 break;
510 }
511 }
512 if (*l == NULL)
513 as_fatal (_("No compiled in support for %d bit object file format"),
514 sparc_arch_size);
515 free (list);
516 }
517 break;
518
519 case OPTION_TSO:
520 sparc_memory_model = MM_TSO;
521 break;
522
523 case OPTION_PSO:
524 sparc_memory_model = MM_PSO;
525 break;
526
527 case OPTION_RMO:
528 sparc_memory_model = MM_RMO;
529 break;
530
531 case 'V':
532 print_version_id ();
533 break;
534
535 case 'Q':
536 /* Qy - do emit .comment
537 Qn - do not emit .comment */
538 break;
539
540 case 's':
541 /* use .stab instead of .stab.excl */
542 break;
543
544 case 'q':
545 /* quick -- native assembler does fewer checks */
546 break;
547
548 case 'K':
549 if (strcmp (arg, "PIC") != 0)
550 as_warn (_("Unrecognized option following -K"));
551 else
552 sparc_pic_code = 1;
553 break;
554 #endif
555
556 default:
557 return 0;
558 }
559
560 return 1;
561 }
562
563 void
564 md_show_usage (stream)
565 FILE *stream;
566 {
567 const struct sparc_arch *arch;
568
569 /* We don't get a chance to initialize anything before we're called,
570 so handle that now. */
571 if (! default_init_p)
572 init_default_arch ();
573
574 fprintf(stream, _("SPARC options:\n"));
575 for (arch = &sparc_arch_table[0]; arch->name; arch++)
576 {
577 if (arch != &sparc_arch_table[0])
578 fprintf (stream, " | ");
579 if (arch->user_option_p)
580 fprintf (stream, "-A%s", arch->name);
581 }
582 fprintf (stream, _("\n-xarch=v8plus | -xarch=v8plusa\n"));
583 fprintf (stream, _("\
584 specify variant of SPARC architecture\n\
585 -bump warn when assembler switches architectures\n\
586 -sparc ignored\n\
587 --enforce-aligned-data force .long, etc., to be aligned correctly\n"));
588 #ifdef OBJ_AOUT
589 fprintf (stream, _("\
590 -k generate PIC\n"));
591 #endif
592 #ifdef OBJ_ELF
593 fprintf (stream, _("\
594 -32 create 32 bit object file\n\
595 -64 create 64 bit object file\n"));
596 fprintf (stream, _("\
597 [default is %d]\n"), default_arch_size);
598 fprintf (stream, _("\
599 -TSO use Total Store Ordering\n\
600 -PSO use Partial Store Ordering\n\
601 -RMO use Relaxed Memory Ordering\n"));
602 fprintf (stream, _("\
603 [default is %s]\n"), (default_arch_size == 64) ? "RMO" : "TSO");
604 fprintf (stream, _("\
605 -KPIC generate PIC\n\
606 -V print assembler version number\n\
607 -q ignored\n\
608 -Qy, -Qn ignored\n\
609 -s ignored\n"));
610 #endif
611 #ifdef SPARC_BIENDIAN
612 fprintf (stream, _("\
613 -EL generate code for a little endian machine\n\
614 -EB generate code for a big endian machine\n\
615 --little-endian-data generate code for a machine having big endian\n\
616 instructions and little endian data."));
617 #endif
618 }
619 \f
620 /* native operand size opcode translation */
621 struct
622 {
623 char *name;
624 char *name32;
625 char *name64;
626 } native_op_table[] =
627 {
628 {"ldn", "ld", "ldx"},
629 {"ldna", "lda", "ldxa"},
630 {"stn", "st", "stx"},
631 {"stna", "sta", "stxa"},
632 {"slln", "sll", "sllx"},
633 {"srln", "srl", "srlx"},
634 {"sran", "sra", "srax"},
635 {"casn", "cas", "casx"},
636 {"casna", "casa", "casxa"},
637 {"clrn", "clr", "clrx"},
638 {NULL, NULL, NULL},
639 };
640 \f
641 /* sparc64 priviledged registers */
642
643 struct priv_reg_entry
644 {
645 char *name;
646 int regnum;
647 };
648
649 struct priv_reg_entry priv_reg_table[] =
650 {
651 {"tpc", 0},
652 {"tnpc", 1},
653 {"tstate", 2},
654 {"tt", 3},
655 {"tick", 4},
656 {"tba", 5},
657 {"pstate", 6},
658 {"tl", 7},
659 {"pil", 8},
660 {"cwp", 9},
661 {"cansave", 10},
662 {"canrestore", 11},
663 {"cleanwin", 12},
664 {"otherwin", 13},
665 {"wstate", 14},
666 {"fq", 15},
667 {"ver", 31},
668 {"", -1}, /* end marker */
669 };
670
671 /* v9a specific asrs */
672
673 struct priv_reg_entry v9a_asr_table[] =
674 {
675 {"tick_cmpr", 23},
676 {"softint", 22},
677 {"set_softint", 20},
678 {"pic", 17},
679 {"pcr", 16},
680 {"gsr", 19},
681 {"dcr", 18},
682 {"clear_softint", 21},
683 {"", -1}, /* end marker */
684 };
685
686 static int
687 cmp_reg_entry (parg, qarg)
688 const PTR parg;
689 const PTR qarg;
690 {
691 const struct priv_reg_entry *p = (const struct priv_reg_entry *) parg;
692 const struct priv_reg_entry *q = (const struct priv_reg_entry *) qarg;
693
694 return strcmp (q->name, p->name);
695 }
696 \f
697 /* This function is called once, at assembler startup time. It should
698 set up all the tables, etc. that the MD part of the assembler will need. */
699
700 void
701 md_begin ()
702 {
703 register const char *retval = NULL;
704 int lose = 0;
705 register unsigned int i = 0;
706
707 /* We don't get a chance to initialize anything before md_parse_option
708 is called, and it may not be called, so handle default initialization
709 now if not already done. */
710 if (! default_init_p)
711 init_default_arch ();
712
713 op_hash = hash_new ();
714
715 while (i < (unsigned int) sparc_num_opcodes)
716 {
717 const char *name = sparc_opcodes[i].name;
718 retval = hash_insert (op_hash, name, (PTR) &sparc_opcodes[i]);
719 if (retval != NULL)
720 {
721 as_bad (_("Internal error: can't hash `%s': %s\n"),
722 sparc_opcodes[i].name, retval);
723 lose = 1;
724 }
725 do
726 {
727 if (sparc_opcodes[i].match & sparc_opcodes[i].lose)
728 {
729 as_bad (_("Internal error: losing opcode: `%s' \"%s\"\n"),
730 sparc_opcodes[i].name, sparc_opcodes[i].args);
731 lose = 1;
732 }
733 ++i;
734 }
735 while (i < (unsigned int) sparc_num_opcodes
736 && !strcmp (sparc_opcodes[i].name, name));
737 }
738
739 for (i = 0; native_op_table[i].name; i++)
740 {
741 const struct sparc_opcode *insn;
742 char *name = sparc_arch_size == 32 ? native_op_table[i].name32 :
743 native_op_table[i].name64;
744 insn = (struct sparc_opcode *)hash_find (op_hash, name);
745 if (insn == NULL)
746 {
747 as_bad (_("Internal error: can't find opcode `%s' for `%s'\n"),
748 name, native_op_table[i].name);
749 lose = 1;
750 }
751 else
752 {
753 retval = hash_insert (op_hash, native_op_table[i].name, (PTR) insn);
754 if (retval != NULL)
755 {
756 as_bad (_("Internal error: can't hash `%s': %s\n"),
757 sparc_opcodes[i].name, retval);
758 lose = 1;
759 }
760 }
761 }
762
763 if (lose)
764 as_fatal (_("Broken assembler. No assembly attempted."));
765
766 qsort (priv_reg_table, sizeof (priv_reg_table) / sizeof (priv_reg_table[0]),
767 sizeof (priv_reg_table[0]), cmp_reg_entry);
768
769 /* If -bump, record the architecture level at which we start issuing
770 warnings. The behaviour is different depending upon whether an
771 architecture was explicitly specified. If it wasn't, we issue warnings
772 for all upwards bumps. If it was, we don't start issuing warnings until
773 we need to bump beyond the requested architecture or when we bump between
774 conflicting architectures. */
775
776 if (warn_on_bump
777 && architecture_requested)
778 {
779 /* `max_architecture' records the requested architecture.
780 Issue warnings if we go above it. */
781 warn_after_architecture = max_architecture;
782
783 /* Find the highest architecture level that doesn't conflict with
784 the requested one. */
785 for (max_architecture = SPARC_OPCODE_ARCH_MAX;
786 max_architecture > warn_after_architecture;
787 --max_architecture)
788 if (! SPARC_OPCODE_CONFLICT_P (max_architecture,
789 warn_after_architecture))
790 break;
791 }
792 }
793
794 /* Called after all assembly has been done. */
795
796 void
797 sparc_md_end ()
798 {
799 if (sparc_arch_size == 64)
800 {
801 if (current_architecture == SPARC_OPCODE_ARCH_V9A)
802 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v9a);
803 else
804 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v9);
805 }
806 else
807 {
808 if (current_architecture == SPARC_OPCODE_ARCH_V9)
809 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v8plus);
810 else if (current_architecture == SPARC_OPCODE_ARCH_V9A)
811 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_v8plusa);
812 else if (current_architecture == SPARC_OPCODE_ARCH_SPARCLET)
813 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_sparclet);
814 else if (default_arch_type == sparc86x && target_little_endian_data)
815 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc_sparclite_le);
816 else
817 {
818 /* The sparclite is treated like a normal sparc. Perhaps it shouldn't
819 be but for now it is (since that's the way it's always been
820 treated). */
821 bfd_set_arch_mach (stdoutput, bfd_arch_sparc, bfd_mach_sparc);
822 }
823 }
824 }
825 \f
826 /* Return non-zero if VAL is in the range -(MAX+1) to MAX. */
827
828 static INLINE int
829 in_signed_range (val, max)
830 bfd_signed_vma val, max;
831 {
832 if (max <= 0)
833 abort ();
834 /* Sign-extend the value from the architecture word size, so that
835 0xffffffff is always considered -1 on sparc32. */
836 if (sparc_arch_size == 32)
837 {
838 bfd_signed_vma sign = (bfd_signed_vma)1 << 31;
839 val = ((val & 0xffffffff) ^ sign) - sign;
840 }
841 if (val > max)
842 return 0;
843 if (val < ~max)
844 return 0;
845 return 1;
846 }
847
848 /* Return non-zero if VAL is in the range 0 to MAX. */
849
850 static INLINE int
851 in_unsigned_range (val, max)
852 bfd_vma val, max;
853 {
854 if (val > max)
855 return 0;
856 return 1;
857 }
858
859 /* Return non-zero if VAL is in the range -(MAX/2+1) to MAX.
860 (e.g. -15 to +31). */
861
862 static INLINE int
863 in_bitfield_range (val, max)
864 bfd_signed_vma val, max;
865 {
866 if (max <= 0)
867 abort ();
868 if (val > max)
869 return 0;
870 if (val < ~(max >> 1))
871 return 0;
872 return 1;
873 }
874
875 static int
876 sparc_ffs (mask)
877 unsigned int mask;
878 {
879 int i;
880
881 if (mask == 0)
882 return -1;
883
884 for (i = 0; (mask & 1) == 0; ++i)
885 mask >>= 1;
886 return i;
887 }
888
889 /* Implement big shift right. */
890 static bfd_vma
891 BSR (val, amount)
892 bfd_vma val;
893 int amount;
894 {
895 if (sizeof (bfd_vma) <= 4 && amount >= 32)
896 as_fatal (_("Support for 64-bit arithmetic not compiled in."));
897 return val >> amount;
898 }
899 \f
900 /* For communication between sparc_ip and get_expression. */
901 static char *expr_end;
902
903 /* Values for `special_case'.
904 Instructions that require wierd handling because they're longer than
905 4 bytes. */
906 #define SPECIAL_CASE_NONE 0
907 #define SPECIAL_CASE_SET 1
908 #define SPECIAL_CASE_SETSW 2
909 #define SPECIAL_CASE_SETX 3
910 /* FIXME: sparc-opc.c doesn't have necessary "S" trigger to enable this. */
911 #define SPECIAL_CASE_FDIV 4
912
913 /* Bit masks of various insns. */
914 #define NOP_INSN 0x01000000
915 #define OR_INSN 0x80100000
916 #define XOR_INSN 0x80180000
917 #define FMOVS_INSN 0x81A00020
918 #define SETHI_INSN 0x01000000
919 #define SLLX_INSN 0x81281000
920 #define SRA_INSN 0x81380000
921
922 /* The last instruction to be assembled. */
923 static const struct sparc_opcode *last_insn;
924 /* The assembled opcode of `last_insn'. */
925 static unsigned long last_opcode;
926 \f
927 /* Handle the set and setuw synthetic instructions. */
928 static void
929 synthetize_setuw (insn)
930 const struct sparc_opcode *insn;
931 {
932 int need_hi22_p = 0;
933 int rd = (the_insn.opcode & RD (~0)) >> 25;
934
935 if (the_insn.exp.X_op == O_constant)
936 {
937 if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
938 {
939 if (sizeof(offsetT) > 4
940 && (the_insn.exp.X_add_number < 0
941 || the_insn.exp.X_add_number > (offsetT) 0xffffffff))
942 as_warn (_("set: number not in 0..4294967295 range"));
943 }
944 else
945 {
946 if (sizeof(offsetT) > 4
947 && (the_insn.exp.X_add_number < -(offsetT) 0x80000000
948 || the_insn.exp.X_add_number > (offsetT) 0xffffffff))
949 as_warn (_("set: number not in -2147483648..4294967295 range"));
950 the_insn.exp.X_add_number = (int)the_insn.exp.X_add_number;
951 }
952 }
953
954 /* See if operand is absolute and small; skip sethi if so. */
955 if (the_insn.exp.X_op != O_constant
956 || the_insn.exp.X_add_number >= (1 << 12)
957 || the_insn.exp.X_add_number < -(1 << 12))
958 {
959 the_insn.opcode = (SETHI_INSN | RD (rd)
960 | ((the_insn.exp.X_add_number >> 10)
961 & (the_insn.exp.X_op == O_constant ? 0x3fffff : 0)));
962 the_insn.reloc = (the_insn.exp.X_op != O_constant
963 ? BFD_RELOC_HI22
964 : BFD_RELOC_NONE);
965 output_insn (insn, &the_insn);
966 need_hi22_p = 1;
967 }
968
969 /* See if operand has no low-order bits; skip OR if so. */
970 if (the_insn.exp.X_op != O_constant
971 || (need_hi22_p && (the_insn.exp.X_add_number & 0x3FF) != 0)
972 || ! need_hi22_p)
973 {
974 the_insn.opcode = (OR_INSN | (need_hi22_p ? RS1 (rd) : 0)
975 | RD (rd) | IMMED
976 | (the_insn.exp.X_add_number
977 & (the_insn.exp.X_op != O_constant ? 0 :
978 need_hi22_p ? 0x3ff : 0x1fff)));
979 the_insn.reloc = (the_insn.exp.X_op != O_constant
980 ? BFD_RELOC_LO10
981 : BFD_RELOC_NONE);
982 output_insn (insn, &the_insn);
983 }
984 }
985
986 /* Handle the setsw synthetic instruction. */
987 static void
988 synthetize_setsw (insn)
989 const struct sparc_opcode *insn;
990 {
991 int low32, rd, opc;
992
993 rd = (the_insn.opcode & RD (~0)) >> 25;
994
995 if (the_insn.exp.X_op != O_constant)
996 {
997 synthetize_setuw (insn);
998
999 /* Need to sign extend it. */
1000 the_insn.opcode = (SRA_INSN | RS1 (rd) | RD (rd));
1001 the_insn.reloc = BFD_RELOC_NONE;
1002 output_insn (insn, &the_insn);
1003 return;
1004 }
1005
1006 if (sizeof(offsetT) > 4
1007 && (the_insn.exp.X_add_number < -(offsetT) 0x80000000
1008 || the_insn.exp.X_add_number > (offsetT) 0xffffffff))
1009 as_warn (_("setsw: number not in -2147483648..4294967295 range"));
1010
1011 low32 = the_insn.exp.X_add_number;
1012
1013 if (low32 >= 0)
1014 {
1015 synthetize_setuw (insn);
1016 return;
1017 }
1018
1019 opc = OR_INSN;
1020
1021 the_insn.reloc = BFD_RELOC_NONE;
1022 /* See if operand is absolute and small; skip sethi if so. */
1023 if (low32 < -(1 << 12))
1024 {
1025 the_insn.opcode = (SETHI_INSN | RD (rd)
1026 | (((~the_insn.exp.X_add_number) >> 10) & 0x3fffff));
1027 output_insn (insn, &the_insn);
1028 low32 = 0x1c00 | (low32 & 0x3ff);
1029 opc = RS1 (rd) | XOR_INSN;
1030 }
1031
1032 the_insn.opcode = (opc | RD (rd) | IMMED
1033 | (low32 & 0x1fff));
1034 output_insn (insn, &the_insn);
1035 }
1036
1037 /* Handle the setsw synthetic instruction. */
1038 static void
1039 synthetize_setx (insn)
1040 const struct sparc_opcode *insn;
1041 {
1042 int upper32, lower32;
1043 int tmpreg = (the_insn.opcode & RS1 (~0)) >> 14;
1044 int dstreg = (the_insn.opcode & RD (~0)) >> 25;
1045 int upper_dstreg;
1046 int need_hh22_p = 0, need_hm10_p = 0, need_hi22_p = 0, need_lo10_p = 0;
1047 int need_xor10_p = 0;
1048
1049 #define SIGNEXT32(x) ((((x) & 0xffffffff) ^ 0x80000000) - 0x80000000)
1050 lower32 = SIGNEXT32 (the_insn.exp.X_add_number);
1051 upper32 = SIGNEXT32 (BSR (the_insn.exp.X_add_number, 32));
1052 #undef SIGNEXT32
1053
1054 upper_dstreg = tmpreg;
1055 /* The tmp reg should not be the dst reg. */
1056 if (tmpreg == dstreg)
1057 as_warn (_("setx: temporary register same as destination register"));
1058
1059 /* ??? Obviously there are other optimizations we can do
1060 (e.g. sethi+shift for 0x1f0000000) and perhaps we shouldn't be
1061 doing some of these. Later. If you do change things, try to
1062 change all of this to be table driven as well. */
1063 /* What to output depends on the number if it's constant.
1064 Compute that first, then output what we've decided upon. */
1065 if (the_insn.exp.X_op != O_constant)
1066 {
1067 if (sparc_arch_size == 32)
1068 {
1069 /* When arch size is 32, we want setx to be equivalent
1070 to setuw for anything but constants. */
1071 the_insn.exp.X_add_number &= 0xffffffff;
1072 synthetize_setuw (insn);
1073 return;
1074 }
1075 need_hh22_p = need_hm10_p = need_hi22_p = need_lo10_p = 1;
1076 lower32 = 0; upper32 = 0;
1077 }
1078 else
1079 {
1080 /* Reset X_add_number, we've extracted it as upper32/lower32.
1081 Otherwise fixup_segment will complain about not being able to
1082 write an 8 byte number in a 4 byte field. */
1083 the_insn.exp.X_add_number = 0;
1084
1085 /* Only need hh22 if `or' insn can't handle constant. */
1086 if (upper32 < -(1 << 12) || upper32 >= (1 << 12))
1087 need_hh22_p = 1;
1088
1089 /* Does bottom part (after sethi) have bits? */
1090 if ((need_hh22_p && (upper32 & 0x3ff) != 0)
1091 /* No hh22, but does upper32 still have bits we can't set
1092 from lower32? */
1093 || (! need_hh22_p && upper32 != 0 && upper32 != -1))
1094 need_hm10_p = 1;
1095
1096 /* If the lower half is all zero, we build the upper half directly
1097 into the dst reg. */
1098 if (lower32 != 0
1099 /* Need lower half if number is zero or 0xffffffff00000000. */
1100 || (! need_hh22_p && ! need_hm10_p))
1101 {
1102 /* No need for sethi if `or' insn can handle constant. */
1103 if (lower32 < -(1 << 12) || lower32 >= (1 << 12)
1104 /* Note that we can't use a negative constant in the `or'
1105 insn unless the upper 32 bits are all ones. */
1106 || (lower32 < 0 && upper32 != -1)
1107 || (lower32 >= 0 && upper32 == -1))
1108 need_hi22_p = 1;
1109
1110 if (need_hi22_p && upper32 == -1)
1111 need_xor10_p = 1;
1112
1113 /* Does bottom part (after sethi) have bits? */
1114 else if ((need_hi22_p && (lower32 & 0x3ff) != 0)
1115 /* No sethi. */
1116 || (! need_hi22_p && (lower32 & 0x1fff) != 0)
1117 /* Need `or' if we didn't set anything else. */
1118 || (! need_hi22_p && ! need_hh22_p && ! need_hm10_p))
1119 need_lo10_p = 1;
1120 }
1121 else
1122 /* Output directly to dst reg if lower 32 bits are all zero. */
1123 upper_dstreg = dstreg;
1124 }
1125
1126 if (!upper_dstreg && dstreg)
1127 as_warn (_("setx: illegal temporary register g0"));
1128
1129 if (need_hh22_p)
1130 {
1131 the_insn.opcode = (SETHI_INSN | RD (upper_dstreg)
1132 | ((upper32 >> 10) & 0x3fffff));
1133 the_insn.reloc = (the_insn.exp.X_op != O_constant
1134 ? BFD_RELOC_SPARC_HH22 : BFD_RELOC_NONE);
1135 output_insn (insn, &the_insn);
1136 }
1137
1138 if (need_hi22_p)
1139 {
1140 the_insn.opcode = (SETHI_INSN | RD (dstreg)
1141 | (((need_xor10_p ? ~lower32 : lower32)
1142 >> 10) & 0x3fffff));
1143 the_insn.reloc = (the_insn.exp.X_op != O_constant
1144 ? BFD_RELOC_SPARC_LM22 : BFD_RELOC_NONE);
1145 output_insn (insn, &the_insn);
1146 }
1147
1148 if (need_hm10_p)
1149 {
1150 the_insn.opcode = (OR_INSN
1151 | (need_hh22_p ? RS1 (upper_dstreg) : 0)
1152 | RD (upper_dstreg)
1153 | IMMED
1154 | (upper32 & (need_hh22_p ? 0x3ff : 0x1fff)));
1155 the_insn.reloc = (the_insn.exp.X_op != O_constant
1156 ? BFD_RELOC_SPARC_HM10 : BFD_RELOC_NONE);
1157 output_insn (insn, &the_insn);
1158 }
1159
1160 if (need_lo10_p)
1161 {
1162 /* FIXME: One nice optimization to do here is to OR the low part
1163 with the highpart if hi22 isn't needed and the low part is
1164 positive. */
1165 the_insn.opcode = (OR_INSN | (need_hi22_p ? RS1 (dstreg) : 0)
1166 | RD (dstreg)
1167 | IMMED
1168 | (lower32 & (need_hi22_p ? 0x3ff : 0x1fff)));
1169 the_insn.reloc = (the_insn.exp.X_op != O_constant
1170 ? BFD_RELOC_LO10 : BFD_RELOC_NONE);
1171 output_insn (insn, &the_insn);
1172 }
1173
1174 /* If we needed to build the upper part, shift it into place. */
1175 if (need_hh22_p || need_hm10_p)
1176 {
1177 the_insn.opcode = (SLLX_INSN | RS1 (upper_dstreg) | RD (upper_dstreg)
1178 | IMMED | 32);
1179 the_insn.reloc = BFD_RELOC_NONE;
1180 output_insn (insn, &the_insn);
1181 }
1182
1183 /* To get -1 in upper32, we do sethi %hi(~x), r; xor r, -0x400 | x, r. */
1184 if (need_xor10_p)
1185 {
1186 the_insn.opcode = (XOR_INSN | RS1 (dstreg) | RD (dstreg) | IMMED
1187 | 0x1c00 | (lower32 & 0x3ff));
1188 the_insn.reloc = BFD_RELOC_NONE;
1189 output_insn (insn, &the_insn);
1190 }
1191
1192 /* If we needed to build both upper and lower parts, OR them together. */
1193 else if ((need_hh22_p || need_hm10_p) && (need_hi22_p || need_lo10_p))
1194 {
1195 the_insn.opcode = (OR_INSN | RS1 (dstreg) | RS2 (upper_dstreg)
1196 | RD (dstreg));
1197 the_insn.reloc = BFD_RELOC_NONE;
1198 output_insn (insn, &the_insn);
1199 }
1200 }
1201 \f
1202 /* Main entry point to assemble one instruction. */
1203
1204 void
1205 md_assemble (str)
1206 char *str;
1207 {
1208 const struct sparc_opcode *insn;
1209 int special_case;
1210
1211 know (str);
1212 special_case = sparc_ip (str, &insn);
1213
1214 /* We warn about attempts to put a floating point branch in a delay slot,
1215 unless the delay slot has been annulled. */
1216 if (insn != NULL
1217 && last_insn != NULL
1218 && (insn->flags & F_FBR) != 0
1219 && (last_insn->flags & F_DELAYED) != 0
1220 /* ??? This test isn't completely accurate. We assume anything with
1221 F_{UNBR,CONDBR,FBR} set is annullable. */
1222 && ((last_insn->flags & (F_UNBR | F_CONDBR | F_FBR)) == 0
1223 || (last_opcode & ANNUL) == 0))
1224 as_warn (_("FP branch in delay slot"));
1225
1226 /* SPARC before v9 requires a nop instruction between a floating
1227 point instruction and a floating point branch. We insert one
1228 automatically, with a warning. */
1229 if (max_architecture < SPARC_OPCODE_ARCH_V9
1230 && insn != NULL
1231 && last_insn != NULL
1232 && (insn->flags & F_FBR) != 0
1233 && (last_insn->flags & F_FLOAT) != 0)
1234 {
1235 struct sparc_it nop_insn;
1236
1237 nop_insn.opcode = NOP_INSN;
1238 nop_insn.reloc = BFD_RELOC_NONE;
1239 output_insn (insn, &nop_insn);
1240 as_warn (_("FP branch preceded by FP instruction; NOP inserted"));
1241 }
1242
1243 switch (special_case)
1244 {
1245 case SPECIAL_CASE_NONE:
1246 /* normal insn */
1247 output_insn (insn, &the_insn);
1248 break;
1249
1250 case SPECIAL_CASE_SETSW:
1251 synthetize_setsw (insn);
1252 break;
1253
1254 case SPECIAL_CASE_SET:
1255 synthetize_setuw (insn);
1256 break;
1257
1258 case SPECIAL_CASE_SETX:
1259 synthetize_setx (insn);
1260 break;
1261
1262 case SPECIAL_CASE_FDIV:
1263 {
1264 int rd = (the_insn.opcode >> 25) & 0x1f;
1265
1266 output_insn (insn, &the_insn);
1267
1268 /* According to information leaked from Sun, the "fdiv" instructions
1269 on early SPARC machines would produce incorrect results sometimes.
1270 The workaround is to add an fmovs of the destination register to
1271 itself just after the instruction. This was true on machines
1272 with Weitek 1165 float chips, such as the Sun-4/260 and /280. */
1273 assert (the_insn.reloc == BFD_RELOC_NONE);
1274 the_insn.opcode = FMOVS_INSN | rd | RD (rd);
1275 output_insn (insn, &the_insn);
1276 return;
1277 }
1278
1279 default:
1280 as_fatal (_("failed special case insn sanity check"));
1281 }
1282 }
1283
1284 /* Subroutine of md_assemble to do the actual parsing. */
1285
1286 static int
1287 sparc_ip (str, pinsn)
1288 char *str;
1289 const struct sparc_opcode **pinsn;
1290 {
1291 char *error_message = "";
1292 char *s;
1293 const char *args;
1294 char c;
1295 const struct sparc_opcode *insn;
1296 char *argsStart;
1297 unsigned long opcode;
1298 unsigned int mask = 0;
1299 int match = 0;
1300 int comma = 0;
1301 int v9_arg_p;
1302 int special_case = SPECIAL_CASE_NONE;
1303
1304 s = str;
1305 if (islower ((unsigned char) *s))
1306 {
1307 do
1308 ++s;
1309 while (islower ((unsigned char) *s) || isdigit ((unsigned char) *s));
1310 }
1311
1312 switch (*s)
1313 {
1314 case '\0':
1315 break;
1316
1317 case ',':
1318 comma = 1;
1319
1320 /*FALLTHROUGH */
1321
1322 case ' ':
1323 *s++ = '\0';
1324 break;
1325
1326 default:
1327 as_fatal (_("Unknown opcode: `%s'"), str);
1328 }
1329 insn = (struct sparc_opcode *) hash_find (op_hash, str);
1330 *pinsn = insn;
1331 if (insn == NULL)
1332 {
1333 as_bad (_("Unknown opcode: `%s'"), str);
1334 return special_case;
1335 }
1336 if (comma)
1337 {
1338 *--s = ',';
1339 }
1340
1341 argsStart = s;
1342 for (;;)
1343 {
1344 opcode = insn->match;
1345 memset (&the_insn, '\0', sizeof (the_insn));
1346 the_insn.reloc = BFD_RELOC_NONE;
1347 v9_arg_p = 0;
1348
1349 /*
1350 * Build the opcode, checking as we go to make
1351 * sure that the operands match
1352 */
1353 for (args = insn->args;; ++args)
1354 {
1355 switch (*args)
1356 {
1357 case 'K':
1358 {
1359 int kmask = 0;
1360
1361 /* Parse a series of masks. */
1362 if (*s == '#')
1363 {
1364 while (*s == '#')
1365 {
1366 int mask;
1367
1368 if (! parse_keyword_arg (sparc_encode_membar, &s,
1369 &mask))
1370 {
1371 error_message = _(": invalid membar mask name");
1372 goto error;
1373 }
1374 kmask |= mask;
1375 while (*s == ' ') { ++s; continue; }
1376 if (*s == '|' || *s == '+')
1377 ++s;
1378 while (*s == ' ') { ++s; continue; }
1379 }
1380 }
1381 else
1382 {
1383 if (! parse_const_expr_arg (&s, &kmask))
1384 {
1385 error_message = _(": invalid membar mask expression");
1386 goto error;
1387 }
1388 if (kmask < 0 || kmask > 127)
1389 {
1390 error_message = _(": invalid membar mask number");
1391 goto error;
1392 }
1393 }
1394
1395 opcode |= MEMBAR (kmask);
1396 continue;
1397 }
1398
1399 case '*':
1400 {
1401 int fcn = 0;
1402
1403 /* Parse a prefetch function. */
1404 if (*s == '#')
1405 {
1406 if (! parse_keyword_arg (sparc_encode_prefetch, &s, &fcn))
1407 {
1408 error_message = _(": invalid prefetch function name");
1409 goto error;
1410 }
1411 }
1412 else
1413 {
1414 if (! parse_const_expr_arg (&s, &fcn))
1415 {
1416 error_message = _(": invalid prefetch function expression");
1417 goto error;
1418 }
1419 if (fcn < 0 || fcn > 31)
1420 {
1421 error_message = _(": invalid prefetch function number");
1422 goto error;
1423 }
1424 }
1425 opcode |= RD (fcn);
1426 continue;
1427 }
1428
1429 case '!':
1430 case '?':
1431 /* Parse a sparc64 privileged register. */
1432 if (*s == '%')
1433 {
1434 struct priv_reg_entry *p = priv_reg_table;
1435 unsigned int len = 9999999; /* init to make gcc happy */
1436
1437 s += 1;
1438 while (p->name[0] > s[0])
1439 p++;
1440 while (p->name[0] == s[0])
1441 {
1442 len = strlen (p->name);
1443 if (strncmp (p->name, s, len) == 0)
1444 break;
1445 p++;
1446 }
1447 if (p->name[0] != s[0])
1448 {
1449 error_message = _(": unrecognizable privileged register");
1450 goto error;
1451 }
1452 if (*args == '?')
1453 opcode |= (p->regnum << 14);
1454 else
1455 opcode |= (p->regnum << 25);
1456 s += len;
1457 continue;
1458 }
1459 else
1460 {
1461 error_message = _(": unrecognizable privileged register");
1462 goto error;
1463 }
1464
1465 case '_':
1466 case '/':
1467 /* Parse a v9a ancillary state register. */
1468 if (*s == '%')
1469 {
1470 struct priv_reg_entry *p = v9a_asr_table;
1471 unsigned int len = 9999999; /* init to make gcc happy */
1472
1473 s += 1;
1474 while (p->name[0] > s[0])
1475 p++;
1476 while (p->name[0] == s[0])
1477 {
1478 len = strlen (p->name);
1479 if (strncmp (p->name, s, len) == 0)
1480 break;
1481 p++;
1482 }
1483 if (p->name[0] != s[0])
1484 {
1485 error_message = _(": unrecognizable v9a ancillary state register");
1486 goto error;
1487 }
1488 if (*args == '/' && (p->regnum == 20 || p->regnum == 21))
1489 {
1490 error_message = _(": rd on write only ancillary state register");
1491 goto error;
1492 }
1493 if (*args == '/')
1494 opcode |= (p->regnum << 14);
1495 else
1496 opcode |= (p->regnum << 25);
1497 s += len;
1498 continue;
1499 }
1500 else
1501 {
1502 error_message = _(": unrecognizable v9a ancillary state register");
1503 goto error;
1504 }
1505
1506 case 'M':
1507 case 'm':
1508 if (strncmp (s, "%asr", 4) == 0)
1509 {
1510 s += 4;
1511
1512 if (isdigit ((unsigned char) *s))
1513 {
1514 long num = 0;
1515
1516 while (isdigit ((unsigned char) *s))
1517 {
1518 num = num * 10 + *s - '0';
1519 ++s;
1520 }
1521
1522 if (current_architecture >= SPARC_OPCODE_ARCH_V9)
1523 {
1524 if (num < 16 || 31 < num)
1525 {
1526 error_message = _(": asr number must be between 16 and 31");
1527 goto error;
1528 }
1529 }
1530 else
1531 {
1532 if (num < 0 || 31 < num)
1533 {
1534 error_message = _(": asr number must be between 0 and 31");
1535 goto error;
1536 }
1537 }
1538
1539 opcode |= (*args == 'M' ? RS1 (num) : RD (num));
1540 continue;
1541 }
1542 else
1543 {
1544 error_message = _(": expecting %asrN");
1545 goto error;
1546 }
1547 } /* if %asr */
1548 break;
1549
1550 case 'I':
1551 the_insn.reloc = BFD_RELOC_SPARC_11;
1552 goto immediate;
1553
1554 case 'j':
1555 the_insn.reloc = BFD_RELOC_SPARC_10;
1556 goto immediate;
1557
1558 case 'X':
1559 /* V8 systems don't understand BFD_RELOC_SPARC_5. */
1560 if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
1561 the_insn.reloc = BFD_RELOC_SPARC_5;
1562 else
1563 the_insn.reloc = BFD_RELOC_SPARC13;
1564 /* These fields are unsigned, but for upward compatibility,
1565 allow negative values as well. */
1566 goto immediate;
1567
1568 case 'Y':
1569 /* V8 systems don't understand BFD_RELOC_SPARC_6. */
1570 if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
1571 the_insn.reloc = BFD_RELOC_SPARC_6;
1572 else
1573 the_insn.reloc = BFD_RELOC_SPARC13;
1574 /* These fields are unsigned, but for upward compatibility,
1575 allow negative values as well. */
1576 goto immediate;
1577
1578 case 'k':
1579 the_insn.reloc = /* RELOC_WDISP2_14 */ BFD_RELOC_SPARC_WDISP16;
1580 the_insn.pcrel = 1;
1581 goto immediate;
1582
1583 case 'G':
1584 the_insn.reloc = BFD_RELOC_SPARC_WDISP19;
1585 the_insn.pcrel = 1;
1586 goto immediate;
1587
1588 case 'N':
1589 if (*s == 'p' && s[1] == 'n')
1590 {
1591 s += 2;
1592 continue;
1593 }
1594 break;
1595
1596 case 'T':
1597 if (*s == 'p' && s[1] == 't')
1598 {
1599 s += 2;
1600 continue;
1601 }
1602 break;
1603
1604 case 'z':
1605 if (*s == ' ')
1606 {
1607 ++s;
1608 }
1609 if (strncmp (s, "%icc", 4) == 0)
1610 {
1611 s += 4;
1612 continue;
1613 }
1614 break;
1615
1616 case 'Z':
1617 if (*s == ' ')
1618 {
1619 ++s;
1620 }
1621 if (strncmp (s, "%xcc", 4) == 0)
1622 {
1623 s += 4;
1624 continue;
1625 }
1626 break;
1627
1628 case '6':
1629 if (*s == ' ')
1630 {
1631 ++s;
1632 }
1633 if (strncmp (s, "%fcc0", 5) == 0)
1634 {
1635 s += 5;
1636 continue;
1637 }
1638 break;
1639
1640 case '7':
1641 if (*s == ' ')
1642 {
1643 ++s;
1644 }
1645 if (strncmp (s, "%fcc1", 5) == 0)
1646 {
1647 s += 5;
1648 continue;
1649 }
1650 break;
1651
1652 case '8':
1653 if (*s == ' ')
1654 {
1655 ++s;
1656 }
1657 if (strncmp (s, "%fcc2", 5) == 0)
1658 {
1659 s += 5;
1660 continue;
1661 }
1662 break;
1663
1664 case '9':
1665 if (*s == ' ')
1666 {
1667 ++s;
1668 }
1669 if (strncmp (s, "%fcc3", 5) == 0)
1670 {
1671 s += 5;
1672 continue;
1673 }
1674 break;
1675
1676 case 'P':
1677 if (strncmp (s, "%pc", 3) == 0)
1678 {
1679 s += 3;
1680 continue;
1681 }
1682 break;
1683
1684 case 'W':
1685 if (strncmp (s, "%tick", 5) == 0)
1686 {
1687 s += 5;
1688 continue;
1689 }
1690 break;
1691
1692 case '\0': /* end of args */
1693 if (*s == '\0')
1694 {
1695 match = 1;
1696 }
1697 break;
1698
1699 case '+':
1700 if (*s == '+')
1701 {
1702 ++s;
1703 continue;
1704 }
1705 if (*s == '-')
1706 {
1707 continue;
1708 }
1709 break;
1710
1711 case '[': /* these must match exactly */
1712 case ']':
1713 case ',':
1714 case ' ':
1715 if (*s++ == *args)
1716 continue;
1717 break;
1718
1719 case '#': /* must be at least one digit */
1720 if (isdigit ((unsigned char) *s++))
1721 {
1722 while (isdigit ((unsigned char) *s))
1723 {
1724 ++s;
1725 }
1726 continue;
1727 }
1728 break;
1729
1730 case 'C': /* coprocessor state register */
1731 if (strncmp (s, "%csr", 4) == 0)
1732 {
1733 s += 4;
1734 continue;
1735 }
1736 break;
1737
1738 case 'b': /* next operand is a coprocessor register */
1739 case 'c':
1740 case 'D':
1741 if (*s++ == '%' && *s++ == 'c' && isdigit ((unsigned char) *s))
1742 {
1743 mask = *s++;
1744 if (isdigit ((unsigned char) *s))
1745 {
1746 mask = 10 * (mask - '0') + (*s++ - '0');
1747 if (mask >= 32)
1748 {
1749 break;
1750 }
1751 }
1752 else
1753 {
1754 mask -= '0';
1755 }
1756 switch (*args)
1757 {
1758
1759 case 'b':
1760 opcode |= mask << 14;
1761 continue;
1762
1763 case 'c':
1764 opcode |= mask;
1765 continue;
1766
1767 case 'D':
1768 opcode |= mask << 25;
1769 continue;
1770 }
1771 }
1772 break;
1773
1774 case 'r': /* next operand must be a register */
1775 case 'O':
1776 case '1':
1777 case '2':
1778 case 'd':
1779 if (*s++ == '%')
1780 {
1781 switch (c = *s++)
1782 {
1783
1784 case 'f': /* frame pointer */
1785 if (*s++ == 'p')
1786 {
1787 mask = 0x1e;
1788 break;
1789 }
1790 goto error;
1791
1792 case 'g': /* global register */
1793 c = *s++;
1794 if (isoctal (c))
1795 {
1796 mask = c - '0';
1797 break;
1798 }
1799 goto error;
1800
1801 case 'i': /* in register */
1802 c = *s++;
1803 if (isoctal (c))
1804 {
1805 mask = c - '0' + 24;
1806 break;
1807 }
1808 goto error;
1809
1810 case 'l': /* local register */
1811 c = *s++;
1812 if (isoctal (c))
1813 {
1814 mask = (c - '0' + 16);
1815 break;
1816 }
1817 goto error;
1818
1819 case 'o': /* out register */
1820 c = *s++;
1821 if (isoctal (c))
1822 {
1823 mask = (c - '0' + 8);
1824 break;
1825 }
1826 goto error;
1827
1828 case 's': /* stack pointer */
1829 if (*s++ == 'p')
1830 {
1831 mask = 0xe;
1832 break;
1833 }
1834 goto error;
1835
1836 case 'r': /* any register */
1837 if (!isdigit ((unsigned char) (c = *s++)))
1838 {
1839 goto error;
1840 }
1841 /* FALLTHROUGH */
1842 case '0':
1843 case '1':
1844 case '2':
1845 case '3':
1846 case '4':
1847 case '5':
1848 case '6':
1849 case '7':
1850 case '8':
1851 case '9':
1852 if (isdigit ((unsigned char) *s))
1853 {
1854 if ((c = 10 * (c - '0') + (*s++ - '0')) >= 32)
1855 {
1856 goto error;
1857 }
1858 }
1859 else
1860 {
1861 c -= '0';
1862 }
1863 mask = c;
1864 break;
1865
1866 default:
1867 goto error;
1868 }
1869
1870 /* Got the register, now figure out where
1871 it goes in the opcode. */
1872 switch (*args)
1873 {
1874 case '1':
1875 opcode |= mask << 14;
1876 continue;
1877
1878 case '2':
1879 opcode |= mask;
1880 continue;
1881
1882 case 'd':
1883 opcode |= mask << 25;
1884 continue;
1885
1886 case 'r':
1887 opcode |= (mask << 25) | (mask << 14);
1888 continue;
1889
1890 case 'O':
1891 opcode |= (mask << 25) | (mask << 0);
1892 continue;
1893 }
1894 }
1895 break;
1896
1897 case 'e': /* next operand is a floating point register */
1898 case 'v':
1899 case 'V':
1900
1901 case 'f':
1902 case 'B':
1903 case 'R':
1904
1905 case 'g':
1906 case 'H':
1907 case 'J':
1908 {
1909 char format;
1910
1911 if (*s++ == '%'
1912 && ((format = *s) == 'f')
1913 && isdigit ((unsigned char) *++s))
1914 {
1915 for (mask = 0; isdigit ((unsigned char) *s); ++s)
1916 {
1917 mask = 10 * mask + (*s - '0');
1918 } /* read the number */
1919
1920 if ((*args == 'v'
1921 || *args == 'B'
1922 || *args == 'H')
1923 && (mask & 1))
1924 {
1925 break;
1926 } /* register must be even numbered */
1927
1928 if ((*args == 'V'
1929 || *args == 'R'
1930 || *args == 'J')
1931 && (mask & 3))
1932 {
1933 break;
1934 } /* register must be multiple of 4 */
1935
1936 if (mask >= 64)
1937 {
1938 if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
1939 error_message = _(": There are only 64 f registers; [0-63]");
1940 else
1941 error_message = _(": There are only 32 f registers; [0-31]");
1942 goto error;
1943 } /* on error */
1944 else if (mask >= 32)
1945 {
1946 if (SPARC_OPCODE_ARCH_V9_P (max_architecture))
1947 {
1948 v9_arg_p = 1;
1949 mask -= 31; /* wrap high bit */
1950 }
1951 else
1952 {
1953 error_message = _(": There are only 32 f registers; [0-31]");
1954 goto error;
1955 }
1956 }
1957 }
1958 else
1959 {
1960 break;
1961 } /* if not an 'f' register. */
1962
1963 switch (*args)
1964 {
1965 case 'v':
1966 case 'V':
1967 case 'e':
1968 opcode |= RS1 (mask);
1969 continue;
1970
1971
1972 case 'f':
1973 case 'B':
1974 case 'R':
1975 opcode |= RS2 (mask);
1976 continue;
1977
1978 case 'g':
1979 case 'H':
1980 case 'J':
1981 opcode |= RD (mask);
1982 continue;
1983 } /* pack it in. */
1984
1985 know (0);
1986 break;
1987 } /* float arg */
1988
1989 case 'F':
1990 if (strncmp (s, "%fsr", 4) == 0)
1991 {
1992 s += 4;
1993 continue;
1994 }
1995 break;
1996
1997 case '0': /* 64 bit immediate (set, setsw, setx insn) */
1998 the_insn.reloc = BFD_RELOC_NONE; /* reloc handled elsewhere */
1999 goto immediate;
2000
2001 case 'l': /* 22 bit PC relative immediate */
2002 the_insn.reloc = BFD_RELOC_SPARC_WDISP22;
2003 the_insn.pcrel = 1;
2004 goto immediate;
2005
2006 case 'L': /* 30 bit immediate */
2007 the_insn.reloc = BFD_RELOC_32_PCREL_S2;
2008 the_insn.pcrel = 1;
2009 goto immediate;
2010
2011 case 'h':
2012 case 'n': /* 22 bit immediate */
2013 the_insn.reloc = BFD_RELOC_SPARC22;
2014 goto immediate;
2015
2016 case 'i': /* 13 bit immediate */
2017 the_insn.reloc = BFD_RELOC_SPARC13;
2018
2019 /* fallthrough */
2020
2021 immediate:
2022 if (*s == ' ')
2023 s++;
2024
2025 {
2026 char *s1;
2027 char *op_arg = NULL;
2028 expressionS op_exp;
2029 bfd_reloc_code_real_type old_reloc = the_insn.reloc;
2030
2031 /* Check for %hi, etc. */
2032 if (*s == '%')
2033 {
2034 static const struct ops {
2035 /* The name as it appears in assembler. */
2036 char *name;
2037 /* strlen (name), precomputed for speed */
2038 int len;
2039 /* The reloc this pseudo-op translates to. */
2040 int reloc;
2041 /* Non-zero if for v9 only. */
2042 int v9_p;
2043 /* Non-zero if can be used in pc-relative contexts. */
2044 int pcrel_p;/*FIXME:wip*/
2045 } ops[] = {
2046 /* hix/lox must appear before hi/lo so %hix won't be
2047 mistaken for %hi. */
2048 { "hix", 3, BFD_RELOC_SPARC_HIX22, 1, 0 },
2049 { "lox", 3, BFD_RELOC_SPARC_LOX10, 1, 0 },
2050 { "hi", 2, BFD_RELOC_HI22, 0, 1 },
2051 { "lo", 2, BFD_RELOC_LO10, 0, 1 },
2052 { "hh", 2, BFD_RELOC_SPARC_HH22, 1, 1 },
2053 { "hm", 2, BFD_RELOC_SPARC_HM10, 1, 1 },
2054 { "lm", 2, BFD_RELOC_SPARC_LM22, 1, 1 },
2055 { "h44", 3, BFD_RELOC_SPARC_H44, 1, 0 },
2056 { "m44", 3, BFD_RELOC_SPARC_M44, 1, 0 },
2057 { "l44", 3, BFD_RELOC_SPARC_L44, 1, 0 },
2058 { "uhi", 3, BFD_RELOC_SPARC_HH22, 1, 0 },
2059 { "ulo", 3, BFD_RELOC_SPARC_HM10, 1, 0 },
2060 { NULL }
2061 };
2062 const struct ops *o;
2063
2064 for (o = ops; o->name; o++)
2065 if (strncmp (s + 1, o->name, o->len) == 0)
2066 break;
2067 if (o->name == NULL)
2068 break;
2069
2070 if (s[o->len + 1] != '(')
2071 {
2072 as_bad (_("Illegal operands: %%%s requires arguments in ()"), o->name);
2073 return special_case;
2074 }
2075
2076 op_arg = o->name;
2077 the_insn.reloc = o->reloc;
2078 s += o->len + 2;
2079 v9_arg_p = o->v9_p;
2080 }
2081
2082 /* Note that if the get_expression() fails, we will still
2083 have created U entries in the symbol table for the
2084 'symbols' in the input string. Try not to create U
2085 symbols for registers, etc. */
2086
2087 /* This stuff checks to see if the expression ends in
2088 +%reg. If it does, it removes the register from
2089 the expression, and re-sets 's' to point to the
2090 right place. */
2091
2092 if (op_arg)
2093 {
2094 int npar = 0;
2095
2096 for (s1 = s; *s1 && *s1 != ',' && *s1 != ']'; s1++)
2097 if (*s1 == '(')
2098 npar++;
2099 else if (*s1 == ')')
2100 {
2101 if (!npar)
2102 break;
2103 npar--;
2104 }
2105
2106 if (*s1 != ')')
2107 {
2108 as_bad (_("Illegal operands: %%%s requires arguments in ()"), op_arg);
2109 return special_case;
2110 }
2111
2112 *s1 = '\0';
2113 (void) get_expression (s);
2114 *s1 = ')';
2115 s = s1 + 1;
2116 if (*s == ',' || *s == ']' || !*s)
2117 continue;
2118 if (*s != '+' && *s != '-')
2119 {
2120 as_bad (_("Illegal operands: Can't do arithmetics other than + and - involving %%%s()"), op_arg);
2121 return special_case;
2122 }
2123 *s1 = '0';
2124 s = s1;
2125 op_exp = the_insn.exp;
2126 memset (&the_insn.exp, 0, sizeof(the_insn.exp));
2127 }
2128
2129 for (s1 = s; *s1 && *s1 != ',' && *s1 != ']'; s1++) ;
2130
2131 if (s1 != s && isdigit ((unsigned char) s1[-1]))
2132 {
2133 if (s1[-2] == '%' && s1[-3] == '+')
2134 s1 -= 3;
2135 else if (strchr ("goli0123456789", s1[-2]) && s1[-3] == '%' && s1[-4] == '+')
2136 s1 -= 4;
2137 else
2138 s1 = NULL;
2139 if (s1)
2140 {
2141 *s1 = '\0';
2142 (void) get_expression (s);
2143 *s1 = '+';
2144 if (op_arg)
2145 *s = ')';
2146 s = s1;
2147 }
2148 }
2149 else
2150 s1 = NULL;
2151
2152 if (!s1)
2153 {
2154 (void) get_expression (s);
2155 if (op_arg)
2156 *s = ')';
2157 s = expr_end;
2158 }
2159
2160 if (op_arg)
2161 {
2162 the_insn.exp2 = the_insn.exp;
2163 the_insn.exp = op_exp;
2164 if (the_insn.exp2.X_op == O_absent)
2165 the_insn.exp2.X_op = O_illegal;
2166 else if (the_insn.exp.X_op == O_absent)
2167 {
2168 the_insn.exp = the_insn.exp2;
2169 the_insn.exp2.X_op = O_illegal;
2170 }
2171 else if (the_insn.exp.X_op == O_constant)
2172 {
2173 valueT val = the_insn.exp.X_add_number;
2174 switch (the_insn.reloc)
2175 {
2176 default:
2177 break;
2178
2179 case BFD_RELOC_SPARC_HH22:
2180 val = BSR (val, 32);
2181 /* intentional fallthrough */
2182
2183 case BFD_RELOC_SPARC_LM22:
2184 case BFD_RELOC_HI22:
2185 val = (val >> 10) & 0x3fffff;
2186 break;
2187
2188 case BFD_RELOC_SPARC_HM10:
2189 val = BSR (val, 32);
2190 /* intentional fallthrough */
2191
2192 case BFD_RELOC_LO10:
2193 val &= 0x3ff;
2194 break;
2195
2196 case BFD_RELOC_SPARC_H44:
2197 val >>= 22;
2198 val &= 0x3fffff;
2199 break;
2200
2201 case BFD_RELOC_SPARC_M44:
2202 val >>= 12;
2203 val &= 0x3ff;
2204 break;
2205
2206 case BFD_RELOC_SPARC_L44:
2207 val &= 0xfff;
2208 break;
2209
2210 case BFD_RELOC_SPARC_HIX22:
2211 val = ~ val;
2212 val = (val >> 10) & 0x3fffff;
2213 break;
2214
2215 case BFD_RELOC_SPARC_LOX10:
2216 val = (val & 0x3ff) | 0x1c00;
2217 break;
2218 }
2219 the_insn.exp = the_insn.exp2;
2220 the_insn.exp.X_add_number += val;
2221 the_insn.exp2.X_op = O_illegal;
2222 the_insn.reloc = old_reloc;
2223 }
2224 else if (the_insn.exp2.X_op != O_constant)
2225 {
2226 as_bad (_("Illegal operands: Can't add non-constant expression to %%%s()"), op_arg);
2227 return special_case;
2228 }
2229 else
2230 {
2231 if (1 || old_reloc != BFD_RELOC_SPARC13
2232 || the_insn.reloc != BFD_RELOC_LO10
2233 || sparc_arch_size != 64
2234 || sparc_pic_code)
2235 {
2236 as_bad (_("Illegal operands: Can't do arithmetics involving %%%s() of a relocatable symbol"), op_arg);
2237 return special_case;
2238 }
2239 the_insn.reloc = BFD_RELOC_SPARC_OLO10;
2240 }
2241 }
2242 }
2243 /* Check for constants that don't require emitting a reloc. */
2244 if (the_insn.exp.X_op == O_constant
2245 && the_insn.exp.X_add_symbol == 0
2246 && the_insn.exp.X_op_symbol == 0)
2247 {
2248 /* For pc-relative call instructions, we reject
2249 constants to get better code. */
2250 if (the_insn.pcrel
2251 && the_insn.reloc == BFD_RELOC_32_PCREL_S2
2252 && in_signed_range (the_insn.exp.X_add_number, 0x3fff))
2253 {
2254 error_message = _(": PC-relative operand can't be a constant");
2255 goto error;
2256 }
2257
2258 /* Constants that won't fit are checked in md_apply_fix3
2259 and bfd_install_relocation.
2260 ??? It would be preferable to install the constants
2261 into the insn here and save having to create a fixS
2262 for each one. There already exists code to handle
2263 all the various cases (e.g. in md_apply_fix3 and
2264 bfd_install_relocation) so duplicating all that code
2265 here isn't right. */
2266 }
2267
2268 continue;
2269
2270 case 'a':
2271 if (*s++ == 'a')
2272 {
2273 opcode |= ANNUL;
2274 continue;
2275 }
2276 break;
2277
2278 case 'A':
2279 {
2280 int asi = 0;
2281
2282 /* Parse an asi. */
2283 if (*s == '#')
2284 {
2285 if (! parse_keyword_arg (sparc_encode_asi, &s, &asi))
2286 {
2287 error_message = _(": invalid ASI name");
2288 goto error;
2289 }
2290 }
2291 else
2292 {
2293 if (! parse_const_expr_arg (&s, &asi))
2294 {
2295 error_message = _(": invalid ASI expression");
2296 goto error;
2297 }
2298 if (asi < 0 || asi > 255)
2299 {
2300 error_message = _(": invalid ASI number");
2301 goto error;
2302 }
2303 }
2304 opcode |= ASI (asi);
2305 continue;
2306 } /* alternate space */
2307
2308 case 'p':
2309 if (strncmp (s, "%psr", 4) == 0)
2310 {
2311 s += 4;
2312 continue;
2313 }
2314 break;
2315
2316 case 'q': /* floating point queue */
2317 if (strncmp (s, "%fq", 3) == 0)
2318 {
2319 s += 3;
2320 continue;
2321 }
2322 break;
2323
2324 case 'Q': /* coprocessor queue */
2325 if (strncmp (s, "%cq", 3) == 0)
2326 {
2327 s += 3;
2328 continue;
2329 }
2330 break;
2331
2332 case 'S':
2333 if (strcmp (str, "set") == 0
2334 || strcmp (str, "setuw") == 0)
2335 {
2336 special_case = SPECIAL_CASE_SET;
2337 continue;
2338 }
2339 else if (strcmp (str, "setsw") == 0)
2340 {
2341 special_case = SPECIAL_CASE_SETSW;
2342 continue;
2343 }
2344 else if (strcmp (str, "setx") == 0)
2345 {
2346 special_case = SPECIAL_CASE_SETX;
2347 continue;
2348 }
2349 else if (strncmp (str, "fdiv", 4) == 0)
2350 {
2351 special_case = SPECIAL_CASE_FDIV;
2352 continue;
2353 }
2354 break;
2355
2356 case 'o':
2357 if (strncmp (s, "%asi", 4) != 0)
2358 break;
2359 s += 4;
2360 continue;
2361
2362 case 's':
2363 if (strncmp (s, "%fprs", 5) != 0)
2364 break;
2365 s += 5;
2366 continue;
2367
2368 case 'E':
2369 if (strncmp (s, "%ccr", 4) != 0)
2370 break;
2371 s += 4;
2372 continue;
2373
2374 case 't':
2375 if (strncmp (s, "%tbr", 4) != 0)
2376 break;
2377 s += 4;
2378 continue;
2379
2380 case 'w':
2381 if (strncmp (s, "%wim", 4) != 0)
2382 break;
2383 s += 4;
2384 continue;
2385
2386 case 'x':
2387 {
2388 char *push = input_line_pointer;
2389 expressionS e;
2390
2391 input_line_pointer = s;
2392 expression (&e);
2393 if (e.X_op == O_constant)
2394 {
2395 int n = e.X_add_number;
2396 if (n != e.X_add_number || (n & ~0x1ff) != 0)
2397 as_bad (_("OPF immediate operand out of range (0-0x1ff)"));
2398 else
2399 opcode |= e.X_add_number << 5;
2400 }
2401 else
2402 as_bad (_("non-immediate OPF operand, ignored"));
2403 s = input_line_pointer;
2404 input_line_pointer = push;
2405 continue;
2406 }
2407
2408 case 'y':
2409 if (strncmp (s, "%y", 2) != 0)
2410 break;
2411 s += 2;
2412 continue;
2413
2414 case 'u':
2415 case 'U':
2416 {
2417 /* Parse a sparclet cpreg. */
2418 int cpreg;
2419 if (! parse_keyword_arg (sparc_encode_sparclet_cpreg, &s, &cpreg))
2420 {
2421 error_message = _(": invalid cpreg name");
2422 goto error;
2423 }
2424 opcode |= (*args == 'U' ? RS1 (cpreg) : RD (cpreg));
2425 continue;
2426 }
2427
2428 default:
2429 as_fatal (_("failed sanity check."));
2430 } /* switch on arg code */
2431
2432 /* Break out of for() loop. */
2433 break;
2434 } /* for each arg that we expect */
2435
2436 error:
2437 if (match == 0)
2438 {
2439 /* Args don't match. */
2440 if (&insn[1] - sparc_opcodes < sparc_num_opcodes
2441 && (insn->name == insn[1].name
2442 || !strcmp (insn->name, insn[1].name)))
2443 {
2444 ++insn;
2445 s = argsStart;
2446 continue;
2447 }
2448 else
2449 {
2450 as_bad (_("Illegal operands%s"), error_message);
2451 return special_case;
2452 }
2453 }
2454 else
2455 {
2456 /* We have a match. Now see if the architecture is ok. */
2457 int needed_arch_mask = insn->architecture;
2458
2459 if (v9_arg_p)
2460 {
2461 needed_arch_mask &= ~ ((1 << SPARC_OPCODE_ARCH_V9)
2462 | (1 << SPARC_OPCODE_ARCH_V9A));
2463 needed_arch_mask |= (1 << SPARC_OPCODE_ARCH_V9);
2464 }
2465
2466 if (needed_arch_mask & SPARC_OPCODE_SUPPORTED (current_architecture))
2467 ; /* ok */
2468 /* Can we bump up the architecture? */
2469 else if (needed_arch_mask & SPARC_OPCODE_SUPPORTED (max_architecture))
2470 {
2471 enum sparc_opcode_arch_val needed_architecture =
2472 sparc_ffs (SPARC_OPCODE_SUPPORTED (max_architecture)
2473 & needed_arch_mask);
2474
2475 assert (needed_architecture <= SPARC_OPCODE_ARCH_MAX);
2476 if (warn_on_bump
2477 && needed_architecture > warn_after_architecture)
2478 {
2479 as_warn (_("architecture bumped from \"%s\" to \"%s\" on \"%s\""),
2480 sparc_opcode_archs[current_architecture].name,
2481 sparc_opcode_archs[needed_architecture].name,
2482 str);
2483 warn_after_architecture = needed_architecture;
2484 }
2485 current_architecture = needed_architecture;
2486 }
2487 /* Conflict. */
2488 /* ??? This seems to be a bit fragile. What if the next entry in
2489 the opcode table is the one we want and it is supported?
2490 It is possible to arrange the table today so that this can't
2491 happen but what about tomorrow? */
2492 else
2493 {
2494 int arch,printed_one_p = 0;
2495 char *p;
2496 char required_archs[SPARC_OPCODE_ARCH_MAX * 16];
2497
2498 /* Create a list of the architectures that support the insn. */
2499 needed_arch_mask &= ~ SPARC_OPCODE_SUPPORTED (max_architecture);
2500 p = required_archs;
2501 arch = sparc_ffs (needed_arch_mask);
2502 while ((1 << arch) <= needed_arch_mask)
2503 {
2504 if ((1 << arch) & needed_arch_mask)
2505 {
2506 if (printed_one_p)
2507 *p++ = '|';
2508 strcpy (p, sparc_opcode_archs[arch].name);
2509 p += strlen (p);
2510 printed_one_p = 1;
2511 }
2512 ++arch;
2513 }
2514
2515 as_bad (_("Architecture mismatch on \"%s\"."), str);
2516 as_tsktsk (_(" (Requires %s; requested architecture is %s.)"),
2517 required_archs,
2518 sparc_opcode_archs[max_architecture].name);
2519 return special_case;
2520 }
2521 } /* if no match */
2522
2523 break;
2524 } /* forever looking for a match */
2525
2526 the_insn.opcode = opcode;
2527 return special_case;
2528 }
2529
2530 /* Parse an argument that can be expressed as a keyword.
2531 (eg: #StoreStore or %ccfr).
2532 The result is a boolean indicating success.
2533 If successful, INPUT_POINTER is updated. */
2534
2535 static int
2536 parse_keyword_arg (lookup_fn, input_pointerP, valueP)
2537 int (*lookup_fn) PARAMS ((const char *));
2538 char **input_pointerP;
2539 int *valueP;
2540 {
2541 int value;
2542 char c, *p, *q;
2543
2544 p = *input_pointerP;
2545 for (q = p + (*p == '#' || *p == '%');
2546 isalnum ((unsigned char) *q) || *q == '_';
2547 ++q)
2548 continue;
2549 c = *q;
2550 *q = 0;
2551 value = (*lookup_fn) (p);
2552 *q = c;
2553 if (value == -1)
2554 return 0;
2555 *valueP = value;
2556 *input_pointerP = q;
2557 return 1;
2558 }
2559
2560 /* Parse an argument that is a constant expression.
2561 The result is a boolean indicating success. */
2562
2563 static int
2564 parse_const_expr_arg (input_pointerP, valueP)
2565 char **input_pointerP;
2566 int *valueP;
2567 {
2568 char *save = input_line_pointer;
2569 expressionS exp;
2570
2571 input_line_pointer = *input_pointerP;
2572 /* The next expression may be something other than a constant
2573 (say if we're not processing the right variant of the insn).
2574 Don't call expression unless we're sure it will succeed as it will
2575 signal an error (which we want to defer until later). */
2576 /* FIXME: It might be better to define md_operand and have it recognize
2577 things like %asi, etc. but continuing that route through to the end
2578 is a lot of work. */
2579 if (*input_line_pointer == '%')
2580 {
2581 input_line_pointer = save;
2582 return 0;
2583 }
2584 expression (&exp);
2585 *input_pointerP = input_line_pointer;
2586 input_line_pointer = save;
2587 if (exp.X_op != O_constant)
2588 return 0;
2589 *valueP = exp.X_add_number;
2590 return 1;
2591 }
2592
2593 /* Subroutine of sparc_ip to parse an expression. */
2594
2595 static int
2596 get_expression (str)
2597 char *str;
2598 {
2599 char *save_in;
2600 segT seg;
2601
2602 save_in = input_line_pointer;
2603 input_line_pointer = str;
2604 seg = expression (&the_insn.exp);
2605 if (seg != absolute_section
2606 && seg != text_section
2607 && seg != data_section
2608 && seg != bss_section
2609 && seg != undefined_section)
2610 {
2611 the_insn.error = _("bad segment");
2612 expr_end = input_line_pointer;
2613 input_line_pointer = save_in;
2614 return 1;
2615 }
2616 expr_end = input_line_pointer;
2617 input_line_pointer = save_in;
2618 return 0;
2619 }
2620
2621 /* Subroutine of md_assemble to output one insn. */
2622
2623 static void
2624 output_insn (insn, the_insn)
2625 const struct sparc_opcode *insn;
2626 struct sparc_it *the_insn;
2627 {
2628 char *toP = frag_more (4);
2629
2630 /* put out the opcode */
2631 if (INSN_BIG_ENDIAN)
2632 number_to_chars_bigendian (toP, (valueT) the_insn->opcode, 4);
2633 else
2634 number_to_chars_littleendian (toP, (valueT) the_insn->opcode, 4);
2635
2636 /* put out the symbol-dependent stuff */
2637 if (the_insn->reloc != BFD_RELOC_NONE)
2638 {
2639 fixS *fixP = fix_new_exp (frag_now, /* which frag */
2640 (toP - frag_now->fr_literal), /* where */
2641 4, /* size */
2642 &the_insn->exp,
2643 the_insn->pcrel,
2644 the_insn->reloc);
2645 /* Turn off overflow checking in fixup_segment. We'll do our
2646 own overflow checking in md_apply_fix3. This is necessary because
2647 the insn size is 4 and fixup_segment will signal an overflow for
2648 large 8 byte quantities. */
2649 fixP->fx_no_overflow = 1;
2650 }
2651
2652 last_insn = insn;
2653 last_opcode = the_insn->opcode;
2654 }
2655 \f
2656 /*
2657 This is identical to the md_atof in m68k.c. I think this is right,
2658 but I'm not sure.
2659
2660 Turn a string in input_line_pointer into a floating point constant of type
2661 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
2662 emitted is stored in *sizeP . An error message is returned, or NULL on OK.
2663 */
2664
2665 /* Equal to MAX_PRECISION in atof-ieee.c */
2666 #define MAX_LITTLENUMS 6
2667
2668 char *
2669 md_atof (type, litP, sizeP)
2670 char type;
2671 char *litP;
2672 int *sizeP;
2673 {
2674 int i,prec;
2675 LITTLENUM_TYPE words[MAX_LITTLENUMS];
2676 char *t;
2677
2678 switch (type)
2679 {
2680 case 'f':
2681 case 'F':
2682 case 's':
2683 case 'S':
2684 prec = 2;
2685 break;
2686
2687 case 'd':
2688 case 'D':
2689 case 'r':
2690 case 'R':
2691 prec = 4;
2692 break;
2693
2694 case 'x':
2695 case 'X':
2696 prec = 6;
2697 break;
2698
2699 case 'p':
2700 case 'P':
2701 prec = 6;
2702 break;
2703
2704 default:
2705 *sizeP = 0;
2706 return _("Bad call to MD_ATOF()");
2707 }
2708
2709 t = atof_ieee (input_line_pointer, type, words);
2710 if (t)
2711 input_line_pointer = t;
2712 *sizeP = prec * sizeof (LITTLENUM_TYPE);
2713
2714 if (target_big_endian)
2715 {
2716 for (i = 0; i < prec; i++)
2717 {
2718 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
2719 litP += sizeof (LITTLENUM_TYPE);
2720 }
2721 }
2722 else
2723 {
2724 for (i = prec - 1; i >= 0; i--)
2725 {
2726 md_number_to_chars (litP, (valueT) words[i], sizeof (LITTLENUM_TYPE));
2727 litP += sizeof (LITTLENUM_TYPE);
2728 }
2729 }
2730
2731 return 0;
2732 }
2733
2734 /* Write a value out to the object file, using the appropriate
2735 endianness. */
2736
2737 void
2738 md_number_to_chars (buf, val, n)
2739 char *buf;
2740 valueT val;
2741 int n;
2742 {
2743 if (target_big_endian)
2744 number_to_chars_bigendian (buf, val, n);
2745 else if (target_little_endian_data
2746 && ((n == 4 || n == 2) && ~now_seg->flags & SEC_ALLOC))
2747 /* Output debug words, which are not in allocated sections, as big endian */
2748 number_to_chars_bigendian (buf, val, n);
2749 else if (target_little_endian_data || ! target_big_endian)
2750 number_to_chars_littleendian (buf, val, n);
2751 }
2752 \f
2753 /* Apply a fixS to the frags, now that we know the value it ought to
2754 hold. */
2755
2756 int
2757 md_apply_fix3 (fixP, value, segment)
2758 fixS *fixP;
2759 valueT *value;
2760 segT segment;
2761 {
2762 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
2763 offsetT val;
2764 long insn;
2765
2766 val = *value;
2767
2768 assert (fixP->fx_r_type < BFD_RELOC_UNUSED);
2769
2770 fixP->fx_addnumber = val; /* Remember value for emit_reloc */
2771
2772 #ifdef OBJ_ELF
2773 /* FIXME: SPARC ELF relocations don't use an addend in the data
2774 field itself. This whole approach should be somehow combined
2775 with the calls to bfd_install_relocation. Also, the value passed
2776 in by fixup_segment includes the value of a defined symbol. We
2777 don't want to include the value of an externally visible symbol. */
2778 if (fixP->fx_addsy != NULL)
2779 {
2780 if (symbol_used_in_reloc_p (fixP->fx_addsy)
2781 && (S_IS_EXTERNAL (fixP->fx_addsy)
2782 || S_IS_WEAK (fixP->fx_addsy)
2783 || (sparc_pic_code && ! fixP->fx_pcrel)
2784 || (S_GET_SEGMENT (fixP->fx_addsy) != segment
2785 && ((bfd_get_section_flags (stdoutput,
2786 S_GET_SEGMENT (fixP->fx_addsy))
2787 & SEC_LINK_ONCE) != 0
2788 || strncmp (segment_name (S_GET_SEGMENT (fixP->fx_addsy)),
2789 ".gnu.linkonce",
2790 sizeof ".gnu.linkonce" - 1) == 0)))
2791 && S_GET_SEGMENT (fixP->fx_addsy) != absolute_section
2792 && S_GET_SEGMENT (fixP->fx_addsy) != undefined_section
2793 && ! bfd_is_com_section (S_GET_SEGMENT (fixP->fx_addsy)))
2794 fixP->fx_addnumber -= S_GET_VALUE (fixP->fx_addsy);
2795 return 1;
2796 }
2797 #endif
2798
2799 /* This is a hack. There should be a better way to
2800 handle this. Probably in terms of howto fields, once
2801 we can look at these fixups in terms of howtos. */
2802 if (fixP->fx_r_type == BFD_RELOC_32_PCREL_S2 && fixP->fx_addsy)
2803 val += fixP->fx_where + fixP->fx_frag->fr_address;
2804
2805 #ifdef OBJ_AOUT
2806 /* FIXME: More ridiculous gas reloc hacking. If we are going to
2807 generate a reloc, then we just want to let the reloc addend set
2808 the value. We do not want to also stuff the addend into the
2809 object file. Including the addend in the object file works when
2810 doing a static link, because the linker will ignore the object
2811 file contents. However, the dynamic linker does not ignore the
2812 object file contents. */
2813 if (fixP->fx_addsy != NULL
2814 && fixP->fx_r_type != BFD_RELOC_32_PCREL_S2)
2815 val = 0;
2816
2817 /* When generating PIC code, we do not want an addend for a reloc
2818 against a local symbol. We adjust fx_addnumber to cancel out the
2819 value already included in val, and to also cancel out the
2820 adjustment which bfd_install_relocation will create. */
2821 if (sparc_pic_code
2822 && fixP->fx_r_type != BFD_RELOC_32_PCREL_S2
2823 && fixP->fx_addsy != NULL
2824 && ! S_IS_COMMON (fixP->fx_addsy)
2825 && symbol_section_p (fixP->fx_addsy))
2826 fixP->fx_addnumber -= 2 * S_GET_VALUE (fixP->fx_addsy);
2827
2828 /* When generating PIC code, we need to fiddle to get
2829 bfd_install_relocation to do the right thing for a PC relative
2830 reloc against a local symbol which we are going to keep. */
2831 if (sparc_pic_code
2832 && fixP->fx_r_type == BFD_RELOC_32_PCREL_S2
2833 && fixP->fx_addsy != NULL
2834 && (S_IS_EXTERNAL (fixP->fx_addsy)
2835 || S_IS_WEAK (fixP->fx_addsy))
2836 && S_IS_DEFINED (fixP->fx_addsy)
2837 && ! S_IS_COMMON (fixP->fx_addsy))
2838 {
2839 val = 0;
2840 fixP->fx_addnumber -= 2 * S_GET_VALUE (fixP->fx_addsy);
2841 }
2842 #endif
2843
2844 /* If this is a data relocation, just output VAL. */
2845
2846 if (fixP->fx_r_type == BFD_RELOC_16)
2847 {
2848 md_number_to_chars (buf, val, 2);
2849 }
2850 else if (fixP->fx_r_type == BFD_RELOC_32
2851 || fixP->fx_r_type == BFD_RELOC_SPARC_REV32)
2852 {
2853 md_number_to_chars (buf, val, 4);
2854 }
2855 else if (fixP->fx_r_type == BFD_RELOC_64)
2856 {
2857 md_number_to_chars (buf, val, 8);
2858 }
2859 else if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
2860 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
2861 {
2862 fixP->fx_done = 0;
2863 return 1;
2864 }
2865 else
2866 {
2867 /* It's a relocation against an instruction. */
2868
2869 if (INSN_BIG_ENDIAN)
2870 insn = bfd_getb32 ((unsigned char *) buf);
2871 else
2872 insn = bfd_getl32 ((unsigned char *) buf);
2873
2874 switch (fixP->fx_r_type)
2875 {
2876 case BFD_RELOC_32_PCREL_S2:
2877 val = val >> 2;
2878 /* FIXME: This increment-by-one deserves a comment of why it's
2879 being done! */
2880 if (! sparc_pic_code
2881 || fixP->fx_addsy == NULL
2882 || symbol_section_p (fixP->fx_addsy))
2883 ++val;
2884 insn |= val & 0x3fffffff;
2885 break;
2886
2887 case BFD_RELOC_SPARC_11:
2888 if (! in_signed_range (val, 0x7ff))
2889 as_bad_where (fixP->fx_file, fixP->fx_line,
2890 _("relocation overflow"));
2891 insn |= val & 0x7ff;
2892 break;
2893
2894 case BFD_RELOC_SPARC_10:
2895 if (! in_signed_range (val, 0x3ff))
2896 as_bad_where (fixP->fx_file, fixP->fx_line,
2897 _("relocation overflow"));
2898 insn |= val & 0x3ff;
2899 break;
2900
2901 case BFD_RELOC_SPARC_7:
2902 if (! in_bitfield_range (val, 0x7f))
2903 as_bad_where (fixP->fx_file, fixP->fx_line,
2904 _("relocation overflow"));
2905 insn |= val & 0x7f;
2906 break;
2907
2908 case BFD_RELOC_SPARC_6:
2909 if (! in_bitfield_range (val, 0x3f))
2910 as_bad_where (fixP->fx_file, fixP->fx_line,
2911 _("relocation overflow"));
2912 insn |= val & 0x3f;
2913 break;
2914
2915 case BFD_RELOC_SPARC_5:
2916 if (! in_bitfield_range (val, 0x1f))
2917 as_bad_where (fixP->fx_file, fixP->fx_line,
2918 _("relocation overflow"));
2919 insn |= val & 0x1f;
2920 break;
2921
2922 case BFD_RELOC_SPARC_WDISP16:
2923 /* FIXME: simplify */
2924 if (((val > 0) && (val & ~0x3fffc))
2925 || ((val < 0) && (~(val - 1) & ~0x3fffc)))
2926 as_bad_where (fixP->fx_file, fixP->fx_line,
2927 _("relocation overflow"));
2928 /* FIXME: The +1 deserves a comment. */
2929 val = (val >> 2) + 1;
2930 insn |= ((val & 0xc000) << 6) | (val & 0x3fff);
2931 break;
2932
2933 case BFD_RELOC_SPARC_WDISP19:
2934 /* FIXME: simplify */
2935 if (((val > 0) && (val & ~0x1ffffc))
2936 || ((val < 0) && (~(val - 1) & ~0x1ffffc)))
2937 as_bad_where (fixP->fx_file, fixP->fx_line,
2938 _("relocation overflow"));
2939 /* FIXME: The +1 deserves a comment. */
2940 val = (val >> 2) + 1;
2941 insn |= val & 0x7ffff;
2942 break;
2943
2944 case BFD_RELOC_SPARC_HH22:
2945 val = BSR (val, 32);
2946 /* intentional fallthrough */
2947
2948 case BFD_RELOC_SPARC_LM22:
2949 case BFD_RELOC_HI22:
2950 if (!fixP->fx_addsy)
2951 {
2952 insn |= (val >> 10) & 0x3fffff;
2953 }
2954 else
2955 {
2956 /* FIXME: Need comment explaining why we do this. */
2957 insn &= ~0xffff;
2958 }
2959 break;
2960
2961 case BFD_RELOC_SPARC22:
2962 if (val & ~0x003fffff)
2963 as_bad_where (fixP->fx_file, fixP->fx_line,
2964 _("relocation overflow"));
2965 insn |= (val & 0x3fffff);
2966 break;
2967
2968 case BFD_RELOC_SPARC_HM10:
2969 val = BSR (val, 32);
2970 /* intentional fallthrough */
2971
2972 case BFD_RELOC_LO10:
2973 if (!fixP->fx_addsy)
2974 {
2975 insn |= val & 0x3ff;
2976 }
2977 else
2978 {
2979 /* FIXME: Need comment explaining why we do this. */
2980 insn &= ~0xff;
2981 }
2982 break;
2983
2984 case BFD_RELOC_SPARC13:
2985 if (! in_signed_range (val, 0x1fff))
2986 as_bad_where (fixP->fx_file, fixP->fx_line,
2987 _("relocation overflow"));
2988 insn |= val & 0x1fff;
2989 break;
2990
2991 case BFD_RELOC_SPARC_WDISP22:
2992 val = (val >> 2) + 1;
2993 /* FALLTHROUGH */
2994 case BFD_RELOC_SPARC_BASE22:
2995 insn |= val & 0x3fffff;
2996 break;
2997
2998 case BFD_RELOC_SPARC_H44:
2999 if (!fixP->fx_addsy)
3000 {
3001 bfd_vma tval = val;
3002 tval >>= 22;
3003 insn |= tval & 0x3fffff;
3004 }
3005 break;
3006
3007 case BFD_RELOC_SPARC_M44:
3008 if (!fixP->fx_addsy)
3009 insn |= (val >> 12) & 0x3ff;
3010 break;
3011
3012 case BFD_RELOC_SPARC_L44:
3013 if (!fixP->fx_addsy)
3014 insn |= val & 0xfff;
3015 break;
3016
3017 case BFD_RELOC_SPARC_HIX22:
3018 if (!fixP->fx_addsy)
3019 {
3020 val ^= ~ (offsetT) 0;
3021 insn |= (val >> 10) & 0x3fffff;
3022 }
3023 break;
3024
3025 case BFD_RELOC_SPARC_LOX10:
3026 if (!fixP->fx_addsy)
3027 insn |= 0x1c00 | (val & 0x3ff);
3028 break;
3029
3030 case BFD_RELOC_NONE:
3031 default:
3032 as_bad_where (fixP->fx_file, fixP->fx_line,
3033 _("bad or unhandled relocation type: 0x%02x"),
3034 fixP->fx_r_type);
3035 break;
3036 }
3037
3038 if (INSN_BIG_ENDIAN)
3039 bfd_putb32 (insn, (unsigned char *) buf);
3040 else
3041 bfd_putl32 (insn, (unsigned char *) buf);
3042 }
3043
3044 /* Are we finished with this relocation now? */
3045 if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)
3046 fixP->fx_done = 1;
3047
3048 return 1;
3049 }
3050
3051 /* Translate internal representation of relocation info to BFD target
3052 format. */
3053 arelent *
3054 tc_gen_reloc (section, fixp)
3055 asection *section;
3056 fixS *fixp;
3057 {
3058 arelent *reloc;
3059 bfd_reloc_code_real_type code;
3060
3061 reloc = (arelent *) xmalloc (sizeof (arelent));
3062
3063 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
3064 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
3065 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
3066
3067 switch (fixp->fx_r_type)
3068 {
3069 case BFD_RELOC_16:
3070 case BFD_RELOC_32:
3071 case BFD_RELOC_HI22:
3072 case BFD_RELOC_LO10:
3073 case BFD_RELOC_32_PCREL_S2:
3074 case BFD_RELOC_SPARC13:
3075 case BFD_RELOC_SPARC22:
3076 case BFD_RELOC_SPARC_BASE13:
3077 case BFD_RELOC_SPARC_WDISP16:
3078 case BFD_RELOC_SPARC_WDISP19:
3079 case BFD_RELOC_SPARC_WDISP22:
3080 case BFD_RELOC_64:
3081 case BFD_RELOC_SPARC_5:
3082 case BFD_RELOC_SPARC_6:
3083 case BFD_RELOC_SPARC_7:
3084 case BFD_RELOC_SPARC_10:
3085 case BFD_RELOC_SPARC_11:
3086 case BFD_RELOC_SPARC_HH22:
3087 case BFD_RELOC_SPARC_HM10:
3088 case BFD_RELOC_SPARC_LM22:
3089 case BFD_RELOC_SPARC_PC_HH22:
3090 case BFD_RELOC_SPARC_PC_HM10:
3091 case BFD_RELOC_SPARC_PC_LM22:
3092 case BFD_RELOC_SPARC_H44:
3093 case BFD_RELOC_SPARC_M44:
3094 case BFD_RELOC_SPARC_L44:
3095 case BFD_RELOC_SPARC_HIX22:
3096 case BFD_RELOC_SPARC_LOX10:
3097 case BFD_RELOC_SPARC_REV32:
3098 case BFD_RELOC_VTABLE_ENTRY:
3099 case BFD_RELOC_VTABLE_INHERIT:
3100 code = fixp->fx_r_type;
3101 break;
3102 default:
3103 abort ();
3104 return NULL;
3105 }
3106
3107 #if defined (OBJ_ELF) || defined (OBJ_AOUT)
3108 /* If we are generating PIC code, we need to generate a different
3109 set of relocs. */
3110
3111 #ifdef OBJ_ELF
3112 #define GOT_NAME "_GLOBAL_OFFSET_TABLE_"
3113 #else
3114 #define GOT_NAME "__GLOBAL_OFFSET_TABLE_"
3115 #endif
3116
3117 if (sparc_pic_code)
3118 {
3119 switch (code)
3120 {
3121 case BFD_RELOC_32_PCREL_S2:
3122 if (! S_IS_DEFINED (fixp->fx_addsy)
3123 || S_IS_COMMON (fixp->fx_addsy)
3124 || S_IS_EXTERNAL (fixp->fx_addsy)
3125 || S_IS_WEAK (fixp->fx_addsy))
3126 code = BFD_RELOC_SPARC_WPLT30;
3127 break;
3128 case BFD_RELOC_HI22:
3129 if (fixp->fx_addsy != NULL
3130 && strcmp (S_GET_NAME (fixp->fx_addsy), GOT_NAME) == 0)
3131 code = BFD_RELOC_SPARC_PC22;
3132 else
3133 code = BFD_RELOC_SPARC_GOT22;
3134 break;
3135 case BFD_RELOC_LO10:
3136 if (fixp->fx_addsy != NULL
3137 && strcmp (S_GET_NAME (fixp->fx_addsy), GOT_NAME) == 0)
3138 code = BFD_RELOC_SPARC_PC10;
3139 else
3140 code = BFD_RELOC_SPARC_GOT10;
3141 break;
3142 case BFD_RELOC_SPARC13:
3143 code = BFD_RELOC_SPARC_GOT13;
3144 break;
3145 default:
3146 break;
3147 }
3148 }
3149 #endif /* defined (OBJ_ELF) || defined (OBJ_AOUT) */
3150
3151 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
3152 if (reloc->howto == 0)
3153 {
3154 as_bad_where (fixp->fx_file, fixp->fx_line,
3155 _("internal error: can't export reloc type %d (`%s')"),
3156 fixp->fx_r_type, bfd_get_reloc_code_name (code));
3157 return 0;
3158 }
3159
3160 /* @@ Why fx_addnumber sometimes and fx_offset other times? */
3161 #ifdef OBJ_AOUT
3162
3163 if (reloc->howto->pc_relative == 0
3164 || code == BFD_RELOC_SPARC_PC10
3165 || code == BFD_RELOC_SPARC_PC22)
3166 reloc->addend = fixp->fx_addnumber;
3167 else if (sparc_pic_code
3168 && fixp->fx_r_type == BFD_RELOC_32_PCREL_S2
3169 && fixp->fx_addsy != NULL
3170 && (S_IS_EXTERNAL (fixp->fx_addsy)
3171 || S_IS_WEAK (fixp->fx_addsy))
3172 && S_IS_DEFINED (fixp->fx_addsy)
3173 && ! S_IS_COMMON (fixp->fx_addsy))
3174 reloc->addend = fixp->fx_addnumber;
3175 else
3176 reloc->addend = fixp->fx_offset - reloc->address;
3177
3178 #else /* elf or coff */
3179
3180 if (reloc->howto->pc_relative == 0
3181 || code == BFD_RELOC_SPARC_PC10
3182 || code == BFD_RELOC_SPARC_PC22)
3183 reloc->addend = fixp->fx_addnumber;
3184 else if (symbol_section_p (fixp->fx_addsy))
3185 reloc->addend = (section->vma
3186 + fixp->fx_addnumber
3187 + md_pcrel_from (fixp));
3188 else
3189 reloc->addend = fixp->fx_offset;
3190 #endif
3191
3192 return reloc;
3193 }
3194 \f
3195 /* We have no need to default values of symbols. */
3196
3197 /* ARGSUSED */
3198 symbolS *
3199 md_undefined_symbol (name)
3200 char *name;
3201 {
3202 return 0;
3203 } /* md_undefined_symbol() */
3204
3205 /* Round up a section size to the appropriate boundary. */
3206 valueT
3207 md_section_align (segment, size)
3208 segT segment;
3209 valueT size;
3210 {
3211 #ifndef OBJ_ELF
3212 /* This is not right for ELF; a.out wants it, and COFF will force
3213 the alignment anyways. */
3214 valueT align = ((valueT) 1
3215 << (valueT) bfd_get_section_alignment (stdoutput, segment));
3216 valueT newsize;
3217 /* turn alignment value into a mask */
3218 align--;
3219 newsize = (size + align) & ~align;
3220 return newsize;
3221 #else
3222 return size;
3223 #endif
3224 }
3225
3226 /* Exactly what point is a PC-relative offset relative TO?
3227 On the sparc, they're relative to the address of the offset, plus
3228 its size. This gets us to the following instruction.
3229 (??? Is this right? FIXME-SOON) */
3230 long
3231 md_pcrel_from (fixP)
3232 fixS *fixP;
3233 {
3234 long ret;
3235
3236 ret = fixP->fx_where + fixP->fx_frag->fr_address;
3237 if (! sparc_pic_code
3238 || fixP->fx_addsy == NULL
3239 || symbol_section_p (fixP->fx_addsy))
3240 ret += fixP->fx_size;
3241 return ret;
3242 }
3243 \f
3244 /* Return log2 (VALUE), or -1 if VALUE is not an exact positive power
3245 of two. */
3246
3247 static int
3248 log2 (value)
3249 int value;
3250 {
3251 int shift;
3252
3253 if (value <= 0)
3254 return -1;
3255
3256 for (shift = 0; (value & 1) == 0; value >>= 1)
3257 ++shift;
3258
3259 return (value == 1) ? shift : -1;
3260 }
3261
3262 /*
3263 * sort of like s_lcomm
3264 */
3265
3266 #ifndef OBJ_ELF
3267 static int max_alignment = 15;
3268 #endif
3269
3270 static void
3271 s_reserve (ignore)
3272 int ignore;
3273 {
3274 char *name;
3275 char *p;
3276 char c;
3277 int align;
3278 int size;
3279 int temp;
3280 symbolS *symbolP;
3281
3282 name = input_line_pointer;
3283 c = get_symbol_end ();
3284 p = input_line_pointer;
3285 *p = c;
3286 SKIP_WHITESPACE ();
3287
3288 if (*input_line_pointer != ',')
3289 {
3290 as_bad (_("Expected comma after name"));
3291 ignore_rest_of_line ();
3292 return;
3293 }
3294
3295 ++input_line_pointer;
3296
3297 if ((size = get_absolute_expression ()) < 0)
3298 {
3299 as_bad (_("BSS length (%d.) <0! Ignored."), size);
3300 ignore_rest_of_line ();
3301 return;
3302 } /* bad length */
3303
3304 *p = 0;
3305 symbolP = symbol_find_or_make (name);
3306 *p = c;
3307
3308 if (strncmp (input_line_pointer, ",\"bss\"", 6) != 0
3309 && strncmp (input_line_pointer, ",\".bss\"", 7) != 0)
3310 {
3311 as_bad (_("bad .reserve segment -- expected BSS segment"));
3312 return;
3313 }
3314
3315 if (input_line_pointer[2] == '.')
3316 input_line_pointer += 7;
3317 else
3318 input_line_pointer += 6;
3319 SKIP_WHITESPACE ();
3320
3321 if (*input_line_pointer == ',')
3322 {
3323 ++input_line_pointer;
3324
3325 SKIP_WHITESPACE ();
3326 if (*input_line_pointer == '\n')
3327 {
3328 as_bad (_("missing alignment"));
3329 ignore_rest_of_line ();
3330 return;
3331 }
3332
3333 align = (int) get_absolute_expression ();
3334
3335 #ifndef OBJ_ELF
3336 if (align > max_alignment)
3337 {
3338 align = max_alignment;
3339 as_warn (_("alignment too large; assuming %d"), align);
3340 }
3341 #endif
3342
3343 if (align < 0)
3344 {
3345 as_bad (_("negative alignment"));
3346 ignore_rest_of_line ();
3347 return;
3348 }
3349
3350 if (align != 0)
3351 {
3352 temp = log2 (align);
3353 if (temp < 0)
3354 {
3355 as_bad (_("alignment not a power of 2"));
3356 ignore_rest_of_line ();
3357 return;
3358 }
3359
3360 align = temp;
3361 }
3362
3363 record_alignment (bss_section, align);
3364 }
3365 else
3366 align = 0;
3367
3368 if (!S_IS_DEFINED (symbolP)
3369 #ifdef OBJ_AOUT
3370 && S_GET_OTHER (symbolP) == 0
3371 && S_GET_DESC (symbolP) == 0
3372 #endif
3373 )
3374 {
3375 if (! need_pass_2)
3376 {
3377 char *pfrag;
3378 segT current_seg = now_seg;
3379 subsegT current_subseg = now_subseg;
3380
3381 subseg_set (bss_section, 1); /* switch to bss */
3382
3383 if (align)
3384 frag_align (align, 0, 0); /* do alignment */
3385
3386 /* detach from old frag */
3387 if (S_GET_SEGMENT(symbolP) == bss_section)
3388 symbol_get_frag (symbolP)->fr_symbol = NULL;
3389
3390 symbol_set_frag (symbolP, frag_now);
3391 pfrag = frag_var (rs_org, 1, 1, (relax_substateT)0, symbolP,
3392 (offsetT) size, (char *)0);
3393 *pfrag = 0;
3394
3395 S_SET_SEGMENT (symbolP, bss_section);
3396
3397 subseg_set (current_seg, current_subseg);
3398
3399 #ifdef OBJ_ELF
3400 S_SET_SIZE (symbolP, size);
3401 #endif
3402 }
3403 }
3404 else
3405 {
3406 as_warn("Ignoring attempt to re-define symbol %s",
3407 S_GET_NAME (symbolP));
3408 } /* if not redefining */
3409
3410 demand_empty_rest_of_line ();
3411 }
3412
3413 static void
3414 s_common (ignore)
3415 int ignore;
3416 {
3417 char *name;
3418 char c;
3419 char *p;
3420 int temp, size;
3421 symbolS *symbolP;
3422
3423 name = input_line_pointer;
3424 c = get_symbol_end ();
3425 /* just after name is now '\0' */
3426 p = input_line_pointer;
3427 *p = c;
3428 SKIP_WHITESPACE ();
3429 if (*input_line_pointer != ',')
3430 {
3431 as_bad (_("Expected comma after symbol-name"));
3432 ignore_rest_of_line ();
3433 return;
3434 }
3435 input_line_pointer++; /* skip ',' */
3436 if ((temp = get_absolute_expression ()) < 0)
3437 {
3438 as_bad (_(".COMMon length (%d.) <0! Ignored."), temp);
3439 ignore_rest_of_line ();
3440 return;
3441 }
3442 size = temp;
3443 *p = 0;
3444 symbolP = symbol_find_or_make (name);
3445 *p = c;
3446 if (S_IS_DEFINED (symbolP) && ! S_IS_COMMON (symbolP))
3447 {
3448 as_bad (_("Ignoring attempt to re-define symbol"));
3449 ignore_rest_of_line ();
3450 return;
3451 }
3452 if (S_GET_VALUE (symbolP) != 0)
3453 {
3454 if (S_GET_VALUE (symbolP) != (valueT) size)
3455 {
3456 as_warn (_("Length of .comm \"%s\" is already %ld. Not changed to %d."),
3457 S_GET_NAME (symbolP), (long) S_GET_VALUE (symbolP), size);
3458 }
3459 }
3460 else
3461 {
3462 #ifndef OBJ_ELF
3463 S_SET_VALUE (symbolP, (valueT) size);
3464 S_SET_EXTERNAL (symbolP);
3465 #endif
3466 }
3467 know (symbolP->sy_frag == &zero_address_frag);
3468 if (*input_line_pointer != ',')
3469 {
3470 as_bad (_("Expected comma after common length"));
3471 ignore_rest_of_line ();
3472 return;
3473 }
3474 input_line_pointer++;
3475 SKIP_WHITESPACE ();
3476 if (*input_line_pointer != '"')
3477 {
3478 temp = get_absolute_expression ();
3479
3480 #ifndef OBJ_ELF
3481 if (temp > max_alignment)
3482 {
3483 temp = max_alignment;
3484 as_warn (_("alignment too large; assuming %d"), temp);
3485 }
3486 #endif
3487
3488 if (temp < 0)
3489 {
3490 as_bad (_("negative alignment"));
3491 ignore_rest_of_line ();
3492 return;
3493 }
3494
3495 #ifdef OBJ_ELF
3496 if (symbol_get_obj (symbolP)->local)
3497 {
3498 segT old_sec;
3499 int old_subsec;
3500 char *p;
3501 int align;
3502
3503 old_sec = now_seg;
3504 old_subsec = now_subseg;
3505
3506 if (temp == 0)
3507 align = 0;
3508 else
3509 align = log2 (temp);
3510
3511 if (align < 0)
3512 {
3513 as_bad (_("alignment not a power of 2"));
3514 ignore_rest_of_line ();
3515 return;
3516 }
3517
3518 record_alignment (bss_section, align);
3519 subseg_set (bss_section, 0);
3520 if (align)
3521 frag_align (align, 0, 0);
3522 if (S_GET_SEGMENT (symbolP) == bss_section)
3523 symbol_get_frag (symbolP)->fr_symbol = 0;
3524 symbol_set_frag (symbolP, frag_now);
3525 p = frag_var (rs_org, 1, 1, (relax_substateT) 0, symbolP,
3526 (offsetT) size, (char *) 0);
3527 *p = 0;
3528 S_SET_SEGMENT (symbolP, bss_section);
3529 S_CLEAR_EXTERNAL (symbolP);
3530 S_SET_SIZE (symbolP, size);
3531 subseg_set (old_sec, old_subsec);
3532 }
3533 else
3534 #endif /* OBJ_ELF */
3535 {
3536 allocate_common:
3537 S_SET_VALUE (symbolP, (valueT) size);
3538 #ifdef OBJ_ELF
3539 S_SET_ALIGN (symbolP, temp);
3540 S_SET_SIZE (symbolP, size);
3541 #endif
3542 S_SET_EXTERNAL (symbolP);
3543 S_SET_SEGMENT (symbolP, bfd_com_section_ptr);
3544 }
3545 }
3546 else
3547 {
3548 input_line_pointer++;
3549 /* @@ Some use the dot, some don't. Can we get some consistency?? */
3550 if (*input_line_pointer == '.')
3551 input_line_pointer++;
3552 /* @@ Some say data, some say bss. */
3553 if (strncmp (input_line_pointer, "bss\"", 4)
3554 && strncmp (input_line_pointer, "data\"", 5))
3555 {
3556 while (*--input_line_pointer != '"')
3557 ;
3558 input_line_pointer--;
3559 goto bad_common_segment;
3560 }
3561 while (*input_line_pointer++ != '"')
3562 ;
3563 goto allocate_common;
3564 }
3565
3566 #ifdef BFD_ASSEMBLER
3567 symbol_get_bfdsym (symbolP)->flags |= BSF_OBJECT;
3568 #endif
3569
3570 demand_empty_rest_of_line ();
3571 return;
3572
3573 {
3574 bad_common_segment:
3575 p = input_line_pointer;
3576 while (*p && *p != '\n')
3577 p++;
3578 c = *p;
3579 *p = '\0';
3580 as_bad (_("bad .common segment %s"), input_line_pointer + 1);
3581 *p = c;
3582 input_line_pointer = p;
3583 ignore_rest_of_line ();
3584 return;
3585 }
3586 }
3587
3588 /* Handle the .empty pseudo-op. This supresses the warnings about
3589 invalid delay slot usage. */
3590
3591 static void
3592 s_empty (ignore)
3593 int ignore;
3594 {
3595 /* The easy way to implement is to just forget about the last
3596 instruction. */
3597 last_insn = NULL;
3598 }
3599
3600 static void
3601 s_seg (ignore)
3602 int ignore;
3603 {
3604
3605 if (strncmp (input_line_pointer, "\"text\"", 6) == 0)
3606 {
3607 input_line_pointer += 6;
3608 s_text (0);
3609 return;
3610 }
3611 if (strncmp (input_line_pointer, "\"data\"", 6) == 0)
3612 {
3613 input_line_pointer += 6;
3614 s_data (0);
3615 return;
3616 }
3617 if (strncmp (input_line_pointer, "\"data1\"", 7) == 0)
3618 {
3619 input_line_pointer += 7;
3620 s_data1 ();
3621 return;
3622 }
3623 if (strncmp (input_line_pointer, "\"bss\"", 5) == 0)
3624 {
3625 input_line_pointer += 5;
3626 /* We only support 2 segments -- text and data -- for now, so
3627 things in the "bss segment" will have to go into data for now.
3628 You can still allocate SEG_BSS stuff with .lcomm or .reserve. */
3629 subseg_set (data_section, 255); /* FIXME-SOMEDAY */
3630 return;
3631 }
3632 as_bad (_("Unknown segment type"));
3633 demand_empty_rest_of_line ();
3634 }
3635
3636 static void
3637 s_data1 ()
3638 {
3639 subseg_set (data_section, 1);
3640 demand_empty_rest_of_line ();
3641 }
3642
3643 static void
3644 s_proc (ignore)
3645 int ignore;
3646 {
3647 while (!is_end_of_line[(unsigned char) *input_line_pointer])
3648 {
3649 ++input_line_pointer;
3650 }
3651 ++input_line_pointer;
3652 }
3653
3654 /* This static variable is set by s_uacons to tell sparc_cons_align
3655 that the expession does not need to be aligned. */
3656
3657 static int sparc_no_align_cons = 0;
3658
3659 /* This handles the unaligned space allocation pseudo-ops, such as
3660 .uaword. .uaword is just like .word, but the value does not need
3661 to be aligned. */
3662
3663 static void
3664 s_uacons (bytes)
3665 int bytes;
3666 {
3667 /* Tell sparc_cons_align not to align this value. */
3668 sparc_no_align_cons = 1;
3669 cons (bytes);
3670 }
3671
3672 /* This handles the native word allocation pseudo-op .nword.
3673 For sparc_arch_size 32 it is equivalent to .word, for
3674 sparc_arch_size 64 it is equivalent to .xword. */
3675
3676 static void
3677 s_ncons (bytes)
3678 int bytes;
3679 {
3680 cons (sparc_arch_size == 32 ? 4 : 8);
3681 }
3682
3683 /* If the --enforce-aligned-data option is used, we require .word,
3684 et. al., to be aligned correctly. We do it by setting up an
3685 rs_align_code frag, and checking in HANDLE_ALIGN to make sure that
3686 no unexpected alignment was introduced.
3687
3688 The SunOS and Solaris native assemblers enforce aligned data by
3689 default. We don't want to do that, because gcc can deliberately
3690 generate misaligned data if the packed attribute is used. Instead,
3691 we permit misaligned data by default, and permit the user to set an
3692 option to check for it. */
3693
3694 void
3695 sparc_cons_align (nbytes)
3696 int nbytes;
3697 {
3698 int nalign;
3699 char *p;
3700
3701 /* Only do this if we are enforcing aligned data. */
3702 if (! enforce_aligned_data)
3703 return;
3704
3705 if (sparc_no_align_cons)
3706 {
3707 /* This is an unaligned pseudo-op. */
3708 sparc_no_align_cons = 0;
3709 return;
3710 }
3711
3712 nalign = log2 (nbytes);
3713 if (nalign == 0)
3714 return;
3715
3716 assert (nalign > 0);
3717
3718 if (now_seg == absolute_section)
3719 {
3720 if ((abs_section_offset & ((1 << nalign) - 1)) != 0)
3721 as_bad (_("misaligned data"));
3722 return;
3723 }
3724
3725 p = frag_var (rs_align_code, 1, 1, (relax_substateT) 0,
3726 (symbolS *) NULL, (offsetT) nalign, (char *) NULL);
3727
3728 record_alignment (now_seg, nalign);
3729 }
3730
3731 /* This is where we do the unexpected alignment check.
3732 This is called from HANDLE_ALIGN in tc-sparc.h. */
3733
3734 void
3735 sparc_handle_align (fragp)
3736 fragS *fragp;
3737 {
3738 if (fragp->fr_type == rs_align_code && !fragp->fr_subtype
3739 && fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix != 0)
3740 as_bad_where (fragp->fr_file, fragp->fr_line, _("misaligned data"));
3741 if (fragp->fr_type == rs_align_code && fragp->fr_subtype == 1024)
3742 {
3743 int count = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
3744
3745 if (count >= 4
3746 && !(count & 3)
3747 && count <= 1024
3748 && !((long)(fragp->fr_literal + fragp->fr_fix) & 3))
3749 {
3750 unsigned *p = (unsigned *)(fragp->fr_literal + fragp->fr_fix);
3751 int i;
3752
3753 for (i = 0; i < count; i += 4, p++)
3754 if (INSN_BIG_ENDIAN)
3755 number_to_chars_bigendian ((char *)p, 0x01000000, 4); /* emit nops */
3756 else
3757 number_to_chars_littleendian ((char *)p, 0x10000000, 4);
3758
3759 if (SPARC_OPCODE_ARCH_V9_P (max_architecture) && count > 8)
3760 {
3761 char *waddr = &fragp->fr_literal[fragp->fr_fix];
3762 unsigned wval = (0x30680000 | count >> 2); /* ba,a,pt %xcc, 1f */
3763 if (INSN_BIG_ENDIAN)
3764 number_to_chars_bigendian (waddr, wval, 4);
3765 else
3766 number_to_chars_littleendian (waddr, wval, 4);
3767 }
3768 fragp->fr_var = count;
3769 }
3770 }
3771 }
3772
3773 #ifdef OBJ_ELF
3774 /* Some special processing for a Sparc ELF file. */
3775
3776 void
3777 sparc_elf_final_processing ()
3778 {
3779 /* Set the Sparc ELF flag bits. FIXME: There should probably be some
3780 sort of BFD interface for this. */
3781 if (sparc_arch_size == 64)
3782 {
3783 switch (sparc_memory_model)
3784 {
3785 case MM_RMO:
3786 elf_elfheader (stdoutput)->e_flags |= EF_SPARCV9_RMO;
3787 break;
3788 case MM_PSO:
3789 elf_elfheader (stdoutput)->e_flags |= EF_SPARCV9_PSO;
3790 break;
3791 default:
3792 break;
3793 }
3794 }
3795 else if (current_architecture >= SPARC_OPCODE_ARCH_V9)
3796 elf_elfheader (stdoutput)->e_flags |= EF_SPARC_32PLUS;
3797 if (current_architecture == SPARC_OPCODE_ARCH_V9A)
3798 elf_elfheader (stdoutput)->e_flags |= EF_SPARC_SUN_US1;
3799 }
3800 #endif
3801
3802 /* This is called by emit_expr via TC_CONS_FIX_NEW when creating a
3803 reloc for a cons. We could use the definition there, except that
3804 we want to handle little endian relocs specially. */
3805
3806 void
3807 cons_fix_new_sparc (frag, where, nbytes, exp)
3808 fragS *frag;
3809 int where;
3810 unsigned int nbytes;
3811 expressionS *exp;
3812 {
3813 bfd_reloc_code_real_type r;
3814
3815 r = (nbytes == 1 ? BFD_RELOC_8 :
3816 (nbytes == 2 ? BFD_RELOC_16 :
3817 (nbytes == 4 ? BFD_RELOC_32 : BFD_RELOC_64)));
3818
3819 if (target_little_endian_data && nbytes == 4
3820 && now_seg->flags & SEC_ALLOC)
3821 r = BFD_RELOC_SPARC_REV32;
3822 fix_new_exp (frag, where, (int) nbytes, exp, 0, r);
3823 }
3824
3825 #ifdef OBJ_ELF
3826 int
3827 elf32_sparc_force_relocation (fixp)
3828 struct fix *fixp;
3829 {
3830 if (fixp->fx_r_type == BFD_RELOC_VTABLE_INHERIT
3831 || fixp->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
3832 return 1;
3833
3834 return 0;
3835 }
3836 #endif
3837