1 /* tc-hppa.c -- Assemble for the PA
2 Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 License
18 along with GAS; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
22 /* HP PA-RISC support was contributed by the Center for Software Science
23 at the University of Utah. */
26 #include "safe-ctype.h"
28 #include "dw2gencfi.h"
30 #include "bfd/libhppa.h"
32 /* Be careful, this file includes data *declarations*. */
33 #include "opcode/hppa.h"
35 #if defined (OBJ_ELF) && defined (OBJ_SOM)
36 error only one of OBJ_ELF
and OBJ_SOM can be defined
39 /* If we are using ELF, then we probably can support dwarf2 debug
40 records. Furthermore, if we are supporting dwarf2 debug records,
41 then we want to use the assembler support for compact line numbers. */
43 #include "dwarf2dbg.h"
45 /* A "convenient" place to put object file dependencies which do
46 not need to be seen outside of tc-hppa.c. */
48 /* Object file formats specify relocation types. */
49 typedef enum elf_hppa_reloc_type reloc_type
;
51 /* Object file formats specify BFD symbol types. */
52 typedef elf_symbol_type obj_symbol_type
;
53 #define symbol_arg_reloc_info(sym)\
54 (((obj_symbol_type *) symbol_get_bfdsym (sym))->tc_data.hppa_arg_reloc)
56 #if TARGET_ARCH_SIZE == 64
57 /* How to generate a relocation. */
58 #define hppa_gen_reloc_type _bfd_elf64_hppa_gen_reloc_type
59 #define elf_hppa_reloc_final_type elf64_hppa_reloc_final_type
61 #define hppa_gen_reloc_type _bfd_elf32_hppa_gen_reloc_type
62 #define elf_hppa_reloc_final_type elf32_hppa_reloc_final_type
65 /* ELF objects can have versions, but apparently do not have anywhere
66 to store a copyright string. */
67 #define obj_version obj_elf_version
68 #define obj_copyright obj_elf_version
70 #define UNWIND_SECTION_NAME ".PARISC.unwind"
74 /* Names of various debugging spaces/subspaces. */
75 #define GDB_DEBUG_SPACE_NAME "$GDB_DEBUG$"
76 #define GDB_STRINGS_SUBSPACE_NAME "$GDB_STRINGS$"
77 #define GDB_SYMBOLS_SUBSPACE_NAME "$GDB_SYMBOLS$"
78 #define UNWIND_SECTION_NAME "$UNWIND$"
80 /* Object file formats specify relocation types. */
81 typedef int reloc_type
;
83 /* SOM objects can have both a version string and a copyright string. */
84 #define obj_version obj_som_version
85 #define obj_copyright obj_som_copyright
87 /* How to generate a relocation. */
88 #define hppa_gen_reloc_type hppa_som_gen_reloc_type
90 /* Object file formats specify BFD symbol types. */
91 typedef som_symbol_type obj_symbol_type
;
92 #define symbol_arg_reloc_info(sym)\
93 (((obj_symbol_type *) symbol_get_bfdsym (sym))->tc_data.ap.hppa_arg_reloc)
95 /* This apparently isn't in older versions of hpux reloc.h. */
97 #define R_DLT_REL 0x78
109 #if TARGET_ARCH_SIZE == 64
110 #define DEFAULT_LEVEL 25
112 #define DEFAULT_LEVEL 10
115 /* Various structures and types used internally in tc-hppa.c. */
117 /* Unwind table and descriptor. FIXME: Sync this with GDB version. */
121 unsigned int cannot_unwind
:1;
122 unsigned int millicode
:1;
123 unsigned int millicode_save_rest
:1;
124 unsigned int region_desc
:2;
125 unsigned int save_sr
:2;
126 unsigned int entry_fr
:4;
127 unsigned int entry_gr
:5;
128 unsigned int args_stored
:1;
129 unsigned int call_fr
:5;
130 unsigned int call_gr
:5;
131 unsigned int save_sp
:1;
132 unsigned int save_rp
:1;
133 unsigned int save_rp_in_frame
:1;
134 unsigned int extn_ptr_defined
:1;
135 unsigned int cleanup_defined
:1;
137 unsigned int hpe_interrupt_marker
:1;
138 unsigned int hpux_interrupt_marker
:1;
139 unsigned int reserved
:3;
140 unsigned int frame_size
:27;
143 /* We can't rely on compilers placing bitfields in any particular
144 place, so use these macros when dumping unwind descriptors to
146 #define UNWIND_LOW32(U) \
147 (((U)->cannot_unwind << 31) \
148 | ((U)->millicode << 30) \
149 | ((U)->millicode_save_rest << 29) \
150 | ((U)->region_desc << 27) \
151 | ((U)->save_sr << 25) \
152 | ((U)->entry_fr << 21) \
153 | ((U)->entry_gr << 16) \
154 | ((U)->args_stored << 15) \
155 | ((U)->call_fr << 10) \
156 | ((U)->call_gr << 5) \
157 | ((U)->save_sp << 4) \
158 | ((U)->save_rp << 3) \
159 | ((U)->save_rp_in_frame << 2) \
160 | ((U)->extn_ptr_defined << 1) \
161 | ((U)->cleanup_defined << 0))
163 #define UNWIND_HIGH32(U) \
164 (((U)->hpe_interrupt_marker << 31) \
165 | ((U)->hpux_interrupt_marker << 30) \
166 | ((U)->frame_size << 0))
170 /* Starting and ending offsets of the region described by
172 unsigned int start_offset
;
173 unsigned int end_offset
;
174 struct unwind_desc descriptor
;
177 /* This structure is used by the .callinfo, .enter, .leave pseudo-ops to
178 control the entry and exit code they generate. It is also used in
179 creation of the correct stack unwind descriptors.
181 NOTE: GAS does not support .enter and .leave for the generation of
182 prologues and epilogues. FIXME.
184 The fields in structure roughly correspond to the arguments available on the
185 .callinfo pseudo-op. */
189 /* The unwind descriptor being built. */
190 struct unwind_table ci_unwind
;
192 /* Name of this function. */
193 symbolS
*start_symbol
;
195 /* (temporary) symbol used to mark the end of this function. */
198 /* Next entry in the chain. */
199 struct call_info
*ci_next
;
202 /* Operand formats for FP instructions. Note not all FP instructions
203 allow all four formats to be used (for example fmpysub only allows
207 SGL
, DBL
, ILLEGAL_FMT
, QUAD
, W
, UW
, DW
, UDW
, QW
, UQW
211 /* This fully describes the symbol types which may be attached to
212 an EXPORT or IMPORT directive. Only SOM uses this formation
213 (ELF has no need for it). */
217 SYMBOL_TYPE_ABSOLUTE
,
221 SYMBOL_TYPE_MILLICODE
,
223 SYMBOL_TYPE_PRI_PROG
,
224 SYMBOL_TYPE_SEC_PROG
,
228 /* This structure contains information needed to assemble
229 individual instructions. */
232 /* Holds the opcode after parsing by pa_ip. */
233 unsigned long opcode
;
235 /* Holds an expression associated with the current instruction. */
238 /* Does this instruction use PC-relative addressing. */
241 /* Floating point formats for operand1 and operand2. */
242 fp_operand_format fpof1
;
243 fp_operand_format fpof2
;
245 /* Whether or not we saw a truncation request on an fcnv insn. */
248 /* Holds the field selector for this instruction
249 (for example L%, LR%, etc). */
252 /* Holds any argument relocation bits associated with this
253 instruction. (instruction should be some sort of call). */
254 unsigned int arg_reloc
;
256 /* The format specification for this instruction. */
259 /* The relocation (if any) associated with this instruction. */
263 /* PA-89 floating point registers are arranged like this:
265 +--------------+--------------+
266 | 0 or 16L | 16 or 16R |
267 +--------------+--------------+
268 | 1 or 17L | 17 or 17R |
269 +--------------+--------------+
277 +--------------+--------------+
278 | 14 or 30L | 30 or 30R |
279 +--------------+--------------+
280 | 15 or 31L | 31 or 31R |
281 +--------------+--------------+ */
283 /* Additional information needed to build argument relocation stubs. */
286 /* The argument relocation specification. */
287 unsigned int arg_reloc
;
289 /* Number of arguments. */
290 unsigned int arg_count
;
294 /* This structure defines an entry in the subspace dictionary
297 struct subspace_dictionary_chain
299 /* Nonzero if this space has been defined by the user code. */
300 unsigned int ssd_defined
;
302 /* Name of this subspace. */
305 /* GAS segment and subsegment associated with this subspace. */
309 /* Next space in the subspace dictionary chain. */
310 struct subspace_dictionary_chain
*ssd_next
;
313 typedef struct subspace_dictionary_chain ssd_chain_struct
;
315 /* This structure defines an entry in the subspace dictionary
318 struct space_dictionary_chain
320 /* Nonzero if this space has been defined by the user code or
321 as a default space. */
322 unsigned int sd_defined
;
324 /* Nonzero if this spaces has been defined by the user code. */
325 unsigned int sd_user_defined
;
327 /* The space number (or index). */
328 unsigned int sd_spnum
;
330 /* The name of this subspace. */
333 /* GAS segment to which this subspace corresponds. */
336 /* Current subsegment number being used. */
339 /* The chain of subspaces contained within this space. */
340 ssd_chain_struct
*sd_subspaces
;
342 /* The next entry in the space dictionary chain. */
343 struct space_dictionary_chain
*sd_next
;
346 typedef struct space_dictionary_chain sd_chain_struct
;
348 /* This structure defines attributes of the default subspace
349 dictionary entries. */
351 struct default_subspace_dict
353 /* Name of the subspace. */
356 /* FIXME. Is this still needed? */
359 /* Nonzero if this subspace is loadable. */
362 /* Nonzero if this subspace contains only code. */
365 /* Nonzero if this is a comdat subspace. */
368 /* Nonzero if this is a common subspace. */
371 /* Nonzero if this is a common subspace which allows symbols
372 to be multiply defined. */
375 /* Nonzero if this subspace should be zero filled. */
378 /* Sort key for this subspace. */
381 /* Access control bits for this subspace. Can represent RWX access
382 as well as privilege level changes for gateways. */
385 /* Index of containing space. */
388 /* Alignment (in bytes) of this subspace. */
391 /* Quadrant within space where this subspace should be loaded. */
394 /* An index into the default spaces array. */
397 /* Subsegment associated with this subspace. */
401 /* This structure defines attributes of the default space
402 dictionary entries. */
404 struct default_space_dict
406 /* Name of the space. */
409 /* Space number. It is possible to identify spaces within
410 assembly code numerically! */
413 /* Nonzero if this space is loadable. */
416 /* Nonzero if this space is "defined". FIXME is still needed */
419 /* Nonzero if this space can not be shared. */
422 /* Sort key for this space. */
425 /* Segment associated with this space. */
430 /* Structure for previous label tracking. Needed so that alignments,
431 callinfo declarations, etc can be easily attached to a particular
433 typedef struct label_symbol_struct
435 struct symbol
*lss_label
;
437 sd_chain_struct
*lss_space
;
442 struct label_symbol_struct
*lss_next
;
446 /* Extra information needed to perform fixups (relocations) on the PA. */
447 struct hppa_fix_struct
449 /* The field selector. */
450 enum hppa_reloc_field_selector_type_alt fx_r_field
;
455 /* Format of fixup. */
458 /* Argument relocation bits. */
459 unsigned int fx_arg_reloc
;
461 /* The segment this fixup appears in. */
465 /* Structure to hold information about predefined registers. */
473 /* This structure defines the mapping from a FP condition string
474 to a condition number which can be recorded in an instruction. */
481 /* This structure defines a mapping from a field selector
482 string to a field selector type. */
483 struct selector_entry
489 /* Prototypes for functions local to tc-hppa.c. */
492 static void pa_check_current_space_and_subspace (void);
495 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
496 static void pa_text (int);
497 static void pa_data (int);
498 static void pa_comm (int);
501 static int exact_log2 (int);
502 static void pa_compiler (int);
503 static void pa_align (int);
504 static void pa_space (int);
505 static void pa_spnum (int);
506 static void pa_subspace (int);
507 static sd_chain_struct
*create_new_space (char *, int, int,
510 static ssd_chain_struct
*create_new_subspace (sd_chain_struct
*,
515 static ssd_chain_struct
*update_subspace (sd_chain_struct
*,
516 char *, int, int, int,
520 static sd_chain_struct
*is_defined_space (char *);
521 static ssd_chain_struct
*is_defined_subspace (char *);
522 static sd_chain_struct
*pa_segment_to_space (asection
*);
523 static ssd_chain_struct
*pa_subsegment_to_subspace (asection
*,
525 static sd_chain_struct
*pa_find_space_by_number (int);
526 static unsigned int pa_subspace_start (sd_chain_struct
*, int);
527 static sd_chain_struct
*pa_parse_space_stmt (char *, int);
530 /* File and globally scoped variable declarations. */
533 /* Root and final entry in the space chain. */
534 static sd_chain_struct
*space_dict_root
;
535 static sd_chain_struct
*space_dict_last
;
537 /* The current space and subspace. */
538 static sd_chain_struct
*current_space
;
539 static ssd_chain_struct
*current_subspace
;
542 /* Root of the call_info chain. */
543 static struct call_info
*call_info_root
;
545 /* The last call_info (for functions) structure
546 seen so it can be associated with fixups and
548 static struct call_info
*last_call_info
;
550 /* The last call description (for actual calls). */
551 static struct call_desc last_call_desc
;
553 /* handle of the OPCODE hash table */
554 static struct hash_control
*op_hash
= NULL
;
556 /* These characters can be suffixes of opcode names and they may be
557 followed by meaningful whitespace. We don't include `,' and `!'
558 as they never appear followed by meaningful whitespace. */
559 const char hppa_symbol_chars
[] = "*?=<>";
561 /* This array holds the chars that only start a comment at the beginning of
562 a line. If the line seems to have the form '# 123 filename'
563 .line and .file directives will appear in the pre-processed output.
565 Note that input_file.c hand checks for '#' at the beginning of the
566 first line of the input file. This is because the compiler outputs
567 #NO_APP at the beginning of its output.
569 Also note that C style comments will always work. */
570 const char line_comment_chars
[] = "#";
572 /* This array holds the chars that always start a comment. If the
573 pre-processor is disabled, these aren't very useful. */
574 const char comment_chars
[] = ";";
576 /* This array holds the characters which act as line separators. */
577 const char line_separator_chars
[] = "!";
579 /* Chars that can be used to separate mant from exp in floating point nums. */
580 const char EXP_CHARS
[] = "eE";
582 /* Chars that mean this number is a floating point constant.
583 As in 0f12.456 or 0d1.2345e12.
585 Be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
586 changed in read.c. Ideally it shouldn't have to know about it
587 at all, but nothing is ideal around here. */
588 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
590 static struct pa_it the_insn
;
592 /* Points to the end of an expression just parsed by get_expression
593 and friends. FIXME. This shouldn't be handled with a file-global
595 static char *expr_end
;
597 /* Nonzero if a .callinfo appeared within the current procedure. */
598 static int callinfo_found
;
600 /* Nonzero if the assembler is currently within a .entry/.exit pair. */
601 static int within_entry_exit
;
603 /* Nonzero if the assembler is currently within a procedure definition. */
604 static int within_procedure
;
606 /* Handle on structure which keep track of the last symbol
607 seen in each subspace. */
608 static label_symbol_struct
*label_symbols_rootp
= NULL
;
610 /* Holds the last field selector. */
611 static int hppa_field_selector
;
613 /* Nonzero when strict matching is enabled. Zero otherwise.
615 Each opcode in the table has a flag which indicates whether or
616 not strict matching should be enabled for that instruction.
618 Mainly, strict causes errors to be ignored when a match failure
619 occurs. However, it also affects the parsing of register fields
620 by pa_parse_number. */
623 /* pa_parse_number returns values in `pa_number'. Mostly
624 pa_parse_number is used to return a register number, with floating
625 point registers being numbered from FP_REG_BASE upwards.
626 The bit specified with FP_REG_RSEL is set if the floating point
627 register has a `r' suffix. */
628 #define FP_REG_BASE 64
629 #define FP_REG_RSEL 128
630 static int pa_number
;
633 /* A dummy bfd symbol so that all relocations have symbols of some kind. */
634 static symbolS
*dummy_symbol
;
637 /* Nonzero if errors are to be printed. */
638 static int print_errors
= 1;
640 /* List of registers that are pre-defined:
642 Each general register has one predefined name of the form
643 %r<REGNUM> which has the value <REGNUM>.
645 Space and control registers are handled in a similar manner,
646 but use %sr<REGNUM> and %cr<REGNUM> as their predefined names.
648 Likewise for the floating point registers, but of the form
649 %fr<REGNUM>. Floating point registers have additional predefined
650 names with 'L' and 'R' suffixes (e.g. %fr19L, %fr19R) which
651 again have the value <REGNUM>.
653 Many registers also have synonyms:
655 %r26 - %r23 have %arg0 - %arg3 as synonyms
656 %r28 - %r29 have %ret0 - %ret1 as synonyms
657 %fr4 - %fr7 have %farg0 - %farg3 as synonyms
658 %r30 has %sp as a synonym
659 %r27 has %dp as a synonym
660 %r2 has %rp as a synonym
662 Almost every control register has a synonym; they are not listed
665 The table is sorted. Suitable for searching by a binary search. */
667 static const struct pd_reg pre_defined_registers
[] =
701 {"%farg0", 4 + FP_REG_BASE
},
702 {"%farg1", 5 + FP_REG_BASE
},
703 {"%farg2", 6 + FP_REG_BASE
},
704 {"%farg3", 7 + FP_REG_BASE
},
705 {"%fr0", 0 + FP_REG_BASE
},
706 {"%fr0l", 0 + FP_REG_BASE
},
707 {"%fr0r", 0 + FP_REG_BASE
+ FP_REG_RSEL
},
708 {"%fr1", 1 + FP_REG_BASE
},
709 {"%fr10", 10 + FP_REG_BASE
},
710 {"%fr10l", 10 + FP_REG_BASE
},
711 {"%fr10r", 10 + FP_REG_BASE
+ FP_REG_RSEL
},
712 {"%fr11", 11 + FP_REG_BASE
},
713 {"%fr11l", 11 + FP_REG_BASE
},
714 {"%fr11r", 11 + FP_REG_BASE
+ FP_REG_RSEL
},
715 {"%fr12", 12 + FP_REG_BASE
},
716 {"%fr12l", 12 + FP_REG_BASE
},
717 {"%fr12r", 12 + FP_REG_BASE
+ FP_REG_RSEL
},
718 {"%fr13", 13 + FP_REG_BASE
},
719 {"%fr13l", 13 + FP_REG_BASE
},
720 {"%fr13r", 13 + FP_REG_BASE
+ FP_REG_RSEL
},
721 {"%fr14", 14 + FP_REG_BASE
},
722 {"%fr14l", 14 + FP_REG_BASE
},
723 {"%fr14r", 14 + FP_REG_BASE
+ FP_REG_RSEL
},
724 {"%fr15", 15 + FP_REG_BASE
},
725 {"%fr15l", 15 + FP_REG_BASE
},
726 {"%fr15r", 15 + FP_REG_BASE
+ FP_REG_RSEL
},
727 {"%fr16", 16 + FP_REG_BASE
},
728 {"%fr16l", 16 + FP_REG_BASE
},
729 {"%fr16r", 16 + FP_REG_BASE
+ FP_REG_RSEL
},
730 {"%fr17", 17 + FP_REG_BASE
},
731 {"%fr17l", 17 + FP_REG_BASE
},
732 {"%fr17r", 17 + FP_REG_BASE
+ FP_REG_RSEL
},
733 {"%fr18", 18 + FP_REG_BASE
},
734 {"%fr18l", 18 + FP_REG_BASE
},
735 {"%fr18r", 18 + FP_REG_BASE
+ FP_REG_RSEL
},
736 {"%fr19", 19 + FP_REG_BASE
},
737 {"%fr19l", 19 + FP_REG_BASE
},
738 {"%fr19r", 19 + FP_REG_BASE
+ FP_REG_RSEL
},
739 {"%fr1l", 1 + FP_REG_BASE
},
740 {"%fr1r", 1 + FP_REG_BASE
+ FP_REG_RSEL
},
741 {"%fr2", 2 + FP_REG_BASE
},
742 {"%fr20", 20 + FP_REG_BASE
},
743 {"%fr20l", 20 + FP_REG_BASE
},
744 {"%fr20r", 20 + FP_REG_BASE
+ FP_REG_RSEL
},
745 {"%fr21", 21 + FP_REG_BASE
},
746 {"%fr21l", 21 + FP_REG_BASE
},
747 {"%fr21r", 21 + FP_REG_BASE
+ FP_REG_RSEL
},
748 {"%fr22", 22 + FP_REG_BASE
},
749 {"%fr22l", 22 + FP_REG_BASE
},
750 {"%fr22r", 22 + FP_REG_BASE
+ FP_REG_RSEL
},
751 {"%fr23", 23 + FP_REG_BASE
},
752 {"%fr23l", 23 + FP_REG_BASE
},
753 {"%fr23r", 23 + FP_REG_BASE
+ FP_REG_RSEL
},
754 {"%fr24", 24 + FP_REG_BASE
},
755 {"%fr24l", 24 + FP_REG_BASE
},
756 {"%fr24r", 24 + FP_REG_BASE
+ FP_REG_RSEL
},
757 {"%fr25", 25 + FP_REG_BASE
},
758 {"%fr25l", 25 + FP_REG_BASE
},
759 {"%fr25r", 25 + FP_REG_BASE
+ FP_REG_RSEL
},
760 {"%fr26", 26 + FP_REG_BASE
},
761 {"%fr26l", 26 + FP_REG_BASE
},
762 {"%fr26r", 26 + FP_REG_BASE
+ FP_REG_RSEL
},
763 {"%fr27", 27 + FP_REG_BASE
},
764 {"%fr27l", 27 + FP_REG_BASE
},
765 {"%fr27r", 27 + FP_REG_BASE
+ FP_REG_RSEL
},
766 {"%fr28", 28 + FP_REG_BASE
},
767 {"%fr28l", 28 + FP_REG_BASE
},
768 {"%fr28r", 28 + FP_REG_BASE
+ FP_REG_RSEL
},
769 {"%fr29", 29 + FP_REG_BASE
},
770 {"%fr29l", 29 + FP_REG_BASE
},
771 {"%fr29r", 29 + FP_REG_BASE
+ FP_REG_RSEL
},
772 {"%fr2l", 2 + FP_REG_BASE
},
773 {"%fr2r", 2 + FP_REG_BASE
+ FP_REG_RSEL
},
774 {"%fr3", 3 + FP_REG_BASE
},
775 {"%fr30", 30 + FP_REG_BASE
},
776 {"%fr30l", 30 + FP_REG_BASE
},
777 {"%fr30r", 30 + FP_REG_BASE
+ FP_REG_RSEL
},
778 {"%fr31", 31 + FP_REG_BASE
},
779 {"%fr31l", 31 + FP_REG_BASE
},
780 {"%fr31r", 31 + FP_REG_BASE
+ FP_REG_RSEL
},
781 {"%fr3l", 3 + FP_REG_BASE
},
782 {"%fr3r", 3 + FP_REG_BASE
+ FP_REG_RSEL
},
783 {"%fr4", 4 + FP_REG_BASE
},
784 {"%fr4l", 4 + FP_REG_BASE
},
785 {"%fr4r", 4 + FP_REG_BASE
+ FP_REG_RSEL
},
786 {"%fr5", 5 + FP_REG_BASE
},
787 {"%fr5l", 5 + FP_REG_BASE
},
788 {"%fr5r", 5 + FP_REG_BASE
+ FP_REG_RSEL
},
789 {"%fr6", 6 + FP_REG_BASE
},
790 {"%fr6l", 6 + FP_REG_BASE
},
791 {"%fr6r", 6 + FP_REG_BASE
+ FP_REG_RSEL
},
792 {"%fr7", 7 + FP_REG_BASE
},
793 {"%fr7l", 7 + FP_REG_BASE
},
794 {"%fr7r", 7 + FP_REG_BASE
+ FP_REG_RSEL
},
795 {"%fr8", 8 + FP_REG_BASE
},
796 {"%fr8l", 8 + FP_REG_BASE
},
797 {"%fr8r", 8 + FP_REG_BASE
+ FP_REG_RSEL
},
798 {"%fr9", 9 + FP_REG_BASE
},
799 {"%fr9l", 9 + FP_REG_BASE
},
800 {"%fr9r", 9 + FP_REG_BASE
+ FP_REG_RSEL
},
809 #if TARGET_ARCH_SIZE == 64
885 /* This table is sorted by order of the length of the string. This is
886 so we check for <> before we check for <. If we had a <> and checked
887 for < first, we would get a false match. */
888 static const struct fp_cond_map fp_cond_map
[] =
924 static const struct selector_entry selector_table
[] =
949 /* default space and subspace dictionaries */
951 #define GDB_SYMBOLS GDB_SYMBOLS_SUBSPACE_NAME
952 #define GDB_STRINGS GDB_STRINGS_SUBSPACE_NAME
954 /* pre-defined subsegments (subspaces) for the HPPA. */
955 #define SUBSEG_CODE 0
957 #define SUBSEG_MILLI 2
958 #define SUBSEG_DATA 0
960 #define SUBSEG_UNWIND 3
961 #define SUBSEG_GDB_STRINGS 0
962 #define SUBSEG_GDB_SYMBOLS 1
964 static struct default_subspace_dict pa_def_subspaces
[] =
966 {"$CODE$", 1, 1, 1, 0, 0, 0, 0, 24, 0x2c, 0, 8, 0, 0, SUBSEG_CODE
},
967 {"$DATA$", 1, 1, 0, 0, 0, 0, 0, 24, 0x1f, 1, 8, 1, 1, SUBSEG_DATA
},
968 {"$LIT$", 1, 1, 0, 0, 0, 0, 0, 16, 0x2c, 0, 8, 0, 0, SUBSEG_LIT
},
969 {"$MILLICODE$", 1, 1, 0, 0, 0, 0, 0, 8, 0x2c, 0, 8, 0, 0, SUBSEG_MILLI
},
970 {"$BSS$", 1, 1, 0, 0, 0, 0, 1, 80, 0x1f, 1, 8, 1, 1, SUBSEG_BSS
},
971 {NULL
, 0, 1, 0, 0, 0, 0, 0, 255, 0x1f, 0, 4, 0, 0, 0}
974 static struct default_space_dict pa_def_spaces
[] =
976 {"$TEXT$", 0, 1, 1, 0, 8, ASEC_NULL
},
977 {"$PRIVATE$", 1, 1, 1, 1, 16, ASEC_NULL
},
978 {NULL
, 0, 0, 0, 0, 0, ASEC_NULL
}
981 /* Misc local definitions used by the assembler. */
983 /* These macros are used to maintain spaces/subspaces. */
984 #define SPACE_DEFINED(space_chain) (space_chain)->sd_defined
985 #define SPACE_USER_DEFINED(space_chain) (space_chain)->sd_user_defined
986 #define SPACE_SPNUM(space_chain) (space_chain)->sd_spnum
987 #define SPACE_NAME(space_chain) (space_chain)->sd_name
989 #define SUBSPACE_DEFINED(ss_chain) (ss_chain)->ssd_defined
990 #define SUBSPACE_NAME(ss_chain) (ss_chain)->ssd_name
993 /* Return nonzero if the string pointed to by S potentially represents
994 a right or left half of a FP register */
995 #define IS_R_SELECT(S) (*(S) == 'R' || *(S) == 'r')
996 #define IS_L_SELECT(S) (*(S) == 'L' || *(S) == 'l')
998 /* Store immediate values of shift/deposit/extract functions. */
1000 #define SAVE_IMMEDIATE(VALUE) \
1002 if (immediate_check) \
1006 else if (len == -1) \
1011 /* Insert FIELD into OPCODE starting at bit START. Continue pa_ip
1012 main loop after insertion. */
1014 #define INSERT_FIELD_AND_CONTINUE(OPCODE, FIELD, START) \
1016 ((OPCODE) |= (FIELD) << (START)); \
1020 /* Simple range checking for FIELD against HIGH and LOW bounds.
1021 IGNORE is used to suppress the error message. */
1023 #define CHECK_FIELD(FIELD, HIGH, LOW, IGNORE) \
1025 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1028 as_bad (_("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1034 /* Variant of CHECK_FIELD for use in md_apply_fix and other places where
1035 the current file and line number are not valid. */
1037 #define CHECK_FIELD_WHERE(FIELD, HIGH, LOW, FILENAME, LINE) \
1039 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1041 as_bad_where ((FILENAME), (LINE), \
1042 _("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1048 /* Simple alignment checking for FIELD against ALIGN (a power of two).
1049 IGNORE is used to suppress the error message. */
1051 #define CHECK_ALIGN(FIELD, ALIGN, IGNORE) \
1053 if ((FIELD) & ((ALIGN) - 1)) \
1056 as_bad (_("Field not properly aligned [%d] (%d)."), (ALIGN), \
1062 #define is_DP_relative(exp) \
1063 ((exp).X_op == O_subtract \
1064 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$global$") == 0)
1066 #define is_SB_relative(exp) \
1067 ((exp).X_op == O_subtract \
1068 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$segrel$") == 0)
1070 #define is_PC_relative(exp) \
1071 ((exp).X_op == O_subtract \
1072 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$PIC_pcrel$0") == 0)
1074 #define is_tls_gdidx(exp) \
1075 ((exp).X_op == O_subtract \
1076 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_gdidx$") == 0)
1078 #define is_tls_ldidx(exp) \
1079 ((exp).X_op == O_subtract \
1080 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_ldidx$") == 0)
1082 #define is_tls_dtpoff(exp) \
1083 ((exp).X_op == O_subtract \
1084 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_dtpoff$") == 0)
1086 #define is_tls_ieoff(exp) \
1087 ((exp).X_op == O_subtract \
1088 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_ieoff$") == 0)
1090 #define is_tls_leoff(exp) \
1091 ((exp).X_op == O_subtract \
1092 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_leoff$") == 0)
1094 /* We need some complex handling for stabs (sym1 - sym2). Luckily, we'll
1095 always be able to reduce the expression to a constant, so we don't
1096 need real complex handling yet. */
1097 #define is_complex(exp) \
1098 ((exp).X_op != O_constant && (exp).X_op != O_symbol)
1100 /* Actual functions to implement the PA specific code for the assembler. */
1102 /* Called before writing the object file. Make sure entry/exit and
1103 proc/procend pairs match. */
1108 if (within_entry_exit
)
1109 as_fatal (_("Missing .exit\n"));
1111 if (within_procedure
)
1112 as_fatal (_("Missing .procend\n"));
1115 /* Returns a pointer to the label_symbol_struct for the current space.
1116 or NULL if no label_symbol_struct exists for the current space. */
1118 static label_symbol_struct
*
1121 label_symbol_struct
*label_chain
;
1123 for (label_chain
= label_symbols_rootp
;
1125 label_chain
= label_chain
->lss_next
)
1128 if (current_space
== label_chain
->lss_space
&& label_chain
->lss_label
)
1132 if (now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
)
1140 /* Defines a label for the current space. If one is already defined,
1141 this function will replace it with the new label. */
1144 pa_define_label (symbolS
*symbol
)
1146 label_symbol_struct
*label_chain
= pa_get_label ();
1149 label_chain
->lss_label
= symbol
;
1152 /* Create a new label entry and add it to the head of the chain. */
1153 label_chain
= xmalloc (sizeof (label_symbol_struct
));
1154 label_chain
->lss_label
= symbol
;
1156 label_chain
->lss_space
= current_space
;
1159 label_chain
->lss_segment
= now_seg
;
1161 label_chain
->lss_next
= NULL
;
1163 if (label_symbols_rootp
)
1164 label_chain
->lss_next
= label_symbols_rootp
;
1166 label_symbols_rootp
= label_chain
;
1170 dwarf2_emit_label (symbol
);
1174 /* Removes a label definition for the current space.
1175 If there is no label_symbol_struct entry, then no action is taken. */
1178 pa_undefine_label (void)
1180 label_symbol_struct
*label_chain
;
1181 label_symbol_struct
*prev_label_chain
= NULL
;
1183 for (label_chain
= label_symbols_rootp
;
1185 label_chain
= label_chain
->lss_next
)
1189 && current_space
== label_chain
->lss_space
&& label_chain
->lss_label
1192 && now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
1196 /* Remove the label from the chain and free its memory. */
1197 if (prev_label_chain
)
1198 prev_label_chain
->lss_next
= label_chain
->lss_next
;
1200 label_symbols_rootp
= label_chain
->lss_next
;
1205 prev_label_chain
= label_chain
;
1209 /* An HPPA-specific version of fix_new. This is required because the HPPA
1210 code needs to keep track of some extra stuff. Each call to fix_new_hppa
1211 results in the creation of an instance of an hppa_fix_struct. An
1212 hppa_fix_struct stores the extra information along with a pointer to the
1213 original fixS. This is attached to the original fixup via the
1214 tc_fix_data field. */
1217 fix_new_hppa (fragS
*frag
,
1220 symbolS
*add_symbol
,
1224 bfd_reloc_code_real_type r_type
,
1225 enum hppa_reloc_field_selector_type_alt r_field
,
1227 unsigned int arg_reloc
,
1228 int unwind_bits ATTRIBUTE_UNUSED
)
1231 struct hppa_fix_struct
*hppa_fix
= obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
1234 new_fix
= fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
);
1236 new_fix
= fix_new (frag
, where
, size
, add_symbol
, offset
, pcrel
, r_type
);
1237 new_fix
->tc_fix_data
= (void *) hppa_fix
;
1238 hppa_fix
->fx_r_type
= r_type
;
1239 hppa_fix
->fx_r_field
= r_field
;
1240 hppa_fix
->fx_r_format
= r_format
;
1241 hppa_fix
->fx_arg_reloc
= arg_reloc
;
1242 hppa_fix
->segment
= now_seg
;
1244 if (r_type
== R_ENTRY
|| r_type
== R_EXIT
)
1245 new_fix
->fx_offset
= unwind_bits
;
1248 /* foo-$global$ is used to access non-automatic storage. $global$
1249 is really just a marker and has served its purpose, so eliminate
1250 it now so as not to confuse write.c. Ditto for $PIC_pcrel$0. */
1251 if (new_fix
->fx_subsy
1252 && (strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$global$") == 0
1253 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$segrel$") == 0
1254 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$PIC_pcrel$0") == 0
1255 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$tls_gdidx$") == 0
1256 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$tls_ldidx$") == 0
1257 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$tls_dtpoff$") == 0
1258 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$tls_ieoff$") == 0
1259 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$tls_leoff$") == 0))
1260 new_fix
->fx_subsy
= NULL
;
1263 /* This fix_new is called by cons via TC_CONS_FIX_NEW.
1264 hppa_field_selector is set by the parse_cons_expression_hppa. */
1267 cons_fix_new_hppa (fragS
*frag
, int where
, int size
, expressionS
*exp
)
1269 unsigned int rel_type
;
1271 /* Get a base relocation type. */
1272 if (is_DP_relative (*exp
))
1273 rel_type
= R_HPPA_GOTOFF
;
1274 else if (is_PC_relative (*exp
))
1275 rel_type
= R_HPPA_PCREL_CALL
;
1277 else if (is_SB_relative (*exp
))
1278 rel_type
= R_PARISC_SEGREL32
;
1279 else if (is_tls_gdidx (*exp
))
1280 rel_type
= R_PARISC_TLS_GD21L
;
1281 else if (is_tls_ldidx (*exp
))
1282 rel_type
= R_PARISC_TLS_LDM21L
;
1283 else if (is_tls_dtpoff (*exp
))
1284 rel_type
= R_PARISC_TLS_LDO21L
;
1285 else if (is_tls_ieoff (*exp
))
1286 rel_type
= R_PARISC_TLS_IE21L
;
1287 else if (is_tls_leoff (*exp
))
1288 rel_type
= R_PARISC_TLS_LE21L
;
1290 else if (is_complex (*exp
))
1291 rel_type
= R_HPPA_COMPLEX
;
1295 if (hppa_field_selector
!= e_psel
&& hppa_field_selector
!= e_fsel
)
1297 as_warn (_("Invalid field selector. Assuming F%%."));
1298 hppa_field_selector
= e_fsel
;
1301 fix_new_hppa (frag
, where
, size
,
1302 (symbolS
*) NULL
, (offsetT
) 0, exp
, 0, rel_type
,
1303 hppa_field_selector
, size
* 8, 0, 0);
1305 /* Reset field selector to its default state. */
1306 hppa_field_selector
= 0;
1309 /* Mark (via expr_end) the end of an expression (I think). FIXME. */
1312 get_expression (char *str
)
1317 save_in
= input_line_pointer
;
1318 input_line_pointer
= str
;
1319 seg
= expression (&the_insn
.exp
);
1320 if (!(seg
== absolute_section
1321 || seg
== undefined_section
1322 || SEG_NORMAL (seg
)))
1324 as_warn (_("Bad segment in expression."));
1325 expr_end
= input_line_pointer
;
1326 input_line_pointer
= save_in
;
1329 expr_end
= input_line_pointer
;
1330 input_line_pointer
= save_in
;
1333 /* Parse a PA nullification completer (,n). Return nonzero if the
1334 completer was found; return zero if no completer was found. */
1337 pa_parse_nullif (char **s
)
1345 if (strncasecmp (*s
, "n", 1) == 0)
1349 as_bad (_("Invalid Nullification: (%c)"), **s
);
1359 md_atof (int type
, char *litP
, int *sizeP
)
1361 return ieee_md_atof (type
, litP
, sizeP
, TRUE
);
1364 /* Write out big-endian. */
1367 md_number_to_chars (char *buf
, valueT val
, int n
)
1369 number_to_chars_bigendian (buf
, val
, n
);
1372 /* Translate internal representation of relocation info to BFD target
1376 tc_gen_reloc (asection
*section
, fixS
*fixp
)
1379 struct hppa_fix_struct
*hppa_fixp
;
1380 static arelent
*no_relocs
= NULL
;
1387 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
1388 if (fixp
->fx_addsy
== 0)
1391 gas_assert (hppa_fixp
!= 0);
1392 gas_assert (section
!= 0);
1394 reloc
= xmalloc (sizeof (arelent
));
1396 reloc
->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1397 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1399 /* Allow fixup_segment to recognize hand-written pc-relative relocations.
1400 When we went through cons_fix_new_hppa, we classified them as complex. */
1401 /* ??? It might be better to hide this +8 stuff in tc_cfi_emit_pcrel_expr,
1402 undefine DIFF_EXPR_OK, and let these sorts of complex expressions fail
1403 when R_HPPA_COMPLEX == R_PARISC_UNIMPLEMENTED. */
1404 if (fixp
->fx_r_type
== R_HPPA_COMPLEX
&& fixp
->fx_pcrel
)
1406 fixp
->fx_r_type
= R_HPPA_PCREL_CALL
;
1407 fixp
->fx_offset
+= 8;
1410 codes
= hppa_gen_reloc_type (stdoutput
,
1412 hppa_fixp
->fx_r_format
,
1413 hppa_fixp
->fx_r_field
,
1414 fixp
->fx_subsy
!= NULL
,
1415 symbol_get_bfdsym (fixp
->fx_addsy
));
1419 as_bad_where (fixp
->fx_file
, fixp
->fx_line
, _("Cannot handle fixup"));
1423 for (n_relocs
= 0; codes
[n_relocs
]; n_relocs
++)
1426 relocs
= xmalloc (sizeof (arelent
*) * n_relocs
+ 1);
1427 reloc
= xmalloc (sizeof (arelent
) * n_relocs
);
1428 for (i
= 0; i
< n_relocs
; i
++)
1429 relocs
[i
] = &reloc
[i
];
1431 relocs
[n_relocs
] = NULL
;
1434 switch (fixp
->fx_r_type
)
1437 gas_assert (n_relocs
== 1);
1441 /* Now, do any processing that is dependent on the relocation type. */
1444 case R_PARISC_DLTREL21L
:
1445 case R_PARISC_DLTREL14R
:
1446 case R_PARISC_DLTREL14F
:
1447 case R_PARISC_PLABEL32
:
1448 case R_PARISC_PLABEL21L
:
1449 case R_PARISC_PLABEL14R
:
1450 /* For plabel relocations, the addend of the
1451 relocation should be either 0 (no static link) or 2
1452 (static link required). This adjustment is done in
1453 bfd/elf32-hppa.c:elf32_hppa_relocate_section.
1455 We also slam a zero addend into the DLT relative relocs;
1456 it doesn't make a lot of sense to use any addend since
1457 it gets you a different (eg unknown) DLT entry. */
1461 #ifdef ELF_ARG_RELOC
1462 case R_PARISC_PCREL17R
:
1463 case R_PARISC_PCREL17F
:
1464 case R_PARISC_PCREL17C
:
1465 case R_PARISC_DIR17R
:
1466 case R_PARISC_DIR17F
:
1467 case R_PARISC_PCREL21L
:
1468 case R_PARISC_DIR21L
:
1469 reloc
->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
,
1474 case R_PARISC_DIR32
:
1475 /* Facilitate hand-crafted unwind info. */
1476 if (strcmp (section
->name
, UNWIND_SECTION_NAME
) == 0)
1477 code
= R_PARISC_SEGREL32
;
1481 reloc
->addend
= fixp
->fx_offset
;
1485 reloc
->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1486 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1487 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
,
1488 (bfd_reloc_code_real_type
) code
);
1489 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1491 gas_assert (reloc
->howto
&& (unsigned int) code
== reloc
->howto
->type
);
1496 /* Walk over reach relocation returned by the BFD backend. */
1497 for (i
= 0; i
< n_relocs
; i
++)
1501 relocs
[i
]->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1502 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1504 bfd_reloc_type_lookup (stdoutput
,
1505 (bfd_reloc_code_real_type
) code
);
1506 relocs
[i
]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1511 /* The only time we ever use a R_COMP2 fixup is for the difference
1512 of two symbols. With that in mind we fill in all four
1513 relocs now and break out of the loop. */
1514 gas_assert (i
== 1);
1515 relocs
[0]->sym_ptr_ptr
1516 = (asymbol
**) bfd_abs_section_ptr
->symbol_ptr_ptr
;
1518 = bfd_reloc_type_lookup (stdoutput
,
1519 (bfd_reloc_code_real_type
) *codes
[0]);
1520 relocs
[0]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1521 relocs
[0]->addend
= 0;
1522 relocs
[1]->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1523 *relocs
[1]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1525 = bfd_reloc_type_lookup (stdoutput
,
1526 (bfd_reloc_code_real_type
) *codes
[1]);
1527 relocs
[1]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1528 relocs
[1]->addend
= 0;
1529 relocs
[2]->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1530 *relocs
[2]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_subsy
);
1532 = bfd_reloc_type_lookup (stdoutput
,
1533 (bfd_reloc_code_real_type
) *codes
[2]);
1534 relocs
[2]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1535 relocs
[2]->addend
= 0;
1536 relocs
[3]->sym_ptr_ptr
1537 = (asymbol
**) bfd_abs_section_ptr
->symbol_ptr_ptr
;
1539 = bfd_reloc_type_lookup (stdoutput
,
1540 (bfd_reloc_code_real_type
) *codes
[3]);
1541 relocs
[3]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1542 relocs
[3]->addend
= 0;
1543 relocs
[4]->sym_ptr_ptr
1544 = (asymbol
**) bfd_abs_section_ptr
->symbol_ptr_ptr
;
1546 = bfd_reloc_type_lookup (stdoutput
,
1547 (bfd_reloc_code_real_type
) *codes
[4]);
1548 relocs
[4]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1549 relocs
[4]->addend
= 0;
1553 relocs
[i
]->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
, 0);
1559 /* For plabel relocations, the addend of the
1560 relocation should be either 0 (no static link) or 2
1561 (static link required).
1563 FIXME: We always assume no static link!
1565 We also slam a zero addend into the DLT relative relocs;
1566 it doesn't make a lot of sense to use any addend since
1567 it gets you a different (eg unknown) DLT entry. */
1568 relocs
[i
]->addend
= 0;
1583 /* There is no symbol or addend associated with these fixups. */
1584 relocs
[i
]->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1585 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
1586 relocs
[i
]->addend
= 0;
1592 /* There is no symbol associated with these fixups. */
1593 relocs
[i
]->sym_ptr_ptr
= xmalloc (sizeof (asymbol
*));
1594 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
1595 relocs
[i
]->addend
= fixp
->fx_offset
;
1599 relocs
[i
]->addend
= fixp
->fx_offset
;
1609 /* Process any machine dependent frag types. */
1612 md_convert_frag (bfd
*abfd ATTRIBUTE_UNUSED
,
1613 asection
*sec ATTRIBUTE_UNUSED
,
1616 unsigned int address
;
1618 if (fragP
->fr_type
== rs_machine_dependent
)
1620 switch ((int) fragP
->fr_subtype
)
1623 fragP
->fr_type
= rs_fill
;
1624 know (fragP
->fr_var
== 1);
1625 know (fragP
->fr_next
);
1626 address
= fragP
->fr_address
+ fragP
->fr_fix
;
1627 if (address
% fragP
->fr_offset
)
1630 fragP
->fr_next
->fr_address
1635 fragP
->fr_offset
= 0;
1641 /* Round up a section size to the appropriate boundary. */
1644 md_section_align (asection
*segment
, valueT size
)
1646 int align
= bfd_get_section_alignment (stdoutput
, segment
);
1647 int align2
= (1 << align
) - 1;
1649 return (size
+ align2
) & ~align2
;
1652 /* Return the approximate size of a frag before relaxation has occurred. */
1655 md_estimate_size_before_relax (fragS
*fragP
, asection
*segment ATTRIBUTE_UNUSED
)
1661 while ((fragP
->fr_fix
+ size
) % fragP
->fr_offset
)
1668 # ifdef WARN_COMMENTS
1669 const char *md_shortopts
= "Vc";
1671 const char *md_shortopts
= "V";
1674 # ifdef WARN_COMMENTS
1675 const char *md_shortopts
= "c";
1677 const char *md_shortopts
= "";
1681 struct option md_longopts
[] =
1683 #ifdef WARN_COMMENTS
1684 {"warn-comment", no_argument
, NULL
, 'c'},
1686 {NULL
, no_argument
, NULL
, 0}
1688 size_t md_longopts_size
= sizeof (md_longopts
);
1691 md_parse_option (int c
, char *arg ATTRIBUTE_UNUSED
)
1700 print_version_id ();
1703 #ifdef WARN_COMMENTS
1714 md_show_usage (FILE *stream ATTRIBUTE_UNUSED
)
1717 fprintf (stream
, _("\
1720 #ifdef WARN_COMMENTS
1721 fprintf (stream
, _("\
1722 -c print a warning if a comment is found\n"));
1726 /* We have no need to default values of symbols. */
1729 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
1734 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
1735 #define nonzero_dibits(x) \
1736 ((x) | (((x) & 0x55555555) << 1) | (((x) & 0xAAAAAAAA) >> 1))
1737 #define arg_reloc_stub_needed(CALLER, CALLEE) \
1738 (((CALLER) ^ (CALLEE)) & nonzero_dibits (CALLER) & nonzero_dibits (CALLEE))
1740 #define arg_reloc_stub_needed(CALLER, CALLEE) 0
1743 /* Apply a fixup to an instruction. */
1746 md_apply_fix (fixS
*fixP
, valueT
*valP
, segT seg ATTRIBUTE_UNUSED
)
1749 struct hppa_fix_struct
*hppa_fixP
;
1753 /* SOM uses R_HPPA_ENTRY and R_HPPA_EXIT relocations which can
1754 never be "applied" (they are just markers). Likewise for
1755 R_HPPA_BEGIN_BRTAB and R_HPPA_END_BRTAB. */
1757 if (fixP
->fx_r_type
== R_HPPA_ENTRY
1758 || fixP
->fx_r_type
== R_HPPA_EXIT
1759 || fixP
->fx_r_type
== R_HPPA_BEGIN_BRTAB
1760 || fixP
->fx_r_type
== R_HPPA_END_BRTAB
1761 || fixP
->fx_r_type
== R_HPPA_BEGIN_TRY
)
1764 /* Disgusting. We must set fx_offset ourselves -- R_HPPA_END_TRY
1765 fixups are considered not adjustable, which in turn causes
1766 adjust_reloc_syms to not set fx_offset. Ugh. */
1767 if (fixP
->fx_r_type
== R_HPPA_END_TRY
)
1769 fixP
->fx_offset
= * valP
;
1774 if (fixP
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
1775 || fixP
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
)
1779 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
1782 /* There should be a HPPA specific fixup associated with the GAS fixup. */
1783 hppa_fixP
= (struct hppa_fix_struct
*) fixP
->tc_fix_data
;
1784 if (hppa_fixP
== NULL
)
1786 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1787 _("no hppa_fixup entry for fixup type 0x%x"),
1792 fixpos
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
1794 if (fixP
->fx_size
!= 4 || hppa_fixP
->fx_r_format
== 32)
1796 /* Handle constant output. */
1797 number_to_chars_bigendian (fixpos
, *valP
, fixP
->fx_size
);
1801 insn
= bfd_get_32 (stdoutput
, fixpos
);
1802 fmt
= bfd_hppa_insn2fmt (stdoutput
, insn
);
1804 /* If there is a symbol associated with this fixup, then it's something
1805 which will need a SOM relocation (except for some PC-relative relocs).
1806 In such cases we should treat the "val" or "addend" as zero since it
1807 will be added in as needed from fx_offset in tc_gen_reloc. */
1808 if ((fixP
->fx_addsy
!= NULL
1809 || fixP
->fx_r_type
== (int) R_HPPA_NONE
)
1814 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
1816 /* These field selectors imply that we do not want an addend. */
1817 else if (hppa_fixP
->fx_r_field
== e_psel
1818 || hppa_fixP
->fx_r_field
== e_rpsel
1819 || hppa_fixP
->fx_r_field
== e_lpsel
1820 || hppa_fixP
->fx_r_field
== e_tsel
1821 || hppa_fixP
->fx_r_field
== e_rtsel
1822 || hppa_fixP
->fx_r_field
== e_ltsel
)
1823 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
1826 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
1828 /* Handle pc-relative exceptions from above. */
1829 if ((fmt
== 12 || fmt
== 17 || fmt
== 22)
1832 && !arg_reloc_stub_needed (symbol_arg_reloc_info (fixP
->fx_addsy
),
1833 hppa_fixP
->fx_arg_reloc
)
1835 && (* valP
- 8 + 8192 < 16384
1836 || (fmt
== 17 && * valP
- 8 + 262144 < 524288)
1837 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
1840 && (* valP
- 8 + 262144 < 524288
1841 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
1843 && !S_IS_EXTERNAL (fixP
->fx_addsy
)
1844 && !S_IS_WEAK (fixP
->fx_addsy
)
1845 && S_GET_SEGMENT (fixP
->fx_addsy
) == hppa_fixP
->segment
1847 && S_GET_SEGMENT (fixP
->fx_subsy
) != hppa_fixP
->segment
))
1849 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
1855 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
1856 fixP
->fx_file
, fixP
->fx_line
);
1859 insn
= (insn
& ~ 0x3ff1) | (((val
& 0x1ff8) << 1)
1860 | ((val
& 0x2000) >> 13));
1863 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
1864 fixP
->fx_file
, fixP
->fx_line
);
1867 insn
= (insn
& ~ 0x3ff9) | (((val
& 0x1ffc) << 1)
1868 | ((val
& 0x2000) >> 13));
1870 /* Handle all opcodes with the 'j' operand type. */
1872 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
1873 fixP
->fx_file
, fixP
->fx_line
);
1876 insn
= ((insn
& ~ 0x3fff) | low_sign_unext (val
, 14));
1879 /* Handle all opcodes with the 'k' operand type. */
1881 CHECK_FIELD_WHERE (new_val
, 1048575, -1048576,
1882 fixP
->fx_file
, fixP
->fx_line
);
1885 insn
= (insn
& ~ 0x1fffff) | re_assemble_21 (val
);
1888 /* Handle all the opcodes with the 'i' operand type. */
1890 CHECK_FIELD_WHERE (new_val
, 1023, -1024,
1891 fixP
->fx_file
, fixP
->fx_line
);
1894 insn
= (insn
& ~ 0x7ff) | low_sign_unext (val
, 11);
1897 /* Handle all the opcodes with the 'w' operand type. */
1899 CHECK_FIELD_WHERE (new_val
- 8, 8191, -8192,
1900 fixP
->fx_file
, fixP
->fx_line
);
1903 insn
= (insn
& ~ 0x1ffd) | re_assemble_12 (val
>> 2);
1906 /* Handle some of the opcodes with the 'W' operand type. */
1909 offsetT distance
= * valP
;
1911 /* If this is an absolute branch (ie no link) with an out of
1912 range target, then we want to complain. */
1913 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
1914 && (insn
& 0xffe00000) == 0xe8000000)
1915 CHECK_FIELD_WHERE (distance
- 8, 262143, -262144,
1916 fixP
->fx_file
, fixP
->fx_line
);
1918 CHECK_FIELD_WHERE (new_val
- 8, 262143, -262144,
1919 fixP
->fx_file
, fixP
->fx_line
);
1922 insn
= (insn
& ~ 0x1f1ffd) | re_assemble_17 (val
>> 2);
1928 offsetT distance
= * valP
;
1930 /* If this is an absolute branch (ie no link) with an out of
1931 range target, then we want to complain. */
1932 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
1933 && (insn
& 0xffe00000) == 0xe8000000)
1934 CHECK_FIELD_WHERE (distance
- 8, 8388607, -8388608,
1935 fixP
->fx_file
, fixP
->fx_line
);
1937 CHECK_FIELD_WHERE (new_val
- 8, 8388607, -8388608,
1938 fixP
->fx_file
, fixP
->fx_line
);
1941 insn
= (insn
& ~ 0x3ff1ffd) | re_assemble_22 (val
>> 2);
1947 insn
= (insn
& ~ 0xfff1) | re_assemble_16 (val
& -8);
1952 insn
= (insn
& ~ 0xfff9) | re_assemble_16 (val
& -4);
1957 insn
= (insn
& ~ 0xffff) | re_assemble_16 (val
);
1965 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
1966 _("Unknown relocation encountered in md_apply_fix."));
1971 switch (fixP
->fx_r_type
)
1973 case R_PARISC_TLS_GD21L
:
1974 case R_PARISC_TLS_GD14R
:
1975 case R_PARISC_TLS_LDM21L
:
1976 case R_PARISC_TLS_LDM14R
:
1977 case R_PARISC_TLS_LE21L
:
1978 case R_PARISC_TLS_LE14R
:
1979 case R_PARISC_TLS_IE21L
:
1980 case R_PARISC_TLS_IE14R
:
1982 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
1989 /* Insert the relocation. */
1990 bfd_put_32 (stdoutput
, insn
, fixpos
);
1993 /* Exactly what point is a PC-relative offset relative TO?
1994 On the PA, they're relative to the address of the offset. */
1997 md_pcrel_from (fixS
*fixP
)
1999 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
2002 /* Return nonzero if the input line pointer is at the end of
2006 is_end_of_statement (void)
2008 return ((*input_line_pointer
== '\n')
2009 || (*input_line_pointer
== ';')
2010 || (*input_line_pointer
== '!'));
2013 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
2015 /* Given NAME, find the register number associated with that name, return
2016 the integer value associated with the given name or -1 on failure. */
2019 reg_name_search (char *name
)
2021 int middle
, low
, high
;
2025 high
= REG_NAME_CNT
- 1;
2029 middle
= (low
+ high
) / 2;
2030 cmp
= strcasecmp (name
, pre_defined_registers
[middle
].name
);
2036 return pre_defined_registers
[middle
].value
;
2038 while (low
<= high
);
2043 /* Read a number from S. The number might come in one of many forms,
2044 the most common will be a hex or decimal constant, but it could be
2045 a pre-defined register (Yuk!), or an absolute symbol.
2047 Return 1 on success or 0 on failure. If STRICT, then a missing
2048 register prefix will cause a failure. The number itself is
2049 returned in `pa_number'.
2051 IS_FLOAT indicates that a PA-89 FP register number should be
2052 parsed; A `l' or `r' suffix is checked for if but 2 of IS_FLOAT is
2055 pa_parse_number can not handle negative constants and will fail
2056 horribly if it is passed such a constant. */
2059 pa_parse_number (char **s
, int is_float
)
2067 bfd_boolean have_prefix
;
2069 /* Skip whitespace before the number. */
2070 while (*p
== ' ' || *p
== '\t')
2076 if (!strict
&& ISDIGIT (*p
))
2078 /* Looks like a number. */
2080 if (*p
== '0' && (*(p
+ 1) == 'x' || *(p
+ 1) == 'X'))
2082 /* The number is specified in hex. */
2084 while (ISDIGIT (*p
) || ((*p
>= 'a') && (*p
<= 'f'))
2085 || ((*p
>= 'A') && (*p
<= 'F')))
2088 num
= num
* 16 + *p
- '0';
2089 else if (*p
>= 'a' && *p
<= 'f')
2090 num
= num
* 16 + *p
- 'a' + 10;
2092 num
= num
* 16 + *p
- 'A' + 10;
2098 /* The number is specified in decimal. */
2099 while (ISDIGIT (*p
))
2101 num
= num
* 10 + *p
- '0';
2108 /* Check for a `l' or `r' suffix. */
2111 pa_number
+= FP_REG_BASE
;
2112 if (! (is_float
& 2))
2114 if (IS_R_SELECT (p
))
2116 pa_number
+= FP_REG_RSEL
;
2119 else if (IS_L_SELECT (p
))
2128 /* The number might be a predefined register. */
2133 /* Tege hack: Special case for general registers as the general
2134 code makes a binary search with case translation, and is VERY
2139 if (*p
== 'e' && *(p
+ 1) == 't'
2140 && (*(p
+ 2) == '0' || *(p
+ 2) == '1'))
2143 num
= *p
- '0' + 28;
2151 else if (!ISDIGIT (*p
))
2154 as_bad (_("Undefined register: '%s'."), name
);
2160 num
= num
* 10 + *p
++ - '0';
2161 while (ISDIGIT (*p
));
2166 /* Do a normal register search. */
2167 while (is_part_of_name (c
))
2173 status
= reg_name_search (name
);
2179 as_bad (_("Undefined register: '%s'."), name
);
2189 /* And finally, it could be a symbol in the absolute section which
2190 is effectively a constant, or a register alias symbol. */
2193 while (is_part_of_name (c
))
2199 if ((sym
= symbol_find (name
)) != NULL
)
2201 if (S_GET_SEGMENT (sym
) == reg_section
)
2203 num
= S_GET_VALUE (sym
);
2204 /* Well, we don't really have one, but we do have a
2208 else if (S_GET_SEGMENT (sym
) == &bfd_abs_section
)
2209 num
= S_GET_VALUE (sym
);
2213 as_bad (_("Non-absolute symbol: '%s'."), name
);
2219 /* There is where we'd come for an undefined symbol
2220 or for an empty string. For an empty string we
2221 will return zero. That's a concession made for
2222 compatibility with the braindamaged HP assemblers. */
2228 as_bad (_("Undefined absolute constant: '%s'."), name
);
2237 if (!strict
|| have_prefix
)
2245 /* Return nonzero if the given INSN and L/R information will require
2246 a new PA-1.1 opcode. */
2249 need_pa11_opcode (void)
2251 if ((pa_number
& FP_REG_RSEL
) != 0
2252 && !(the_insn
.fpof1
== DBL
&& the_insn
.fpof2
== DBL
))
2254 /* If this instruction is specific to a particular architecture,
2255 then set a new architecture. */
2256 if (bfd_get_mach (stdoutput
) < pa11
)
2258 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, pa11
))
2259 as_warn (_("could not update architecture and machine"));
2267 /* Parse a condition for a fcmp instruction. Return the numerical
2268 code associated with the condition. */
2271 pa_parse_fp_cmp_cond (char **s
)
2277 for (i
= 0; i
< 32; i
++)
2279 if (strncasecmp (*s
, fp_cond_map
[i
].string
,
2280 strlen (fp_cond_map
[i
].string
)) == 0)
2282 cond
= fp_cond_map
[i
].cond
;
2283 *s
+= strlen (fp_cond_map
[i
].string
);
2284 /* If not a complete match, back up the input string and
2286 if (**s
!= ' ' && **s
!= '\t')
2288 *s
-= strlen (fp_cond_map
[i
].string
);
2291 while (**s
== ' ' || **s
== '\t')
2297 as_bad (_("Invalid FP Compare Condition: %s"), *s
);
2299 /* Advance over the bogus completer. */
2300 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
2306 /* Parse a graphics test complete for ftest. */
2309 pa_parse_ftest_gfx_completer (char **s
)
2314 if (strncasecmp (*s
, "acc8", 4) == 0)
2319 else if (strncasecmp (*s
, "acc6", 4) == 0)
2324 else if (strncasecmp (*s
, "acc4", 4) == 0)
2329 else if (strncasecmp (*s
, "acc2", 4) == 0)
2334 else if (strncasecmp (*s
, "acc", 3) == 0)
2339 else if (strncasecmp (*s
, "rej8", 4) == 0)
2344 else if (strncasecmp (*s
, "rej", 3) == 0)
2352 as_bad (_("Invalid FTEST completer: %s"), *s
);
2358 /* Parse an FP operand format completer returning the completer
2361 static fp_operand_format
2362 pa_parse_fp_cnv_format (char **s
)
2370 if (strncasecmp (*s
, "sgl", 3) == 0)
2375 else if (strncasecmp (*s
, "dbl", 3) == 0)
2380 else if (strncasecmp (*s
, "quad", 4) == 0)
2385 else if (strncasecmp (*s
, "w", 1) == 0)
2390 else if (strncasecmp (*s
, "uw", 2) == 0)
2395 else if (strncasecmp (*s
, "dw", 2) == 0)
2400 else if (strncasecmp (*s
, "udw", 3) == 0)
2405 else if (strncasecmp (*s
, "qw", 2) == 0)
2410 else if (strncasecmp (*s
, "uqw", 3) == 0)
2417 format
= ILLEGAL_FMT
;
2418 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
2425 /* Parse an FP operand format completer returning the completer
2428 static fp_operand_format
2429 pa_parse_fp_format (char **s
)
2437 if (strncasecmp (*s
, "sgl", 3) == 0)
2442 else if (strncasecmp (*s
, "dbl", 3) == 0)
2447 else if (strncasecmp (*s
, "quad", 4) == 0)
2454 format
= ILLEGAL_FMT
;
2455 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
2462 /* Convert from a selector string into a selector type. */
2465 pa_chk_field_selector (char **str
)
2467 int middle
, low
, high
;
2471 /* Read past any whitespace. */
2472 /* FIXME: should we read past newlines and formfeeds??? */
2473 while (**str
== ' ' || **str
== '\t' || **str
== '\n' || **str
== '\f')
2476 if ((*str
)[1] == '\'' || (*str
)[1] == '%')
2477 name
[0] = TOLOWER ((*str
)[0]),
2479 else if ((*str
)[2] == '\'' || (*str
)[2] == '%')
2480 name
[0] = TOLOWER ((*str
)[0]),
2481 name
[1] = TOLOWER ((*str
)[1]),
2483 else if ((*str
)[3] == '\'' || (*str
)[3] == '%')
2484 name
[0] = TOLOWER ((*str
)[0]),
2485 name
[1] = TOLOWER ((*str
)[1]),
2486 name
[2] = TOLOWER ((*str
)[2]),
2492 high
= sizeof (selector_table
) / sizeof (struct selector_entry
) - 1;
2496 middle
= (low
+ high
) / 2;
2497 cmp
= strcmp (name
, selector_table
[middle
].prefix
);
2504 *str
+= strlen (name
) + 1;
2506 if (selector_table
[middle
].field_selector
== e_nsel
)
2509 return selector_table
[middle
].field_selector
;
2512 while (low
<= high
);
2517 /* Parse a .byte, .word, .long expression for the HPPA. Called by
2518 cons via the TC_PARSE_CONS_EXPRESSION macro. */
2521 parse_cons_expression_hppa (expressionS
*exp
)
2523 hppa_field_selector
= pa_chk_field_selector (&input_line_pointer
);
2527 /* Evaluate an absolute expression EXP which may be modified by
2528 the selector FIELD_SELECTOR. Return the value of the expression. */
2530 evaluate_absolute (struct pa_it
*insn
)
2534 int field_selector
= insn
->field_selector
;
2537 value
= exp
.X_add_number
;
2539 return hppa_field_adjust (0, value
, field_selector
);
2542 /* Mark (via expr_end) the end of an absolute expression. FIXME. */
2545 pa_get_absolute_expression (struct pa_it
*insn
, char **strp
)
2549 insn
->field_selector
= pa_chk_field_selector (strp
);
2550 save_in
= input_line_pointer
;
2551 input_line_pointer
= *strp
;
2552 expression (&insn
->exp
);
2553 /* This is not perfect, but is a huge improvement over doing nothing.
2555 The PA assembly syntax is ambiguous in a variety of ways. Consider
2556 this string "4 %r5" Is that the number 4 followed by the register
2557 r5, or is that 4 MOD r5?
2559 If we get a modulo expression when looking for an absolute, we try
2560 again cutting off the input string at the first whitespace character. */
2561 if (insn
->exp
.X_op
== O_modulus
)
2566 input_line_pointer
= *strp
;
2568 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2574 retval
= pa_get_absolute_expression (insn
, strp
);
2576 input_line_pointer
= save_in
;
2578 return evaluate_absolute (insn
);
2580 /* When in strict mode we have a non-match, fix up the pointers
2581 and return to our caller. */
2582 if (insn
->exp
.X_op
!= O_constant
&& strict
)
2584 expr_end
= input_line_pointer
;
2585 input_line_pointer
= save_in
;
2588 if (insn
->exp
.X_op
!= O_constant
)
2590 as_bad (_("Bad segment (should be absolute)."));
2591 expr_end
= input_line_pointer
;
2592 input_line_pointer
= save_in
;
2595 expr_end
= input_line_pointer
;
2596 input_line_pointer
= save_in
;
2597 return evaluate_absolute (insn
);
2600 /* Given an argument location specification return the associated
2601 argument location number. */
2604 pa_build_arg_reloc (char *type_name
)
2607 if (strncasecmp (type_name
, "no", 2) == 0)
2609 if (strncasecmp (type_name
, "gr", 2) == 0)
2611 else if (strncasecmp (type_name
, "fr", 2) == 0)
2613 else if (strncasecmp (type_name
, "fu", 2) == 0)
2616 as_bad (_("Invalid argument location: %s\n"), type_name
);
2621 /* Encode and return an argument relocation specification for
2622 the given register in the location specified by arg_reloc. */
2625 pa_align_arg_reloc (unsigned int reg
, unsigned int arg_reloc
)
2627 unsigned int new_reloc
;
2629 new_reloc
= arg_reloc
;
2645 as_bad (_("Invalid argument description: %d"), reg
);
2651 /* Parse a non-negated compare/subtract completer returning the
2652 number (for encoding in instructions) of the given completer. */
2655 pa_parse_nonneg_cmpsub_cmpltr (char **s
)
2658 char *name
= *s
+ 1;
2667 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
2672 if (strcmp (name
, "=") == 0)
2676 else if (strcmp (name
, "<") == 0)
2680 else if (strcmp (name
, "<=") == 0)
2684 else if (strcmp (name
, "<<") == 0)
2688 else if (strcmp (name
, "<<=") == 0)
2692 else if (strcasecmp (name
, "sv") == 0)
2696 else if (strcasecmp (name
, "od") == 0)
2700 /* If we have something like addb,n then there is no condition
2702 else if (strcasecmp (name
, "n") == 0)
2714 /* Reset pointers if this was really a ,n for a branch instruction. */
2721 /* Parse a negated compare/subtract completer returning the
2722 number (for encoding in instructions) of the given completer. */
2725 pa_parse_neg_cmpsub_cmpltr (char **s
)
2728 char *name
= *s
+ 1;
2737 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
2742 if (strcasecmp (name
, "tr") == 0)
2746 else if (strcmp (name
, "<>") == 0)
2750 else if (strcmp (name
, ">=") == 0)
2754 else if (strcmp (name
, ">") == 0)
2758 else if (strcmp (name
, ">>=") == 0)
2762 else if (strcmp (name
, ">>") == 0)
2766 else if (strcasecmp (name
, "nsv") == 0)
2770 else if (strcasecmp (name
, "ev") == 0)
2774 /* If we have something like addb,n then there is no condition
2776 else if (strcasecmp (name
, "n") == 0)
2788 /* Reset pointers if this was really a ,n for a branch instruction. */
2795 /* Parse a 64 bit compare and branch completer returning the number (for
2796 encoding in instructions) of the given completer.
2798 Nonnegated comparisons are returned as 0-7, negated comparisons are
2799 returned as 8-15. */
2802 pa_parse_cmpb_64_cmpltr (char **s
)
2805 char *name
= *s
+ 1;
2812 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
2817 if (strcmp (name
, "*") == 0)
2821 else if (strcmp (name
, "*=") == 0)
2825 else if (strcmp (name
, "*<") == 0)
2829 else if (strcmp (name
, "*<=") == 0)
2833 else if (strcmp (name
, "*<<") == 0)
2837 else if (strcmp (name
, "*<<=") == 0)
2841 else if (strcasecmp (name
, "*sv") == 0)
2845 else if (strcasecmp (name
, "*od") == 0)
2849 else if (strcasecmp (name
, "*tr") == 0)
2853 else if (strcmp (name
, "*<>") == 0)
2857 else if (strcmp (name
, "*>=") == 0)
2861 else if (strcmp (name
, "*>") == 0)
2865 else if (strcmp (name
, "*>>=") == 0)
2869 else if (strcmp (name
, "*>>") == 0)
2873 else if (strcasecmp (name
, "*nsv") == 0)
2877 else if (strcasecmp (name
, "*ev") == 0)
2891 /* Parse a 64 bit compare immediate and branch completer returning the number
2892 (for encoding in instructions) of the given completer. */
2895 pa_parse_cmpib_64_cmpltr (char **s
)
2898 char *name
= *s
+ 1;
2905 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
2910 if (strcmp (name
, "*<<") == 0)
2914 else if (strcmp (name
, "*=") == 0)
2918 else if (strcmp (name
, "*<") == 0)
2922 else if (strcmp (name
, "*<=") == 0)
2926 else if (strcmp (name
, "*>>=") == 0)
2930 else if (strcmp (name
, "*<>") == 0)
2934 else if (strcasecmp (name
, "*>=") == 0)
2938 else if (strcasecmp (name
, "*>") == 0)
2952 /* Parse a non-negated addition completer returning the number
2953 (for encoding in instructions) of the given completer. */
2956 pa_parse_nonneg_add_cmpltr (char **s
)
2959 char *name
= *s
+ 1;
2968 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
2972 if (strcmp (name
, "=") == 0)
2976 else if (strcmp (name
, "<") == 0)
2980 else if (strcmp (name
, "<=") == 0)
2984 else if (strcasecmp (name
, "nuv") == 0)
2988 else if (strcasecmp (name
, "znv") == 0)
2992 else if (strcasecmp (name
, "sv") == 0)
2996 else if (strcasecmp (name
, "od") == 0)
3000 /* If we have something like addb,n then there is no condition
3002 else if (strcasecmp (name
, "n") == 0)
3014 /* Reset pointers if this was really a ,n for a branch instruction. */
3021 /* Parse a negated addition completer returning the number
3022 (for encoding in instructions) of the given completer. */
3025 pa_parse_neg_add_cmpltr (char **s
)
3028 char *name
= *s
+ 1;
3037 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
3041 if (strcasecmp (name
, "tr") == 0)
3045 else if (strcmp (name
, "<>") == 0)
3049 else if (strcmp (name
, ">=") == 0)
3053 else if (strcmp (name
, ">") == 0)
3057 else if (strcasecmp (name
, "uv") == 0)
3061 else if (strcasecmp (name
, "vnz") == 0)
3065 else if (strcasecmp (name
, "nsv") == 0)
3069 else if (strcasecmp (name
, "ev") == 0)
3073 /* If we have something like addb,n then there is no condition
3075 else if (strcasecmp (name
, "n") == 0)
3087 /* Reset pointers if this was really a ,n for a branch instruction. */
3094 /* Parse a 64 bit wide mode add and branch completer returning the number (for
3095 encoding in instructions) of the given completer. */
3098 pa_parse_addb_64_cmpltr (char **s
)
3101 char *name
= *s
+ 1;
3110 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
3114 if (strcmp (name
, "=") == 0)
3118 else if (strcmp (name
, "<") == 0)
3122 else if (strcmp (name
, "<=") == 0)
3126 else if (strcasecmp (name
, "nuv") == 0)
3130 else if (strcasecmp (name
, "*=") == 0)
3134 else if (strcasecmp (name
, "*<") == 0)
3138 else if (strcasecmp (name
, "*<=") == 0)
3142 else if (strcmp (name
, "tr") == 0)
3146 else if (strcmp (name
, "<>") == 0)
3150 else if (strcmp (name
, ">=") == 0)
3154 else if (strcmp (name
, ">") == 0)
3158 else if (strcasecmp (name
, "uv") == 0)
3162 else if (strcasecmp (name
, "*<>") == 0)
3166 else if (strcasecmp (name
, "*>=") == 0)
3170 else if (strcasecmp (name
, "*>") == 0)
3174 /* If we have something like addb,n then there is no condition
3176 else if (strcasecmp (name
, "n") == 0)
3188 /* Reset pointers if this was really a ,n for a branch instruction. */
3195 /* Do the real work for assembling a single instruction. Store results
3196 into the global "the_insn" variable. */
3201 char *error_message
= "";
3202 char *s
, c
, *argstart
, *name
, *save_s
;
3206 int cmpltr
, nullif
, flag
, cond
, num
;
3207 int immediate_check
= 0, pos
= -1, len
= -1;
3208 unsigned long opcode
;
3209 struct pa_opcode
*insn
;
3212 /* We must have a valid space and subspace. */
3213 pa_check_current_space_and_subspace ();
3216 /* Convert everything up to the first whitespace character into lower
3218 for (s
= str
; *s
!= ' ' && *s
!= '\t' && *s
!= '\n' && *s
!= '\0'; s
++)
3221 /* Skip to something interesting. */
3223 ISUPPER (*s
) || ISLOWER (*s
) || (*s
>= '0' && *s
<= '3');
3243 as_bad (_("Unknown opcode: `%s'"), str
);
3247 /* Look up the opcode in the hash table. */
3248 if ((insn
= (struct pa_opcode
*) hash_find (op_hash
, str
)) == NULL
)
3250 as_bad (_("Unknown opcode: `%s'"), str
);
3257 /* Mark the location where arguments for the instruction start, then
3258 start processing them. */
3262 /* Do some initialization. */
3263 opcode
= insn
->match
;
3264 strict
= (insn
->flags
& FLAG_STRICT
);
3265 memset (&the_insn
, 0, sizeof (the_insn
));
3267 the_insn
.reloc
= R_HPPA_NONE
;
3269 if (insn
->arch
>= pa20
3270 && bfd_get_mach (stdoutput
) < insn
->arch
)
3273 /* Build the opcode, checking as we go to make
3274 sure that the operands match. */
3275 for (args
= insn
->args
;; ++args
)
3277 /* Absorb white space in instruction. */
3278 while (*s
== ' ' || *s
== '\t')
3283 /* End of arguments. */
3299 /* These must match exactly. */
3308 /* Handle a 5 bit register or control register field at 10. */
3311 if (!pa_parse_number (&s
, 0))
3314 CHECK_FIELD (num
, 31, 0, 0);
3315 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3317 /* Handle %sar or %cr11. No bits get set, we just verify that it
3320 /* Skip whitespace before register. */
3321 while (*s
== ' ' || *s
== '\t')
3324 if (!strncasecmp (s
, "%sar", 4))
3329 else if (!strncasecmp (s
, "%cr11", 5))
3336 /* Handle a 5 bit register field at 15. */
3338 if (!pa_parse_number (&s
, 0))
3341 CHECK_FIELD (num
, 31, 0, 0);
3342 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3344 /* Handle a 5 bit register field at 31. */
3346 if (!pa_parse_number (&s
, 0))
3349 CHECK_FIELD (num
, 31, 0, 0);
3350 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3352 /* Handle a 5 bit register field at 10 and 15. */
3354 if (!pa_parse_number (&s
, 0))
3357 CHECK_FIELD (num
, 31, 0, 0);
3358 opcode
|= num
<< 16;
3359 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3361 /* Handle a 5 bit field length at 31. */
3363 num
= pa_get_absolute_expression (&the_insn
, &s
);
3364 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3367 CHECK_FIELD (num
, 32, 1, 0);
3368 SAVE_IMMEDIATE(num
);
3369 INSERT_FIELD_AND_CONTINUE (opcode
, 32 - num
, 0);
3371 /* Handle a 5 bit immediate at 15. */
3373 num
= pa_get_absolute_expression (&the_insn
, &s
);
3374 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3377 /* When in strict mode, we want to just reject this
3378 match instead of giving an out of range error. */
3379 CHECK_FIELD (num
, 15, -16, strict
);
3380 num
= low_sign_unext (num
, 5);
3381 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3383 /* Handle a 5 bit immediate at 31. */
3385 num
= pa_get_absolute_expression (&the_insn
, &s
);
3386 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3389 /* When in strict mode, we want to just reject this
3390 match instead of giving an out of range error. */
3391 CHECK_FIELD (num
, 15, -16, strict
);
3392 num
= low_sign_unext (num
, 5);
3393 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3395 /* Handle an unsigned 5 bit immediate at 31. */
3397 num
= pa_get_absolute_expression (&the_insn
, &s
);
3398 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3401 CHECK_FIELD (num
, 31, 0, strict
);
3402 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3404 /* Handle an unsigned 5 bit immediate at 15. */
3406 num
= pa_get_absolute_expression (&the_insn
, &s
);
3407 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3410 CHECK_FIELD (num
, 31, 0, strict
);
3411 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3413 /* Handle an unsigned 10 bit immediate at 15. */
3415 num
= pa_get_absolute_expression (&the_insn
, &s
);
3416 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3419 CHECK_FIELD (num
, 1023, 0, strict
);
3420 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3422 /* Handle a 2 bit space identifier at 17. */
3424 if (!pa_parse_number (&s
, 0))
3427 CHECK_FIELD (num
, 3, 0, 1);
3428 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 14);
3430 /* Handle a 3 bit space identifier at 18. */
3432 if (!pa_parse_number (&s
, 0))
3435 CHECK_FIELD (num
, 7, 0, 1);
3436 opcode
|= re_assemble_3 (num
);
3439 /* Handle all completers. */
3444 /* Handle a completer for an indexing load or store. */
3451 while (*s
== ',' && i
< 2)
3454 if (strncasecmp (s
, "sm", 2) == 0)
3461 else if (strncasecmp (s
, "m", 1) == 0)
3463 else if ((strncasecmp (s
, "s ", 2) == 0)
3464 || (strncasecmp (s
, "s,", 2) == 0))
3468 /* This is a match failure. */
3473 as_bad (_("Invalid Indexed Load Completer."));
3478 as_bad (_("Invalid Indexed Load Completer Syntax."));
3480 INSERT_FIELD_AND_CONTINUE (opcode
, uu
, 13);
3483 /* Handle a short load/store completer. */
3495 if (strncasecmp (s
, "ma", 2) == 0)
3501 else if (strncasecmp (s
, "mb", 2) == 0)
3508 /* This is a match failure. */
3512 as_bad (_("Invalid Short Load/Store Completer."));
3516 /* If we did not get a ma/mb completer, then we do not
3517 consider this a positive match for 'ce'. */
3518 else if (*args
== 'e')
3521 /* 'J', 'm', 'M' and 'q' are the same, except for where they
3522 encode the before/after field. */
3523 if (*args
== 'm' || *args
== 'M')
3526 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
3528 else if (*args
== 'q')
3531 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
3533 else if (*args
== 'J')
3535 /* M bit is explicit in the major opcode. */
3536 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
3538 else if (*args
== 'e')
3540 /* Stash the ma/mb flag temporarily in the
3541 instruction. We will use (and remove it)
3542 later when handling 'J', 'K', '<' & '>'. */
3548 /* Handle a stbys completer. */
3555 while (*s
== ',' && i
< 2)
3558 if (strncasecmp (s
, "m", 1) == 0)
3560 else if ((strncasecmp (s
, "b ", 2) == 0)
3561 || (strncasecmp (s
, "b,", 2) == 0))
3563 else if (strncasecmp (s
, "e", 1) == 0)
3565 /* In strict mode, this is a match failure. */
3572 as_bad (_("Invalid Store Bytes Short Completer"));
3577 as_bad (_("Invalid Store Bytes Short Completer"));
3579 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
3582 /* Handle load cache hint completer. */
3585 if (!strncmp (s
, ",sl", 3))
3590 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
3592 /* Handle store cache hint completer. */
3595 if (!strncmp (s
, ",sl", 3))
3600 else if (!strncmp (s
, ",bc", 3))
3605 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
3607 /* Handle load and clear cache hint completer. */
3610 if (!strncmp (s
, ",co", 3))
3615 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
3617 /* Handle load ordering completer. */
3619 if (strncmp (s
, ",o", 2) != 0)
3624 /* Handle a branch gate completer. */
3626 if (strncasecmp (s
, ",gate", 5) != 0)
3631 /* Handle a branch link and push completer. */
3633 if (strncasecmp (s
, ",l,push", 7) != 0)
3638 /* Handle a branch link completer. */
3640 if (strncasecmp (s
, ",l", 2) != 0)
3645 /* Handle a branch pop completer. */
3647 if (strncasecmp (s
, ",pop", 4) != 0)
3652 /* Handle a local processor completer. */
3654 if (strncasecmp (s
, ",l", 2) != 0)
3659 /* Handle a PROBE read/write completer. */
3662 if (!strncasecmp (s
, ",w", 2))
3667 else if (!strncasecmp (s
, ",r", 2))
3673 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
3675 /* Handle MFCTL wide completer. */
3677 if (strncasecmp (s
, ",w", 2) != 0)
3682 /* Handle an RFI restore completer. */
3685 if (!strncasecmp (s
, ",r", 2))
3691 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
3693 /* Handle a system control completer. */
3695 if (*s
== ',' && (*(s
+ 1) == 'm' || *(s
+ 1) == 'M'))
3703 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
3705 /* Handle intermediate/final completer for DCOR. */
3708 if (!strncasecmp (s
, ",i", 2))
3714 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
3716 /* Handle zero/sign extension completer. */
3719 if (!strncasecmp (s
, ",z", 2))
3725 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
3727 /* Handle add completer. */
3730 if (!strncasecmp (s
, ",l", 2))
3735 else if (!strncasecmp (s
, ",tsv", 4))
3741 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
3743 /* Handle 64 bit carry for ADD. */
3746 if (!strncasecmp (s
, ",dc,tsv", 7) ||
3747 !strncasecmp (s
, ",tsv,dc", 7))
3752 else if (!strncasecmp (s
, ",dc", 3))
3760 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3762 /* Handle 32 bit carry for ADD. */
3765 if (!strncasecmp (s
, ",c,tsv", 6) ||
3766 !strncasecmp (s
, ",tsv,c", 6))
3771 else if (!strncasecmp (s
, ",c", 2))
3779 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3781 /* Handle trap on signed overflow. */
3784 if (!strncasecmp (s
, ",tsv", 4))
3790 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3792 /* Handle trap on condition and overflow. */
3795 if (!strncasecmp (s
, ",tc,tsv", 7) ||
3796 !strncasecmp (s
, ",tsv,tc", 7))
3801 else if (!strncasecmp (s
, ",tc", 3))
3809 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3811 /* Handle 64 bit borrow for SUB. */
3814 if (!strncasecmp (s
, ",db,tsv", 7) ||
3815 !strncasecmp (s
, ",tsv,db", 7))
3820 else if (!strncasecmp (s
, ",db", 3))
3828 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3830 /* Handle 32 bit borrow for SUB. */
3833 if (!strncasecmp (s
, ",b,tsv", 6) ||
3834 !strncasecmp (s
, ",tsv,b", 6))
3839 else if (!strncasecmp (s
, ",b", 2))
3847 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3849 /* Handle trap condition completer for UADDCM. */
3852 if (!strncasecmp (s
, ",tc", 3))
3858 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
3860 /* Handle signed/unsigned at 21. */
3864 if (strncasecmp (s
, ",s", 2) == 0)
3869 else if (strncasecmp (s
, ",u", 2) == 0)
3875 INSERT_FIELD_AND_CONTINUE (opcode
, sign
, 10);
3878 /* Handle left/right combination at 17:18. */
3888 as_bad (_("Invalid left/right combination completer"));
3891 INSERT_FIELD_AND_CONTINUE (opcode
, lr
, 13);
3894 as_bad (_("Invalid left/right combination completer"));
3897 /* Handle saturation at 24:25. */
3901 if (strncasecmp (s
, ",ss", 3) == 0)
3906 else if (strncasecmp (s
, ",us", 3) == 0)
3912 INSERT_FIELD_AND_CONTINUE (opcode
, sat
, 6);
3915 /* Handle permutation completer. */
3943 as_bad (_("Invalid permutation completer"));
3945 opcode
|= perm
<< permloc
[i
];
3950 as_bad (_("Invalid permutation completer"));
3958 /* Handle all conditions. */
3964 /* Handle FP compare conditions. */
3966 cond
= pa_parse_fp_cmp_cond (&s
);
3967 INSERT_FIELD_AND_CONTINUE (opcode
, cond
, 0);
3969 /* Handle an add condition. */
3972 If we are looking for 64-bit add conditions and we
3973 do not have the ",*" prefix, then we have no match. */
3984 /* 64 bit conditions. */
3996 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
4000 if (strcmp (name
, "=") == 0)
4002 else if (strcmp (name
, "<") == 0)
4004 else if (strcmp (name
, "<=") == 0)
4006 else if (strcasecmp (name
, "nuv") == 0)
4008 else if (strcasecmp (name
, "znv") == 0)
4010 else if (strcasecmp (name
, "sv") == 0)
4012 else if (strcasecmp (name
, "od") == 0)
4014 else if (strcasecmp (name
, "tr") == 0)
4019 else if (strcmp (name
, "<>") == 0)
4024 else if (strcmp (name
, ">=") == 0)
4029 else if (strcmp (name
, ">") == 0)
4034 else if (strcasecmp (name
, "uv") == 0)
4039 else if (strcasecmp (name
, "vnz") == 0)
4044 else if (strcasecmp (name
, "nsv") == 0)
4049 else if (strcasecmp (name
, "ev") == 0)
4054 /* ",*" is a valid condition. */
4055 else if (*args
== 'a' || *name
)
4056 as_bad (_("Invalid Add Condition: %s"), name
);
4059 opcode
|= cmpltr
<< 13;
4060 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
4062 /* Handle non-negated add and branch condition. */
4064 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
4067 as_bad (_("Invalid Add and Branch Condition"));
4070 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
4072 /* Handle 64 bit wide-mode add and branch condition. */
4074 cmpltr
= pa_parse_addb_64_cmpltr (&s
);
4077 as_bad (_("Invalid Add and Branch Condition"));
4082 /* Negated condition requires an opcode change. */
4083 opcode
|= (cmpltr
& 8) << 24;
4085 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
4087 /* Handle a negated or non-negated add and branch
4091 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
4095 cmpltr
= pa_parse_neg_add_cmpltr (&s
);
4098 as_bad (_("Invalid Compare/Subtract Condition"));
4103 /* Negated condition requires an opcode change. */
4107 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
4109 /* Handle branch on bit conditions. */
4127 if (strncmp (s
, "<", 1) == 0)
4132 else if (strncmp (s
, ">=", 2) == 0)
4138 as_bad (_("Invalid Bit Branch Condition: %c"), *s
);
4140 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 15);
4142 /* Handle a compare/subtract condition. */
4151 /* 64 bit conditions. */
4163 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
4167 if (strcmp (name
, "=") == 0)
4169 else if (strcmp (name
, "<") == 0)
4171 else if (strcmp (name
, "<=") == 0)
4173 else if (strcasecmp (name
, "<<") == 0)
4175 else if (strcasecmp (name
, "<<=") == 0)
4177 else if (strcasecmp (name
, "sv") == 0)
4179 else if (strcasecmp (name
, "od") == 0)
4181 else if (strcasecmp (name
, "tr") == 0)
4186 else if (strcmp (name
, "<>") == 0)
4191 else if (strcmp (name
, ">=") == 0)
4196 else if (strcmp (name
, ">") == 0)
4201 else if (strcasecmp (name
, ">>=") == 0)
4206 else if (strcasecmp (name
, ">>") == 0)
4211 else if (strcasecmp (name
, "nsv") == 0)
4216 else if (strcasecmp (name
, "ev") == 0)
4221 /* ",*" is a valid condition. */
4222 else if (*args
!= 'S' || *name
)
4223 as_bad (_("Invalid Compare/Subtract Condition: %s"),
4227 opcode
|= cmpltr
<< 13;
4228 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
4230 /* Handle a non-negated compare condition. */
4232 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
4235 as_bad (_("Invalid Compare/Subtract Condition"));
4238 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
4240 /* Handle a 32 bit compare and branch condition. */
4243 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
4247 cmpltr
= pa_parse_neg_cmpsub_cmpltr (&s
);
4250 as_bad (_("Invalid Compare and Branch Condition"));
4255 /* Negated condition requires an opcode change. */
4260 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
4262 /* Handle a 64 bit compare and branch condition. */
4264 cmpltr
= pa_parse_cmpb_64_cmpltr (&s
);
4267 /* Negated condition requires an opcode change. */
4268 opcode
|= (cmpltr
& 8) << 26;
4271 /* Not a 64 bit cond. Give 32 bit a chance. */
4274 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
4276 /* Handle a 64 bit cmpib condition. */
4278 cmpltr
= pa_parse_cmpib_64_cmpltr (&s
);
4280 /* Not a 64 bit cond. Give 32 bit a chance. */
4283 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
4285 /* Handle a logical instruction condition. */
4294 /* 64 bit conditions. */
4306 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
4311 if (strcmp (name
, "=") == 0)
4313 else if (strcmp (name
, "<") == 0)
4315 else if (strcmp (name
, "<=") == 0)
4317 else if (strcasecmp (name
, "od") == 0)
4319 else if (strcasecmp (name
, "tr") == 0)
4324 else if (strcmp (name
, "<>") == 0)
4329 else if (strcmp (name
, ">=") == 0)
4334 else if (strcmp (name
, ">") == 0)
4339 else if (strcasecmp (name
, "ev") == 0)
4344 /* ",*" is a valid condition. */
4345 else if (*args
!= 'L' || *name
)
4346 as_bad (_("Invalid Logical Instruction Condition."));
4349 opcode
|= cmpltr
<< 13;
4350 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
4352 /* Handle a shift/extract/deposit condition. */
4357 /* Check immediate values in shift/extract/deposit
4358 * instructions if they will give undefined behaviour. */
4359 immediate_check
= 1;
4364 /* 64 bit conditions. */
4376 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
4380 if (strcmp (name
, "=") == 0)
4382 else if (strcmp (name
, "<") == 0)
4384 else if (strcasecmp (name
, "od") == 0)
4386 else if (strcasecmp (name
, "tr") == 0)
4388 else if (strcmp (name
, "<>") == 0)
4390 else if (strcmp (name
, ">=") == 0)
4392 else if (strcasecmp (name
, "ev") == 0)
4394 /* Handle movb,n. Put things back the way they were.
4395 This includes moving s back to where it started. */
4396 else if (strcasecmp (name
, "n") == 0 && *args
== 'y')
4402 /* ",*" is a valid condition. */
4403 else if (*args
!= 'X' || *name
)
4404 as_bad (_("Invalid Shift/Extract/Deposit Condition."));
4407 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
4409 /* Handle a unit instruction condition. */
4418 /* 64 bit conditions. */
4429 if (strncasecmp (s
, "sbz", 3) == 0)
4434 else if (strncasecmp (s
, "shz", 3) == 0)
4439 else if (strncasecmp (s
, "sdc", 3) == 0)
4444 else if (strncasecmp (s
, "sbc", 3) == 0)
4449 else if (strncasecmp (s
, "shc", 3) == 0)
4454 else if (strncasecmp (s
, "tr", 2) == 0)
4460 else if (strncasecmp (s
, "nbz", 3) == 0)
4466 else if (strncasecmp (s
, "nhz", 3) == 0)
4472 else if (strncasecmp (s
, "ndc", 3) == 0)
4478 else if (strncasecmp (s
, "nbc", 3) == 0)
4484 else if (strncasecmp (s
, "nhc", 3) == 0)
4490 else if (strncasecmp (s
, "swz", 3) == 0)
4496 else if (strncasecmp (s
, "swc", 3) == 0)
4502 else if (strncasecmp (s
, "nwz", 3) == 0)
4508 else if (strncasecmp (s
, "nwc", 3) == 0)
4514 /* ",*" is a valid condition. */
4515 else if (*args
!= 'U' || (*s
!= ' ' && *s
!= '\t'))
4516 as_bad (_("Invalid Unit Instruction Condition."));
4518 opcode
|= cmpltr
<< 13;
4519 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
4527 /* Handle a nullification completer for branch instructions. */
4529 nullif
= pa_parse_nullif (&s
);
4530 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 1);
4532 /* Handle a nullification completer for copr and spop insns. */
4534 nullif
= pa_parse_nullif (&s
);
4535 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 5);
4537 /* Handle ,%r2 completer for new syntax branches. */
4539 if (*s
== ',' && strncasecmp (s
+ 1, "%r2", 3) == 0)
4541 else if (*s
== ',' && strncasecmp (s
+ 1, "%rp", 3) == 0)
4547 /* Handle 3 bit entry into the fp compare array. Valid values
4548 are 0..6 inclusive. */
4552 if (the_insn
.exp
.X_op
== O_constant
)
4554 num
= evaluate_absolute (&the_insn
);
4555 CHECK_FIELD (num
, 6, 0, 0);
4557 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
4562 /* Handle 3 bit entry into the fp compare array. Valid values
4563 are 0..6 inclusive. */
4566 if (the_insn
.exp
.X_op
== O_constant
)
4569 num
= evaluate_absolute (&the_insn
);
4570 CHECK_FIELD (num
, 6, 0, 0);
4571 num
= (num
+ 1) ^ 1;
4572 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
4577 /* Handle graphics test completers for ftest */
4580 num
= pa_parse_ftest_gfx_completer (&s
);
4581 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4584 /* Handle a 11 bit immediate at 31. */
4586 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4589 if (the_insn
.exp
.X_op
== O_constant
)
4591 num
= evaluate_absolute (&the_insn
);
4592 CHECK_FIELD (num
, 1023, -1024, 0);
4593 num
= low_sign_unext (num
, 11);
4594 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4598 if (is_DP_relative (the_insn
.exp
))
4599 the_insn
.reloc
= R_HPPA_GOTOFF
;
4600 else if (is_PC_relative (the_insn
.exp
))
4601 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4603 else if (is_tls_gdidx (the_insn
.exp
))
4604 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4605 else if (is_tls_ldidx (the_insn
.exp
))
4606 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4607 else if (is_tls_dtpoff (the_insn
.exp
))
4608 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4609 else if (is_tls_ieoff (the_insn
.exp
))
4610 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4611 else if (is_tls_leoff (the_insn
.exp
))
4612 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4615 the_insn
.reloc
= R_HPPA
;
4616 the_insn
.format
= 11;
4620 /* Handle a 14 bit immediate at 31. */
4622 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4625 if (the_insn
.exp
.X_op
== O_constant
)
4629 /* XXX the completer stored away tidbits of information
4630 for us to extract. We need a cleaner way to do this.
4631 Now that we have lots of letters again, it would be
4632 good to rethink this. */
4635 num
= evaluate_absolute (&the_insn
);
4636 if (mb
!= (num
< 0))
4638 CHECK_FIELD (num
, 8191, -8192, 0);
4639 num
= low_sign_unext (num
, 14);
4640 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4644 /* Handle a 14 bit immediate at 31. */
4646 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4649 if (the_insn
.exp
.X_op
== O_constant
)
4655 num
= evaluate_absolute (&the_insn
);
4656 if (mb
== (num
< 0))
4660 CHECK_FIELD (num
, 8191, -8192, 0);
4661 num
= low_sign_unext (num
, 14);
4662 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4666 /* Handle a 16 bit immediate at 31. */
4668 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4671 if (the_insn
.exp
.X_op
== O_constant
)
4677 num
= evaluate_absolute (&the_insn
);
4678 if (mb
!= (num
< 0))
4680 CHECK_FIELD (num
, 32767, -32768, 0);
4681 num
= re_assemble_16 (num
);
4682 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4686 /* Handle a 16 bit immediate at 31. */
4688 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4691 if (the_insn
.exp
.X_op
== O_constant
)
4697 num
= evaluate_absolute (&the_insn
);
4698 if (mb
== (num
< 0))
4702 CHECK_FIELD (num
, 32767, -32768, 0);
4703 num
= re_assemble_16 (num
);
4704 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4708 /* Handle 14 bit immediate, shifted left three times. */
4710 if (bfd_get_mach (stdoutput
) != pa20
)
4712 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4715 if (the_insn
.exp
.X_op
== O_constant
)
4717 num
= evaluate_absolute (&the_insn
);
4720 CHECK_FIELD (num
, 8191, -8192, 0);
4725 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 4);
4729 if (is_DP_relative (the_insn
.exp
))
4730 the_insn
.reloc
= R_HPPA_GOTOFF
;
4731 else if (is_PC_relative (the_insn
.exp
))
4732 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4734 else if (is_tls_gdidx (the_insn
.exp
))
4735 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4736 else if (is_tls_ldidx (the_insn
.exp
))
4737 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4738 else if (is_tls_dtpoff (the_insn
.exp
))
4739 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4740 else if (is_tls_ieoff (the_insn
.exp
))
4741 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4742 else if (is_tls_leoff (the_insn
.exp
))
4743 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4746 the_insn
.reloc
= R_HPPA
;
4747 the_insn
.format
= 14;
4752 /* Handle 14 bit immediate, shifted left twice. */
4754 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4757 if (the_insn
.exp
.X_op
== O_constant
)
4759 num
= evaluate_absolute (&the_insn
);
4762 CHECK_FIELD (num
, 8191, -8192, 0);
4767 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
4771 if (is_DP_relative (the_insn
.exp
))
4772 the_insn
.reloc
= R_HPPA_GOTOFF
;
4773 else if (is_PC_relative (the_insn
.exp
))
4774 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4776 else if (is_tls_gdidx (the_insn
.exp
))
4777 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4778 else if (is_tls_ldidx (the_insn
.exp
))
4779 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4780 else if (is_tls_dtpoff (the_insn
.exp
))
4781 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4782 else if (is_tls_ieoff (the_insn
.exp
))
4783 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4784 else if (is_tls_leoff (the_insn
.exp
))
4785 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4788 the_insn
.reloc
= R_HPPA
;
4789 the_insn
.format
= 14;
4793 /* Handle a 14 bit immediate at 31. */
4795 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4798 if (the_insn
.exp
.X_op
== O_constant
)
4800 num
= evaluate_absolute (&the_insn
);
4801 CHECK_FIELD (num
, 8191, -8192, 0);
4802 num
= low_sign_unext (num
, 14);
4803 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
4807 if (is_DP_relative (the_insn
.exp
))
4808 the_insn
.reloc
= R_HPPA_GOTOFF
;
4809 else if (is_PC_relative (the_insn
.exp
))
4810 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4812 else if (is_tls_gdidx (the_insn
.exp
))
4813 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4814 else if (is_tls_ldidx (the_insn
.exp
))
4815 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4816 else if (is_tls_dtpoff (the_insn
.exp
))
4817 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4818 else if (is_tls_ieoff (the_insn
.exp
))
4819 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4820 else if (is_tls_leoff (the_insn
.exp
))
4821 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4824 the_insn
.reloc
= R_HPPA
;
4825 the_insn
.format
= 14;
4829 /* Handle a 21 bit immediate at 31. */
4831 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4834 if (the_insn
.exp
.X_op
== O_constant
)
4836 num
= evaluate_absolute (&the_insn
);
4837 CHECK_FIELD (num
>> 11, 1048575, -1048576, 0);
4838 opcode
|= re_assemble_21 (num
);
4843 if (is_DP_relative (the_insn
.exp
))
4844 the_insn
.reloc
= R_HPPA_GOTOFF
;
4845 else if (is_PC_relative (the_insn
.exp
))
4846 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4848 else if (is_tls_gdidx (the_insn
.exp
))
4849 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4850 else if (is_tls_ldidx (the_insn
.exp
))
4851 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4852 else if (is_tls_dtpoff (the_insn
.exp
))
4853 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4854 else if (is_tls_ieoff (the_insn
.exp
))
4855 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4856 else if (is_tls_leoff (the_insn
.exp
))
4857 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4860 the_insn
.reloc
= R_HPPA
;
4861 the_insn
.format
= 21;
4865 /* Handle a 16 bit immediate at 31 (PA 2.0 wide mode only). */
4867 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4870 if (the_insn
.exp
.X_op
== O_constant
)
4872 num
= evaluate_absolute (&the_insn
);
4873 CHECK_FIELD (num
, 32767, -32768, 0);
4874 opcode
|= re_assemble_16 (num
);
4879 /* ??? Is this valid for wide mode? */
4880 if (is_DP_relative (the_insn
.exp
))
4881 the_insn
.reloc
= R_HPPA_GOTOFF
;
4882 else if (is_PC_relative (the_insn
.exp
))
4883 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4885 else if (is_tls_gdidx (the_insn
.exp
))
4886 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4887 else if (is_tls_ldidx (the_insn
.exp
))
4888 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4889 else if (is_tls_dtpoff (the_insn
.exp
))
4890 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4891 else if (is_tls_ieoff (the_insn
.exp
))
4892 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4893 else if (is_tls_leoff (the_insn
.exp
))
4894 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4897 the_insn
.reloc
= R_HPPA
;
4898 the_insn
.format
= 14;
4902 /* Handle a word-aligned 16-bit imm. at 31 (PA2.0 wide). */
4904 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4907 if (the_insn
.exp
.X_op
== O_constant
)
4909 num
= evaluate_absolute (&the_insn
);
4910 CHECK_FIELD (num
, 32767, -32768, 0);
4911 CHECK_ALIGN (num
, 4, 0);
4912 opcode
|= re_assemble_16 (num
);
4917 /* ??? Is this valid for wide mode? */
4918 if (is_DP_relative (the_insn
.exp
))
4919 the_insn
.reloc
= R_HPPA_GOTOFF
;
4920 else if (is_PC_relative (the_insn
.exp
))
4921 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4923 else if (is_tls_gdidx (the_insn
.exp
))
4924 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4925 else if (is_tls_ldidx (the_insn
.exp
))
4926 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4927 else if (is_tls_dtpoff (the_insn
.exp
))
4928 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4929 else if (is_tls_ieoff (the_insn
.exp
))
4930 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4931 else if (is_tls_leoff (the_insn
.exp
))
4932 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4935 the_insn
.reloc
= R_HPPA
;
4936 the_insn
.format
= 14;
4940 /* Handle a dword-aligned 16-bit imm. at 31 (PA2.0 wide). */
4942 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4945 if (the_insn
.exp
.X_op
== O_constant
)
4947 num
= evaluate_absolute (&the_insn
);
4948 CHECK_FIELD (num
, 32767, -32768, 0);
4949 CHECK_ALIGN (num
, 8, 0);
4950 opcode
|= re_assemble_16 (num
);
4955 /* ??? Is this valid for wide mode? */
4956 if (is_DP_relative (the_insn
.exp
))
4957 the_insn
.reloc
= R_HPPA_GOTOFF
;
4958 else if (is_PC_relative (the_insn
.exp
))
4959 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
4961 else if (is_tls_gdidx (the_insn
.exp
))
4962 the_insn
.reloc
= R_PARISC_TLS_GD21L
;
4963 else if (is_tls_ldidx (the_insn
.exp
))
4964 the_insn
.reloc
= R_PARISC_TLS_LDM21L
;
4965 else if (is_tls_dtpoff (the_insn
.exp
))
4966 the_insn
.reloc
= R_PARISC_TLS_LDO21L
;
4967 else if (is_tls_ieoff (the_insn
.exp
))
4968 the_insn
.reloc
= R_PARISC_TLS_IE21L
;
4969 else if (is_tls_leoff (the_insn
.exp
))
4970 the_insn
.reloc
= R_PARISC_TLS_LE21L
;
4973 the_insn
.reloc
= R_HPPA
;
4974 the_insn
.format
= 14;
4978 /* Handle a 12 bit branch displacement. */
4980 the_insn
.field_selector
= pa_chk_field_selector (&s
);
4984 if (!the_insn
.exp
.X_add_symbol
4985 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
4988 num
= evaluate_absolute (&the_insn
);
4991 as_bad (_("Branch to unaligned address"));
4994 if (the_insn
.exp
.X_add_symbol
)
4996 CHECK_FIELD (num
, 8191, -8192, 0);
4997 opcode
|= re_assemble_12 (num
>> 2);
5002 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
5003 the_insn
.format
= 12;
5004 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
5005 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
5010 /* Handle a 17 bit branch displacement. */
5012 the_insn
.field_selector
= pa_chk_field_selector (&s
);
5016 if (!the_insn
.exp
.X_add_symbol
5017 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
5020 num
= evaluate_absolute (&the_insn
);
5023 as_bad (_("Branch to unaligned address"));
5026 if (the_insn
.exp
.X_add_symbol
)
5028 CHECK_FIELD (num
, 262143, -262144, 0);
5029 opcode
|= re_assemble_17 (num
>> 2);
5034 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
5035 the_insn
.format
= 17;
5036 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
5037 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
5041 /* Handle a 22 bit branch displacement. */
5043 the_insn
.field_selector
= pa_chk_field_selector (&s
);
5047 if (!the_insn
.exp
.X_add_symbol
5048 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
5051 num
= evaluate_absolute (&the_insn
);
5054 as_bad (_("Branch to unaligned address"));
5057 if (the_insn
.exp
.X_add_symbol
)
5059 CHECK_FIELD (num
, 8388607, -8388608, 0);
5060 opcode
|= re_assemble_22 (num
>> 2);
5064 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
5065 the_insn
.format
= 22;
5066 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
5067 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
5071 /* Handle an absolute 17 bit branch target. */
5073 the_insn
.field_selector
= pa_chk_field_selector (&s
);
5077 if (!the_insn
.exp
.X_add_symbol
5078 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
5081 num
= evaluate_absolute (&the_insn
);
5084 as_bad (_("Branch to unaligned address"));
5087 if (the_insn
.exp
.X_add_symbol
)
5089 CHECK_FIELD (num
, 262143, -262144, 0);
5090 opcode
|= re_assemble_17 (num
>> 2);
5095 the_insn
.reloc
= R_HPPA_ABS_CALL
;
5096 the_insn
.format
= 17;
5097 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
5098 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
5102 /* Handle '%r1' implicit operand of addil instruction. */
5104 if (*s
== ',' && *(s
+ 1) == '%' && *(s
+ 3) == '1'
5105 && (*(s
+ 2) == 'r' || *(s
+ 2) == 'R'))
5113 /* Handle '%sr0,%r31' implicit operand of be,l instruction. */
5115 if (strncasecmp (s
, "%sr0,%r31", 9) != 0)
5120 /* Handle immediate value of 0 for ordered load/store instructions. */
5127 /* Handle a 2 bit shift count at 25. */
5129 num
= pa_get_absolute_expression (&the_insn
, &s
);
5130 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5133 CHECK_FIELD (num
, 3, 1, strict
);
5134 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
5136 /* Handle a 4 bit shift count at 25. */
5138 num
= pa_get_absolute_expression (&the_insn
, &s
);
5139 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5142 CHECK_FIELD (num
, 15, 0, strict
);
5143 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
5145 /* Handle a 5 bit shift count at 26. */
5147 num
= pa_get_absolute_expression (&the_insn
, &s
);
5148 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5151 CHECK_FIELD (num
, 31, 0, strict
);
5152 SAVE_IMMEDIATE(num
);
5153 INSERT_FIELD_AND_CONTINUE (opcode
, 31 - num
, 5);
5155 /* Handle a 6 bit shift count at 20,22:26. */
5157 num
= pa_get_absolute_expression (&the_insn
, &s
);
5158 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5161 CHECK_FIELD (num
, 63, 0, strict
);
5162 SAVE_IMMEDIATE(num
);
5164 opcode
|= (num
& 0x20) << 6;
5165 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
5167 /* Handle a 6 bit field length at 23,27:31. */
5170 num
= pa_get_absolute_expression (&the_insn
, &s
);
5171 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5174 CHECK_FIELD (num
, 64, 1, strict
);
5175 SAVE_IMMEDIATE(num
);
5177 opcode
|= (num
& 0x20) << 3;
5178 num
= 31 - (num
& 0x1f);
5179 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5181 /* Handle a 6 bit field length at 19,27:31. */
5183 num
= pa_get_absolute_expression (&the_insn
, &s
);
5184 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5187 CHECK_FIELD (num
, 64, 1, strict
);
5188 SAVE_IMMEDIATE(num
);
5190 opcode
|= (num
& 0x20) << 7;
5191 num
= 31 - (num
& 0x1f);
5192 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5194 /* Handle a 5 bit bit position at 26. */
5196 num
= pa_get_absolute_expression (&the_insn
, &s
);
5197 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5200 CHECK_FIELD (num
, 31, 0, strict
);
5201 SAVE_IMMEDIATE(num
);
5202 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 5);
5204 /* Handle a 6 bit bit position at 20,22:26. */
5206 num
= pa_get_absolute_expression (&the_insn
, &s
);
5207 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5210 CHECK_FIELD (num
, 63, 0, strict
);
5211 SAVE_IMMEDIATE(num
);
5212 opcode
|= (num
& 0x20) << 6;
5213 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
5215 /* Handle a 5 bit immediate at 10 with 'd' as the complement
5216 of the high bit of the immediate. */
5218 num
= pa_get_absolute_expression (&the_insn
, &s
);
5219 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5222 CHECK_FIELD (num
, 63, 0, strict
);
5226 opcode
|= (1 << 13);
5227 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 21);
5229 /* Handle a 5 bit immediate at 10. */
5231 num
= pa_get_absolute_expression (&the_insn
, &s
);
5232 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5235 CHECK_FIELD (num
, 31, 0, strict
);
5236 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
5238 /* Handle a 9 bit immediate at 28. */
5240 num
= pa_get_absolute_expression (&the_insn
, &s
);
5241 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5244 CHECK_FIELD (num
, 511, 1, strict
);
5245 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
5247 /* Handle a 13 bit immediate at 18. */
5249 num
= pa_get_absolute_expression (&the_insn
, &s
);
5250 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5253 CHECK_FIELD (num
, 8191, 0, strict
);
5254 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
5256 /* Handle a 26 bit immediate at 31. */
5258 num
= pa_get_absolute_expression (&the_insn
, &s
);
5259 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5262 CHECK_FIELD (num
, 67108863, 0, strict
);
5263 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5265 /* Handle a 3 bit SFU identifier at 25. */
5268 as_bad (_("Invalid SFU identifier"));
5269 num
= pa_get_absolute_expression (&the_insn
, &s
);
5270 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5273 CHECK_FIELD (num
, 7, 0, strict
);
5274 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
5276 /* Handle a 20 bit SOP field for spop0. */
5278 num
= pa_get_absolute_expression (&the_insn
, &s
);
5279 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5282 CHECK_FIELD (num
, 1048575, 0, strict
);
5283 num
= (num
& 0x1f) | ((num
& 0x000fffe0) << 6);
5284 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5286 /* Handle a 15bit SOP field for spop1. */
5288 num
= pa_get_absolute_expression (&the_insn
, &s
);
5289 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5292 CHECK_FIELD (num
, 32767, 0, strict
);
5293 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
5295 /* Handle a 10bit SOP field for spop3. */
5297 num
= pa_get_absolute_expression (&the_insn
, &s
);
5298 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5301 CHECK_FIELD (num
, 1023, 0, strict
);
5302 num
= (num
& 0x1f) | ((num
& 0x000003e0) << 6);
5303 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5305 /* Handle a 15 bit SOP field for spop2. */
5307 num
= pa_get_absolute_expression (&the_insn
, &s
);
5308 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5311 CHECK_FIELD (num
, 32767, 0, strict
);
5312 num
= (num
& 0x1f) | ((num
& 0x00007fe0) << 6);
5313 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5315 /* Handle a 3-bit co-processor ID field. */
5318 as_bad (_("Invalid COPR identifier"));
5319 num
= pa_get_absolute_expression (&the_insn
, &s
);
5320 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5323 CHECK_FIELD (num
, 7, 0, strict
);
5324 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
5326 /* Handle a 22bit SOP field for copr. */
5328 num
= pa_get_absolute_expression (&the_insn
, &s
);
5329 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
5332 CHECK_FIELD (num
, 4194303, 0, strict
);
5333 num
= (num
& 0x1f) | ((num
& 0x003fffe0) << 4);
5334 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5336 /* Handle a source FP operand format completer. */
5338 if (*s
== ',' && *(s
+1) == 't')
5345 flag
= pa_parse_fp_cnv_format (&s
);
5346 the_insn
.fpof1
= flag
;
5347 if (flag
== W
|| flag
== UW
)
5349 if (flag
== DW
|| flag
== UDW
)
5351 if (flag
== QW
|| flag
== UQW
)
5353 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
5355 /* Handle a destination FP operand format completer. */
5357 /* pa_parse_format needs the ',' prefix. */
5359 flag
= pa_parse_fp_cnv_format (&s
);
5360 the_insn
.fpof2
= flag
;
5361 if (flag
== W
|| flag
== UW
)
5363 if (flag
== DW
|| flag
== UDW
)
5365 if (flag
== QW
|| flag
== UQW
)
5367 opcode
|= flag
<< 13;
5368 if (the_insn
.fpof1
== SGL
5369 || the_insn
.fpof1
== DBL
5370 || the_insn
.fpof1
== QUAD
)
5372 if (the_insn
.fpof2
== SGL
5373 || the_insn
.fpof2
== DBL
5374 || the_insn
.fpof2
== QUAD
)
5376 else if (the_insn
.fpof2
== W
5377 || the_insn
.fpof2
== DW
5378 || the_insn
.fpof2
== QW
)
5380 else if (the_insn
.fpof2
== UW
5381 || the_insn
.fpof2
== UDW
5382 || the_insn
.fpof2
== UQW
)
5387 else if (the_insn
.fpof1
== W
5388 || the_insn
.fpof1
== DW
5389 || the_insn
.fpof1
== QW
)
5391 if (the_insn
.fpof2
== SGL
5392 || the_insn
.fpof2
== DBL
5393 || the_insn
.fpof2
== QUAD
)
5398 else if (the_insn
.fpof1
== UW
5399 || the_insn
.fpof1
== UDW
5400 || the_insn
.fpof1
== UQW
)
5402 if (the_insn
.fpof2
== SGL
5403 || the_insn
.fpof2
== DBL
5404 || the_insn
.fpof2
== QUAD
)
5409 flag
|= the_insn
.trunc
;
5410 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 15);
5412 /* Handle a source FP operand format completer. */
5414 flag
= pa_parse_fp_format (&s
);
5415 the_insn
.fpof1
= flag
;
5416 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
5418 /* Handle a destination FP operand format completer. */
5420 /* pa_parse_format needs the ',' prefix. */
5422 flag
= pa_parse_fp_format (&s
);
5423 the_insn
.fpof2
= flag
;
5424 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 13);
5426 /* Handle a source FP operand format completer at 20. */
5428 flag
= pa_parse_fp_format (&s
);
5429 the_insn
.fpof1
= flag
;
5430 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
5432 /* Handle a floating point operand format at 26.
5433 Only allows single and double precision. */
5435 flag
= pa_parse_fp_format (&s
);
5441 the_insn
.fpof1
= flag
;
5447 as_bad (_("Invalid Floating Point Operand Format."));
5451 /* Handle all floating point registers. */
5455 /* Float target register. */
5457 if (!pa_parse_number (&s
, 3))
5459 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5460 CHECK_FIELD (num
, 31, 0, 0);
5461 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5463 /* Float target register with L/R selection. */
5466 if (!pa_parse_number (&s
, 1))
5468 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5469 CHECK_FIELD (num
, 31, 0, 0);
5472 /* 0x30 opcodes are FP arithmetic operation opcodes
5473 and need to be turned into 0x38 opcodes. This
5474 is not necessary for loads/stores. */
5475 if (need_pa11_opcode ()
5476 && ((opcode
& 0xfc000000) == 0x30000000))
5479 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 6 : 0);
5483 /* Float operand 1. */
5486 if (!pa_parse_number (&s
, 1))
5488 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5489 CHECK_FIELD (num
, 31, 0, 0);
5490 opcode
|= num
<< 21;
5491 if (need_pa11_opcode ())
5493 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
5499 /* Float operand 1 with L/R selection. */
5503 if (!pa_parse_number (&s
, 1))
5505 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5506 CHECK_FIELD (num
, 31, 0, 0);
5507 opcode
|= num
<< 21;
5508 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
5512 /* Float operand 2. */
5515 if (!pa_parse_number (&s
, 1))
5517 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5518 CHECK_FIELD (num
, 31, 0, 0);
5519 opcode
|= num
<< 16;
5520 if (need_pa11_opcode ())
5522 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
5528 /* Float operand 2 with L/R selection. */
5531 if (!pa_parse_number (&s
, 1))
5533 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5534 CHECK_FIELD (num
, 31, 0, 0);
5535 opcode
|= num
<< 16;
5536 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
5540 /* Float operand 3 for fmpyfadd, fmpynfadd. */
5543 if (!pa_parse_number (&s
, 1))
5545 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5546 CHECK_FIELD (num
, 31, 0, 0);
5547 opcode
|= (num
& 0x1c) << 11;
5548 opcode
|= (num
& 0x03) << 9;
5549 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 8 : 0);
5553 /* Float mult operand 1 for fmpyadd, fmpysub */
5556 if (!pa_parse_number (&s
, 1))
5558 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5559 CHECK_FIELD (num
, 31, 0, 0);
5560 if (the_insn
.fpof1
== SGL
)
5564 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5568 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
5570 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
5573 /* Float mult operand 2 for fmpyadd, fmpysub */
5576 if (!pa_parse_number (&s
, 1))
5578 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5579 CHECK_FIELD (num
, 31, 0, 0);
5580 if (the_insn
.fpof1
== SGL
)
5584 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5588 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
5590 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
5593 /* Float mult target for fmpyadd, fmpysub */
5596 if (!pa_parse_number (&s
, 1))
5598 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5599 CHECK_FIELD (num
, 31, 0, 0);
5600 if (the_insn
.fpof1
== SGL
)
5604 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5608 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
5610 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
5613 /* Float add operand 1 for fmpyadd, fmpysub */
5616 if (!pa_parse_number (&s
, 1))
5618 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5619 CHECK_FIELD (num
, 31, 0, 0);
5620 if (the_insn
.fpof1
== SGL
)
5624 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5628 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
5630 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
5633 /* Float add target for fmpyadd, fmpysub */
5636 if (!pa_parse_number (&s
, 1))
5638 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5639 CHECK_FIELD (num
, 31, 0, 0);
5640 if (the_insn
.fpof1
== SGL
)
5644 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5648 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
5650 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
5653 /* Handle L/R register halves like 'x'. */
5657 if (!pa_parse_number (&s
, 1))
5659 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5660 CHECK_FIELD (num
, 31, 0, 0);
5661 opcode
|= num
<< 16;
5662 if (need_pa11_opcode ())
5664 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 1 : 0);
5669 /* Float target register (PA 2.0 wide). */
5671 if (!pa_parse_number (&s
, 3))
5673 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
5674 CHECK_FIELD (num
, 31, 0, 0);
5675 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
5688 /* If this instruction is specific to a particular architecture,
5689 then set a new architecture. This automatic promotion crud is
5690 for compatibility with HP's old assemblers only. */
5692 && bfd_get_mach (stdoutput
) < insn
->arch
5693 && !bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, insn
->arch
))
5695 as_warn (_("could not update architecture and machine"));
5700 /* Check if the args matched. */
5703 if (&insn
[1] - pa_opcodes
< (int) NUMOPCODES
5704 && !strcmp (insn
->name
, insn
[1].name
))
5712 as_bad (_("Invalid operands %s"), error_message
);
5719 if (immediate_check
)
5721 if (pos
!= -1 && len
!= -1 && pos
< len
- 1)
5722 as_warn (_("Immediates %d and %d will give undefined behavior."),
5726 the_insn
.opcode
= opcode
;
5729 /* Assemble a single instruction storing it into a frag. */
5732 md_assemble (char *str
)
5736 /* The had better be something to assemble. */
5739 /* If we are within a procedure definition, make sure we've
5740 defined a label for the procedure; handle case where the
5741 label was defined after the .PROC directive.
5743 Note there's not need to diddle with the segment or fragment
5744 for the label symbol in this case. We have already switched
5745 into the new $CODE$ subspace at this point. */
5746 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
5748 label_symbol_struct
*label_symbol
= pa_get_label ();
5752 if (label_symbol
->lss_label
)
5754 last_call_info
->start_symbol
= label_symbol
->lss_label
;
5755 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
5758 /* Also handle allocation of a fixup to hold the unwind
5759 information when the label appears after the proc/procend. */
5760 if (within_entry_exit
)
5765 where
= frag_more (0);
5766 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
5767 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5768 NULL
, (offsetT
) 0, NULL
,
5769 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
5774 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
5777 as_bad (_("Missing function name for .PROC"));
5780 /* Assemble the instruction. Results are saved into "the_insn". */
5783 /* Get somewhere to put the assembled instruction. */
5786 /* Output the opcode. */
5787 md_number_to_chars (to
, the_insn
.opcode
, 4);
5789 /* If necessary output more stuff. */
5790 if (the_insn
.reloc
!= R_HPPA_NONE
)
5791 fix_new_hppa (frag_now
, (to
- frag_now
->fr_literal
), 4, NULL
,
5792 (offsetT
) 0, &the_insn
.exp
, the_insn
.pcrel
,
5793 the_insn
.reloc
, the_insn
.field_selector
,
5794 the_insn
.format
, the_insn
.arg_reloc
, 0);
5797 dwarf2_emit_insn (4);
5802 /* Handle an alignment directive. Special so that we can update the
5803 alignment of the subspace if necessary. */
5805 pa_align (int bytes
)
5807 /* We must have a valid space and subspace. */
5808 pa_check_current_space_and_subspace ();
5810 /* Let the generic gas code do most of the work. */
5811 s_align_bytes (bytes
);
5813 /* If bytes is a power of 2, then update the current subspace's
5814 alignment if necessary. */
5815 if (exact_log2 (bytes
) != -1)
5816 record_alignment (current_subspace
->ssd_seg
, exact_log2 (bytes
));
5820 /* Handle a .BLOCK type pseudo-op. */
5823 pa_block (int z ATTRIBUTE_UNUSED
)
5825 unsigned int temp_size
;
5828 /* We must have a valid space and subspace. */
5829 pa_check_current_space_and_subspace ();
5832 temp_size
= get_absolute_expression ();
5834 if (temp_size
> 0x3FFFFFFF)
5836 as_bad (_("Argument to .BLOCK/.BLOCKZ must be between 0 and 0x3fffffff"));
5841 /* Always fill with zeros, that's what the HP assembler does. */
5842 char *p
= frag_var (rs_fill
, 1, 1, 0, NULL
, temp_size
, NULL
);
5846 pa_undefine_label ();
5847 demand_empty_rest_of_line ();
5850 /* Handle a .begin_brtab and .end_brtab pseudo-op. */
5853 pa_brtab (int begin ATTRIBUTE_UNUSED
)
5857 /* The BRTAB relocations are only available in SOM (to denote
5858 the beginning and end of branch tables). */
5859 char *where
= frag_more (0);
5861 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5862 NULL
, (offsetT
) 0, NULL
,
5863 0, begin
? R_HPPA_BEGIN_BRTAB
: R_HPPA_END_BRTAB
,
5867 demand_empty_rest_of_line ();
5870 /* Handle a .begin_try and .end_try pseudo-op. */
5873 pa_try (int begin ATTRIBUTE_UNUSED
)
5877 char *where
= frag_more (0);
5882 /* The TRY relocations are only available in SOM (to denote
5883 the beginning and end of exception handling regions). */
5885 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5886 NULL
, (offsetT
) 0, begin
? NULL
: &exp
,
5887 0, begin
? R_HPPA_BEGIN_TRY
: R_HPPA_END_TRY
,
5891 demand_empty_rest_of_line ();
5894 /* Do the dirty work of building a call descriptor which describes
5895 where the caller placed arguments to a function call. */
5898 pa_call_args (struct call_desc
*call_desc
)
5901 unsigned int temp
, arg_reloc
;
5903 while (!is_end_of_statement ())
5905 name
= input_line_pointer
;
5906 c
= get_symbol_end ();
5907 /* Process a source argument. */
5908 if ((strncasecmp (name
, "argw", 4) == 0))
5910 temp
= atoi (name
+ 4);
5911 p
= input_line_pointer
;
5913 input_line_pointer
++;
5914 name
= input_line_pointer
;
5915 c
= get_symbol_end ();
5916 arg_reloc
= pa_build_arg_reloc (name
);
5917 call_desc
->arg_reloc
|= pa_align_arg_reloc (temp
, arg_reloc
);
5919 /* Process a return value. */
5920 else if ((strncasecmp (name
, "rtnval", 6) == 0))
5922 p
= input_line_pointer
;
5924 input_line_pointer
++;
5925 name
= input_line_pointer
;
5926 c
= get_symbol_end ();
5927 arg_reloc
= pa_build_arg_reloc (name
);
5928 call_desc
->arg_reloc
|= (arg_reloc
& 0x3);
5932 as_bad (_("Invalid .CALL argument: %s"), name
);
5934 p
= input_line_pointer
;
5936 if (!is_end_of_statement ())
5937 input_line_pointer
++;
5941 /* Handle a .CALL pseudo-op. This involves storing away information
5942 about where arguments are to be found so the linker can detect
5943 (and correct) argument location mismatches between caller and callee. */
5946 pa_call (int unused ATTRIBUTE_UNUSED
)
5949 /* We must have a valid space and subspace. */
5950 pa_check_current_space_and_subspace ();
5953 pa_call_args (&last_call_desc
);
5954 demand_empty_rest_of_line ();
5958 /* Build an entry in the UNWIND subspace from the given function
5959 attributes in CALL_INFO. This is not needed for SOM as using
5960 R_ENTRY and R_EXIT relocations allow the linker to handle building
5961 of the unwind spaces. */
5964 pa_build_unwind_subspace (struct call_info
*call_info
)
5966 asection
*seg
, *save_seg
;
5967 subsegT save_subseg
;
5968 unsigned int unwind
;
5973 if ((bfd_get_section_flags (stdoutput
, now_seg
)
5974 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
5975 != (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
5978 if (call_info
->start_symbol
== NULL
)
5979 /* This can happen if there were errors earlier on in the assembly. */
5982 /* Replace the start symbol with a local symbol that will be reduced
5983 to a section offset. This avoids problems with weak functions with
5984 multiple definitions, etc. */
5985 name
= xmalloc (strlen ("L$\001start_")
5986 + strlen (S_GET_NAME (call_info
->start_symbol
))
5988 strcpy (name
, "L$\001start_");
5989 strcat (name
, S_GET_NAME (call_info
->start_symbol
));
5991 /* If we have a .procend preceded by a .exit, then the symbol will have
5992 already been defined. In that case, we don't want another unwind
5994 symbolP
= symbol_find (name
);
6002 symbolP
= symbol_new (name
, now_seg
,
6003 S_GET_VALUE (call_info
->start_symbol
), frag_now
);
6004 gas_assert (symbolP
);
6005 S_CLEAR_EXTERNAL (symbolP
);
6006 symbol_table_insert (symbolP
);
6009 reloc
= R_PARISC_SEGREL32
;
6011 save_subseg
= now_subseg
;
6012 /* Get into the right seg/subseg. This may involve creating
6013 the seg the first time through. Make sure to have the
6014 old seg/subseg so that we can reset things when we are done. */
6015 seg
= bfd_get_section_by_name (stdoutput
, UNWIND_SECTION_NAME
);
6016 if (seg
== ASEC_NULL
)
6018 seg
= subseg_new (UNWIND_SECTION_NAME
, 0);
6019 bfd_set_section_flags (stdoutput
, seg
,
6020 SEC_READONLY
| SEC_HAS_CONTENTS
6021 | SEC_LOAD
| SEC_RELOC
| SEC_ALLOC
| SEC_DATA
);
6022 bfd_set_section_alignment (stdoutput
, seg
, 2);
6025 subseg_set (seg
, 0);
6027 /* Get some space to hold relocation information for the unwind
6031 /* Relocation info. for start offset of the function. */
6032 md_number_to_chars (p
, 0, 4);
6033 fix_new_hppa (frag_now
, p
- frag_now
->fr_literal
, 4,
6034 symbolP
, (offsetT
) 0,
6035 (expressionS
*) NULL
, 0, reloc
,
6038 /* Relocation info. for end offset of the function.
6040 Because we allow reductions of 32bit relocations for ELF, this will be
6041 reduced to section_sym + offset which avoids putting the temporary
6042 symbol into the symbol table. It (should) end up giving the same
6043 value as call_info->start_symbol + function size once the linker is
6044 finished with its work. */
6045 md_number_to_chars (p
+ 4, 0, 4);
6046 fix_new_hppa (frag_now
, p
+ 4 - frag_now
->fr_literal
, 4,
6047 call_info
->end_symbol
, (offsetT
) 0,
6048 (expressionS
*) NULL
, 0, reloc
,
6051 /* Dump the descriptor. */
6052 unwind
= UNWIND_LOW32 (&call_info
->ci_unwind
.descriptor
);
6053 md_number_to_chars (p
+ 8, unwind
, 4);
6055 unwind
= UNWIND_HIGH32 (&call_info
->ci_unwind
.descriptor
);
6056 md_number_to_chars (p
+ 12, unwind
, 4);
6058 /* Return back to the original segment/subsegment. */
6059 subseg_set (save_seg
, save_subseg
);
6063 /* Process a .CALLINFO pseudo-op. This information is used later
6064 to build unwind descriptors and maybe one day to support
6065 .ENTER and .LEAVE. */
6068 pa_callinfo (int unused ATTRIBUTE_UNUSED
)
6074 /* We must have a valid space and subspace. */
6075 pa_check_current_space_and_subspace ();
6078 /* .CALLINFO must appear within a procedure definition. */
6079 if (!within_procedure
)
6080 as_bad (_(".callinfo is not within a procedure definition"));
6082 /* Mark the fact that we found the .CALLINFO for the
6083 current procedure. */
6084 callinfo_found
= TRUE
;
6086 /* Iterate over the .CALLINFO arguments. */
6087 while (!is_end_of_statement ())
6089 name
= input_line_pointer
;
6090 c
= get_symbol_end ();
6091 /* Frame size specification. */
6092 if ((strncasecmp (name
, "frame", 5) == 0))
6094 p
= input_line_pointer
;
6096 input_line_pointer
++;
6097 temp
= get_absolute_expression ();
6098 if ((temp
& 0x3) != 0)
6100 as_bad (_("FRAME parameter must be a multiple of 8: %d\n"), temp
);
6104 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
6105 last_call_info
->ci_unwind
.descriptor
.frame_size
= temp
/ 8;
6108 /* Entry register (GR, GR and SR) specifications. */
6109 else if ((strncasecmp (name
, "entry_gr", 8) == 0))
6111 p
= input_line_pointer
;
6113 input_line_pointer
++;
6114 temp
= get_absolute_expression ();
6115 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
6116 even though %r19 is caller saved. I think this is a bug in
6117 the HP assembler, and we are not going to emulate it. */
6118 if (temp
< 3 || temp
> 18)
6119 as_bad (_("Value for ENTRY_GR must be in the range 3..18\n"));
6120 last_call_info
->ci_unwind
.descriptor
.entry_gr
= temp
- 2;
6122 else if ((strncasecmp (name
, "entry_fr", 8) == 0))
6124 p
= input_line_pointer
;
6126 input_line_pointer
++;
6127 temp
= get_absolute_expression ();
6128 /* Similarly the HP assembler takes 31 as the high bound even
6129 though %fr21 is the last callee saved floating point register. */
6130 if (temp
< 12 || temp
> 21)
6131 as_bad (_("Value for ENTRY_FR must be in the range 12..21\n"));
6132 last_call_info
->ci_unwind
.descriptor
.entry_fr
= temp
- 11;
6134 else if ((strncasecmp (name
, "entry_sr", 8) == 0))
6136 p
= input_line_pointer
;
6138 input_line_pointer
++;
6139 temp
= get_absolute_expression ();
6141 as_bad (_("Value for ENTRY_SR must be 3\n"));
6143 /* Note whether or not this function performs any calls. */
6144 else if ((strncasecmp (name
, "calls", 5) == 0) ||
6145 (strncasecmp (name
, "caller", 6) == 0))
6147 p
= input_line_pointer
;
6150 else if ((strncasecmp (name
, "no_calls", 8) == 0))
6152 p
= input_line_pointer
;
6155 /* Should RP be saved into the stack. */
6156 else if ((strncasecmp (name
, "save_rp", 7) == 0))
6158 p
= input_line_pointer
;
6160 last_call_info
->ci_unwind
.descriptor
.save_rp
= 1;
6162 /* Likewise for SP. */
6163 else if ((strncasecmp (name
, "save_sp", 7) == 0))
6165 p
= input_line_pointer
;
6167 last_call_info
->ci_unwind
.descriptor
.save_sp
= 1;
6169 /* Is this an unwindable procedure. If so mark it so
6170 in the unwind descriptor. */
6171 else if ((strncasecmp (name
, "no_unwind", 9) == 0))
6173 p
= input_line_pointer
;
6175 last_call_info
->ci_unwind
.descriptor
.cannot_unwind
= 1;
6177 /* Is this an interrupt routine. If so mark it in the
6178 unwind descriptor. */
6179 else if ((strncasecmp (name
, "hpux_int", 7) == 0))
6181 p
= input_line_pointer
;
6183 last_call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 1;
6185 /* Is this a millicode routine. "millicode" isn't in my
6186 assembler manual, but my copy is old. The HP assembler
6187 accepts it, and there's a place in the unwind descriptor
6188 to drop the information, so we'll accept it too. */
6189 else if ((strncasecmp (name
, "millicode", 9) == 0))
6191 p
= input_line_pointer
;
6193 last_call_info
->ci_unwind
.descriptor
.millicode
= 1;
6197 as_bad (_("Invalid .CALLINFO argument: %s"), name
);
6198 *input_line_pointer
= c
;
6200 if (!is_end_of_statement ())
6201 input_line_pointer
++;
6204 demand_empty_rest_of_line ();
6207 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
6208 /* Switch to the text space. Like s_text, but delete our
6209 label when finished. */
6212 pa_text (int unused ATTRIBUTE_UNUSED
)
6215 current_space
= is_defined_space ("$TEXT$");
6217 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6221 pa_undefine_label ();
6224 /* Switch to the data space. As usual delete our label. */
6227 pa_data (int unused ATTRIBUTE_UNUSED
)
6230 current_space
= is_defined_space ("$PRIVATE$");
6232 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6235 pa_undefine_label ();
6238 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
6239 the .comm pseudo-op has the following syntax:
6241 <label> .comm <length>
6243 where <label> is optional and is a symbol whose address will be the start of
6244 a block of memory <length> bytes long. <length> must be an absolute
6245 expression. <length> bytes will be allocated in the current space
6248 Also note the label may not even be on the same line as the .comm.
6250 This difference in syntax means the colon function will be called
6251 on the symbol before we arrive in pa_comm. colon will set a number
6252 of attributes of the symbol that need to be fixed here. In particular
6253 the value, section pointer, fragment pointer, flags, etc. What
6256 This also makes error detection all but impossible. */
6259 pa_comm (int unused ATTRIBUTE_UNUSED
)
6263 label_symbol_struct
*label_symbol
= pa_get_label ();
6266 symbol
= label_symbol
->lss_label
;
6271 size
= get_absolute_expression ();
6275 symbol_get_bfdsym (symbol
)->flags
|= BSF_OBJECT
;
6276 S_SET_VALUE (symbol
, size
);
6277 S_SET_SEGMENT (symbol
, bfd_com_section_ptr
);
6278 S_SET_EXTERNAL (symbol
);
6280 /* colon() has already set the frag to the current location in the
6281 current subspace; we need to reset the fragment to the zero address
6282 fragment. We also need to reset the segment pointer. */
6283 symbol_set_frag (symbol
, &zero_address_frag
);
6285 demand_empty_rest_of_line ();
6287 #endif /* !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))) */
6289 /* Process a .END pseudo-op. */
6292 pa_end (int unused ATTRIBUTE_UNUSED
)
6294 demand_empty_rest_of_line ();
6297 /* Process a .ENTER pseudo-op. This is not supported. */
6300 pa_enter (int unused ATTRIBUTE_UNUSED
)
6303 /* We must have a valid space and subspace. */
6304 pa_check_current_space_and_subspace ();
6307 as_bad (_("The .ENTER pseudo-op is not supported"));
6308 demand_empty_rest_of_line ();
6311 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
6315 pa_entry (int unused ATTRIBUTE_UNUSED
)
6318 /* We must have a valid space and subspace. */
6319 pa_check_current_space_and_subspace ();
6322 if (!within_procedure
)
6323 as_bad (_("Misplaced .entry. Ignored."));
6326 if (!callinfo_found
)
6327 as_bad (_("Missing .callinfo."));
6329 demand_empty_rest_of_line ();
6330 within_entry_exit
= TRUE
;
6333 /* SOM defers building of unwind descriptors until the link phase.
6334 The assembler is responsible for creating an R_ENTRY relocation
6335 to mark the beginning of a region and hold the unwind bits, and
6336 for creating an R_EXIT relocation to mark the end of the region.
6338 FIXME. ELF should be using the same conventions! The problem
6339 is an unwind requires too much relocation space. Hmmm. Maybe
6340 if we split the unwind bits up between the relocations which
6341 denote the entry and exit points. */
6342 if (last_call_info
->start_symbol
!= NULL
)
6347 where
= frag_more (0);
6348 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
6349 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6350 NULL
, (offsetT
) 0, NULL
,
6351 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
6356 /* Silly nonsense for pa_equ. The only half-sensible use for this is
6357 being able to subtract two register symbols that specify a range of
6358 registers, to get the size of the range. */
6359 static int fudge_reg_expressions
;
6362 hppa_force_reg_syms_absolute (expressionS
*resultP
,
6363 operatorT op ATTRIBUTE_UNUSED
,
6364 expressionS
*rightP
)
6366 if (fudge_reg_expressions
6367 && rightP
->X_op
== O_register
6368 && resultP
->X_op
== O_register
)
6370 rightP
->X_op
= O_constant
;
6371 resultP
->X_op
= O_constant
;
6373 return 0; /* Continue normal expr handling. */
6376 /* Handle a .EQU pseudo-op. */
6381 label_symbol_struct
*label_symbol
= pa_get_label ();
6386 symbol
= label_symbol
->lss_label
;
6390 if (!pa_parse_number (&input_line_pointer
, 0))
6391 as_bad (_(".REG expression must be a register"));
6392 S_SET_VALUE (symbol
, pa_number
);
6393 S_SET_SEGMENT (symbol
, reg_section
);
6400 fudge_reg_expressions
= 1;
6401 seg
= expression (&exp
);
6402 fudge_reg_expressions
= 0;
6403 if (exp
.X_op
!= O_constant
6404 && exp
.X_op
!= O_register
)
6406 if (exp
.X_op
!= O_absent
)
6407 as_bad (_("bad or irreducible absolute expression; zero assumed"));
6408 exp
.X_add_number
= 0;
6409 seg
= absolute_section
;
6411 S_SET_VALUE (symbol
, (unsigned int) exp
.X_add_number
);
6412 S_SET_SEGMENT (symbol
, seg
);
6418 as_bad (_(".REG must use a label"));
6420 as_bad (_(".EQU must use a label"));
6423 pa_undefine_label ();
6424 demand_empty_rest_of_line ();
6428 /* Mark the end of a function so that it's possible to compute
6429 the size of the function in elf_hppa_final_processing. */
6432 hppa_elf_mark_end_of_function (void)
6434 /* ELF does not have EXIT relocations. All we do is create a
6435 temporary symbol marking the end of the function. */
6438 if (last_call_info
== NULL
|| last_call_info
->start_symbol
== NULL
)
6440 /* We have already warned about a missing label,
6441 or other problems. */
6445 name
= xmalloc (strlen ("L$\001end_")
6446 + strlen (S_GET_NAME (last_call_info
->start_symbol
))
6452 strcpy (name
, "L$\001end_");
6453 strcat (name
, S_GET_NAME (last_call_info
->start_symbol
));
6455 /* If we have a .exit followed by a .procend, then the
6456 symbol will have already been defined. */
6457 symbolP
= symbol_find (name
);
6460 /* The symbol has already been defined! This can
6461 happen if we have a .exit followed by a .procend.
6463 This is *not* an error. All we want to do is free
6464 the memory we just allocated for the name and continue. */
6469 /* symbol value should be the offset of the
6470 last instruction of the function */
6471 symbolP
= symbol_new (name
, now_seg
, (valueT
) (frag_now_fix () - 4),
6474 gas_assert (symbolP
);
6475 S_CLEAR_EXTERNAL (symbolP
);
6476 symbol_table_insert (symbolP
);
6480 last_call_info
->end_symbol
= symbolP
;
6482 as_bad (_("Symbol '%s' could not be created."), name
);
6486 as_bad (_("No memory for symbol name."));
6490 /* Helper function. Does processing for the end of a function. This
6491 usually involves creating some relocations or building special
6492 symbols to mark the end of the function. */
6499 where
= frag_more (0);
6502 /* Mark the end of the function, stuff away the location of the frag
6503 for the end of the function, and finally call pa_build_unwind_subspace
6504 to add an entry in the unwind table. */
6505 hppa_elf_mark_end_of_function ();
6506 pa_build_unwind_subspace (last_call_info
);
6508 /* SOM defers building of unwind descriptors until the link phase.
6509 The assembler is responsible for creating an R_ENTRY relocation
6510 to mark the beginning of a region and hold the unwind bits, and
6511 for creating an R_EXIT relocation to mark the end of the region.
6513 FIXME. ELF should be using the same conventions! The problem
6514 is an unwind requires too much relocation space. Hmmm. Maybe
6515 if we split the unwind bits up between the relocations which
6516 denote the entry and exit points. */
6517 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6519 NULL
, 0, R_HPPA_EXIT
, e_fsel
, 0, 0,
6520 UNWIND_HIGH32 (&last_call_info
->ci_unwind
.descriptor
));
6524 /* Process a .EXIT pseudo-op. */
6527 pa_exit (int unused ATTRIBUTE_UNUSED
)
6530 /* We must have a valid space and subspace. */
6531 pa_check_current_space_and_subspace ();
6534 if (!within_procedure
)
6535 as_bad (_(".EXIT must appear within a procedure"));
6538 if (!callinfo_found
)
6539 as_bad (_("Missing .callinfo"));
6542 if (!within_entry_exit
)
6543 as_bad (_("No .ENTRY for this .EXIT"));
6546 within_entry_exit
= FALSE
;
6551 demand_empty_rest_of_line ();
6554 /* Helper function to process arguments to a .EXPORT pseudo-op. */
6557 pa_type_args (symbolS
*symbolP
, int is_export
)
6560 unsigned int temp
, arg_reloc
;
6561 pa_symbol_type type
= SYMBOL_TYPE_UNKNOWN
;
6562 asymbol
*bfdsym
= symbol_get_bfdsym (symbolP
);
6564 if (strncasecmp (input_line_pointer
, "absolute", 8) == 0)
6566 input_line_pointer
+= 8;
6567 bfdsym
->flags
&= ~BSF_FUNCTION
;
6568 S_SET_SEGMENT (symbolP
, bfd_abs_section_ptr
);
6569 type
= SYMBOL_TYPE_ABSOLUTE
;
6571 else if (strncasecmp (input_line_pointer
, "code", 4) == 0)
6573 input_line_pointer
+= 4;
6574 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
6575 instead one should be IMPORTing/EXPORTing ENTRY types.
6577 Complain if one tries to EXPORT a CODE type since that's never
6578 done. Both GCC and HP C still try to IMPORT CODE types, so
6579 silently fix them to be ENTRY types. */
6580 if (S_IS_FUNCTION (symbolP
))
6583 as_tsktsk (_("Using ENTRY rather than CODE in export directive for %s"),
6584 S_GET_NAME (symbolP
));
6586 bfdsym
->flags
|= BSF_FUNCTION
;
6587 type
= SYMBOL_TYPE_ENTRY
;
6591 bfdsym
->flags
&= ~BSF_FUNCTION
;
6592 type
= SYMBOL_TYPE_CODE
;
6595 else if (strncasecmp (input_line_pointer
, "data", 4) == 0)
6597 input_line_pointer
+= 4;
6598 bfdsym
->flags
&= ~BSF_FUNCTION
;
6599 bfdsym
->flags
|= BSF_OBJECT
;
6600 type
= SYMBOL_TYPE_DATA
;
6602 else if ((strncasecmp (input_line_pointer
, "entry", 5) == 0))
6604 input_line_pointer
+= 5;
6605 bfdsym
->flags
|= BSF_FUNCTION
;
6606 type
= SYMBOL_TYPE_ENTRY
;
6608 else if (strncasecmp (input_line_pointer
, "millicode", 9) == 0)
6610 input_line_pointer
+= 9;
6611 bfdsym
->flags
|= BSF_FUNCTION
;
6614 elf_symbol_type
*elfsym
= (elf_symbol_type
*) bfdsym
;
6615 elfsym
->internal_elf_sym
.st_info
=
6616 ELF_ST_INFO (ELF_ST_BIND (elfsym
->internal_elf_sym
.st_info
),
6620 type
= SYMBOL_TYPE_MILLICODE
;
6622 else if (strncasecmp (input_line_pointer
, "plabel", 6) == 0)
6624 input_line_pointer
+= 6;
6625 bfdsym
->flags
&= ~BSF_FUNCTION
;
6626 type
= SYMBOL_TYPE_PLABEL
;
6628 else if (strncasecmp (input_line_pointer
, "pri_prog", 8) == 0)
6630 input_line_pointer
+= 8;
6631 bfdsym
->flags
|= BSF_FUNCTION
;
6632 type
= SYMBOL_TYPE_PRI_PROG
;
6634 else if (strncasecmp (input_line_pointer
, "sec_prog", 8) == 0)
6636 input_line_pointer
+= 8;
6637 bfdsym
->flags
|= BSF_FUNCTION
;
6638 type
= SYMBOL_TYPE_SEC_PROG
;
6641 /* SOM requires much more information about symbol types
6642 than BFD understands. This is how we get this information
6643 to the SOM BFD backend. */
6644 #ifdef obj_set_symbol_type
6645 obj_set_symbol_type (bfdsym
, (int) type
);
6648 /* Now that the type of the exported symbol has been handled,
6649 handle any argument relocation information. */
6650 while (!is_end_of_statement ())
6652 if (*input_line_pointer
== ',')
6653 input_line_pointer
++;
6654 name
= input_line_pointer
;
6655 c
= get_symbol_end ();
6656 /* Argument sources. */
6657 if ((strncasecmp (name
, "argw", 4) == 0))
6659 p
= input_line_pointer
;
6661 input_line_pointer
++;
6662 temp
= atoi (name
+ 4);
6663 name
= input_line_pointer
;
6664 c
= get_symbol_end ();
6665 arg_reloc
= pa_align_arg_reloc (temp
, pa_build_arg_reloc (name
));
6666 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6667 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6669 *input_line_pointer
= c
;
6671 /* The return value. */
6672 else if ((strncasecmp (name
, "rtnval", 6)) == 0)
6674 p
= input_line_pointer
;
6676 input_line_pointer
++;
6677 name
= input_line_pointer
;
6678 c
= get_symbol_end ();
6679 arg_reloc
= pa_build_arg_reloc (name
);
6680 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6681 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6683 *input_line_pointer
= c
;
6685 /* Privilege level. */
6686 else if ((strncasecmp (name
, "priv_lev", 8)) == 0)
6688 p
= input_line_pointer
;
6690 input_line_pointer
++;
6691 temp
= atoi (input_line_pointer
);
6693 ((obj_symbol_type
*) bfdsym
)->tc_data
.ap
.hppa_priv_level
= temp
;
6695 c
= get_symbol_end ();
6696 *input_line_pointer
= c
;
6700 as_bad (_("Undefined .EXPORT/.IMPORT argument (ignored): %s"), name
);
6701 p
= input_line_pointer
;
6704 if (!is_end_of_statement ())
6705 input_line_pointer
++;
6709 /* Process a .EXPORT directive. This makes functions external
6710 and provides information such as argument relocation entries
6714 pa_export (int unused ATTRIBUTE_UNUSED
)
6719 name
= input_line_pointer
;
6720 c
= get_symbol_end ();
6721 /* Make sure the given symbol exists. */
6722 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6724 as_bad (_("Cannot define export symbol: %s\n"), name
);
6725 p
= input_line_pointer
;
6727 input_line_pointer
++;
6731 /* OK. Set the external bits and process argument relocations.
6732 For the HP, weak and global are not mutually exclusive.
6733 S_SET_EXTERNAL will not set BSF_GLOBAL if WEAK is set.
6734 Call S_SET_EXTERNAL to get the other processing. Manually
6735 set BSF_GLOBAL when we get back. */
6736 S_SET_EXTERNAL (symbol
);
6737 symbol_get_bfdsym (symbol
)->flags
|= BSF_GLOBAL
;
6738 p
= input_line_pointer
;
6740 if (!is_end_of_statement ())
6742 input_line_pointer
++;
6743 pa_type_args (symbol
, 1);
6747 demand_empty_rest_of_line ();
6750 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
6751 assembly file must either be defined in the assembly file, or
6752 explicitly IMPORTED from another. */
6755 pa_import (int unused ATTRIBUTE_UNUSED
)
6760 name
= input_line_pointer
;
6761 c
= get_symbol_end ();
6763 symbol
= symbol_find (name
);
6764 /* Ugh. We might be importing a symbol defined earlier in the file,
6765 in which case all the code below will really screw things up
6766 (set the wrong segment, symbol flags & type, etc). */
6767 if (symbol
== NULL
|| !S_IS_DEFINED (symbol
))
6769 symbol
= symbol_find_or_make (name
);
6770 p
= input_line_pointer
;
6773 if (!is_end_of_statement ())
6775 input_line_pointer
++;
6776 pa_type_args (symbol
, 0);
6780 /* Sigh. To be compatible with the HP assembler and to help
6781 poorly written assembly code, we assign a type based on
6782 the current segment. Note only BSF_FUNCTION really
6783 matters, we do not need to set the full SYMBOL_TYPE_* info. */
6784 if (now_seg
== text_section
)
6785 symbol_get_bfdsym (symbol
)->flags
|= BSF_FUNCTION
;
6787 /* If the section is undefined, then the symbol is undefined
6788 Since this is an import, leave the section undefined. */
6789 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6794 /* The symbol was already defined. Just eat everything up to
6795 the end of the current statement. */
6796 while (!is_end_of_statement ())
6797 input_line_pointer
++;
6800 demand_empty_rest_of_line ();
6803 /* Handle a .LABEL pseudo-op. */
6806 pa_label (int unused ATTRIBUTE_UNUSED
)
6810 name
= input_line_pointer
;
6811 c
= get_symbol_end ();
6813 if (strlen (name
) > 0)
6816 p
= input_line_pointer
;
6821 as_warn (_("Missing label name on .LABEL"));
6824 if (!is_end_of_statement ())
6826 as_warn (_("extra .LABEL arguments ignored."));
6827 ignore_rest_of_line ();
6829 demand_empty_rest_of_line ();
6832 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
6835 pa_leave (int unused ATTRIBUTE_UNUSED
)
6838 /* We must have a valid space and subspace. */
6839 pa_check_current_space_and_subspace ();
6842 as_bad (_("The .LEAVE pseudo-op is not supported"));
6843 demand_empty_rest_of_line ();
6846 /* Handle a .LEVEL pseudo-op. */
6849 pa_level (int unused ATTRIBUTE_UNUSED
)
6853 level
= input_line_pointer
;
6854 if (strncmp (level
, "1.0", 3) == 0)
6856 input_line_pointer
+= 3;
6857 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 10))
6858 as_warn (_("could not set architecture and machine"));
6860 else if (strncmp (level
, "1.1", 3) == 0)
6862 input_line_pointer
+= 3;
6863 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 11))
6864 as_warn (_("could not set architecture and machine"));
6866 else if (strncmp (level
, "2.0w", 4) == 0)
6868 input_line_pointer
+= 4;
6869 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 25))
6870 as_warn (_("could not set architecture and machine"));
6872 else if (strncmp (level
, "2.0", 3) == 0)
6874 input_line_pointer
+= 3;
6875 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 20))
6876 as_warn (_("could not set architecture and machine"));
6880 as_bad (_("Unrecognized .LEVEL argument\n"));
6881 ignore_rest_of_line ();
6883 demand_empty_rest_of_line ();
6886 /* Handle a .ORIGIN pseudo-op. */
6889 pa_origin (int unused ATTRIBUTE_UNUSED
)
6892 /* We must have a valid space and subspace. */
6893 pa_check_current_space_and_subspace ();
6897 pa_undefine_label ();
6900 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
6901 is for static functions. FIXME. Should share more code with .EXPORT. */
6904 pa_param (int unused ATTRIBUTE_UNUSED
)
6909 name
= input_line_pointer
;
6910 c
= get_symbol_end ();
6912 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6914 as_bad (_("Cannot define static symbol: %s\n"), name
);
6915 p
= input_line_pointer
;
6917 input_line_pointer
++;
6921 S_CLEAR_EXTERNAL (symbol
);
6922 p
= input_line_pointer
;
6924 if (!is_end_of_statement ())
6926 input_line_pointer
++;
6927 pa_type_args (symbol
, 0);
6931 demand_empty_rest_of_line ();
6934 /* Handle a .PROC pseudo-op. It is used to mark the beginning
6935 of a procedure from a syntactical point of view. */
6938 pa_proc (int unused ATTRIBUTE_UNUSED
)
6940 struct call_info
*call_info
;
6943 /* We must have a valid space and subspace. */
6944 pa_check_current_space_and_subspace ();
6947 if (within_procedure
)
6948 as_fatal (_("Nested procedures"));
6950 /* Reset global variables for new procedure. */
6951 callinfo_found
= FALSE
;
6952 within_procedure
= TRUE
;
6954 /* Create another call_info structure. */
6955 call_info
= xmalloc (sizeof (struct call_info
));
6958 as_fatal (_("Cannot allocate unwind descriptor\n"));
6960 memset (call_info
, 0, sizeof (struct call_info
));
6962 call_info
->ci_next
= NULL
;
6964 if (call_info_root
== NULL
)
6966 call_info_root
= call_info
;
6967 last_call_info
= call_info
;
6971 last_call_info
->ci_next
= call_info
;
6972 last_call_info
= call_info
;
6975 /* set up defaults on call_info structure */
6977 call_info
->ci_unwind
.descriptor
.cannot_unwind
= 0;
6978 call_info
->ci_unwind
.descriptor
.region_desc
= 1;
6979 call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 0;
6981 /* If we got a .PROC pseudo-op, we know that the function is defined
6982 locally. Make sure it gets into the symbol table. */
6984 label_symbol_struct
*label_symbol
= pa_get_label ();
6988 if (label_symbol
->lss_label
)
6990 last_call_info
->start_symbol
= label_symbol
->lss_label
;
6991 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
|= BSF_FUNCTION
;
6994 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
6997 last_call_info
->start_symbol
= NULL
;
7000 demand_empty_rest_of_line ();
7003 /* Process the syntactical end of a procedure. Make sure all the
7004 appropriate pseudo-ops were found within the procedure. */
7007 pa_procend (int unused ATTRIBUTE_UNUSED
)
7010 /* We must have a valid space and subspace. */
7011 pa_check_current_space_and_subspace ();
7014 /* If we are within a procedure definition, make sure we've
7015 defined a label for the procedure; handle case where the
7016 label was defined after the .PROC directive.
7018 Note there's not need to diddle with the segment or fragment
7019 for the label symbol in this case. We have already switched
7020 into the new $CODE$ subspace at this point. */
7021 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
7023 label_symbol_struct
*label_symbol
= pa_get_label ();
7027 if (label_symbol
->lss_label
)
7029 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7030 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
7033 /* Also handle allocation of a fixup to hold the unwind
7034 information when the label appears after the proc/procend. */
7035 if (within_entry_exit
)
7040 where
= frag_more (0);
7041 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
7042 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
7043 NULL
, (offsetT
) 0, NULL
,
7044 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
7049 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7052 as_bad (_("Missing function name for .PROC"));
7055 if (!within_procedure
)
7056 as_bad (_("misplaced .procend"));
7058 if (!callinfo_found
)
7059 as_bad (_("Missing .callinfo for this procedure"));
7061 if (within_entry_exit
)
7062 as_bad (_("Missing .EXIT for a .ENTRY"));
7065 /* ELF needs to mark the end of each function so that it can compute
7066 the size of the function (apparently its needed in the symbol table). */
7067 hppa_elf_mark_end_of_function ();
7070 within_procedure
= FALSE
;
7071 demand_empty_rest_of_line ();
7072 pa_undefine_label ();
7076 /* If VALUE is an exact power of two between zero and 2^31, then
7077 return log2 (VALUE). Else return -1. */
7080 exact_log2 (int value
)
7084 while ((1 << shift
) != value
&& shift
< 32)
7093 /* Check to make sure we have a valid space and subspace. */
7096 pa_check_current_space_and_subspace (void)
7098 if (current_space
== NULL
)
7099 as_fatal (_("Not in a space.\n"));
7101 if (current_subspace
== NULL
)
7102 as_fatal (_("Not in a subspace.\n"));
7105 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
7106 then create a new space entry to hold the information specified
7107 by the parameters to the .SPACE directive. */
7109 static sd_chain_struct
*
7110 pa_parse_space_stmt (char *space_name
, int create_flag
)
7112 char *name
, *ptemp
, c
;
7113 char loadable
, defined
, private, sort
;
7115 asection
*seg
= NULL
;
7116 sd_chain_struct
*space
;
7118 /* Load default values. */
7124 if (strcmp (space_name
, "$TEXT$") == 0)
7126 seg
= pa_def_spaces
[0].segment
;
7127 defined
= pa_def_spaces
[0].defined
;
7128 private = pa_def_spaces
[0].private;
7129 sort
= pa_def_spaces
[0].sort
;
7130 spnum
= pa_def_spaces
[0].spnum
;
7132 else if (strcmp (space_name
, "$PRIVATE$") == 0)
7134 seg
= pa_def_spaces
[1].segment
;
7135 defined
= pa_def_spaces
[1].defined
;
7136 private = pa_def_spaces
[1].private;
7137 sort
= pa_def_spaces
[1].sort
;
7138 spnum
= pa_def_spaces
[1].spnum
;
7141 if (!is_end_of_statement ())
7143 print_errors
= FALSE
;
7144 ptemp
= input_line_pointer
+ 1;
7145 /* First see if the space was specified as a number rather than
7146 as a name. According to the PA assembly manual the rest of
7147 the line should be ignored. */
7149 pa_parse_number (&ptemp
, 0);
7153 input_line_pointer
= ptemp
;
7157 while (!is_end_of_statement ())
7159 input_line_pointer
++;
7160 name
= input_line_pointer
;
7161 c
= get_symbol_end ();
7162 if ((strncasecmp (name
, "spnum", 5) == 0))
7164 *input_line_pointer
= c
;
7165 input_line_pointer
++;
7166 spnum
= get_absolute_expression ();
7168 else if ((strncasecmp (name
, "sort", 4) == 0))
7170 *input_line_pointer
= c
;
7171 input_line_pointer
++;
7172 sort
= get_absolute_expression ();
7174 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7176 *input_line_pointer
= c
;
7179 else if ((strncasecmp (name
, "notdefined", 10) == 0))
7181 *input_line_pointer
= c
;
7184 else if ((strncasecmp (name
, "private", 7) == 0))
7186 *input_line_pointer
= c
;
7191 as_bad (_("Invalid .SPACE argument"));
7192 *input_line_pointer
= c
;
7193 if (!is_end_of_statement ())
7194 input_line_pointer
++;
7198 print_errors
= TRUE
;
7201 if (create_flag
&& seg
== NULL
)
7202 seg
= subseg_new (space_name
, 0);
7204 /* If create_flag is nonzero, then create the new space with
7205 the attributes computed above. Else set the values in
7206 an already existing space -- this can only happen for
7207 the first occurrence of a built-in space. */
7209 space
= create_new_space (space_name
, spnum
, loadable
, defined
,
7210 private, sort
, seg
, 1);
7213 space
= is_defined_space (space_name
);
7214 SPACE_SPNUM (space
) = spnum
;
7215 SPACE_DEFINED (space
) = defined
& 1;
7216 SPACE_USER_DEFINED (space
) = 1;
7219 #ifdef obj_set_section_attributes
7220 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7226 /* Handle a .SPACE pseudo-op; this switches the current space to the
7227 given space, creating the new space if necessary. */
7230 pa_space (int unused ATTRIBUTE_UNUSED
)
7232 char *name
, c
, *space_name
, *save_s
;
7233 sd_chain_struct
*sd_chain
;
7235 if (within_procedure
)
7237 as_bad (_("Can\'t change spaces within a procedure definition. Ignored"));
7238 ignore_rest_of_line ();
7242 /* Check for some of the predefined spaces. FIXME: most of the code
7243 below is repeated several times, can we extract the common parts
7244 and place them into a subroutine or something similar? */
7245 /* FIXME Is this (and the next IF stmt) really right?
7246 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
7247 if (strncmp (input_line_pointer
, "$TEXT$", 6) == 0)
7249 input_line_pointer
+= 6;
7250 sd_chain
= is_defined_space ("$TEXT$");
7251 if (sd_chain
== NULL
)
7252 sd_chain
= pa_parse_space_stmt ("$TEXT$", 1);
7253 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7254 sd_chain
= pa_parse_space_stmt ("$TEXT$", 0);
7256 current_space
= sd_chain
;
7257 subseg_set (text_section
, sd_chain
->sd_last_subseg
);
7259 = pa_subsegment_to_subspace (text_section
,
7260 sd_chain
->sd_last_subseg
);
7261 demand_empty_rest_of_line ();
7264 if (strncmp (input_line_pointer
, "$PRIVATE$", 9) == 0)
7266 input_line_pointer
+= 9;
7267 sd_chain
= is_defined_space ("$PRIVATE$");
7268 if (sd_chain
== NULL
)
7269 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 1);
7270 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7271 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 0);
7273 current_space
= sd_chain
;
7274 subseg_set (data_section
, sd_chain
->sd_last_subseg
);
7276 = pa_subsegment_to_subspace (data_section
,
7277 sd_chain
->sd_last_subseg
);
7278 demand_empty_rest_of_line ();
7281 if (!strncasecmp (input_line_pointer
,
7282 GDB_DEBUG_SPACE_NAME
,
7283 strlen (GDB_DEBUG_SPACE_NAME
)))
7285 input_line_pointer
+= strlen (GDB_DEBUG_SPACE_NAME
);
7286 sd_chain
= is_defined_space (GDB_DEBUG_SPACE_NAME
);
7287 if (sd_chain
== NULL
)
7288 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 1);
7289 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7290 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 0);
7292 current_space
= sd_chain
;
7295 asection
*gdb_section
7296 = bfd_make_section_old_way (stdoutput
, GDB_DEBUG_SPACE_NAME
);
7298 subseg_set (gdb_section
, sd_chain
->sd_last_subseg
);
7300 = pa_subsegment_to_subspace (gdb_section
,
7301 sd_chain
->sd_last_subseg
);
7303 demand_empty_rest_of_line ();
7307 /* It could be a space specified by number. */
7309 save_s
= input_line_pointer
;
7311 pa_parse_number (&input_line_pointer
, 0);
7314 if ((sd_chain
= pa_find_space_by_number (pa_number
)))
7316 current_space
= sd_chain
;
7318 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7320 = pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7321 sd_chain
->sd_last_subseg
);
7322 demand_empty_rest_of_line ();
7327 /* Not a number, attempt to create a new space. */
7329 input_line_pointer
= save_s
;
7330 name
= input_line_pointer
;
7331 c
= get_symbol_end ();
7332 space_name
= xmalloc (strlen (name
) + 1);
7333 strcpy (space_name
, name
);
7334 *input_line_pointer
= c
;
7336 sd_chain
= pa_parse_space_stmt (space_name
, 1);
7337 current_space
= sd_chain
;
7339 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7340 current_subspace
= pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7341 sd_chain
->sd_last_subseg
);
7342 demand_empty_rest_of_line ();
7346 /* Switch to a new space. (I think). FIXME. */
7349 pa_spnum (int unused ATTRIBUTE_UNUSED
)
7354 sd_chain_struct
*space
;
7356 name
= input_line_pointer
;
7357 c
= get_symbol_end ();
7358 space
= is_defined_space (name
);
7362 md_number_to_chars (p
, SPACE_SPNUM (space
), 4);
7365 as_warn (_("Undefined space: '%s' Assuming space number = 0."), name
);
7367 *input_line_pointer
= c
;
7368 demand_empty_rest_of_line ();
7371 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
7372 given subspace, creating the new subspace if necessary.
7374 FIXME. Should mirror pa_space more closely, in particular how
7375 they're broken up into subroutines. */
7378 pa_subspace (int create_new
)
7380 char *name
, *ss_name
, c
;
7381 char loadable
, code_only
, comdat
, common
, dup_common
, zero
, sort
;
7382 int i
, access_ctr
, space_index
, alignment
, quadrant
, applicable
, flags
;
7383 sd_chain_struct
*space
;
7384 ssd_chain_struct
*ssd
;
7387 if (current_space
== NULL
)
7388 as_fatal (_("Must be in a space before changing or declaring subspaces.\n"));
7390 if (within_procedure
)
7392 as_bad (_("Can\'t change subspaces within a procedure definition. Ignored"));
7393 ignore_rest_of_line ();
7397 name
= input_line_pointer
;
7398 c
= get_symbol_end ();
7399 ss_name
= xmalloc (strlen (name
) + 1);
7400 strcpy (ss_name
, name
);
7401 *input_line_pointer
= c
;
7403 /* Load default values. */
7416 space
= current_space
;
7420 ssd
= is_defined_subspace (ss_name
);
7421 /* Allow user to override the builtin attributes of subspaces. But
7422 only allow the attributes to be changed once! */
7423 if (ssd
&& SUBSPACE_DEFINED (ssd
))
7425 subseg_set (ssd
->ssd_seg
, ssd
->ssd_subseg
);
7426 current_subspace
= ssd
;
7427 if (!is_end_of_statement ())
7428 as_warn (_("Parameters of an existing subspace can\'t be modified"));
7429 demand_empty_rest_of_line ();
7434 /* A new subspace. Load default values if it matches one of
7435 the builtin subspaces. */
7437 while (pa_def_subspaces
[i
].name
)
7439 if (strcasecmp (pa_def_subspaces
[i
].name
, ss_name
) == 0)
7441 loadable
= pa_def_subspaces
[i
].loadable
;
7442 comdat
= pa_def_subspaces
[i
].comdat
;
7443 common
= pa_def_subspaces
[i
].common
;
7444 dup_common
= pa_def_subspaces
[i
].dup_common
;
7445 code_only
= pa_def_subspaces
[i
].code_only
;
7446 zero
= pa_def_subspaces
[i
].zero
;
7447 space_index
= pa_def_subspaces
[i
].space_index
;
7448 alignment
= pa_def_subspaces
[i
].alignment
;
7449 quadrant
= pa_def_subspaces
[i
].quadrant
;
7450 access_ctr
= pa_def_subspaces
[i
].access
;
7451 sort
= pa_def_subspaces
[i
].sort
;
7458 /* We should be working with a new subspace now. Fill in
7459 any information as specified by the user. */
7460 if (!is_end_of_statement ())
7462 input_line_pointer
++;
7463 while (!is_end_of_statement ())
7465 name
= input_line_pointer
;
7466 c
= get_symbol_end ();
7467 if ((strncasecmp (name
, "quad", 4) == 0))
7469 *input_line_pointer
= c
;
7470 input_line_pointer
++;
7471 quadrant
= get_absolute_expression ();
7473 else if ((strncasecmp (name
, "align", 5) == 0))
7475 *input_line_pointer
= c
;
7476 input_line_pointer
++;
7477 alignment
= get_absolute_expression ();
7478 if (exact_log2 (alignment
) == -1)
7480 as_bad (_("Alignment must be a power of 2"));
7484 else if ((strncasecmp (name
, "access", 6) == 0))
7486 *input_line_pointer
= c
;
7487 input_line_pointer
++;
7488 access_ctr
= get_absolute_expression ();
7490 else if ((strncasecmp (name
, "sort", 4) == 0))
7492 *input_line_pointer
= c
;
7493 input_line_pointer
++;
7494 sort
= get_absolute_expression ();
7496 else if ((strncasecmp (name
, "code_only", 9) == 0))
7498 *input_line_pointer
= c
;
7501 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7503 *input_line_pointer
= c
;
7506 else if ((strncasecmp (name
, "comdat", 6) == 0))
7508 *input_line_pointer
= c
;
7511 else if ((strncasecmp (name
, "common", 6) == 0))
7513 *input_line_pointer
= c
;
7516 else if ((strncasecmp (name
, "dup_comm", 8) == 0))
7518 *input_line_pointer
= c
;
7521 else if ((strncasecmp (name
, "zero", 4) == 0))
7523 *input_line_pointer
= c
;
7526 else if ((strncasecmp (name
, "first", 5) == 0))
7527 as_bad (_("FIRST not supported as a .SUBSPACE argument"));
7529 as_bad (_("Invalid .SUBSPACE argument"));
7530 if (!is_end_of_statement ())
7531 input_line_pointer
++;
7535 /* Compute a reasonable set of BFD flags based on the information
7536 in the .subspace directive. */
7537 applicable
= bfd_applicable_section_flags (stdoutput
);
7540 flags
|= (SEC_ALLOC
| SEC_LOAD
);
7544 /* These flags are used to implement various flavors of initialized
7545 common. The SOM linker discards duplicate subspaces when they
7546 have the same "key" symbol name. This support is more like
7547 GNU linkonce than BFD common. Further, pc-relative relocations
7548 are converted to section relative relocations in BFD common
7549 sections. This complicates the handling of relocations in
7550 common sections containing text and isn't currently supported
7551 correctly in the SOM BFD backend. */
7552 if (comdat
|| common
|| dup_common
)
7553 flags
|= SEC_LINK_ONCE
;
7555 flags
|= SEC_RELOC
| SEC_HAS_CONTENTS
;
7557 /* This is a zero-filled subspace (eg BSS). */
7559 flags
&= ~(SEC_LOAD
| SEC_HAS_CONTENTS
);
7561 applicable
&= flags
;
7563 /* If this is an existing subspace, then we want to use the
7564 segment already associated with the subspace.
7566 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
7567 lots of sections. It might be a problem in the PA ELF
7568 code, I do not know yet. For now avoid creating anything
7569 but the "standard" sections for ELF. */
7571 section
= subseg_force_new (ss_name
, 0);
7573 section
= ssd
->ssd_seg
;
7575 section
= subseg_new (ss_name
, 0);
7578 seg_info (section
)->bss
= 1;
7580 /* Now set the flags. */
7581 bfd_set_section_flags (stdoutput
, section
, applicable
);
7583 /* Record any alignment request for this section. */
7584 record_alignment (section
, exact_log2 (alignment
));
7586 /* Set the starting offset for this section. */
7587 bfd_set_section_vma (stdoutput
, section
,
7588 pa_subspace_start (space
, quadrant
));
7590 /* Now that all the flags are set, update an existing subspace,
7591 or create a new one. */
7594 current_subspace
= update_subspace (space
, ss_name
, loadable
,
7595 code_only
, comdat
, common
,
7596 dup_common
, sort
, zero
, access_ctr
,
7597 space_index
, alignment
, quadrant
,
7600 current_subspace
= create_new_subspace (space
, ss_name
, loadable
,
7601 code_only
, comdat
, common
,
7602 dup_common
, zero
, sort
,
7603 access_ctr
, space_index
,
7604 alignment
, quadrant
, section
);
7606 demand_empty_rest_of_line ();
7607 current_subspace
->ssd_seg
= section
;
7608 subseg_set (current_subspace
->ssd_seg
, current_subspace
->ssd_subseg
);
7610 SUBSPACE_DEFINED (current_subspace
) = 1;
7613 /* Create default space and subspace dictionaries. */
7616 pa_spaces_begin (void)
7620 space_dict_root
= NULL
;
7621 space_dict_last
= NULL
;
7624 while (pa_def_spaces
[i
].name
)
7628 /* Pick the right name to use for the new section. */
7629 name
= pa_def_spaces
[i
].name
;
7631 pa_def_spaces
[i
].segment
= subseg_new (name
, 0);
7632 create_new_space (pa_def_spaces
[i
].name
, pa_def_spaces
[i
].spnum
,
7633 pa_def_spaces
[i
].loadable
, pa_def_spaces
[i
].defined
,
7634 pa_def_spaces
[i
].private, pa_def_spaces
[i
].sort
,
7635 pa_def_spaces
[i
].segment
, 0);
7640 while (pa_def_subspaces
[i
].name
)
7643 int applicable
, subsegment
;
7644 asection
*segment
= NULL
;
7645 sd_chain_struct
*space
;
7647 /* Pick the right name for the new section and pick the right
7648 subsegment number. */
7649 name
= pa_def_subspaces
[i
].name
;
7652 /* Create the new section. */
7653 segment
= subseg_new (name
, subsegment
);
7655 /* For SOM we want to replace the standard .text, .data, and .bss
7656 sections with our own. We also want to set BFD flags for
7657 all the built-in subspaces. */
7658 if (!strcmp (pa_def_subspaces
[i
].name
, "$CODE$"))
7660 text_section
= segment
;
7661 applicable
= bfd_applicable_section_flags (stdoutput
);
7662 bfd_set_section_flags (stdoutput
, segment
,
7663 applicable
& (SEC_ALLOC
| SEC_LOAD
7664 | SEC_RELOC
| SEC_CODE
7666 | SEC_HAS_CONTENTS
));
7668 else if (!strcmp (pa_def_subspaces
[i
].name
, "$DATA$"))
7670 data_section
= segment
;
7671 applicable
= bfd_applicable_section_flags (stdoutput
);
7672 bfd_set_section_flags (stdoutput
, segment
,
7673 applicable
& (SEC_ALLOC
| SEC_LOAD
7675 | SEC_HAS_CONTENTS
));
7678 else if (!strcmp (pa_def_subspaces
[i
].name
, "$BSS$"))
7680 bss_section
= segment
;
7681 applicable
= bfd_applicable_section_flags (stdoutput
);
7682 bfd_set_section_flags (stdoutput
, segment
,
7683 applicable
& SEC_ALLOC
);
7685 else if (!strcmp (pa_def_subspaces
[i
].name
, "$LIT$"))
7687 applicable
= bfd_applicable_section_flags (stdoutput
);
7688 bfd_set_section_flags (stdoutput
, segment
,
7689 applicable
& (SEC_ALLOC
| SEC_LOAD
7692 | SEC_HAS_CONTENTS
));
7694 else if (!strcmp (pa_def_subspaces
[i
].name
, "$MILLICODE$"))
7696 applicable
= bfd_applicable_section_flags (stdoutput
);
7697 bfd_set_section_flags (stdoutput
, segment
,
7698 applicable
& (SEC_ALLOC
| SEC_LOAD
7701 | SEC_HAS_CONTENTS
));
7703 else if (!strcmp (pa_def_subspaces
[i
].name
, "$UNWIND$"))
7705 applicable
= bfd_applicable_section_flags (stdoutput
);
7706 bfd_set_section_flags (stdoutput
, segment
,
7707 applicable
& (SEC_ALLOC
| SEC_LOAD
7710 | SEC_HAS_CONTENTS
));
7713 /* Find the space associated with this subspace. */
7714 space
= pa_segment_to_space (pa_def_spaces
[pa_def_subspaces
[i
].
7715 def_space_index
].segment
);
7718 as_fatal (_("Internal error: Unable to find containing space for %s."),
7719 pa_def_subspaces
[i
].name
);
7722 create_new_subspace (space
, name
,
7723 pa_def_subspaces
[i
].loadable
,
7724 pa_def_subspaces
[i
].code_only
,
7725 pa_def_subspaces
[i
].comdat
,
7726 pa_def_subspaces
[i
].common
,
7727 pa_def_subspaces
[i
].dup_common
,
7728 pa_def_subspaces
[i
].zero
,
7729 pa_def_subspaces
[i
].sort
,
7730 pa_def_subspaces
[i
].access
,
7731 pa_def_subspaces
[i
].space_index
,
7732 pa_def_subspaces
[i
].alignment
,
7733 pa_def_subspaces
[i
].quadrant
,
7739 /* Create a new space NAME, with the appropriate flags as defined
7740 by the given parameters. */
7742 static sd_chain_struct
*
7743 create_new_space (char *name
,
7745 int loadable ATTRIBUTE_UNUSED
,
7752 sd_chain_struct
*chain_entry
;
7754 chain_entry
= xmalloc (sizeof (sd_chain_struct
));
7756 as_fatal (_("Out of memory: could not allocate new space chain entry: %s\n"),
7759 SPACE_NAME (chain_entry
) = xmalloc (strlen (name
) + 1);
7760 strcpy (SPACE_NAME (chain_entry
), name
);
7761 SPACE_DEFINED (chain_entry
) = defined
;
7762 SPACE_USER_DEFINED (chain_entry
) = user_defined
;
7763 SPACE_SPNUM (chain_entry
) = spnum
;
7765 chain_entry
->sd_seg
= seg
;
7766 chain_entry
->sd_last_subseg
= -1;
7767 chain_entry
->sd_subspaces
= NULL
;
7768 chain_entry
->sd_next
= NULL
;
7770 /* Find spot for the new space based on its sort key. */
7771 if (!space_dict_last
)
7772 space_dict_last
= chain_entry
;
7774 if (space_dict_root
== NULL
)
7775 space_dict_root
= chain_entry
;
7778 sd_chain_struct
*chain_pointer
;
7779 sd_chain_struct
*prev_chain_pointer
;
7781 chain_pointer
= space_dict_root
;
7782 prev_chain_pointer
= NULL
;
7784 while (chain_pointer
)
7786 prev_chain_pointer
= chain_pointer
;
7787 chain_pointer
= chain_pointer
->sd_next
;
7790 /* At this point we've found the correct place to add the new
7791 entry. So add it and update the linked lists as appropriate. */
7792 if (prev_chain_pointer
)
7794 chain_entry
->sd_next
= chain_pointer
;
7795 prev_chain_pointer
->sd_next
= chain_entry
;
7799 space_dict_root
= chain_entry
;
7800 chain_entry
->sd_next
= chain_pointer
;
7803 if (chain_entry
->sd_next
== NULL
)
7804 space_dict_last
= chain_entry
;
7807 /* This is here to catch predefined spaces which do not get
7808 modified by the user's input. Another call is found at
7809 the bottom of pa_parse_space_stmt to handle cases where
7810 the user modifies a predefined space. */
7811 #ifdef obj_set_section_attributes
7812 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7818 /* Create a new subspace NAME, with the appropriate flags as defined
7819 by the given parameters.
7821 Add the new subspace to the subspace dictionary chain in numerical
7822 order as defined by the SORT entries. */
7824 static ssd_chain_struct
*
7825 create_new_subspace (sd_chain_struct
*space
,
7827 int loadable ATTRIBUTE_UNUSED
,
7828 int code_only ATTRIBUTE_UNUSED
,
7832 int is_zero ATTRIBUTE_UNUSED
,
7835 int space_index ATTRIBUTE_UNUSED
,
7836 int alignment ATTRIBUTE_UNUSED
,
7840 ssd_chain_struct
*chain_entry
;
7842 chain_entry
= xmalloc (sizeof (ssd_chain_struct
));
7844 as_fatal (_("Out of memory: could not allocate new subspace chain entry: %s\n"), name
);
7846 SUBSPACE_NAME (chain_entry
) = xmalloc (strlen (name
) + 1);
7847 strcpy (SUBSPACE_NAME (chain_entry
), name
);
7849 /* Initialize subspace_defined. When we hit a .subspace directive
7850 we'll set it to 1 which "locks-in" the subspace attributes. */
7851 SUBSPACE_DEFINED (chain_entry
) = 0;
7853 chain_entry
->ssd_subseg
= 0;
7854 chain_entry
->ssd_seg
= seg
;
7855 chain_entry
->ssd_next
= NULL
;
7857 /* Find spot for the new subspace based on its sort key. */
7858 if (space
->sd_subspaces
== NULL
)
7859 space
->sd_subspaces
= chain_entry
;
7862 ssd_chain_struct
*chain_pointer
;
7863 ssd_chain_struct
*prev_chain_pointer
;
7865 chain_pointer
= space
->sd_subspaces
;
7866 prev_chain_pointer
= NULL
;
7868 while (chain_pointer
)
7870 prev_chain_pointer
= chain_pointer
;
7871 chain_pointer
= chain_pointer
->ssd_next
;
7874 /* Now we have somewhere to put the new entry. Insert it and update
7876 if (prev_chain_pointer
)
7878 chain_entry
->ssd_next
= chain_pointer
;
7879 prev_chain_pointer
->ssd_next
= chain_entry
;
7883 space
->sd_subspaces
= chain_entry
;
7884 chain_entry
->ssd_next
= chain_pointer
;
7888 #ifdef obj_set_subsection_attributes
7889 obj_set_subsection_attributes (seg
, space
->sd_seg
, access_ctr
, sort
,
7890 quadrant
, comdat
, common
, dup_common
);
7896 /* Update the information for the given subspace based upon the
7897 various arguments. Return the modified subspace chain entry. */
7899 static ssd_chain_struct
*
7900 update_subspace (sd_chain_struct
*space
,
7902 int loadable ATTRIBUTE_UNUSED
,
7903 int code_only ATTRIBUTE_UNUSED
,
7908 int zero ATTRIBUTE_UNUSED
,
7910 int space_index ATTRIBUTE_UNUSED
,
7911 int alignment ATTRIBUTE_UNUSED
,
7915 ssd_chain_struct
*chain_entry
;
7917 chain_entry
= is_defined_subspace (name
);
7919 #ifdef obj_set_subsection_attributes
7920 obj_set_subsection_attributes (section
, space
->sd_seg
, access_ctr
, sort
,
7921 quadrant
, comdat
, common
, dup_common
);
7927 /* Return the space chain entry for the space with the name NAME or
7928 NULL if no such space exists. */
7930 static sd_chain_struct
*
7931 is_defined_space (char *name
)
7933 sd_chain_struct
*chain_pointer
;
7935 for (chain_pointer
= space_dict_root
;
7937 chain_pointer
= chain_pointer
->sd_next
)
7938 if (strcmp (SPACE_NAME (chain_pointer
), name
) == 0)
7939 return chain_pointer
;
7941 /* No mapping from segment to space was found. Return NULL. */
7945 /* Find and return the space associated with the given seg. If no mapping
7946 from the given seg to a space is found, then return NULL.
7948 Unlike subspaces, the number of spaces is not expected to grow much,
7949 so a linear exhaustive search is OK here. */
7951 static sd_chain_struct
*
7952 pa_segment_to_space (asection
*seg
)
7954 sd_chain_struct
*space_chain
;
7956 /* Walk through each space looking for the correct mapping. */
7957 for (space_chain
= space_dict_root
;
7959 space_chain
= space_chain
->sd_next
)
7960 if (space_chain
->sd_seg
== seg
)
7963 /* Mapping was not found. Return NULL. */
7967 /* Return the first space chain entry for the subspace with the name
7968 NAME or NULL if no such subspace exists.
7970 When there are multiple subspaces with the same name, switching to
7971 the first (i.e., default) subspace is preferable in most situations.
7972 For example, it wouldn't be desirable to merge COMDAT data with non
7975 Uses a linear search through all the spaces and subspaces, this may
7976 not be appropriate if we ever being placing each function in its
7979 static ssd_chain_struct
*
7980 is_defined_subspace (char *name
)
7982 sd_chain_struct
*space_chain
;
7983 ssd_chain_struct
*subspace_chain
;
7985 /* Walk through each space. */
7986 for (space_chain
= space_dict_root
;
7988 space_chain
= space_chain
->sd_next
)
7990 /* Walk through each subspace looking for a name which matches. */
7991 for (subspace_chain
= space_chain
->sd_subspaces
;
7993 subspace_chain
= subspace_chain
->ssd_next
)
7994 if (strcmp (SUBSPACE_NAME (subspace_chain
), name
) == 0)
7995 return subspace_chain
;
7998 /* Subspace wasn't found. Return NULL. */
8002 /* Find and return the subspace associated with the given seg. If no
8003 mapping from the given seg to a subspace is found, then return NULL.
8005 If we ever put each procedure/function within its own subspace
8006 (to make life easier on the compiler and linker), then this will have
8007 to become more efficient. */
8009 static ssd_chain_struct
*
8010 pa_subsegment_to_subspace (asection
*seg
, subsegT subseg
)
8012 sd_chain_struct
*space_chain
;
8013 ssd_chain_struct
*subspace_chain
;
8015 /* Walk through each space. */
8016 for (space_chain
= space_dict_root
;
8018 space_chain
= space_chain
->sd_next
)
8020 if (space_chain
->sd_seg
== seg
)
8022 /* Walk through each subspace within each space looking for
8023 the correct mapping. */
8024 for (subspace_chain
= space_chain
->sd_subspaces
;
8026 subspace_chain
= subspace_chain
->ssd_next
)
8027 if (subspace_chain
->ssd_subseg
== (int) subseg
)
8028 return subspace_chain
;
8032 /* No mapping from subsegment to subspace found. Return NULL. */
8036 /* Given a number, try and find a space with the name number.
8038 Return a pointer to a space dictionary chain entry for the space
8039 that was found or NULL on failure. */
8041 static sd_chain_struct
*
8042 pa_find_space_by_number (int number
)
8044 sd_chain_struct
*space_chain
;
8046 for (space_chain
= space_dict_root
;
8048 space_chain
= space_chain
->sd_next
)
8050 if (SPACE_SPNUM (space_chain
) == (unsigned int) number
)
8054 /* No appropriate space found. Return NULL. */
8058 /* Return the starting address for the given subspace. If the starting
8059 address is unknown then return zero. */
8062 pa_subspace_start (sd_chain_struct
*space
, int quadrant
)
8064 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
8065 is not correct for the PA OSF1 port. */
8066 if ((strcmp (SPACE_NAME (space
), "$PRIVATE$") == 0) && quadrant
== 1)
8068 else if (space
->sd_seg
== data_section
&& quadrant
== 1)
8076 /* Helper function for pa_stringer. Used to find the end of
8080 pa_stringer_aux (char *s
)
8082 unsigned int c
= *s
& CHAR_MASK
;
8095 /* Handle a .STRING type pseudo-op. */
8098 pa_stringer (int append_zero
)
8100 char *s
, num_buf
[4];
8104 /* Preprocess the string to handle PA-specific escape sequences.
8105 For example, \xDD where DD is a hexadecimal number should be
8106 changed to \OOO where OOO is an octal number. */
8109 /* We must have a valid space and subspace. */
8110 pa_check_current_space_and_subspace ();
8113 /* Skip the opening quote. */
8114 s
= input_line_pointer
+ 1;
8116 while (is_a_char (c
= pa_stringer_aux (s
++)))
8123 /* Handle \x<num>. */
8126 unsigned int number
;
8131 /* Get past the 'x'. */
8133 for (num_digit
= 0, number
= 0, dg
= *s
;
8135 && (ISDIGIT (dg
) || (dg
>= 'a' && dg
<= 'f')
8136 || (dg
>= 'A' && dg
<= 'F'));
8140 number
= number
* 16 + dg
- '0';
8141 else if (dg
>= 'a' && dg
<= 'f')
8142 number
= number
* 16 + dg
- 'a' + 10;
8144 number
= number
* 16 + dg
- 'A' + 10;
8154 sprintf (num_buf
, "%02o", number
);
8157 sprintf (num_buf
, "%03o", number
);
8160 for (i
= 0; i
<= num_digit
; i
++)
8161 s_start
[i
] = num_buf
[i
];
8165 /* This might be a "\"", skip over the escaped char. */
8172 stringer (8 + append_zero
);
8173 pa_undefine_label ();
8176 /* Handle a .VERSION pseudo-op. */
8179 pa_version (int unused ATTRIBUTE_UNUSED
)
8182 pa_undefine_label ();
8187 /* Handle a .COMPILER pseudo-op. */
8190 pa_compiler (int unused ATTRIBUTE_UNUSED
)
8192 obj_som_compiler (0);
8193 pa_undefine_label ();
8198 /* Handle a .COPYRIGHT pseudo-op. */
8201 pa_copyright (int unused ATTRIBUTE_UNUSED
)
8204 pa_undefine_label ();
8207 /* Just like a normal cons, but when finished we have to undefine
8208 the latest space label. */
8211 pa_cons (int nbytes
)
8214 pa_undefine_label ();
8217 /* Like float_cons, but we need to undefine our label. */
8220 pa_float_cons (int float_type
)
8222 float_cons (float_type
);
8223 pa_undefine_label ();
8226 /* Like s_fill, but delete our label when finished. */
8229 pa_fill (int unused ATTRIBUTE_UNUSED
)
8232 /* We must have a valid space and subspace. */
8233 pa_check_current_space_and_subspace ();
8237 pa_undefine_label ();
8240 /* Like lcomm, but delete our label when finished. */
8243 pa_lcomm (int needs_align
)
8246 /* We must have a valid space and subspace. */
8247 pa_check_current_space_and_subspace ();
8250 s_lcomm (needs_align
);
8251 pa_undefine_label ();
8254 /* Like lsym, but delete our label when finished. */
8257 pa_lsym (int unused ATTRIBUTE_UNUSED
)
8260 /* We must have a valid space and subspace. */
8261 pa_check_current_space_and_subspace ();
8265 pa_undefine_label ();
8268 /* This function is called once, at assembler startup time. It should
8269 set up all the tables, etc. that the MD part of the assembler will need. */
8274 const char *retval
= NULL
;
8278 last_call_info
= NULL
;
8279 call_info_root
= NULL
;
8281 /* Set the default machine type. */
8282 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, DEFAULT_LEVEL
))
8283 as_warn (_("could not set architecture and machine"));
8285 /* Folding of text and data segments fails miserably on the PA.
8286 Warn user and disable "-R" option. */
8287 if (flag_readonly_data_in_text
)
8289 as_warn (_("-R option not supported on this target."));
8290 flag_readonly_data_in_text
= 0;
8297 op_hash
= hash_new ();
8299 while (i
< NUMOPCODES
)
8301 const char *name
= pa_opcodes
[i
].name
;
8303 retval
= hash_insert (op_hash
, name
, (struct pa_opcode
*) &pa_opcodes
[i
]);
8304 if (retval
!= NULL
&& *retval
!= '\0')
8306 as_fatal (_("Internal error: can't hash `%s': %s\n"), name
, retval
);
8312 if ((pa_opcodes
[i
].match
& pa_opcodes
[i
].mask
)
8313 != pa_opcodes
[i
].match
)
8315 fprintf (stderr
, _("internal error: losing opcode: `%s' \"%s\"\n"),
8316 pa_opcodes
[i
].name
, pa_opcodes
[i
].args
);
8321 while (i
< NUMOPCODES
&& !strcmp (pa_opcodes
[i
].name
, name
));
8325 as_fatal (_("Broken assembler. No assembly attempted."));
8328 /* SOM will change text_section. To make sure we never put
8329 anything into the old one switch to the new one now. */
8330 subseg_set (text_section
, 0);
8334 dummy_symbol
= symbol_find_or_make ("L$dummy");
8335 S_SET_SEGMENT (dummy_symbol
, text_section
);
8336 /* Force the symbol to be converted to a real symbol. */
8337 symbol_get_bfdsym (dummy_symbol
)->flags
|= BSF_KEEP
;
8341 /* On the PA relocations which involve function symbols must not be
8342 adjusted. This so that the linker can know when/how to create argument
8343 relocation stubs for indirect calls and calls to static functions.
8345 "T" field selectors create DLT relative fixups for accessing
8346 globals and statics in PIC code; each DLT relative fixup creates
8347 an entry in the DLT table. The entries contain the address of
8348 the final target (eg accessing "foo" would create a DLT entry
8349 with the address of "foo").
8351 Unfortunately, the HP linker doesn't take into account any addend
8352 when generating the DLT; so accessing $LIT$+8 puts the address of
8353 $LIT$ into the DLT rather than the address of $LIT$+8.
8355 The end result is we can't perform relocation symbol reductions for
8356 any fixup which creates entries in the DLT (eg they use "T" field
8359 ??? Reject reductions involving symbols with external scope; such
8360 reductions make life a living hell for object file editors. */
8363 hppa_fix_adjustable (fixS
*fixp
)
8368 struct hppa_fix_struct
*hppa_fix
;
8370 hppa_fix
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8373 /* LR/RR selectors are implicitly used for a number of different relocation
8374 types. We must ensure that none of these types are adjusted (see below)
8375 even if they occur with a different selector. */
8376 code
= elf_hppa_reloc_final_type (stdoutput
, fixp
->fx_r_type
,
8377 hppa_fix
->fx_r_format
,
8378 hppa_fix
->fx_r_field
);
8382 /* Relocation types which use e_lrsel. */
8383 case R_PARISC_DIR21L
:
8384 case R_PARISC_DLTREL21L
:
8385 case R_PARISC_DPREL21L
:
8386 case R_PARISC_PLTOFF21L
:
8388 /* Relocation types which use e_rrsel. */
8389 case R_PARISC_DIR14R
:
8390 case R_PARISC_DIR14DR
:
8391 case R_PARISC_DIR14WR
:
8392 case R_PARISC_DIR17R
:
8393 case R_PARISC_DLTREL14R
:
8394 case R_PARISC_DLTREL14DR
:
8395 case R_PARISC_DLTREL14WR
:
8396 case R_PARISC_DPREL14R
:
8397 case R_PARISC_DPREL14DR
:
8398 case R_PARISC_DPREL14WR
:
8399 case R_PARISC_PLTOFF14R
:
8400 case R_PARISC_PLTOFF14DR
:
8401 case R_PARISC_PLTOFF14WR
:
8403 /* Other types that we reject for reduction. */
8404 case R_PARISC_GNU_VTENTRY
:
8405 case R_PARISC_GNU_VTINHERIT
:
8412 /* Reject reductions of symbols in sym1-sym2 expressions when
8413 the fixup will occur in a CODE subspace.
8415 XXX FIXME: Long term we probably want to reject all of these;
8416 for example reducing in the debug section would lose if we ever
8417 supported using the optimizing hp linker. */
8420 && (hppa_fix
->segment
->flags
& SEC_CODE
))
8423 /* We can't adjust any relocs that use LR% and RR% field selectors.
8425 If a symbol is reduced to a section symbol, the assembler will
8426 adjust the addend unless the symbol happens to reside right at
8427 the start of the section. Additionally, the linker has no choice
8428 but to manipulate the addends when coalescing input sections for
8429 "ld -r". Since an LR% field selector is defined to round the
8430 addend, we can't change the addend without risking that a LR% and
8431 it's corresponding (possible multiple) RR% field will no longer
8432 sum to the right value.
8435 . ldil LR%foo+0,%r21
8436 . ldw RR%foo+0(%r21),%r26
8437 . ldw RR%foo+4(%r21),%r25
8439 If foo is at address 4092 (decimal) in section `sect', then after
8440 reducing to the section symbol we get
8441 . LR%sect+4092 == (L%sect)+0
8442 . RR%sect+4092 == (R%sect)+4092
8443 . RR%sect+4096 == (R%sect)-4096
8444 and the last address loses because rounding the addend to 8k
8445 multiples takes us up to 8192 with an offset of -4096.
8447 In cases where the LR% expression is identical to the RR% one we
8448 will never have a problem, but is so happens that gcc rounds
8449 addends involved in LR% field selectors to work around a HP
8450 linker bug. ie. We often have addresses like the last case
8451 above where the LR% expression is offset from the RR% one. */
8453 if (hppa_fix
->fx_r_field
== e_lrsel
8454 || hppa_fix
->fx_r_field
== e_rrsel
8455 || hppa_fix
->fx_r_field
== e_nlrsel
)
8458 /* Reject reductions of symbols in DLT relative relocs,
8459 relocations with plabels. */
8460 if (hppa_fix
->fx_r_field
== e_tsel
8461 || hppa_fix
->fx_r_field
== e_ltsel
8462 || hppa_fix
->fx_r_field
== e_rtsel
8463 || hppa_fix
->fx_r_field
== e_psel
8464 || hppa_fix
->fx_r_field
== e_rpsel
8465 || hppa_fix
->fx_r_field
== e_lpsel
)
8468 /* Reject absolute calls (jumps). */
8469 if (hppa_fix
->fx_r_type
== R_HPPA_ABS_CALL
)
8472 /* Reject reductions of function symbols. */
8473 if (fixp
->fx_addsy
!= 0 && S_IS_FUNCTION (fixp
->fx_addsy
))
8479 /* Return nonzero if the fixup in FIXP will require a relocation,
8480 even it if appears that the fixup could be completely handled
8484 hppa_force_relocation (struct fix
*fixp
)
8486 struct hppa_fix_struct
*hppa_fixp
;
8488 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8490 if (fixp
->fx_r_type
== (int) R_HPPA_ENTRY
8491 || fixp
->fx_r_type
== (int) R_HPPA_EXIT
8492 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_BRTAB
8493 || fixp
->fx_r_type
== (int) R_HPPA_END_BRTAB
8494 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_TRY
8495 || fixp
->fx_r_type
== (int) R_HPPA_END_TRY
8496 || (fixp
->fx_addsy
!= NULL
&& fixp
->fx_subsy
!= NULL
8497 && (hppa_fixp
->segment
->flags
& SEC_CODE
) != 0))
8501 if (fixp
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
8502 || fixp
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
)
8506 gas_assert (fixp
->fx_addsy
!= NULL
);
8508 /* Ensure we emit a relocation for global symbols so that dynamic
8510 if (S_FORCE_RELOC (fixp
->fx_addsy
, 1))
8513 /* It is necessary to force PC-relative calls/jumps to have a relocation
8514 entry if they're going to need either an argument relocation or long
8517 && arg_reloc_stub_needed (symbol_arg_reloc_info (fixp
->fx_addsy
),
8518 hppa_fixp
->fx_arg_reloc
))
8521 /* Now check to see if we're going to need a long-branch stub. */
8522 if (fixp
->fx_r_type
== (int) R_HPPA_PCREL_CALL
)
8524 long pc
= md_pcrel_from (fixp
);
8525 valueT distance
, min_stub_distance
;
8527 distance
= fixp
->fx_offset
+ S_GET_VALUE (fixp
->fx_addsy
) - pc
- 8;
8529 /* Distance to the closest possible stub. This will detect most
8530 but not all circumstances where a stub will not work. */
8531 min_stub_distance
= pc
+ 16;
8533 if (last_call_info
!= NULL
)
8534 min_stub_distance
-= S_GET_VALUE (last_call_info
->start_symbol
);
8537 if ((distance
+ 8388608 >= 16777216
8538 && min_stub_distance
<= 8388608)
8539 || (hppa_fixp
->fx_r_format
== 17
8540 && distance
+ 262144 >= 524288
8541 && min_stub_distance
<= 262144)
8542 || (hppa_fixp
->fx_r_format
== 12
8543 && distance
+ 8192 >= 16384
8544 && min_stub_distance
<= 8192)
8549 if (fixp
->fx_r_type
== (int) R_HPPA_ABS_CALL
)
8552 /* No need (yet) to force another relocations to be emitted. */
8556 /* Now for some ELF specific code. FIXME. */
8558 /* For ELF, this function serves one purpose: to setup the st_size
8559 field of STT_FUNC symbols. To do this, we need to scan the
8560 call_info structure list, determining st_size in by taking the
8561 difference in the address of the beginning/end marker symbols. */
8564 elf_hppa_final_processing (void)
8566 struct call_info
*call_info_pointer
;
8568 for (call_info_pointer
= call_info_root
;
8570 call_info_pointer
= call_info_pointer
->ci_next
)
8572 elf_symbol_type
*esym
8573 = ((elf_symbol_type
*)
8574 symbol_get_bfdsym (call_info_pointer
->start_symbol
));
8575 esym
->internal_elf_sym
.st_size
=
8576 S_GET_VALUE (call_info_pointer
->end_symbol
)
8577 - S_GET_VALUE (call_info_pointer
->start_symbol
) + 4;
8582 pa_vtable_entry (int ignore ATTRIBUTE_UNUSED
)
8584 struct fix
*new_fix
;
8586 new_fix
= obj_elf_vtable_entry (0);
8590 struct hppa_fix_struct
* hppa_fix
= obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8592 hppa_fix
->fx_r_type
= R_HPPA
;
8593 hppa_fix
->fx_r_field
= e_fsel
;
8594 hppa_fix
->fx_r_format
= 32;
8595 hppa_fix
->fx_arg_reloc
= 0;
8596 hppa_fix
->segment
= now_seg
;
8597 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8598 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTENTRY
;
8603 pa_vtable_inherit (int ignore ATTRIBUTE_UNUSED
)
8605 struct fix
*new_fix
;
8607 new_fix
= obj_elf_vtable_inherit (0);
8611 struct hppa_fix_struct
* hppa_fix
= obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8613 hppa_fix
->fx_r_type
= R_HPPA
;
8614 hppa_fix
->fx_r_field
= e_fsel
;
8615 hppa_fix
->fx_r_format
= 32;
8616 hppa_fix
->fx_arg_reloc
= 0;
8617 hppa_fix
->segment
= now_seg
;
8618 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8619 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTINHERIT
;
8624 /* Table of pseudo ops for the PA. FIXME -- how many of these
8625 are now redundant with the overall GAS and the object file
8626 dependent tables? */
8627 const pseudo_typeS md_pseudo_table
[] =
8629 /* align pseudo-ops on the PA specify the actual alignment requested,
8630 not the log2 of the requested alignment. */
8632 {"align", pa_align
, 8},
8635 {"align", s_align_bytes
, 8},
8637 {"begin_brtab", pa_brtab
, 1},
8638 {"begin_try", pa_try
, 1},
8639 {"block", pa_block
, 1},
8640 {"blockz", pa_block
, 0},
8641 {"byte", pa_cons
, 1},
8642 {"call", pa_call
, 0},
8643 {"callinfo", pa_callinfo
, 0},
8644 #if defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))
8645 {"code", obj_elf_text
, 0},
8647 {"code", pa_text
, 0},
8648 {"comm", pa_comm
, 0},
8651 {"compiler", pa_compiler
, 0},
8653 {"copyright", pa_copyright
, 0},
8654 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8655 {"data", pa_data
, 0},
8657 {"double", pa_float_cons
, 'd'},
8658 {"dword", pa_cons
, 8},
8660 {"end_brtab", pa_brtab
, 0},
8661 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8662 {"end_try", pa_try
, 0},
8664 {"enter", pa_enter
, 0},
8665 {"entry", pa_entry
, 0},
8667 {"exit", pa_exit
, 0},
8668 {"export", pa_export
, 0},
8669 {"fill", pa_fill
, 0},
8670 {"float", pa_float_cons
, 'f'},
8671 {"half", pa_cons
, 2},
8672 {"import", pa_import
, 0},
8673 {"int", pa_cons
, 4},
8674 {"label", pa_label
, 0},
8675 {"lcomm", pa_lcomm
, 0},
8676 {"leave", pa_leave
, 0},
8677 {"level", pa_level
, 0},
8678 {"long", pa_cons
, 4},
8679 {"lsym", pa_lsym
, 0},
8681 {"nsubspa", pa_subspace
, 1},
8683 {"octa", pa_cons
, 16},
8684 {"org", pa_origin
, 0},
8685 {"origin", pa_origin
, 0},
8686 {"param", pa_param
, 0},
8687 {"proc", pa_proc
, 0},
8688 {"procend", pa_procend
, 0},
8689 {"quad", pa_cons
, 8},
8691 {"short", pa_cons
, 2},
8692 {"single", pa_float_cons
, 'f'},
8694 {"space", pa_space
, 0},
8695 {"spnum", pa_spnum
, 0},
8697 {"string", pa_stringer
, 0},
8698 {"stringz", pa_stringer
, 1},
8700 {"subspa", pa_subspace
, 0},
8702 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8703 {"text", pa_text
, 0},
8705 {"version", pa_version
, 0},
8707 {"vtable_entry", pa_vtable_entry
, 0},
8708 {"vtable_inherit", pa_vtable_inherit
, 0},
8710 {"word", pa_cons
, 4},
8716 hppa_cfi_frame_initial_instructions (void)
8718 cfi_add_CFA_def_cfa (30, 0);
8722 hppa_regname_to_dw2regnum (char *regname
)
8724 unsigned int regnum
= -1;
8728 static struct { char *name
; int dw2regnum
; } regnames
[] =
8730 { "sp", 30 }, { "rp", 2 },
8733 for (i
= 0; i
< ARRAY_SIZE (regnames
); ++i
)
8734 if (strcmp (regnames
[i
].name
, regname
) == 0)
8735 return regnames
[i
].dw2regnum
;
8737 if (regname
[0] == 'r')
8740 regnum
= strtoul (p
, &q
, 10);
8741 if (p
== q
|| *q
|| regnum
>= 32)
8744 else if (regname
[0] == 'f' && regname
[1] == 'r')
8747 regnum
= strtoul (p
, &q
, 10);
8748 #if TARGET_ARCH_SIZE == 64
8749 if (p
== q
|| *q
|| regnum
<= 4 || regnum
>= 32)
8754 || (*q
&& ((*q
!= 'L' && *q
!= 'R') || *(q
+ 1)))
8755 || regnum
<= 4 || regnum
>= 32)
8757 regnum
= (regnum
- 4) * 2 + 32;