1 /* tc-sparc.c -- Assemble for the SPARC
2 Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public
18 License along with GAS; see the file COPYING. If not, write
19 to the Free Software Foundation, 51 Franklin Street - Fifth Floor,
20 Boston, MA 02110-1301, USA. */
23 #include "safe-ctype.h"
26 #include "opcode/sparc.h"
27 #include "dw2gencfi.h"
30 #include "elf/sparc.h"
31 #include "dwarf2dbg.h"
34 /* Some ancient Sun C compilers would not take such hex constants as
35 unsigned, and would end up sign-extending them to form an offsetT,
36 so use these constants instead. */
37 #define U0xffffffff ((((unsigned long) 1 << 16) << 16) - 1)
38 #define U0x80000000 ((((unsigned long) 1 << 16) << 15))
40 static int sparc_ip (char *, const struct sparc_opcode
**);
41 static int parse_keyword_arg (int (*) (const char *), char **, int *);
42 static int parse_const_expr_arg (char **, int *);
43 static int get_expression (char *);
45 /* Default architecture. */
46 /* ??? The default value should be V8, but sparclite support was added
47 by making it the default. GCC now passes -Asparclite, so maybe sometime in
48 the future we can set this to V8. */
50 #define DEFAULT_ARCH "sparclite"
52 static char *default_arch
= DEFAULT_ARCH
;
54 /* Non-zero if the initial values of `max_architecture' and `sparc_arch_size'
56 static int default_init_p
;
58 /* Current architecture. We don't bump up unless necessary. */
59 static enum sparc_opcode_arch_val current_architecture
= SPARC_OPCODE_ARCH_V6
;
61 /* The maximum architecture level we can bump up to.
62 In a 32 bit environment, don't allow bumping up to v9 by default.
63 The native assembler works this way. The user is required to pass
64 an explicit argument before we'll create v9 object files. However, if
65 we don't see any v9 insns, a v8plus object file is not created. */
66 static enum sparc_opcode_arch_val max_architecture
;
68 /* Either 32 or 64, selects file format. */
69 static int sparc_arch_size
;
70 /* Initial (default) value, recorded separately in case a user option
71 changes the value before md_show_usage is called. */
72 static int default_arch_size
;
75 /* The currently selected v9 memory model. Currently only used for
77 static enum { MM_TSO
, MM_PSO
, MM_RMO
} sparc_memory_model
= MM_RMO
;
80 static int architecture_requested
;
81 static int warn_on_bump
;
83 /* If warn_on_bump and the needed architecture is higher than this
84 architecture, issue a warning. */
85 static enum sparc_opcode_arch_val warn_after_architecture
;
87 /* Non-zero if as should generate error if an undeclared g[23] register
88 has been used in -64. */
89 static int no_undeclared_regs
;
91 /* Non-zero if we should try to relax jumps and calls. */
92 static int sparc_relax
;
94 /* Non-zero if we are generating PIC code. */
97 /* Non-zero if we should give an error when misaligned data is seen. */
98 static int enforce_aligned_data
;
100 extern int target_big_endian
;
102 static int target_little_endian_data
;
104 /* Symbols for global registers on v9. */
105 static symbolS
*globals
[8];
107 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
108 int sparc_cie_data_alignment
;
110 /* V9 and 86x have big and little endian data, but instructions are always big
111 endian. The sparclet has bi-endian support but both data and insns have
112 the same endianness. Global `target_big_endian' is used for data.
113 The following macro is used for instructions. */
114 #ifndef INSN_BIG_ENDIAN
115 #define INSN_BIG_ENDIAN (target_big_endian \
116 || default_arch_type == sparc86x \
117 || SPARC_OPCODE_ARCH_V9_P (max_architecture))
120 /* Handle of the OPCODE hash table. */
121 static struct hash_control
*op_hash
;
123 static void s_data1 (void);
124 static void s_seg (int);
125 static void s_proc (int);
126 static void s_reserve (int);
127 static void s_common (int);
128 static void s_empty (int);
129 static void s_uacons (int);
130 static void s_ncons (int);
132 static void s_register (int);
135 const pseudo_typeS md_pseudo_table
[] =
137 {"align", s_align_bytes
, 0}, /* Defaulting is invalid (0). */
138 {"common", s_common
, 0},
139 {"empty", s_empty
, 0},
140 {"global", s_globl
, 0},
142 {"nword", s_ncons
, 0},
143 {"optim", s_ignore
, 0},
145 {"reserve", s_reserve
, 0},
147 {"skip", s_space
, 0},
150 {"uahalf", s_uacons
, 2},
151 {"uaword", s_uacons
, 4},
152 {"uaxword", s_uacons
, 8},
154 /* These are specific to sparc/svr4. */
155 {"2byte", s_uacons
, 2},
156 {"4byte", s_uacons
, 4},
157 {"8byte", s_uacons
, 8},
158 {"register", s_register
, 0},
163 /* This array holds the chars that always start a comment. If the
164 pre-processor is disabled, these aren't very useful. */
165 const char comment_chars
[] = "!"; /* JF removed '|' from
168 /* This array holds the chars that only start a comment at the beginning of
169 a line. If the line seems to have the form '# 123 filename'
170 .line and .file directives will appear in the pre-processed output. */
171 /* Note that input_file.c hand checks for '#' at the beginning of the
172 first line of the input file. This is because the compiler outputs
173 #NO_APP at the beginning of its output. */
174 /* Also note that comments started like this one will always
175 work if '/' isn't otherwise defined. */
176 const char line_comment_chars
[] = "#";
178 const char line_separator_chars
[] = ";";
180 /* Chars that can be used to separate mant from exp in floating point
182 const char EXP_CHARS
[] = "eE";
184 /* Chars that mean this number is a floating point constant.
187 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
189 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
190 changed in read.c. Ideally it shouldn't have to know about it at all,
191 but nothing is ideal around here. */
193 #define isoctal(c) ((unsigned) ((c) - '0') < 8)
198 unsigned long opcode
;
199 struct nlist
*nlistp
;
203 bfd_reloc_code_real_type reloc
;
206 struct sparc_it the_insn
, set_insn
;
208 static void output_insn (const struct sparc_opcode
*, struct sparc_it
*);
210 /* Table of arguments to -A.
211 The sparc_opcode_arch table in sparc-opc.c is insufficient and incorrect
212 for this use. That table is for opcodes only. This table is for opcodes
215 enum sparc_arch_types
{v6
, v7
, v8
, sparclet
, sparclite
, sparc86x
, v8plus
,
216 v8plusa
, v9
, v9a
, v9b
, v9_64
};
218 static struct sparc_arch
{
221 enum sparc_arch_types arch_type
;
222 /* Default word size, as specified during configuration.
223 A value of zero means can't be used to specify default architecture. */
224 int default_arch_size
;
225 /* Allowable arg to -A? */
227 } sparc_arch_table
[] = {
228 { "v6", "v6", v6
, 0, 1 },
229 { "v7", "v7", v7
, 0, 1 },
230 { "v8", "v8", v8
, 32, 1 },
231 { "sparclet", "sparclet", sparclet
, 32, 1 },
232 { "sparclite", "sparclite", sparclite
, 32, 1 },
233 { "sparc86x", "sparclite", sparc86x
, 32, 1 },
234 { "v8plus", "v9", v9
, 0, 1 },
235 { "v8plusa", "v9a", v9
, 0, 1 },
236 { "v8plusb", "v9b", v9
, 0, 1 },
237 { "v9", "v9", v9
, 0, 1 },
238 { "v9a", "v9a", v9
, 0, 1 },
239 { "v9b", "v9b", v9
, 0, 1 },
240 /* This exists to allow configure.in/Makefile.in to pass one
241 value to specify both the default machine and default word size. */
242 { "v9-64", "v9", v9
, 64, 0 },
243 { NULL
, NULL
, v8
, 0, 0 }
246 /* Variant of default_arch */
247 static enum sparc_arch_types default_arch_type
;
249 static struct sparc_arch
*
250 lookup_arch (char *name
)
252 struct sparc_arch
*sa
;
254 for (sa
= &sparc_arch_table
[0]; sa
->name
!= NULL
; sa
++)
255 if (strcmp (sa
->name
, name
) == 0)
257 if (sa
->name
== NULL
)
262 /* Initialize the default opcode arch and word size from the default
263 architecture name. */
266 init_default_arch (void)
268 struct sparc_arch
*sa
= lookup_arch (default_arch
);
271 || sa
->default_arch_size
== 0)
272 as_fatal (_("Invalid default architecture, broken assembler."));
274 max_architecture
= sparc_opcode_lookup_arch (sa
->opcode_arch
);
275 if (max_architecture
== SPARC_OPCODE_ARCH_BAD
)
276 as_fatal (_("Bad opcode table, broken assembler."));
277 default_arch_size
= sparc_arch_size
= sa
->default_arch_size
;
279 default_arch_type
= sa
->arch_type
;
282 /* Called by TARGET_FORMAT. */
285 sparc_target_format (void)
287 /* We don't get a chance to initialize anything before we're called,
288 so handle that now. */
289 if (! default_init_p
)
290 init_default_arch ();
294 return "a.out-sparc-netbsd";
297 if (target_big_endian
)
298 return "a.out-sunos-big";
299 else if (default_arch_type
== sparc86x
&& target_little_endian_data
)
300 return "a.out-sunos-big";
302 return "a.out-sparc-little";
304 return "a.out-sunos-big";
315 return "coff-sparc-lynx";
322 return "elf32-sparc-vxworks";
326 return sparc_arch_size
== 64 ? ELF64_TARGET_FORMAT
: ELF_TARGET_FORMAT
;
333 * Invocation line includes a switch not recognized by the base assembler.
334 * See if it's a processor-specific option. These are:
337 * Warn on architecture bumps. See also -A.
339 * -Av6, -Av7, -Av8, -Asparclite, -Asparclet
340 * Standard 32 bit architectures.
342 * Sparc64 in either a 32 or 64 bit world (-32/-64 says which).
343 * This used to only mean 64 bits, but properly specifying it
344 * complicated gcc's ASM_SPECs, so now opcode selection is
345 * specified orthogonally to word size (except when specifying
346 * the default, but that is an internal implementation detail).
347 * -Av8plus, -Av8plusa, -Av8plusb
348 * Same as -Av9{,a,b}.
349 * -xarch=v8plus, -xarch=v8plusa, -xarch=v8plusb
350 * Same as -Av8plus{,a,b} -32, for compatibility with Sun's
352 * -xarch=v9, -xarch=v9a, -xarch=v9b
353 * Same as -Av9{,a,b} -64, for compatibility with Sun's
356 * Select the architecture and possibly the file format.
357 * Instructions or features not supported by the selected
358 * architecture cause fatal errors.
360 * The default is to start at v6, and bump the architecture up
361 * whenever an instruction is seen at a higher level. In 32 bit
362 * environments, v9 is not bumped up to, the user must pass
365 * If -bump is specified, a warning is printing when bumping to
368 * If an architecture is specified, all instructions must match
369 * that architecture. Any higher level instructions are flagged
370 * as errors. Note that in the 32 bit environment specifying
371 * -Av8plus does not automatically create a v8plus object file, a
372 * v9 insn must be seen.
374 * If both an architecture and -bump are specified, the
375 * architecture starts at the specified level, but bumps are
376 * warnings. Note that we can't set `current_architecture' to
377 * the requested level in this case: in the 32 bit environment,
378 * we still must avoid creating v8plus object files unless v9
382 * Bumping between incompatible architectures is always an
383 * error. For example, from sparclite to v9.
387 const char *md_shortopts
= "A:K:VQ:sq";
390 const char *md_shortopts
= "A:k";
392 const char *md_shortopts
= "A:";
395 struct option md_longopts
[] = {
396 #define OPTION_BUMP (OPTION_MD_BASE)
397 {"bump", no_argument
, NULL
, OPTION_BUMP
},
398 #define OPTION_SPARC (OPTION_MD_BASE + 1)
399 {"sparc", no_argument
, NULL
, OPTION_SPARC
},
400 #define OPTION_XARCH (OPTION_MD_BASE + 2)
401 {"xarch", required_argument
, NULL
, OPTION_XARCH
},
403 #define OPTION_32 (OPTION_MD_BASE + 3)
404 {"32", no_argument
, NULL
, OPTION_32
},
405 #define OPTION_64 (OPTION_MD_BASE + 4)
406 {"64", no_argument
, NULL
, OPTION_64
},
407 #define OPTION_TSO (OPTION_MD_BASE + 5)
408 {"TSO", no_argument
, NULL
, OPTION_TSO
},
409 #define OPTION_PSO (OPTION_MD_BASE + 6)
410 {"PSO", no_argument
, NULL
, OPTION_PSO
},
411 #define OPTION_RMO (OPTION_MD_BASE + 7)
412 {"RMO", no_argument
, NULL
, OPTION_RMO
},
414 #ifdef SPARC_BIENDIAN
415 #define OPTION_LITTLE_ENDIAN (OPTION_MD_BASE + 8)
416 {"EL", no_argument
, NULL
, OPTION_LITTLE_ENDIAN
},
417 #define OPTION_BIG_ENDIAN (OPTION_MD_BASE + 9)
418 {"EB", no_argument
, NULL
, OPTION_BIG_ENDIAN
},
420 #define OPTION_ENFORCE_ALIGNED_DATA (OPTION_MD_BASE + 10)
421 {"enforce-aligned-data", no_argument
, NULL
, OPTION_ENFORCE_ALIGNED_DATA
},
422 #define OPTION_LITTLE_ENDIAN_DATA (OPTION_MD_BASE + 11)
423 {"little-endian-data", no_argument
, NULL
, OPTION_LITTLE_ENDIAN_DATA
},
425 #define OPTION_NO_UNDECLARED_REGS (OPTION_MD_BASE + 12)
426 {"no-undeclared-regs", no_argument
, NULL
, OPTION_NO_UNDECLARED_REGS
},
427 #define OPTION_UNDECLARED_REGS (OPTION_MD_BASE + 13)
428 {"undeclared-regs", no_argument
, NULL
, OPTION_UNDECLARED_REGS
},
430 #define OPTION_RELAX (OPTION_MD_BASE + 14)
431 {"relax", no_argument
, NULL
, OPTION_RELAX
},
432 #define OPTION_NO_RELAX (OPTION_MD_BASE + 15)
433 {"no-relax", no_argument
, NULL
, OPTION_NO_RELAX
},
434 {NULL
, no_argument
, NULL
, 0}
437 size_t md_longopts_size
= sizeof (md_longopts
);
440 md_parse_option (int c
, char *arg
)
442 /* We don't get a chance to initialize anything before we're called,
443 so handle that now. */
444 if (! default_init_p
)
445 init_default_arch ();
451 warn_after_architecture
= SPARC_OPCODE_ARCH_V6
;
456 if (strncmp (arg
, "v9", 2) != 0)
457 md_parse_option (OPTION_32
, NULL
);
459 md_parse_option (OPTION_64
, NULL
);
465 struct sparc_arch
*sa
;
466 enum sparc_opcode_arch_val opcode_arch
;
468 sa
= lookup_arch (arg
);
470 || ! sa
->user_option_p
)
472 if (c
== OPTION_XARCH
)
473 as_bad (_("invalid architecture -xarch=%s"), arg
);
475 as_bad (_("invalid architecture -A%s"), arg
);
479 opcode_arch
= sparc_opcode_lookup_arch (sa
->opcode_arch
);
480 if (opcode_arch
== SPARC_OPCODE_ARCH_BAD
)
481 as_fatal (_("Bad opcode table, broken assembler."));
483 max_architecture
= opcode_arch
;
484 architecture_requested
= 1;
489 /* Ignore -sparc, used by SunOS make default .s.o rule. */
492 case OPTION_ENFORCE_ALIGNED_DATA
:
493 enforce_aligned_data
= 1;
496 #ifdef SPARC_BIENDIAN
497 case OPTION_LITTLE_ENDIAN
:
498 target_big_endian
= 0;
499 if (default_arch_type
!= sparclet
)
500 as_fatal ("This target does not support -EL");
502 case OPTION_LITTLE_ENDIAN_DATA
:
503 target_little_endian_data
= 1;
504 target_big_endian
= 0;
505 if (default_arch_type
!= sparc86x
506 && default_arch_type
!= v9
)
507 as_fatal ("This target does not support --little-endian-data");
509 case OPTION_BIG_ENDIAN
:
510 target_big_endian
= 1;
524 const char **list
, **l
;
526 sparc_arch_size
= c
== OPTION_32
? 32 : 64;
527 list
= bfd_target_list ();
528 for (l
= list
; *l
!= NULL
; l
++)
530 if (sparc_arch_size
== 32)
532 if (CONST_STRNEQ (*l
, "elf32-sparc"))
537 if (CONST_STRNEQ (*l
, "elf64-sparc"))
542 as_fatal (_("No compiled in support for %d bit object file format"),
546 if (sparc_arch_size
== 64
547 && max_architecture
< SPARC_OPCODE_ARCH_V9
)
548 max_architecture
= SPARC_OPCODE_ARCH_V9
;
553 sparc_memory_model
= MM_TSO
;
557 sparc_memory_model
= MM_PSO
;
561 sparc_memory_model
= MM_RMO
;
569 /* Qy - do emit .comment
570 Qn - do not emit .comment. */
574 /* Use .stab instead of .stab.excl. */
578 /* quick -- Native assembler does fewer checks. */
582 if (strcmp (arg
, "PIC") != 0)
583 as_warn (_("Unrecognized option following -K"));
588 case OPTION_NO_UNDECLARED_REGS
:
589 no_undeclared_regs
= 1;
592 case OPTION_UNDECLARED_REGS
:
593 no_undeclared_regs
= 0;
601 case OPTION_NO_RELAX
:
613 md_show_usage (FILE *stream
)
615 const struct sparc_arch
*arch
;
618 /* We don't get a chance to initialize anything before we're called,
619 so handle that now. */
620 if (! default_init_p
)
621 init_default_arch ();
623 fprintf (stream
, _("SPARC options:\n"));
625 for (arch
= &sparc_arch_table
[0]; arch
->name
; arch
++)
627 if (!arch
->user_option_p
)
629 if (arch
!= &sparc_arch_table
[0])
630 fprintf (stream
, " | ");
631 if (column
+ strlen (arch
->name
) > 70)
634 fputc ('\n', stream
);
636 column
+= 5 + 2 + strlen (arch
->name
);
637 fprintf (stream
, "-A%s", arch
->name
);
639 for (arch
= &sparc_arch_table
[0]; arch
->name
; arch
++)
641 if (!arch
->user_option_p
)
643 fprintf (stream
, " | ");
644 if (column
+ strlen (arch
->name
) > 65)
647 fputc ('\n', stream
);
649 column
+= 5 + 7 + strlen (arch
->name
);
650 fprintf (stream
, "-xarch=%s", arch
->name
);
652 fprintf (stream
, _("\n\
653 specify variant of SPARC architecture\n\
654 -bump warn when assembler switches architectures\n\
656 --enforce-aligned-data force .long, etc., to be aligned correctly\n\
657 -relax relax jumps and branches (default)\n\
658 -no-relax avoid changing any jumps and branches\n"));
660 fprintf (stream
, _("\
661 -k generate PIC\n"));
664 fprintf (stream
, _("\
665 -32 create 32 bit object file\n\
666 -64 create 64 bit object file\n"));
667 fprintf (stream
, _("\
668 [default is %d]\n"), default_arch_size
);
669 fprintf (stream
, _("\
670 -TSO use Total Store Ordering\n\
671 -PSO use Partial Store Ordering\n\
672 -RMO use Relaxed Memory Ordering\n"));
673 fprintf (stream
, _("\
674 [default is %s]\n"), (default_arch_size
== 64) ? "RMO" : "TSO");
675 fprintf (stream
, _("\
676 -KPIC generate PIC\n\
677 -V print assembler version number\n\
678 -undeclared-regs ignore application global register usage without\n\
679 appropriate .register directive (default)\n\
680 -no-undeclared-regs force error on application global register usage\n\
681 without appropriate .register directive\n\
686 #ifdef SPARC_BIENDIAN
687 fprintf (stream
, _("\
688 -EL generate code for a little endian machine\n\
689 -EB generate code for a big endian machine\n\
690 --little-endian-data generate code for a machine having big endian\n\
691 instructions and little endian data.\n"));
695 /* Native operand size opcode translation. */
701 } native_op_table
[] =
703 {"ldn", "ld", "ldx"},
704 {"ldna", "lda", "ldxa"},
705 {"stn", "st", "stx"},
706 {"stna", "sta", "stxa"},
707 {"slln", "sll", "sllx"},
708 {"srln", "srl", "srlx"},
709 {"sran", "sra", "srax"},
710 {"casn", "cas", "casx"},
711 {"casna", "casa", "casxa"},
712 {"clrn", "clr", "clrx"},
716 /* sparc64 privileged and hyperprivileged registers. */
718 struct priv_reg_entry
724 struct priv_reg_entry priv_reg_table
[] =
744 {"", -1}, /* End marker. */
747 struct priv_reg_entry hpriv_reg_table
[] =
755 {"", -1}, /* End marker. */
758 /* v9a specific asrs. This table is ordered by initial
759 letter, in reverse. */
761 struct priv_reg_entry v9a_asr_table
[] =
764 {"sys_tick_cmpr", 25},
768 {"softint_clear", 21},
776 {"clear_softint", 21},
777 {"", -1}, /* End marker. */
781 cmp_reg_entry (const void *parg
, const void *qarg
)
783 const struct priv_reg_entry
*p
= (const struct priv_reg_entry
*) parg
;
784 const struct priv_reg_entry
*q
= (const struct priv_reg_entry
*) qarg
;
786 return strcmp (q
->name
, p
->name
);
789 /* This function is called once, at assembler startup time. It should
790 set up all the tables, etc. that the MD part of the assembler will
796 register const char *retval
= NULL
;
798 register unsigned int i
= 0;
800 /* We don't get a chance to initialize anything before md_parse_option
801 is called, and it may not be called, so handle default initialization
802 now if not already done. */
803 if (! default_init_p
)
804 init_default_arch ();
806 sparc_cie_data_alignment
= sparc_arch_size
== 64 ? -8 : -4;
807 op_hash
= hash_new ();
809 while (i
< (unsigned int) sparc_num_opcodes
)
811 const char *name
= sparc_opcodes
[i
].name
;
812 retval
= hash_insert (op_hash
, name
, (void *) &sparc_opcodes
[i
]);
815 as_bad (_("Internal error: can't hash `%s': %s\n"),
816 sparc_opcodes
[i
].name
, retval
);
821 if (sparc_opcodes
[i
].match
& sparc_opcodes
[i
].lose
)
823 as_bad (_("Internal error: losing opcode: `%s' \"%s\"\n"),
824 sparc_opcodes
[i
].name
, sparc_opcodes
[i
].args
);
829 while (i
< (unsigned int) sparc_num_opcodes
830 && !strcmp (sparc_opcodes
[i
].name
, name
));
833 for (i
= 0; native_op_table
[i
].name
; i
++)
835 const struct sparc_opcode
*insn
;
836 char *name
= ((sparc_arch_size
== 32)
837 ? native_op_table
[i
].name32
838 : native_op_table
[i
].name64
);
839 insn
= (struct sparc_opcode
*) hash_find (op_hash
, name
);
842 as_bad (_("Internal error: can't find opcode `%s' for `%s'\n"),
843 name
, native_op_table
[i
].name
);
848 retval
= hash_insert (op_hash
, native_op_table
[i
].name
,
852 as_bad (_("Internal error: can't hash `%s': %s\n"),
853 sparc_opcodes
[i
].name
, retval
);
860 as_fatal (_("Broken assembler. No assembly attempted."));
862 qsort (priv_reg_table
, sizeof (priv_reg_table
) / sizeof (priv_reg_table
[0]),
863 sizeof (priv_reg_table
[0]), cmp_reg_entry
);
865 /* If -bump, record the architecture level at which we start issuing
866 warnings. The behaviour is different depending upon whether an
867 architecture was explicitly specified. If it wasn't, we issue warnings
868 for all upwards bumps. If it was, we don't start issuing warnings until
869 we need to bump beyond the requested architecture or when we bump between
870 conflicting architectures. */
873 && architecture_requested
)
875 /* `max_architecture' records the requested architecture.
876 Issue warnings if we go above it. */
877 warn_after_architecture
= max_architecture
;
879 /* Find the highest architecture level that doesn't conflict with
880 the requested one. */
881 for (max_architecture
= SPARC_OPCODE_ARCH_MAX
;
882 max_architecture
> warn_after_architecture
;
884 if (! SPARC_OPCODE_CONFLICT_P (max_architecture
,
885 warn_after_architecture
))
890 /* Called after all assembly has been done. */
895 unsigned long mach
= bfd_mach_sparc
;
897 if (sparc_arch_size
== 64)
898 switch (current_architecture
)
900 case SPARC_OPCODE_ARCH_V9A
: mach
= bfd_mach_sparc_v9a
; break;
901 case SPARC_OPCODE_ARCH_V9B
: mach
= bfd_mach_sparc_v9b
; break;
902 default: mach
= bfd_mach_sparc_v9
; break;
905 switch (current_architecture
)
907 case SPARC_OPCODE_ARCH_SPARCLET
: mach
= bfd_mach_sparc_sparclet
; break;
908 case SPARC_OPCODE_ARCH_V9
: mach
= bfd_mach_sparc_v8plus
; break;
909 case SPARC_OPCODE_ARCH_V9A
: mach
= bfd_mach_sparc_v8plusa
; break;
910 case SPARC_OPCODE_ARCH_V9B
: mach
= bfd_mach_sparc_v8plusb
; break;
911 /* The sparclite is treated like a normal sparc. Perhaps it shouldn't
912 be but for now it is (since that's the way it's always been
916 bfd_set_arch_mach (stdoutput
, bfd_arch_sparc
, mach
);
919 /* Return non-zero if VAL is in the range -(MAX+1) to MAX. */
922 in_signed_range (bfd_signed_vma val
, bfd_signed_vma max
)
926 /* Sign-extend the value from the architecture word size, so that
927 0xffffffff is always considered -1 on sparc32. */
928 if (sparc_arch_size
== 32)
930 bfd_signed_vma sign
= (bfd_signed_vma
) 1 << 31;
931 val
= ((val
& U0xffffffff
) ^ sign
) - sign
;
940 /* Return non-zero if VAL is in the range 0 to MAX. */
943 in_unsigned_range (bfd_vma val
, bfd_vma max
)
950 /* Return non-zero if VAL is in the range -(MAX/2+1) to MAX.
951 (e.g. -15 to +31). */
954 in_bitfield_range (bfd_signed_vma val
, bfd_signed_vma max
)
960 if (val
< ~(max
>> 1))
966 sparc_ffs (unsigned int mask
)
973 for (i
= 0; (mask
& 1) == 0; ++i
)
978 /* Implement big shift right. */
980 BSR (bfd_vma val
, int amount
)
982 if (sizeof (bfd_vma
) <= 4 && amount
>= 32)
983 as_fatal (_("Support for 64-bit arithmetic not compiled in."));
984 return val
>> amount
;
987 /* For communication between sparc_ip and get_expression. */
988 static char *expr_end
;
990 /* Values for `special_case'.
991 Instructions that require wierd handling because they're longer than
993 #define SPECIAL_CASE_NONE 0
994 #define SPECIAL_CASE_SET 1
995 #define SPECIAL_CASE_SETSW 2
996 #define SPECIAL_CASE_SETX 3
997 /* FIXME: sparc-opc.c doesn't have necessary "S" trigger to enable this. */
998 #define SPECIAL_CASE_FDIV 4
1000 /* Bit masks of various insns. */
1001 #define NOP_INSN 0x01000000
1002 #define OR_INSN 0x80100000
1003 #define XOR_INSN 0x80180000
1004 #define FMOVS_INSN 0x81A00020
1005 #define SETHI_INSN 0x01000000
1006 #define SLLX_INSN 0x81281000
1007 #define SRA_INSN 0x81380000
1009 /* The last instruction to be assembled. */
1010 static const struct sparc_opcode
*last_insn
;
1011 /* The assembled opcode of `last_insn'. */
1012 static unsigned long last_opcode
;
1014 /* Handle the set and setuw synthetic instructions. */
1017 synthetize_setuw (const struct sparc_opcode
*insn
)
1019 int need_hi22_p
= 0;
1020 int rd
= (the_insn
.opcode
& RD (~0)) >> 25;
1022 if (the_insn
.exp
.X_op
== O_constant
)
1024 if (SPARC_OPCODE_ARCH_V9_P (max_architecture
))
1026 if (sizeof (offsetT
) > 4
1027 && (the_insn
.exp
.X_add_number
< 0
1028 || the_insn
.exp
.X_add_number
> (offsetT
) U0xffffffff
))
1029 as_warn (_("set: number not in 0..4294967295 range"));
1033 if (sizeof (offsetT
) > 4
1034 && (the_insn
.exp
.X_add_number
< -(offsetT
) U0x80000000
1035 || the_insn
.exp
.X_add_number
> (offsetT
) U0xffffffff
))
1036 as_warn (_("set: number not in -2147483648..4294967295 range"));
1037 the_insn
.exp
.X_add_number
= (int) the_insn
.exp
.X_add_number
;
1041 /* See if operand is absolute and small; skip sethi if so. */
1042 if (the_insn
.exp
.X_op
!= O_constant
1043 || the_insn
.exp
.X_add_number
>= (1 << 12)
1044 || the_insn
.exp
.X_add_number
< -(1 << 12))
1046 the_insn
.opcode
= (SETHI_INSN
| RD (rd
)
1047 | ((the_insn
.exp
.X_add_number
>> 10)
1048 & (the_insn
.exp
.X_op
== O_constant
1050 the_insn
.reloc
= (the_insn
.exp
.X_op
!= O_constant
1051 ? BFD_RELOC_HI22
: BFD_RELOC_NONE
);
1052 output_insn (insn
, &the_insn
);
1056 /* See if operand has no low-order bits; skip OR if so. */
1057 if (the_insn
.exp
.X_op
!= O_constant
1058 || (need_hi22_p
&& (the_insn
.exp
.X_add_number
& 0x3FF) != 0)
1061 the_insn
.opcode
= (OR_INSN
| (need_hi22_p
? RS1 (rd
) : 0)
1063 | (the_insn
.exp
.X_add_number
1064 & (the_insn
.exp
.X_op
!= O_constant
1065 ? 0 : need_hi22_p
? 0x3ff : 0x1fff)));
1066 the_insn
.reloc
= (the_insn
.exp
.X_op
!= O_constant
1067 ? BFD_RELOC_LO10
: BFD_RELOC_NONE
);
1068 output_insn (insn
, &the_insn
);
1072 /* Handle the setsw synthetic instruction. */
1075 synthetize_setsw (const struct sparc_opcode
*insn
)
1079 rd
= (the_insn
.opcode
& RD (~0)) >> 25;
1081 if (the_insn
.exp
.X_op
!= O_constant
)
1083 synthetize_setuw (insn
);
1085 /* Need to sign extend it. */
1086 the_insn
.opcode
= (SRA_INSN
| RS1 (rd
) | RD (rd
));
1087 the_insn
.reloc
= BFD_RELOC_NONE
;
1088 output_insn (insn
, &the_insn
);
1092 if (sizeof (offsetT
) > 4
1093 && (the_insn
.exp
.X_add_number
< -(offsetT
) U0x80000000
1094 || the_insn
.exp
.X_add_number
> (offsetT
) U0xffffffff
))
1095 as_warn (_("setsw: number not in -2147483648..4294967295 range"));
1097 low32
= the_insn
.exp
.X_add_number
;
1101 synthetize_setuw (insn
);
1107 the_insn
.reloc
= BFD_RELOC_NONE
;
1108 /* See if operand is absolute and small; skip sethi if so. */
1109 if (low32
< -(1 << 12))
1111 the_insn
.opcode
= (SETHI_INSN
| RD (rd
)
1112 | (((~the_insn
.exp
.X_add_number
) >> 10) & 0x3fffff));
1113 output_insn (insn
, &the_insn
);
1114 low32
= 0x1c00 | (low32
& 0x3ff);
1115 opc
= RS1 (rd
) | XOR_INSN
;
1118 the_insn
.opcode
= (opc
| RD (rd
) | IMMED
1119 | (low32
& 0x1fff));
1120 output_insn (insn
, &the_insn
);
1123 /* Handle the setsw synthetic instruction. */
1126 synthetize_setx (const struct sparc_opcode
*insn
)
1128 int upper32
, lower32
;
1129 int tmpreg
= (the_insn
.opcode
& RS1 (~0)) >> 14;
1130 int dstreg
= (the_insn
.opcode
& RD (~0)) >> 25;
1132 int need_hh22_p
= 0, need_hm10_p
= 0, need_hi22_p
= 0, need_lo10_p
= 0;
1133 int need_xor10_p
= 0;
1135 #define SIGNEXT32(x) ((((x) & U0xffffffff) ^ U0x80000000) - U0x80000000)
1136 lower32
= SIGNEXT32 (the_insn
.exp
.X_add_number
);
1137 upper32
= SIGNEXT32 (BSR (the_insn
.exp
.X_add_number
, 32));
1140 upper_dstreg
= tmpreg
;
1141 /* The tmp reg should not be the dst reg. */
1142 if (tmpreg
== dstreg
)
1143 as_warn (_("setx: temporary register same as destination register"));
1145 /* ??? Obviously there are other optimizations we can do
1146 (e.g. sethi+shift for 0x1f0000000) and perhaps we shouldn't be
1147 doing some of these. Later. If you do change things, try to
1148 change all of this to be table driven as well. */
1149 /* What to output depends on the number if it's constant.
1150 Compute that first, then output what we've decided upon. */
1151 if (the_insn
.exp
.X_op
!= O_constant
)
1153 if (sparc_arch_size
== 32)
1155 /* When arch size is 32, we want setx to be equivalent
1156 to setuw for anything but constants. */
1157 the_insn
.exp
.X_add_number
&= 0xffffffff;
1158 synthetize_setuw (insn
);
1161 need_hh22_p
= need_hm10_p
= need_hi22_p
= need_lo10_p
= 1;
1167 /* Reset X_add_number, we've extracted it as upper32/lower32.
1168 Otherwise fixup_segment will complain about not being able to
1169 write an 8 byte number in a 4 byte field. */
1170 the_insn
.exp
.X_add_number
= 0;
1172 /* Only need hh22 if `or' insn can't handle constant. */
1173 if (upper32
< -(1 << 12) || upper32
>= (1 << 12))
1176 /* Does bottom part (after sethi) have bits? */
1177 if ((need_hh22_p
&& (upper32
& 0x3ff) != 0)
1178 /* No hh22, but does upper32 still have bits we can't set
1180 || (! need_hh22_p
&& upper32
!= 0 && upper32
!= -1))
1183 /* If the lower half is all zero, we build the upper half directly
1184 into the dst reg. */
1186 /* Need lower half if number is zero or 0xffffffff00000000. */
1187 || (! need_hh22_p
&& ! need_hm10_p
))
1189 /* No need for sethi if `or' insn can handle constant. */
1190 if (lower32
< -(1 << 12) || lower32
>= (1 << 12)
1191 /* Note that we can't use a negative constant in the `or'
1192 insn unless the upper 32 bits are all ones. */
1193 || (lower32
< 0 && upper32
!= -1)
1194 || (lower32
>= 0 && upper32
== -1))
1197 if (need_hi22_p
&& upper32
== -1)
1200 /* Does bottom part (after sethi) have bits? */
1201 else if ((need_hi22_p
&& (lower32
& 0x3ff) != 0)
1203 || (! need_hi22_p
&& (lower32
& 0x1fff) != 0)
1204 /* Need `or' if we didn't set anything else. */
1205 || (! need_hi22_p
&& ! need_hh22_p
&& ! need_hm10_p
))
1209 /* Output directly to dst reg if lower 32 bits are all zero. */
1210 upper_dstreg
= dstreg
;
1213 if (!upper_dstreg
&& dstreg
)
1214 as_warn (_("setx: illegal temporary register g0"));
1218 the_insn
.opcode
= (SETHI_INSN
| RD (upper_dstreg
)
1219 | ((upper32
>> 10) & 0x3fffff));
1220 the_insn
.reloc
= (the_insn
.exp
.X_op
!= O_constant
1221 ? BFD_RELOC_SPARC_HH22
: BFD_RELOC_NONE
);
1222 output_insn (insn
, &the_insn
);
1227 the_insn
.opcode
= (SETHI_INSN
| RD (dstreg
)
1228 | (((need_xor10_p
? ~lower32
: lower32
)
1229 >> 10) & 0x3fffff));
1230 the_insn
.reloc
= (the_insn
.exp
.X_op
!= O_constant
1231 ? BFD_RELOC_SPARC_LM22
: BFD_RELOC_NONE
);
1232 output_insn (insn
, &the_insn
);
1237 the_insn
.opcode
= (OR_INSN
1238 | (need_hh22_p
? RS1 (upper_dstreg
) : 0)
1241 | (upper32
& (need_hh22_p
? 0x3ff : 0x1fff)));
1242 the_insn
.reloc
= (the_insn
.exp
.X_op
!= O_constant
1243 ? BFD_RELOC_SPARC_HM10
: BFD_RELOC_NONE
);
1244 output_insn (insn
, &the_insn
);
1249 /* FIXME: One nice optimization to do here is to OR the low part
1250 with the highpart if hi22 isn't needed and the low part is
1252 the_insn
.opcode
= (OR_INSN
| (need_hi22_p
? RS1 (dstreg
) : 0)
1255 | (lower32
& (need_hi22_p
? 0x3ff : 0x1fff)));
1256 the_insn
.reloc
= (the_insn
.exp
.X_op
!= O_constant
1257 ? BFD_RELOC_LO10
: BFD_RELOC_NONE
);
1258 output_insn (insn
, &the_insn
);
1261 /* If we needed to build the upper part, shift it into place. */
1262 if (need_hh22_p
|| need_hm10_p
)
1264 the_insn
.opcode
= (SLLX_INSN
| RS1 (upper_dstreg
) | RD (upper_dstreg
)
1266 the_insn
.reloc
= BFD_RELOC_NONE
;
1267 output_insn (insn
, &the_insn
);
1270 /* To get -1 in upper32, we do sethi %hi(~x), r; xor r, -0x400 | x, r. */
1273 the_insn
.opcode
= (XOR_INSN
| RS1 (dstreg
) | RD (dstreg
) | IMMED
1274 | 0x1c00 | (lower32
& 0x3ff));
1275 the_insn
.reloc
= BFD_RELOC_NONE
;
1276 output_insn (insn
, &the_insn
);
1279 /* If we needed to build both upper and lower parts, OR them together. */
1280 else if ((need_hh22_p
|| need_hm10_p
) && (need_hi22_p
|| need_lo10_p
))
1282 the_insn
.opcode
= (OR_INSN
| RS1 (dstreg
) | RS2 (upper_dstreg
)
1284 the_insn
.reloc
= BFD_RELOC_NONE
;
1285 output_insn (insn
, &the_insn
);
1289 /* Main entry point to assemble one instruction. */
1292 md_assemble (char *str
)
1294 const struct sparc_opcode
*insn
;
1298 special_case
= sparc_ip (str
, &insn
);
1302 /* We warn about attempts to put a floating point branch in a delay slot,
1303 unless the delay slot has been annulled. */
1304 if (last_insn
!= NULL
1305 && (insn
->flags
& F_FBR
) != 0
1306 && (last_insn
->flags
& F_DELAYED
) != 0
1307 /* ??? This test isn't completely accurate. We assume anything with
1308 F_{UNBR,CONDBR,FBR} set is annullable. */
1309 && ((last_insn
->flags
& (F_UNBR
| F_CONDBR
| F_FBR
)) == 0
1310 || (last_opcode
& ANNUL
) == 0))
1311 as_warn (_("FP branch in delay slot"));
1313 /* SPARC before v9 requires a nop instruction between a floating
1314 point instruction and a floating point branch. We insert one
1315 automatically, with a warning. */
1316 if (max_architecture
< SPARC_OPCODE_ARCH_V9
1317 && last_insn
!= NULL
1318 && (insn
->flags
& F_FBR
) != 0
1319 && (last_insn
->flags
& F_FLOAT
) != 0)
1321 struct sparc_it nop_insn
;
1323 nop_insn
.opcode
= NOP_INSN
;
1324 nop_insn
.reloc
= BFD_RELOC_NONE
;
1325 output_insn (insn
, &nop_insn
);
1326 as_warn (_("FP branch preceded by FP instruction; NOP inserted"));
1329 switch (special_case
)
1331 case SPECIAL_CASE_NONE
:
1333 output_insn (insn
, &the_insn
);
1336 case SPECIAL_CASE_SETSW
:
1337 synthetize_setsw (insn
);
1340 case SPECIAL_CASE_SET
:
1341 synthetize_setuw (insn
);
1344 case SPECIAL_CASE_SETX
:
1345 synthetize_setx (insn
);
1348 case SPECIAL_CASE_FDIV
:
1350 int rd
= (the_insn
.opcode
>> 25) & 0x1f;
1352 output_insn (insn
, &the_insn
);
1354 /* According to information leaked from Sun, the "fdiv" instructions
1355 on early SPARC machines would produce incorrect results sometimes.
1356 The workaround is to add an fmovs of the destination register to
1357 itself just after the instruction. This was true on machines
1358 with Weitek 1165 float chips, such as the Sun-4/260 and /280. */
1359 gas_assert (the_insn
.reloc
== BFD_RELOC_NONE
);
1360 the_insn
.opcode
= FMOVS_INSN
| rd
| RD (rd
);
1361 output_insn (insn
, &the_insn
);
1366 as_fatal (_("failed special case insn sanity check"));
1370 /* Subroutine of md_assemble to do the actual parsing. */
1373 sparc_ip (char *str
, const struct sparc_opcode
**pinsn
)
1375 char *error_message
= "";
1379 const struct sparc_opcode
*insn
;
1381 unsigned long opcode
;
1382 unsigned int mask
= 0;
1386 int special_case
= SPECIAL_CASE_NONE
;
1393 while (ISLOWER (*s
) || ISDIGIT (*s
));
1410 as_bad (_("Unknown opcode: `%s'"), str
);
1412 return special_case
;
1414 insn
= (struct sparc_opcode
*) hash_find (op_hash
, str
);
1418 as_bad (_("Unknown opcode: `%s'"), str
);
1419 return special_case
;
1429 opcode
= insn
->match
;
1430 memset (&the_insn
, '\0', sizeof (the_insn
));
1431 the_insn
.reloc
= BFD_RELOC_NONE
;
1434 /* Build the opcode, checking as we go to make sure that the
1436 for (args
= insn
->args
;; ++args
)
1444 /* Parse a series of masks. */
1451 if (! parse_keyword_arg (sparc_encode_membar
, &s
,
1454 error_message
= _(": invalid membar mask name");
1460 if (*s
== '|' || *s
== '+')
1468 if (! parse_const_expr_arg (&s
, &kmask
))
1470 error_message
= _(": invalid membar mask expression");
1473 if (kmask
< 0 || kmask
> 127)
1475 error_message
= _(": invalid membar mask number");
1480 opcode
|= MEMBAR (kmask
);
1488 if (! parse_const_expr_arg (&s
, &smask
))
1490 error_message
= _(": invalid siam mode expression");
1493 if (smask
< 0 || smask
> 7)
1495 error_message
= _(": invalid siam mode number");
1506 /* Parse a prefetch function. */
1509 if (! parse_keyword_arg (sparc_encode_prefetch
, &s
, &fcn
))
1511 error_message
= _(": invalid prefetch function name");
1517 if (! parse_const_expr_arg (&s
, &fcn
))
1519 error_message
= _(": invalid prefetch function expression");
1522 if (fcn
< 0 || fcn
> 31)
1524 error_message
= _(": invalid prefetch function number");
1534 /* Parse a sparc64 privileged register. */
1537 struct priv_reg_entry
*p
= priv_reg_table
;
1538 unsigned int len
= 9999999; /* Init to make gcc happy. */
1541 while (p
->name
[0] > s
[0])
1543 while (p
->name
[0] == s
[0])
1545 len
= strlen (p
->name
);
1546 if (strncmp (p
->name
, s
, len
) == 0)
1550 if (p
->name
[0] != s
[0])
1552 error_message
= _(": unrecognizable privileged register");
1556 opcode
|= (p
->regnum
<< 14);
1558 opcode
|= (p
->regnum
<< 25);
1564 error_message
= _(": unrecognizable privileged register");
1570 /* Parse a sparc64 hyperprivileged register. */
1573 struct priv_reg_entry
*p
= hpriv_reg_table
;
1574 unsigned int len
= 9999999; /* Init to make gcc happy. */
1577 while (p
->name
[0] > s
[0])
1579 while (p
->name
[0] == s
[0])
1581 len
= strlen (p
->name
);
1582 if (strncmp (p
->name
, s
, len
) == 0)
1586 if (p
->name
[0] != s
[0])
1588 error_message
= _(": unrecognizable hyperprivileged register");
1592 opcode
|= (p
->regnum
<< 14);
1594 opcode
|= (p
->regnum
<< 25);
1600 error_message
= _(": unrecognizable hyperprivileged register");
1606 /* Parse a v9a/v9b ancillary state register. */
1609 struct priv_reg_entry
*p
= v9a_asr_table
;
1610 unsigned int len
= 9999999; /* Init to make gcc happy. */
1613 while (p
->name
[0] > s
[0])
1615 while (p
->name
[0] == s
[0])
1617 len
= strlen (p
->name
);
1618 if (strncmp (p
->name
, s
, len
) == 0)
1622 if (p
->name
[0] != s
[0])
1624 error_message
= _(": unrecognizable v9a or v9b ancillary state register");
1627 if (*args
== '/' && (p
->regnum
== 20 || p
->regnum
== 21))
1629 error_message
= _(": rd on write only ancillary state register");
1633 && (insn
->architecture
1634 & SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9A
)))
1636 /* %sys_tick and %sys_tick_cmpr are v9bnotv9a */
1637 error_message
= _(": unrecognizable v9a ancillary state register");
1641 opcode
|= (p
->regnum
<< 14);
1643 opcode
|= (p
->regnum
<< 25);
1649 error_message
= _(": unrecognizable v9a or v9b ancillary state register");
1655 if (strncmp (s
, "%asr", 4) == 0)
1663 while (ISDIGIT (*s
))
1665 num
= num
* 10 + *s
- '0';
1669 if (current_architecture
>= SPARC_OPCODE_ARCH_V9
)
1671 if (num
< 16 || 31 < num
)
1673 error_message
= _(": asr number must be between 16 and 31");
1679 if (num
< 0 || 31 < num
)
1681 error_message
= _(": asr number must be between 0 and 31");
1686 opcode
|= (*args
== 'M' ? RS1 (num
) : RD (num
));
1691 error_message
= _(": expecting %asrN");
1698 the_insn
.reloc
= BFD_RELOC_SPARC_11
;
1702 the_insn
.reloc
= BFD_RELOC_SPARC_10
;
1706 /* V8 systems don't understand BFD_RELOC_SPARC_5. */
1707 if (SPARC_OPCODE_ARCH_V9_P (max_architecture
))
1708 the_insn
.reloc
= BFD_RELOC_SPARC_5
;
1710 the_insn
.reloc
= BFD_RELOC_SPARC13
;
1711 /* These fields are unsigned, but for upward compatibility,
1712 allow negative values as well. */
1716 /* V8 systems don't understand BFD_RELOC_SPARC_6. */
1717 if (SPARC_OPCODE_ARCH_V9_P (max_architecture
))
1718 the_insn
.reloc
= BFD_RELOC_SPARC_6
;
1720 the_insn
.reloc
= BFD_RELOC_SPARC13
;
1721 /* These fields are unsigned, but for upward compatibility,
1722 allow negative values as well. */
1726 the_insn
.reloc
= /* RELOC_WDISP2_14 */ BFD_RELOC_SPARC_WDISP16
;
1731 the_insn
.reloc
= BFD_RELOC_SPARC_WDISP19
;
1736 if (*s
== 'p' && s
[1] == 'n')
1744 if (*s
== 'p' && s
[1] == 't')
1756 if (strncmp (s
, "%icc", 4) == 0)
1768 if (strncmp (s
, "%xcc", 4) == 0)
1780 if (strncmp (s
, "%fcc0", 5) == 0)
1792 if (strncmp (s
, "%fcc1", 5) == 0)
1804 if (strncmp (s
, "%fcc2", 5) == 0)
1816 if (strncmp (s
, "%fcc3", 5) == 0)
1824 if (strncmp (s
, "%pc", 3) == 0)
1832 if (strncmp (s
, "%tick", 5) == 0)
1839 case '\0': /* End of args. */
1840 if (s
[0] == ',' && s
[1] == '%')
1842 static const struct ops
1844 /* The name as it appears in assembler. */
1846 /* strlen (name), precomputed for speed */
1848 /* The reloc this pseudo-op translates to. */
1850 /* 1 if tls call. */
1855 { "tgd_add", 7, BFD_RELOC_SPARC_TLS_GD_ADD
, 0 },
1856 { "tgd_call", 8, BFD_RELOC_SPARC_TLS_GD_CALL
, 1 },
1857 { "tldm_add", 8, BFD_RELOC_SPARC_TLS_LDM_ADD
, 0 },
1858 { "tldm_call", 9, BFD_RELOC_SPARC_TLS_LDM_CALL
, 1 },
1859 { "tldo_add", 8, BFD_RELOC_SPARC_TLS_LDO_ADD
, 0 },
1860 { "tie_ldx", 7, BFD_RELOC_SPARC_TLS_IE_LDX
, 0 },
1861 { "tie_ld", 6, BFD_RELOC_SPARC_TLS_IE_LD
, 0 },
1862 { "tie_add", 7, BFD_RELOC_SPARC_TLS_IE_ADD
, 0 },
1863 { "gdop", 4, BFD_RELOC_SPARC_GOTDATA_OP
, 0 },
1866 const struct ops
*o
;
1870 for (o
= ops
; o
->name
; o
++)
1871 if (strncmp (s
+ 2, o
->name
, o
->len
) == 0)
1873 if (o
->name
== NULL
)
1876 if (s
[o
->len
+ 2] != '(')
1878 as_bad (_("Illegal operands: %%%s requires arguments in ()"), o
->name
);
1879 return special_case
;
1882 if (! o
->tls_call
&& the_insn
.reloc
!= BFD_RELOC_NONE
)
1884 as_bad (_("Illegal operands: %%%s cannot be used together with other relocs in the insn ()"),
1886 return special_case
;
1890 && (the_insn
.reloc
!= BFD_RELOC_32_PCREL_S2
1891 || the_insn
.exp
.X_add_number
!= 0
1892 || the_insn
.exp
.X_add_symbol
1893 != symbol_find_or_make ("__tls_get_addr")))
1895 as_bad (_("Illegal operands: %%%s can be only used with call __tls_get_addr"),
1897 return special_case
;
1900 the_insn
.reloc
= o
->reloc
;
1901 memset (&the_insn
.exp
, 0, sizeof (the_insn
.exp
));
1904 for (s1
= s
; *s1
&& *s1
!= ',' && *s1
!= ']'; s1
++)
1907 else if (*s1
== ')')
1916 as_bad (_("Illegal operands: %%%s requires arguments in ()"), o
->name
);
1917 return special_case
;
1921 (void) get_expression (s
);
1941 case '[': /* These must match exactly. */
1949 case '#': /* Must be at least one digit. */
1952 while (ISDIGIT (*s
))
1960 case 'C': /* Coprocessor state register. */
1961 if (strncmp (s
, "%csr", 4) == 0)
1968 case 'b': /* Next operand is a coprocessor register. */
1971 if (*s
++ == '%' && *s
++ == 'c' && ISDIGIT (*s
))
1976 mask
= 10 * (mask
- '0') + (*s
++ - '0');
1990 opcode
|= mask
<< 14;
1998 opcode
|= mask
<< 25;
2004 case 'r': /* next operand must be a register */
2014 case 'f': /* frame pointer */
2022 case 'g': /* global register */
2031 case 'i': /* in register */
2035 mask
= c
- '0' + 24;
2040 case 'l': /* local register */
2044 mask
= (c
- '0' + 16);
2049 case 'o': /* out register */
2053 mask
= (c
- '0' + 8);
2058 case 's': /* stack pointer */
2066 case 'r': /* any register */
2067 if (!ISDIGIT ((c
= *s
++)))
2084 if ((c
= 10 * (c
- '0') + (*s
++ - '0')) >= 32)
2100 if ((mask
& ~1) == 2 && sparc_arch_size
== 64
2101 && no_undeclared_regs
&& ! globals
[mask
])
2102 as_bad (_("detected global register use not covered by .register pseudo-op"));
2104 /* Got the register, now figure out where
2105 it goes in the opcode. */
2109 opcode
|= mask
<< 14;
2117 opcode
|= mask
<< 25;
2121 opcode
|= (mask
<< 25) | (mask
<< 14);
2125 opcode
|= (mask
<< 25) | (mask
<< 0);
2131 case 'e': /* next operand is a floating point register */
2146 && ((format
= *s
) == 'f')
2149 for (mask
= 0; ISDIGIT (*s
); ++s
)
2151 mask
= 10 * mask
+ (*s
- '0');
2152 } /* read the number */
2160 } /* register must be even numbered */
2168 } /* register must be multiple of 4 */
2172 if (SPARC_OPCODE_ARCH_V9_P (max_architecture
))
2173 error_message
= _(": There are only 64 f registers; [0-63]");
2175 error_message
= _(": There are only 32 f registers; [0-31]");
2178 else if (mask
>= 32)
2180 if (SPARC_OPCODE_ARCH_V9_P (max_architecture
))
2182 if (*args
== 'e' || *args
== 'f' || *args
== 'g')
2185 = _(": There are only 32 single precision f registers; [0-31]");
2189 mask
-= 31; /* wrap high bit */
2193 error_message
= _(": There are only 32 f registers; [0-31]");
2201 } /* if not an 'f' register. */
2208 opcode
|= RS1 (mask
);
2214 opcode
|= RS2 (mask
);
2220 opcode
|= RD (mask
);
2229 if (strncmp (s
, "%fsr", 4) == 0)
2236 case '0': /* 64 bit immediate (set, setsw, setx insn) */
2237 the_insn
.reloc
= BFD_RELOC_NONE
; /* reloc handled elsewhere */
2240 case 'l': /* 22 bit PC relative immediate */
2241 the_insn
.reloc
= BFD_RELOC_SPARC_WDISP22
;
2245 case 'L': /* 30 bit immediate */
2246 the_insn
.reloc
= BFD_RELOC_32_PCREL_S2
;
2251 case 'n': /* 22 bit immediate */
2252 the_insn
.reloc
= BFD_RELOC_SPARC22
;
2255 case 'i': /* 13 bit immediate */
2256 the_insn
.reloc
= BFD_RELOC_SPARC13
;
2266 char *op_arg
= NULL
;
2267 static expressionS op_exp
;
2268 bfd_reloc_code_real_type old_reloc
= the_insn
.reloc
;
2270 /* Check for %hi, etc. */
2273 static const struct ops
{
2274 /* The name as it appears in assembler. */
2276 /* strlen (name), precomputed for speed */
2278 /* The reloc this pseudo-op translates to. */
2280 /* Non-zero if for v9 only. */
2282 /* Non-zero if can be used in pc-relative contexts. */
2283 int pcrel_p
;/*FIXME:wip*/
2285 /* hix/lox must appear before hi/lo so %hix won't be
2286 mistaken for %hi. */
2287 { "hix", 3, BFD_RELOC_SPARC_HIX22
, 1, 0 },
2288 { "lox", 3, BFD_RELOC_SPARC_LOX10
, 1, 0 },
2289 { "hi", 2, BFD_RELOC_HI22
, 0, 1 },
2290 { "lo", 2, BFD_RELOC_LO10
, 0, 1 },
2291 { "pc22", 4, BFD_RELOC_SPARC_PC22
, 0, 1 },
2292 { "pc10", 4, BFD_RELOC_SPARC_PC10
, 0, 1 },
2293 { "hh", 2, BFD_RELOC_SPARC_HH22
, 1, 1 },
2294 { "hm", 2, BFD_RELOC_SPARC_HM10
, 1, 1 },
2295 { "lm", 2, BFD_RELOC_SPARC_LM22
, 1, 1 },
2296 { "h44", 3, BFD_RELOC_SPARC_H44
, 1, 0 },
2297 { "m44", 3, BFD_RELOC_SPARC_M44
, 1, 0 },
2298 { "l44", 3, BFD_RELOC_SPARC_L44
, 1, 0 },
2299 { "uhi", 3, BFD_RELOC_SPARC_HH22
, 1, 0 },
2300 { "ulo", 3, BFD_RELOC_SPARC_HM10
, 1, 0 },
2301 { "tgd_hi22", 8, BFD_RELOC_SPARC_TLS_GD_HI22
, 0, 0 },
2302 { "tgd_lo10", 8, BFD_RELOC_SPARC_TLS_GD_LO10
, 0, 0 },
2303 { "tldm_hi22", 9, BFD_RELOC_SPARC_TLS_LDM_HI22
, 0, 0 },
2304 { "tldm_lo10", 9, BFD_RELOC_SPARC_TLS_LDM_LO10
, 0, 0 },
2305 { "tldo_hix22", 10, BFD_RELOC_SPARC_TLS_LDO_HIX22
, 0,
2307 { "tldo_lox10", 10, BFD_RELOC_SPARC_TLS_LDO_LOX10
, 0,
2309 { "tie_hi22", 8, BFD_RELOC_SPARC_TLS_IE_HI22
, 0, 0 },
2310 { "tie_lo10", 8, BFD_RELOC_SPARC_TLS_IE_LO10
, 0, 0 },
2311 { "tle_hix22", 9, BFD_RELOC_SPARC_TLS_LE_HIX22
, 0, 0 },
2312 { "tle_lox10", 9, BFD_RELOC_SPARC_TLS_LE_LOX10
, 0, 0 },
2313 { "gdop_hix22", 10, BFD_RELOC_SPARC_GOTDATA_OP_HIX22
,
2315 { "gdop_lox10", 10, BFD_RELOC_SPARC_GOTDATA_OP_LOX10
,
2317 { NULL
, 0, 0, 0, 0 }
2319 const struct ops
*o
;
2321 for (o
= ops
; o
->name
; o
++)
2322 if (strncmp (s
+ 1, o
->name
, o
->len
) == 0)
2324 if (o
->name
== NULL
)
2327 if (s
[o
->len
+ 1] != '(')
2329 as_bad (_("Illegal operands: %%%s requires arguments in ()"), o
->name
);
2330 return special_case
;
2334 the_insn
.reloc
= o
->reloc
;
2339 /* Note that if the get_expression() fails, we will still
2340 have created U entries in the symbol table for the
2341 'symbols' in the input string. Try not to create U
2342 symbols for registers, etc. */
2344 /* This stuff checks to see if the expression ends in
2345 +%reg. If it does, it removes the register from
2346 the expression, and re-sets 's' to point to the
2353 for (s1
= s
; *s1
&& *s1
!= ',' && *s1
!= ']'; s1
++)
2356 else if (*s1
== ')')
2365 as_bad (_("Illegal operands: %%%s requires arguments in ()"), op_arg
);
2366 return special_case
;
2370 (void) get_expression (s
);
2373 if (*s
== ',' || *s
== ']' || !*s
)
2375 if (*s
!= '+' && *s
!= '-')
2377 as_bad (_("Illegal operands: Can't do arithmetics other than + and - involving %%%s()"), op_arg
);
2378 return special_case
;
2382 op_exp
= the_insn
.exp
;
2383 memset (&the_insn
.exp
, 0, sizeof (the_insn
.exp
));
2386 for (s1
= s
; *s1
&& *s1
!= ',' && *s1
!= ']'; s1
++)
2389 if (s1
!= s
&& ISDIGIT (s1
[-1]))
2391 if (s1
[-2] == '%' && s1
[-3] == '+')
2393 else if (strchr ("goli0123456789", s1
[-2]) && s1
[-3] == '%' && s1
[-4] == '+')
2400 if (op_arg
&& s1
== s
+ 1)
2401 the_insn
.exp
.X_op
= O_absent
;
2403 (void) get_expression (s
);
2415 (void) get_expression (s
);
2423 the_insn
.exp2
= the_insn
.exp
;
2424 the_insn
.exp
= op_exp
;
2425 if (the_insn
.exp2
.X_op
== O_absent
)
2426 the_insn
.exp2
.X_op
= O_illegal
;
2427 else if (the_insn
.exp
.X_op
== O_absent
)
2429 the_insn
.exp
= the_insn
.exp2
;
2430 the_insn
.exp2
.X_op
= O_illegal
;
2432 else if (the_insn
.exp
.X_op
== O_constant
)
2434 valueT val
= the_insn
.exp
.X_add_number
;
2435 switch (the_insn
.reloc
)
2440 case BFD_RELOC_SPARC_HH22
:
2441 val
= BSR (val
, 32);
2444 case BFD_RELOC_SPARC_LM22
:
2445 case BFD_RELOC_HI22
:
2446 val
= (val
>> 10) & 0x3fffff;
2449 case BFD_RELOC_SPARC_HM10
:
2450 val
= BSR (val
, 32);
2453 case BFD_RELOC_LO10
:
2457 case BFD_RELOC_SPARC_H44
:
2462 case BFD_RELOC_SPARC_M44
:
2467 case BFD_RELOC_SPARC_L44
:
2471 case BFD_RELOC_SPARC_HIX22
:
2473 val
= (val
>> 10) & 0x3fffff;
2476 case BFD_RELOC_SPARC_LOX10
:
2477 val
= (val
& 0x3ff) | 0x1c00;
2480 the_insn
.exp
= the_insn
.exp2
;
2481 the_insn
.exp
.X_add_number
+= val
;
2482 the_insn
.exp2
.X_op
= O_illegal
;
2483 the_insn
.reloc
= old_reloc
;
2485 else if (the_insn
.exp2
.X_op
!= O_constant
)
2487 as_bad (_("Illegal operands: Can't add non-constant expression to %%%s()"), op_arg
);
2488 return special_case
;
2492 if (old_reloc
!= BFD_RELOC_SPARC13
2493 || the_insn
.reloc
!= BFD_RELOC_LO10
2494 || sparc_arch_size
!= 64
2497 as_bad (_("Illegal operands: Can't do arithmetics involving %%%s() of a relocatable symbol"), op_arg
);
2498 return special_case
;
2500 the_insn
.reloc
= BFD_RELOC_SPARC_OLO10
;
2504 /* Check for constants that don't require emitting a reloc. */
2505 if (the_insn
.exp
.X_op
== O_constant
2506 && the_insn
.exp
.X_add_symbol
== 0
2507 && the_insn
.exp
.X_op_symbol
== 0)
2509 /* For pc-relative call instructions, we reject
2510 constants to get better code. */
2512 && the_insn
.reloc
== BFD_RELOC_32_PCREL_S2
2513 && in_signed_range (the_insn
.exp
.X_add_number
, 0x3fff))
2515 error_message
= _(": PC-relative operand can't be a constant");
2519 if (the_insn
.reloc
>= BFD_RELOC_SPARC_TLS_GD_HI22
2520 && the_insn
.reloc
<= BFD_RELOC_SPARC_TLS_TPOFF64
)
2522 error_message
= _(": TLS operand can't be a constant");
2526 /* Constants that won't fit are checked in md_apply_fix
2527 and bfd_install_relocation.
2528 ??? It would be preferable to install the constants
2529 into the insn here and save having to create a fixS
2530 for each one. There already exists code to handle
2531 all the various cases (e.g. in md_apply_fix and
2532 bfd_install_relocation) so duplicating all that code
2533 here isn't right. */
2553 if (! parse_keyword_arg (sparc_encode_asi
, &s
, &asi
))
2555 error_message
= _(": invalid ASI name");
2561 if (! parse_const_expr_arg (&s
, &asi
))
2563 error_message
= _(": invalid ASI expression");
2566 if (asi
< 0 || asi
> 255)
2568 error_message
= _(": invalid ASI number");
2572 opcode
|= ASI (asi
);
2574 } /* Alternate space. */
2577 if (strncmp (s
, "%psr", 4) == 0)
2584 case 'q': /* Floating point queue. */
2585 if (strncmp (s
, "%fq", 3) == 0)
2592 case 'Q': /* Coprocessor queue. */
2593 if (strncmp (s
, "%cq", 3) == 0)
2601 if (strcmp (str
, "set") == 0
2602 || strcmp (str
, "setuw") == 0)
2604 special_case
= SPECIAL_CASE_SET
;
2607 else if (strcmp (str
, "setsw") == 0)
2609 special_case
= SPECIAL_CASE_SETSW
;
2612 else if (strcmp (str
, "setx") == 0)
2614 special_case
= SPECIAL_CASE_SETX
;
2617 else if (strncmp (str
, "fdiv", 4) == 0)
2619 special_case
= SPECIAL_CASE_FDIV
;
2625 if (strncmp (s
, "%asi", 4) != 0)
2631 if (strncmp (s
, "%fprs", 5) != 0)
2637 if (strncmp (s
, "%ccr", 4) != 0)
2643 if (strncmp (s
, "%tbr", 4) != 0)
2649 if (strncmp (s
, "%wim", 4) != 0)
2656 char *push
= input_line_pointer
;
2659 input_line_pointer
= s
;
2661 if (e
.X_op
== O_constant
)
2663 int n
= e
.X_add_number
;
2664 if (n
!= e
.X_add_number
|| (n
& ~0x1ff) != 0)
2665 as_bad (_("OPF immediate operand out of range (0-0x1ff)"));
2667 opcode
|= e
.X_add_number
<< 5;
2670 as_bad (_("non-immediate OPF operand, ignored"));
2671 s
= input_line_pointer
;
2672 input_line_pointer
= push
;
2677 if (strncmp (s
, "%y", 2) != 0)
2685 /* Parse a sparclet cpreg. */
2687 if (! parse_keyword_arg (sparc_encode_sparclet_cpreg
, &s
, &cpreg
))
2689 error_message
= _(": invalid cpreg name");
2692 opcode
|= (*args
== 'U' ? RS1 (cpreg
) : RD (cpreg
));
2697 as_fatal (_("failed sanity check."));
2698 } /* switch on arg code. */
2700 /* Break out of for() loop. */
2702 } /* For each arg that we expect. */
2707 /* Args don't match. */
2708 if (&insn
[1] - sparc_opcodes
< sparc_num_opcodes
2709 && (insn
->name
== insn
[1].name
2710 || !strcmp (insn
->name
, insn
[1].name
)))
2718 as_bad (_("Illegal operands%s"), error_message
);
2719 return special_case
;
2724 /* We have a match. Now see if the architecture is OK. */
2725 int needed_arch_mask
= insn
->architecture
;
2730 ~(SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9
) - 1);
2731 if (! needed_arch_mask
)
2733 SPARC_OPCODE_ARCH_MASK (SPARC_OPCODE_ARCH_V9
);
2736 if (needed_arch_mask
2737 & SPARC_OPCODE_SUPPORTED (current_architecture
))
2740 /* Can we bump up the architecture? */
2741 else if (needed_arch_mask
2742 & SPARC_OPCODE_SUPPORTED (max_architecture
))
2744 enum sparc_opcode_arch_val needed_architecture
=
2745 sparc_ffs (SPARC_OPCODE_SUPPORTED (max_architecture
)
2746 & needed_arch_mask
);
2748 gas_assert (needed_architecture
<= SPARC_OPCODE_ARCH_MAX
);
2750 && needed_architecture
> warn_after_architecture
)
2752 as_warn (_("architecture bumped from \"%s\" to \"%s\" on \"%s\""),
2753 sparc_opcode_archs
[current_architecture
].name
,
2754 sparc_opcode_archs
[needed_architecture
].name
,
2756 warn_after_architecture
= needed_architecture
;
2758 current_architecture
= needed_architecture
;
2761 /* ??? This seems to be a bit fragile. What if the next entry in
2762 the opcode table is the one we want and it is supported?
2763 It is possible to arrange the table today so that this can't
2764 happen but what about tomorrow? */
2767 int arch
, printed_one_p
= 0;
2769 char required_archs
[SPARC_OPCODE_ARCH_MAX
* 16];
2771 /* Create a list of the architectures that support the insn. */
2772 needed_arch_mask
&= ~SPARC_OPCODE_SUPPORTED (max_architecture
);
2774 arch
= sparc_ffs (needed_arch_mask
);
2775 while ((1 << arch
) <= needed_arch_mask
)
2777 if ((1 << arch
) & needed_arch_mask
)
2781 strcpy (p
, sparc_opcode_archs
[arch
].name
);
2788 as_bad (_("Architecture mismatch on \"%s\"."), str
);
2789 as_tsktsk (_(" (Requires %s; requested architecture is %s.)"),
2791 sparc_opcode_archs
[max_architecture
].name
);
2792 return special_case
;
2794 } /* If no match. */
2797 } /* Forever looking for a match. */
2799 the_insn
.opcode
= opcode
;
2800 return special_case
;
2803 /* Parse an argument that can be expressed as a keyword.
2804 (eg: #StoreStore or %ccfr).
2805 The result is a boolean indicating success.
2806 If successful, INPUT_POINTER is updated. */
2809 parse_keyword_arg (int (*lookup_fn
) (const char *),
2810 char **input_pointerP
,
2816 p
= *input_pointerP
;
2817 for (q
= p
+ (*p
== '#' || *p
== '%');
2818 ISALNUM (*q
) || *q
== '_';
2823 value
= (*lookup_fn
) (p
);
2828 *input_pointerP
= q
;
2832 /* Parse an argument that is a constant expression.
2833 The result is a boolean indicating success. */
2836 parse_const_expr_arg (char **input_pointerP
, int *valueP
)
2838 char *save
= input_line_pointer
;
2841 input_line_pointer
= *input_pointerP
;
2842 /* The next expression may be something other than a constant
2843 (say if we're not processing the right variant of the insn).
2844 Don't call expression unless we're sure it will succeed as it will
2845 signal an error (which we want to defer until later). */
2846 /* FIXME: It might be better to define md_operand and have it recognize
2847 things like %asi, etc. but continuing that route through to the end
2848 is a lot of work. */
2849 if (*input_line_pointer
== '%')
2851 input_line_pointer
= save
;
2855 *input_pointerP
= input_line_pointer
;
2856 input_line_pointer
= save
;
2857 if (exp
.X_op
!= O_constant
)
2859 *valueP
= exp
.X_add_number
;
2863 /* Subroutine of sparc_ip to parse an expression. */
2866 get_expression (char *str
)
2871 save_in
= input_line_pointer
;
2872 input_line_pointer
= str
;
2873 seg
= expression (&the_insn
.exp
);
2874 if (seg
!= absolute_section
2875 && seg
!= text_section
2876 && seg
!= data_section
2877 && seg
!= bss_section
2878 && seg
!= undefined_section
)
2880 the_insn
.error
= _("bad segment");
2881 expr_end
= input_line_pointer
;
2882 input_line_pointer
= save_in
;
2885 expr_end
= input_line_pointer
;
2886 input_line_pointer
= save_in
;
2890 /* Subroutine of md_assemble to output one insn. */
2893 output_insn (const struct sparc_opcode
*insn
, struct sparc_it
*theinsn
)
2895 char *toP
= frag_more (4);
2897 /* Put out the opcode. */
2898 if (INSN_BIG_ENDIAN
)
2899 number_to_chars_bigendian (toP
, (valueT
) theinsn
->opcode
, 4);
2901 number_to_chars_littleendian (toP
, (valueT
) theinsn
->opcode
, 4);
2903 /* Put out the symbol-dependent stuff. */
2904 if (theinsn
->reloc
!= BFD_RELOC_NONE
)
2906 fixS
*fixP
= fix_new_exp (frag_now
, /* Which frag. */
2907 (toP
- frag_now
->fr_literal
), /* Where. */
2912 /* Turn off overflow checking in fixup_segment. We'll do our
2913 own overflow checking in md_apply_fix. This is necessary because
2914 the insn size is 4 and fixup_segment will signal an overflow for
2915 large 8 byte quantities. */
2916 fixP
->fx_no_overflow
= 1;
2917 if (theinsn
->reloc
== BFD_RELOC_SPARC_OLO10
)
2918 fixP
->tc_fix_data
= theinsn
->exp2
.X_add_number
;
2922 last_opcode
= theinsn
->opcode
;
2925 dwarf2_emit_insn (4);
2930 md_atof (int type
, char *litP
, int *sizeP
)
2932 return ieee_md_atof (type
, litP
, sizeP
, target_big_endian
);
2935 /* Write a value out to the object file, using the appropriate
2939 md_number_to_chars (char *buf
, valueT val
, int n
)
2941 if (target_big_endian
)
2942 number_to_chars_bigendian (buf
, val
, n
);
2943 else if (target_little_endian_data
2944 && ((n
== 4 || n
== 2) && ~now_seg
->flags
& SEC_ALLOC
))
2945 /* Output debug words, which are not in allocated sections, as big
2947 number_to_chars_bigendian (buf
, val
, n
);
2948 else if (target_little_endian_data
|| ! target_big_endian
)
2949 number_to_chars_littleendian (buf
, val
, n
);
2952 /* Apply a fixS to the frags, now that we know the value it ought to
2956 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT segment ATTRIBUTE_UNUSED
)
2958 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
2959 offsetT val
= * (offsetT
*) valP
;
2962 gas_assert (fixP
->fx_r_type
< BFD_RELOC_UNUSED
);
2964 fixP
->fx_addnumber
= val
; /* Remember value for emit_reloc. */
2967 /* SPARC ELF relocations don't use an addend in the data field. */
2968 if (fixP
->fx_addsy
!= NULL
)
2970 switch (fixP
->fx_r_type
)
2972 case BFD_RELOC_SPARC_TLS_GD_HI22
:
2973 case BFD_RELOC_SPARC_TLS_GD_LO10
:
2974 case BFD_RELOC_SPARC_TLS_GD_ADD
:
2975 case BFD_RELOC_SPARC_TLS_GD_CALL
:
2976 case BFD_RELOC_SPARC_TLS_LDM_HI22
:
2977 case BFD_RELOC_SPARC_TLS_LDM_LO10
:
2978 case BFD_RELOC_SPARC_TLS_LDM_ADD
:
2979 case BFD_RELOC_SPARC_TLS_LDM_CALL
:
2980 case BFD_RELOC_SPARC_TLS_LDO_HIX22
:
2981 case BFD_RELOC_SPARC_TLS_LDO_LOX10
:
2982 case BFD_RELOC_SPARC_TLS_LDO_ADD
:
2983 case BFD_RELOC_SPARC_TLS_IE_HI22
:
2984 case BFD_RELOC_SPARC_TLS_IE_LO10
:
2985 case BFD_RELOC_SPARC_TLS_IE_LD
:
2986 case BFD_RELOC_SPARC_TLS_IE_LDX
:
2987 case BFD_RELOC_SPARC_TLS_IE_ADD
:
2988 case BFD_RELOC_SPARC_TLS_LE_HIX22
:
2989 case BFD_RELOC_SPARC_TLS_LE_LOX10
:
2990 case BFD_RELOC_SPARC_TLS_DTPMOD32
:
2991 case BFD_RELOC_SPARC_TLS_DTPMOD64
:
2992 case BFD_RELOC_SPARC_TLS_DTPOFF32
:
2993 case BFD_RELOC_SPARC_TLS_DTPOFF64
:
2994 case BFD_RELOC_SPARC_TLS_TPOFF32
:
2995 case BFD_RELOC_SPARC_TLS_TPOFF64
:
2996 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
3006 /* This is a hack. There should be a better way to
3007 handle this. Probably in terms of howto fields, once
3008 we can look at these fixups in terms of howtos. */
3009 if (fixP
->fx_r_type
== BFD_RELOC_32_PCREL_S2
&& fixP
->fx_addsy
)
3010 val
+= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
3013 /* FIXME: More ridiculous gas reloc hacking. If we are going to
3014 generate a reloc, then we just want to let the reloc addend set
3015 the value. We do not want to also stuff the addend into the
3016 object file. Including the addend in the object file works when
3017 doing a static link, because the linker will ignore the object
3018 file contents. However, the dynamic linker does not ignore the
3019 object file contents. */
3020 if (fixP
->fx_addsy
!= NULL
3021 && fixP
->fx_r_type
!= BFD_RELOC_32_PCREL_S2
)
3024 /* When generating PIC code, we do not want an addend for a reloc
3025 against a local symbol. We adjust fx_addnumber to cancel out the
3026 value already included in val, and to also cancel out the
3027 adjustment which bfd_install_relocation will create. */
3029 && fixP
->fx_r_type
!= BFD_RELOC_32_PCREL_S2
3030 && fixP
->fx_addsy
!= NULL
3031 && ! S_IS_COMMON (fixP
->fx_addsy
)
3032 && symbol_section_p (fixP
->fx_addsy
))
3033 fixP
->fx_addnumber
-= 2 * S_GET_VALUE (fixP
->fx_addsy
);
3035 /* When generating PIC code, we need to fiddle to get
3036 bfd_install_relocation to do the right thing for a PC relative
3037 reloc against a local symbol which we are going to keep. */
3039 && fixP
->fx_r_type
== BFD_RELOC_32_PCREL_S2
3040 && fixP
->fx_addsy
!= NULL
3041 && (S_IS_EXTERNAL (fixP
->fx_addsy
)
3042 || S_IS_WEAK (fixP
->fx_addsy
))
3043 && S_IS_DEFINED (fixP
->fx_addsy
)
3044 && ! S_IS_COMMON (fixP
->fx_addsy
))
3047 fixP
->fx_addnumber
-= 2 * S_GET_VALUE (fixP
->fx_addsy
);
3051 /* If this is a data relocation, just output VAL. */
3053 if (fixP
->fx_r_type
== BFD_RELOC_16
3054 || fixP
->fx_r_type
== BFD_RELOC_SPARC_UA16
)
3056 md_number_to_chars (buf
, val
, 2);
3058 else if (fixP
->fx_r_type
== BFD_RELOC_32
3059 || fixP
->fx_r_type
== BFD_RELOC_SPARC_UA32
3060 || fixP
->fx_r_type
== BFD_RELOC_SPARC_REV32
)
3062 md_number_to_chars (buf
, val
, 4);
3064 else if (fixP
->fx_r_type
== BFD_RELOC_64
3065 || fixP
->fx_r_type
== BFD_RELOC_SPARC_UA64
)
3067 md_number_to_chars (buf
, val
, 8);
3069 else if (fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
3070 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
3077 /* It's a relocation against an instruction. */
3079 if (INSN_BIG_ENDIAN
)
3080 insn
= bfd_getb32 ((unsigned char *) buf
);
3082 insn
= bfd_getl32 ((unsigned char *) buf
);
3084 switch (fixP
->fx_r_type
)
3086 case BFD_RELOC_32_PCREL_S2
:
3088 /* FIXME: This increment-by-one deserves a comment of why it's
3090 if (! sparc_pic_code
3091 || fixP
->fx_addsy
== NULL
3092 || symbol_section_p (fixP
->fx_addsy
))
3095 insn
|= val
& 0x3fffffff;
3097 /* See if we have a delay slot. */
3098 if (sparc_relax
&& fixP
->fx_where
+ 8 <= fixP
->fx_frag
->fr_fix
)
3102 #define XCC (2 << 20)
3103 #define COND(x) (((x)&0xf)<<25)
3104 #define CONDA COND(0x8)
3105 #define INSN_BPA (F2(0,1) | CONDA | BPRED | XCC)
3106 #define INSN_BA (F2(0,2) | CONDA)
3107 #define INSN_OR F3(2, 0x2, 0)
3108 #define INSN_NOP F2(0,4)
3112 /* If the instruction is a call with either:
3114 arithmetic instruction with rd == %o7
3115 where rs1 != %o7 and rs2 if it is register != %o7
3116 then we can optimize if the call destination is near
3117 by changing the call into a branch always. */
3118 if (INSN_BIG_ENDIAN
)
3119 delay
= bfd_getb32 ((unsigned char *) buf
+ 4);
3121 delay
= bfd_getl32 ((unsigned char *) buf
+ 4);
3122 if ((insn
& OP (~0)) != OP (1) || (delay
& OP (~0)) != OP (2))
3124 if ((delay
& OP3 (~0)) != OP3 (0x3d) /* Restore. */
3125 && ((delay
& OP3 (0x28)) != 0 /* Arithmetic. */
3126 || ((delay
& RD (~0)) != RD (O7
))))
3128 if ((delay
& RS1 (~0)) == RS1 (O7
)
3129 || ((delay
& F3I (~0)) == 0
3130 && (delay
& RS2 (~0)) == RS2 (O7
)))
3132 /* Ensure the branch will fit into simm22. */
3133 if ((val
& 0x3fe00000)
3134 && (val
& 0x3fe00000) != 0x3fe00000)
3136 /* Check if the arch is v9 and branch will fit
3138 if (((val
& 0x3c0000) == 0
3139 || (val
& 0x3c0000) == 0x3c0000)
3140 && (sparc_arch_size
== 64
3141 || current_architecture
>= SPARC_OPCODE_ARCH_V9
))
3143 insn
= INSN_BPA
| (val
& 0x7ffff);
3146 insn
= INSN_BA
| (val
& 0x3fffff);
3147 if (fixP
->fx_where
>= 4
3148 && ((delay
& (0xffffffff ^ RS1 (~0)))
3149 == (INSN_OR
| RD (O7
) | RS2 (G0
))))
3154 if (INSN_BIG_ENDIAN
)
3155 setter
= bfd_getb32 ((unsigned char *) buf
- 4);
3157 setter
= bfd_getl32 ((unsigned char *) buf
- 4);
3158 if ((setter
& (0xffffffff ^ RD (~0)))
3159 != (INSN_OR
| RS1 (O7
) | RS2 (G0
)))
3166 If call foo was replaced with ba, replace
3167 or %rN, %g0, %o7 with nop. */
3168 reg
= (delay
& RS1 (~0)) >> 14;
3169 if (reg
!= ((setter
& RD (~0)) >> 25)
3170 || reg
== G0
|| reg
== O7
)
3173 if (INSN_BIG_ENDIAN
)
3174 bfd_putb32 (INSN_NOP
, (unsigned char *) buf
+ 4);
3176 bfd_putl32 (INSN_NOP
, (unsigned char *) buf
+ 4);
3181 case BFD_RELOC_SPARC_11
:
3182 if (! in_signed_range (val
, 0x7ff))
3183 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3184 _("relocation overflow"));
3185 insn
|= val
& 0x7ff;
3188 case BFD_RELOC_SPARC_10
:
3189 if (! in_signed_range (val
, 0x3ff))
3190 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3191 _("relocation overflow"));
3192 insn
|= val
& 0x3ff;
3195 case BFD_RELOC_SPARC_7
:
3196 if (! in_bitfield_range (val
, 0x7f))
3197 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3198 _("relocation overflow"));
3202 case BFD_RELOC_SPARC_6
:
3203 if (! in_bitfield_range (val
, 0x3f))
3204 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3205 _("relocation overflow"));
3209 case BFD_RELOC_SPARC_5
:
3210 if (! in_bitfield_range (val
, 0x1f))
3211 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3212 _("relocation overflow"));
3216 case BFD_RELOC_SPARC_WDISP16
:
3219 || val
<= -(offsetT
) 0x20008)
3220 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3221 _("relocation overflow"));
3222 /* FIXME: The +1 deserves a comment. */
3223 val
= (val
>> 2) + 1;
3224 insn
|= ((val
& 0xc000) << 6) | (val
& 0x3fff);
3227 case BFD_RELOC_SPARC_WDISP19
:
3230 || val
<= -(offsetT
) 0x100008)
3231 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3232 _("relocation overflow"));
3233 /* FIXME: The +1 deserves a comment. */
3234 val
= (val
>> 2) + 1;
3235 insn
|= val
& 0x7ffff;
3238 case BFD_RELOC_SPARC_HH22
:
3239 val
= BSR (val
, 32);
3242 case BFD_RELOC_SPARC_LM22
:
3243 case BFD_RELOC_HI22
:
3244 if (!fixP
->fx_addsy
)
3245 insn
|= (val
>> 10) & 0x3fffff;
3247 /* FIXME: Need comment explaining why we do this. */
3251 case BFD_RELOC_SPARC22
:
3252 if (val
& ~0x003fffff)
3253 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3254 _("relocation overflow"));
3255 insn
|= (val
& 0x3fffff);
3258 case BFD_RELOC_SPARC_HM10
:
3259 val
= BSR (val
, 32);
3262 case BFD_RELOC_LO10
:
3263 if (!fixP
->fx_addsy
)
3264 insn
|= val
& 0x3ff;
3266 /* FIXME: Need comment explaining why we do this. */
3270 case BFD_RELOC_SPARC_OLO10
:
3272 val
+= fixP
->tc_fix_data
;
3275 case BFD_RELOC_SPARC13
:
3276 if (! in_signed_range (val
, 0x1fff))
3277 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3278 _("relocation overflow"));
3279 insn
|= val
& 0x1fff;
3282 case BFD_RELOC_SPARC_WDISP22
:
3283 val
= (val
>> 2) + 1;
3285 case BFD_RELOC_SPARC_BASE22
:
3286 insn
|= val
& 0x3fffff;
3289 case BFD_RELOC_SPARC_H44
:
3290 if (!fixP
->fx_addsy
)
3294 insn
|= tval
& 0x3fffff;
3298 case BFD_RELOC_SPARC_M44
:
3299 if (!fixP
->fx_addsy
)
3300 insn
|= (val
>> 12) & 0x3ff;
3303 case BFD_RELOC_SPARC_L44
:
3304 if (!fixP
->fx_addsy
)
3305 insn
|= val
& 0xfff;
3308 case BFD_RELOC_SPARC_HIX22
:
3309 if (!fixP
->fx_addsy
)
3311 val
^= ~(offsetT
) 0;
3312 insn
|= (val
>> 10) & 0x3fffff;
3316 case BFD_RELOC_SPARC_LOX10
:
3317 if (!fixP
->fx_addsy
)
3318 insn
|= 0x1c00 | (val
& 0x3ff);
3321 case BFD_RELOC_NONE
:
3323 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3324 _("bad or unhandled relocation type: 0x%02x"),
3329 if (INSN_BIG_ENDIAN
)
3330 bfd_putb32 (insn
, (unsigned char *) buf
);
3332 bfd_putl32 (insn
, (unsigned char *) buf
);
3335 /* Are we finished with this relocation now? */
3336 if (fixP
->fx_addsy
== 0 && !fixP
->fx_pcrel
)
3340 /* Translate internal representation of relocation info to BFD target
3344 tc_gen_reloc (asection
*section
, fixS
*fixp
)
3346 static arelent
*relocs
[3];
3348 bfd_reloc_code_real_type code
;
3350 relocs
[0] = reloc
= (arelent
*) xmalloc (sizeof (arelent
));
3353 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
3354 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
3355 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
3357 switch (fixp
->fx_r_type
)
3361 case BFD_RELOC_HI22
:
3362 case BFD_RELOC_LO10
:
3363 case BFD_RELOC_32_PCREL_S2
:
3364 case BFD_RELOC_SPARC13
:
3365 case BFD_RELOC_SPARC22
:
3366 case BFD_RELOC_SPARC_PC22
:
3367 case BFD_RELOC_SPARC_PC10
:
3368 case BFD_RELOC_SPARC_BASE13
:
3369 case BFD_RELOC_SPARC_WDISP16
:
3370 case BFD_RELOC_SPARC_WDISP19
:
3371 case BFD_RELOC_SPARC_WDISP22
:
3373 case BFD_RELOC_SPARC_5
:
3374 case BFD_RELOC_SPARC_6
:
3375 case BFD_RELOC_SPARC_7
:
3376 case BFD_RELOC_SPARC_10
:
3377 case BFD_RELOC_SPARC_11
:
3378 case BFD_RELOC_SPARC_HH22
:
3379 case BFD_RELOC_SPARC_HM10
:
3380 case BFD_RELOC_SPARC_LM22
:
3381 case BFD_RELOC_SPARC_PC_HH22
:
3382 case BFD_RELOC_SPARC_PC_HM10
:
3383 case BFD_RELOC_SPARC_PC_LM22
:
3384 case BFD_RELOC_SPARC_H44
:
3385 case BFD_RELOC_SPARC_M44
:
3386 case BFD_RELOC_SPARC_L44
:
3387 case BFD_RELOC_SPARC_HIX22
:
3388 case BFD_RELOC_SPARC_LOX10
:
3389 case BFD_RELOC_SPARC_REV32
:
3390 case BFD_RELOC_SPARC_OLO10
:
3391 case BFD_RELOC_SPARC_UA16
:
3392 case BFD_RELOC_SPARC_UA32
:
3393 case BFD_RELOC_SPARC_UA64
:
3394 case BFD_RELOC_8_PCREL
:
3395 case BFD_RELOC_16_PCREL
:
3396 case BFD_RELOC_32_PCREL
:
3397 case BFD_RELOC_64_PCREL
:
3398 case BFD_RELOC_SPARC_PLT32
:
3399 case BFD_RELOC_SPARC_PLT64
:
3400 case BFD_RELOC_VTABLE_ENTRY
:
3401 case BFD_RELOC_VTABLE_INHERIT
:
3402 case BFD_RELOC_SPARC_TLS_GD_HI22
:
3403 case BFD_RELOC_SPARC_TLS_GD_LO10
:
3404 case BFD_RELOC_SPARC_TLS_GD_ADD
:
3405 case BFD_RELOC_SPARC_TLS_GD_CALL
:
3406 case BFD_RELOC_SPARC_TLS_LDM_HI22
:
3407 case BFD_RELOC_SPARC_TLS_LDM_LO10
:
3408 case BFD_RELOC_SPARC_TLS_LDM_ADD
:
3409 case BFD_RELOC_SPARC_TLS_LDM_CALL
:
3410 case BFD_RELOC_SPARC_TLS_LDO_HIX22
:
3411 case BFD_RELOC_SPARC_TLS_LDO_LOX10
:
3412 case BFD_RELOC_SPARC_TLS_LDO_ADD
:
3413 case BFD_RELOC_SPARC_TLS_IE_HI22
:
3414 case BFD_RELOC_SPARC_TLS_IE_LO10
:
3415 case BFD_RELOC_SPARC_TLS_IE_LD
:
3416 case BFD_RELOC_SPARC_TLS_IE_LDX
:
3417 case BFD_RELOC_SPARC_TLS_IE_ADD
:
3418 case BFD_RELOC_SPARC_TLS_LE_HIX22
:
3419 case BFD_RELOC_SPARC_TLS_LE_LOX10
:
3420 case BFD_RELOC_SPARC_TLS_DTPOFF32
:
3421 case BFD_RELOC_SPARC_TLS_DTPOFF64
:
3422 case BFD_RELOC_SPARC_GOTDATA_OP_HIX22
:
3423 case BFD_RELOC_SPARC_GOTDATA_OP_LOX10
:
3424 case BFD_RELOC_SPARC_GOTDATA_OP
:
3425 code
= fixp
->fx_r_type
;
3432 #if defined (OBJ_ELF) || defined (OBJ_AOUT)
3433 /* If we are generating PIC code, we need to generate a different
3437 #define GOT_NAME "_GLOBAL_OFFSET_TABLE_"
3439 #define GOT_NAME "__GLOBAL_OFFSET_TABLE_"
3442 #define GOTT_BASE "__GOTT_BASE__"
3443 #define GOTT_INDEX "__GOTT_INDEX__"
3446 /* This code must be parallel to the OBJ_ELF tc_fix_adjustable. */
3452 case BFD_RELOC_32_PCREL_S2
:
3453 if (generic_force_reloc (fixp
))
3454 code
= BFD_RELOC_SPARC_WPLT30
;
3456 case BFD_RELOC_HI22
:
3457 code
= BFD_RELOC_SPARC_GOT22
;
3458 if (fixp
->fx_addsy
!= NULL
)
3460 if (strcmp (S_GET_NAME (fixp
->fx_addsy
), GOT_NAME
) == 0)
3461 code
= BFD_RELOC_SPARC_PC22
;
3463 if (strcmp (S_GET_NAME (fixp
->fx_addsy
), GOTT_BASE
) == 0
3464 || strcmp (S_GET_NAME (fixp
->fx_addsy
), GOTT_INDEX
) == 0)
3465 code
= BFD_RELOC_HI22
; /* Unchanged. */
3469 case BFD_RELOC_LO10
:
3470 code
= BFD_RELOC_SPARC_GOT10
;
3471 if (fixp
->fx_addsy
!= NULL
)
3473 if (strcmp (S_GET_NAME (fixp
->fx_addsy
), GOT_NAME
) == 0)
3474 code
= BFD_RELOC_SPARC_PC10
;
3476 if (strcmp (S_GET_NAME (fixp
->fx_addsy
), GOTT_BASE
) == 0
3477 || strcmp (S_GET_NAME (fixp
->fx_addsy
), GOTT_INDEX
) == 0)
3478 code
= BFD_RELOC_LO10
; /* Unchanged. */
3482 case BFD_RELOC_SPARC13
:
3483 code
= BFD_RELOC_SPARC_GOT13
;
3489 #endif /* defined (OBJ_ELF) || defined (OBJ_AOUT) */
3491 /* Nothing is aligned in DWARF debugging sections. */
3492 if (bfd_get_section_flags (stdoutput
, section
) & SEC_DEBUGGING
)
3495 case BFD_RELOC_16
: code
= BFD_RELOC_SPARC_UA16
; break;
3496 case BFD_RELOC_32
: code
= BFD_RELOC_SPARC_UA32
; break;
3497 case BFD_RELOC_64
: code
= BFD_RELOC_SPARC_UA64
; break;
3501 if (code
== BFD_RELOC_SPARC_OLO10
)
3502 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_LO10
);
3504 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
3505 if (reloc
->howto
== 0)
3507 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
3508 _("internal error: can't export reloc type %d (`%s')"),
3509 fixp
->fx_r_type
, bfd_get_reloc_code_name (code
));
3515 /* @@ Why fx_addnumber sometimes and fx_offset other times? */
3518 if (reloc
->howto
->pc_relative
== 0
3519 || code
== BFD_RELOC_SPARC_PC10
3520 || code
== BFD_RELOC_SPARC_PC22
)
3521 reloc
->addend
= fixp
->fx_addnumber
;
3522 else if (sparc_pic_code
3523 && fixp
->fx_r_type
== BFD_RELOC_32_PCREL_S2
3524 && fixp
->fx_addsy
!= NULL
3525 && (S_IS_EXTERNAL (fixp
->fx_addsy
)
3526 || S_IS_WEAK (fixp
->fx_addsy
))
3527 && S_IS_DEFINED (fixp
->fx_addsy
)
3528 && ! S_IS_COMMON (fixp
->fx_addsy
))
3529 reloc
->addend
= fixp
->fx_addnumber
;
3531 reloc
->addend
= fixp
->fx_offset
- reloc
->address
;
3533 #else /* elf or coff */
3535 if (code
!= BFD_RELOC_32_PCREL_S2
3536 && code
!= BFD_RELOC_SPARC_WDISP22
3537 && code
!= BFD_RELOC_SPARC_WDISP16
3538 && code
!= BFD_RELOC_SPARC_WDISP19
3539 && code
!= BFD_RELOC_SPARC_WPLT30
3540 && code
!= BFD_RELOC_SPARC_TLS_GD_CALL
3541 && code
!= BFD_RELOC_SPARC_TLS_LDM_CALL
)
3542 reloc
->addend
= fixp
->fx_addnumber
;
3543 else if (symbol_section_p (fixp
->fx_addsy
))
3544 reloc
->addend
= (section
->vma
3545 + fixp
->fx_addnumber
3546 + md_pcrel_from (fixp
));
3548 reloc
->addend
= fixp
->fx_offset
;
3551 /* We expand R_SPARC_OLO10 to R_SPARC_LO10 and R_SPARC_13
3552 on the same location. */
3553 if (code
== BFD_RELOC_SPARC_OLO10
)
3555 relocs
[1] = reloc
= (arelent
*) xmalloc (sizeof (arelent
));
3558 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
3560 = symbol_get_bfdsym (section_symbol (absolute_section
));
3561 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
3562 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_SPARC13
);
3563 reloc
->addend
= fixp
->tc_fix_data
;
3569 /* We have no need to default values of symbols. */
3572 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
3577 /* Round up a section size to the appropriate boundary. */
3580 md_section_align (segT segment ATTRIBUTE_UNUSED
, valueT size
)
3583 /* This is not right for ELF; a.out wants it, and COFF will force
3584 the alignment anyways. */
3585 valueT align
= ((valueT
) 1
3586 << (valueT
) bfd_get_section_alignment (stdoutput
, segment
));
3589 /* Turn alignment value into a mask. */
3591 newsize
= (size
+ align
) & ~align
;
3598 /* Exactly what point is a PC-relative offset relative TO?
3599 On the sparc, they're relative to the address of the offset, plus
3600 its size. This gets us to the following instruction.
3601 (??? Is this right? FIXME-SOON) */
3603 md_pcrel_from (fixS
*fixP
)
3607 ret
= fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
3608 if (! sparc_pic_code
3609 || fixP
->fx_addsy
== NULL
3610 || symbol_section_p (fixP
->fx_addsy
))
3611 ret
+= fixP
->fx_size
;
3615 /* Return log2 (VALUE), or -1 if VALUE is not an exact positive power
3626 for (shift
= 0; (value
& 1) == 0; value
>>= 1)
3629 return (value
== 1) ? shift
: -1;
3632 /* Sort of like s_lcomm. */
3635 static int max_alignment
= 15;
3639 s_reserve (int ignore ATTRIBUTE_UNUSED
)
3649 name
= input_line_pointer
;
3650 c
= get_symbol_end ();
3651 p
= input_line_pointer
;
3655 if (*input_line_pointer
!= ',')
3657 as_bad (_("Expected comma after name"));
3658 ignore_rest_of_line ();
3662 ++input_line_pointer
;
3664 if ((size
= get_absolute_expression ()) < 0)
3666 as_bad (_("BSS length (%d.) <0! Ignored."), size
);
3667 ignore_rest_of_line ();
3672 symbolP
= symbol_find_or_make (name
);
3675 if (strncmp (input_line_pointer
, ",\"bss\"", 6) != 0
3676 && strncmp (input_line_pointer
, ",\".bss\"", 7) != 0)
3678 as_bad (_("bad .reserve segment -- expected BSS segment"));
3682 if (input_line_pointer
[2] == '.')
3683 input_line_pointer
+= 7;
3685 input_line_pointer
+= 6;
3688 if (*input_line_pointer
== ',')
3690 ++input_line_pointer
;
3693 if (*input_line_pointer
== '\n')
3695 as_bad (_("missing alignment"));
3696 ignore_rest_of_line ();
3700 align
= (int) get_absolute_expression ();
3703 if (align
> max_alignment
)
3705 align
= max_alignment
;
3706 as_warn (_("alignment too large; assuming %d"), align
);
3712 as_bad (_("negative alignment"));
3713 ignore_rest_of_line ();
3719 temp
= mylog2 (align
);
3722 as_bad (_("alignment not a power of 2"));
3723 ignore_rest_of_line ();
3730 record_alignment (bss_section
, align
);
3735 if (!S_IS_DEFINED (symbolP
)
3737 && S_GET_OTHER (symbolP
) == 0
3738 && S_GET_DESC (symbolP
) == 0
3745 segT current_seg
= now_seg
;
3746 subsegT current_subseg
= now_subseg
;
3748 /* Switch to bss. */
3749 subseg_set (bss_section
, 1);
3753 frag_align (align
, 0, 0);
3755 /* Detach from old frag. */
3756 if (S_GET_SEGMENT (symbolP
) == bss_section
)
3757 symbol_get_frag (symbolP
)->fr_symbol
= NULL
;
3759 symbol_set_frag (symbolP
, frag_now
);
3760 pfrag
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
,
3761 (offsetT
) size
, (char *) 0);
3764 S_SET_SEGMENT (symbolP
, bss_section
);
3766 subseg_set (current_seg
, current_subseg
);
3769 S_SET_SIZE (symbolP
, size
);
3775 as_warn (_("Ignoring attempt to re-define symbol %s"),
3776 S_GET_NAME (symbolP
));
3779 demand_empty_rest_of_line ();
3783 s_common (int ignore ATTRIBUTE_UNUSED
)
3791 name
= input_line_pointer
;
3792 c
= get_symbol_end ();
3793 /* Just after name is now '\0'. */
3794 p
= input_line_pointer
;
3797 if (*input_line_pointer
!= ',')
3799 as_bad (_("Expected comma after symbol-name"));
3800 ignore_rest_of_line ();
3805 input_line_pointer
++;
3807 if ((temp
= get_absolute_expression ()) < 0)
3809 as_bad (_(".COMMon length (%lu) out of range ignored"),
3810 (unsigned long) temp
);
3811 ignore_rest_of_line ();
3816 symbolP
= symbol_find_or_make (name
);
3818 if (S_IS_DEFINED (symbolP
) && ! S_IS_COMMON (symbolP
))
3820 as_bad (_("Ignoring attempt to re-define symbol"));
3821 ignore_rest_of_line ();
3824 if (S_GET_VALUE (symbolP
) != 0)
3826 if (S_GET_VALUE (symbolP
) != (valueT
) size
)
3828 as_warn (_("Length of .comm \"%s\" is already %ld. Not changed to %ld."),
3829 S_GET_NAME (symbolP
), (long) S_GET_VALUE (symbolP
), (long) size
);
3835 S_SET_VALUE (symbolP
, (valueT
) size
);
3836 S_SET_EXTERNAL (symbolP
);
3839 know (symbol_get_frag (symbolP
) == &zero_address_frag
);
3840 if (*input_line_pointer
!= ',')
3842 as_bad (_("Expected comma after common length"));
3843 ignore_rest_of_line ();
3846 input_line_pointer
++;
3848 if (*input_line_pointer
!= '"')
3850 temp
= get_absolute_expression ();
3853 if (temp
> max_alignment
)
3855 temp
= max_alignment
;
3856 as_warn (_("alignment too large; assuming %ld"), (long) temp
);
3862 as_bad (_("negative alignment"));
3863 ignore_rest_of_line ();
3868 if (symbol_get_obj (symbolP
)->local
)
3875 old_subsec
= now_subseg
;
3880 align
= mylog2 (temp
);
3884 as_bad (_("alignment not a power of 2"));
3885 ignore_rest_of_line ();
3889 record_alignment (bss_section
, align
);
3890 subseg_set (bss_section
, 0);
3892 frag_align (align
, 0, 0);
3893 if (S_GET_SEGMENT (symbolP
) == bss_section
)
3894 symbol_get_frag (symbolP
)->fr_symbol
= 0;
3895 symbol_set_frag (symbolP
, frag_now
);
3896 p
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
,
3897 (offsetT
) size
, (char *) 0);
3899 S_SET_SEGMENT (symbolP
, bss_section
);
3900 S_CLEAR_EXTERNAL (symbolP
);
3901 S_SET_SIZE (symbolP
, size
);
3902 subseg_set (old_sec
, old_subsec
);
3905 #endif /* OBJ_ELF */
3908 S_SET_VALUE (symbolP
, (valueT
) size
);
3910 S_SET_ALIGN (symbolP
, temp
);
3911 S_SET_SIZE (symbolP
, size
);
3913 S_SET_EXTERNAL (symbolP
);
3914 S_SET_SEGMENT (symbolP
, bfd_com_section_ptr
);
3919 input_line_pointer
++;
3920 /* @@ Some use the dot, some don't. Can we get some consistency?? */
3921 if (*input_line_pointer
== '.')
3922 input_line_pointer
++;
3923 /* @@ Some say data, some say bss. */
3924 if (strncmp (input_line_pointer
, "bss\"", 4)
3925 && strncmp (input_line_pointer
, "data\"", 5))
3927 while (*--input_line_pointer
!= '"')
3929 input_line_pointer
--;
3930 goto bad_common_segment
;
3932 while (*input_line_pointer
++ != '"')
3934 goto allocate_common
;
3937 symbol_get_bfdsym (symbolP
)->flags
|= BSF_OBJECT
;
3939 demand_empty_rest_of_line ();
3944 p
= input_line_pointer
;
3945 while (*p
&& *p
!= '\n')
3949 as_bad (_("bad .common segment %s"), input_line_pointer
+ 1);
3951 input_line_pointer
= p
;
3952 ignore_rest_of_line ();
3957 /* Handle the .empty pseudo-op. This suppresses the warnings about
3958 invalid delay slot usage. */
3961 s_empty (int ignore ATTRIBUTE_UNUSED
)
3963 /* The easy way to implement is to just forget about the last
3969 s_seg (int ignore ATTRIBUTE_UNUSED
)
3972 if (strncmp (input_line_pointer
, "\"text\"", 6) == 0)
3974 input_line_pointer
+= 6;
3978 if (strncmp (input_line_pointer
, "\"data\"", 6) == 0)
3980 input_line_pointer
+= 6;
3984 if (strncmp (input_line_pointer
, "\"data1\"", 7) == 0)
3986 input_line_pointer
+= 7;
3990 if (strncmp (input_line_pointer
, "\"bss\"", 5) == 0)
3992 input_line_pointer
+= 5;
3993 /* We only support 2 segments -- text and data -- for now, so
3994 things in the "bss segment" will have to go into data for now.
3995 You can still allocate SEG_BSS stuff with .lcomm or .reserve. */
3996 subseg_set (data_section
, 255); /* FIXME-SOMEDAY. */
3999 as_bad (_("Unknown segment type"));
4000 demand_empty_rest_of_line ();
4006 subseg_set (data_section
, 1);
4007 demand_empty_rest_of_line ();
4011 s_proc (int ignore ATTRIBUTE_UNUSED
)
4013 while (!is_end_of_line
[(unsigned char) *input_line_pointer
])
4015 ++input_line_pointer
;
4017 ++input_line_pointer
;
4020 /* This static variable is set by s_uacons to tell sparc_cons_align
4021 that the expression does not need to be aligned. */
4023 static int sparc_no_align_cons
= 0;
4025 /* This static variable is set by sparc_cons to emit requested types
4026 of relocations in cons_fix_new_sparc. */
4028 static const char *sparc_cons_special_reloc
;
4030 /* This handles the unaligned space allocation pseudo-ops, such as
4031 .uaword. .uaword is just like .word, but the value does not need
4035 s_uacons (int bytes
)
4037 /* Tell sparc_cons_align not to align this value. */
4038 sparc_no_align_cons
= 1;
4040 sparc_no_align_cons
= 0;
4043 /* This handles the native word allocation pseudo-op .nword.
4044 For sparc_arch_size 32 it is equivalent to .word, for
4045 sparc_arch_size 64 it is equivalent to .xword. */
4048 s_ncons (int bytes ATTRIBUTE_UNUSED
)
4050 cons (sparc_arch_size
== 32 ? 4 : 8);
4054 /* Handle the SPARC ELF .register pseudo-op. This sets the binding of a
4058 .register %g[2367],{#scratch|symbolname|#ignore}
4062 s_register (int ignore ATTRIBUTE_UNUSED
)
4067 const char *regname
;
4069 if (input_line_pointer
[0] != '%'
4070 || input_line_pointer
[1] != 'g'
4071 || ((input_line_pointer
[2] & ~1) != '2'
4072 && (input_line_pointer
[2] & ~1) != '6')
4073 || input_line_pointer
[3] != ',')
4074 as_bad (_("register syntax is .register %%g[2367],{#scratch|symbolname|#ignore}"));
4075 reg
= input_line_pointer
[2] - '0';
4076 input_line_pointer
+= 4;
4078 if (*input_line_pointer
== '#')
4080 ++input_line_pointer
;
4081 regname
= input_line_pointer
;
4082 c
= get_symbol_end ();
4083 if (strcmp (regname
, "scratch") && strcmp (regname
, "ignore"))
4084 as_bad (_("register syntax is .register %%g[2367],{#scratch|symbolname|#ignore}"));
4085 if (regname
[0] == 'i')
4092 regname
= input_line_pointer
;
4093 c
= get_symbol_end ();
4095 if (sparc_arch_size
== 64)
4099 if ((regname
&& globals
[reg
] != (symbolS
*) 1
4100 && strcmp (S_GET_NAME (globals
[reg
]), regname
))
4101 || ((regname
!= NULL
) ^ (globals
[reg
] != (symbolS
*) 1)))
4102 as_bad (_("redefinition of global register"));
4106 if (regname
== NULL
)
4107 globals
[reg
] = (symbolS
*) 1;
4112 if (symbol_find (regname
))
4113 as_bad (_("Register symbol %s already defined."),
4116 globals
[reg
] = symbol_make (regname
);
4117 flags
= symbol_get_bfdsym (globals
[reg
])->flags
;
4119 flags
= flags
& ~(BSF_GLOBAL
|BSF_LOCAL
|BSF_WEAK
);
4120 if (! (flags
& (BSF_GLOBAL
|BSF_LOCAL
|BSF_WEAK
)))
4121 flags
|= BSF_GLOBAL
;
4122 symbol_get_bfdsym (globals
[reg
])->flags
= flags
;
4123 S_SET_VALUE (globals
[reg
], (valueT
) reg
);
4124 S_SET_ALIGN (globals
[reg
], reg
);
4125 S_SET_SIZE (globals
[reg
], 0);
4126 /* Although we actually want undefined_section here,
4127 we have to use absolute_section, because otherwise
4128 generic as code will make it a COM section.
4129 We fix this up in sparc_adjust_symtab. */
4130 S_SET_SEGMENT (globals
[reg
], absolute_section
);
4131 S_SET_OTHER (globals
[reg
], 0);
4132 elf_symbol (symbol_get_bfdsym (globals
[reg
]))
4133 ->internal_elf_sym
.st_info
=
4134 ELF_ST_INFO(STB_GLOBAL
, STT_REGISTER
);
4135 elf_symbol (symbol_get_bfdsym (globals
[reg
]))
4136 ->internal_elf_sym
.st_shndx
= SHN_UNDEF
;
4141 *input_line_pointer
= c
;
4143 demand_empty_rest_of_line ();
4146 /* Adjust the symbol table. We set undefined sections for STT_REGISTER
4147 symbols which need it. */
4150 sparc_adjust_symtab (void)
4154 for (sym
= symbol_rootP
; sym
!= NULL
; sym
= symbol_next (sym
))
4156 if (ELF_ST_TYPE (elf_symbol (symbol_get_bfdsym (sym
))
4157 ->internal_elf_sym
.st_info
) != STT_REGISTER
)
4160 if (ELF_ST_TYPE (elf_symbol (symbol_get_bfdsym (sym
))
4161 ->internal_elf_sym
.st_shndx
!= SHN_UNDEF
))
4164 S_SET_SEGMENT (sym
, undefined_section
);
4169 /* If the --enforce-aligned-data option is used, we require .word,
4170 et. al., to be aligned correctly. We do it by setting up an
4171 rs_align_code frag, and checking in HANDLE_ALIGN to make sure that
4172 no unexpected alignment was introduced.
4174 The SunOS and Solaris native assemblers enforce aligned data by
4175 default. We don't want to do that, because gcc can deliberately
4176 generate misaligned data if the packed attribute is used. Instead,
4177 we permit misaligned data by default, and permit the user to set an
4178 option to check for it. */
4181 sparc_cons_align (int nbytes
)
4186 /* Only do this if we are enforcing aligned data. */
4187 if (! enforce_aligned_data
)
4190 /* Don't align if this is an unaligned pseudo-op. */
4191 if (sparc_no_align_cons
)
4194 nalign
= mylog2 (nbytes
);
4198 gas_assert (nalign
> 0);
4200 if (now_seg
== absolute_section
)
4202 if ((abs_section_offset
& ((1 << nalign
) - 1)) != 0)
4203 as_bad (_("misaligned data"));
4207 p
= frag_var (rs_align_test
, 1, 1, (relax_substateT
) 0,
4208 (symbolS
*) NULL
, (offsetT
) nalign
, (char *) NULL
);
4210 record_alignment (now_seg
, nalign
);
4213 /* This is called from HANDLE_ALIGN in tc-sparc.h. */
4216 sparc_handle_align (fragS
*fragp
)
4221 count
= fragp
->fr_next
->fr_address
- fragp
->fr_address
- fragp
->fr_fix
;
4223 switch (fragp
->fr_type
)
4227 as_bad_where (fragp
->fr_file
, fragp
->fr_line
, _("misaligned data"));
4231 p
= fragp
->fr_literal
+ fragp
->fr_fix
;
4242 if (SPARC_OPCODE_ARCH_V9_P (max_architecture
) && count
> 8)
4244 unsigned wval
= (0x30680000 | count
>> 2); /* ba,a,pt %xcc, 1f */
4245 if (INSN_BIG_ENDIAN
)
4246 number_to_chars_bigendian (p
, wval
, 4);
4248 number_to_chars_littleendian (p
, wval
, 4);
4254 if (INSN_BIG_ENDIAN
)
4255 number_to_chars_bigendian (p
, 0x01000000, 4);
4257 number_to_chars_littleendian (p
, 0x01000000, 4);
4259 fragp
->fr_fix
+= fix
;
4269 /* Some special processing for a Sparc ELF file. */
4272 sparc_elf_final_processing (void)
4274 /* Set the Sparc ELF flag bits. FIXME: There should probably be some
4275 sort of BFD interface for this. */
4276 if (sparc_arch_size
== 64)
4278 switch (sparc_memory_model
)
4281 elf_elfheader (stdoutput
)->e_flags
|= EF_SPARCV9_RMO
;
4284 elf_elfheader (stdoutput
)->e_flags
|= EF_SPARCV9_PSO
;
4290 else if (current_architecture
>= SPARC_OPCODE_ARCH_V9
)
4291 elf_elfheader (stdoutput
)->e_flags
|= EF_SPARC_32PLUS
;
4292 if (current_architecture
== SPARC_OPCODE_ARCH_V9A
)
4293 elf_elfheader (stdoutput
)->e_flags
|= EF_SPARC_SUN_US1
;
4294 else if (current_architecture
== SPARC_OPCODE_ARCH_V9B
)
4295 elf_elfheader (stdoutput
)->e_flags
|= EF_SPARC_SUN_US1
|EF_SPARC_SUN_US3
;
4299 sparc_cons (expressionS
*exp
, int size
)
4304 sparc_cons_special_reloc
= NULL
;
4305 save
= input_line_pointer
;
4306 if (input_line_pointer
[0] == '%'
4307 && input_line_pointer
[1] == 'r'
4308 && input_line_pointer
[2] == '_')
4310 if (strncmp (input_line_pointer
+ 3, "disp", 4) == 0)
4312 input_line_pointer
+= 7;
4313 sparc_cons_special_reloc
= "disp";
4315 else if (strncmp (input_line_pointer
+ 3, "plt", 3) == 0)
4317 if (size
!= 4 && size
!= 8)
4318 as_bad (_("Illegal operands: %%r_plt in %d-byte data field"), size
);
4321 input_line_pointer
+= 6;
4322 sparc_cons_special_reloc
= "plt";
4325 else if (strncmp (input_line_pointer
+ 3, "tls_dtpoff", 10) == 0)
4327 if (size
!= 4 && size
!= 8)
4328 as_bad (_("Illegal operands: %%r_tls_dtpoff in %d-byte data field"), size
);
4331 input_line_pointer
+= 13;
4332 sparc_cons_special_reloc
= "tls_dtpoff";
4335 if (sparc_cons_special_reloc
)
4342 if (*input_line_pointer
!= '8')
4344 input_line_pointer
--;
4347 if (input_line_pointer
[0] != '1' || input_line_pointer
[1] != '6')
4351 if (input_line_pointer
[0] != '3' || input_line_pointer
[1] != '2')
4355 if (input_line_pointer
[0] != '6' || input_line_pointer
[1] != '4')
4365 as_bad (_("Illegal operands: Only %%r_%s%d allowed in %d-byte data fields"),
4366 sparc_cons_special_reloc
, size
* 8, size
);
4370 input_line_pointer
+= 2;
4371 if (*input_line_pointer
!= '(')
4373 as_bad (_("Illegal operands: %%r_%s%d requires arguments in ()"),
4374 sparc_cons_special_reloc
, size
* 8);
4381 input_line_pointer
= save
;
4382 sparc_cons_special_reloc
= NULL
;
4387 char *end
= ++input_line_pointer
;
4390 while (! is_end_of_line
[(c
= *end
)])
4404 as_bad (_("Illegal operands: %%r_%s%d requires arguments in ()"),
4405 sparc_cons_special_reloc
, size
* 8);
4411 if (input_line_pointer
!= end
)
4413 as_bad (_("Illegal operands: %%r_%s%d requires arguments in ()"),
4414 sparc_cons_special_reloc
, size
* 8);
4418 input_line_pointer
++;
4420 c
= *input_line_pointer
;
4421 if (! is_end_of_line
[c
] && c
!= ',')
4422 as_bad (_("Illegal operands: garbage after %%r_%s%d()"),
4423 sparc_cons_special_reloc
, size
* 8);
4429 if (sparc_cons_special_reloc
== NULL
)
4435 /* This is called by emit_expr via TC_CONS_FIX_NEW when creating a
4436 reloc for a cons. We could use the definition there, except that
4437 we want to handle little endian relocs specially. */
4440 cons_fix_new_sparc (fragS
*frag
,
4442 unsigned int nbytes
,
4445 bfd_reloc_code_real_type r
;
4447 r
= (nbytes
== 1 ? BFD_RELOC_8
:
4448 (nbytes
== 2 ? BFD_RELOC_16
:
4449 (nbytes
== 4 ? BFD_RELOC_32
: BFD_RELOC_64
)));
4451 if (target_little_endian_data
4453 && now_seg
->flags
& SEC_ALLOC
)
4454 r
= BFD_RELOC_SPARC_REV32
;
4456 if (sparc_cons_special_reloc
)
4458 if (*sparc_cons_special_reloc
== 'd')
4461 case 1: r
= BFD_RELOC_8_PCREL
; break;
4462 case 2: r
= BFD_RELOC_16_PCREL
; break;
4463 case 4: r
= BFD_RELOC_32_PCREL
; break;
4464 case 8: r
= BFD_RELOC_64_PCREL
; break;
4467 else if (*sparc_cons_special_reloc
== 'p')
4470 case 4: r
= BFD_RELOC_SPARC_PLT32
; break;
4471 case 8: r
= BFD_RELOC_SPARC_PLT64
; break;
4476 case 4: r
= BFD_RELOC_SPARC_TLS_DTPOFF32
; break;
4477 case 8: r
= BFD_RELOC_SPARC_TLS_DTPOFF64
; break;
4480 else if (sparc_no_align_cons
)
4484 case 2: r
= BFD_RELOC_SPARC_UA16
; break;
4485 case 4: r
= BFD_RELOC_SPARC_UA32
; break;
4486 case 8: r
= BFD_RELOC_SPARC_UA64
; break;
4491 fix_new_exp (frag
, where
, (int) nbytes
, exp
, 0, r
);
4492 sparc_cons_special_reloc
= NULL
;
4496 sparc_cfi_frame_initial_instructions (void)
4498 cfi_add_CFA_def_cfa (14, sparc_arch_size
== 64 ? 0x7ff : 0);
4502 sparc_regname_to_dw2regnum (char *regname
)
4510 p
= strchr (q
, regname
[0]);
4513 if (regname
[1] < '0' || regname
[1] > '8' || regname
[2])
4515 return (p
- q
) * 8 + regname
[1] - '0';
4517 if (regname
[0] == 's' && regname
[1] == 'p' && !regname
[2])
4519 if (regname
[0] == 'f' && regname
[1] == 'p' && !regname
[2])
4521 if (regname
[0] == 'f' || regname
[0] == 'r')
4523 unsigned int regnum
;
4525 regnum
= strtoul (regname
+ 1, &q
, 10);
4528 if (regnum
>= ((regname
[0] == 'f'
4529 && SPARC_OPCODE_ARCH_V9_P (max_architecture
))
4532 if (regname
[0] == 'f')
4535 if (regnum
>= 64 && (regnum
& 1))
4544 sparc_cfi_emit_pcrel_expr (expressionS
*exp
, unsigned int nbytes
)
4546 sparc_cons_special_reloc
= "disp";
4547 sparc_no_align_cons
= 1;
4548 emit_expr (exp
, nbytes
);
4549 sparc_no_align_cons
= 0;
4550 sparc_cons_special_reloc
= NULL
;