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 ();
5901 /* Return TRUE if FRAG1 and FRAG2 are the same. */
5904 is_same_frag (fragS
*frag1
, fragS
*frag2
)
5909 else if (frag2
== NULL
)
5911 else if (frag1
== frag2
)
5913 else if (frag2
->fr_type
== rs_fill
&& frag2
->fr_fix
== 0)
5914 return (is_same_frag (frag1
, frag2
->fr_next
));
5920 /* Build an entry in the UNWIND subspace from the given function
5921 attributes in CALL_INFO. This is not needed for SOM as using
5922 R_ENTRY and R_EXIT relocations allow the linker to handle building
5923 of the unwind spaces. */
5926 pa_build_unwind_subspace (struct call_info
*call_info
)
5928 asection
*seg
, *save_seg
;
5929 subsegT save_subseg
;
5930 unsigned int unwind
;
5934 if ((bfd_get_section_flags (stdoutput
, now_seg
)
5935 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
5936 != (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
5939 reloc
= R_PARISC_SEGREL32
;
5941 save_subseg
= now_subseg
;
5942 /* Get into the right seg/subseg. This may involve creating
5943 the seg the first time through. Make sure to have the
5944 old seg/subseg so that we can reset things when we are done. */
5945 seg
= bfd_get_section_by_name (stdoutput
, UNWIND_SECTION_NAME
);
5946 if (seg
== ASEC_NULL
)
5948 seg
= subseg_new (UNWIND_SECTION_NAME
, 0);
5949 bfd_set_section_flags (stdoutput
, seg
,
5950 SEC_READONLY
| SEC_HAS_CONTENTS
5951 | SEC_LOAD
| SEC_RELOC
| SEC_ALLOC
| SEC_DATA
);
5952 bfd_set_section_alignment (stdoutput
, seg
, 2);
5955 subseg_set (seg
, 0);
5957 /* Get some space to hold relocation information for the unwind
5961 /* Relocation info. for start offset of the function. */
5962 md_number_to_chars (p
, 0, 4);
5963 fix_new_hppa (frag_now
, p
- frag_now
->fr_literal
, 4,
5964 call_info
->start_symbol
, (offsetT
) 0,
5965 (expressionS
*) NULL
, 0, reloc
,
5968 /* Relocation info. for end offset of the function.
5970 Because we allow reductions of 32bit relocations for ELF, this will be
5971 reduced to section_sym + offset which avoids putting the temporary
5972 symbol into the symbol table. It (should) end up giving the same
5973 value as call_info->start_symbol + function size once the linker is
5974 finished with its work. */
5975 md_number_to_chars (p
+ 4, 0, 4);
5976 fix_new_hppa (frag_now
, p
+ 4 - frag_now
->fr_literal
, 4,
5977 call_info
->end_symbol
, (offsetT
) 0,
5978 (expressionS
*) NULL
, 0, reloc
,
5981 /* Dump the descriptor. */
5982 unwind
= UNWIND_LOW32 (&call_info
->ci_unwind
.descriptor
);
5983 md_number_to_chars (p
+ 8, unwind
, 4);
5985 unwind
= UNWIND_HIGH32 (&call_info
->ci_unwind
.descriptor
);
5986 md_number_to_chars (p
+ 12, unwind
, 4);
5988 /* Return back to the original segment/subsegment. */
5989 subseg_set (save_seg
, save_subseg
);
5993 /* Process a .CALLINFO pseudo-op. This information is used later
5994 to build unwind descriptors and maybe one day to support
5995 .ENTER and .LEAVE. */
5998 pa_callinfo (int unused ATTRIBUTE_UNUSED
)
6004 /* We must have a valid space and subspace. */
6005 pa_check_current_space_and_subspace ();
6008 /* .CALLINFO must appear within a procedure definition. */
6009 if (!within_procedure
)
6010 as_bad (_(".callinfo is not within a procedure definition"));
6012 /* Mark the fact that we found the .CALLINFO for the
6013 current procedure. */
6014 callinfo_found
= TRUE
;
6016 /* Iterate over the .CALLINFO arguments. */
6017 while (!is_end_of_statement ())
6019 name
= input_line_pointer
;
6020 c
= get_symbol_end ();
6021 /* Frame size specification. */
6022 if ((strncasecmp (name
, "frame", 5) == 0))
6024 p
= input_line_pointer
;
6026 input_line_pointer
++;
6027 temp
= get_absolute_expression ();
6028 if ((temp
& 0x3) != 0)
6030 as_bad (_("FRAME parameter must be a multiple of 8: %d\n"), temp
);
6034 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
6035 last_call_info
->ci_unwind
.descriptor
.frame_size
= temp
/ 8;
6038 /* Entry register (GR, GR and SR) specifications. */
6039 else if ((strncasecmp (name
, "entry_gr", 8) == 0))
6041 p
= input_line_pointer
;
6043 input_line_pointer
++;
6044 temp
= get_absolute_expression ();
6045 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
6046 even though %r19 is caller saved. I think this is a bug in
6047 the HP assembler, and we are not going to emulate it. */
6048 if (temp
< 3 || temp
> 18)
6049 as_bad (_("Value for ENTRY_GR must be in the range 3..18\n"));
6050 last_call_info
->ci_unwind
.descriptor
.entry_gr
= temp
- 2;
6052 else if ((strncasecmp (name
, "entry_fr", 8) == 0))
6054 p
= input_line_pointer
;
6056 input_line_pointer
++;
6057 temp
= get_absolute_expression ();
6058 /* Similarly the HP assembler takes 31 as the high bound even
6059 though %fr21 is the last callee saved floating point register. */
6060 if (temp
< 12 || temp
> 21)
6061 as_bad (_("Value for ENTRY_FR must be in the range 12..21\n"));
6062 last_call_info
->ci_unwind
.descriptor
.entry_fr
= temp
- 11;
6064 else if ((strncasecmp (name
, "entry_sr", 8) == 0))
6066 p
= input_line_pointer
;
6068 input_line_pointer
++;
6069 temp
= get_absolute_expression ();
6071 as_bad (_("Value for ENTRY_SR must be 3\n"));
6073 /* Note whether or not this function performs any calls. */
6074 else if ((strncasecmp (name
, "calls", 5) == 0) ||
6075 (strncasecmp (name
, "caller", 6) == 0))
6077 p
= input_line_pointer
;
6080 else if ((strncasecmp (name
, "no_calls", 8) == 0))
6082 p
= input_line_pointer
;
6085 /* Should RP be saved into the stack. */
6086 else if ((strncasecmp (name
, "save_rp", 7) == 0))
6088 p
= input_line_pointer
;
6090 last_call_info
->ci_unwind
.descriptor
.save_rp
= 1;
6092 /* Likewise for SP. */
6093 else if ((strncasecmp (name
, "save_sp", 7) == 0))
6095 p
= input_line_pointer
;
6097 last_call_info
->ci_unwind
.descriptor
.save_sp
= 1;
6099 /* Is this an unwindable procedure. If so mark it so
6100 in the unwind descriptor. */
6101 else if ((strncasecmp (name
, "no_unwind", 9) == 0))
6103 p
= input_line_pointer
;
6105 last_call_info
->ci_unwind
.descriptor
.cannot_unwind
= 1;
6107 /* Is this an interrupt routine. If so mark it in the
6108 unwind descriptor. */
6109 else if ((strncasecmp (name
, "hpux_int", 7) == 0))
6111 p
= input_line_pointer
;
6113 last_call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 1;
6115 /* Is this a millicode routine. "millicode" isn't in my
6116 assembler manual, but my copy is old. The HP assembler
6117 accepts it, and there's a place in the unwind descriptor
6118 to drop the information, so we'll accept it too. */
6119 else if ((strncasecmp (name
, "millicode", 9) == 0))
6121 p
= input_line_pointer
;
6123 last_call_info
->ci_unwind
.descriptor
.millicode
= 1;
6127 as_bad (_("Invalid .CALLINFO argument: %s"), name
);
6128 *input_line_pointer
= c
;
6130 if (!is_end_of_statement ())
6131 input_line_pointer
++;
6134 demand_empty_rest_of_line ();
6137 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
6138 /* Switch to the text space. Like s_text, but delete our
6139 label when finished. */
6142 pa_text (int unused ATTRIBUTE_UNUSED
)
6145 current_space
= is_defined_space ("$TEXT$");
6147 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6151 pa_undefine_label ();
6154 /* Switch to the data space. As usual delete our label. */
6157 pa_data (int unused ATTRIBUTE_UNUSED
)
6160 current_space
= is_defined_space ("$PRIVATE$");
6162 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6165 pa_undefine_label ();
6168 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
6169 the .comm pseudo-op has the following syntax:
6171 <label> .comm <length>
6173 where <label> is optional and is a symbol whose address will be the start of
6174 a block of memory <length> bytes long. <length> must be an absolute
6175 expression. <length> bytes will be allocated in the current space
6178 Also note the label may not even be on the same line as the .comm.
6180 This difference in syntax means the colon function will be called
6181 on the symbol before we arrive in pa_comm. colon will set a number
6182 of attributes of the symbol that need to be fixed here. In particular
6183 the value, section pointer, fragment pointer, flags, etc. What
6186 This also makes error detection all but impossible. */
6189 pa_comm (int unused ATTRIBUTE_UNUSED
)
6193 label_symbol_struct
*label_symbol
= pa_get_label ();
6196 symbol
= label_symbol
->lss_label
;
6201 size
= get_absolute_expression ();
6205 symbol_get_bfdsym (symbol
)->flags
|= BSF_OBJECT
;
6206 S_SET_VALUE (symbol
, size
);
6207 S_SET_SEGMENT (symbol
, bfd_com_section_ptr
);
6208 S_SET_EXTERNAL (symbol
);
6210 /* colon() has already set the frag to the current location in the
6211 current subspace; we need to reset the fragment to the zero address
6212 fragment. We also need to reset the segment pointer. */
6213 symbol_set_frag (symbol
, &zero_address_frag
);
6215 demand_empty_rest_of_line ();
6217 #endif /* !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))) */
6219 /* Process a .END pseudo-op. */
6222 pa_end (int unused ATTRIBUTE_UNUSED
)
6224 demand_empty_rest_of_line ();
6227 /* Process a .ENTER pseudo-op. This is not supported. */
6230 pa_enter (int unused ATTRIBUTE_UNUSED
)
6233 /* We must have a valid space and subspace. */
6234 pa_check_current_space_and_subspace ();
6237 as_bad (_("The .ENTER pseudo-op is not supported"));
6238 demand_empty_rest_of_line ();
6241 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
6245 pa_entry (int unused ATTRIBUTE_UNUSED
)
6248 /* We must have a valid space and subspace. */
6249 pa_check_current_space_and_subspace ();
6252 if (!within_procedure
)
6253 as_bad (_("Misplaced .entry. Ignored."));
6256 if (!callinfo_found
)
6257 as_bad (_("Missing .callinfo."));
6259 demand_empty_rest_of_line ();
6260 within_entry_exit
= TRUE
;
6263 /* SOM defers building of unwind descriptors until the link phase.
6264 The assembler is responsible for creating an R_ENTRY relocation
6265 to mark the beginning of a region and hold the unwind bits, and
6266 for creating an R_EXIT relocation to mark the end of the region.
6268 FIXME. ELF should be using the same conventions! The problem
6269 is an unwind requires too much relocation space. Hmmm. Maybe
6270 if we split the unwind bits up between the relocations which
6271 denote the entry and exit points. */
6272 if (last_call_info
->start_symbol
!= NULL
)
6277 where
= frag_more (0);
6278 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
6279 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6280 NULL
, (offsetT
) 0, NULL
,
6281 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
6286 /* Silly nonsense for pa_equ. The only half-sensible use for this is
6287 being able to subtract two register symbols that specify a range of
6288 registers, to get the size of the range. */
6289 static int fudge_reg_expressions
;
6292 hppa_force_reg_syms_absolute (expressionS
*resultP
,
6293 operatorT op ATTRIBUTE_UNUSED
,
6294 expressionS
*rightP
)
6296 if (fudge_reg_expressions
6297 && rightP
->X_op
== O_register
6298 && resultP
->X_op
== O_register
)
6300 rightP
->X_op
= O_constant
;
6301 resultP
->X_op
= O_constant
;
6303 return 0; /* Continue normal expr handling. */
6306 /* Handle a .EQU pseudo-op. */
6311 label_symbol_struct
*label_symbol
= pa_get_label ();
6316 symbol
= label_symbol
->lss_label
;
6320 if (!pa_parse_number (&input_line_pointer
, 0))
6321 as_bad (_(".REG expression must be a register"));
6322 S_SET_VALUE (symbol
, pa_number
);
6323 S_SET_SEGMENT (symbol
, reg_section
);
6330 fudge_reg_expressions
= 1;
6331 seg
= expression (&exp
);
6332 fudge_reg_expressions
= 0;
6333 if (exp
.X_op
!= O_constant
6334 && exp
.X_op
!= O_register
)
6336 if (exp
.X_op
!= O_absent
)
6337 as_bad (_("bad or irreducible absolute expression; zero assumed"));
6338 exp
.X_add_number
= 0;
6339 seg
= absolute_section
;
6341 S_SET_VALUE (symbol
, (unsigned int) exp
.X_add_number
);
6342 S_SET_SEGMENT (symbol
, seg
);
6348 as_bad (_(".REG must use a label"));
6350 as_bad (_(".EQU must use a label"));
6353 pa_undefine_label ();
6354 demand_empty_rest_of_line ();
6358 /* Mark the end of a function so that it's possible to compute
6359 the size of the function in elf_hppa_final_processing. */
6362 hppa_elf_mark_end_of_function (void)
6364 /* ELF does not have EXIT relocations. All we do is create a
6365 temporary symbol marking the end of the function. */
6368 if (last_call_info
== NULL
|| last_call_info
->start_symbol
== NULL
)
6370 /* We have already warned about a missing label,
6371 or other problems. */
6375 name
= xmalloc (strlen ("L$\001end_")
6376 + strlen (S_GET_NAME (last_call_info
->start_symbol
))
6382 strcpy (name
, "L$\001end_");
6383 strcat (name
, S_GET_NAME (last_call_info
->start_symbol
));
6385 /* If we have a .exit followed by a .procend, then the
6386 symbol will have already been defined. */
6387 symbolP
= symbol_find (name
);
6390 /* The symbol has already been defined! This can
6391 happen if we have a .exit followed by a .procend.
6393 This is *not* an error. All we want to do is free
6394 the memory we just allocated for the name and continue. */
6399 /* symbol value should be the offset of the
6400 last instruction of the function */
6401 symbolP
= symbol_new (name
, now_seg
, (valueT
) (frag_now_fix () - 4),
6405 S_CLEAR_EXTERNAL (symbolP
);
6406 symbol_table_insert (symbolP
);
6410 last_call_info
->end_symbol
= symbolP
;
6412 as_bad (_("Symbol '%s' could not be created."), name
);
6416 as_bad (_("No memory for symbol name."));
6420 /* Helper function. Does processing for the end of a function. This
6421 usually involves creating some relocations or building special
6422 symbols to mark the end of the function. */
6429 where
= frag_more (0);
6432 /* Mark the end of the function, stuff away the location of the frag
6433 for the end of the function, and finally call pa_build_unwind_subspace
6434 to add an entry in the unwind table. */
6435 hppa_elf_mark_end_of_function ();
6436 pa_build_unwind_subspace (last_call_info
);
6438 /* SOM defers building of unwind descriptors until the link phase.
6439 The assembler is responsible for creating an R_ENTRY relocation
6440 to mark the beginning of a region and hold the unwind bits, and
6441 for creating an R_EXIT relocation to mark the end of the region.
6443 FIXME. ELF should be using the same conventions! The problem
6444 is an unwind requires too much relocation space. Hmmm. Maybe
6445 if we split the unwind bits up between the relocations which
6446 denote the entry and exit points. */
6447 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6449 NULL
, 0, R_HPPA_EXIT
, e_fsel
, 0, 0,
6450 UNWIND_HIGH32 (&last_call_info
->ci_unwind
.descriptor
));
6454 /* Process a .EXIT pseudo-op. */
6457 pa_exit (int unused ATTRIBUTE_UNUSED
)
6460 /* We must have a valid space and subspace. */
6461 pa_check_current_space_and_subspace ();
6464 if (!within_procedure
)
6465 as_bad (_(".EXIT must appear within a procedure"));
6468 if (!callinfo_found
)
6469 as_bad (_("Missing .callinfo"));
6472 if (!within_entry_exit
)
6473 as_bad (_("No .ENTRY for this .EXIT"));
6476 within_entry_exit
= FALSE
;
6481 demand_empty_rest_of_line ();
6484 /* Helper function to process arguments to a .EXPORT pseudo-op. */
6487 pa_type_args (symbolS
*symbolP
, int is_export
)
6490 unsigned int temp
, arg_reloc
;
6491 pa_symbol_type type
= SYMBOL_TYPE_UNKNOWN
;
6492 asymbol
*bfdsym
= symbol_get_bfdsym (symbolP
);
6494 if (strncasecmp (input_line_pointer
, "absolute", 8) == 0)
6496 input_line_pointer
+= 8;
6497 bfdsym
->flags
&= ~BSF_FUNCTION
;
6498 S_SET_SEGMENT (symbolP
, bfd_abs_section_ptr
);
6499 type
= SYMBOL_TYPE_ABSOLUTE
;
6501 else if (strncasecmp (input_line_pointer
, "code", 4) == 0)
6503 input_line_pointer
+= 4;
6504 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
6505 instead one should be IMPORTing/EXPORTing ENTRY types.
6507 Complain if one tries to EXPORT a CODE type since that's never
6508 done. Both GCC and HP C still try to IMPORT CODE types, so
6509 silently fix them to be ENTRY types. */
6510 if (S_IS_FUNCTION (symbolP
))
6513 as_tsktsk (_("Using ENTRY rather than CODE in export directive for %s"),
6514 S_GET_NAME (symbolP
));
6516 bfdsym
->flags
|= BSF_FUNCTION
;
6517 type
= SYMBOL_TYPE_ENTRY
;
6521 bfdsym
->flags
&= ~BSF_FUNCTION
;
6522 type
= SYMBOL_TYPE_CODE
;
6525 else if (strncasecmp (input_line_pointer
, "data", 4) == 0)
6527 input_line_pointer
+= 4;
6528 bfdsym
->flags
&= ~BSF_FUNCTION
;
6529 bfdsym
->flags
|= BSF_OBJECT
;
6530 type
= SYMBOL_TYPE_DATA
;
6532 else if ((strncasecmp (input_line_pointer
, "entry", 5) == 0))
6534 input_line_pointer
+= 5;
6535 bfdsym
->flags
|= BSF_FUNCTION
;
6536 type
= SYMBOL_TYPE_ENTRY
;
6538 else if (strncasecmp (input_line_pointer
, "millicode", 9) == 0)
6540 input_line_pointer
+= 9;
6541 bfdsym
->flags
|= BSF_FUNCTION
;
6544 elf_symbol_type
*elfsym
= (elf_symbol_type
*) bfdsym
;
6545 elfsym
->internal_elf_sym
.st_info
=
6546 ELF_ST_INFO (ELF_ST_BIND (elfsym
->internal_elf_sym
.st_info
),
6550 type
= SYMBOL_TYPE_MILLICODE
;
6552 else if (strncasecmp (input_line_pointer
, "plabel", 6) == 0)
6554 input_line_pointer
+= 6;
6555 bfdsym
->flags
&= ~BSF_FUNCTION
;
6556 type
= SYMBOL_TYPE_PLABEL
;
6558 else if (strncasecmp (input_line_pointer
, "pri_prog", 8) == 0)
6560 input_line_pointer
+= 8;
6561 bfdsym
->flags
|= BSF_FUNCTION
;
6562 type
= SYMBOL_TYPE_PRI_PROG
;
6564 else if (strncasecmp (input_line_pointer
, "sec_prog", 8) == 0)
6566 input_line_pointer
+= 8;
6567 bfdsym
->flags
|= BSF_FUNCTION
;
6568 type
= SYMBOL_TYPE_SEC_PROG
;
6571 /* SOM requires much more information about symbol types
6572 than BFD understands. This is how we get this information
6573 to the SOM BFD backend. */
6574 #ifdef obj_set_symbol_type
6575 obj_set_symbol_type (bfdsym
, (int) type
);
6578 /* Now that the type of the exported symbol has been handled,
6579 handle any argument relocation information. */
6580 while (!is_end_of_statement ())
6582 if (*input_line_pointer
== ',')
6583 input_line_pointer
++;
6584 name
= input_line_pointer
;
6585 c
= get_symbol_end ();
6586 /* Argument sources. */
6587 if ((strncasecmp (name
, "argw", 4) == 0))
6589 p
= input_line_pointer
;
6591 input_line_pointer
++;
6592 temp
= atoi (name
+ 4);
6593 name
= input_line_pointer
;
6594 c
= get_symbol_end ();
6595 arg_reloc
= pa_align_arg_reloc (temp
, pa_build_arg_reloc (name
));
6596 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6597 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6599 *input_line_pointer
= c
;
6601 /* The return value. */
6602 else if ((strncasecmp (name
, "rtnval", 6)) == 0)
6604 p
= input_line_pointer
;
6606 input_line_pointer
++;
6607 name
= input_line_pointer
;
6608 c
= get_symbol_end ();
6609 arg_reloc
= pa_build_arg_reloc (name
);
6610 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6611 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6613 *input_line_pointer
= c
;
6615 /* Privilege level. */
6616 else if ((strncasecmp (name
, "priv_lev", 8)) == 0)
6618 p
= input_line_pointer
;
6620 input_line_pointer
++;
6621 temp
= atoi (input_line_pointer
);
6623 ((obj_symbol_type
*) bfdsym
)->tc_data
.ap
.hppa_priv_level
= temp
;
6625 c
= get_symbol_end ();
6626 *input_line_pointer
= c
;
6630 as_bad (_("Undefined .EXPORT/.IMPORT argument (ignored): %s"), name
);
6631 p
= input_line_pointer
;
6634 if (!is_end_of_statement ())
6635 input_line_pointer
++;
6639 /* Process a .EXPORT directive. This makes functions external
6640 and provides information such as argument relocation entries
6644 pa_export (int unused ATTRIBUTE_UNUSED
)
6649 name
= input_line_pointer
;
6650 c
= get_symbol_end ();
6651 /* Make sure the given symbol exists. */
6652 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6654 as_bad (_("Cannot define export symbol: %s\n"), name
);
6655 p
= input_line_pointer
;
6657 input_line_pointer
++;
6661 /* OK. Set the external bits and process argument relocations.
6662 For the HP, weak and global are not mutually exclusive.
6663 S_SET_EXTERNAL will not set BSF_GLOBAL if WEAK is set.
6664 Call S_SET_EXTERNAL to get the other processing. Manually
6665 set BSF_GLOBAL when we get back. */
6666 S_SET_EXTERNAL (symbol
);
6667 symbol_get_bfdsym (symbol
)->flags
|= BSF_GLOBAL
;
6668 p
= input_line_pointer
;
6670 if (!is_end_of_statement ())
6672 input_line_pointer
++;
6673 pa_type_args (symbol
, 1);
6677 demand_empty_rest_of_line ();
6680 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
6681 assembly file must either be defined in the assembly file, or
6682 explicitly IMPORTED from another. */
6685 pa_import (int unused ATTRIBUTE_UNUSED
)
6690 name
= input_line_pointer
;
6691 c
= get_symbol_end ();
6693 symbol
= symbol_find (name
);
6694 /* Ugh. We might be importing a symbol defined earlier in the file,
6695 in which case all the code below will really screw things up
6696 (set the wrong segment, symbol flags & type, etc). */
6697 if (symbol
== NULL
|| !S_IS_DEFINED (symbol
))
6699 symbol
= symbol_find_or_make (name
);
6700 p
= input_line_pointer
;
6703 if (!is_end_of_statement ())
6705 input_line_pointer
++;
6706 pa_type_args (symbol
, 0);
6710 /* Sigh. To be compatible with the HP assembler and to help
6711 poorly written assembly code, we assign a type based on
6712 the current segment. Note only BSF_FUNCTION really
6713 matters, we do not need to set the full SYMBOL_TYPE_* info. */
6714 if (now_seg
== text_section
)
6715 symbol_get_bfdsym (symbol
)->flags
|= BSF_FUNCTION
;
6717 /* If the section is undefined, then the symbol is undefined
6718 Since this is an import, leave the section undefined. */
6719 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6724 /* The symbol was already defined. Just eat everything up to
6725 the end of the current statement. */
6726 while (!is_end_of_statement ())
6727 input_line_pointer
++;
6730 demand_empty_rest_of_line ();
6733 /* Handle a .LABEL pseudo-op. */
6736 pa_label (int unused ATTRIBUTE_UNUSED
)
6740 name
= input_line_pointer
;
6741 c
= get_symbol_end ();
6743 if (strlen (name
) > 0)
6746 p
= input_line_pointer
;
6751 as_warn (_("Missing label name on .LABEL"));
6754 if (!is_end_of_statement ())
6756 as_warn (_("extra .LABEL arguments ignored."));
6757 ignore_rest_of_line ();
6759 demand_empty_rest_of_line ();
6762 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
6765 pa_leave (int unused ATTRIBUTE_UNUSED
)
6768 /* We must have a valid space and subspace. */
6769 pa_check_current_space_and_subspace ();
6772 as_bad (_("The .LEAVE pseudo-op is not supported"));
6773 demand_empty_rest_of_line ();
6776 /* Handle a .LEVEL pseudo-op. */
6779 pa_level (int unused ATTRIBUTE_UNUSED
)
6783 level
= input_line_pointer
;
6784 if (strncmp (level
, "1.0", 3) == 0)
6786 input_line_pointer
+= 3;
6787 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 10))
6788 as_warn (_("could not set architecture and machine"));
6790 else if (strncmp (level
, "1.1", 3) == 0)
6792 input_line_pointer
+= 3;
6793 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 11))
6794 as_warn (_("could not set architecture and machine"));
6796 else if (strncmp (level
, "2.0w", 4) == 0)
6798 input_line_pointer
+= 4;
6799 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 25))
6800 as_warn (_("could not set architecture and machine"));
6802 else if (strncmp (level
, "2.0", 3) == 0)
6804 input_line_pointer
+= 3;
6805 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 20))
6806 as_warn (_("could not set architecture and machine"));
6810 as_bad (_("Unrecognized .LEVEL argument\n"));
6811 ignore_rest_of_line ();
6813 demand_empty_rest_of_line ();
6816 /* Handle a .ORIGIN pseudo-op. */
6819 pa_origin (int unused ATTRIBUTE_UNUSED
)
6822 /* We must have a valid space and subspace. */
6823 pa_check_current_space_and_subspace ();
6827 pa_undefine_label ();
6830 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
6831 is for static functions. FIXME. Should share more code with .EXPORT. */
6834 pa_param (int unused ATTRIBUTE_UNUSED
)
6839 name
= input_line_pointer
;
6840 c
= get_symbol_end ();
6842 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6844 as_bad (_("Cannot define static symbol: %s\n"), name
);
6845 p
= input_line_pointer
;
6847 input_line_pointer
++;
6851 S_CLEAR_EXTERNAL (symbol
);
6852 p
= input_line_pointer
;
6854 if (!is_end_of_statement ())
6856 input_line_pointer
++;
6857 pa_type_args (symbol
, 0);
6861 demand_empty_rest_of_line ();
6864 /* Handle a .PROC pseudo-op. It is used to mark the beginning
6865 of a procedure from a syntactical point of view. */
6868 pa_proc (int unused ATTRIBUTE_UNUSED
)
6870 struct call_info
*call_info
;
6873 /* We must have a valid space and subspace. */
6874 pa_check_current_space_and_subspace ();
6877 if (within_procedure
)
6878 as_fatal (_("Nested procedures"));
6880 /* Reset global variables for new procedure. */
6881 callinfo_found
= FALSE
;
6882 within_procedure
= TRUE
;
6884 /* Create another call_info structure. */
6885 call_info
= xmalloc (sizeof (struct call_info
));
6888 as_fatal (_("Cannot allocate unwind descriptor\n"));
6890 memset (call_info
, 0, sizeof (struct call_info
));
6892 call_info
->ci_next
= NULL
;
6894 if (call_info_root
== NULL
)
6896 call_info_root
= call_info
;
6897 last_call_info
= call_info
;
6901 last_call_info
->ci_next
= call_info
;
6902 last_call_info
= call_info
;
6905 /* set up defaults on call_info structure */
6907 call_info
->ci_unwind
.descriptor
.cannot_unwind
= 0;
6908 call_info
->ci_unwind
.descriptor
.region_desc
= 1;
6909 call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 0;
6911 /* If we got a .PROC pseudo-op, we know that the function is defined
6912 locally. Make sure it gets into the symbol table. */
6914 label_symbol_struct
*label_symbol
= pa_get_label ();
6918 if (label_symbol
->lss_label
)
6920 last_call_info
->start_symbol
= label_symbol
->lss_label
;
6921 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
|= BSF_FUNCTION
;
6924 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
6927 last_call_info
->start_symbol
= NULL
;
6930 demand_empty_rest_of_line ();
6933 /* Process the syntactical end of a procedure. Make sure all the
6934 appropriate pseudo-ops were found within the procedure. */
6937 pa_procend (int unused ATTRIBUTE_UNUSED
)
6940 /* We must have a valid space and subspace. */
6941 pa_check_current_space_and_subspace ();
6944 /* If we are within a procedure definition, make sure we've
6945 defined a label for the procedure; handle case where the
6946 label was defined after the .PROC directive.
6948 Note there's not need to diddle with the segment or fragment
6949 for the label symbol in this case. We have already switched
6950 into the new $CODE$ subspace at this point. */
6951 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
6953 label_symbol_struct
*label_symbol
= pa_get_label ();
6957 if (label_symbol
->lss_label
)
6959 last_call_info
->start_symbol
= label_symbol
->lss_label
;
6960 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
6963 /* Also handle allocation of a fixup to hold the unwind
6964 information when the label appears after the proc/procend. */
6965 if (within_entry_exit
)
6970 where
= frag_more (0);
6971 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
6972 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6973 NULL
, (offsetT
) 0, NULL
,
6974 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
6979 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
6982 as_bad (_("Missing function name for .PROC"));
6985 if (!within_procedure
)
6986 as_bad (_("misplaced .procend"));
6988 if (!callinfo_found
)
6989 as_bad (_("Missing .callinfo for this procedure"));
6991 if (within_entry_exit
)
6992 as_bad (_("Missing .EXIT for a .ENTRY"));
6995 /* ELF needs to mark the end of each function so that it can compute
6996 the size of the function (apparently its needed in the symbol table). */
6997 hppa_elf_mark_end_of_function ();
7000 within_procedure
= FALSE
;
7001 demand_empty_rest_of_line ();
7002 pa_undefine_label ();
7006 /* If VALUE is an exact power of two between zero and 2^31, then
7007 return log2 (VALUE). Else return -1. */
7010 exact_log2 (int value
)
7014 while ((1 << shift
) != value
&& shift
< 32)
7023 /* Check to make sure we have a valid space and subspace. */
7026 pa_check_current_space_and_subspace (void)
7028 if (current_space
== NULL
)
7029 as_fatal (_("Not in a space.\n"));
7031 if (current_subspace
== NULL
)
7032 as_fatal (_("Not in a subspace.\n"));
7035 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
7036 then create a new space entry to hold the information specified
7037 by the parameters to the .SPACE directive. */
7039 static sd_chain_struct
*
7040 pa_parse_space_stmt (char *space_name
, int create_flag
)
7042 char *name
, *ptemp
, c
;
7043 char loadable
, defined
, private, sort
;
7045 asection
*seg
= NULL
;
7046 sd_chain_struct
*space
;
7048 /* Load default values. */
7054 if (strcmp (space_name
, "$TEXT$") == 0)
7056 seg
= pa_def_spaces
[0].segment
;
7057 defined
= pa_def_spaces
[0].defined
;
7058 private = pa_def_spaces
[0].private;
7059 sort
= pa_def_spaces
[0].sort
;
7060 spnum
= pa_def_spaces
[0].spnum
;
7062 else if (strcmp (space_name
, "$PRIVATE$") == 0)
7064 seg
= pa_def_spaces
[1].segment
;
7065 defined
= pa_def_spaces
[1].defined
;
7066 private = pa_def_spaces
[1].private;
7067 sort
= pa_def_spaces
[1].sort
;
7068 spnum
= pa_def_spaces
[1].spnum
;
7071 if (!is_end_of_statement ())
7073 print_errors
= FALSE
;
7074 ptemp
= input_line_pointer
+ 1;
7075 /* First see if the space was specified as a number rather than
7076 as a name. According to the PA assembly manual the rest of
7077 the line should be ignored. */
7079 pa_parse_number (&ptemp
, 0);
7083 input_line_pointer
= ptemp
;
7087 while (!is_end_of_statement ())
7089 input_line_pointer
++;
7090 name
= input_line_pointer
;
7091 c
= get_symbol_end ();
7092 if ((strncasecmp (name
, "spnum", 5) == 0))
7094 *input_line_pointer
= c
;
7095 input_line_pointer
++;
7096 spnum
= get_absolute_expression ();
7098 else if ((strncasecmp (name
, "sort", 4) == 0))
7100 *input_line_pointer
= c
;
7101 input_line_pointer
++;
7102 sort
= get_absolute_expression ();
7104 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7106 *input_line_pointer
= c
;
7109 else if ((strncasecmp (name
, "notdefined", 10) == 0))
7111 *input_line_pointer
= c
;
7114 else if ((strncasecmp (name
, "private", 7) == 0))
7116 *input_line_pointer
= c
;
7121 as_bad (_("Invalid .SPACE argument"));
7122 *input_line_pointer
= c
;
7123 if (!is_end_of_statement ())
7124 input_line_pointer
++;
7128 print_errors
= TRUE
;
7131 if (create_flag
&& seg
== NULL
)
7132 seg
= subseg_new (space_name
, 0);
7134 /* If create_flag is nonzero, then create the new space with
7135 the attributes computed above. Else set the values in
7136 an already existing space -- this can only happen for
7137 the first occurrence of a built-in space. */
7139 space
= create_new_space (space_name
, spnum
, loadable
, defined
,
7140 private, sort
, seg
, 1);
7143 space
= is_defined_space (space_name
);
7144 SPACE_SPNUM (space
) = spnum
;
7145 SPACE_DEFINED (space
) = defined
& 1;
7146 SPACE_USER_DEFINED (space
) = 1;
7149 #ifdef obj_set_section_attributes
7150 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7156 /* Handle a .SPACE pseudo-op; this switches the current space to the
7157 given space, creating the new space if necessary. */
7160 pa_space (int unused ATTRIBUTE_UNUSED
)
7162 char *name
, c
, *space_name
, *save_s
;
7163 sd_chain_struct
*sd_chain
;
7165 if (within_procedure
)
7167 as_bad (_("Can\'t change spaces within a procedure definition. Ignored"));
7168 ignore_rest_of_line ();
7172 /* Check for some of the predefined spaces. FIXME: most of the code
7173 below is repeated several times, can we extract the common parts
7174 and place them into a subroutine or something similar? */
7175 /* FIXME Is this (and the next IF stmt) really right?
7176 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
7177 if (strncmp (input_line_pointer
, "$TEXT$", 6) == 0)
7179 input_line_pointer
+= 6;
7180 sd_chain
= is_defined_space ("$TEXT$");
7181 if (sd_chain
== NULL
)
7182 sd_chain
= pa_parse_space_stmt ("$TEXT$", 1);
7183 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7184 sd_chain
= pa_parse_space_stmt ("$TEXT$", 0);
7186 current_space
= sd_chain
;
7187 subseg_set (text_section
, sd_chain
->sd_last_subseg
);
7189 = pa_subsegment_to_subspace (text_section
,
7190 sd_chain
->sd_last_subseg
);
7191 demand_empty_rest_of_line ();
7194 if (strncmp (input_line_pointer
, "$PRIVATE$", 9) == 0)
7196 input_line_pointer
+= 9;
7197 sd_chain
= is_defined_space ("$PRIVATE$");
7198 if (sd_chain
== NULL
)
7199 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 1);
7200 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7201 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 0);
7203 current_space
= sd_chain
;
7204 subseg_set (data_section
, sd_chain
->sd_last_subseg
);
7206 = pa_subsegment_to_subspace (data_section
,
7207 sd_chain
->sd_last_subseg
);
7208 demand_empty_rest_of_line ();
7211 if (!strncasecmp (input_line_pointer
,
7212 GDB_DEBUG_SPACE_NAME
,
7213 strlen (GDB_DEBUG_SPACE_NAME
)))
7215 input_line_pointer
+= strlen (GDB_DEBUG_SPACE_NAME
);
7216 sd_chain
= is_defined_space (GDB_DEBUG_SPACE_NAME
);
7217 if (sd_chain
== NULL
)
7218 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 1);
7219 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7220 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 0);
7222 current_space
= sd_chain
;
7225 asection
*gdb_section
7226 = bfd_make_section_old_way (stdoutput
, GDB_DEBUG_SPACE_NAME
);
7228 subseg_set (gdb_section
, sd_chain
->sd_last_subseg
);
7230 = pa_subsegment_to_subspace (gdb_section
,
7231 sd_chain
->sd_last_subseg
);
7233 demand_empty_rest_of_line ();
7237 /* It could be a space specified by number. */
7239 save_s
= input_line_pointer
;
7241 pa_parse_number (&input_line_pointer
, 0);
7244 if ((sd_chain
= pa_find_space_by_number (pa_number
)))
7246 current_space
= sd_chain
;
7248 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7250 = pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7251 sd_chain
->sd_last_subseg
);
7252 demand_empty_rest_of_line ();
7257 /* Not a number, attempt to create a new space. */
7259 input_line_pointer
= save_s
;
7260 name
= input_line_pointer
;
7261 c
= get_symbol_end ();
7262 space_name
= xmalloc (strlen (name
) + 1);
7263 strcpy (space_name
, name
);
7264 *input_line_pointer
= c
;
7266 sd_chain
= pa_parse_space_stmt (space_name
, 1);
7267 current_space
= sd_chain
;
7269 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7270 current_subspace
= pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7271 sd_chain
->sd_last_subseg
);
7272 demand_empty_rest_of_line ();
7276 /* Switch to a new space. (I think). FIXME. */
7279 pa_spnum (int unused ATTRIBUTE_UNUSED
)
7284 sd_chain_struct
*space
;
7286 name
= input_line_pointer
;
7287 c
= get_symbol_end ();
7288 space
= is_defined_space (name
);
7292 md_number_to_chars (p
, SPACE_SPNUM (space
), 4);
7295 as_warn (_("Undefined space: '%s' Assuming space number = 0."), name
);
7297 *input_line_pointer
= c
;
7298 demand_empty_rest_of_line ();
7301 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
7302 given subspace, creating the new subspace if necessary.
7304 FIXME. Should mirror pa_space more closely, in particular how
7305 they're broken up into subroutines. */
7308 pa_subspace (int create_new
)
7310 char *name
, *ss_name
, c
;
7311 char loadable
, code_only
, comdat
, common
, dup_common
, zero
, sort
;
7312 int i
, access
, space_index
, alignment
, quadrant
, applicable
, flags
;
7313 sd_chain_struct
*space
;
7314 ssd_chain_struct
*ssd
;
7317 if (current_space
== NULL
)
7318 as_fatal (_("Must be in a space before changing or declaring subspaces.\n"));
7320 if (within_procedure
)
7322 as_bad (_("Can\'t change subspaces within a procedure definition. Ignored"));
7323 ignore_rest_of_line ();
7327 name
= input_line_pointer
;
7328 c
= get_symbol_end ();
7329 ss_name
= xmalloc (strlen (name
) + 1);
7330 strcpy (ss_name
, name
);
7331 *input_line_pointer
= c
;
7333 /* Load default values. */
7346 space
= current_space
;
7350 ssd
= is_defined_subspace (ss_name
);
7351 /* Allow user to override the builtin attributes of subspaces. But
7352 only allow the attributes to be changed once! */
7353 if (ssd
&& SUBSPACE_DEFINED (ssd
))
7355 subseg_set (ssd
->ssd_seg
, ssd
->ssd_subseg
);
7356 current_subspace
= ssd
;
7357 if (!is_end_of_statement ())
7358 as_warn (_("Parameters of an existing subspace can\'t be modified"));
7359 demand_empty_rest_of_line ();
7364 /* A new subspace. Load default values if it matches one of
7365 the builtin subspaces. */
7367 while (pa_def_subspaces
[i
].name
)
7369 if (strcasecmp (pa_def_subspaces
[i
].name
, ss_name
) == 0)
7371 loadable
= pa_def_subspaces
[i
].loadable
;
7372 comdat
= pa_def_subspaces
[i
].comdat
;
7373 common
= pa_def_subspaces
[i
].common
;
7374 dup_common
= pa_def_subspaces
[i
].dup_common
;
7375 code_only
= pa_def_subspaces
[i
].code_only
;
7376 zero
= pa_def_subspaces
[i
].zero
;
7377 space_index
= pa_def_subspaces
[i
].space_index
;
7378 alignment
= pa_def_subspaces
[i
].alignment
;
7379 quadrant
= pa_def_subspaces
[i
].quadrant
;
7380 access
= pa_def_subspaces
[i
].access
;
7381 sort
= pa_def_subspaces
[i
].sort
;
7388 /* We should be working with a new subspace now. Fill in
7389 any information as specified by the user. */
7390 if (!is_end_of_statement ())
7392 input_line_pointer
++;
7393 while (!is_end_of_statement ())
7395 name
= input_line_pointer
;
7396 c
= get_symbol_end ();
7397 if ((strncasecmp (name
, "quad", 4) == 0))
7399 *input_line_pointer
= c
;
7400 input_line_pointer
++;
7401 quadrant
= get_absolute_expression ();
7403 else if ((strncasecmp (name
, "align", 5) == 0))
7405 *input_line_pointer
= c
;
7406 input_line_pointer
++;
7407 alignment
= get_absolute_expression ();
7408 if (exact_log2 (alignment
) == -1)
7410 as_bad (_("Alignment must be a power of 2"));
7414 else if ((strncasecmp (name
, "access", 6) == 0))
7416 *input_line_pointer
= c
;
7417 input_line_pointer
++;
7418 access
= get_absolute_expression ();
7420 else if ((strncasecmp (name
, "sort", 4) == 0))
7422 *input_line_pointer
= c
;
7423 input_line_pointer
++;
7424 sort
= get_absolute_expression ();
7426 else if ((strncasecmp (name
, "code_only", 9) == 0))
7428 *input_line_pointer
= c
;
7431 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7433 *input_line_pointer
= c
;
7436 else if ((strncasecmp (name
, "comdat", 6) == 0))
7438 *input_line_pointer
= c
;
7441 else if ((strncasecmp (name
, "common", 6) == 0))
7443 *input_line_pointer
= c
;
7446 else if ((strncasecmp (name
, "dup_comm", 8) == 0))
7448 *input_line_pointer
= c
;
7451 else if ((strncasecmp (name
, "zero", 4) == 0))
7453 *input_line_pointer
= c
;
7456 else if ((strncasecmp (name
, "first", 5) == 0))
7457 as_bad (_("FIRST not supported as a .SUBSPACE argument"));
7459 as_bad (_("Invalid .SUBSPACE argument"));
7460 if (!is_end_of_statement ())
7461 input_line_pointer
++;
7465 /* Compute a reasonable set of BFD flags based on the information
7466 in the .subspace directive. */
7467 applicable
= bfd_applicable_section_flags (stdoutput
);
7470 flags
|= (SEC_ALLOC
| SEC_LOAD
);
7474 /* These flags are used to implement various flavors of initialized
7475 common. The SOM linker discards duplicate subspaces when they
7476 have the same "key" symbol name. This support is more like
7477 GNU linkonce than BFD common. Further, pc-relative relocations
7478 are converted to section relative relocations in BFD common
7479 sections. This complicates the handling of relocations in
7480 common sections containing text and isn't currently supported
7481 correctly in the SOM BFD backend. */
7482 if (comdat
|| common
|| dup_common
)
7483 flags
|= SEC_LINK_ONCE
;
7485 flags
|= SEC_RELOC
| SEC_HAS_CONTENTS
;
7487 /* This is a zero-filled subspace (eg BSS). */
7489 flags
&= ~(SEC_LOAD
| SEC_HAS_CONTENTS
);
7491 applicable
&= flags
;
7493 /* If this is an existing subspace, then we want to use the
7494 segment already associated with the subspace.
7496 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
7497 lots of sections. It might be a problem in the PA ELF
7498 code, I do not know yet. For now avoid creating anything
7499 but the "standard" sections for ELF. */
7501 section
= subseg_force_new (ss_name
, 0);
7503 section
= ssd
->ssd_seg
;
7505 section
= subseg_new (ss_name
, 0);
7508 seg_info (section
)->bss
= 1;
7510 /* Now set the flags. */
7511 bfd_set_section_flags (stdoutput
, section
, applicable
);
7513 /* Record any alignment request for this section. */
7514 record_alignment (section
, exact_log2 (alignment
));
7516 /* Set the starting offset for this section. */
7517 bfd_set_section_vma (stdoutput
, section
,
7518 pa_subspace_start (space
, quadrant
));
7520 /* Now that all the flags are set, update an existing subspace,
7521 or create a new one. */
7524 current_subspace
= update_subspace (space
, ss_name
, loadable
,
7525 code_only
, comdat
, common
,
7526 dup_common
, sort
, zero
, access
,
7527 space_index
, alignment
, quadrant
,
7530 current_subspace
= create_new_subspace (space
, ss_name
, loadable
,
7531 code_only
, comdat
, common
,
7532 dup_common
, zero
, sort
,
7533 access
, space_index
,
7534 alignment
, quadrant
, section
);
7536 demand_empty_rest_of_line ();
7537 current_subspace
->ssd_seg
= section
;
7538 subseg_set (current_subspace
->ssd_seg
, current_subspace
->ssd_subseg
);
7540 SUBSPACE_DEFINED (current_subspace
) = 1;
7543 /* Create default space and subspace dictionaries. */
7546 pa_spaces_begin (void)
7550 space_dict_root
= NULL
;
7551 space_dict_last
= NULL
;
7554 while (pa_def_spaces
[i
].name
)
7558 /* Pick the right name to use for the new section. */
7559 name
= pa_def_spaces
[i
].name
;
7561 pa_def_spaces
[i
].segment
= subseg_new (name
, 0);
7562 create_new_space (pa_def_spaces
[i
].name
, pa_def_spaces
[i
].spnum
,
7563 pa_def_spaces
[i
].loadable
, pa_def_spaces
[i
].defined
,
7564 pa_def_spaces
[i
].private, pa_def_spaces
[i
].sort
,
7565 pa_def_spaces
[i
].segment
, 0);
7570 while (pa_def_subspaces
[i
].name
)
7573 int applicable
, subsegment
;
7574 asection
*segment
= NULL
;
7575 sd_chain_struct
*space
;
7577 /* Pick the right name for the new section and pick the right
7578 subsegment number. */
7579 name
= pa_def_subspaces
[i
].name
;
7582 /* Create the new section. */
7583 segment
= subseg_new (name
, subsegment
);
7585 /* For SOM we want to replace the standard .text, .data, and .bss
7586 sections with our own. We also want to set BFD flags for
7587 all the built-in subspaces. */
7588 if (!strcmp (pa_def_subspaces
[i
].name
, "$CODE$"))
7590 text_section
= segment
;
7591 applicable
= bfd_applicable_section_flags (stdoutput
);
7592 bfd_set_section_flags (stdoutput
, segment
,
7593 applicable
& (SEC_ALLOC
| SEC_LOAD
7594 | SEC_RELOC
| SEC_CODE
7596 | SEC_HAS_CONTENTS
));
7598 else if (!strcmp (pa_def_subspaces
[i
].name
, "$DATA$"))
7600 data_section
= segment
;
7601 applicable
= bfd_applicable_section_flags (stdoutput
);
7602 bfd_set_section_flags (stdoutput
, segment
,
7603 applicable
& (SEC_ALLOC
| SEC_LOAD
7605 | SEC_HAS_CONTENTS
));
7608 else if (!strcmp (pa_def_subspaces
[i
].name
, "$BSS$"))
7610 bss_section
= segment
;
7611 applicable
= bfd_applicable_section_flags (stdoutput
);
7612 bfd_set_section_flags (stdoutput
, segment
,
7613 applicable
& SEC_ALLOC
);
7615 else if (!strcmp (pa_def_subspaces
[i
].name
, "$LIT$"))
7617 applicable
= bfd_applicable_section_flags (stdoutput
);
7618 bfd_set_section_flags (stdoutput
, segment
,
7619 applicable
& (SEC_ALLOC
| SEC_LOAD
7622 | SEC_HAS_CONTENTS
));
7624 else if (!strcmp (pa_def_subspaces
[i
].name
, "$MILLICODE$"))
7626 applicable
= bfd_applicable_section_flags (stdoutput
);
7627 bfd_set_section_flags (stdoutput
, segment
,
7628 applicable
& (SEC_ALLOC
| SEC_LOAD
7631 | SEC_HAS_CONTENTS
));
7633 else if (!strcmp (pa_def_subspaces
[i
].name
, "$UNWIND$"))
7635 applicable
= bfd_applicable_section_flags (stdoutput
);
7636 bfd_set_section_flags (stdoutput
, segment
,
7637 applicable
& (SEC_ALLOC
| SEC_LOAD
7640 | SEC_HAS_CONTENTS
));
7643 /* Find the space associated with this subspace. */
7644 space
= pa_segment_to_space (pa_def_spaces
[pa_def_subspaces
[i
].
7645 def_space_index
].segment
);
7648 as_fatal (_("Internal error: Unable to find containing space for %s."),
7649 pa_def_subspaces
[i
].name
);
7652 create_new_subspace (space
, name
,
7653 pa_def_subspaces
[i
].loadable
,
7654 pa_def_subspaces
[i
].code_only
,
7655 pa_def_subspaces
[i
].comdat
,
7656 pa_def_subspaces
[i
].common
,
7657 pa_def_subspaces
[i
].dup_common
,
7658 pa_def_subspaces
[i
].zero
,
7659 pa_def_subspaces
[i
].sort
,
7660 pa_def_subspaces
[i
].access
,
7661 pa_def_subspaces
[i
].space_index
,
7662 pa_def_subspaces
[i
].alignment
,
7663 pa_def_subspaces
[i
].quadrant
,
7669 /* Create a new space NAME, with the appropriate flags as defined
7670 by the given parameters. */
7672 static sd_chain_struct
*
7673 create_new_space (char *name
,
7675 int loadable ATTRIBUTE_UNUSED
,
7682 sd_chain_struct
*chain_entry
;
7684 chain_entry
= xmalloc (sizeof (sd_chain_struct
));
7686 as_fatal (_("Out of memory: could not allocate new space chain entry: %s\n"),
7689 SPACE_NAME (chain_entry
) = xmalloc (strlen (name
) + 1);
7690 strcpy (SPACE_NAME (chain_entry
), name
);
7691 SPACE_DEFINED (chain_entry
) = defined
;
7692 SPACE_USER_DEFINED (chain_entry
) = user_defined
;
7693 SPACE_SPNUM (chain_entry
) = spnum
;
7695 chain_entry
->sd_seg
= seg
;
7696 chain_entry
->sd_last_subseg
= -1;
7697 chain_entry
->sd_subspaces
= NULL
;
7698 chain_entry
->sd_next
= NULL
;
7700 /* Find spot for the new space based on its sort key. */
7701 if (!space_dict_last
)
7702 space_dict_last
= chain_entry
;
7704 if (space_dict_root
== NULL
)
7705 space_dict_root
= chain_entry
;
7708 sd_chain_struct
*chain_pointer
;
7709 sd_chain_struct
*prev_chain_pointer
;
7711 chain_pointer
= space_dict_root
;
7712 prev_chain_pointer
= NULL
;
7714 while (chain_pointer
)
7716 prev_chain_pointer
= chain_pointer
;
7717 chain_pointer
= chain_pointer
->sd_next
;
7720 /* At this point we've found the correct place to add the new
7721 entry. So add it and update the linked lists as appropriate. */
7722 if (prev_chain_pointer
)
7724 chain_entry
->sd_next
= chain_pointer
;
7725 prev_chain_pointer
->sd_next
= chain_entry
;
7729 space_dict_root
= chain_entry
;
7730 chain_entry
->sd_next
= chain_pointer
;
7733 if (chain_entry
->sd_next
== NULL
)
7734 space_dict_last
= chain_entry
;
7737 /* This is here to catch predefined spaces which do not get
7738 modified by the user's input. Another call is found at
7739 the bottom of pa_parse_space_stmt to handle cases where
7740 the user modifies a predefined space. */
7741 #ifdef obj_set_section_attributes
7742 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7748 /* Create a new subspace NAME, with the appropriate flags as defined
7749 by the given parameters.
7751 Add the new subspace to the subspace dictionary chain in numerical
7752 order as defined by the SORT entries. */
7754 static ssd_chain_struct
*
7755 create_new_subspace (sd_chain_struct
*space
,
7757 int loadable ATTRIBUTE_UNUSED
,
7758 int code_only ATTRIBUTE_UNUSED
,
7762 int is_zero ATTRIBUTE_UNUSED
,
7765 int space_index ATTRIBUTE_UNUSED
,
7766 int alignment ATTRIBUTE_UNUSED
,
7770 ssd_chain_struct
*chain_entry
;
7772 chain_entry
= xmalloc (sizeof (ssd_chain_struct
));
7774 as_fatal (_("Out of memory: could not allocate new subspace chain entry: %s\n"), name
);
7776 SUBSPACE_NAME (chain_entry
) = xmalloc (strlen (name
) + 1);
7777 strcpy (SUBSPACE_NAME (chain_entry
), name
);
7779 /* Initialize subspace_defined. When we hit a .subspace directive
7780 we'll set it to 1 which "locks-in" the subspace attributes. */
7781 SUBSPACE_DEFINED (chain_entry
) = 0;
7783 chain_entry
->ssd_subseg
= 0;
7784 chain_entry
->ssd_seg
= seg
;
7785 chain_entry
->ssd_next
= NULL
;
7787 /* Find spot for the new subspace based on its sort key. */
7788 if (space
->sd_subspaces
== NULL
)
7789 space
->sd_subspaces
= chain_entry
;
7792 ssd_chain_struct
*chain_pointer
;
7793 ssd_chain_struct
*prev_chain_pointer
;
7795 chain_pointer
= space
->sd_subspaces
;
7796 prev_chain_pointer
= NULL
;
7798 while (chain_pointer
)
7800 prev_chain_pointer
= chain_pointer
;
7801 chain_pointer
= chain_pointer
->ssd_next
;
7804 /* Now we have somewhere to put the new entry. Insert it and update
7806 if (prev_chain_pointer
)
7808 chain_entry
->ssd_next
= chain_pointer
;
7809 prev_chain_pointer
->ssd_next
= chain_entry
;
7813 space
->sd_subspaces
= chain_entry
;
7814 chain_entry
->ssd_next
= chain_pointer
;
7818 #ifdef obj_set_subsection_attributes
7819 obj_set_subsection_attributes (seg
, space
->sd_seg
, access
, sort
,
7820 quadrant
, comdat
, common
, dup_common
);
7826 /* Update the information for the given subspace based upon the
7827 various arguments. Return the modified subspace chain entry. */
7829 static ssd_chain_struct
*
7830 update_subspace (sd_chain_struct
*space
,
7832 int loadable ATTRIBUTE_UNUSED
,
7833 int code_only ATTRIBUTE_UNUSED
,
7838 int zero ATTRIBUTE_UNUSED
,
7840 int space_index ATTRIBUTE_UNUSED
,
7841 int alignment ATTRIBUTE_UNUSED
,
7845 ssd_chain_struct
*chain_entry
;
7847 chain_entry
= is_defined_subspace (name
);
7849 #ifdef obj_set_subsection_attributes
7850 obj_set_subsection_attributes (section
, space
->sd_seg
, access
, sort
,
7851 quadrant
, comdat
, common
, dup_common
);
7857 /* Return the space chain entry for the space with the name NAME or
7858 NULL if no such space exists. */
7860 static sd_chain_struct
*
7861 is_defined_space (char *name
)
7863 sd_chain_struct
*chain_pointer
;
7865 for (chain_pointer
= space_dict_root
;
7867 chain_pointer
= chain_pointer
->sd_next
)
7868 if (strcmp (SPACE_NAME (chain_pointer
), name
) == 0)
7869 return chain_pointer
;
7871 /* No mapping from segment to space was found. Return NULL. */
7875 /* Find and return the space associated with the given seg. If no mapping
7876 from the given seg to a space is found, then return NULL.
7878 Unlike subspaces, the number of spaces is not expected to grow much,
7879 so a linear exhaustive search is OK here. */
7881 static sd_chain_struct
*
7882 pa_segment_to_space (asection
*seg
)
7884 sd_chain_struct
*space_chain
;
7886 /* Walk through each space looking for the correct mapping. */
7887 for (space_chain
= space_dict_root
;
7889 space_chain
= space_chain
->sd_next
)
7890 if (space_chain
->sd_seg
== seg
)
7893 /* Mapping was not found. Return NULL. */
7897 /* Return the first space chain entry for the subspace with the name
7898 NAME or NULL if no such subspace exists.
7900 When there are multiple subspaces with the same name, switching to
7901 the first (i.e., default) subspace is preferable in most situations.
7902 For example, it wouldn't be desirable to merge COMDAT data with non
7905 Uses a linear search through all the spaces and subspaces, this may
7906 not be appropriate if we ever being placing each function in its
7909 static ssd_chain_struct
*
7910 is_defined_subspace (char *name
)
7912 sd_chain_struct
*space_chain
;
7913 ssd_chain_struct
*subspace_chain
;
7915 /* Walk through each space. */
7916 for (space_chain
= space_dict_root
;
7918 space_chain
= space_chain
->sd_next
)
7920 /* Walk through each subspace looking for a name which matches. */
7921 for (subspace_chain
= space_chain
->sd_subspaces
;
7923 subspace_chain
= subspace_chain
->ssd_next
)
7924 if (strcmp (SUBSPACE_NAME (subspace_chain
), name
) == 0)
7925 return subspace_chain
;
7928 /* Subspace wasn't found. Return NULL. */
7932 /* Find and return the subspace associated with the given seg. If no
7933 mapping from the given seg to a subspace is found, then return NULL.
7935 If we ever put each procedure/function within its own subspace
7936 (to make life easier on the compiler and linker), then this will have
7937 to become more efficient. */
7939 static ssd_chain_struct
*
7940 pa_subsegment_to_subspace (asection
*seg
, subsegT subseg
)
7942 sd_chain_struct
*space_chain
;
7943 ssd_chain_struct
*subspace_chain
;
7945 /* Walk through each space. */
7946 for (space_chain
= space_dict_root
;
7948 space_chain
= space_chain
->sd_next
)
7950 if (space_chain
->sd_seg
== seg
)
7952 /* Walk through each subspace within each space looking for
7953 the correct mapping. */
7954 for (subspace_chain
= space_chain
->sd_subspaces
;
7956 subspace_chain
= subspace_chain
->ssd_next
)
7957 if (subspace_chain
->ssd_subseg
== (int) subseg
)
7958 return subspace_chain
;
7962 /* No mapping from subsegment to subspace found. Return NULL. */
7966 /* Given a number, try and find a space with the name number.
7968 Return a pointer to a space dictionary chain entry for the space
7969 that was found or NULL on failure. */
7971 static sd_chain_struct
*
7972 pa_find_space_by_number (int number
)
7974 sd_chain_struct
*space_chain
;
7976 for (space_chain
= space_dict_root
;
7978 space_chain
= space_chain
->sd_next
)
7980 if (SPACE_SPNUM (space_chain
) == (unsigned int) number
)
7984 /* No appropriate space found. Return NULL. */
7988 /* Return the starting address for the given subspace. If the starting
7989 address is unknown then return zero. */
7992 pa_subspace_start (sd_chain_struct
*space
, int quadrant
)
7994 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
7995 is not correct for the PA OSF1 port. */
7996 if ((strcmp (SPACE_NAME (space
), "$PRIVATE$") == 0) && quadrant
== 1)
7998 else if (space
->sd_seg
== data_section
&& quadrant
== 1)
8006 /* Helper function for pa_stringer. Used to find the end of
8010 pa_stringer_aux (char *s
)
8012 unsigned int c
= *s
& CHAR_MASK
;
8025 /* Handle a .STRING type pseudo-op. */
8028 pa_stringer (int append_zero
)
8030 char *s
, num_buf
[4];
8034 /* Preprocess the string to handle PA-specific escape sequences.
8035 For example, \xDD where DD is a hexadecimal number should be
8036 changed to \OOO where OOO is an octal number. */
8039 /* We must have a valid space and subspace. */
8040 pa_check_current_space_and_subspace ();
8043 /* Skip the opening quote. */
8044 s
= input_line_pointer
+ 1;
8046 while (is_a_char (c
= pa_stringer_aux (s
++)))
8053 /* Handle \x<num>. */
8056 unsigned int number
;
8061 /* Get past the 'x'. */
8063 for (num_digit
= 0, number
= 0, dg
= *s
;
8065 && (ISDIGIT (dg
) || (dg
>= 'a' && dg
<= 'f')
8066 || (dg
>= 'A' && dg
<= 'F'));
8070 number
= number
* 16 + dg
- '0';
8071 else if (dg
>= 'a' && dg
<= 'f')
8072 number
= number
* 16 + dg
- 'a' + 10;
8074 number
= number
* 16 + dg
- 'A' + 10;
8084 sprintf (num_buf
, "%02o", number
);
8087 sprintf (num_buf
, "%03o", number
);
8090 for (i
= 0; i
<= num_digit
; i
++)
8091 s_start
[i
] = num_buf
[i
];
8095 /* This might be a "\"", skip over the escaped char. */
8102 stringer (8 + append_zero
);
8103 pa_undefine_label ();
8106 /* Handle a .VERSION pseudo-op. */
8109 pa_version (int unused ATTRIBUTE_UNUSED
)
8112 pa_undefine_label ();
8117 /* Handle a .COMPILER pseudo-op. */
8120 pa_compiler (int unused ATTRIBUTE_UNUSED
)
8122 obj_som_compiler (0);
8123 pa_undefine_label ();
8128 /* Handle a .COPYRIGHT pseudo-op. */
8131 pa_copyright (int unused ATTRIBUTE_UNUSED
)
8134 pa_undefine_label ();
8137 /* Just like a normal cons, but when finished we have to undefine
8138 the latest space label. */
8141 pa_cons (int nbytes
)
8144 pa_undefine_label ();
8147 /* Like float_cons, but we need to undefine our label. */
8150 pa_float_cons (int float_type
)
8152 float_cons (float_type
);
8153 pa_undefine_label ();
8156 /* Like s_fill, but delete our label when finished. */
8159 pa_fill (int unused ATTRIBUTE_UNUSED
)
8162 /* We must have a valid space and subspace. */
8163 pa_check_current_space_and_subspace ();
8167 pa_undefine_label ();
8170 /* Like lcomm, but delete our label when finished. */
8173 pa_lcomm (int needs_align
)
8176 /* We must have a valid space and subspace. */
8177 pa_check_current_space_and_subspace ();
8180 s_lcomm (needs_align
);
8181 pa_undefine_label ();
8184 /* Like lsym, but delete our label when finished. */
8187 pa_lsym (int unused ATTRIBUTE_UNUSED
)
8190 /* We must have a valid space and subspace. */
8191 pa_check_current_space_and_subspace ();
8195 pa_undefine_label ();
8198 /* This function is called once, at assembler startup time. It should
8199 set up all the tables, etc. that the MD part of the assembler will need. */
8204 const char *retval
= NULL
;
8208 last_call_info
= NULL
;
8209 call_info_root
= NULL
;
8211 /* Set the default machine type. */
8212 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, DEFAULT_LEVEL
))
8213 as_warn (_("could not set architecture and machine"));
8215 /* Folding of text and data segments fails miserably on the PA.
8216 Warn user and disable "-R" option. */
8217 if (flag_readonly_data_in_text
)
8219 as_warn (_("-R option not supported on this target."));
8220 flag_readonly_data_in_text
= 0;
8227 op_hash
= hash_new ();
8229 while (i
< NUMOPCODES
)
8231 const char *name
= pa_opcodes
[i
].name
;
8233 retval
= hash_insert (op_hash
, name
, (struct pa_opcode
*) &pa_opcodes
[i
]);
8234 if (retval
!= NULL
&& *retval
!= '\0')
8236 as_fatal (_("Internal error: can't hash `%s': %s\n"), name
, retval
);
8242 if ((pa_opcodes
[i
].match
& pa_opcodes
[i
].mask
)
8243 != pa_opcodes
[i
].match
)
8245 fprintf (stderr
, _("internal error: losing opcode: `%s' \"%s\"\n"),
8246 pa_opcodes
[i
].name
, pa_opcodes
[i
].args
);
8251 while (i
< NUMOPCODES
&& !strcmp (pa_opcodes
[i
].name
, name
));
8255 as_fatal (_("Broken assembler. No assembly attempted."));
8258 /* SOM will change text_section. To make sure we never put
8259 anything into the old one switch to the new one now. */
8260 subseg_set (text_section
, 0);
8264 dummy_symbol
= symbol_find_or_make ("L$dummy");
8265 S_SET_SEGMENT (dummy_symbol
, text_section
);
8266 /* Force the symbol to be converted to a real symbol. */
8267 (void) symbol_get_bfdsym (dummy_symbol
);
8271 /* On the PA relocations which involve function symbols must not be
8272 adjusted. This so that the linker can know when/how to create argument
8273 relocation stubs for indirect calls and calls to static functions.
8275 "T" field selectors create DLT relative fixups for accessing
8276 globals and statics in PIC code; each DLT relative fixup creates
8277 an entry in the DLT table. The entries contain the address of
8278 the final target (eg accessing "foo" would create a DLT entry
8279 with the address of "foo").
8281 Unfortunately, the HP linker doesn't take into account any addend
8282 when generating the DLT; so accessing $LIT$+8 puts the address of
8283 $LIT$ into the DLT rather than the address of $LIT$+8.
8285 The end result is we can't perform relocation symbol reductions for
8286 any fixup which creates entries in the DLT (eg they use "T" field
8289 ??? Reject reductions involving symbols with external scope; such
8290 reductions make life a living hell for object file editors. */
8293 hppa_fix_adjustable (fixS
*fixp
)
8298 struct hppa_fix_struct
*hppa_fix
;
8300 hppa_fix
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8303 /* LR/RR selectors are implicitly used for a number of different relocation
8304 types. We must ensure that none of these types are adjusted (see below)
8305 even if they occur with a different selector. */
8306 code
= elf_hppa_reloc_final_type (stdoutput
, fixp
->fx_r_type
,
8307 hppa_fix
->fx_r_format
,
8308 hppa_fix
->fx_r_field
);
8312 /* Relocation types which use e_lrsel. */
8313 case R_PARISC_DIR21L
:
8314 case R_PARISC_DLTREL21L
:
8315 case R_PARISC_DPREL21L
:
8316 case R_PARISC_PLTOFF21L
:
8318 /* Relocation types which use e_rrsel. */
8319 case R_PARISC_DIR14R
:
8320 case R_PARISC_DIR14DR
:
8321 case R_PARISC_DIR14WR
:
8322 case R_PARISC_DIR17R
:
8323 case R_PARISC_DLTREL14R
:
8324 case R_PARISC_DLTREL14DR
:
8325 case R_PARISC_DLTREL14WR
:
8326 case R_PARISC_DPREL14R
:
8327 case R_PARISC_DPREL14DR
:
8328 case R_PARISC_DPREL14WR
:
8329 case R_PARISC_PLTOFF14R
:
8330 case R_PARISC_PLTOFF14DR
:
8331 case R_PARISC_PLTOFF14WR
:
8333 /* Other types that we reject for reduction. */
8334 case R_PARISC_GNU_VTENTRY
:
8335 case R_PARISC_GNU_VTINHERIT
:
8342 /* Reject reductions of symbols in sym1-sym2 expressions when
8343 the fixup will occur in a CODE subspace.
8345 XXX FIXME: Long term we probably want to reject all of these;
8346 for example reducing in the debug section would lose if we ever
8347 supported using the optimizing hp linker. */
8350 && (hppa_fix
->segment
->flags
& SEC_CODE
))
8353 /* We can't adjust any relocs that use LR% and RR% field selectors.
8355 If a symbol is reduced to a section symbol, the assembler will
8356 adjust the addend unless the symbol happens to reside right at
8357 the start of the section. Additionally, the linker has no choice
8358 but to manipulate the addends when coalescing input sections for
8359 "ld -r". Since an LR% field selector is defined to round the
8360 addend, we can't change the addend without risking that a LR% and
8361 it's corresponding (possible multiple) RR% field will no longer
8362 sum to the right value.
8365 . ldil LR%foo+0,%r21
8366 . ldw RR%foo+0(%r21),%r26
8367 . ldw RR%foo+4(%r21),%r25
8369 If foo is at address 4092 (decimal) in section `sect', then after
8370 reducing to the section symbol we get
8371 . LR%sect+4092 == (L%sect)+0
8372 . RR%sect+4092 == (R%sect)+4092
8373 . RR%sect+4096 == (R%sect)-4096
8374 and the last address loses because rounding the addend to 8k
8375 multiples takes us up to 8192 with an offset of -4096.
8377 In cases where the LR% expression is identical to the RR% one we
8378 will never have a problem, but is so happens that gcc rounds
8379 addends involved in LR% field selectors to work around a HP
8380 linker bug. ie. We often have addresses like the last case
8381 above where the LR% expression is offset from the RR% one. */
8383 if (hppa_fix
->fx_r_field
== e_lrsel
8384 || hppa_fix
->fx_r_field
== e_rrsel
8385 || hppa_fix
->fx_r_field
== e_nlrsel
)
8388 /* Reject reductions of symbols in DLT relative relocs,
8389 relocations with plabels. */
8390 if (hppa_fix
->fx_r_field
== e_tsel
8391 || hppa_fix
->fx_r_field
== e_ltsel
8392 || hppa_fix
->fx_r_field
== e_rtsel
8393 || hppa_fix
->fx_r_field
== e_psel
8394 || hppa_fix
->fx_r_field
== e_rpsel
8395 || hppa_fix
->fx_r_field
== e_lpsel
)
8398 /* Reject absolute calls (jumps). */
8399 if (hppa_fix
->fx_r_type
== R_HPPA_ABS_CALL
)
8402 /* Reject reductions of function symbols. */
8403 if (fixp
->fx_addsy
!= 0 && S_IS_FUNCTION (fixp
->fx_addsy
))
8409 /* Return nonzero if the fixup in FIXP will require a relocation,
8410 even it if appears that the fixup could be completely handled
8414 hppa_force_relocation (struct fix
*fixp
)
8416 struct hppa_fix_struct
*hppa_fixp
;
8418 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8420 if (fixp
->fx_r_type
== (int) R_HPPA_ENTRY
8421 || fixp
->fx_r_type
== (int) R_HPPA_EXIT
8422 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_BRTAB
8423 || fixp
->fx_r_type
== (int) R_HPPA_END_BRTAB
8424 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_TRY
8425 || fixp
->fx_r_type
== (int) R_HPPA_END_TRY
8426 || (fixp
->fx_addsy
!= NULL
&& fixp
->fx_subsy
!= NULL
8427 && (hppa_fixp
->segment
->flags
& SEC_CODE
) != 0))
8431 if (fixp
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
8432 || fixp
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
)
8436 assert (fixp
->fx_addsy
!= NULL
);
8438 /* Ensure we emit a relocation for global symbols so that dynamic
8440 if (S_FORCE_RELOC (fixp
->fx_addsy
, 1))
8443 /* It is necessary to force PC-relative calls/jumps to have a relocation
8444 entry if they're going to need either an argument relocation or long
8447 && arg_reloc_stub_needed (symbol_arg_reloc_info (fixp
->fx_addsy
),
8448 hppa_fixp
->fx_arg_reloc
))
8451 /* Now check to see if we're going to need a long-branch stub. */
8452 if (fixp
->fx_r_type
== (int) R_HPPA_PCREL_CALL
)
8454 long pc
= md_pcrel_from (fixp
);
8455 valueT distance
, min_stub_distance
;
8457 distance
= fixp
->fx_offset
+ S_GET_VALUE (fixp
->fx_addsy
) - pc
- 8;
8459 /* Distance to the closest possible stub. This will detect most
8460 but not all circumstances where a stub will not work. */
8461 min_stub_distance
= pc
+ 16;
8463 if (last_call_info
!= NULL
)
8464 min_stub_distance
-= S_GET_VALUE (last_call_info
->start_symbol
);
8467 if ((distance
+ 8388608 >= 16777216
8468 && min_stub_distance
<= 8388608)
8469 || (hppa_fixp
->fx_r_format
== 17
8470 && distance
+ 262144 >= 524288
8471 && min_stub_distance
<= 262144)
8472 || (hppa_fixp
->fx_r_format
== 12
8473 && distance
+ 8192 >= 16384
8474 && min_stub_distance
<= 8192)
8479 if (fixp
->fx_r_type
== (int) R_HPPA_ABS_CALL
)
8482 /* No need (yet) to force another relocations to be emitted. */
8486 /* Now for some ELF specific code. FIXME. */
8488 /* For ELF, this function serves one purpose: to setup the st_size
8489 field of STT_FUNC symbols. To do this, we need to scan the
8490 call_info structure list, determining st_size in by taking the
8491 difference in the address of the beginning/end marker symbols. */
8494 elf_hppa_final_processing (void)
8496 struct call_info
*call_info_pointer
;
8498 for (call_info_pointer
= call_info_root
;
8500 call_info_pointer
= call_info_pointer
->ci_next
)
8502 elf_symbol_type
*esym
8503 = ((elf_symbol_type
*)
8504 symbol_get_bfdsym (call_info_pointer
->start_symbol
));
8505 esym
->internal_elf_sym
.st_size
=
8506 S_GET_VALUE (call_info_pointer
->end_symbol
)
8507 - S_GET_VALUE (call_info_pointer
->start_symbol
) + 4;
8512 pa_vtable_entry (int ignore ATTRIBUTE_UNUSED
)
8514 struct fix
*new_fix
;
8516 new_fix
= obj_elf_vtable_entry (0);
8520 struct hppa_fix_struct
* hppa_fix
= obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8522 hppa_fix
->fx_r_type
= R_HPPA
;
8523 hppa_fix
->fx_r_field
= e_fsel
;
8524 hppa_fix
->fx_r_format
= 32;
8525 hppa_fix
->fx_arg_reloc
= 0;
8526 hppa_fix
->segment
= now_seg
;
8527 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8528 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTENTRY
;
8533 pa_vtable_inherit (int ignore ATTRIBUTE_UNUSED
)
8535 struct fix
*new_fix
;
8537 new_fix
= obj_elf_vtable_inherit (0);
8541 struct hppa_fix_struct
* hppa_fix
= obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8543 hppa_fix
->fx_r_type
= R_HPPA
;
8544 hppa_fix
->fx_r_field
= e_fsel
;
8545 hppa_fix
->fx_r_format
= 32;
8546 hppa_fix
->fx_arg_reloc
= 0;
8547 hppa_fix
->segment
= now_seg
;
8548 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8549 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTINHERIT
;
8554 /* Table of pseudo ops for the PA. FIXME -- how many of these
8555 are now redundant with the overall GAS and the object file
8556 dependent tables? */
8557 const pseudo_typeS md_pseudo_table
[] =
8559 /* align pseudo-ops on the PA specify the actual alignment requested,
8560 not the log2 of the requested alignment. */
8562 {"align", pa_align
, 8},
8565 {"align", s_align_bytes
, 8},
8567 {"begin_brtab", pa_brtab
, 1},
8568 {"begin_try", pa_try
, 1},
8569 {"block", pa_block
, 1},
8570 {"blockz", pa_block
, 0},
8571 {"byte", pa_cons
, 1},
8572 {"call", pa_call
, 0},
8573 {"callinfo", pa_callinfo
, 0},
8574 #if defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))
8575 {"code", obj_elf_text
, 0},
8577 {"code", pa_text
, 0},
8578 {"comm", pa_comm
, 0},
8581 {"compiler", pa_compiler
, 0},
8583 {"copyright", pa_copyright
, 0},
8584 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8585 {"data", pa_data
, 0},
8587 {"double", pa_float_cons
, 'd'},
8588 {"dword", pa_cons
, 8},
8590 {"end_brtab", pa_brtab
, 0},
8591 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8592 {"end_try", pa_try
, 0},
8594 {"enter", pa_enter
, 0},
8595 {"entry", pa_entry
, 0},
8597 {"exit", pa_exit
, 0},
8598 {"export", pa_export
, 0},
8599 {"fill", pa_fill
, 0},
8600 {"float", pa_float_cons
, 'f'},
8601 {"half", pa_cons
, 2},
8602 {"import", pa_import
, 0},
8603 {"int", pa_cons
, 4},
8604 {"label", pa_label
, 0},
8605 {"lcomm", pa_lcomm
, 0},
8606 {"leave", pa_leave
, 0},
8607 {"level", pa_level
, 0},
8608 {"long", pa_cons
, 4},
8609 {"lsym", pa_lsym
, 0},
8611 {"nsubspa", pa_subspace
, 1},
8613 {"octa", pa_cons
, 16},
8614 {"org", pa_origin
, 0},
8615 {"origin", pa_origin
, 0},
8616 {"param", pa_param
, 0},
8617 {"proc", pa_proc
, 0},
8618 {"procend", pa_procend
, 0},
8619 {"quad", pa_cons
, 8},
8621 {"short", pa_cons
, 2},
8622 {"single", pa_float_cons
, 'f'},
8624 {"space", pa_space
, 0},
8625 {"spnum", pa_spnum
, 0},
8627 {"string", pa_stringer
, 0},
8628 {"stringz", pa_stringer
, 1},
8630 {"subspa", pa_subspace
, 0},
8632 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
8633 {"text", pa_text
, 0},
8635 {"version", pa_version
, 0},
8637 {"vtable_entry", pa_vtable_entry
, 0},
8638 {"vtable_inherit", pa_vtable_inherit
, 0},
8640 {"word", pa_cons
, 4},
8646 hppa_cfi_frame_initial_instructions (void)
8648 cfi_add_CFA_def_cfa (30, 0);
8652 hppa_regname_to_dw2regnum (char *regname
)
8654 unsigned int regnum
= -1;
8658 static struct { char *name
; int dw2regnum
; } regnames
[] =
8660 { "sp", 30 }, { "rp", 2 },
8663 for (i
= 0; i
< ARRAY_SIZE (regnames
); ++i
)
8664 if (strcmp (regnames
[i
].name
, regname
) == 0)
8665 return regnames
[i
].dw2regnum
;
8667 if (regname
[0] == 'r')
8670 regnum
= strtoul (p
, &q
, 10);
8671 if (p
== q
|| *q
|| regnum
>= 32)
8674 else if (regname
[0] == 'f' && regname
[1] == 'r')
8677 regnum
= strtoul (p
, &q
, 10);
8678 if (p
== q
|| *q
|| regnum
<= 4 || regnum
>= 32)