1 /* tc-hppa.c -- Assemble for the PA
2 Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007 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 /* Insert FIELD into OPCODE starting at bit START. Continue pa_ip
999 main loop after insertion. */
1001 #define INSERT_FIELD_AND_CONTINUE(OPCODE, FIELD, START) \
1003 ((OPCODE) |= (FIELD) << (START)); \
1007 /* Simple range checking for FIELD against HIGH and LOW bounds.
1008 IGNORE is used to suppress the error message. */
1010 #define CHECK_FIELD(FIELD, HIGH, LOW, IGNORE) \
1012 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1015 as_bad (_("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1021 /* Variant of CHECK_FIELD for use in md_apply_fix and other places where
1022 the current file and line number are not valid. */
1024 #define CHECK_FIELD_WHERE(FIELD, HIGH, LOW, FILENAME, LINE) \
1026 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1028 as_bad_where ((FILENAME), (LINE), \
1029 _("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1035 /* Simple alignment checking for FIELD against ALIGN (a power of two).
1036 IGNORE is used to suppress the error message. */
1038 #define CHECK_ALIGN(FIELD, ALIGN, IGNORE) \
1040 if ((FIELD) & ((ALIGN) - 1)) \
1043 as_bad (_("Field not properly aligned [%d] (%d)."), (ALIGN), \
1049 #define is_DP_relative(exp) \
1050 ((exp).X_op == O_subtract \
1051 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$global$") == 0)
1053 #define is_PC_relative(exp) \
1054 ((exp).X_op == O_subtract \
1055 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$PIC_pcrel$0") == 0)
1057 #define is_tls_gdidx(exp) \
1058 ((exp).X_op == O_subtract \
1059 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_gdidx$") == 0)
1061 #define is_tls_ldidx(exp) \
1062 ((exp).X_op == O_subtract \
1063 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_ldidx$") == 0)
1065 #define is_tls_dtpoff(exp) \
1066 ((exp).X_op == O_subtract \
1067 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_dtpoff$") == 0)
1069 #define is_tls_ieoff(exp) \
1070 ((exp).X_op == O_subtract \
1071 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_ieoff$") == 0)
1073 #define is_tls_leoff(exp) \
1074 ((exp).X_op == O_subtract \
1075 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$tls_leoff$") == 0)
1077 /* We need some complex handling for stabs (sym1 - sym2). Luckily, we'll
1078 always be able to reduce the expression to a constant, so we don't
1079 need real complex handling yet. */
1080 #define is_complex(exp) \
1081 ((exp).X_op != O_constant && (exp).X_op != O_symbol)
1083 /* Actual functions to implement the PA specific code for the assembler. */
1085 /* Called before writing the object file. Make sure entry/exit and
1086 proc/procend pairs match. */
1091 if (within_entry_exit)
1092 as_fatal (_("Missing .exit\n"));
1094 if (within_procedure)
1095 as_fatal (_("Missing .procend\n"));
1098 /* Returns a pointer to the label_symbol_struct for the current space.
1099 or NULL if no label_symbol_struct exists for the current space. */
1101 static label_symbol_struct *
1104 label_symbol_struct *label_chain;
1106 for (label_chain = label_symbols_rootp;
1108 label_chain = label_chain->lss_next)
1111 if (current_space == label_chain->lss_space && label_chain->lss_label)
1115 if (now_seg == label_chain->lss_segment && label_chain->lss_label)
1123 /* Defines a label for the current space. If one is already defined,
1124 this function will replace it with the new label. */
1127 pa_define_label (symbolS *symbol)
1129 label_symbol_struct *label_chain = pa_get_label ();
1132 label_chain->lss_label = symbol;
1135 /* Create a new label entry and add it to the head of the chain. */
1136 label_chain = xmalloc (sizeof (label_symbol_struct));
1137 label_chain->lss_label = symbol;
1139 label_chain->lss_space = current_space;
1142 label_chain->lss_segment = now_seg;
1144 label_chain->lss_next = NULL;
1146 if (label_symbols_rootp)
1147 label_chain->lss_next = label_symbols_rootp;
1149 label_symbols_rootp = label_chain;
1153 dwarf2_emit_label (symbol);
1157 /* Removes a label definition for the current space.
1158 If there is no label_symbol_struct entry, then no action is taken. */
1161 pa_undefine_label (void)
1163 label_symbol_struct *label_chain;
1164 label_symbol_struct *prev_label_chain = NULL;
1166 for (label_chain = label_symbols_rootp;
1168 label_chain = label_chain->lss_next)
1172 && current_space == label_chain->lss_space && label_chain->lss_label
1175 && now_seg == label_chain->lss_segment && label_chain->lss_label
1179 /* Remove the label from the chain and free its memory. */
1180 if (prev_label_chain)
1181 prev_label_chain->lss_next = label_chain->lss_next;
1183 label_symbols_rootp = label_chain->lss_next;
1188 prev_label_chain = label_chain;
1192 /* An HPPA-specific version of fix_new. This is required because the HPPA
1193 code needs to keep track of some extra stuff. Each call to fix_new_hppa
1194 results in the creation of an instance of an hppa_fix_struct. An
1195 hppa_fix_struct stores the extra information along with a pointer to the
1196 original fixS. This is attached to the original fixup via the
1197 tc_fix_data field. */
1200 fix_new_hppa (fragS *frag,
1203 symbolS *add_symbol,
1207 bfd_reloc_code_real_type r_type,
1208 enum hppa_reloc_field_selector_type_alt r_field,
1210 unsigned int arg_reloc,
1211 int unwind_bits ATTRIBUTE_UNUSED)
1214 struct hppa_fix_struct *hppa_fix = obstack_alloc (¬es, sizeof (struct hppa_fix_struct));
1217 new_fix = fix_new_exp (frag, where, size, exp, pcrel, r_type);
1219 new_fix = fix_new (frag, where, size, add_symbol, offset, pcrel, r_type);
1220 new_fix->tc_fix_data = (void *) hppa_fix;
1221 hppa_fix->fx_r_type = r_type;
1222 hppa_fix->fx_r_field = r_field;
1223 hppa_fix->fx_r_format = r_format;
1224 hppa_fix->fx_arg_reloc = arg_reloc;
1225 hppa_fix->segment = now_seg;
1227 if (r_type == R_ENTRY || r_type == R_EXIT)
1228 new_fix->fx_offset = unwind_bits;
1231 /* foo-$global$ is used to access non-automatic storage. $global$
1232 is really just a marker and has served its purpose, so eliminate
1233 it now so as not to confuse write.c. Ditto for $PIC_pcrel$0. */
1234 if (new_fix->fx_subsy
1235 && (strcmp (S_GET_NAME (new_fix->fx_subsy), "$global$") == 0
1236 || strcmp (S_GET_NAME (new_fix->fx_subsy), "$PIC_pcrel$0") == 0
1237 || strcmp (S_GET_NAME (new_fix->fx_subsy), "$tls_gdidx$") == 0
1238 || strcmp (S_GET_NAME (new_fix->fx_subsy), "$tls_ldidx$") == 0
1239 || strcmp (S_GET_NAME (new_fix->fx_subsy), "$tls_dtpoff$") == 0
1240 || strcmp (S_GET_NAME (new_fix->fx_subsy), "$tls_ieoff$") == 0
1241 || strcmp (S_GET_NAME (new_fix->fx_subsy), "$tls_leoff$") == 0))
1242 new_fix->fx_subsy = NULL;
1245 /* This fix_new is called by cons via TC_CONS_FIX_NEW.
1246 hppa_field_selector is set by the parse_cons_expression_hppa. */
1249 cons_fix_new_hppa (fragS *frag, int where, int size, expressionS *exp)
1251 unsigned int rel_type;
1253 /* Get a base relocation type. */
1254 if (is_DP_relative (*exp))
1255 rel_type = R_HPPA_GOTOFF;
1256 else if (is_PC_relative (*exp))
1257 rel_type = R_HPPA_PCREL_CALL;
1259 else if (is_tls_gdidx (*exp))
1260 rel_type = R_PARISC_TLS_GD21L;
1261 else if (is_tls_ldidx (*exp))
1262 rel_type = R_PARISC_TLS_LDM21L;
1263 else if (is_tls_dtpoff (*exp))
1264 rel_type = R_PARISC_TLS_LDO21L;
1265 else if (is_tls_ieoff (*exp))
1266 rel_type = R_PARISC_TLS_IE21L;
1267 else if (is_tls_leoff (*exp))
1268 rel_type = R_PARISC_TLS_LE21L;
1270 else if (is_complex (*exp))
1271 rel_type = R_HPPA_COMPLEX;
1275 if (hppa_field_selector != e_psel && hppa_field_selector != e_fsel)
1277 as_warn (_("Invalid field selector. Assuming F%%."));
1278 hppa_field_selector = e_fsel;
1281 fix_new_hppa (frag, where, size,
1282 (symbolS *) NULL, (offsetT) 0, exp, 0, rel_type,
1283 hppa_field_selector, size * 8, 0, 0);
1285 /* Reset field selector to its default state. */
1286 hppa_field_selector = 0;
1289 /* Mark (via expr_end) the end of an expression (I think). FIXME. */
1292 get_expression (char *str)
1297 save_in = input_line_pointer;
1298 input_line_pointer = str;
1299 seg = expression (&the_insn.exp);
1300 if (!(seg == absolute_section
1301 || seg == undefined_section
1302 || SEG_NORMAL (seg)))
1304 as_warn (_("Bad segment in expression."));
1305 expr_end = input_line_pointer;
1306 input_line_pointer = save_in;
1309 expr_end = input_line_pointer;
1310 input_line_pointer = save_in;
1313 /* Parse a PA nullification completer (,n). Return nonzero if the
1314 completer was found; return zero if no completer was found. */
1317 pa_parse_nullif (char **s)
1325 if (strncasecmp (*s, "n", 1) == 0)
1329 as_bad (_("Invalid Nullification: (%c)"), **s);
1339 md_atof (int type, char *litP, int *sizeP)
1341 return ieee_md_atof (type, litP, sizeP, TRUE);
1344 /* Write out big-endian. */
1347 md_number_to_chars (char *buf, valueT val, int n)
1349 number_to_chars_bigendian (buf, val, n);
1352 /* Translate internal representation of relocation info to BFD target
1356 tc_gen_reloc (asection *section, fixS *fixp)
1359 struct hppa_fix_struct *hppa_fixp;
1360 static arelent *no_relocs = NULL;
1367 hppa_fixp = (struct hppa_fix_struct *) fixp->tc_fix_data;
1368 if (fixp->fx_addsy == 0)
1371 assert (hppa_fixp != 0);
1372 assert (section != 0);
1374 reloc = xmalloc (sizeof (arelent));
1376 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1377 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1378 codes = hppa_gen_reloc_type (stdoutput,
1380 hppa_fixp->fx_r_format,
1381 hppa_fixp->fx_r_field,
1382 fixp->fx_subsy != NULL,
1383 symbol_get_bfdsym (fixp->fx_addsy));
1387 as_bad_where (fixp->fx_file, fixp->fx_line, _("Cannot handle fixup"));
1391 for (n_relocs = 0; codes[n_relocs]; n_relocs++)
1394 relocs = xmalloc (sizeof (arelent *) * n_relocs + 1);
1395 reloc = xmalloc (sizeof (arelent) * n_relocs);
1396 for (i = 0; i < n_relocs; i++)
1397 relocs[i] = &reloc[i];
1399 relocs[n_relocs] = NULL;
1402 switch (fixp->fx_r_type)
1405 assert (n_relocs == 1);
1409 /* Now, do any processing that is dependent on the relocation type. */
1412 case R_PARISC_DLTREL21L:
1413 case R_PARISC_DLTREL14R:
1414 case R_PARISC_DLTREL14F:
1415 case R_PARISC_PLABEL32:
1416 case R_PARISC_PLABEL21L:
1417 case R_PARISC_PLABEL14R:
1418 /* For plabel relocations, the addend of the
1419 relocation should be either 0 (no static link) or 2
1420 (static link required). This adjustment is done in
1421 bfd/elf32-hppa.c:elf32_hppa_relocate_section.
1423 We also slam a zero addend into the DLT relative relocs;
1424 it doesn't make a lot of sense to use any addend since
1425 it gets you a different (eg unknown) DLT entry. */
1429 #ifdef ELF_ARG_RELOC
1430 case R_PARISC_PCREL17R:
1431 case R_PARISC_PCREL17F:
1432 case R_PARISC_PCREL17C:
1433 case R_PARISC_DIR17R:
1434 case R_PARISC_DIR17F:
1435 case R_PARISC_PCREL21L:
1436 case R_PARISC_DIR21L:
1437 reloc->addend = HPPA_R_ADDEND (hppa_fixp->fx_arg_reloc,
1442 case R_PARISC_DIR32:
1443 /* Facilitate hand-crafted unwind info. */
1444 if (strcmp (section->name, UNWIND_SECTION_NAME) == 0)
1445 code = R_PARISC_SEGREL32;
1449 reloc->addend = fixp->fx_offset;
1453 reloc->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1454 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1455 reloc->howto = bfd_reloc_type_lookup (stdoutput,
1456 (bfd_reloc_code_real_type) code);
1457 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1459 assert (reloc->howto && (unsigned int) code == reloc->howto->type);
1464 /* Walk over reach relocation returned by the BFD backend. */
1465 for (i = 0; i < n_relocs; i++)
1469 relocs[i]->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1470 *relocs[i]->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1472 bfd_reloc_type_lookup (stdoutput,
1473 (bfd_reloc_code_real_type) code);
1474 relocs[i]->address = fixp->fx_frag->fr_address + fixp->fx_where;
1479 /* The only time we ever use a R_COMP2 fixup is for the difference
1480 of two symbols. With that in mind we fill in all four
1481 relocs now and break out of the loop. */
1483 relocs[0]->sym_ptr_ptr
1484 = (asymbol **) bfd_abs_section_ptr->symbol_ptr_ptr;
1486 = bfd_reloc_type_lookup (stdoutput,
1487 (bfd_reloc_code_real_type) *codes[0]);
1488 relocs[0]->address = fixp->fx_frag->fr_address + fixp->fx_where;
1489 relocs[0]->addend = 0;
1490 relocs[1]->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1491 *relocs[1]->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1493 = bfd_reloc_type_lookup (stdoutput,
1494 (bfd_reloc_code_real_type) *codes[1]);
1495 relocs[1]->address = fixp->fx_frag->fr_address + fixp->fx_where;
1496 relocs[1]->addend = 0;
1497 relocs[2]->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1498 *relocs[2]->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_subsy);
1500 = bfd_reloc_type_lookup (stdoutput,
1501 (bfd_reloc_code_real_type) *codes[2]);
1502 relocs[2]->address = fixp->fx_frag->fr_address + fixp->fx_where;
1503 relocs[2]->addend = 0;
1504 relocs[3]->sym_ptr_ptr
1505 = (asymbol **) bfd_abs_section_ptr->symbol_ptr_ptr;
1507 = bfd_reloc_type_lookup (stdoutput,
1508 (bfd_reloc_code_real_type) *codes[3]);
1509 relocs[3]->address = fixp->fx_frag->fr_address + fixp->fx_where;
1510 relocs[3]->addend = 0;
1511 relocs[4]->sym_ptr_ptr
1512 = (asymbol **) bfd_abs_section_ptr->symbol_ptr_ptr;
1514 = bfd_reloc_type_lookup (stdoutput,
1515 (bfd_reloc_code_real_type) *codes[4]);
1516 relocs[4]->address = fixp->fx_frag->fr_address + fixp->fx_where;
1517 relocs[4]->addend = 0;
1521 relocs[i]->addend = HPPA_R_ADDEND (hppa_fixp->fx_arg_reloc, 0);
1527 /* For plabel relocations, the addend of the
1528 relocation should be either 0 (no static link) or 2
1529 (static link required).
1531 FIXME: We always assume no static link!
1533 We also slam a zero addend into the DLT relative relocs;
1534 it doesn't make a lot of sense to use any addend since
1535 it gets you a different (eg unknown) DLT entry. */
1536 relocs[i]->addend = 0;
1551 /* There is no symbol or addend associated with these fixups. */
1552 relocs[i]->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1553 *relocs[i]->sym_ptr_ptr = symbol_get_bfdsym (dummy_symbol);
1554 relocs[i]->addend = 0;
1560 /* There is no symbol associated with these fixups. */
1561 relocs[i]->sym_ptr_ptr = xmalloc (sizeof (asymbol *));
1562 *relocs[i]->sym_ptr_ptr = symbol_get_bfdsym (dummy_symbol);
1563 relocs[i]->addend = fixp->fx_offset;
1567 relocs[i]->addend = fixp->fx_offset;
1577 /* Process any machine dependent frag types. */
1580 md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED,
1581 asection *sec ATTRIBUTE_UNUSED,
1584 unsigned int address;
1586 if (fragP->fr_type == rs_machine_dependent)
1588 switch ((int) fragP->fr_subtype)
1591 fragP->fr_type = rs_fill;
1592 know (fragP->fr_var == 1);
1593 know (fragP->fr_next);
1594 address = fragP->fr_address + fragP->fr_fix;
1595 if (address % fragP->fr_offset)
1598 fragP->fr_next->fr_address
1603 fragP->fr_offset = 0;
1609 /* Round up a section size to the appropriate boundary. */
1612 md_section_align (asection *segment, valueT size)
1614 int align = bfd_get_section_alignment (stdoutput, segment);
1615 int align2 = (1 << align) - 1;
1617 return (size + align2) & ~align2;
1620 /* Return the approximate size of a frag before relaxation has occurred. */
1623 md_estimate_size_before_relax (fragS *fragP, asection *segment ATTRIBUTE_UNUSED)
1629 while ((fragP->fr_fix + size) % fragP->fr_offset)
1636 # ifdef WARN_COMMENTS
1637 const char *md_shortopts = "Vc";
1639 const char *md_shortopts = "V";
1642 # ifdef WARN_COMMENTS
1643 const char *md_shortopts = "c";
1645 const char *md_shortopts = "";
1649 struct option md_longopts[] =
1651 #ifdef WARN_COMMENTS
1652 {"warn-comment", no_argument, NULL, 'c'},
1654 {NULL, no_argument, NULL, 0}
1656 size_t md_longopts_size = sizeof (md_longopts);
1659 md_parse_option (int c, char *arg ATTRIBUTE_UNUSED)
1668 print_version_id ();
1671 #ifdef WARN_COMMENTS
1682 md_show_usage (FILE *stream ATTRIBUTE_UNUSED)
1685 fprintf (stream, _("\
1688 #ifdef WARN_COMMENTS
1689 fprintf (stream, _("\
1690 -c print a warning if a comment is found\n"));
1694 /* We have no need to default values of symbols. */
1697 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
1702 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
1703 #define nonzero_dibits(x) \
1704 ((x) | (((x) & 0x55555555) << 1) | (((x) & 0xAAAAAAAA) >> 1))
1705 #define arg_reloc_stub_needed(CALLER, CALLEE) \
1706 (((CALLER) ^ (CALLEE)) & nonzero_dibits (CALLER) & nonzero_dibits (CALLEE))
1708 #define arg_reloc_stub_needed(CALLER, CALLEE) 0
1711 /* Apply a fixup to an instruction. */
1714 md_apply_fix (fixS *fixP, valueT *valP, segT seg ATTRIBUTE_UNUSED)
1717 struct hppa_fix_struct *hppa_fixP;
1721 /* SOM uses R_HPPA_ENTRY and R_HPPA_EXIT relocations which can
1722 never be "applied" (they are just markers). Likewise for
1723 R_HPPA_BEGIN_BRTAB and R_HPPA_END_BRTAB. */
1725 if (fixP->fx_r_type == R_HPPA_ENTRY
1726 || fixP->fx_r_type == R_HPPA_EXIT
1727 || fixP->fx_r_type == R_HPPA_BEGIN_BRTAB
1728 || fixP->fx_r_type == R_HPPA_END_BRTAB
1729 || fixP->fx_r_type == R_HPPA_BEGIN_TRY)
1732 /* Disgusting. We must set fx_offset ourselves -- R_HPPA_END_TRY
1733 fixups are considered not adjustable, which in turn causes
1734 adjust_reloc_syms to not set fx_offset. Ugh. */
1735 if (fixP->fx_r_type == R_HPPA_END_TRY)
1737 fixP->fx_offset = * valP;
1742 if (fixP->fx_r_type == (int) R_PARISC_GNU_VTENTRY
1743 || fixP->fx_r_type == (int) R_PARISC_GNU_VTINHERIT)
1747 if (fixP->fx_addsy == NULL && fixP->fx_pcrel == 0)
1750 /* There should be a HPPA specific fixup associated with the GAS fixup. */
1751 hppa_fixP = (struct hppa_fix_struct *) fixP->tc_fix_data;
1752 if (hppa_fixP == NULL)
1754 as_bad_where (fixP->fx_file, fixP->fx_line,
1755 _("no hppa_fixup entry for fixup type 0x%x"),
1760 fixpos = fixP->fx_frag->fr_literal + fixP->fx_where;
1762 if (fixP->fx_size != 4 || hppa_fixP->fx_r_format == 32)
1764 /* Handle constant output. */
1765 number_to_chars_bigendian (fixpos, *valP, fixP->fx_size);
1769 insn = bfd_get_32 (stdoutput, fixpos);
1770 fmt = bfd_hppa_insn2fmt (stdoutput, insn);
1772 /* If there is a symbol associated with this fixup, then it's something
1773 which will need a SOM relocation (except for some PC-relative relocs).
1774 In such cases we should treat the "val" or "addend" as zero since it
1775 will be added in as needed from fx_offset in tc_gen_reloc. */
1776 if ((fixP->fx_addsy != NULL
1777 || fixP->fx_r_type == (int) R_HPPA_NONE)
1782 new_val = ((fmt == 12 || fmt == 17 || fmt == 22) ? 8 : 0);
1784 /* These field selectors imply that we do not want an addend. */
1785 else if (hppa_fixP->fx_r_field == e_psel
1786 || hppa_fixP->fx_r_field == e_rpsel
1787 || hppa_fixP->fx_r_field == e_lpsel
1788 || hppa_fixP->fx_r_field == e_tsel
1789 || hppa_fixP->fx_r_field == e_rtsel
1790 || hppa_fixP->fx_r_field == e_ltsel)
1791 new_val = ((fmt == 12 || fmt == 17 || fmt == 22) ? 8 : 0);
1794 new_val = hppa_field_adjust (* valP, 0, hppa_fixP->fx_r_field);
1796 /* Handle pc-relative exceptions from above. */
1797 if ((fmt == 12 || fmt == 17 || fmt == 22)
1800 && !arg_reloc_stub_needed (symbol_arg_reloc_info (fixP->fx_addsy),
1801 hppa_fixP->fx_arg_reloc)
1803 && (* valP - 8 + 8192 < 16384
1804 || (fmt == 17 && * valP - 8 + 262144 < 524288)
1805 || (fmt == 22 && * valP - 8 + 8388608 < 16777216))
1808 && (* valP - 8 + 262144 < 524288
1809 || (fmt == 22 && * valP - 8 + 8388608 < 16777216))
1811 && !S_IS_EXTERNAL (fixP->fx_addsy)
1812 && !S_IS_WEAK (fixP->fx_addsy)
1813 && S_GET_SEGMENT (fixP->fx_addsy) == hppa_fixP->segment
1815 && S_GET_SEGMENT (fixP->fx_subsy) != hppa_fixP->segment))
1817 new_val = hppa_field_adjust (* valP, 0, hppa_fixP->fx_r_field);
1823 CHECK_FIELD_WHERE (new_val, 8191, -8192,
1824 fixP->fx_file, fixP->fx_line);
1827 insn = (insn & ~ 0x3ff1) | (((val & 0x1ff8) << 1)
1828 | ((val & 0x2000) >> 13));
1831 CHECK_FIELD_WHERE (new_val, 8191, -8192,
1832 fixP->fx_file, fixP->fx_line);
1835 insn = (insn & ~ 0x3ff9) | (((val & 0x1ffc) << 1)
1836 | ((val & 0x2000) >> 13));
1838 /* Handle all opcodes with the 'j' operand type. */
1840 CHECK_FIELD_WHERE (new_val, 8191, -8192,
1841 fixP->fx_file, fixP->fx_line);
1844 insn = ((insn & ~ 0x3fff) | low_sign_unext (val, 14));
1847 /* Handle all opcodes with the 'k' operand type. */
1849 CHECK_FIELD_WHERE (new_val, 1048575, -1048576,
1850 fixP->fx_file, fixP->fx_line);
1853 insn = (insn & ~ 0x1fffff) | re_assemble_21 (val);
1856 /* Handle all the opcodes with the 'i' operand type. */
1858 CHECK_FIELD_WHERE (new_val, 1023, -1024,
1859 fixP->fx_file, fixP->fx_line);
1862 insn = (insn & ~ 0x7ff) | low_sign_unext (val, 11);
1865 /* Handle all the opcodes with the 'w' operand type. */
1867 CHECK_FIELD_WHERE (new_val - 8, 8191, -8192,
1868 fixP->fx_file, fixP->fx_line);
1871 insn = (insn & ~ 0x1ffd) | re_assemble_12 (val >> 2);
1874 /* Handle some of the opcodes with the 'W' operand type. */
1877 offsetT distance = * valP;
1879 /* If this is an absolute branch (ie no link) with an out of
1880 range target, then we want to complain. */
1881 if (fixP->fx_r_type == (int) R_HPPA_PCREL_CALL
1882 && (insn & 0xffe00000) == 0xe8000000)
1883 CHECK_FIELD_WHERE (distance - 8, 262143, -262144,
1884 fixP->fx_file, fixP->fx_line);
1886 CHECK_FIELD_WHERE (new_val - 8, 262143, -262144,
1887 fixP->fx_file, fixP->fx_line);
1890 insn = (insn & ~ 0x1f1ffd) | re_assemble_17 (val >> 2);
1896 offsetT distance = * valP;
1898 /* If this is an absolute branch (ie no link) with an out of
1899 range target, then we want to complain. */
1900 if (fixP->fx_r_type == (int) R_HPPA_PCREL_CALL
1901 && (insn & 0xffe00000) == 0xe8000000)
1902 CHECK_FIELD_WHERE (distance - 8, 8388607, -8388608,
1903 fixP->fx_file, fixP->fx_line);
1905 CHECK_FIELD_WHERE (new_val - 8, 8388607, -8388608,
1906 fixP->fx_file, fixP->fx_line);
1909 insn = (insn & ~ 0x3ff1ffd) | re_assemble_22 (val >> 2);
1915 insn = (insn & ~ 0xfff1) | re_assemble_16 (val & -8);
1920 insn = (insn & ~ 0xfff9) | re_assemble_16 (val & -4);
1925 insn = (insn & ~ 0xffff) | re_assemble_16 (val);
1933 as_bad_where (fixP->fx_file, fixP->fx_line,
1934 _("Unknown relocation encountered in md_apply_fix."));
1939 switch (fixP->fx_r_type)
1941 case R_PARISC_TLS_GD21L:
1942 case R_PARISC_TLS_GD14R:
1943 case R_PARISC_TLS_LDM21L:
1944 case R_PARISC_TLS_LDM14R:
1945 case R_PARISC_TLS_LE21L:
1946 case R_PARISC_TLS_LE14R:
1947 case R_PARISC_TLS_IE21L:
1948 case R_PARISC_TLS_IE14R:
1950 S_SET_THREAD_LOCAL (fixP->fx_addsy);
1957 /* Insert the relocation. */
1958 bfd_put_32 (stdoutput, insn, fixpos);
1961 /* Exactly what point is a PC-relative offset relative TO?
1962 On the PA, they're relative to the address of the offset. */
1965 md_pcrel_from (fixS *fixP)
1967 return fixP->fx_where + fixP->fx_frag->fr_address;
1970 /* Return nonzero if the input line pointer is at the end of
1974 is_end_of_statement (void)
1976 return ((*input_line_pointer == '\n')
1977 || (*input_line_pointer == ';')
1978 || (*input_line_pointer == '!'));
1981 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
1983 /* Given NAME, find the register number associated with that name, return
1984 the integer value associated with the given name or -1 on failure. */
1987 reg_name_search (char *name)
1989 int middle, low, high;
1993 high = REG_NAME_CNT - 1;
1997 middle = (low + high) / 2;
1998 cmp = strcasecmp (name, pre_defined_registers[middle].name);
2004 return pre_defined_registers[middle].value;
2006 while (low <= high);
2011 /* Read a number from S. The number might come in one of many forms,
2012 the most common will be a hex or decimal constant, but it could be
2013 a pre-defined register (Yuk!), or an absolute symbol.
2015 Return 1 on success or 0 on failure. If STRICT, then a missing
2016 register prefix will cause a failure. The number itself is
2017 returned in `pa_number'.
2019 IS_FLOAT indicates that a PA-89 FP register number should be
2020 parsed; A `l' or `r' suffix is checked for if but 2 of IS_FLOAT is
2023 pa_parse_number can not handle negative constants and will fail
2024 horribly if it is passed such a constant. */
2027 pa_parse_number (char **s, int is_float)
2035 bfd_boolean have_prefix;
2037 /* Skip whitespace before the number. */
2038 while (*p == ' ' || *p == '\t')
2044 if (!strict && ISDIGIT (*p))
2046 /* Looks like a number. */
2048 if (*p == '0' && (*(p + 1) == 'x' || *(p + 1) == 'X'))
2050 /* The number is specified in hex. */
2052 while (ISDIGIT (*p) || ((*p >= 'a') && (*p <= 'f'))
2053 || ((*p >= 'A') && (*p <= 'F')))
2056 num = num * 16 + *p - '0';
2057 else if (*p >= 'a' && *p <= 'f')
2058 num = num * 16 + *p - 'a' + 10;
2060 num = num * 16 + *p - 'A' + 10;
2066 /* The number is specified in decimal. */
2067 while (ISDIGIT (*p))
2069 num = num * 10 + *p - '0';
2076 /* Check for a `l' or `r' suffix. */
2079 pa_number += FP_REG_BASE;
2080 if (! (is_float & 2))
2082 if (IS_R_SELECT (p))
2084 pa_number += FP_REG_RSEL;
2087 else if (IS_L_SELECT (p))
2096 /* The number might be a predefined register. */
2101 /* Tege hack: Special case for general registers as the general
2102 code makes a binary search with case translation, and is VERY
2107 if (*p == 'e' && *(p + 1) == 't'
2108 && (*(p + 2) == '0' || *(p + 2) == '1'))
2111 num = *p - '0' + 28;
2119 else if (!ISDIGIT (*p))
2122 as_bad (_("Undefined register: '%s'."), name);
2128 num = num * 10 + *p++ - '0';
2129 while (ISDIGIT (*p));
2134 /* Do a normal register search. */
2135 while (is_part_of_name (c))
2141 status = reg_name_search (name);
2147 as_bad (_("Undefined register: '%s'."), name);
2157 /* And finally, it could be a symbol in the absolute section which
2158 is effectively a constant, or a register alias symbol. */
2161 while (is_part_of_name (c))
2167 if ((sym = symbol_find (name)) != NULL)
2169 if (S_GET_SEGMENT (sym) == reg_section)
2171 num = S_GET_VALUE (sym);
2172 /* Well, we don't really have one, but we do have a
2176 else if (S_GET_SEGMENT (sym) == &bfd_abs_section)
2177 num = S_GET_VALUE (sym);
2181 as_bad (_("Non-absolute symbol: '%s'."), name);
2187 /* There is where we'd come for an undefined symbol
2188 or for an empty string. For an empty string we
2189 will return zero. That's a concession made for
2190 compatibility with the braindamaged HP assemblers. */
2196 as_bad (_("Undefined absolute constant: '%s'."), name);
2205 if (!strict || have_prefix)
2213 /* Return nonzero if the given INSN and L/R information will require
2214 a new PA-1.1 opcode. */
2217 need_pa11_opcode (void)
2219 if ((pa_number & FP_REG_RSEL) != 0
2220 && !(the_insn.fpof1 == DBL && the_insn.fpof2 == DBL))
2222 /* If this instruction is specific to a particular architecture,
2223 then set a new architecture. */
2224 if (bfd_get_mach (stdoutput) < pa11)
2226 if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, pa11))
2227 as_warn (_("could not update architecture and machine"));
2235 /* Parse a condition for a fcmp instruction. Return the numerical
2236 code associated with the condition. */
2239 pa_parse_fp_cmp_cond (char **s)
2245 for (i = 0; i < 32; i++)
2247 if (strncasecmp (*s, fp_cond_map[i].string,
2248 strlen (fp_cond_map[i].string)) == 0)
2250 cond = fp_cond_map[i].cond;
2251 *s += strlen (fp_cond_map[i].string);
2252 /* If not a complete match, back up the input string and
2254 if (**s != ' ' && **s != '\t')
2256 *s -= strlen (fp_cond_map[i].string);
2259 while (**s == ' ' || **s == '\t')
2265 as_bad (_("Invalid FP Compare Condition: %s"), *s);
2267 /* Advance over the bogus completer. */
2268 while (**s != ',' && **s != ' ' && **s != '\t')
2274 /* Parse a graphics test complete for ftest. */
2277 pa_parse_ftest_gfx_completer (char **s)
2282 if (strncasecmp (*s, "acc8", 4) == 0)
2287 else if (strncasecmp (*s, "acc6", 4) == 0)
2292 else if (strncasecmp (*s, "acc4", 4) == 0)
2297 else if (strncasecmp (*s, "acc2", 4) == 0)
2302 else if (strncasecmp (*s, "acc", 3) == 0)
2307 else if (strncasecmp (*s, "rej8", 4) == 0)
2312 else if (strncasecmp (*s, "rej", 3) == 0)
2320 as_bad (_("Invalid FTEST completer: %s"), *s);
2326 /* Parse an FP operand format completer returning the completer
2329 static fp_operand_format
2330 pa_parse_fp_cnv_format (char **s)
2338 if (strncasecmp (*s, "sgl", 3) == 0)
2343 else if (strncasecmp (*s, "dbl", 3) == 0)
2348 else if (strncasecmp (*s, "quad", 4) == 0)
2353 else if (strncasecmp (*s, "w", 1) == 0)
2358 else if (strncasecmp (*s, "uw", 2) == 0)
2363 else if (strncasecmp (*s, "dw", 2) == 0)
2368 else if (strncasecmp (*s, "udw", 3) == 0)
2373 else if (strncasecmp (*s, "qw", 2) == 0)
2378 else if (strncasecmp (*s, "uqw", 3) == 0)
2385 format = ILLEGAL_FMT;
2386 as_bad (_("Invalid FP Operand Format: %3s"), *s);
2393 /* Parse an FP operand format completer returning the completer
2396 static fp_operand_format
2397 pa_parse_fp_format (char **s)
2405 if (strncasecmp (*s, "sgl", 3) == 0)
2410 else if (strncasecmp (*s, "dbl", 3) == 0)
2415 else if (strncasecmp (*s, "quad", 4) == 0)
2422 format = ILLEGAL_FMT;
2423 as_bad (_("Invalid FP Operand Format: %3s"), *s);
2430 /* Convert from a selector string into a selector type. */
2433 pa_chk_field_selector (char **str)
2435 int middle, low, high;
2439 /* Read past any whitespace. */
2440 /* FIXME: should we read past newlines and formfeeds??? */
2441 while (**str == ' ' || **str == '\t' || **str == '\n' || **str == '\f')
2444 if ((*str)[1] == '\'' || (*str)[1] == '%')
2445 name[0] = TOLOWER ((*str)[0]),
2447 else if ((*str)[2] == '\'' || (*str)[2] == '%')
2448 name[0] = TOLOWER ((*str)[0]),
2449 name[1] = TOLOWER ((*str)[1]),
2451 else if ((*str)[3] == '\'' || (*str)[3] == '%')
2452 name[0] = TOLOWER ((*str)[0]),
2453 name[1] = TOLOWER ((*str)[1]),
2454 name[2] = TOLOWER ((*str)[2]),
2460 high = sizeof (selector_table) / sizeof (struct selector_entry) - 1;
2464 middle = (low + high) / 2;
2465 cmp = strcmp (name, selector_table[middle].prefix);
2472 *str += strlen (name) + 1;
2474 if (selector_table[middle].field_selector == e_nsel)
2477 return selector_table[middle].field_selector;
2480 while (low <= high);
2485 /* Parse a .byte, .word, .long expression for the HPPA. Called by
2486 cons via the TC_PARSE_CONS_EXPRESSION macro. */
2489 parse_cons_expression_hppa (expressionS *exp)
2491 hppa_field_selector = pa_chk_field_selector (&input_line_pointer);
2495 /* Evaluate an absolute expression EXP which may be modified by
2496 the selector FIELD_SELECTOR. Return the value of the expression. */
2498 evaluate_absolute (struct pa_it *insn)
2502 int field_selector = insn->field_selector;
2505 value = exp.X_add_number;
2507 return hppa_field_adjust (0, value, field_selector);
2510 /* Mark (via expr_end) the end of an absolute expression. FIXME. */
2513 pa_get_absolute_expression (struct pa_it *insn, char **strp)
2517 insn->field_selector = pa_chk_field_selector (strp);
2518 save_in = input_line_pointer;
2519 input_line_pointer = *strp;
2520 expression (&insn->exp);
2521 /* This is not perfect, but is a huge improvement over doing nothing.
2523 The PA assembly syntax is ambiguous in a variety of ways. Consider
2524 this string "4 %r5" Is that the number 4 followed by the register
2525 r5, or is that 4 MOD r5?
2527 If we get a modulo expression when looking for an absolute, we try
2528 again cutting off the input string at the first whitespace character. */
2529 if (insn->exp.X_op == O_modulus)
2534 input_line_pointer = *strp;
2536 while (*s != ',' && *s != ' ' && *s != '\t')
2542 retval = pa_get_absolute_expression (insn, strp);
2544 input_line_pointer = save_in;
2546 return evaluate_absolute (insn);
2548 /* When in strict mode we have a non-match, fix up the pointers
2549 and return to our caller. */
2550 if (insn->exp.X_op != O_constant && strict)
2552 expr_end = input_line_pointer;
2553 input_line_pointer = save_in;
2556 if (insn->exp.X_op != O_constant)
2558 as_bad (_("Bad segment (should be absolute)."));
2559 expr_end = input_line_pointer;
2560 input_line_pointer = save_in;
2563 expr_end = input_line_pointer;
2564 input_line_pointer = save_in;
2565 return evaluate_absolute (insn);
2568 /* Given an argument location specification return the associated
2569 argument location number. */
2572 pa_build_arg_reloc (char *type_name)
2575 if (strncasecmp (type_name, "no", 2) == 0)
2577 if (strncasecmp (type_name, "gr", 2) == 0)
2579 else if (strncasecmp (type_name, "fr", 2) == 0)
2581 else if (strncasecmp (type_name, "fu", 2) == 0)
2584 as_bad (_("Invalid argument location: %s\n"), type_name);
2589 /* Encode and return an argument relocation specification for
2590 the given register in the location specified by arg_reloc. */
2593 pa_align_arg_reloc (unsigned int reg, unsigned int arg_reloc)
2595 unsigned int new_reloc;
2597 new_reloc = arg_reloc;
2613 as_bad (_("Invalid argument description: %d"), reg);
2619 /* Parse a non-negated compare/subtract completer returning the
2620 number (for encoding in instructions) of the given completer. */
2623 pa_parse_nonneg_cmpsub_cmpltr (char **s)
2626 char *name = *s + 1;
2635 while (**s != ',' && **s != ' ' && **s != '\t')
2640 if (strcmp (name, "=") == 0)
2644 else if (strcmp (name, "<") == 0)
2648 else if (strcmp (name, "<=") == 0)
2652 else if (strcmp (name, "<<") == 0)
2656 else if (strcmp (name, "<<=") == 0)
2660 else if (strcasecmp (name, "sv") == 0)
2664 else if (strcasecmp (name, "od") == 0)
2668 /* If we have something like addb,n then there is no condition
2670 else if (strcasecmp (name, "n") == 0)
2682 /* Reset pointers if this was really a ,n for a branch instruction. */
2689 /* Parse a negated compare/subtract completer returning the
2690 number (for encoding in instructions) of the given completer. */
2693 pa_parse_neg_cmpsub_cmpltr (char **s)
2696 char *name = *s + 1;
2705 while (**s != ',' && **s != ' ' && **s != '\t')
2710 if (strcasecmp (name, "tr") == 0)
2714 else if (strcmp (name, "<>") == 0)
2718 else if (strcmp (name, ">=") == 0)
2722 else if (strcmp (name, ">") == 0)
2726 else if (strcmp (name, ">>=") == 0)
2730 else if (strcmp (name, ">>") == 0)
2734 else if (strcasecmp (name, "nsv") == 0)
2738 else if (strcasecmp (name, "ev") == 0)
2742 /* If we have something like addb,n then there is no condition
2744 else if (strcasecmp (name, "n") == 0)
2756 /* Reset pointers if this was really a ,n for a branch instruction. */
2763 /* Parse a 64 bit compare and branch completer returning the number (for
2764 encoding in instructions) of the given completer.
2766 Nonnegated comparisons are returned as 0-7, negated comparisons are
2767 returned as 8-15. */
2770 pa_parse_cmpb_64_cmpltr (char **s)
2773 char *name = *s + 1;
2780 while (**s != ',' && **s != ' ' && **s != '\t')
2785 if (strcmp (name, "*") == 0)
2789 else if (strcmp (name, "*=") == 0)
2793 else if (strcmp (name, "*<") == 0)
2797 else if (strcmp (name, "*<=") == 0)
2801 else if (strcmp (name, "*<<") == 0)
2805 else if (strcmp (name, "*<<=") == 0)
2809 else if (strcasecmp (name, "*sv") == 0)
2813 else if (strcasecmp (name, "*od") == 0)
2817 else if (strcasecmp (name, "*tr") == 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, "*nsv") == 0)
2845 else if (strcasecmp (name, "*ev") == 0)
2859 /* Parse a 64 bit compare immediate and branch completer returning the number
2860 (for encoding in instructions) of the given completer. */
2863 pa_parse_cmpib_64_cmpltr (char **s)
2866 char *name = *s + 1;
2873 while (**s != ',' && **s != ' ' && **s != '\t')
2878 if (strcmp (name, "*<<") == 0)
2882 else if (strcmp (name, "*=") == 0)
2886 else if (strcmp (name, "*<") == 0)
2890 else if (strcmp (name, "*<=") == 0)
2894 else if (strcmp (name, "*>>=") == 0)
2898 else if (strcmp (name, "*<>") == 0)
2902 else if (strcasecmp (name, "*>=") == 0)
2906 else if (strcasecmp (name, "*>") == 0)
2920 /* Parse a non-negated addition completer returning the number
2921 (for encoding in instructions) of the given completer. */
2924 pa_parse_nonneg_add_cmpltr (char **s)
2927 char *name = *s + 1;
2936 while (**s != ',' && **s != ' ' && **s != '\t')
2940 if (strcmp (name, "=") == 0)
2944 else if (strcmp (name, "<") == 0)
2948 else if (strcmp (name, "<=") == 0)
2952 else if (strcasecmp (name, "nuv") == 0)
2956 else if (strcasecmp (name, "znv") == 0)
2960 else if (strcasecmp (name, "sv") == 0)
2964 else if (strcasecmp (name, "od") == 0)
2968 /* If we have something like addb,n then there is no condition
2970 else if (strcasecmp (name, "n") == 0)
2982 /* Reset pointers if this was really a ,n for a branch instruction. */
2989 /* Parse a negated addition completer returning the number
2990 (for encoding in instructions) of the given completer. */
2993 pa_parse_neg_add_cmpltr (char **s)
2996 char *name = *s + 1;
3005 while (**s != ',' && **s != ' ' && **s != '\t')
3009 if (strcasecmp (name, "tr") == 0)
3013 else if (strcmp (name, "<>") == 0)
3017 else if (strcmp (name, ">=") == 0)
3021 else if (strcmp (name, ">") == 0)
3025 else if (strcasecmp (name, "uv") == 0)
3029 else if (strcasecmp (name, "vnz") == 0)
3033 else if (strcasecmp (name, "nsv") == 0)
3037 else if (strcasecmp (name, "ev") == 0)
3041 /* If we have something like addb,n then there is no condition
3043 else if (strcasecmp (name, "n") == 0)
3055 /* Reset pointers if this was really a ,n for a branch instruction. */
3062 /* Parse a 64 bit wide mode add and branch completer returning the number (for
3063 encoding in instructions) of the given completer. */
3066 pa_parse_addb_64_cmpltr (char **s)
3069 char *name = *s + 1;
3078 while (**s != ',' && **s != ' ' && **s != '\t')
3082 if (strcmp (name, "=") == 0)
3086 else if (strcmp (name, "<") == 0)
3090 else if (strcmp (name, "<=") == 0)
3094 else if (strcasecmp (name, "nuv") == 0)
3098 else if (strcasecmp (name, "*=") == 0)
3102 else if (strcasecmp (name, "*<") == 0)
3106 else if (strcasecmp (name, "*<=") == 0)
3110 else if (strcmp (name, "tr") == 0)
3114 else if (strcmp (name, "<>") == 0)
3118 else if (strcmp (name, ">=") == 0)
3122 else if (strcmp (name, ">") == 0)
3126 else if (strcasecmp (name, "uv") == 0)
3130 else if (strcasecmp (name, "*<>") == 0)
3134 else if (strcasecmp (name, "*>=") == 0)
3138 else if (strcasecmp (name, "*>") == 0)
3142 /* If we have something like addb,n then there is no condition
3144 else if (strcasecmp (name, "n") == 0)
3156 /* Reset pointers if this was really a ,n for a branch instruction. */
3163 /* Do the real work for assembling a single instruction. Store results
3164 into the global "the_insn" variable. */
3169 char *error_message = "";
3170 char *s, c, *argstart, *name, *save_s;
3174 int cmpltr, nullif, flag, cond, num;
3175 unsigned long opcode;
3176 struct pa_opcode *insn;
3179 /* We must have a valid space and subspace. */
3180 pa_check_current_space_and_subspace ();
3183 /* Convert everything up to the first whitespace character into lower
3185 for (s = str; *s != ' ' && *s != '\t' && *s != '\n' && *s != '\0'; s++)
3188 /* Skip to something interesting. */
3190 ISUPPER (*s) || ISLOWER (*s) || (*s >= '0' && *s <= '3');
3210 as_bad (_("Unknown opcode: `%s'"), str);
3214 /* Look up the opcode in the hash table. */
3215 if ((insn = (struct pa_opcode *) hash_find (op_hash, str)) == NULL)
3217 as_bad ("Unknown opcode: `%s'", str);
3224 /* Mark the location where arguments for the instruction start, then
3225 start processing them. */
3229 /* Do some initialization. */
3230 opcode = insn->match;
3231 strict = (insn->flags & FLAG_STRICT);
3232 memset (&the_insn, 0, sizeof (the_insn));
3234 the_insn.reloc = R_HPPA_NONE;
3236 if (insn->arch >= pa20
3237 && bfd_get_mach (stdoutput) < insn->arch)
3240 /* Build the opcode, checking as we go to make
3241 sure that the operands match. */
3242 for (args = insn->args;; ++args)
3244 /* Absorb white space in instruction. */
3245 while (*s == ' ' || *s == '\t')
3250 /* End of arguments. */
3266 /* These must match exactly. */
3275 /* Handle a 5 bit register or control register field at 10. */
3278 if (!pa_parse_number (&s, 0))
3281 CHECK_FIELD (num, 31, 0, 0);
3282 INSERT_FIELD_AND_CONTINUE (opcode, num, 21);
3284 /* Handle %sar or %cr11. No bits get set, we just verify that it
3287 /* Skip whitespace before register. */
3288 while (*s == ' ' || *s == '\t')
3291 if (!strncasecmp (s, "%sar", 4))
3296 else if (!strncasecmp (s, "%cr11", 5))
3303 /* Handle a 5 bit register field at 15. */
3305 if (!pa_parse_number (&s, 0))
3308 CHECK_FIELD (num, 31, 0, 0);
3309 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
3311 /* Handle a 5 bit register field at 31. */
3313 if (!pa_parse_number (&s, 0))
3316 CHECK_FIELD (num, 31, 0, 0);
3317 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
3319 /* Handle a 5 bit register field at 10 and 15. */
3321 if (!pa_parse_number (&s, 0))
3324 CHECK_FIELD (num, 31, 0, 0);
3325 opcode |= num << 16;
3326 INSERT_FIELD_AND_CONTINUE (opcode, num, 21);
3328 /* Handle a 5 bit field length at 31. */
3330 num = pa_get_absolute_expression (&the_insn, &s);
3331 if (strict && the_insn.exp.X_op != O_constant)
3334 CHECK_FIELD (num, 32, 1, 0);
3335 INSERT_FIELD_AND_CONTINUE (opcode, 32 - num, 0);
3337 /* Handle a 5 bit immediate at 15. */
3339 num = pa_get_absolute_expression (&the_insn, &s);
3340 if (strict && the_insn.exp.X_op != O_constant)
3343 /* When in strict mode, we want to just reject this
3344 match instead of giving an out of range error. */
3345 CHECK_FIELD (num, 15, -16, strict);
3346 num = low_sign_unext (num, 5);
3347 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
3349 /* Handle a 5 bit immediate at 31. */
3351 num = pa_get_absolute_expression (&the_insn, &s);
3352 if (strict && the_insn.exp.X_op != O_constant)
3355 /* When in strict mode, we want to just reject this
3356 match instead of giving an out of range error. */
3357 CHECK_FIELD (num, 15, -16, strict);
3358 num = low_sign_unext (num, 5);
3359 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
3361 /* Handle an unsigned 5 bit immediate 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, 31, 0, strict);
3368 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
3370 /* Handle an unsigned 5 bit immediate at 15. */
3372 num = pa_get_absolute_expression (&the_insn, &s);
3373 if (strict && the_insn.exp.X_op != O_constant)
3376 CHECK_FIELD (num, 31, 0, strict);
3377 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
3379 /* Handle an unsigned 10 bit immediate at 15. */
3381 num = pa_get_absolute_expression (&the_insn, &s);
3382 if (strict && the_insn.exp.X_op != O_constant)
3385 CHECK_FIELD (num, 1023, 0, strict);
3386 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
3388 /* Handle a 2 bit space identifier at 17. */
3390 if (!pa_parse_number (&s, 0))
3393 CHECK_FIELD (num, 3, 0, 1);
3394 INSERT_FIELD_AND_CONTINUE (opcode, num, 14);
3396 /* Handle a 3 bit space identifier at 18. */
3398 if (!pa_parse_number (&s, 0))
3401 CHECK_FIELD (num, 7, 0, 1);
3402 opcode |= re_assemble_3 (num);
3405 /* Handle all completers. */
3410 /* Handle a completer for an indexing load or store. */
3417 while (*s == ',' && i < 2)
3420 if (strncasecmp (s, "sm", 2) == 0)
3427 else if (strncasecmp (s, "m", 1) == 0)
3429 else if ((strncasecmp (s, "s ", 2) == 0)
3430 || (strncasecmp (s, "s,", 2) == 0))
3434 /* This is a match failure. */
3439 as_bad (_("Invalid Indexed Load Completer."));
3444 as_bad (_("Invalid Indexed Load Completer Syntax."));
3446 INSERT_FIELD_AND_CONTINUE (opcode, uu, 13);
3449 /* Handle a short load/store completer. */
3461 if (strncasecmp (s, "ma", 2) == 0)
3467 else if (strncasecmp (s, "mb", 2) == 0)
3474 /* This is a match failure. */
3478 as_bad (_("Invalid Short Load/Store Completer."));
3482 /* If we did not get a ma/mb completer, then we do not
3483 consider this a positive match for 'ce'. */
3484 else if (*args == 'e')
3487 /* 'J', 'm', 'M' and 'q' are the same, except for where they
3488 encode the before/after field. */
3489 if (*args == 'm' || *args == 'M')
3492 INSERT_FIELD_AND_CONTINUE (opcode, a, 13);
3494 else if (*args == 'q')
3497 INSERT_FIELD_AND_CONTINUE (opcode, a, 2);
3499 else if (*args == 'J')
3501 /* M bit is explicit in the major opcode. */
3502 INSERT_FIELD_AND_CONTINUE (opcode, a, 2);
3504 else if (*args == 'e')
3506 /* Stash the ma/mb flag temporarily in the
3507 instruction. We will use (and remove it)
3508 later when handling 'J', 'K', '<' & '>'. */
3514 /* Handle a stbys completer. */
3521 while (*s == ',' && i < 2)
3524 if (strncasecmp (s, "m", 1) == 0)
3526 else if ((strncasecmp (s, "b ", 2) == 0)
3527 || (strncasecmp (s, "b,", 2) == 0))
3529 else if (strncasecmp (s, "e", 1) == 0)
3531 /* In strict mode, this is a match failure. */
3538 as_bad (_("Invalid Store Bytes Short Completer"));
3543 as_bad (_("Invalid Store Bytes Short Completer"));
3545 INSERT_FIELD_AND_CONTINUE (opcode, a, 13);
3548 /* Handle load cache hint completer. */
3551 if (!strncmp (s, ",sl", 3))
3556 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 10);
3558 /* Handle store cache hint completer. */
3561 if (!strncmp (s, ",sl", 3))
3566 else if (!strncmp (s, ",bc", 3))
3571 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 10);
3573 /* Handle load and clear cache hint completer. */
3576 if (!strncmp (s, ",co", 3))
3581 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 10);
3583 /* Handle load ordering completer. */
3585 if (strncmp (s, ",o", 2) != 0)
3590 /* Handle a branch gate completer. */
3592 if (strncasecmp (s, ",gate", 5) != 0)
3597 /* Handle a branch link and push completer. */
3599 if (strncasecmp (s, ",l,push", 7) != 0)
3604 /* Handle a branch link completer. */
3606 if (strncasecmp (s, ",l", 2) != 0)
3611 /* Handle a branch pop completer. */
3613 if (strncasecmp (s, ",pop", 4) != 0)
3618 /* Handle a local processor completer. */
3620 if (strncasecmp (s, ",l", 2) != 0)
3625 /* Handle a PROBE read/write completer. */
3628 if (!strncasecmp (s, ",w", 2))
3633 else if (!strncasecmp (s, ",r", 2))
3639 INSERT_FIELD_AND_CONTINUE (opcode, flag, 6);
3641 /* Handle MFCTL wide completer. */
3643 if (strncasecmp (s, ",w", 2) != 0)
3648 /* Handle an RFI restore completer. */
3651 if (!strncasecmp (s, ",r", 2))
3657 INSERT_FIELD_AND_CONTINUE (opcode, flag, 5);
3659 /* Handle a system control completer. */
3661 if (*s == ',' && (*(s + 1) == 'm' || *(s + 1) == 'M'))
3669 INSERT_FIELD_AND_CONTINUE (opcode, flag, 5);
3671 /* Handle intermediate/final completer for DCOR. */
3674 if (!strncasecmp (s, ",i", 2))
3680 INSERT_FIELD_AND_CONTINUE (opcode, flag, 6);
3682 /* Handle zero/sign extension completer. */
3685 if (!strncasecmp (s, ",z", 2))
3691 INSERT_FIELD_AND_CONTINUE (opcode, flag, 10);
3693 /* Handle add completer. */
3696 if (!strncasecmp (s, ",l", 2))
3701 else if (!strncasecmp (s, ",tsv", 4))
3707 INSERT_FIELD_AND_CONTINUE (opcode, flag, 10);
3709 /* Handle 64 bit carry for ADD. */
3712 if (!strncasecmp (s, ",dc,tsv", 7) ||
3713 !strncasecmp (s, ",tsv,dc", 7))
3718 else if (!strncasecmp (s, ",dc", 3))
3726 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
3728 /* Handle 32 bit carry for ADD. */
3731 if (!strncasecmp (s, ",c,tsv", 6) ||
3732 !strncasecmp (s, ",tsv,c", 6))
3737 else if (!strncasecmp (s, ",c", 2))
3745 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
3747 /* Handle trap on signed overflow. */
3750 if (!strncasecmp (s, ",tsv", 4))
3756 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
3758 /* Handle trap on condition and overflow. */
3761 if (!strncasecmp (s, ",tc,tsv", 7) ||
3762 !strncasecmp (s, ",tsv,tc", 7))
3767 else if (!strncasecmp (s, ",tc", 3))
3775 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
3777 /* Handle 64 bit borrow for SUB. */
3780 if (!strncasecmp (s, ",db,tsv", 7) ||
3781 !strncasecmp (s, ",tsv,db", 7))
3786 else if (!strncasecmp (s, ",db", 3))
3794 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
3796 /* Handle 32 bit borrow for SUB. */
3799 if (!strncasecmp (s, ",b,tsv", 6) ||
3800 !strncasecmp (s, ",tsv,b", 6))
3805 else if (!strncasecmp (s, ",b", 2))
3813 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
3815 /* Handle trap condition completer for UADDCM. */
3818 if (!strncasecmp (s, ",tc", 3))
3824 INSERT_FIELD_AND_CONTINUE (opcode, flag, 6);
3826 /* Handle signed/unsigned at 21. */
3830 if (strncasecmp (s, ",s", 2) == 0)
3835 else if (strncasecmp (s, ",u", 2) == 0)
3841 INSERT_FIELD_AND_CONTINUE (opcode, sign, 10);
3844 /* Handle left/right combination at 17:18. */
3854 as_bad (_("Invalid left/right combination completer"));
3857 INSERT_FIELD_AND_CONTINUE (opcode, lr, 13);
3860 as_bad (_("Invalid left/right combination completer"));
3863 /* Handle saturation at 24:25. */
3867 if (strncasecmp (s, ",ss", 3) == 0)
3872 else if (strncasecmp (s, ",us", 3) == 0)
3878 INSERT_FIELD_AND_CONTINUE (opcode, sat, 6);
3881 /* Handle permutation completer. */
3909 as_bad (_("Invalid permutation completer"));
3911 opcode |= perm << permloc[i];
3916 as_bad (_("Invalid permutation completer"));
3924 /* Handle all conditions. */
3930 /* Handle FP compare conditions. */
3932 cond = pa_parse_fp_cmp_cond (&s);
3933 INSERT_FIELD_AND_CONTINUE (opcode, cond, 0);
3935 /* Handle an add condition. */
3944 /* 64 bit conditions. */
3956 while (*s != ',' && *s != ' ' && *s != '\t')
3960 if (strcmp (name, "=") == 0)
3962 else if (strcmp (name, "<") == 0)
3964 else if (strcmp (name, "<=") == 0)
3966 else if (strcasecmp (name, "nuv") == 0)
3968 else if (strcasecmp (name, "znv") == 0)
3970 else if (strcasecmp (name, "sv") == 0)
3972 else if (strcasecmp (name, "od") == 0)
3974 else if (strcasecmp (name, "tr") == 0)
3979 else if (strcmp (name, "<>") == 0)
3984 else if (strcmp (name, ">=") == 0)
3989 else if (strcmp (name, ">") == 0)
3994 else if (strcasecmp (name, "uv") == 0)
3999 else if (strcasecmp (name, "vnz") == 0)
4004 else if (strcasecmp (name, "nsv") == 0)
4009 else if (strcasecmp (name, "ev") == 0)
4014 /* ",*" is a valid condition. */
4015 else if (*args == 'a' || *name)
4016 as_bad (_("Invalid Add Condition: %s"), name);
4019 opcode |= cmpltr << 13;
4020 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
4022 /* Handle non-negated add and branch condition. */
4024 cmpltr = pa_parse_nonneg_add_cmpltr (&s);
4027 as_bad (_("Invalid Add and Branch Condition"));
4030 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
4032 /* Handle 64 bit wide-mode add and branch condition. */
4034 cmpltr = pa_parse_addb_64_cmpltr (&s);
4037 as_bad (_("Invalid Add and Branch Condition"));
4042 /* Negated condition requires an opcode change. */
4043 opcode |= (cmpltr & 8) << 24;
4045 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr & 7, 13);
4047 /* Handle a negated or non-negated add and branch
4051 cmpltr = pa_parse_nonneg_add_cmpltr (&s);
4055 cmpltr = pa_parse_neg_add_cmpltr (&s);
4058 as_bad (_("Invalid Compare/Subtract Condition"));
4063 /* Negated condition requires an opcode change. */
4067 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
4069 /* Handle branch on bit conditions. */
4087 if (strncmp (s, "<", 1) == 0)
4092 else if (strncmp (s, ">=", 2) == 0)
4098 as_bad (_("Invalid Bit Branch Condition: %c"), *s);
4100 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 15);
4102 /* Handle a compare/subtract condition. */
4111 /* 64 bit conditions. */
4123 while (*s != ',' && *s != ' ' && *s != '\t')
4127 if (strcmp (name, "=") == 0)
4129 else if (strcmp (name, "<") == 0)
4131 else if (strcmp (name, "<=") == 0)
4133 else if (strcasecmp (name, "<<") == 0)
4135 else if (strcasecmp (name, "<<=") == 0)
4137 else if (strcasecmp (name, "sv") == 0)
4139 else if (strcasecmp (name, "od") == 0)
4141 else if (strcasecmp (name, "tr") == 0)
4146 else if (strcmp (name, "<>") == 0)
4151 else if (strcmp (name, ">=") == 0)
4156 else if (strcmp (name, ">") == 0)
4161 else if (strcasecmp (name, ">>=") == 0)
4166 else if (strcasecmp (name, ">>") == 0)
4171 else if (strcasecmp (name, "nsv") == 0)
4176 else if (strcasecmp (name, "ev") == 0)
4181 /* ",*" is a valid condition. */
4182 else if (*args != 'S' || *name)
4183 as_bad (_("Invalid Compare/Subtract Condition: %s"),
4187 opcode |= cmpltr << 13;
4188 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
4190 /* Handle a non-negated compare condition. */
4192 cmpltr = pa_parse_nonneg_cmpsub_cmpltr (&s);
4195 as_bad (_("Invalid Compare/Subtract Condition"));
4198 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
4200 /* Handle a 32 bit compare and branch condition. */
4203 cmpltr = pa_parse_nonneg_cmpsub_cmpltr (&s);
4207 cmpltr = pa_parse_neg_cmpsub_cmpltr (&s);
4210 as_bad (_("Invalid Compare and Branch Condition"));
4215 /* Negated condition requires an opcode change. */
4220 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
4222 /* Handle a 64 bit compare and branch condition. */
4224 cmpltr = pa_parse_cmpb_64_cmpltr (&s);
4227 /* Negated condition requires an opcode change. */
4228 opcode |= (cmpltr & 8) << 26;
4231 /* Not a 64 bit cond. Give 32 bit a chance. */
4234 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr & 7, 13);
4236 /* Handle a 64 bit cmpib condition. */
4238 cmpltr = pa_parse_cmpib_64_cmpltr (&s);
4240 /* Not a 64 bit cond. Give 32 bit a chance. */
4243 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
4245 /* Handle a logical instruction condition. */
4254 /* 64 bit conditions. */
4266 while (*s != ',' && *s != ' ' && *s != '\t')
4271 if (strcmp (name, "=") == 0)
4273 else if (strcmp (name, "<") == 0)
4275 else if (strcmp (name, "<=") == 0)
4277 else if (strcasecmp (name, "od") == 0)
4279 else if (strcasecmp (name, "tr") == 0)
4284 else if (strcmp (name, "<>") == 0)
4289 else if (strcmp (name, ">=") == 0)
4294 else if (strcmp (name, ">") == 0)
4299 else if (strcasecmp (name, "ev") == 0)
4304 /* ",*" is a valid condition. */
4305 else if (*args != 'L' || *name)
4306 as_bad (_("Invalid Logical Instruction Condition."));
4309 opcode |= cmpltr << 13;
4310 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
4312 /* Handle a shift/extract/deposit condition. */
4321 /* 64 bit conditions. */
4333 while (*s != ',' && *s != ' ' && *s != '\t')
4337 if (strcmp (name, "=") == 0)
4339 else if (strcmp (name, "<") == 0)
4341 else if (strcasecmp (name, "od") == 0)
4343 else if (strcasecmp (name, "tr") == 0)
4345 else if (strcmp (name, "<>") == 0)
4347 else if (strcmp (name, ">=") == 0)
4349 else if (strcasecmp (name, "ev") == 0)
4351 /* Handle movb,n. Put things back the way they were.
4352 This includes moving s back to where it started. */
4353 else if (strcasecmp (name, "n") == 0 && *args == 'y')
4359 /* ",*" is a valid condition. */
4360 else if (*args != 'X' || *name)
4361 as_bad (_("Invalid Shift/Extract/Deposit Condition."));
4364 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
4366 /* Handle a unit instruction condition. */
4375 /* 64 bit conditions. */
4386 if (strncasecmp (s, "sbz", 3) == 0)
4391 else if (strncasecmp (s, "shz", 3) == 0)
4396 else if (strncasecmp (s, "sdc", 3) == 0)
4401 else if (strncasecmp (s, "sbc", 3) == 0)
4406 else if (strncasecmp (s, "shc", 3) == 0)
4411 else if (strncasecmp (s, "tr", 2) == 0)
4417 else if (strncasecmp (s, "nbz", 3) == 0)
4423 else if (strncasecmp (s, "nhz", 3) == 0)
4429 else if (strncasecmp (s, "ndc", 3) == 0)
4435 else if (strncasecmp (s, "nbc", 3) == 0)
4441 else if (strncasecmp (s, "nhc", 3) == 0)
4447 else if (strncasecmp (s, "swz", 3) == 0)
4453 else if (strncasecmp (s, "swc", 3) == 0)
4459 else if (strncasecmp (s, "nwz", 3) == 0)
4465 else if (strncasecmp (s, "nwc", 3) == 0)
4471 /* ",*" is a valid condition. */
4472 else if (*args != 'U' || (*s != ' ' && *s != '\t'))
4473 as_bad (_("Invalid Unit Instruction Condition."));
4475 opcode |= cmpltr << 13;
4476 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
4484 /* Handle a nullification completer for branch instructions. */
4486 nullif = pa_parse_nullif (&s);
4487 INSERT_FIELD_AND_CONTINUE (opcode, nullif, 1);
4489 /* Handle a nullification completer for copr and spop insns. */
4491 nullif = pa_parse_nullif (&s);
4492 INSERT_FIELD_AND_CONTINUE (opcode, nullif, 5);
4494 /* Handle ,%r2 completer for new syntax branches. */
4496 if (*s == ',' && strncasecmp (s + 1, "%r2", 3) == 0)
4498 else if (*s == ',' && strncasecmp (s + 1, "%rp", 3) == 0)
4504 /* Handle 3 bit entry into the fp compare array. Valid values
4505 are 0..6 inclusive. */
4509 if (the_insn.exp.X_op == O_constant)
4511 num = evaluate_absolute (&the_insn);
4512 CHECK_FIELD (num, 6, 0, 0);
4514 INSERT_FIELD_AND_CONTINUE (opcode, num, 13);
4519 /* Handle 3 bit entry into the fp compare array. Valid values
4520 are 0..6 inclusive. */
4523 if (the_insn.exp.X_op == O_constant)
4526 num = evaluate_absolute (&the_insn);
4527 CHECK_FIELD (num, 6, 0, 0);
4528 num = (num + 1) ^ 1;
4529 INSERT_FIELD_AND_CONTINUE (opcode, num, 13);
4534 /* Handle graphics test completers for ftest */
4537 num = pa_parse_ftest_gfx_completer (&s);
4538 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4541 /* Handle a 11 bit immediate at 31. */
4543 the_insn.field_selector = pa_chk_field_selector (&s);
4546 if (the_insn.exp.X_op == O_constant)
4548 num = evaluate_absolute (&the_insn);
4549 CHECK_FIELD (num, 1023, -1024, 0);
4550 num = low_sign_unext (num, 11);
4551 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4555 if (is_DP_relative (the_insn.exp))
4556 the_insn.reloc = R_HPPA_GOTOFF;
4557 else if (is_PC_relative (the_insn.exp))
4558 the_insn.reloc = R_HPPA_PCREL_CALL;
4560 else if (is_tls_gdidx (the_insn.exp))
4561 the_insn.reloc = R_PARISC_TLS_GD21L;
4562 else if (is_tls_ldidx (the_insn.exp))
4563 the_insn.reloc = R_PARISC_TLS_LDM21L;
4564 else if (is_tls_dtpoff (the_insn.exp))
4565 the_insn.reloc = R_PARISC_TLS_LDO21L;
4566 else if (is_tls_ieoff (the_insn.exp))
4567 the_insn.reloc = R_PARISC_TLS_IE21L;
4568 else if (is_tls_leoff (the_insn.exp))
4569 the_insn.reloc = R_PARISC_TLS_LE21L;
4572 the_insn.reloc = R_HPPA;
4573 the_insn.format = 11;
4577 /* Handle a 14 bit immediate at 31. */
4579 the_insn.field_selector = pa_chk_field_selector (&s);
4582 if (the_insn.exp.X_op == O_constant)
4586 /* XXX the completer stored away tidbits of information
4587 for us to extract. We need a cleaner way to do this.
4588 Now that we have lots of letters again, it would be
4589 good to rethink this. */
4592 num = evaluate_absolute (&the_insn);
4593 if (mb != (num < 0))
4595 CHECK_FIELD (num, 8191, -8192, 0);
4596 num = low_sign_unext (num, 14);
4597 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4601 /* Handle a 14 bit immediate at 31. */
4603 the_insn.field_selector = pa_chk_field_selector (&s);
4606 if (the_insn.exp.X_op == O_constant)
4612 num = evaluate_absolute (&the_insn);
4613 if (mb == (num < 0))
4617 CHECK_FIELD (num, 8191, -8192, 0);
4618 num = low_sign_unext (num, 14);
4619 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4623 /* Handle a 16 bit immediate at 31. */
4625 the_insn.field_selector = pa_chk_field_selector (&s);
4628 if (the_insn.exp.X_op == O_constant)
4634 num = evaluate_absolute (&the_insn);
4635 if (mb != (num < 0))
4637 CHECK_FIELD (num, 32767, -32768, 0);
4638 num = re_assemble_16 (num);
4639 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4643 /* Handle a 16 bit immediate at 31. */
4645 the_insn.field_selector = pa_chk_field_selector (&s);
4648 if (the_insn.exp.X_op == O_constant)
4654 num = evaluate_absolute (&the_insn);
4655 if (mb == (num < 0))
4659 CHECK_FIELD (num, 32767, -32768, 0);
4660 num = re_assemble_16 (num);
4661 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4665 /* Handle 14 bit immediate, shifted left three times. */
4667 if (bfd_get_mach (stdoutput) != pa20)
4669 the_insn.field_selector = pa_chk_field_selector (&s);
4672 if (the_insn.exp.X_op == O_constant)
4674 num = evaluate_absolute (&the_insn);
4677 CHECK_FIELD (num, 8191, -8192, 0);
4682 INSERT_FIELD_AND_CONTINUE (opcode, num, 4);
4686 if (is_DP_relative (the_insn.exp))
4687 the_insn.reloc = R_HPPA_GOTOFF;
4688 else if (is_PC_relative (the_insn.exp))
4689 the_insn.reloc = R_HPPA_PCREL_CALL;
4691 else if (is_tls_gdidx (the_insn.exp))
4692 the_insn.reloc = R_PARISC_TLS_GD21L;
4693 else if (is_tls_ldidx (the_insn.exp))
4694 the_insn.reloc = R_PARISC_TLS_LDM21L;
4695 else if (is_tls_dtpoff (the_insn.exp))
4696 the_insn.reloc = R_PARISC_TLS_LDO21L;
4697 else if (is_tls_ieoff (the_insn.exp))
4698 the_insn.reloc = R_PARISC_TLS_IE21L;
4699 else if (is_tls_leoff (the_insn.exp))
4700 the_insn.reloc = R_PARISC_TLS_LE21L;
4703 the_insn.reloc = R_HPPA;
4704 the_insn.format = 14;
4709 /* Handle 14 bit immediate, shifted left twice. */
4711 the_insn.field_selector = pa_chk_field_selector (&s);
4714 if (the_insn.exp.X_op == O_constant)
4716 num = evaluate_absolute (&the_insn);
4719 CHECK_FIELD (num, 8191, -8192, 0);
4724 INSERT_FIELD_AND_CONTINUE (opcode, num, 3);
4728 if (is_DP_relative (the_insn.exp))
4729 the_insn.reloc = R_HPPA_GOTOFF;
4730 else if (is_PC_relative (the_insn.exp))
4731 the_insn.reloc = R_HPPA_PCREL_CALL;
4733 else if (is_tls_gdidx (the_insn.exp))
4734 the_insn.reloc = R_PARISC_TLS_GD21L;
4735 else if (is_tls_ldidx (the_insn.exp))
4736 the_insn.reloc = R_PARISC_TLS_LDM21L;
4737 else if (is_tls_dtpoff (the_insn.exp))
4738 the_insn.reloc = R_PARISC_TLS_LDO21L;
4739 else if (is_tls_ieoff (the_insn.exp))
4740 the_insn.reloc = R_PARISC_TLS_IE21L;
4741 else if (is_tls_leoff (the_insn.exp))
4742 the_insn.reloc = R_PARISC_TLS_LE21L;
4745 the_insn.reloc = R_HPPA;
4746 the_insn.format = 14;
4750 /* Handle a 14 bit immediate at 31. */
4752 the_insn.field_selector = pa_chk_field_selector (&s);
4755 if (the_insn.exp.X_op == O_constant)
4757 num = evaluate_absolute (&the_insn);
4758 CHECK_FIELD (num, 8191, -8192, 0);
4759 num = low_sign_unext (num, 14);
4760 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
4764 if (is_DP_relative (the_insn.exp))
4765 the_insn.reloc = R_HPPA_GOTOFF;
4766 else if (is_PC_relative (the_insn.exp))
4767 the_insn.reloc = R_HPPA_PCREL_CALL;
4769 else if (is_tls_gdidx (the_insn.exp))
4770 the_insn.reloc = R_PARISC_TLS_GD21L;
4771 else if (is_tls_ldidx (the_insn.exp))
4772 the_insn.reloc = R_PARISC_TLS_LDM21L;
4773 else if (is_tls_dtpoff (the_insn.exp))
4774 the_insn.reloc = R_PARISC_TLS_LDO21L;
4775 else if (is_tls_ieoff (the_insn.exp))
4776 the_insn.reloc = R_PARISC_TLS_IE21L;
4777 else if (is_tls_leoff (the_insn.exp))
4778 the_insn.reloc = R_PARISC_TLS_LE21L;
4781 the_insn.reloc = R_HPPA;
4782 the_insn.format = 14;
4786 /* Handle a 21 bit immediate at 31. */
4788 the_insn.field_selector = pa_chk_field_selector (&s);
4791 if (the_insn.exp.X_op == O_constant)
4793 num = evaluate_absolute (&the_insn);
4794 CHECK_FIELD (num >> 11, 1048575, -1048576, 0);
4795 opcode |= re_assemble_21 (num);
4800 if (is_DP_relative (the_insn.exp))
4801 the_insn.reloc = R_HPPA_GOTOFF;
4802 else if (is_PC_relative (the_insn.exp))
4803 the_insn.reloc = R_HPPA_PCREL_CALL;
4805 else if (is_tls_gdidx (the_insn.exp))
4806 the_insn.reloc = R_PARISC_TLS_GD21L;
4807 else if (is_tls_ldidx (the_insn.exp))
4808 the_insn.reloc = R_PARISC_TLS_LDM21L;
4809 else if (is_tls_dtpoff (the_insn.exp))
4810 the_insn.reloc = R_PARISC_TLS_LDO21L;
4811 else if (is_tls_ieoff (the_insn.exp))
4812 the_insn.reloc = R_PARISC_TLS_IE21L;
4813 else if (is_tls_leoff (the_insn.exp))
4814 the_insn.reloc = R_PARISC_TLS_LE21L;
4817 the_insn.reloc = R_HPPA;
4818 the_insn.format = 21;
4822 /* Handle a 16 bit immediate at 31 (PA 2.0 wide mode only). */
4824 the_insn.field_selector = pa_chk_field_selector (&s);
4827 if (the_insn.exp.X_op == O_constant)
4829 num = evaluate_absolute (&the_insn);
4830 CHECK_FIELD (num, 32767, -32768, 0);
4831 opcode |= re_assemble_16 (num);
4836 /* ??? Is this valid for wide mode? */
4837 if (is_DP_relative (the_insn.exp))
4838 the_insn.reloc = R_HPPA_GOTOFF;
4839 else if (is_PC_relative (the_insn.exp))
4840 the_insn.reloc = R_HPPA_PCREL_CALL;
4842 else if (is_tls_gdidx (the_insn.exp))
4843 the_insn.reloc = R_PARISC_TLS_GD21L;
4844 else if (is_tls_ldidx (the_insn.exp))
4845 the_insn.reloc = R_PARISC_TLS_LDM21L;
4846 else if (is_tls_dtpoff (the_insn.exp))
4847 the_insn.reloc = R_PARISC_TLS_LDO21L;
4848 else if (is_tls_ieoff (the_insn.exp))
4849 the_insn.reloc = R_PARISC_TLS_IE21L;
4850 else if (is_tls_leoff (the_insn.exp))
4851 the_insn.reloc = R_PARISC_TLS_LE21L;
4854 the_insn.reloc = R_HPPA;
4855 the_insn.format = 14;
4859 /* Handle a word-aligned 16-bit imm. at 31 (PA2.0 wide). */
4861 the_insn.field_selector = pa_chk_field_selector (&s);
4864 if (the_insn.exp.X_op == O_constant)
4866 num = evaluate_absolute (&the_insn);
4867 CHECK_FIELD (num, 32767, -32768, 0);
4868 CHECK_ALIGN (num, 4, 0);
4869 opcode |= re_assemble_16 (num);
4874 /* ??? Is this valid for wide mode? */
4875 if (is_DP_relative (the_insn.exp))
4876 the_insn.reloc = R_HPPA_GOTOFF;
4877 else if (is_PC_relative (the_insn.exp))
4878 the_insn.reloc = R_HPPA_PCREL_CALL;
4880 else if (is_tls_gdidx (the_insn.exp))
4881 the_insn.reloc = R_PARISC_TLS_GD21L;
4882 else if (is_tls_ldidx (the_insn.exp))
4883 the_insn.reloc = R_PARISC_TLS_LDM21L;
4884 else if (is_tls_dtpoff (the_insn.exp))
4885 the_insn.reloc = R_PARISC_TLS_LDO21L;
4886 else if (is_tls_ieoff (the_insn.exp))
4887 the_insn.reloc = R_PARISC_TLS_IE21L;
4888 else if (is_tls_leoff (the_insn.exp))
4889 the_insn.reloc = R_PARISC_TLS_LE21L;
4892 the_insn.reloc = R_HPPA;
4893 the_insn.format = 14;
4897 /* Handle a dword-aligned 16-bit imm. at 31 (PA2.0 wide). */
4899 the_insn.field_selector = pa_chk_field_selector (&s);
4902 if (the_insn.exp.X_op == O_constant)
4904 num = evaluate_absolute (&the_insn);
4905 CHECK_FIELD (num, 32767, -32768, 0);
4906 CHECK_ALIGN (num, 8, 0);
4907 opcode |= re_assemble_16 (num);
4912 /* ??? Is this valid for wide mode? */
4913 if (is_DP_relative (the_insn.exp))
4914 the_insn.reloc = R_HPPA_GOTOFF;
4915 else if (is_PC_relative (the_insn.exp))
4916 the_insn.reloc = R_HPPA_PCREL_CALL;
4918 else if (is_tls_gdidx (the_insn.exp))
4919 the_insn.reloc = R_PARISC_TLS_GD21L;
4920 else if (is_tls_ldidx (the_insn.exp))
4921 the_insn.reloc = R_PARISC_TLS_LDM21L;
4922 else if (is_tls_dtpoff (the_insn.exp))
4923 the_insn.reloc = R_PARISC_TLS_LDO21L;
4924 else if (is_tls_ieoff (the_insn.exp))
4925 the_insn.reloc = R_PARISC_TLS_IE21L;
4926 else if (is_tls_leoff (the_insn.exp))
4927 the_insn.reloc = R_PARISC_TLS_LE21L;
4930 the_insn.reloc = R_HPPA;
4931 the_insn.format = 14;
4935 /* Handle a 12 bit branch displacement. */
4937 the_insn.field_selector = pa_chk_field_selector (&s);
4941 if (!the_insn.exp.X_add_symbol
4942 || !strcmp (S_GET_NAME (the_insn.exp.X_add_symbol),
4945 num = evaluate_absolute (&the_insn);
4948 as_bad (_("Branch to unaligned address"));
4951 if (the_insn.exp.X_add_symbol)
4953 CHECK_FIELD (num, 8191, -8192, 0);
4954 opcode |= re_assemble_12 (num >> 2);
4959 the_insn.reloc = R_HPPA_PCREL_CALL;
4960 the_insn.format = 12;
4961 the_insn.arg_reloc = last_call_desc.arg_reloc;
4962 memset (&last_call_desc, 0, sizeof (struct call_desc));
4967 /* Handle a 17 bit branch displacement. */
4969 the_insn.field_selector = pa_chk_field_selector (&s);
4973 if (!the_insn.exp.X_add_symbol
4974 || !strcmp (S_GET_NAME (the_insn.exp.X_add_symbol),
4977 num = evaluate_absolute (&the_insn);
4980 as_bad (_("Branch to unaligned address"));
4983 if (the_insn.exp.X_add_symbol)
4985 CHECK_FIELD (num, 262143, -262144, 0);
4986 opcode |= re_assemble_17 (num >> 2);
4991 the_insn.reloc = R_HPPA_PCREL_CALL;
4992 the_insn.format = 17;
4993 the_insn.arg_reloc = last_call_desc.arg_reloc;
4994 memset (&last_call_desc, 0, sizeof (struct call_desc));
4998 /* Handle a 22 bit branch displacement. */
5000 the_insn.field_selector = pa_chk_field_selector (&s);
5004 if (!the_insn.exp.X_add_symbol
5005 || !strcmp (S_GET_NAME (the_insn.exp.X_add_symbol),
5008 num = evaluate_absolute (&the_insn);
5011 as_bad (_("Branch to unaligned address"));
5014 if (the_insn.exp.X_add_symbol)
5016 CHECK_FIELD (num, 8388607, -8388608, 0);
5017 opcode |= re_assemble_22 (num >> 2);
5021 the_insn.reloc = R_HPPA_PCREL_CALL;
5022 the_insn.format = 22;
5023 the_insn.arg_reloc = last_call_desc.arg_reloc;
5024 memset (&last_call_desc, 0, sizeof (struct call_desc));
5028 /* Handle an absolute 17 bit branch target. */
5030 the_insn.field_selector = pa_chk_field_selector (&s);
5034 if (!the_insn.exp.X_add_symbol
5035 || !strcmp (S_GET_NAME (the_insn.exp.X_add_symbol),
5038 num = evaluate_absolute (&the_insn);
5041 as_bad (_("Branch to unaligned address"));
5044 if (the_insn.exp.X_add_symbol)
5046 CHECK_FIELD (num, 262143, -262144, 0);
5047 opcode |= re_assemble_17 (num >> 2);
5052 the_insn.reloc = R_HPPA_ABS_CALL;
5053 the_insn.format = 17;
5054 the_insn.arg_reloc = last_call_desc.arg_reloc;
5055 memset (&last_call_desc, 0, sizeof (struct call_desc));
5059 /* Handle '%r1' implicit operand of addil instruction. */
5061 if (*s == ',' && *(s + 1) == '%' && *(s + 3) == '1'
5062 && (*(s + 2) == 'r' || *(s + 2) == 'R'))
5070 /* Handle '%sr0,%r31' implicit operand of be,l instruction. */
5072 if (strncasecmp (s, "%sr0,%r31", 9) != 0)
5077 /* Handle immediate value of 0 for ordered load/store instructions. */
5084 /* Handle a 2 bit shift count at 25. */
5086 num = pa_get_absolute_expression (&the_insn, &s);
5087 if (strict && the_insn.exp.X_op != O_constant)
5090 CHECK_FIELD (num, 3, 1, strict);
5091 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
5093 /* Handle a 4 bit shift count at 25. */
5095 num = pa_get_absolute_expression (&the_insn, &s);
5096 if (strict && the_insn.exp.X_op != O_constant)
5099 CHECK_FIELD (num, 15, 0, strict);
5100 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
5102 /* Handle a 5 bit shift count at 26. */
5104 num = pa_get_absolute_expression (&the_insn, &s);
5105 if (strict && the_insn.exp.X_op != O_constant)
5108 CHECK_FIELD (num, 31, 0, strict);
5109 INSERT_FIELD_AND_CONTINUE (opcode, 31 - num, 5);
5111 /* Handle a 6 bit shift count at 20,22:26. */
5113 num = pa_get_absolute_expression (&the_insn, &s);
5114 if (strict && the_insn.exp.X_op != O_constant)
5117 CHECK_FIELD (num, 63, 0, strict);
5119 opcode |= (num & 0x20) << 6;
5120 INSERT_FIELD_AND_CONTINUE (opcode, num & 0x1f, 5);
5122 /* Handle a 6 bit field length at 23,27:31. */
5125 num = pa_get_absolute_expression (&the_insn, &s);
5126 if (strict && the_insn.exp.X_op != O_constant)
5129 CHECK_FIELD (num, 64, 1, strict);
5131 opcode |= (num & 0x20) << 3;
5132 num = 31 - (num & 0x1f);
5133 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5135 /* Handle a 6 bit field length at 19,27:31. */
5137 num = pa_get_absolute_expression (&the_insn, &s);
5138 if (strict && the_insn.exp.X_op != O_constant)
5141 CHECK_FIELD (num, 64, 1, strict);
5143 opcode |= (num & 0x20) << 7;
5144 num = 31 - (num & 0x1f);
5145 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5147 /* Handle a 5 bit bit position at 26. */
5149 num = pa_get_absolute_expression (&the_insn, &s);
5150 if (strict && the_insn.exp.X_op != O_constant)
5153 CHECK_FIELD (num, 31, 0, strict);
5154 INSERT_FIELD_AND_CONTINUE (opcode, num, 5);
5156 /* Handle a 6 bit bit position at 20,22:26. */
5158 num = pa_get_absolute_expression (&the_insn, &s);
5159 if (strict && the_insn.exp.X_op != O_constant)
5162 CHECK_FIELD (num, 63, 0, strict);
5163 opcode |= (num & 0x20) << 6;
5164 INSERT_FIELD_AND_CONTINUE (opcode, num & 0x1f, 5);
5166 /* Handle a 5 bit immediate at 10 with 'd' as the complement
5167 of the high bit of the immediate. */
5169 num = pa_get_absolute_expression (&the_insn, &s);
5170 if (strict && the_insn.exp.X_op != O_constant)
5173 CHECK_FIELD (num, 63, 0, strict);
5177 opcode |= (1 << 13);
5178 INSERT_FIELD_AND_CONTINUE (opcode, num & 0x1f, 21);
5180 /* Handle a 5 bit immediate at 10. */
5182 num = pa_get_absolute_expression (&the_insn, &s);
5183 if (strict && the_insn.exp.X_op != O_constant)
5186 CHECK_FIELD (num, 31, 0, strict);
5187 INSERT_FIELD_AND_CONTINUE (opcode, num, 21);
5189 /* Handle a 9 bit immediate at 28. */
5191 num = pa_get_absolute_expression (&the_insn, &s);
5192 if (strict && the_insn.exp.X_op != O_constant)
5195 CHECK_FIELD (num, 511, 1, strict);
5196 INSERT_FIELD_AND_CONTINUE (opcode, num, 3);
5198 /* Handle a 13 bit immediate at 18. */
5200 num = pa_get_absolute_expression (&the_insn, &s);
5201 if (strict && the_insn.exp.X_op != O_constant)
5204 CHECK_FIELD (num, 8191, 0, strict);
5205 INSERT_FIELD_AND_CONTINUE (opcode, num, 13);
5207 /* Handle a 26 bit immediate at 31. */
5209 num = pa_get_absolute_expression (&the_insn, &s);
5210 if (strict && the_insn.exp.X_op != O_constant)
5213 CHECK_FIELD (num, 67108863, 0, strict);
5214 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5216 /* Handle a 3 bit SFU identifier at 25. */
5219 as_bad (_("Invalid SFU identifier"));
5220 num = pa_get_absolute_expression (&the_insn, &s);
5221 if (strict && the_insn.exp.X_op != O_constant)
5224 CHECK_FIELD (num, 7, 0, strict);
5225 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
5227 /* Handle a 20 bit SOP field for spop0. */
5229 num = pa_get_absolute_expression (&the_insn, &s);
5230 if (strict && the_insn.exp.X_op != O_constant)
5233 CHECK_FIELD (num, 1048575, 0, strict);
5234 num = (num & 0x1f) | ((num & 0x000fffe0) << 6);
5235 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5237 /* Handle a 15bit SOP field for spop1. */
5239 num = pa_get_absolute_expression (&the_insn, &s);
5240 if (strict && the_insn.exp.X_op != O_constant)
5243 CHECK_FIELD (num, 32767, 0, strict);
5244 INSERT_FIELD_AND_CONTINUE (opcode, num, 11);
5246 /* Handle a 10bit SOP field for spop3. */
5248 num = pa_get_absolute_expression (&the_insn, &s);
5249 if (strict && the_insn.exp.X_op != O_constant)
5252 CHECK_FIELD (num, 1023, 0, strict);
5253 num = (num & 0x1f) | ((num & 0x000003e0) << 6);
5254 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5256 /* Handle a 15 bit SOP field for spop2. */
5258 num = pa_get_absolute_expression (&the_insn, &s);
5259 if (strict && the_insn.exp.X_op != O_constant)
5262 CHECK_FIELD (num, 32767, 0, strict);
5263 num = (num & 0x1f) | ((num & 0x00007fe0) << 6);
5264 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5266 /* Handle a 3-bit co-processor ID field. */
5269 as_bad (_("Invalid COPR identifier"));
5270 num = pa_get_absolute_expression (&the_insn, &s);
5271 if (strict && the_insn.exp.X_op != O_constant)
5274 CHECK_FIELD (num, 7, 0, strict);
5275 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
5277 /* Handle a 22bit SOP field for copr. */
5279 num = pa_get_absolute_expression (&the_insn, &s);
5280 if (strict && the_insn.exp.X_op != O_constant)
5283 CHECK_FIELD (num, 4194303, 0, strict);
5284 num = (num & 0x1f) | ((num & 0x003fffe0) << 4);
5285 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5287 /* Handle a source FP operand format completer. */
5289 if (*s == ',' && *(s+1) == 't')
5296 flag = pa_parse_fp_cnv_format (&s);
5297 the_insn.fpof1 = flag;
5298 if (flag == W || flag == UW)
5300 if (flag == DW || flag == UDW)
5302 if (flag == QW || flag == UQW)
5304 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
5306 /* Handle a destination FP operand format completer. */
5308 /* pa_parse_format needs the ',' prefix. */
5310 flag = pa_parse_fp_cnv_format (&s);
5311 the_insn.fpof2 = flag;
5312 if (flag == W || flag == UW)
5314 if (flag == DW || flag == UDW)
5316 if (flag == QW || flag == UQW)
5318 opcode |= flag << 13;
5319 if (the_insn.fpof1 == SGL
5320 || the_insn.fpof1 == DBL
5321 || the_insn.fpof1 == QUAD)
5323 if (the_insn.fpof2 == SGL
5324 || the_insn.fpof2 == DBL
5325 || the_insn.fpof2 == QUAD)
5327 else if (the_insn.fpof2 == W
5328 || the_insn.fpof2 == DW
5329 || the_insn.fpof2 == QW)
5331 else if (the_insn.fpof2 == UW
5332 || the_insn.fpof2 == UDW
5333 || the_insn.fpof2 == UQW)
5338 else if (the_insn.fpof1 == W
5339 || the_insn.fpof1 == DW
5340 || the_insn.fpof1 == QW)
5342 if (the_insn.fpof2 == SGL
5343 || the_insn.fpof2 == DBL
5344 || the_insn.fpof2 == QUAD)
5349 else if (the_insn.fpof1 == UW
5350 || the_insn.fpof1 == UDW
5351 || the_insn.fpof1 == UQW)
5353 if (the_insn.fpof2 == SGL
5354 || the_insn.fpof2 == DBL
5355 || the_insn.fpof2 == QUAD)
5360 flag |= the_insn.trunc;
5361 INSERT_FIELD_AND_CONTINUE (opcode, flag, 15);
5363 /* Handle a source FP operand format completer. */
5365 flag = pa_parse_fp_format (&s);
5366 the_insn.fpof1 = flag;
5367 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
5369 /* Handle a destination FP operand format completer. */
5371 /* pa_parse_format needs the ',' prefix. */
5373 flag = pa_parse_fp_format (&s);
5374 the_insn.fpof2 = flag;
5375 INSERT_FIELD_AND_CONTINUE (opcode, flag, 13);
5377 /* Handle a source FP operand format completer at 20. */
5379 flag = pa_parse_fp_format (&s);
5380 the_insn.fpof1 = flag;
5381 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
5383 /* Handle a floating point operand format at 26.
5384 Only allows single and double precision. */
5386 flag = pa_parse_fp_format (&s);
5392 the_insn.fpof1 = flag;
5398 as_bad (_("Invalid Floating Point Operand Format."));
5402 /* Handle all floating point registers. */
5406 /* Float target register. */
5408 if (!pa_parse_number (&s, 3))
5410 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5411 CHECK_FIELD (num, 31, 0, 0);
5412 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5414 /* Float target register with L/R selection. */
5417 if (!pa_parse_number (&s, 1))
5419 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5420 CHECK_FIELD (num, 31, 0, 0);
5423 /* 0x30 opcodes are FP arithmetic operation opcodes
5424 and need to be turned into 0x38 opcodes. This
5425 is not necessary for loads/stores. */
5426 if (need_pa11_opcode ()
5427 && ((opcode & 0xfc000000) == 0x30000000))
5430 opcode |= (pa_number & FP_REG_RSEL ? 1 << 6 : 0);
5434 /* Float operand 1. */
5437 if (!pa_parse_number (&s, 1))
5439 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5440 CHECK_FIELD (num, 31, 0, 0);
5441 opcode |= num << 21;
5442 if (need_pa11_opcode ())
5444 opcode |= (pa_number & FP_REG_RSEL ? 1 << 7 : 0);
5450 /* Float operand 1 with L/R selection. */
5454 if (!pa_parse_number (&s, 1))
5456 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5457 CHECK_FIELD (num, 31, 0, 0);
5458 opcode |= num << 21;
5459 opcode |= (pa_number & FP_REG_RSEL ? 1 << 7 : 0);
5463 /* Float operand 2. */
5466 if (!pa_parse_number (&s, 1))
5468 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5469 CHECK_FIELD (num, 31, 0, 0);
5470 opcode |= num << 16;
5471 if (need_pa11_opcode ())
5473 opcode |= (pa_number & FP_REG_RSEL ? 1 << 12 : 0);
5479 /* Float operand 2 with L/R selection. */
5482 if (!pa_parse_number (&s, 1))
5484 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5485 CHECK_FIELD (num, 31, 0, 0);
5486 opcode |= num << 16;
5487 opcode |= (pa_number & FP_REG_RSEL ? 1 << 12 : 0);
5491 /* Float operand 3 for fmpyfadd, fmpynfadd. */
5494 if (!pa_parse_number (&s, 1))
5496 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5497 CHECK_FIELD (num, 31, 0, 0);
5498 opcode |= (num & 0x1c) << 11;
5499 opcode |= (num & 0x03) << 9;
5500 opcode |= (pa_number & FP_REG_RSEL ? 1 << 8 : 0);
5504 /* Float mult operand 1 for fmpyadd, fmpysub */
5507 if (!pa_parse_number (&s, 1))
5509 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5510 CHECK_FIELD (num, 31, 0, 0);
5511 if (the_insn.fpof1 == SGL)
5515 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5519 num |= (pa_number & FP_REG_RSEL ? 1 << 4 : 0);
5521 INSERT_FIELD_AND_CONTINUE (opcode, num, 21);
5524 /* Float mult operand 2 for fmpyadd, fmpysub */
5527 if (!pa_parse_number (&s, 1))
5529 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5530 CHECK_FIELD (num, 31, 0, 0);
5531 if (the_insn.fpof1 == SGL)
5535 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5539 num |= (pa_number & FP_REG_RSEL ? 1 << 4 : 0);
5541 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
5544 /* Float mult target for fmpyadd, fmpysub */
5547 if (!pa_parse_number (&s, 1))
5549 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5550 CHECK_FIELD (num, 31, 0, 0);
5551 if (the_insn.fpof1 == SGL)
5555 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5559 num |= (pa_number & FP_REG_RSEL ? 1 << 4 : 0);
5561 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
5564 /* Float add operand 1 for fmpyadd, fmpysub */
5567 if (!pa_parse_number (&s, 1))
5569 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5570 CHECK_FIELD (num, 31, 0, 0);
5571 if (the_insn.fpof1 == SGL)
5575 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5579 num |= (pa_number & FP_REG_RSEL ? 1 << 4 : 0);
5581 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
5584 /* Float add target for fmpyadd, fmpysub */
5587 if (!pa_parse_number (&s, 1))
5589 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5590 CHECK_FIELD (num, 31, 0, 0);
5591 if (the_insn.fpof1 == SGL)
5595 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
5599 num |= (pa_number & FP_REG_RSEL ? 1 << 4 : 0);
5601 INSERT_FIELD_AND_CONTINUE (opcode, num, 11);
5604 /* Handle L/R register halves like 'x'. */
5608 if (!pa_parse_number (&s, 1))
5610 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5611 CHECK_FIELD (num, 31, 0, 0);
5612 opcode |= num << 16;
5613 if (need_pa11_opcode ())
5615 opcode |= (pa_number & FP_REG_RSEL ? 1 << 1 : 0);
5620 /* Float target register (PA 2.0 wide). */
5622 if (!pa_parse_number (&s, 3))
5624 num = (pa_number & ~FP_REG_RSEL) - FP_REG_BASE;
5625 CHECK_FIELD (num, 31, 0, 0);
5626 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
5639 /* If this instruction is specific to a particular architecture,
5640 then set a new architecture. This automatic promotion crud is
5641 for compatibility with HP's old assemblers only. */
5643 && bfd_get_mach (stdoutput) < insn->arch
5644 && !bfd_set_arch_mach (stdoutput, bfd_arch_hppa, insn->arch))
5646 as_warn (_("could not update architecture and machine"));
5651 /* Check if the args matched. */
5654 if (&insn[1] - pa_opcodes < (int) NUMOPCODES
5655 && !strcmp (insn->name, insn[1].name))
5663 as_bad (_("Invalid operands %s"), error_message);
5670 the_insn.opcode = opcode;
5673 /* Assemble a single instruction storing it into a frag. */
5676 md_assemble (char *str)
5680 /* The had better be something to assemble. */
5683 /* If we are within a procedure definition, make sure we've
5684 defined a label for the procedure; handle case where the
5685 label was defined after the .PROC directive.
5687 Note there's not need to diddle with the segment or fragment
5688 for the label symbol in this case. We have already switched
5689 into the new $CODE$ subspace at this point. */
5690 if (within_procedure && last_call_info->start_symbol == NULL)
5692 label_symbol_struct *label_symbol = pa_get_label ();
5696 if (label_symbol->lss_label)
5698 last_call_info->start_symbol = label_symbol->lss_label;
5699 symbol_get_bfdsym (label_symbol->lss_label)->flags
5702 /* Also handle allocation of a fixup to hold the unwind
5703 information when the label appears after the proc/procend. */
5704 if (within_entry_exit)
5709 where = frag_more (0);
5710 u = UNWIND_LOW32 (&last_call_info->ci_unwind.descriptor);
5711 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
5712 NULL, (offsetT) 0, NULL,
5713 0, R_HPPA_ENTRY, e_fsel, 0, 0, u);
5718 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
5721 as_bad (_("Missing function name for .PROC"));
5724 /* Assemble the instruction. Results are saved into "the_insn". */
5727 /* Get somewhere to put the assembled instruction. */
5730 /* Output the opcode. */
5731 md_number_to_chars (to, the_insn.opcode, 4);
5733 /* If necessary output more stuff. */
5734 if (the_insn.reloc != R_HPPA_NONE)
5735 fix_new_hppa (frag_now, (to - frag_now->fr_literal), 4, NULL,
5736 (offsetT) 0, &the_insn.exp, the_insn.pcrel,
5737 the_insn.reloc, the_insn.field_selector,
5738 the_insn.format, the_insn.arg_reloc, 0);
5741 dwarf2_emit_insn (4);
5746 /* Handle an alignment directive. Special so that we can update the
5747 alignment of the subspace if necessary. */
5749 pa_align (int bytes)
5751 /* We must have a valid space and subspace. */
5752 pa_check_current_space_and_subspace ();
5754 /* Let the generic gas code do most of the work. */
5755 s_align_bytes (bytes);
5757 /* If bytes is a power of 2, then update the current subspace's
5758 alignment if necessary. */
5759 if (exact_log2 (bytes) != -1)
5760 record_alignment (current_subspace->ssd_seg, exact_log2 (bytes));
5764 /* Handle a .BLOCK type pseudo-op. */
5767 pa_block (int z ATTRIBUTE_UNUSED)
5769 unsigned int temp_size;
5772 /* We must have a valid space and subspace. */
5773 pa_check_current_space_and_subspace ();
5776 temp_size = get_absolute_expression ();
5778 if (temp_size > 0x3FFFFFFF)
5780 as_bad (_("Argument to .BLOCK/.BLOCKZ must be between 0 and 0x3fffffff"));
5785 /* Always fill with zeros, that's what the HP assembler does. */
5786 char *p = frag_var (rs_fill, 1, 1, 0, NULL, temp_size, NULL);
5790 pa_undefine_label ();
5791 demand_empty_rest_of_line ();
5794 /* Handle a .begin_brtab and .end_brtab pseudo-op. */
5797 pa_brtab (int begin ATTRIBUTE_UNUSED)
5801 /* The BRTAB relocations are only available in SOM (to denote
5802 the beginning and end of branch tables). */
5803 char *where = frag_more (0);
5805 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
5806 NULL, (offsetT) 0, NULL,
5807 0, begin ? R_HPPA_BEGIN_BRTAB : R_HPPA_END_BRTAB,
5811 demand_empty_rest_of_line ();
5814 /* Handle a .begin_try and .end_try pseudo-op. */
5817 pa_try (int begin ATTRIBUTE_UNUSED)
5821 char *where = frag_more (0);
5826 /* The TRY relocations are only available in SOM (to denote
5827 the beginning and end of exception handling regions). */
5829 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
5830 NULL, (offsetT) 0, begin ? NULL : &exp,
5831 0, begin ? R_HPPA_BEGIN_TRY : R_HPPA_END_TRY,
5835 demand_empty_rest_of_line ();
5838 /* Do the dirty work of building a call descriptor which describes
5839 where the caller placed arguments to a function call. */
5842 pa_call_args (struct call_desc *call_desc)
5845 unsigned int temp, arg_reloc;
5847 while (!is_end_of_statement ())
5849 name = input_line_pointer;
5850 c = get_symbol_end ();
5851 /* Process a source argument. */
5852 if ((strncasecmp (name, "argw", 4) == 0))
5854 temp = atoi (name + 4);
5855 p = input_line_pointer;
5857 input_line_pointer++;
5858 name = input_line_pointer;
5859 c = get_symbol_end ();
5860 arg_reloc = pa_build_arg_reloc (name);
5861 call_desc->arg_reloc |= pa_align_arg_reloc (temp, arg_reloc);
5863 /* Process a return value. */
5864 else if ((strncasecmp (name, "rtnval", 6) == 0))
5866 p = input_line_pointer;
5868 input_line_pointer++;
5869 name = input_line_pointer;
5870 c = get_symbol_end ();
5871 arg_reloc = pa_build_arg_reloc (name);
5872 call_desc->arg_reloc |= (arg_reloc & 0x3);
5876 as_bad (_("Invalid .CALL argument: %s"), name);
5878 p = input_line_pointer;
5880 if (!is_end_of_statement ())
5881 input_line_pointer++;
5885 /* Handle a .CALL pseudo-op. This involves storing away information
5886 about where arguments are to be found so the linker can detect
5887 (and correct) argument location mismatches between caller and callee. */
5890 pa_call (int unused ATTRIBUTE_UNUSED)
5893 /* We must have a valid space and subspace. */
5894 pa_check_current_space_and_subspace ();
5897 pa_call_args (&last_call_desc);
5898 demand_empty_rest_of_line ();
5902 /* Build an entry in the UNWIND subspace from the given function
5903 attributes in CALL_INFO. This is not needed for SOM as using
5904 R_ENTRY and R_EXIT relocations allow the linker to handle building
5905 of the unwind spaces. */
5908 pa_build_unwind_subspace (struct call_info *call_info)
5910 asection *seg, *save_seg;
5911 subsegT save_subseg;
5912 unsigned int unwind;
5916 if ((bfd_get_section_flags (stdoutput, now_seg)
5917 & (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
5918 != (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
5921 reloc = R_PARISC_SEGREL32;
5923 save_subseg = now_subseg;
5924 /* Get into the right seg/subseg. This may involve creating
5925 the seg the first time through. Make sure to have the
5926 old seg/subseg so that we can reset things when we are done. */
5927 seg = bfd_get_section_by_name (stdoutput, UNWIND_SECTION_NAME);
5928 if (seg == ASEC_NULL)
5930 seg = subseg_new (UNWIND_SECTION_NAME, 0);
5931 bfd_set_section_flags (stdoutput, seg,
5932 SEC_READONLY | SEC_HAS_CONTENTS
5933 | SEC_LOAD | SEC_RELOC | SEC_ALLOC | SEC_DATA);
5934 bfd_set_section_alignment (stdoutput, seg, 2);
5937 subseg_set (seg, 0);
5939 /* Get some space to hold relocation information for the unwind
5943 /* Relocation info. for start offset of the function. */
5944 md_number_to_chars (p, 0, 4);
5945 fix_new_hppa (frag_now, p - frag_now->fr_literal, 4,
5946 call_info->start_symbol, (offsetT) 0,
5947 (expressionS *) NULL, 0, reloc,
5950 /* Relocation info. for end offset of the function.
5952 Because we allow reductions of 32bit relocations for ELF, this will be
5953 reduced to section_sym + offset which avoids putting the temporary
5954 symbol into the symbol table. It (should) end up giving the same
5955 value as call_info->start_symbol + function size once the linker is
5956 finished with its work. */
5957 md_number_to_chars (p + 4, 0, 4);
5958 fix_new_hppa (frag_now, p + 4 - frag_now->fr_literal, 4,
5959 call_info->end_symbol, (offsetT) 0,
5960 (expressionS *) NULL, 0, reloc,
5963 /* Dump the descriptor. */
5964 unwind = UNWIND_LOW32 (&call_info->ci_unwind.descriptor);
5965 md_number_to_chars (p + 8, unwind, 4);
5967 unwind = UNWIND_HIGH32 (&call_info->ci_unwind.descriptor);
5968 md_number_to_chars (p + 12, unwind, 4);
5970 /* Return back to the original segment/subsegment. */
5971 subseg_set (save_seg, save_subseg);
5975 /* Process a .CALLINFO pseudo-op. This information is used later
5976 to build unwind descriptors and maybe one day to support
5977 .ENTER and .LEAVE. */
5980 pa_callinfo (int unused ATTRIBUTE_UNUSED)
5986 /* We must have a valid space and subspace. */
5987 pa_check_current_space_and_subspace ();
5990 /* .CALLINFO must appear within a procedure definition. */
5991 if (!within_procedure)
5992 as_bad (_(".callinfo is not within a procedure definition"));
5994 /* Mark the fact that we found the .CALLINFO for the
5995 current procedure. */
5996 callinfo_found = TRUE;
5998 /* Iterate over the .CALLINFO arguments. */
5999 while (!is_end_of_statement ())
6001 name = input_line_pointer;
6002 c = get_symbol_end ();
6003 /* Frame size specification. */
6004 if ((strncasecmp (name, "frame", 5) == 0))
6006 p = input_line_pointer;
6008 input_line_pointer++;
6009 temp = get_absolute_expression ();
6010 if ((temp & 0x3) != 0)
6012 as_bad (_("FRAME parameter must be a multiple of 8: %d\n"), temp);
6016 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
6017 last_call_info->ci_unwind.descriptor.frame_size = temp / 8;
6020 /* Entry register (GR, GR and SR) specifications. */
6021 else if ((strncasecmp (name, "entry_gr", 8) == 0))
6023 p = input_line_pointer;
6025 input_line_pointer++;
6026 temp = get_absolute_expression ();
6027 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
6028 even though %r19 is caller saved. I think this is a bug in
6029 the HP assembler, and we are not going to emulate it. */
6030 if (temp < 3 || temp > 18)
6031 as_bad (_("Value for ENTRY_GR must be in the range 3..18\n"));
6032 last_call_info->ci_unwind.descriptor.entry_gr = temp - 2;
6034 else if ((strncasecmp (name, "entry_fr", 8) == 0))
6036 p = input_line_pointer;
6038 input_line_pointer++;
6039 temp = get_absolute_expression ();
6040 /* Similarly the HP assembler takes 31 as the high bound even
6041 though %fr21 is the last callee saved floating point register. */
6042 if (temp < 12 || temp > 21)
6043 as_bad (_("Value for ENTRY_FR must be in the range 12..21\n"));
6044 last_call_info->ci_unwind.descriptor.entry_fr = temp - 11;
6046 else if ((strncasecmp (name, "entry_sr", 8) == 0))
6048 p = input_line_pointer;
6050 input_line_pointer++;
6051 temp = get_absolute_expression ();
6053 as_bad (_("Value for ENTRY_SR must be 3\n"));
6055 /* Note whether or not this function performs any calls. */
6056 else if ((strncasecmp (name, "calls", 5) == 0) ||
6057 (strncasecmp (name, "caller", 6) == 0))
6059 p = input_line_pointer;
6062 else if ((strncasecmp (name, "no_calls", 8) == 0))
6064 p = input_line_pointer;
6067 /* Should RP be saved into the stack. */
6068 else if ((strncasecmp (name, "save_rp", 7) == 0))
6070 p = input_line_pointer;
6072 last_call_info->ci_unwind.descriptor.save_rp = 1;
6074 /* Likewise for SP. */
6075 else if ((strncasecmp (name, "save_sp", 7) == 0))
6077 p = input_line_pointer;
6079 last_call_info->ci_unwind.descriptor.save_sp = 1;
6081 /* Is this an unwindable procedure. If so mark it so
6082 in the unwind descriptor. */
6083 else if ((strncasecmp (name, "no_unwind", 9) == 0))
6085 p = input_line_pointer;
6087 last_call_info->ci_unwind.descriptor.cannot_unwind = 1;
6089 /* Is this an interrupt routine. If so mark it in the
6090 unwind descriptor. */
6091 else if ((strncasecmp (name, "hpux_int", 7) == 0))
6093 p = input_line_pointer;
6095 last_call_info->ci_unwind.descriptor.hpux_interrupt_marker = 1;
6097 /* Is this a millicode routine. "millicode" isn't in my
6098 assembler manual, but my copy is old. The HP assembler
6099 accepts it, and there's a place in the unwind descriptor
6100 to drop the information, so we'll accept it too. */
6101 else if ((strncasecmp (name, "millicode", 9) == 0))
6103 p = input_line_pointer;
6105 last_call_info->ci_unwind.descriptor.millicode = 1;
6109 as_bad (_("Invalid .CALLINFO argument: %s"), name);
6110 *input_line_pointer = c;
6112 if (!is_end_of_statement ())
6113 input_line_pointer++;
6116 demand_empty_rest_of_line ();
6119 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
6120 /* Switch to the text space. Like s_text, but delete our
6121 label when finished. */
6124 pa_text (int unused ATTRIBUTE_UNUSED)
6127 current_space = is_defined_space ("$TEXT$");
6129 = pa_subsegment_to_subspace (current_space->sd_seg, 0);
6133 pa_undefine_label ();
6136 /* Switch to the data space. As usual delete our label. */
6139 pa_data (int unused ATTRIBUTE_UNUSED)
6142 current_space = is_defined_space ("$PRIVATE$");
6144 = pa_subsegment_to_subspace (current_space->sd_seg, 0);
6147 pa_undefine_label ();
6150 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
6151 the .comm pseudo-op has the following syntax:
6153 <label> .comm <length>
6155 where <label> is optional and is a symbol whose address will be the start of
6156 a block of memory <length> bytes long. <length> must be an absolute
6157 expression. <length> bytes will be allocated in the current space
6160 Also note the label may not even be on the same line as the .comm.
6162 This difference in syntax means the colon function will be called
6163 on the symbol before we arrive in pa_comm. colon will set a number
6164 of attributes of the symbol that need to be fixed here. In particular
6165 the value, section pointer, fragment pointer, flags, etc. What
6168 This also makes error detection all but impossible. */
6171 pa_comm (int unused ATTRIBUTE_UNUSED)
6175 label_symbol_struct *label_symbol = pa_get_label ();
6178 symbol = label_symbol->lss_label;
6183 size = get_absolute_expression ();
6187 symbol_get_bfdsym (symbol)->flags |= BSF_OBJECT;
6188 S_SET_VALUE (symbol, size);
6189 S_SET_SEGMENT (symbol, bfd_com_section_ptr);
6190 S_SET_EXTERNAL (symbol);
6192 /* colon() has already set the frag to the current location in the
6193 current subspace; we need to reset the fragment to the zero address
6194 fragment. We also need to reset the segment pointer. */
6195 symbol_set_frag (symbol, &zero_address_frag);
6197 demand_empty_rest_of_line ();
6199 #endif /* !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))) */
6201 /* Process a .END pseudo-op. */
6204 pa_end (int unused ATTRIBUTE_UNUSED)
6206 demand_empty_rest_of_line ();
6209 /* Process a .ENTER pseudo-op. This is not supported. */
6212 pa_enter (int unused ATTRIBUTE_UNUSED)
6215 /* We must have a valid space and subspace. */
6216 pa_check_current_space_and_subspace ();
6219 as_bad (_("The .ENTER pseudo-op is not supported"));
6220 demand_empty_rest_of_line ();
6223 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
6227 pa_entry (int unused ATTRIBUTE_UNUSED)
6230 /* We must have a valid space and subspace. */
6231 pa_check_current_space_and_subspace ();
6234 if (!within_procedure)
6235 as_bad (_("Misplaced .entry. Ignored."));
6238 if (!callinfo_found)
6239 as_bad (_("Missing .callinfo."));
6241 demand_empty_rest_of_line ();
6242 within_entry_exit = TRUE;
6245 /* SOM defers building of unwind descriptors until the link phase.
6246 The assembler is responsible for creating an R_ENTRY relocation
6247 to mark the beginning of a region and hold the unwind bits, and
6248 for creating an R_EXIT relocation to mark the end of the region.
6250 FIXME. ELF should be using the same conventions! The problem
6251 is an unwind requires too much relocation space. Hmmm. Maybe
6252 if we split the unwind bits up between the relocations which
6253 denote the entry and exit points. */
6254 if (last_call_info->start_symbol != NULL)
6259 where = frag_more (0);
6260 u = UNWIND_LOW32 (&last_call_info->ci_unwind.descriptor);
6261 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
6262 NULL, (offsetT) 0, NULL,
6263 0, R_HPPA_ENTRY, e_fsel, 0, 0, u);
6268 /* Silly nonsense for pa_equ. The only half-sensible use for this is
6269 being able to subtract two register symbols that specify a range of
6270 registers, to get the size of the range. */
6271 static int fudge_reg_expressions;
6274 hppa_force_reg_syms_absolute (expressionS *resultP,
6275 operatorT op ATTRIBUTE_UNUSED,
6276 expressionS *rightP)
6278 if (fudge_reg_expressions
6279 && rightP->X_op == O_register
6280 && resultP->X_op == O_register)
6282 rightP->X_op = O_constant;
6283 resultP->X_op = O_constant;
6285 return 0; /* Continue normal expr handling. */
6288 /* Handle a .EQU pseudo-op. */
6293 label_symbol_struct *label_symbol = pa_get_label ();
6298 symbol = label_symbol->lss_label;
6302 if (!pa_parse_number (&input_line_pointer, 0))
6303 as_bad (_(".REG expression must be a register"));
6304 S_SET_VALUE (symbol, pa_number);
6305 S_SET_SEGMENT (symbol, reg_section);
6312 fudge_reg_expressions = 1;
6313 seg = expression (&exp);
6314 fudge_reg_expressions = 0;
6315 if (exp.X_op != O_constant
6316 && exp.X_op != O_register)
6318 if (exp.X_op != O_absent)
6319 as_bad (_("bad or irreducible absolute expression; zero assumed"));
6320 exp.X_add_number = 0;
6321 seg = absolute_section;
6323 S_SET_VALUE (symbol, (unsigned int) exp.X_add_number);
6324 S_SET_SEGMENT (symbol, seg);
6330 as_bad (_(".REG must use a label"));
6332 as_bad (_(".EQU must use a label"));
6335 pa_undefine_label ();
6336 demand_empty_rest_of_line ();
6340 /* Mark the end of a function so that it's possible to compute
6341 the size of the function in elf_hppa_final_processing. */
6344 hppa_elf_mark_end_of_function (void)
6346 /* ELF does not have EXIT relocations. All we do is create a
6347 temporary symbol marking the end of the function. */
6350 if (last_call_info == NULL || last_call_info->start_symbol == NULL)
6352 /* We have already warned about a missing label,
6353 or other problems. */
6357 name = xmalloc (strlen ("L$\001end_")
6358 + strlen (S_GET_NAME (last_call_info->start_symbol))
6364 strcpy (name, "L$\001end_");
6365 strcat (name, S_GET_NAME (last_call_info->start_symbol));
6367 /* If we have a .exit followed by a .procend, then the
6368 symbol will have already been defined. */
6369 symbolP = symbol_find (name);
6372 /* The symbol has already been defined! This can
6373 happen if we have a .exit followed by a .procend.
6375 This is *not* an error. All we want to do is free
6376 the memory we just allocated for the name and continue. */
6381 /* symbol value should be the offset of the
6382 last instruction of the function */
6383 symbolP = symbol_new (name, now_seg, (valueT) (frag_now_fix () - 4),
6387 S_CLEAR_EXTERNAL (symbolP);
6388 symbol_table_insert (symbolP);
6392 last_call_info->end_symbol = symbolP;
6394 as_bad (_("Symbol '%s' could not be created."), name);
6398 as_bad (_("No memory for symbol name."));
6402 /* Helper function. Does processing for the end of a function. This
6403 usually involves creating some relocations or building special
6404 symbols to mark the end of the function. */
6411 where = frag_more (0);
6414 /* Mark the end of the function, stuff away the location of the frag
6415 for the end of the function, and finally call pa_build_unwind_subspace
6416 to add an entry in the unwind table. */
6417 hppa_elf_mark_end_of_function ();
6418 pa_build_unwind_subspace (last_call_info);
6420 /* SOM defers building of unwind descriptors until the link phase.
6421 The assembler is responsible for creating an R_ENTRY relocation
6422 to mark the beginning of a region and hold the unwind bits, and
6423 for creating an R_EXIT relocation to mark the end of the region.
6425 FIXME. ELF should be using the same conventions! The problem
6426 is an unwind requires too much relocation space. Hmmm. Maybe
6427 if we split the unwind bits up between the relocations which
6428 denote the entry and exit points. */
6429 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
6431 NULL, 0, R_HPPA_EXIT, e_fsel, 0, 0,
6432 UNWIND_HIGH32 (&last_call_info->ci_unwind.descriptor));
6436 /* Process a .EXIT pseudo-op. */
6439 pa_exit (int unused ATTRIBUTE_UNUSED)
6442 /* We must have a valid space and subspace. */
6443 pa_check_current_space_and_subspace ();
6446 if (!within_procedure)
6447 as_bad (_(".EXIT must appear within a procedure"));
6450 if (!callinfo_found)
6451 as_bad (_("Missing .callinfo"));
6454 if (!within_entry_exit)
6455 as_bad (_("No .ENTRY for this .EXIT"));
6458 within_entry_exit = FALSE;
6463 demand_empty_rest_of_line ();
6466 /* Helper function to process arguments to a .EXPORT pseudo-op. */
6469 pa_type_args (symbolS *symbolP, int is_export)
6472 unsigned int temp, arg_reloc;
6473 pa_symbol_type type = SYMBOL_TYPE_UNKNOWN;
6474 asymbol *bfdsym = symbol_get_bfdsym (symbolP);
6476 if (strncasecmp (input_line_pointer, "absolute", 8) == 0)
6478 input_line_pointer += 8;
6479 bfdsym->flags &= ~BSF_FUNCTION;
6480 S_SET_SEGMENT (symbolP, bfd_abs_section_ptr);
6481 type = SYMBOL_TYPE_ABSOLUTE;
6483 else if (strncasecmp (input_line_pointer, "code", 4) == 0)
6485 input_line_pointer += 4;
6486 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
6487 instead one should be IMPORTing/EXPORTing ENTRY types.
6489 Complain if one tries to EXPORT a CODE type since that's never
6490 done. Both GCC and HP C still try to IMPORT CODE types, so
6491 silently fix them to be ENTRY types. */
6492 if (S_IS_FUNCTION (symbolP))
6495 as_tsktsk (_("Using ENTRY rather than CODE in export directive for %s"),
6496 S_GET_NAME (symbolP));
6498 bfdsym->flags |= BSF_FUNCTION;
6499 type = SYMBOL_TYPE_ENTRY;
6503 bfdsym->flags &= ~BSF_FUNCTION;
6504 type = SYMBOL_TYPE_CODE;
6507 else if (strncasecmp (input_line_pointer, "data", 4) == 0)
6509 input_line_pointer += 4;
6510 bfdsym->flags &= ~BSF_FUNCTION;
6511 bfdsym->flags |= BSF_OBJECT;
6512 type = SYMBOL_TYPE_DATA;
6514 else if ((strncasecmp (input_line_pointer, "entry", 5) == 0))
6516 input_line_pointer += 5;
6517 bfdsym->flags |= BSF_FUNCTION;
6518 type = SYMBOL_TYPE_ENTRY;
6520 else if (strncasecmp (input_line_pointer, "millicode", 9) == 0)
6522 input_line_pointer += 9;
6523 bfdsym->flags |= BSF_FUNCTION;
6526 elf_symbol_type *elfsym = (elf_symbol_type *) bfdsym;
6527 elfsym->internal_elf_sym.st_info =
6528 ELF_ST_INFO (ELF_ST_BIND (elfsym->internal_elf_sym.st_info),
6532 type = SYMBOL_TYPE_MILLICODE;
6534 else if (strncasecmp (input_line_pointer, "plabel", 6) == 0)
6536 input_line_pointer += 6;
6537 bfdsym->flags &= ~BSF_FUNCTION;
6538 type = SYMBOL_TYPE_PLABEL;
6540 else if (strncasecmp (input_line_pointer, "pri_prog", 8) == 0)
6542 input_line_pointer += 8;
6543 bfdsym->flags |= BSF_FUNCTION;
6544 type = SYMBOL_TYPE_PRI_PROG;
6546 else if (strncasecmp (input_line_pointer, "sec_prog", 8) == 0)
6548 input_line_pointer += 8;
6549 bfdsym->flags |= BSF_FUNCTION;
6550 type = SYMBOL_TYPE_SEC_PROG;
6553 /* SOM requires much more information about symbol types
6554 than BFD understands. This is how we get this information
6555 to the SOM BFD backend. */
6556 #ifdef obj_set_symbol_type
6557 obj_set_symbol_type (bfdsym, (int) type);
6560 /* Now that the type of the exported symbol has been handled,
6561 handle any argument relocation information. */
6562 while (!is_end_of_statement ())
6564 if (*input_line_pointer == ',')
6565 input_line_pointer++;
6566 name = input_line_pointer;
6567 c = get_symbol_end ();
6568 /* Argument sources. */
6569 if ((strncasecmp (name, "argw", 4) == 0))
6571 p = input_line_pointer;
6573 input_line_pointer++;
6574 temp = atoi (name + 4);
6575 name = input_line_pointer;
6576 c = get_symbol_end ();
6577 arg_reloc = pa_align_arg_reloc (temp, pa_build_arg_reloc (name));
6578 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6579 symbol_arg_reloc_info (symbolP) |= arg_reloc;
6581 *input_line_pointer = c;
6583 /* The return value. */
6584 else if ((strncasecmp (name, "rtnval", 6)) == 0)
6586 p = input_line_pointer;
6588 input_line_pointer++;
6589 name = input_line_pointer;
6590 c = get_symbol_end ();
6591 arg_reloc = pa_build_arg_reloc (name);
6592 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6593 symbol_arg_reloc_info (symbolP) |= arg_reloc;
6595 *input_line_pointer = c;
6597 /* Privilege level. */
6598 else if ((strncasecmp (name, "priv_lev", 8)) == 0)
6600 p = input_line_pointer;
6602 input_line_pointer++;
6603 temp = atoi (input_line_pointer);
6605 ((obj_symbol_type *) bfdsym)->tc_data.ap.hppa_priv_level = temp;
6607 c = get_symbol_end ();
6608 *input_line_pointer = c;
6612 as_bad (_("Undefined .EXPORT/.IMPORT argument (ignored): %s"), name);
6613 p = input_line_pointer;
6616 if (!is_end_of_statement ())
6617 input_line_pointer++;
6621 /* Process a .EXPORT directive. This makes functions external
6622 and provides information such as argument relocation entries
6626 pa_export (int unused ATTRIBUTE_UNUSED)
6631 name = input_line_pointer;
6632 c = get_symbol_end ();
6633 /* Make sure the given symbol exists. */
6634 if ((symbol = symbol_find_or_make (name)) == NULL)
6636 as_bad (_("Cannot define export symbol: %s\n"), name);
6637 p = input_line_pointer;
6639 input_line_pointer++;
6643 /* OK. Set the external bits and process argument relocations.
6644 For the HP, weak and global are not mutually exclusive.
6645 S_SET_EXTERNAL will not set BSF_GLOBAL if WEAK is set.
6646 Call S_SET_EXTERNAL to get the other processing. Manually
6647 set BSF_GLOBAL when we get back. */
6648 S_SET_EXTERNAL (symbol);
6649 symbol_get_bfdsym (symbol)->flags |= BSF_GLOBAL;
6650 p = input_line_pointer;
6652 if (!is_end_of_statement ())
6654 input_line_pointer++;
6655 pa_type_args (symbol, 1);
6659 demand_empty_rest_of_line ();
6662 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
6663 assembly file must either be defined in the assembly file, or
6664 explicitly IMPORTED from another. */
6667 pa_import (int unused ATTRIBUTE_UNUSED)
6672 name = input_line_pointer;
6673 c = get_symbol_end ();
6675 symbol = symbol_find (name);
6676 /* Ugh. We might be importing a symbol defined earlier in the file,
6677 in which case all the code below will really screw things up
6678 (set the wrong segment, symbol flags & type, etc). */
6679 if (symbol == NULL || !S_IS_DEFINED (symbol))
6681 symbol = symbol_find_or_make (name);
6682 p = input_line_pointer;
6685 if (!is_end_of_statement ())
6687 input_line_pointer++;
6688 pa_type_args (symbol, 0);
6692 /* Sigh. To be compatible with the HP assembler and to help
6693 poorly written assembly code, we assign a type based on
6694 the current segment. Note only BSF_FUNCTION really
6695 matters, we do not need to set the full SYMBOL_TYPE_* info. */
6696 if (now_seg == text_section)
6697 symbol_get_bfdsym (symbol)->flags |= BSF_FUNCTION;
6699 /* If the section is undefined, then the symbol is undefined
6700 Since this is an import, leave the section undefined. */
6701 S_SET_SEGMENT (symbol, bfd_und_section_ptr);
6706 /* The symbol was already defined. Just eat everything up to
6707 the end of the current statement. */
6708 while (!is_end_of_statement ())
6709 input_line_pointer++;
6712 demand_empty_rest_of_line ();
6715 /* Handle a .LABEL pseudo-op. */
6718 pa_label (int unused ATTRIBUTE_UNUSED)
6722 name = input_line_pointer;
6723 c = get_symbol_end ();
6725 if (strlen (name) > 0)
6728 p = input_line_pointer;
6733 as_warn (_("Missing label name on .LABEL"));
6736 if (!is_end_of_statement ())
6738 as_warn (_("extra .LABEL arguments ignored."));
6739 ignore_rest_of_line ();
6741 demand_empty_rest_of_line ();
6744 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
6747 pa_leave (int unused ATTRIBUTE_UNUSED)
6750 /* We must have a valid space and subspace. */
6751 pa_check_current_space_and_subspace ();
6754 as_bad (_("The .LEAVE pseudo-op is not supported"));
6755 demand_empty_rest_of_line ();
6758 /* Handle a .LEVEL pseudo-op. */
6761 pa_level (int unused ATTRIBUTE_UNUSED)
6765 level = input_line_pointer;
6766 if (strncmp (level, "1.0", 3) == 0)
6768 input_line_pointer += 3;
6769 if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, 10))
6770 as_warn (_("could not set architecture and machine"));
6772 else if (strncmp (level, "1.1", 3) == 0)
6774 input_line_pointer += 3;
6775 if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, 11))
6776 as_warn (_("could not set architecture and machine"));
6778 else if (strncmp (level, "2.0w", 4) == 0)
6780 input_line_pointer += 4;
6781 if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, 25))
6782 as_warn (_("could not set architecture and machine"));
6784 else if (strncmp (level, "2.0", 3) == 0)
6786 input_line_pointer += 3;
6787 if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, 20))
6788 as_warn (_("could not set architecture and machine"));
6792 as_bad (_("Unrecognized .LEVEL argument\n"));
6793 ignore_rest_of_line ();
6795 demand_empty_rest_of_line ();
6798 /* Handle a .ORIGIN pseudo-op. */
6801 pa_origin (int unused ATTRIBUTE_UNUSED)
6804 /* We must have a valid space and subspace. */
6805 pa_check_current_space_and_subspace ();
6809 pa_undefine_label ();
6812 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
6813 is for static functions. FIXME. Should share more code with .EXPORT. */
6816 pa_param (int unused ATTRIBUTE_UNUSED)
6821 name = input_line_pointer;
6822 c = get_symbol_end ();
6824 if ((symbol = symbol_find_or_make (name)) == NULL)
6826 as_bad (_("Cannot define static symbol: %s\n"), name);
6827 p = input_line_pointer;
6829 input_line_pointer++;
6833 S_CLEAR_EXTERNAL (symbol);
6834 p = input_line_pointer;
6836 if (!is_end_of_statement ())
6838 input_line_pointer++;
6839 pa_type_args (symbol, 0);
6843 demand_empty_rest_of_line ();
6846 /* Handle a .PROC pseudo-op. It is used to mark the beginning
6847 of a procedure from a syntactical point of view. */
6850 pa_proc (int unused ATTRIBUTE_UNUSED)
6852 struct call_info *call_info;
6855 /* We must have a valid space and subspace. */
6856 pa_check_current_space_and_subspace ();
6859 if (within_procedure)
6860 as_fatal (_("Nested procedures"));
6862 /* Reset global variables for new procedure. */
6863 callinfo_found = FALSE;
6864 within_procedure = TRUE;
6866 /* Create another call_info structure. */
6867 call_info = xmalloc (sizeof (struct call_info));
6870 as_fatal (_("Cannot allocate unwind descriptor\n"));
6872 memset (call_info, 0, sizeof (struct call_info));
6874 call_info->ci_next = NULL;
6876 if (call_info_root == NULL)
6878 call_info_root = call_info;
6879 last_call_info = call_info;
6883 last_call_info->ci_next = call_info;
6884 last_call_info = call_info;
6887 /* set up defaults on call_info structure */
6889 call_info->ci_unwind.descriptor.cannot_unwind = 0;
6890 call_info->ci_unwind.descriptor.region_desc = 1;
6891 call_info->ci_unwind.descriptor.hpux_interrupt_marker = 0;
6893 /* If we got a .PROC pseudo-op, we know that the function is defined
6894 locally. Make sure it gets into the symbol table. */
6896 label_symbol_struct *label_symbol = pa_get_label ();
6900 if (label_symbol->lss_label)
6902 last_call_info->start_symbol = label_symbol->lss_label;
6903 symbol_get_bfdsym (label_symbol->lss_label)->flags |= BSF_FUNCTION;
6906 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
6909 last_call_info->start_symbol = NULL;
6912 demand_empty_rest_of_line ();
6915 /* Process the syntactical end of a procedure. Make sure all the
6916 appropriate pseudo-ops were found within the procedure. */
6919 pa_procend (int unused ATTRIBUTE_UNUSED)
6922 /* We must have a valid space and subspace. */
6923 pa_check_current_space_and_subspace ();
6926 /* If we are within a procedure definition, make sure we've
6927 defined a label for the procedure; handle case where the
6928 label was defined after the .PROC directive.
6930 Note there's not need to diddle with the segment or fragment
6931 for the label symbol in this case. We have already switched
6932 into the new $CODE$ subspace at this point. */
6933 if (within_procedure && last_call_info->start_symbol == NULL)
6935 label_symbol_struct *label_symbol = pa_get_label ();
6939 if (label_symbol->lss_label)
6941 last_call_info->start_symbol = label_symbol->lss_label;
6942 symbol_get_bfdsym (label_symbol->lss_label)->flags
6945 /* Also handle allocation of a fixup to hold the unwind
6946 information when the label appears after the proc/procend. */
6947 if (within_entry_exit)
6952 where = frag_more (0);
6953 u = UNWIND_LOW32 (&last_call_info->ci_unwind.descriptor);
6954 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
6955 NULL, (offsetT) 0, NULL,
6956 0, R_HPPA_ENTRY, e_fsel, 0, 0, u);
6961 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
6964 as_bad (_("Missing function name for .PROC"));
6967 if (!within_procedure)
6968 as_bad (_("misplaced .procend"));
6970 if (!callinfo_found)
6971 as_bad (_("Missing .callinfo for this procedure"));
6973 if (within_entry_exit)
6974 as_bad (_("Missing .EXIT for a .ENTRY"));
6977 /* ELF needs to mark the end of each function so that it can compute
6978 the size of the function (apparently its needed in the symbol table). */
6979 hppa_elf_mark_end_of_function ();
6982 within_procedure = FALSE;
6983 demand_empty_rest_of_line ();
6984 pa_undefine_label ();
6988 /* If VALUE is an exact power of two between zero and 2^31, then
6989 return log2 (VALUE). Else return -1. */
6992 exact_log2 (int value)
6996 while ((1 << shift) != value && shift < 32)
7005 /* Check to make sure we have a valid space and subspace. */
7008 pa_check_current_space_and_subspace (void)
7010 if (current_space == NULL)
7011 as_fatal (_("Not in a space.\n"));
7013 if (current_subspace == NULL)
7014 as_fatal (_("Not in a subspace.\n"));
7017 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
7018 then create a new space entry to hold the information specified
7019 by the parameters to the .SPACE directive. */
7021 static sd_chain_struct *
7022 pa_parse_space_stmt (char *space_name, int create_flag)
7024 char *name, *ptemp, c;
7025 char loadable, defined, private, sort;
7027 asection *seg = NULL;
7028 sd_chain_struct *space;
7030 /* Load default values. */
7036 if (strcmp (space_name, "$TEXT$") == 0)
7038 seg = pa_def_spaces[0].segment;
7039 defined = pa_def_spaces[0].defined;
7040 private = pa_def_spaces[0].private;
7041 sort = pa_def_spaces[0].sort;
7042 spnum = pa_def_spaces[0].spnum;
7044 else if (strcmp (space_name, "$PRIVATE$") == 0)
7046 seg = pa_def_spaces[1].segment;
7047 defined = pa_def_spaces[1].defined;
7048 private = pa_def_spaces[1].private;
7049 sort = pa_def_spaces[1].sort;
7050 spnum = pa_def_spaces[1].spnum;
7053 if (!is_end_of_statement ())
7055 print_errors = FALSE;
7056 ptemp = input_line_pointer + 1;
7057 /* First see if the space was specified as a number rather than
7058 as a name. According to the PA assembly manual the rest of
7059 the line should be ignored. */
7061 pa_parse_number (&ptemp, 0);
7065 input_line_pointer = ptemp;
7069 while (!is_end_of_statement ())
7071 input_line_pointer++;
7072 name = input_line_pointer;
7073 c = get_symbol_end ();
7074 if ((strncasecmp (name, "spnum", 5) == 0))
7076 *input_line_pointer = c;
7077 input_line_pointer++;
7078 spnum = get_absolute_expression ();
7080 else if ((strncasecmp (name, "sort", 4) == 0))
7082 *input_line_pointer = c;
7083 input_line_pointer++;
7084 sort = get_absolute_expression ();
7086 else if ((strncasecmp (name, "unloadable", 10) == 0))
7088 *input_line_pointer = c;
7091 else if ((strncasecmp (name, "notdefined", 10) == 0))
7093 *input_line_pointer = c;
7096 else if ((strncasecmp (name, "private", 7) == 0))
7098 *input_line_pointer = c;
7103 as_bad (_("Invalid .SPACE argument"));
7104 *input_line_pointer = c;
7105 if (!is_end_of_statement ())
7106 input_line_pointer++;
7110 print_errors = TRUE;
7113 if (create_flag && seg == NULL)
7114 seg = subseg_new (space_name, 0);
7116 /* If create_flag is nonzero, then create the new space with
7117 the attributes computed above. Else set the values in
7118 an already existing space -- this can only happen for
7119 the first occurrence of a built-in space. */
7121 space = create_new_space (space_name, spnum, loadable, defined,
7122 private, sort, seg, 1);
7125 space = is_defined_space (space_name);
7126 SPACE_SPNUM (space) = spnum;
7127 SPACE_DEFINED (space) = defined & 1;
7128 SPACE_USER_DEFINED (space) = 1;
7131 #ifdef obj_set_section_attributes
7132 obj_set_section_attributes (seg, defined, private, sort, spnum);
7138 /* Handle a .SPACE pseudo-op; this switches the current space to the
7139 given space, creating the new space if necessary. */
7142 pa_space (int unused ATTRIBUTE_UNUSED)
7144 char *name, c, *space_name, *save_s;
7145 sd_chain_struct *sd_chain;
7147 if (within_procedure)
7149 as_bad (_("Can\'t change spaces within a procedure definition. Ignored"));
7150 ignore_rest_of_line ();
7154 /* Check for some of the predefined spaces. FIXME: most of the code
7155 below is repeated several times, can we extract the common parts
7156 and place them into a subroutine or something similar? */
7157 /* FIXME Is this (and the next IF stmt) really right?
7158 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
7159 if (strncmp (input_line_pointer, "$TEXT$", 6) == 0)
7161 input_line_pointer += 6;
7162 sd_chain = is_defined_space ("$TEXT$");
7163 if (sd_chain == NULL)
7164 sd_chain = pa_parse_space_stmt ("$TEXT$", 1);
7165 else if (SPACE_USER_DEFINED (sd_chain) == 0)
7166 sd_chain = pa_parse_space_stmt ("$TEXT$", 0);
7168 current_space = sd_chain;
7169 subseg_set (text_section, sd_chain->sd_last_subseg);
7171 = pa_subsegment_to_subspace (text_section,
7172 sd_chain->sd_last_subseg);
7173 demand_empty_rest_of_line ();
7176 if (strncmp (input_line_pointer, "$PRIVATE$", 9) == 0)
7178 input_line_pointer += 9;
7179 sd_chain = is_defined_space ("$PRIVATE$");
7180 if (sd_chain == NULL)
7181 sd_chain = pa_parse_space_stmt ("$PRIVATE$", 1);
7182 else if (SPACE_USER_DEFINED (sd_chain) == 0)
7183 sd_chain = pa_parse_space_stmt ("$PRIVATE$", 0);
7185 current_space = sd_chain;
7186 subseg_set (data_section, sd_chain->sd_last_subseg);
7188 = pa_subsegment_to_subspace (data_section,
7189 sd_chain->sd_last_subseg);
7190 demand_empty_rest_of_line ();
7193 if (!strncasecmp (input_line_pointer,
7194 GDB_DEBUG_SPACE_NAME,
7195 strlen (GDB_DEBUG_SPACE_NAME)))
7197 input_line_pointer += strlen (GDB_DEBUG_SPACE_NAME);
7198 sd_chain = is_defined_space (GDB_DEBUG_SPACE_NAME);
7199 if (sd_chain == NULL)
7200 sd_chain = pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME, 1);
7201 else if (SPACE_USER_DEFINED (sd_chain) == 0)
7202 sd_chain = pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME, 0);
7204 current_space = sd_chain;
7207 asection *gdb_section
7208 = bfd_make_section_old_way (stdoutput, GDB_DEBUG_SPACE_NAME);
7210 subseg_set (gdb_section, sd_chain->sd_last_subseg);
7212 = pa_subsegment_to_subspace (gdb_section,
7213 sd_chain->sd_last_subseg);
7215 demand_empty_rest_of_line ();
7219 /* It could be a space specified by number. */
7221 save_s = input_line_pointer;
7223 pa_parse_number (&input_line_pointer, 0);
7226 if ((sd_chain = pa_find_space_by_number (pa_number)))
7228 current_space = sd_chain;
7230 subseg_set (sd_chain->sd_seg, sd_chain->sd_last_subseg);
7232 = pa_subsegment_to_subspace (sd_chain->sd_seg,
7233 sd_chain->sd_last_subseg);
7234 demand_empty_rest_of_line ();
7239 /* Not a number, attempt to create a new space. */
7241 input_line_pointer = save_s;
7242 name = input_line_pointer;
7243 c = get_symbol_end ();
7244 space_name = xmalloc (strlen (name) + 1);
7245 strcpy (space_name, name);
7246 *input_line_pointer = c;
7248 sd_chain = pa_parse_space_stmt (space_name, 1);
7249 current_space = sd_chain;
7251 subseg_set (sd_chain->sd_seg, sd_chain->sd_last_subseg);
7252 current_subspace = pa_subsegment_to_subspace (sd_chain->sd_seg,
7253 sd_chain->sd_last_subseg);
7254 demand_empty_rest_of_line ();
7258 /* Switch to a new space. (I think). FIXME. */
7261 pa_spnum (int unused ATTRIBUTE_UNUSED)
7266 sd_chain_struct *space;
7268 name = input_line_pointer;
7269 c = get_symbol_end ();
7270 space = is_defined_space (name);
7274 md_number_to_chars (p, SPACE_SPNUM (space), 4);
7277 as_warn (_("Undefined space: '%s' Assuming space number = 0."), name);
7279 *input_line_pointer = c;
7280 demand_empty_rest_of_line ();
7283 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
7284 given subspace, creating the new subspace if necessary.
7286 FIXME. Should mirror pa_space more closely, in particular how
7287 they're broken up into subroutines. */
7290 pa_subspace (int create_new)
7292 char *name, *ss_name, c;
7293 char loadable, code_only, comdat, common, dup_common, zero, sort;
7294 int i, access, space_index, alignment, quadrant, applicable, flags;
7295 sd_chain_struct *space;
7296 ssd_chain_struct *ssd;
7299 if (current_space == NULL)
7300 as_fatal (_("Must be in a space before changing or declaring subspaces.\n"));
7302 if (within_procedure)
7304 as_bad (_("Can\'t change subspaces within a procedure definition. Ignored"));
7305 ignore_rest_of_line ();
7309 name = input_line_pointer;
7310 c = get_symbol_end ();
7311 ss_name = xmalloc (strlen (name) + 1);
7312 strcpy (ss_name, name);
7313 *input_line_pointer = c;
7315 /* Load default values. */
7328 space = current_space;
7332 ssd = is_defined_subspace (ss_name);
7333 /* Allow user to override the builtin attributes of subspaces. But
7334 only allow the attributes to be changed once! */
7335 if (ssd && SUBSPACE_DEFINED (ssd))
7337 subseg_set (ssd->ssd_seg, ssd->ssd_subseg);
7338 current_subspace = ssd;
7339 if (!is_end_of_statement ())
7340 as_warn (_("Parameters of an existing subspace can\'t be modified"));
7341 demand_empty_rest_of_line ();
7346 /* A new subspace. Load default values if it matches one of
7347 the builtin subspaces. */
7349 while (pa_def_subspaces[i].name)
7351 if (strcasecmp (pa_def_subspaces[i].name, ss_name) == 0)
7353 loadable = pa_def_subspaces[i].loadable;
7354 comdat = pa_def_subspaces[i].comdat;
7355 common = pa_def_subspaces[i].common;
7356 dup_common = pa_def_subspaces[i].dup_common;
7357 code_only = pa_def_subspaces[i].code_only;
7358 zero = pa_def_subspaces[i].zero;
7359 space_index = pa_def_subspaces[i].space_index;
7360 alignment = pa_def_subspaces[i].alignment;
7361 quadrant = pa_def_subspaces[i].quadrant;
7362 access = pa_def_subspaces[i].access;
7363 sort = pa_def_subspaces[i].sort;
7370 /* We should be working with a new subspace now. Fill in
7371 any information as specified by the user. */
7372 if (!is_end_of_statement ())
7374 input_line_pointer++;
7375 while (!is_end_of_statement ())
7377 name = input_line_pointer;
7378 c = get_symbol_end ();
7379 if ((strncasecmp (name, "quad", 4) == 0))
7381 *input_line_pointer = c;
7382 input_line_pointer++;
7383 quadrant = get_absolute_expression ();
7385 else if ((strncasecmp (name, "align", 5) == 0))
7387 *input_line_pointer = c;
7388 input_line_pointer++;
7389 alignment = get_absolute_expression ();
7390 if (exact_log2 (alignment) == -1)
7392 as_bad (_("Alignment must be a power of 2"));
7396 else if ((strncasecmp (name, "access", 6) == 0))
7398 *input_line_pointer = c;
7399 input_line_pointer++;
7400 access = get_absolute_expression ();
7402 else if ((strncasecmp (name, "sort", 4) == 0))
7404 *input_line_pointer = c;
7405 input_line_pointer++;
7406 sort = get_absolute_expression ();
7408 else if ((strncasecmp (name, "code_only", 9) == 0))
7410 *input_line_pointer = c;
7413 else if ((strncasecmp (name, "unloadable", 10) == 0))
7415 *input_line_pointer = c;
7418 else if ((strncasecmp (name, "comdat", 6) == 0))
7420 *input_line_pointer = c;
7423 else if ((strncasecmp (name, "common", 6) == 0))
7425 *input_line_pointer = c;
7428 else if ((strncasecmp (name, "dup_comm", 8) == 0))
7430 *input_line_pointer = c;
7433 else if ((strncasecmp (name, "zero", 4) == 0))
7435 *input_line_pointer = c;
7438 else if ((strncasecmp (name, "first", 5) == 0))
7439 as_bad (_("FIRST not supported as a .SUBSPACE argument"));
7441 as_bad (_("Invalid .SUBSPACE argument"));
7442 if (!is_end_of_statement ())
7443 input_line_pointer++;
7447 /* Compute a reasonable set of BFD flags based on the information
7448 in the .subspace directive. */
7449 applicable = bfd_applicable_section_flags (stdoutput);
7452 flags |= (SEC_ALLOC | SEC_LOAD);
7456 /* These flags are used to implement various flavors of initialized
7457 common. The SOM linker discards duplicate subspaces when they
7458 have the same "key" symbol name. This support is more like
7459 GNU linkonce than BFD common. Further, pc-relative relocations
7460 are converted to section relative relocations in BFD common
7461 sections. This complicates the handling of relocations in
7462 common sections containing text and isn't currently supported
7463 correctly in the SOM BFD backend. */
7464 if (comdat || common || dup_common)
7465 flags |= SEC_LINK_ONCE;
7467 flags |= SEC_RELOC | SEC_HAS_CONTENTS;
7469 /* This is a zero-filled subspace (eg BSS). */
7471 flags &= ~(SEC_LOAD | SEC_HAS_CONTENTS);
7473 applicable &= flags;
7475 /* If this is an existing subspace, then we want to use the
7476 segment already associated with the subspace.
7478 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
7479 lots of sections. It might be a problem in the PA ELF
7480 code, I do not know yet. For now avoid creating anything
7481 but the "standard" sections for ELF. */
7483 section = subseg_force_new (ss_name, 0);
7485 section = ssd->ssd_seg;
7487 section = subseg_new (ss_name, 0);
7490 seg_info (section)->bss = 1;
7492 /* Now set the flags. */
7493 bfd_set_section_flags (stdoutput, section, applicable);
7495 /* Record any alignment request for this section. */
7496 record_alignment (section, exact_log2 (alignment));
7498 /* Set the starting offset for this section. */
7499 bfd_set_section_vma (stdoutput, section,
7500 pa_subspace_start (space, quadrant));
7502 /* Now that all the flags are set, update an existing subspace,
7503 or create a new one. */
7506 current_subspace = update_subspace (space, ss_name, loadable,
7507 code_only, comdat, common,
7508 dup_common, sort, zero, access,
7509 space_index, alignment, quadrant,
7512 current_subspace = create_new_subspace (space, ss_name, loadable,
7513 code_only, comdat, common,
7514 dup_common, zero, sort,
7515 access, space_index,
7516 alignment, quadrant, section);
7518 demand_empty_rest_of_line ();
7519 current_subspace->ssd_seg = section;
7520 subseg_set (current_subspace->ssd_seg, current_subspace->ssd_subseg);
7522 SUBSPACE_DEFINED (current_subspace) = 1;
7525 /* Create default space and subspace dictionaries. */
7528 pa_spaces_begin (void)
7532 space_dict_root = NULL;
7533 space_dict_last = NULL;
7536 while (pa_def_spaces[i].name)
7540 /* Pick the right name to use for the new section. */
7541 name = pa_def_spaces[i].name;
7543 pa_def_spaces[i].segment = subseg_new (name, 0);
7544 create_new_space (pa_def_spaces[i].name, pa_def_spaces[i].spnum,
7545 pa_def_spaces[i].loadable, pa_def_spaces[i].defined,
7546 pa_def_spaces[i].private, pa_def_spaces[i].sort,
7547 pa_def_spaces[i].segment, 0);
7552 while (pa_def_subspaces[i].name)
7555 int applicable, subsegment;
7556 asection *segment = NULL;
7557 sd_chain_struct *space;
7559 /* Pick the right name for the new section and pick the right
7560 subsegment number. */
7561 name = pa_def_subspaces[i].name;
7564 /* Create the new section. */
7565 segment = subseg_new (name, subsegment);
7567 /* For SOM we want to replace the standard .text, .data, and .bss
7568 sections with our own. We also want to set BFD flags for
7569 all the built-in subspaces. */
7570 if (!strcmp (pa_def_subspaces[i].name, "$CODE$"))
7572 text_section = segment;
7573 applicable = bfd_applicable_section_flags (stdoutput);
7574 bfd_set_section_flags (stdoutput, segment,
7575 applicable & (SEC_ALLOC | SEC_LOAD
7576 | SEC_RELOC | SEC_CODE
7578 | SEC_HAS_CONTENTS));
7580 else if (!strcmp (pa_def_subspaces[i].name, "$DATA$"))
7582 data_section = segment;
7583 applicable = bfd_applicable_section_flags (stdoutput);
7584 bfd_set_section_flags (stdoutput, segment,
7585 applicable & (SEC_ALLOC | SEC_LOAD
7587 | SEC_HAS_CONTENTS));
7590 else if (!strcmp (pa_def_subspaces[i].name, "$BSS$"))
7592 bss_section = segment;
7593 applicable = bfd_applicable_section_flags (stdoutput);
7594 bfd_set_section_flags (stdoutput, segment,
7595 applicable & SEC_ALLOC);
7597 else if (!strcmp (pa_def_subspaces[i].name, "$LIT$"))
7599 applicable = bfd_applicable_section_flags (stdoutput);
7600 bfd_set_section_flags (stdoutput, segment,
7601 applicable & (SEC_ALLOC | SEC_LOAD
7604 | SEC_HAS_CONTENTS));
7606 else if (!strcmp (pa_def_subspaces[i].name, "$MILLICODE$"))
7608 applicable = bfd_applicable_section_flags (stdoutput);
7609 bfd_set_section_flags (stdoutput, segment,
7610 applicable & (SEC_ALLOC | SEC_LOAD
7613 | SEC_HAS_CONTENTS));
7615 else if (!strcmp (pa_def_subspaces[i].name, "$UNWIND$"))
7617 applicable = bfd_applicable_section_flags (stdoutput);
7618 bfd_set_section_flags (stdoutput, segment,
7619 applicable & (SEC_ALLOC | SEC_LOAD
7622 | SEC_HAS_CONTENTS));
7625 /* Find the space associated with this subspace. */
7626 space = pa_segment_to_space (pa_def_spaces[pa_def_subspaces[i].
7627 def_space_index].segment);
7630 as_fatal (_("Internal error: Unable to find containing space for %s."),
7631 pa_def_subspaces[i].name);
7634 create_new_subspace (space, name,
7635 pa_def_subspaces[i].loadable,
7636 pa_def_subspaces[i].code_only,
7637 pa_def_subspaces[i].comdat,
7638 pa_def_subspaces[i].common,
7639 pa_def_subspaces[i].dup_common,
7640 pa_def_subspaces[i].zero,
7641 pa_def_subspaces[i].sort,
7642 pa_def_subspaces[i].access,
7643 pa_def_subspaces[i].space_index,
7644 pa_def_subspaces[i].alignment,
7645 pa_def_subspaces[i].quadrant,
7651 /* Create a new space NAME, with the appropriate flags as defined
7652 by the given parameters. */
7654 static sd_chain_struct *
7655 create_new_space (char *name,
7657 int loadable ATTRIBUTE_UNUSED,
7664 sd_chain_struct *chain_entry;
7666 chain_entry = xmalloc (sizeof (sd_chain_struct));
7668 as_fatal (_("Out of memory: could not allocate new space chain entry: %s\n"),
7671 SPACE_NAME (chain_entry) = xmalloc (strlen (name) + 1);
7672 strcpy (SPACE_NAME (chain_entry), name);
7673 SPACE_DEFINED (chain_entry) = defined;
7674 SPACE_USER_DEFINED (chain_entry) = user_defined;
7675 SPACE_SPNUM (chain_entry) = spnum;
7677 chain_entry->sd_seg = seg;
7678 chain_entry->sd_last_subseg = -1;
7679 chain_entry->sd_subspaces = NULL;
7680 chain_entry->sd_next = NULL;
7682 /* Find spot for the new space based on its sort key. */
7683 if (!space_dict_last)
7684 space_dict_last = chain_entry;
7686 if (space_dict_root == NULL)
7687 space_dict_root = chain_entry;
7690 sd_chain_struct *chain_pointer;
7691 sd_chain_struct *prev_chain_pointer;
7693 chain_pointer = space_dict_root;
7694 prev_chain_pointer = NULL;
7696 while (chain_pointer)
7698 prev_chain_pointer = chain_pointer;
7699 chain_pointer = chain_pointer->sd_next;
7702 /* At this point we've found the correct place to add the new
7703 entry. So add it and update the linked lists as appropriate. */
7704 if (prev_chain_pointer)
7706 chain_entry->sd_next = chain_pointer;
7707 prev_chain_pointer->sd_next = chain_entry;
7711 space_dict_root = chain_entry;
7712 chain_entry->sd_next = chain_pointer;
7715 if (chain_entry->sd_next == NULL)
7716 space_dict_last = chain_entry;
7719 /* This is here to catch predefined spaces which do not get
7720 modified by the user's input. Another call is found at
7721 the bottom of pa_parse_space_stmt to handle cases where
7722 the user modifies a predefined space. */
7723 #ifdef obj_set_section_attributes
7724 obj_set_section_attributes (seg, defined, private, sort, spnum);
7730 /* Create a new subspace NAME, with the appropriate flags as defined
7731 by the given parameters.
7733 Add the new subspace to the subspace dictionary chain in numerical
7734 order as defined by the SORT entries. */
7736 static ssd_chain_struct *
7737 create_new_subspace (sd_chain_struct *space,
7739 int loadable ATTRIBUTE_UNUSED,
7740 int code_only ATTRIBUTE_UNUSED,
7744 int is_zero ATTRIBUTE_UNUSED,
7747 int space_index ATTRIBUTE_UNUSED,
7748 int alignment ATTRIBUTE_UNUSED,
7752 ssd_chain_struct *chain_entry;
7754 chain_entry = xmalloc (sizeof (ssd_chain_struct));
7756 as_fatal (_("Out of memory: could not allocate new subspace chain entry: %s\n"), name);
7758 SUBSPACE_NAME (chain_entry) = xmalloc (strlen (name) + 1);
7759 strcpy (SUBSPACE_NAME (chain_entry), name);
7761 /* Initialize subspace_defined. When we hit a .subspace directive
7762 we'll set it to 1 which "locks-in" the subspace attributes. */
7763 SUBSPACE_DEFINED (chain_entry) = 0;
7765 chain_entry->ssd_subseg = 0;
7766 chain_entry->ssd_seg = seg;
7767 chain_entry->ssd_next = NULL;
7769 /* Find spot for the new subspace based on its sort key. */
7770 if (space->sd_subspaces == NULL)
7771 space->sd_subspaces = chain_entry;
7774 ssd_chain_struct *chain_pointer;
7775 ssd_chain_struct *prev_chain_pointer;
7777 chain_pointer = space->sd_subspaces;
7778 prev_chain_pointer = NULL;
7780 while (chain_pointer)
7782 prev_chain_pointer = chain_pointer;
7783 chain_pointer = chain_pointer->ssd_next;
7786 /* Now we have somewhere to put the new entry. Insert it and update
7788 if (prev_chain_pointer)
7790 chain_entry->ssd_next = chain_pointer;
7791 prev_chain_pointer->ssd_next = chain_entry;
7795 space->sd_subspaces = chain_entry;
7796 chain_entry->ssd_next = chain_pointer;
7800 #ifdef obj_set_subsection_attributes
7801 obj_set_subsection_attributes (seg, space->sd_seg, access, sort,
7802 quadrant, comdat, common, dup_common);
7808 /* Update the information for the given subspace based upon the
7809 various arguments. Return the modified subspace chain entry. */
7811 static ssd_chain_struct *
7812 update_subspace (sd_chain_struct *space,
7814 int loadable ATTRIBUTE_UNUSED,
7815 int code_only ATTRIBUTE_UNUSED,
7820 int zero ATTRIBUTE_UNUSED,
7822 int space_index ATTRIBUTE_UNUSED,
7823 int alignment ATTRIBUTE_UNUSED,
7827 ssd_chain_struct *chain_entry;
7829 chain_entry = is_defined_subspace (name);
7831 #ifdef obj_set_subsection_attributes
7832 obj_set_subsection_attributes (section, space->sd_seg, access, sort,
7833 quadrant, comdat, common, dup_common);
7839 /* Return the space chain entry for the space with the name NAME or
7840 NULL if no such space exists. */
7842 static sd_chain_struct *
7843 is_defined_space (char *name)
7845 sd_chain_struct *chain_pointer;
7847 for (chain_pointer = space_dict_root;
7849 chain_pointer = chain_pointer->sd_next)
7850 if (strcmp (SPACE_NAME (chain_pointer), name) == 0)
7851 return chain_pointer;
7853 /* No mapping from segment to space was found. Return NULL. */
7857 /* Find and return the space associated with the given seg. If no mapping
7858 from the given seg to a space is found, then return NULL.
7860 Unlike subspaces, the number of spaces is not expected to grow much,
7861 so a linear exhaustive search is OK here. */
7863 static sd_chain_struct *
7864 pa_segment_to_space (asection *seg)
7866 sd_chain_struct *space_chain;
7868 /* Walk through each space looking for the correct mapping. */
7869 for (space_chain = space_dict_root;
7871 space_chain = space_chain->sd_next)
7872 if (space_chain->sd_seg == seg)
7875 /* Mapping was not found. Return NULL. */
7879 /* Return the first space chain entry for the subspace with the name
7880 NAME or NULL if no such subspace exists.
7882 When there are multiple subspaces with the same name, switching to
7883 the first (i.e., default) subspace is preferable in most situations.
7884 For example, it wouldn't be desirable to merge COMDAT data with non
7887 Uses a linear search through all the spaces and subspaces, this may
7888 not be appropriate if we ever being placing each function in its
7891 static ssd_chain_struct *
7892 is_defined_subspace (char *name)
7894 sd_chain_struct *space_chain;
7895 ssd_chain_struct *subspace_chain;
7897 /* Walk through each space. */
7898 for (space_chain = space_dict_root;
7900 space_chain = space_chain->sd_next)
7902 /* Walk through each subspace looking for a name which matches. */
7903 for (subspace_chain = space_chain->sd_subspaces;
7905 subspace_chain = subspace_chain->ssd_next)
7906 if (strcmp (SUBSPACE_NAME (subspace_chain), name) == 0)
7907 return subspace_chain;
7910 /* Subspace wasn't found. Return NULL. */
7914 /* Find and return the subspace associated with the given seg. If no
7915 mapping from the given seg to a subspace is found, then return NULL.
7917 If we ever put each procedure/function within its own subspace
7918 (to make life easier on the compiler and linker), then this will have
7919 to become more efficient. */
7921 static ssd_chain_struct *
7922 pa_subsegment_to_subspace (asection *seg, subsegT subseg)
7924 sd_chain_struct *space_chain;
7925 ssd_chain_struct *subspace_chain;
7927 /* Walk through each space. */
7928 for (space_chain = space_dict_root;
7930 space_chain = space_chain->sd_next)
7932 if (space_chain->sd_seg == seg)
7934 /* Walk through each subspace within each space looking for
7935 the correct mapping. */
7936 for (subspace_chain = space_chain->sd_subspaces;
7938 subspace_chain = subspace_chain->ssd_next)
7939 if (subspace_chain->ssd_subseg == (int) subseg)
7940 return subspace_chain;
7944 /* No mapping from subsegment to subspace found. Return NULL. */
7948 /* Given a number, try and find a space with the name number.
7950 Return a pointer to a space dictionary chain entry for the space
7951 that was found or NULL on failure. */
7953 static sd_chain_struct *
7954 pa_find_space_by_number (int number)
7956 sd_chain_struct *space_chain;
7958 for (space_chain = space_dict_root;
7960 space_chain = space_chain->sd_next)
7962 if (SPACE_SPNUM (space_chain) == (unsigned int) number)
7966 /* No appropriate space found. Return NULL. */
7970 /* Return the starting address for the given subspace. If the starting
7971 address is unknown then return zero. */
7974 pa_subspace_start (sd_chain_struct *space, int quadrant)
7976 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
7977 is not correct for the PA OSF1 port. */
7978 if ((strcmp (SPACE_NAME (space), "$PRIVATE$") == 0) && quadrant == 1)
7980 else if (space->sd_seg == data_section && quadrant == 1)
7988 /* Helper function for pa_stringer. Used to find the end of
7992 pa_stringer_aux (char *s)
7994 unsigned int c = *s & CHAR_MASK;
8007 /* Handle a .STRING type pseudo-op. */
8010 pa_stringer (int append_zero)
8012 char *s, num_buf[4];
8016 /* Preprocess the string to handle PA-specific escape sequences.
8017 For example, \xDD where DD is a hexadecimal number should be
8018 changed to \OOO where OOO is an octal number. */
8021 /* We must have a valid space and subspace. */
8022 pa_check_current_space_and_subspace ();
8025 /* Skip the opening quote. */
8026 s = input_line_pointer + 1;
8028 while (is_a_char (c = pa_stringer_aux (s++)))
8035 /* Handle \x<num>. */
8038 unsigned int number;
8043 /* Get past the 'x'. */
8045 for (num_digit = 0, number = 0, dg = *s;
8047 && (ISDIGIT (dg) || (dg >= 'a' && dg <= 'f')
8048 || (dg >= 'A' && dg <= 'F'));
8052 number = number * 16 + dg - '0';
8053 else if (dg >= 'a' && dg <= 'f')
8054 number = number * 16 + dg - 'a' + 10;
8056 number = number * 16 + dg - 'A' + 10;
8066 sprintf (num_buf, "%02o", number);
8069 sprintf (num_buf, "%03o", number);
8072 for (i = 0; i <= num_digit; i++)
8073 s_start[i] = num_buf[i];
8077 /* This might be a "\"", skip over the escaped char. */
8084 stringer (8 + append_zero);
8085 pa_undefine_label ();
8088 /* Handle a .VERSION pseudo-op. */
8091 pa_version (int unused ATTRIBUTE_UNUSED)
8094 pa_undefine_label ();
8099 /* Handle a .COMPILER pseudo-op. */
8102 pa_compiler (int unused ATTRIBUTE_UNUSED)
8104 obj_som_compiler (0);
8105 pa_undefine_label ();
8110 /* Handle a .COPYRIGHT pseudo-op. */
8113 pa_copyright (int unused ATTRIBUTE_UNUSED)
8116 pa_undefine_label ();
8119 /* Just like a normal cons, but when finished we have to undefine
8120 the latest space label. */
8123 pa_cons (int nbytes)
8126 pa_undefine_label ();
8129 /* Like float_cons, but we need to undefine our label. */
8132 pa_float_cons (int float_type)
8134 float_cons (float_type);
8135 pa_undefine_label ();
8138 /* Like s_fill, but delete our label when finished. */
8141 pa_fill (int unused ATTRIBUTE_UNUSED)
8144 /* We must have a valid space and subspace. */
8145 pa_check_current_space_and_subspace ();
8149 pa_undefine_label ();
8152 /* Like lcomm, but delete our label when finished. */
8155 pa_lcomm (int needs_align)
8158 /* We must have a valid space and subspace. */
8159 pa_check_current_space_and_subspace ();
8162 s_lcomm (needs_align);
8163 pa_undefine_label ();
8166 /* Like lsym, but delete our label when finished. */
8169 pa_lsym (int unused ATTRIBUTE_UNUSED)
8172 /* We must have a valid space and subspace. */
8173 pa_check_current_space_and_subspace ();
8177 pa_undefine_label ();
8180 /* This function is called once, at assembler startup time. It should
8181 set up all the tables, etc. that the MD part of the assembler will need. */
8186 const char *retval = NULL;
8190 last_call_info = NULL;
8191 call_info_root = NULL;
8193 /* Set the default machine type. */
8194 if (!bfd_set_arch_mach (stdoutput, bfd_arch_hppa, DEFAULT_LEVEL))
8195 as_warn (_("could not set architecture and machine"));
8197 /* Folding of text and data segments fails miserably on the PA.
8198 Warn user and disable "-R" option. */
8199 if (flag_readonly_data_in_text)
8201 as_warn (_("-R option not supported on this target."));
8202 flag_readonly_data_in_text = 0;
8209 op_hash = hash_new ();
8211 while (i < NUMOPCODES)
8213 const char *name = pa_opcodes[i].name;
8215 retval = hash_insert (op_hash, name, (struct pa_opcode *) &pa_opcodes[i]);
8216 if (retval != NULL && *retval != '\0')
8218 as_fatal (_("Internal error: can't hash `%s': %s\n"), name, retval);
8224 if ((pa_opcodes[i].match & pa_opcodes[i].mask)
8225 != pa_opcodes[i].match)
8227 fprintf (stderr, _("internal error: losing opcode: `%s' \"%s\"\n"),
8228 pa_opcodes[i].name, pa_opcodes[i].args);
8233 while (i < NUMOPCODES && !strcmp (pa_opcodes[i].name, name));
8237 as_fatal (_("Broken assembler. No assembly attempted."));
8240 /* SOM will change text_section. To make sure we never put
8241 anything into the old one switch to the new one now. */
8242 subseg_set (text_section, 0);
8246 dummy_symbol = symbol_find_or_make ("L$dummy");
8247 S_SET_SEGMENT (dummy_symbol, text_section);
8248 /* Force the symbol to be converted to a real symbol. */
8249 (void) symbol_get_bfdsym (dummy_symbol);
8253 /* On the PA relocations which involve function symbols must not be
8254 adjusted. This so that the linker can know when/how to create argument
8255 relocation stubs for indirect calls and calls to static functions.
8257 "T" field selectors create DLT relative fixups for accessing
8258 globals and statics in PIC code; each DLT relative fixup creates
8259 an entry in the DLT table. The entries contain the address of
8260 the final target (eg accessing "foo" would create a DLT entry
8261 with the address of "foo").
8263 Unfortunately, the HP linker doesn't take into account any addend
8264 when generating the DLT; so accessing $LIT$+8 puts the address of
8265 $LIT$ into the DLT rather than the address of $LIT$+8.
8267 The end result is we can't perform relocation symbol reductions for
8268 any fixup which creates entries in the DLT (eg they use "T" field
8271 ??? Reject reductions involving symbols with external scope; such
8272 reductions make life a living hell for object file editors. */
8275 hppa_fix_adjustable (fixS *fixp)
8280 struct hppa_fix_struct *hppa_fix;
8282 hppa_fix = (struct hppa_fix_struct *) fixp->tc_fix_data;
8285 /* LR/RR selectors are implicitly used for a number of different relocation
8286 types. We must ensure that none of these types are adjusted (see below)
8287 even if they occur with a different selector. */
8288 code = elf_hppa_reloc_final_type (stdoutput, fixp->fx_r_type,
8289 hppa_fix->fx_r_format,
8290 hppa_fix->fx_r_field);
8294 /* Relocation types which use e_lrsel. */
8295 case R_PARISC_DIR21L:
8296 case R_PARISC_DLTREL21L:
8297 case R_PARISC_DPREL21L:
8298 case R_PARISC_PLTOFF21L:
8300 /* Relocation types which use e_rrsel. */
8301 case R_PARISC_DIR14R:
8302 case R_PARISC_DIR14DR:
8303 case R_PARISC_DIR14WR:
8304 case R_PARISC_DIR17R:
8305 case R_PARISC_DLTREL14R:
8306 case R_PARISC_DLTREL14DR:
8307 case R_PARISC_DLTREL14WR:
8308 case R_PARISC_DPREL14R:
8309 case R_PARISC_DPREL14DR:
8310 case R_PARISC_DPREL14WR:
8311 case R_PARISC_PLTOFF14R:
8312 case R_PARISC_PLTOFF14DR:
8313 case R_PARISC_PLTOFF14WR:
8315 /* Other types that we reject for reduction. */
8316 case R_PARISC_GNU_VTENTRY:
8317 case R_PARISC_GNU_VTINHERIT:
8324 /* Reject reductions of symbols in sym1-sym2 expressions when
8325 the fixup will occur in a CODE subspace.
8327 XXX FIXME: Long term we probably want to reject all of these;
8328 for example reducing in the debug section would lose if we ever
8329 supported using the optimizing hp linker. */
8332 && (hppa_fix->segment->flags & SEC_CODE))
8335 /* We can't adjust any relocs that use LR% and RR% field selectors.
8337 If a symbol is reduced to a section symbol, the assembler will
8338 adjust the addend unless the symbol happens to reside right at
8339 the start of the section. Additionally, the linker has no choice
8340 but to manipulate the addends when coalescing input sections for
8341 "ld -r". Since an LR% field selector is defined to round the
8342 addend, we can't change the addend without risking that a LR% and
8343 it's corresponding (possible multiple) RR% field will no longer
8344 sum to the right value.
8347 . ldil LR%foo+0,%r21
8348 . ldw RR%foo+0(%r21),%r26
8349 . ldw RR%foo+4(%r21),%r25
8351 If foo is at address 4092 (decimal) in section `sect', then after
8352 reducing to the section symbol we get
8353 . LR%sect+4092 == (L%sect)+0
8354 . RR%sect+4092 == (R%sect)+4092
8355 . RR%sect+4096 == (R%sect)-4096
8356 and the last address loses because rounding the addend to 8k
8357 multiples takes us up to 8192 with an offset of -4096.
8359 In cases where the LR% expression is identical to the RR% one we
8360 will never have a problem, but is so happens that gcc rounds
8361 addends involved in LR% field selectors to work around a HP
8362 linker bug. ie. We often have addresses like the last case
8363 above where the LR% expression is offset from the RR% one. */
8365 if (hppa_fix->fx_r_field == e_lrsel
8366 || hppa_fix->fx_r_field == e_rrsel
8367 || hppa_fix->fx_r_field == e_nlrsel)
8370 /* Reject reductions of symbols in DLT relative relocs,
8371 relocations with plabels. */
8372 if (hppa_fix->fx_r_field == e_tsel
8373 || hppa_fix->fx_r_field == e_ltsel
8374 || hppa_fix->fx_r_field == e_rtsel
8375 || hppa_fix->fx_r_field == e_psel
8376 || hppa_fix->fx_r_field == e_rpsel
8377 || hppa_fix->fx_r_field == e_lpsel)
8380 /* Reject absolute calls (jumps). */
8381 if (hppa_fix->fx_r_type == R_HPPA_ABS_CALL)
8384 /* Reject reductions of function symbols. */
8385 if (fixp->fx_addsy != 0 && S_IS_FUNCTION (fixp->fx_addsy))
8391 /* Return nonzero if the fixup in FIXP will require a relocation,
8392 even it if appears that the fixup could be completely handled
8396 hppa_force_relocation (struct fix *fixp)
8398 struct hppa_fix_struct *hppa_fixp;
8400 hppa_fixp = (struct hppa_fix_struct *) fixp->tc_fix_data;
8402 if (fixp->fx_r_type == (int) R_HPPA_ENTRY
8403 || fixp->fx_r_type == (int) R_HPPA_EXIT
8404 || fixp->fx_r_type == (int) R_HPPA_BEGIN_BRTAB
8405 || fixp->fx_r_type == (int) R_HPPA_END_BRTAB
8406 || fixp->fx_r_type == (int) R_HPPA_BEGIN_TRY
8407 || fixp->fx_r_type == (int) R_HPPA_END_TRY
8408 || (fixp->fx_addsy != NULL && fixp->fx_subsy != NULL
8409 && (hppa_fixp->segment->flags & SEC_CODE) != 0))
8413 if (fixp->fx_r_type == (int) R_PARISC_GNU_VTINHERIT
8414 || fixp->fx_r_type == (int) R_PARISC_GNU_VTENTRY)
8418 assert (fixp->fx_addsy != NULL);
8420 /* Ensure we emit a relocation for global symbols so that dynamic
8422 if (S_FORCE_RELOC (fixp->fx_addsy, 1))
8425 /* It is necessary to force PC-relative calls/jumps to have a relocation
8426 entry if they're going to need either an argument relocation or long
8429 && arg_reloc_stub_needed (symbol_arg_reloc_info (fixp->fx_addsy),
8430 hppa_fixp->fx_arg_reloc))
8433 /* Now check to see if we're going to need a long-branch stub. */
8434 if (fixp->fx_r_type == (int) R_HPPA_PCREL_CALL)
8436 long pc = md_pcrel_from (fixp);
8437 valueT distance, min_stub_distance;
8439 distance = fixp->fx_offset + S_GET_VALUE (fixp->fx_addsy) - pc - 8;
8441 /* Distance to the closest possible stub. This will detect most
8442 but not all circumstances where a stub will not work. */
8443 min_stub_distance = pc + 16;
8445 if (last_call_info != NULL)
8446 min_stub_distance -= S_GET_VALUE (last_call_info->start_symbol);
8449 if ((distance + 8388608 >= 16777216
8450 && min_stub_distance <= 8388608)
8451 || (hppa_fixp->fx_r_format == 17
8452 && distance + 262144 >= 524288
8453 && min_stub_distance <= 262144)
8454 || (hppa_fixp->fx_r_format == 12
8455 && distance + 8192 >= 16384
8456 && min_stub_distance <= 8192)
8461 if (fixp->fx_r_type == (int) R_HPPA_ABS_CALL)
8464 /* No need (yet) to force another relocations to be emitted. */
8468 /* Now for some ELF specific code. FIXME. */
8470 /* For ELF, this function serves one purpose: to setup the st_size
8471 field of STT_FUNC symbols. To do this, we need to scan the
8472 call_info structure list, determining st_size in by taking the
8473 difference in the address of the beginning/end marker symbols. */
8476 elf_hppa_final_processing (void)
8478 struct call_info *call_info_pointer;
8480 for (call_info_pointer = call_info_root;
8482 call_info_pointer = call_info_pointer->ci_next)
8484 elf_symbol_type *esym
8485 = ((elf_symbol_type *)
8486 symbol_get_bfdsym (call_info_pointer->start_symbol));
8487 esym->internal_elf_sym.st_size =
8488 S_GET_VALUE (call_info_pointer->end_symbol)
8489 - S_GET_VALUE (call_info_pointer->start_symbol) + 4;
8494 pa_vtable_entry (int ignore ATTRIBUTE_UNUSED)
8496 struct fix *new_fix;
8498 new_fix = obj_elf_vtable_entry (0);
8502 struct hppa_fix_struct * hppa_fix = obstack_alloc (¬es, sizeof (struct hppa_fix_struct));
8504 hppa_fix->fx_r_type = R_HPPA;
8505 hppa_fix->fx_r_field = e_fsel;
8506 hppa_fix->fx_r_format = 32;
8507 hppa_fix->fx_arg_reloc = 0;
8508 hppa_fix->segment = now_seg;
8509 new_fix->tc_fix_data = (void *) hppa_fix;
8510 new_fix->fx_r_type = (int) R_PARISC_GNU_VTENTRY;
8515 pa_vtable_inherit (int ignore ATTRIBUTE_UNUSED)
8517 struct fix *new_fix;
8519 new_fix = obj_elf_vtable_inherit (0);
8523 struct hppa_fix_struct * hppa_fix = obstack_alloc (¬es, sizeof (struct hppa_fix_struct));
8525 hppa_fix->fx_r_type = R_HPPA;
8526 hppa_fix->fx_r_field = e_fsel;
8527 hppa_fix->fx_r_format = 32;
8528 hppa_fix->fx_arg_reloc = 0;
8529 hppa_fix->segment = now_seg;
8530 new_fix->tc_fix_data = (void *) hppa_fix;
8531 new_fix->fx_r_type = (int) R_PARISC_GNU_VTINHERIT;
8536 /* Table of pseudo ops for the PA. FIXME -- how many of these
8537 are now redundant with the overall GAS and the object file
8538 dependent tables? */
8539 const pseudo_typeS md_pseudo_table[] =
8541 /* align pseudo-ops on the PA specify the actual alignment requested,
8542 not the log2 of the requested alignment. */
8544 {"align", pa_align, 8},
8547 {"align", s_align_bytes, 8},
8549 {"begin_brtab", pa_brtab, 1},
8550 {"begin_try", pa_try, 1},
8551 {"block", pa_block, 1},
8552 {"blockz", pa_block, 0},
8553 {"byte", pa_cons, 1},
8554 {"call", pa_call, 0},
8555 {"callinfo", pa_callinfo, 0},
8556 #if defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))
8557 {"code", obj_elf_text, 0},
8559 {"code", pa_text, 0},
8560 {"comm", pa_comm, 0},
8563 {"compiler", pa_compiler, 0},
8565 {"copyright", pa_copyright, 0},
8566 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8567 {"data", pa_data, 0},
8569 {"double", pa_float_cons, 'd'},
8570 {"dword", pa_cons, 8},
8572 {"end_brtab", pa_brtab, 0},
8573 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8574 {"end_try", pa_try, 0},
8576 {"enter", pa_enter, 0},
8577 {"entry", pa_entry, 0},
8579 {"exit", pa_exit, 0},
8580 {"export", pa_export, 0},
8581 {"fill", pa_fill, 0},
8582 {"float", pa_float_cons, 'f'},
8583 {"half", pa_cons, 2},
8584 {"import", pa_import, 0},
8585 {"int", pa_cons, 4},
8586 {"label", pa_label, 0},
8587 {"lcomm", pa_lcomm, 0},
8588 {"leave", pa_leave, 0},
8589 {"level", pa_level, 0},
8590 {"long", pa_cons, 4},
8591 {"lsym", pa_lsym, 0},
8593 {"nsubspa", pa_subspace, 1},
8595 {"octa", pa_cons, 16},
8596 {"org", pa_origin, 0},
8597 {"origin", pa_origin, 0},
8598 {"param", pa_param, 0},
8599 {"proc", pa_proc, 0},
8600 {"procend", pa_procend, 0},
8601 {"quad", pa_cons, 8},
8603 {"short", pa_cons, 2},
8604 {"single", pa_float_cons, 'f'},
8606 {"space", pa_space, 0},
8607 {"spnum", pa_spnum, 0},
8609 {"string", pa_stringer, 0},
8610 {"stringz", pa_stringer, 1},
8612 {"subspa", pa_subspace, 0},
8614 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8615 {"text", pa_text, 0},
8617 {"version", pa_version, 0},
8619 {"vtable_entry", pa_vtable_entry, 0},
8620 {"vtable_inherit", pa_vtable_inherit, 0},
8622 {"word", pa_cons, 4},
8628 hppa_cfi_frame_initial_instructions (void)
8630 cfi_add_CFA_def_cfa (30, 0);
8634 hppa_regname_to_dw2regnum (char *regname)
8636 unsigned int regnum = -1;
8640 static struct { char *name; int dw2regnum; } regnames[] =
8642 { "sp", 30 }, { "rp", 2 },
8645 for (i = 0; i < ARRAY_SIZE (regnames); ++i)
8646 if (strcmp (regnames[i].name, regname) == 0)
8647 return regnames[i].dw2regnum;
8649 if (regname[0] == 'r')
8652 regnum = strtoul (p, &q, 10);
8653 if (p == q || *q || regnum >= 32)
8656 else if (regname[0] == 'f' && regname[1] == 'r')
8659 regnum = strtoul (p, &q, 10);
8660 if (p == q || *q || regnum <= 4 || regnum >= 32)