1 /* tc-hppa.c -- Assemble for the PA
2 Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004 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 2, 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, 59 Temple Place - Suite 330, Boston, MA
22 /* HP PA-RISC support was contributed by the Center for Software Science
23 at the University of Utah. */
28 #include "safe-ctype.h"
31 #include "bfd/libhppa.h"
33 /* Be careful, this file includes data *declarations*. */
34 #include "opcode/hppa.h"
36 #if defined (OBJ_ELF) && defined (OBJ_SOM)
37 error only one of OBJ_ELF
and OBJ_SOM can be defined
40 /* If we are using ELF, then we probably can support dwarf2 debug
41 records. Furthermore, if we are supporting dwarf2 debug records,
42 then we want to use the assembler support for compact line numbers. */
44 #include "dwarf2dbg.h"
46 /* A "convenient" place to put object file dependencies which do
47 not need to be seen outside of tc-hppa.c. */
49 /* Object file formats specify relocation types. */
50 typedef enum elf_hppa_reloc_type reloc_type
;
52 /* Object file formats specify BFD symbol types. */
53 typedef elf_symbol_type obj_symbol_type
;
54 #define symbol_arg_reloc_info(sym)\
55 (((obj_symbol_type *) symbol_get_bfdsym (sym))->tc_data.hppa_arg_reloc)
57 #if TARGET_ARCH_SIZE == 64
58 /* How to generate a relocation. */
59 #define hppa_gen_reloc_type _bfd_elf64_hppa_gen_reloc_type
60 #define elf_hppa_reloc_final_type elf64_hppa_reloc_final_type
62 #define hppa_gen_reloc_type _bfd_elf32_hppa_gen_reloc_type
63 #define elf_hppa_reloc_final_type elf32_hppa_reloc_final_type
66 /* ELF objects can have versions, but apparently do not have anywhere
67 to store a copyright string. */
68 #define obj_version obj_elf_version
69 #define obj_copyright obj_elf_version
71 #define UNWIND_SECTION_NAME ".PARISC.unwind"
75 /* Names of various debugging spaces/subspaces. */
76 #define GDB_DEBUG_SPACE_NAME "$GDB_DEBUG$"
77 #define GDB_STRINGS_SUBSPACE_NAME "$GDB_STRINGS$"
78 #define GDB_SYMBOLS_SUBSPACE_NAME "$GDB_SYMBOLS$"
79 #define UNWIND_SECTION_NAME "$UNWIND$"
81 /* Object file formats specify relocation types. */
82 typedef int reloc_type
;
84 /* SOM objects can have both a version string and a copyright string. */
85 #define obj_version obj_som_version
86 #define obj_copyright obj_som_copyright
88 /* How to generate a relocation. */
89 #define hppa_gen_reloc_type hppa_som_gen_reloc_type
91 /* Object file formats specify BFD symbol types. */
92 typedef som_symbol_type obj_symbol_type
;
93 #define symbol_arg_reloc_info(sym)\
94 (((obj_symbol_type *) symbol_get_bfdsym (sym))->tc_data.ap.hppa_arg_reloc)
96 /* This apparently isn't in older versions of hpux reloc.h. */
98 #define R_DLT_REL 0x78
110 #if TARGET_ARCH_SIZE == 64
111 #define DEFAULT_LEVEL 25
113 #define DEFAULT_LEVEL 10
116 /* Various structures and types used internally in tc-hppa.c. */
118 /* Unwind table and descriptor. FIXME: Sync this with GDB version. */
122 unsigned int cannot_unwind
:1;
123 unsigned int millicode
:1;
124 unsigned int millicode_save_rest
:1;
125 unsigned int region_desc
:2;
126 unsigned int save_sr
:2;
127 unsigned int entry_fr
:4;
128 unsigned int entry_gr
:5;
129 unsigned int args_stored
:1;
130 unsigned int call_fr
:5;
131 unsigned int call_gr
:5;
132 unsigned int save_sp
:1;
133 unsigned int save_rp
:1;
134 unsigned int save_rp_in_frame
:1;
135 unsigned int extn_ptr_defined
:1;
136 unsigned int cleanup_defined
:1;
138 unsigned int hpe_interrupt_marker
:1;
139 unsigned int hpux_interrupt_marker
:1;
140 unsigned int reserved
:3;
141 unsigned int frame_size
:27;
144 /* We can't rely on compilers placing bitfields in any particular
145 place, so use these macros when dumping unwind descriptors to
147 #define UNWIND_LOW32(U) \
148 (((U)->cannot_unwind << 31) \
149 | ((U)->millicode << 30) \
150 | ((U)->millicode_save_rest << 29) \
151 | ((U)->region_desc << 27) \
152 | ((U)->save_sr << 25) \
153 | ((U)->entry_fr << 21) \
154 | ((U)->entry_gr << 16) \
155 | ((U)->args_stored << 15) \
156 | ((U)->call_fr << 10) \
157 | ((U)->call_gr << 5) \
158 | ((U)->save_sp << 4) \
159 | ((U)->save_rp << 3) \
160 | ((U)->save_rp_in_frame << 2) \
161 | ((U)->extn_ptr_defined << 1) \
162 | ((U)->cleanup_defined << 0))
164 #define UNWIND_HIGH32(U) \
165 (((U)->hpe_interrupt_marker << 31) \
166 | ((U)->hpux_interrupt_marker << 30) \
167 | ((U)->frame_size << 0))
171 /* Starting and ending offsets of the region described by
173 unsigned int start_offset
;
174 unsigned int end_offset
;
175 struct unwind_desc descriptor
;
178 /* This structure is used by the .callinfo, .enter, .leave pseudo-ops to
179 control the entry and exit code they generate. It is also used in
180 creation of the correct stack unwind descriptors.
182 NOTE: GAS does not support .enter and .leave for the generation of
183 prologues and epilogues. FIXME.
185 The fields in structure roughly correspond to the arguments available on the
186 .callinfo pseudo-op. */
190 /* The unwind descriptor being built. */
191 struct unwind_table ci_unwind
;
193 /* Name of this function. */
194 symbolS
*start_symbol
;
196 /* (temporary) symbol used to mark the end of this function. */
199 /* Next entry in the chain. */
200 struct call_info
*ci_next
;
203 /* Operand formats for FP instructions. Note not all FP instructions
204 allow all four formats to be used (for example fmpysub only allows
208 SGL
, DBL
, ILLEGAL_FMT
, QUAD
, W
, UW
, DW
, UDW
, QW
, UQW
212 /* This fully describes the symbol types which may be attached to
213 an EXPORT or IMPORT directive. Only SOM uses this formation
214 (ELF has no need for it). */
218 SYMBOL_TYPE_ABSOLUTE
,
222 SYMBOL_TYPE_MILLICODE
,
224 SYMBOL_TYPE_PRI_PROG
,
225 SYMBOL_TYPE_SEC_PROG
,
229 /* This structure contains information needed to assemble
230 individual instructions. */
233 /* Holds the opcode after parsing by pa_ip. */
234 unsigned long opcode
;
236 /* Holds an expression associated with the current instruction. */
239 /* Does this instruction use PC-relative addressing. */
242 /* Floating point formats for operand1 and operand2. */
243 fp_operand_format fpof1
;
244 fp_operand_format fpof2
;
246 /* Whether or not we saw a truncation request on an fcnv insn. */
249 /* Holds the field selector for this instruction
250 (for example L%, LR%, etc). */
253 /* Holds any argument relocation bits associated with this
254 instruction. (instruction should be some sort of call). */
255 unsigned int arg_reloc
;
257 /* The format specification for this instruction. */
260 /* The relocation (if any) associated with this instruction. */
264 /* PA-89 floating point registers are arranged like this:
266 +--------------+--------------+
267 | 0 or 16L | 16 or 16R |
268 +--------------+--------------+
269 | 1 or 17L | 17 or 17R |
270 +--------------+--------------+
278 +--------------+--------------+
279 | 14 or 30L | 30 or 30R |
280 +--------------+--------------+
281 | 15 or 31L | 31 or 31R |
282 +--------------+--------------+ */
284 /* Additional information needed to build argument relocation stubs. */
287 /* The argument relocation specification. */
288 unsigned int arg_reloc
;
290 /* Number of arguments. */
291 unsigned int arg_count
;
295 /* This structure defines an entry in the subspace dictionary
298 struct subspace_dictionary_chain
300 /* Nonzero if this space has been defined by the user code. */
301 unsigned int ssd_defined
;
303 /* Name of this subspace. */
306 /* GAS segment and subsegment associated with this subspace. */
310 /* Next space in the subspace dictionary chain. */
311 struct subspace_dictionary_chain
*ssd_next
;
314 typedef struct subspace_dictionary_chain ssd_chain_struct
;
316 /* This structure defines an entry in the subspace dictionary
319 struct space_dictionary_chain
321 /* Nonzero if this space has been defined by the user code or
322 as a default space. */
323 unsigned int sd_defined
;
325 /* Nonzero if this spaces has been defined by the user code. */
326 unsigned int sd_user_defined
;
328 /* The space number (or index). */
329 unsigned int sd_spnum
;
331 /* The name of this subspace. */
334 /* GAS segment to which this subspace corresponds. */
337 /* Current subsegment number being used. */
340 /* The chain of subspaces contained within this space. */
341 ssd_chain_struct
*sd_subspaces
;
343 /* The next entry in the space dictionary chain. */
344 struct space_dictionary_chain
*sd_next
;
347 typedef struct space_dictionary_chain sd_chain_struct
;
349 /* This structure defines attributes of the default subspace
350 dictionary entries. */
352 struct default_subspace_dict
354 /* Name of the subspace. */
357 /* FIXME. Is this still needed? */
360 /* Nonzero if this subspace is loadable. */
363 /* Nonzero if this subspace contains only code. */
366 /* Nonzero if this is a comdat subspace. */
369 /* Nonzero if this is a common subspace. */
372 /* Nonzero if this is a common subspace which allows symbols
373 to be multiply defined. */
376 /* Nonzero if this subspace should be zero filled. */
379 /* Sort key for this subspace. */
382 /* Access control bits for this subspace. Can represent RWX access
383 as well as privilege level changes for gateways. */
386 /* Index of containing space. */
389 /* Alignment (in bytes) of this subspace. */
392 /* Quadrant within space where this subspace should be loaded. */
395 /* An index into the default spaces array. */
398 /* Subsegment associated with this subspace. */
402 /* This structure defines attributes of the default space
403 dictionary entries. */
405 struct default_space_dict
407 /* Name of the space. */
410 /* Space number. It is possible to identify spaces within
411 assembly code numerically! */
414 /* Nonzero if this space is loadable. */
417 /* Nonzero if this space is "defined". FIXME is still needed */
420 /* Nonzero if this space can not be shared. */
423 /* Sort key for this space. */
426 /* Segment associated with this space. */
431 /* Structure for previous label tracking. Needed so that alignments,
432 callinfo declarations, etc can be easily attached to a particular
434 typedef struct label_symbol_struct
436 struct symbol
*lss_label
;
438 sd_chain_struct
*lss_space
;
443 struct label_symbol_struct
*lss_next
;
447 /* Extra information needed to perform fixups (relocations) on the PA. */
448 struct hppa_fix_struct
450 /* The field selector. */
451 enum hppa_reloc_field_selector_type_alt fx_r_field
;
456 /* Format of fixup. */
459 /* Argument relocation bits. */
460 unsigned int fx_arg_reloc
;
462 /* The segment this fixup appears in. */
466 /* Structure to hold information about predefined registers. */
474 /* This structure defines the mapping from a FP condition string
475 to a condition number which can be recorded in an instruction. */
482 /* This structure defines a mapping from a field selector
483 string to a field selector type. */
484 struct selector_entry
490 /* Prototypes for functions local to tc-hppa.c. */
493 static void pa_check_current_space_and_subspace
PARAMS ((void));
496 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
497 static void pa_text
PARAMS ((int));
498 static void pa_data
PARAMS ((int));
499 static void pa_comm
PARAMS ((int));
501 static fp_operand_format pa_parse_fp_format
PARAMS ((char **s
));
502 static void pa_cons
PARAMS ((int));
503 static void pa_float_cons
PARAMS ((int));
504 static void pa_fill
PARAMS ((int));
505 static void pa_lcomm
PARAMS ((int));
506 static void pa_lsym
PARAMS ((int));
507 static void pa_stringer
PARAMS ((int));
508 static void pa_version
PARAMS ((int));
509 static int pa_parse_fp_cmp_cond
PARAMS ((char **));
510 static int get_expression
PARAMS ((char *));
511 static int pa_get_absolute_expression
PARAMS ((struct pa_it
*, char **));
512 static int evaluate_absolute
PARAMS ((struct pa_it
*));
513 static unsigned int pa_build_arg_reloc
PARAMS ((char *));
514 static unsigned int pa_align_arg_reloc
PARAMS ((unsigned int, unsigned int));
515 static int pa_parse_nullif
PARAMS ((char **));
516 static int pa_parse_nonneg_cmpsub_cmpltr
PARAMS ((char **));
517 static int pa_parse_neg_cmpsub_cmpltr
PARAMS ((char **));
518 static int pa_parse_neg_add_cmpltr
PARAMS ((char **));
519 static int pa_parse_nonneg_add_cmpltr
PARAMS ((char **));
520 static int pa_parse_cmpb_64_cmpltr
PARAMS ((char **));
521 static int pa_parse_cmpib_64_cmpltr
PARAMS ((char **));
522 static int pa_parse_addb_64_cmpltr
PARAMS ((char **));
523 static void pa_block
PARAMS ((int));
524 static void pa_brtab
PARAMS ((int));
525 static void pa_try
PARAMS ((int));
526 static void pa_call
PARAMS ((int));
527 static void pa_call_args
PARAMS ((struct call_desc
*));
528 static void pa_callinfo
PARAMS ((int));
529 static void pa_copyright
PARAMS ((int));
530 static void pa_end
PARAMS ((int));
531 static void pa_enter
PARAMS ((int));
532 static void pa_entry
PARAMS ((int));
533 static void pa_equ
PARAMS ((int));
534 static void pa_exit
PARAMS ((int));
535 static void pa_export
PARAMS ((int));
536 static void pa_type_args
PARAMS ((symbolS
*, int));
537 static void pa_import
PARAMS ((int));
538 static void pa_label
PARAMS ((int));
539 static void pa_leave
PARAMS ((int));
540 static void pa_level
PARAMS ((int));
541 static void pa_origin
PARAMS ((int));
542 static void pa_proc
PARAMS ((int));
543 static void pa_procend
PARAMS ((int));
544 static void pa_param
PARAMS ((int));
545 static void pa_undefine_label
PARAMS ((void));
546 static int need_pa11_opcode
PARAMS ((void));
547 static int pa_parse_number
PARAMS ((char **, int));
548 static label_symbol_struct
*pa_get_label
PARAMS ((void));
550 static int exact_log2
PARAMS ((int));
551 static void pa_compiler
PARAMS ((int));
552 static void pa_align
PARAMS ((int));
553 static void pa_space
PARAMS ((int));
554 static void pa_spnum
PARAMS ((int));
555 static void pa_subspace
PARAMS ((int));
556 static sd_chain_struct
*create_new_space
PARAMS ((char *, int, int,
559 static ssd_chain_struct
*create_new_subspace
PARAMS ((sd_chain_struct
*,
564 static ssd_chain_struct
*update_subspace
PARAMS ((sd_chain_struct
*,
565 char *, int, int, int,
569 static sd_chain_struct
*is_defined_space
PARAMS ((char *));
570 static ssd_chain_struct
*is_defined_subspace
PARAMS ((char *));
571 static sd_chain_struct
*pa_segment_to_space
PARAMS ((asection
*));
572 static ssd_chain_struct
*pa_subsegment_to_subspace
PARAMS ((asection
*,
574 static sd_chain_struct
*pa_find_space_by_number
PARAMS ((int));
575 static unsigned int pa_subspace_start
PARAMS ((sd_chain_struct
*, int));
576 static sd_chain_struct
*pa_parse_space_stmt
PARAMS ((char *, int));
577 static void pa_spaces_begin
PARAMS ((void));
579 static void pa_ip
PARAMS ((char *));
580 static void fix_new_hppa
PARAMS ((fragS
*, int, int, symbolS
*,
581 offsetT
, expressionS
*, int,
582 bfd_reloc_code_real_type
,
583 enum hppa_reloc_field_selector_type_alt
,
584 int, unsigned int, int));
585 static int is_end_of_statement
PARAMS ((void));
586 static int reg_name_search
PARAMS ((char *));
587 static int pa_chk_field_selector
PARAMS ((char **));
588 static int is_same_frag
PARAMS ((fragS
*, fragS
*));
589 static void process_exit
PARAMS ((void));
590 static unsigned int pa_stringer_aux
PARAMS ((char *));
591 static fp_operand_format pa_parse_fp_cnv_format
PARAMS ((char **s
));
592 static int pa_parse_ftest_gfx_completer
PARAMS ((char **));
595 static void hppa_elf_mark_end_of_function
PARAMS ((void));
596 static void pa_build_unwind_subspace
PARAMS ((struct call_info
*));
597 static void pa_vtable_entry
PARAMS ((int));
598 static void pa_vtable_inherit
PARAMS ((int));
601 /* File and globally scoped variable declarations. */
604 /* Root and final entry in the space chain. */
605 static sd_chain_struct
*space_dict_root
;
606 static sd_chain_struct
*space_dict_last
;
608 /* The current space and subspace. */
609 static sd_chain_struct
*current_space
;
610 static ssd_chain_struct
*current_subspace
;
613 /* Root of the call_info chain. */
614 static struct call_info
*call_info_root
;
616 /* The last call_info (for functions) structure
617 seen so it can be associated with fixups and
619 static struct call_info
*last_call_info
;
621 /* The last call description (for actual calls). */
622 static struct call_desc last_call_desc
;
624 /* handle of the OPCODE hash table */
625 static struct hash_control
*op_hash
= NULL
;
627 /* These characters can be suffixes of opcode names and they may be
628 followed by meaningful whitespace. We don't include `,' and `!'
629 as they never appear followed by meaningful whitespace. */
630 const char hppa_symbol_chars
[] = "*?=<>";
632 /* Table of pseudo ops for the PA. FIXME -- how many of these
633 are now redundant with the overall GAS and the object file
635 const pseudo_typeS md_pseudo_table
[] =
637 /* align pseudo-ops on the PA specify the actual alignment requested,
638 not the log2 of the requested alignment. */
640 {"align", pa_align
, 8},
643 {"align", s_align_bytes
, 8},
645 {"begin_brtab", pa_brtab
, 1},
646 {"begin_try", pa_try
, 1},
647 {"block", pa_block
, 1},
648 {"blockz", pa_block
, 0},
649 {"byte", pa_cons
, 1},
650 {"call", pa_call
, 0},
651 {"callinfo", pa_callinfo
, 0},
652 #if defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))
653 {"code", obj_elf_text
, 0},
655 {"code", pa_text
, 0},
656 {"comm", pa_comm
, 0},
659 {"compiler", pa_compiler
, 0},
661 {"copyright", pa_copyright
, 0},
662 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
663 {"data", pa_data
, 0},
665 {"double", pa_float_cons
, 'd'},
666 {"dword", pa_cons
, 8},
668 {"end_brtab", pa_brtab
, 0},
669 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
670 {"end_try", pa_try
, 0},
672 {"enter", pa_enter
, 0},
673 {"entry", pa_entry
, 0},
675 {"exit", pa_exit
, 0},
676 {"export", pa_export
, 0},
677 {"fill", pa_fill
, 0},
678 {"float", pa_float_cons
, 'f'},
679 {"half", pa_cons
, 2},
680 {"import", pa_import
, 0},
682 {"label", pa_label
, 0},
683 {"lcomm", pa_lcomm
, 0},
684 {"leave", pa_leave
, 0},
685 {"level", pa_level
, 0},
686 {"long", pa_cons
, 4},
687 {"lsym", pa_lsym
, 0},
689 {"nsubspa", pa_subspace
, 1},
691 {"octa", pa_cons
, 16},
692 {"org", pa_origin
, 0},
693 {"origin", pa_origin
, 0},
694 {"param", pa_param
, 0},
695 {"proc", pa_proc
, 0},
696 {"procend", pa_procend
, 0},
697 {"quad", pa_cons
, 8},
699 {"short", pa_cons
, 2},
700 {"single", pa_float_cons
, 'f'},
702 {"space", pa_space
, 0},
703 {"spnum", pa_spnum
, 0},
705 {"string", pa_stringer
, 0},
706 {"stringz", pa_stringer
, 1},
708 {"subspa", pa_subspace
, 0},
710 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
711 {"text", pa_text
, 0},
713 {"version", pa_version
, 0},
715 {"vtable_entry", pa_vtable_entry
, 0},
716 {"vtable_inherit", pa_vtable_inherit
, 0},
718 {"word", pa_cons
, 4},
722 /* This array holds the chars that only start a comment at the beginning of
723 a line. If the line seems to have the form '# 123 filename'
724 .line and .file directives will appear in the pre-processed output.
726 Note that input_file.c hand checks for '#' at the beginning of the
727 first line of the input file. This is because the compiler outputs
728 #NO_APP at the beginning of its output.
730 Also note that C style comments will always work. */
731 const char line_comment_chars
[] = "#";
733 /* This array holds the chars that always start a comment. If the
734 pre-processor is disabled, these aren't very useful. */
735 const char comment_chars
[] = ";";
737 /* This array holds the characters which act as line separators. */
738 const char line_separator_chars
[] = "!";
740 /* Chars that can be used to separate mant from exp in floating point nums. */
741 const char EXP_CHARS
[] = "eE";
743 /* Chars that mean this number is a floating point constant.
744 As in 0f12.456 or 0d1.2345e12.
746 Be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
747 changed in read.c. Ideally it shouldn't hae to know abou it at
748 all, but nothing is ideal around here. */
749 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
751 static struct pa_it the_insn
;
753 /* Points to the end of an expression just parsed by get_expression
754 and friends. FIXME. This shouldn't be handled with a file-global
756 static char *expr_end
;
758 /* Nonzero if a .callinfo appeared within the current procedure. */
759 static int callinfo_found
;
761 /* Nonzero if the assembler is currently within a .entry/.exit pair. */
762 static int within_entry_exit
;
764 /* Nonzero if the assembler is currently within a procedure definition. */
765 static int within_procedure
;
767 /* Handle on structure which keep track of the last symbol
768 seen in each subspace. */
769 static label_symbol_struct
*label_symbols_rootp
= NULL
;
771 /* Holds the last field selector. */
772 static int hppa_field_selector
;
774 /* Nonzero when strict syntax checking is enabled. Zero otherwise.
776 Each opcode in the table has a flag which indicates whether or not
777 strict syntax checking should be enabled for that instruction. */
778 static int strict
= 0;
780 /* pa_parse_number returns values in `pa_number'. Mostly
781 pa_parse_number is used to return a register number, with floating
782 point registers being numbered from FP_REG_BASE upwards.
783 The bit specified with FP_REG_RSEL is set if the floating point
784 register has a `r' suffix. */
785 #define FP_REG_BASE 64
786 #define FP_REG_RSEL 128
787 static int pa_number
;
790 /* A dummy bfd symbol so that all relocations have symbols of some kind. */
791 static symbolS
*dummy_symbol
;
794 /* Nonzero if errors are to be printed. */
795 static int print_errors
= 1;
797 /* List of registers that are pre-defined:
799 Each general register has one predefined name of the form
800 %r<REGNUM> which has the value <REGNUM>.
802 Space and control registers are handled in a similar manner,
803 but use %sr<REGNUM> and %cr<REGNUM> as their predefined names.
805 Likewise for the floating point registers, but of the form
806 %fr<REGNUM>. Floating point registers have additional predefined
807 names with 'L' and 'R' suffixes (e.g. %fr19L, %fr19R) which
808 again have the value <REGNUM>.
810 Many registers also have synonyms:
812 %r26 - %r23 have %arg0 - %arg3 as synonyms
813 %r28 - %r29 have %ret0 - %ret1 as synonyms
814 %r30 has %sp as a synonym
815 %r27 has %dp as a synonym
816 %r2 has %rp as a synonym
818 Almost every control register has a synonym; they are not listed
821 The table is sorted. Suitable for searching by a binary search. */
823 static const struct pd_reg pre_defined_registers
[] =
861 {"%fr0", 0 + FP_REG_BASE
},
862 {"%fr0l", 0 + FP_REG_BASE
},
863 {"%fr0r", 0 + FP_REG_BASE
+ FP_REG_RSEL
},
864 {"%fr1", 1 + FP_REG_BASE
},
865 {"%fr10", 10 + FP_REG_BASE
},
866 {"%fr10l", 10 + FP_REG_BASE
},
867 {"%fr10r", 10 + FP_REG_BASE
+ FP_REG_RSEL
},
868 {"%fr11", 11 + FP_REG_BASE
},
869 {"%fr11l", 11 + FP_REG_BASE
},
870 {"%fr11r", 11 + FP_REG_BASE
+ FP_REG_RSEL
},
871 {"%fr12", 12 + FP_REG_BASE
},
872 {"%fr12l", 12 + FP_REG_BASE
},
873 {"%fr12r", 12 + FP_REG_BASE
+ FP_REG_RSEL
},
874 {"%fr13", 13 + FP_REG_BASE
},
875 {"%fr13l", 13 + FP_REG_BASE
},
876 {"%fr13r", 13 + FP_REG_BASE
+ FP_REG_RSEL
},
877 {"%fr14", 14 + FP_REG_BASE
},
878 {"%fr14l", 14 + FP_REG_BASE
},
879 {"%fr14r", 14 + FP_REG_BASE
+ FP_REG_RSEL
},
880 {"%fr15", 15 + FP_REG_BASE
},
881 {"%fr15l", 15 + FP_REG_BASE
},
882 {"%fr15r", 15 + FP_REG_BASE
+ FP_REG_RSEL
},
883 {"%fr16", 16 + FP_REG_BASE
},
884 {"%fr16l", 16 + FP_REG_BASE
},
885 {"%fr16r", 16 + FP_REG_BASE
+ FP_REG_RSEL
},
886 {"%fr17", 17 + FP_REG_BASE
},
887 {"%fr17l", 17 + FP_REG_BASE
},
888 {"%fr17r", 17 + FP_REG_BASE
+ FP_REG_RSEL
},
889 {"%fr18", 18 + FP_REG_BASE
},
890 {"%fr18l", 18 + FP_REG_BASE
},
891 {"%fr18r", 18 + FP_REG_BASE
+ FP_REG_RSEL
},
892 {"%fr19", 19 + FP_REG_BASE
},
893 {"%fr19l", 19 + FP_REG_BASE
},
894 {"%fr19r", 19 + FP_REG_BASE
+ FP_REG_RSEL
},
895 {"%fr1l", 1 + FP_REG_BASE
},
896 {"%fr1r", 1 + FP_REG_BASE
+ FP_REG_RSEL
},
897 {"%fr2", 2 + FP_REG_BASE
},
898 {"%fr20", 20 + FP_REG_BASE
},
899 {"%fr20l", 20 + FP_REG_BASE
},
900 {"%fr20r", 20 + FP_REG_BASE
+ FP_REG_RSEL
},
901 {"%fr21", 21 + FP_REG_BASE
},
902 {"%fr21l", 21 + FP_REG_BASE
},
903 {"%fr21r", 21 + FP_REG_BASE
+ FP_REG_RSEL
},
904 {"%fr22", 22 + FP_REG_BASE
},
905 {"%fr22l", 22 + FP_REG_BASE
},
906 {"%fr22r", 22 + FP_REG_BASE
+ FP_REG_RSEL
},
907 {"%fr23", 23 + FP_REG_BASE
},
908 {"%fr23l", 23 + FP_REG_BASE
},
909 {"%fr23r", 23 + FP_REG_BASE
+ FP_REG_RSEL
},
910 {"%fr24", 24 + FP_REG_BASE
},
911 {"%fr24l", 24 + FP_REG_BASE
},
912 {"%fr24r", 24 + FP_REG_BASE
+ FP_REG_RSEL
},
913 {"%fr25", 25 + FP_REG_BASE
},
914 {"%fr25l", 25 + FP_REG_BASE
},
915 {"%fr25r", 25 + FP_REG_BASE
+ FP_REG_RSEL
},
916 {"%fr26", 26 + FP_REG_BASE
},
917 {"%fr26l", 26 + FP_REG_BASE
},
918 {"%fr26r", 26 + FP_REG_BASE
+ FP_REG_RSEL
},
919 {"%fr27", 27 + FP_REG_BASE
},
920 {"%fr27l", 27 + FP_REG_BASE
},
921 {"%fr27r", 27 + FP_REG_BASE
+ FP_REG_RSEL
},
922 {"%fr28", 28 + FP_REG_BASE
},
923 {"%fr28l", 28 + FP_REG_BASE
},
924 {"%fr28r", 28 + FP_REG_BASE
+ FP_REG_RSEL
},
925 {"%fr29", 29 + FP_REG_BASE
},
926 {"%fr29l", 29 + FP_REG_BASE
},
927 {"%fr29r", 29 + FP_REG_BASE
+ FP_REG_RSEL
},
928 {"%fr2l", 2 + FP_REG_BASE
},
929 {"%fr2r", 2 + FP_REG_BASE
+ FP_REG_RSEL
},
930 {"%fr3", 3 + FP_REG_BASE
},
931 {"%fr30", 30 + FP_REG_BASE
},
932 {"%fr30l", 30 + FP_REG_BASE
},
933 {"%fr30r", 30 + FP_REG_BASE
+ FP_REG_RSEL
},
934 {"%fr31", 31 + FP_REG_BASE
},
935 {"%fr31l", 31 + FP_REG_BASE
},
936 {"%fr31r", 31 + FP_REG_BASE
+ FP_REG_RSEL
},
937 {"%fr3l", 3 + FP_REG_BASE
},
938 {"%fr3r", 3 + FP_REG_BASE
+ FP_REG_RSEL
},
939 {"%fr4", 4 + FP_REG_BASE
},
940 {"%fr4l", 4 + FP_REG_BASE
},
941 {"%fr4r", 4 + FP_REG_BASE
+ FP_REG_RSEL
},
942 {"%fr5", 5 + FP_REG_BASE
},
943 {"%fr5l", 5 + FP_REG_BASE
},
944 {"%fr5r", 5 + FP_REG_BASE
+ FP_REG_RSEL
},
945 {"%fr6", 6 + FP_REG_BASE
},
946 {"%fr6l", 6 + FP_REG_BASE
},
947 {"%fr6r", 6 + FP_REG_BASE
+ FP_REG_RSEL
},
948 {"%fr7", 7 + FP_REG_BASE
},
949 {"%fr7l", 7 + FP_REG_BASE
},
950 {"%fr7r", 7 + FP_REG_BASE
+ FP_REG_RSEL
},
951 {"%fr8", 8 + FP_REG_BASE
},
952 {"%fr8l", 8 + FP_REG_BASE
},
953 {"%fr8r", 8 + FP_REG_BASE
+ FP_REG_RSEL
},
954 {"%fr9", 9 + FP_REG_BASE
},
955 {"%fr9l", 9 + FP_REG_BASE
},
956 {"%fr9r", 9 + FP_REG_BASE
+ FP_REG_RSEL
},
965 #if TARGET_ARCH_SIZE == 64
1041 /* This table is sorted by order of the length of the string. This is
1042 so we check for <> before we check for <. If we had a <> and checked
1043 for < first, we would get a false match. */
1044 static const struct fp_cond_map fp_cond_map
[] =
1080 static const struct selector_entry selector_table
[] =
1105 /* default space and subspace dictionaries */
1107 #define GDB_SYMBOLS GDB_SYMBOLS_SUBSPACE_NAME
1108 #define GDB_STRINGS GDB_STRINGS_SUBSPACE_NAME
1110 /* pre-defined subsegments (subspaces) for the HPPA. */
1111 #define SUBSEG_CODE 0
1112 #define SUBSEG_LIT 1
1113 #define SUBSEG_MILLI 2
1114 #define SUBSEG_DATA 0
1115 #define SUBSEG_BSS 2
1116 #define SUBSEG_UNWIND 3
1117 #define SUBSEG_GDB_STRINGS 0
1118 #define SUBSEG_GDB_SYMBOLS 1
1120 static struct default_subspace_dict pa_def_subspaces
[] =
1122 {"$CODE$", 1, 1, 1, 0, 0, 0, 0, 24, 0x2c, 0, 8, 0, 0, SUBSEG_CODE
},
1123 {"$DATA$", 1, 1, 0, 0, 0, 0, 0, 24, 0x1f, 1, 8, 1, 1, SUBSEG_DATA
},
1124 {"$LIT$", 1, 1, 0, 0, 0, 0, 0, 16, 0x2c, 0, 8, 0, 0, SUBSEG_LIT
},
1125 {"$MILLICODE$", 1, 1, 0, 0, 0, 0, 0, 8, 0x2c, 0, 8, 0, 0, SUBSEG_MILLI
},
1126 {"$BSS$", 1, 1, 0, 0, 0, 0, 1, 80, 0x1f, 1, 8, 1, 1, SUBSEG_BSS
},
1127 {NULL
, 0, 1, 0, 0, 0, 0, 0, 255, 0x1f, 0, 4, 0, 0, 0}
1130 static struct default_space_dict pa_def_spaces
[] =
1132 {"$TEXT$", 0, 1, 1, 0, 8, ASEC_NULL
},
1133 {"$PRIVATE$", 1, 1, 1, 1, 16, ASEC_NULL
},
1134 {NULL
, 0, 0, 0, 0, 0, ASEC_NULL
}
1137 /* Misc local definitions used by the assembler. */
1139 /* These macros are used to maintain spaces/subspaces. */
1140 #define SPACE_DEFINED(space_chain) (space_chain)->sd_defined
1141 #define SPACE_USER_DEFINED(space_chain) (space_chain)->sd_user_defined
1142 #define SPACE_SPNUM(space_chain) (space_chain)->sd_spnum
1143 #define SPACE_NAME(space_chain) (space_chain)->sd_name
1145 #define SUBSPACE_DEFINED(ss_chain) (ss_chain)->ssd_defined
1146 #define SUBSPACE_NAME(ss_chain) (ss_chain)->ssd_name
1149 /* Return nonzero if the string pointed to by S potentially represents
1150 a right or left half of a FP register */
1151 #define IS_R_SELECT(S) (*(S) == 'R' || *(S) == 'r')
1152 #define IS_L_SELECT(S) (*(S) == 'L' || *(S) == 'l')
1154 /* Insert FIELD into OPCODE starting at bit START. Continue pa_ip
1155 main loop after insertion. */
1157 #define INSERT_FIELD_AND_CONTINUE(OPCODE, FIELD, START) \
1159 ((OPCODE) |= (FIELD) << (START)); \
1163 /* Simple range checking for FIELD against HIGH and LOW bounds.
1164 IGNORE is used to suppress the error message. */
1166 #define CHECK_FIELD(FIELD, HIGH, LOW, IGNORE) \
1168 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1171 as_bad (_("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1177 /* Variant of CHECK_FIELD for use in md_apply_fix3 and other places where
1178 the current file and line number are not valid. */
1180 #define CHECK_FIELD_WHERE(FIELD, HIGH, LOW, FILENAME, LINE) \
1182 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1184 as_bad_where ((FILENAME), (LINE), \
1185 _("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1191 /* Simple alignment checking for FIELD against ALIGN (a power of two).
1192 IGNORE is used to suppress the error message. */
1194 #define CHECK_ALIGN(FIELD, ALIGN, IGNORE) \
1196 if ((FIELD) & ((ALIGN) - 1)) \
1199 as_bad (_("Field not properly aligned [%d] (%d)."), (ALIGN), \
1205 #define is_DP_relative(exp) \
1206 ((exp).X_op == O_subtract \
1207 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$global$") == 0)
1209 #define is_PC_relative(exp) \
1210 ((exp).X_op == O_subtract \
1211 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$PIC_pcrel$0") == 0)
1213 /* We need some complex handling for stabs (sym1 - sym2). Luckily, we'll
1214 always be able to reduce the expression to a constant, so we don't
1215 need real complex handling yet. */
1216 #define is_complex(exp) \
1217 ((exp).X_op != O_constant && (exp).X_op != O_symbol)
1219 /* Actual functions to implement the PA specific code for the assembler. */
1221 /* Called before writing the object file. Make sure entry/exit and
1222 proc/procend pairs match. */
1227 if (within_entry_exit
)
1228 as_fatal (_("Missing .exit\n"));
1230 if (within_procedure
)
1231 as_fatal (_("Missing .procend\n"));
1234 /* Returns a pointer to the label_symbol_struct for the current space.
1235 or NULL if no label_symbol_struct exists for the current space. */
1237 static label_symbol_struct
*
1240 label_symbol_struct
*label_chain
;
1242 for (label_chain
= label_symbols_rootp
;
1244 label_chain
= label_chain
->lss_next
)
1247 if (current_space
== label_chain
->lss_space
&& label_chain
->lss_label
)
1251 if (now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
)
1259 /* Defines a label for the current space. If one is already defined,
1260 this function will replace it with the new label. */
1263 pa_define_label (symbol
)
1266 label_symbol_struct
*label_chain
= pa_get_label ();
1269 label_chain
->lss_label
= symbol
;
1272 /* Create a new label entry and add it to the head of the chain. */
1274 = (label_symbol_struct
*) xmalloc (sizeof (label_symbol_struct
));
1275 label_chain
->lss_label
= symbol
;
1277 label_chain
->lss_space
= current_space
;
1280 label_chain
->lss_segment
= now_seg
;
1282 label_chain
->lss_next
= NULL
;
1284 if (label_symbols_rootp
)
1285 label_chain
->lss_next
= label_symbols_rootp
;
1287 label_symbols_rootp
= label_chain
;
1291 /* Removes a label definition for the current space.
1292 If there is no label_symbol_struct entry, then no action is taken. */
1295 pa_undefine_label ()
1297 label_symbol_struct
*label_chain
;
1298 label_symbol_struct
*prev_label_chain
= NULL
;
1300 for (label_chain
= label_symbols_rootp
;
1302 label_chain
= label_chain
->lss_next
)
1306 && current_space
== label_chain
->lss_space
&& label_chain
->lss_label
1309 && now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
1313 /* Remove the label from the chain and free its memory. */
1314 if (prev_label_chain
)
1315 prev_label_chain
->lss_next
= label_chain
->lss_next
;
1317 label_symbols_rootp
= label_chain
->lss_next
;
1322 prev_label_chain
= label_chain
;
1326 /* An HPPA-specific version of fix_new. This is required because the HPPA
1327 code needs to keep track of some extra stuff. Each call to fix_new_hppa
1328 results in the creation of an instance of an hppa_fix_struct. An
1329 hppa_fix_struct stores the extra information along with a pointer to the
1330 original fixS. This is attached to the original fixup via the
1331 tc_fix_data field. */
1334 fix_new_hppa (frag
, where
, size
, add_symbol
, offset
, exp
, pcrel
,
1335 r_type
, r_field
, r_format
, arg_reloc
, unwind_bits
)
1339 symbolS
*add_symbol
;
1343 bfd_reloc_code_real_type r_type
;
1344 enum hppa_reloc_field_selector_type_alt r_field
;
1346 unsigned int arg_reloc
;
1347 int unwind_bits ATTRIBUTE_UNUSED
;
1351 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
1352 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
1355 new_fix
= fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
);
1357 new_fix
= fix_new (frag
, where
, size
, add_symbol
, offset
, pcrel
, r_type
);
1358 new_fix
->tc_fix_data
= (void *) hppa_fix
;
1359 hppa_fix
->fx_r_type
= r_type
;
1360 hppa_fix
->fx_r_field
= r_field
;
1361 hppa_fix
->fx_r_format
= r_format
;
1362 hppa_fix
->fx_arg_reloc
= arg_reloc
;
1363 hppa_fix
->segment
= now_seg
;
1365 if (r_type
== R_ENTRY
|| r_type
== R_EXIT
)
1366 new_fix
->fx_offset
= unwind_bits
;
1369 /* foo-$global$ is used to access non-automatic storage. $global$
1370 is really just a marker and has served its purpose, so eliminate
1371 it now so as not to confuse write.c. Ditto for $PIC_pcrel$0. */
1372 if (new_fix
->fx_subsy
1373 && (strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$global$") == 0
1374 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$PIC_pcrel$0") == 0))
1375 new_fix
->fx_subsy
= NULL
;
1378 /* Parse a .byte, .word, .long expression for the HPPA. Called by
1379 cons via the TC_PARSE_CONS_EXPRESSION macro. */
1382 parse_cons_expression_hppa (exp
)
1385 hppa_field_selector
= pa_chk_field_selector (&input_line_pointer
);
1389 /* This fix_new is called by cons via TC_CONS_FIX_NEW.
1390 hppa_field_selector is set by the parse_cons_expression_hppa. */
1393 cons_fix_new_hppa (frag
, where
, size
, exp
)
1399 unsigned int rel_type
;
1401 /* Get a base relocation type. */
1402 if (is_DP_relative (*exp
))
1403 rel_type
= R_HPPA_GOTOFF
;
1404 else if (is_PC_relative (*exp
))
1405 rel_type
= R_HPPA_PCREL_CALL
;
1406 else if (is_complex (*exp
))
1407 rel_type
= R_HPPA_COMPLEX
;
1411 if (hppa_field_selector
!= e_psel
&& hppa_field_selector
!= e_fsel
)
1413 as_warn (_("Invalid field selector. Assuming F%%."));
1414 hppa_field_selector
= e_fsel
;
1417 fix_new_hppa (frag
, where
, size
,
1418 (symbolS
*) NULL
, (offsetT
) 0, exp
, 0, rel_type
,
1419 hppa_field_selector
, size
* 8, 0, 0);
1421 /* Reset field selector to its default state. */
1422 hppa_field_selector
= 0;
1425 /* This function is called once, at assembler startup time. It should
1426 set up all the tables, etc. that the MD part of the assembler will need. */
1431 const char *retval
= NULL
;
1435 last_call_info
= NULL
;
1436 call_info_root
= NULL
;
1438 /* Set the default machine type. */
1439 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, DEFAULT_LEVEL
))
1440 as_warn (_("could not set architecture and machine"));
1442 /* Folding of text and data segments fails miserably on the PA.
1443 Warn user and disable "-R" option. */
1444 if (flag_readonly_data_in_text
)
1446 as_warn (_("-R option not supported on this target."));
1447 flag_readonly_data_in_text
= 0;
1454 op_hash
= hash_new ();
1456 while (i
< NUMOPCODES
)
1458 const char *name
= pa_opcodes
[i
].name
;
1459 retval
= hash_insert (op_hash
, name
, (struct pa_opcode
*) &pa_opcodes
[i
]);
1460 if (retval
!= NULL
&& *retval
!= '\0')
1462 as_fatal (_("Internal error: can't hash `%s': %s\n"), name
, retval
);
1467 if ((pa_opcodes
[i
].match
& pa_opcodes
[i
].mask
)
1468 != pa_opcodes
[i
].match
)
1470 fprintf (stderr
, _("internal error: losing opcode: `%s' \"%s\"\n"),
1471 pa_opcodes
[i
].name
, pa_opcodes
[i
].args
);
1476 while (i
< NUMOPCODES
&& !strcmp (pa_opcodes
[i
].name
, name
));
1480 as_fatal (_("Broken assembler. No assembly attempted."));
1483 /* SOM will change text_section. To make sure we never put
1484 anything into the old one switch to the new one now. */
1485 subseg_set (text_section
, 0);
1489 dummy_symbol
= symbol_find_or_make ("L$dummy");
1490 S_SET_SEGMENT (dummy_symbol
, text_section
);
1491 /* Force the symbol to be converted to a real symbol. */
1492 (void) symbol_get_bfdsym (dummy_symbol
);
1496 /* Assemble a single instruction storing it into a frag. */
1503 /* The had better be something to assemble. */
1506 /* If we are within a procedure definition, make sure we've
1507 defined a label for the procedure; handle case where the
1508 label was defined after the .PROC directive.
1510 Note there's not need to diddle with the segment or fragment
1511 for the label symbol in this case. We have already switched
1512 into the new $CODE$ subspace at this point. */
1513 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
1515 label_symbol_struct
*label_symbol
= pa_get_label ();
1519 if (label_symbol
->lss_label
)
1521 last_call_info
->start_symbol
= label_symbol
->lss_label
;
1522 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
1525 /* Also handle allocation of a fixup to hold the unwind
1526 information when the label appears after the proc/procend. */
1527 if (within_entry_exit
)
1532 where
= frag_more (0);
1533 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
1534 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
1535 NULL
, (offsetT
) 0, NULL
,
1536 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
1541 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
1544 as_bad (_("Missing function name for .PROC"));
1547 /* Assemble the instruction. Results are saved into "the_insn". */
1550 /* Get somewhere to put the assembled instruction. */
1553 /* Output the opcode. */
1554 md_number_to_chars (to
, the_insn
.opcode
, 4);
1556 /* If necessary output more stuff. */
1557 if (the_insn
.reloc
!= R_HPPA_NONE
)
1558 fix_new_hppa (frag_now
, (to
- frag_now
->fr_literal
), 4, NULL
,
1559 (offsetT
) 0, &the_insn
.exp
, the_insn
.pcrel
,
1560 the_insn
.reloc
, the_insn
.field_selector
,
1561 the_insn
.format
, the_insn
.arg_reloc
, 0);
1564 dwarf2_emit_insn (4);
1568 /* Do the real work for assembling a single instruction. Store results
1569 into the global "the_insn" variable. */
1575 char *error_message
= "";
1576 char *s
, c
, *argstart
, *name
, *save_s
;
1580 int cmpltr
, nullif
, flag
, cond
, num
;
1581 unsigned long opcode
;
1582 struct pa_opcode
*insn
;
1585 /* We must have a valid space and subspace. */
1586 pa_check_current_space_and_subspace ();
1589 /* Convert everything up to the first whitespace character into lower
1591 for (s
= str
; *s
!= ' ' && *s
!= '\t' && *s
!= '\n' && *s
!= '\0'; s
++)
1594 /* Skip to something interesting. */
1596 ISUPPER (*s
) || ISLOWER (*s
) || (*s
>= '0' && *s
<= '3');
1616 as_fatal (_("Unknown opcode: `%s'"), str
);
1619 /* Look up the opcode in the has table. */
1620 if ((insn
= (struct pa_opcode
*) hash_find (op_hash
, str
)) == NULL
)
1622 as_bad ("Unknown opcode: `%s'", str
);
1631 /* Mark the location where arguments for the instruction start, then
1632 start processing them. */
1636 /* Do some initialization. */
1637 opcode
= insn
->match
;
1638 strict
= (insn
->flags
& FLAG_STRICT
);
1639 memset (&the_insn
, 0, sizeof (the_insn
));
1641 the_insn
.reloc
= R_HPPA_NONE
;
1643 /* If this instruction is specific to a particular architecture,
1644 then set a new architecture. */
1645 /* But do not automatically promote to pa2.0. The automatic promotion
1646 crud is for compatibility with HP's old assemblers only. */
1648 && bfd_get_mach (stdoutput
) < insn
->arch
)
1650 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, insn
->arch
))
1651 as_warn (_("could not update architecture and machine"));
1653 else if (bfd_get_mach (stdoutput
) < insn
->arch
)
1659 /* Build the opcode, checking as we go to make
1660 sure that the operands match. */
1661 for (args
= insn
->args
;; ++args
)
1663 /* Absorb white space in instruction. */
1664 while (*s
== ' ' || *s
== '\t')
1670 /* End of arguments. */
1686 /* These must match exactly. */
1695 /* Handle a 5 bit register or control register field at 10. */
1698 if (!pa_parse_number (&s
, 0))
1701 CHECK_FIELD (num
, 31, 0, 0);
1702 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
1704 /* Handle %sar or %cr11. No bits get set, we just verify that it
1707 /* Skip whitespace before register. */
1708 while (*s
== ' ' || *s
== '\t')
1711 if (!strncasecmp (s
, "%sar", 4))
1716 else if (!strncasecmp (s
, "%cr11", 5))
1723 /* Handle a 5 bit register field at 15. */
1725 if (!pa_parse_number (&s
, 0))
1728 CHECK_FIELD (num
, 31, 0, 0);
1729 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1731 /* Handle a 5 bit register field at 31. */
1733 if (!pa_parse_number (&s
, 0))
1736 CHECK_FIELD (num
, 31, 0, 0);
1737 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1739 /* Handle a 5 bit register field at 10 and 15. */
1741 if (!pa_parse_number (&s
, 0))
1744 CHECK_FIELD (num
, 31, 0, 0);
1745 opcode
|= num
<< 16;
1746 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
1748 /* Handle a 5 bit field length at 31. */
1750 num
= pa_get_absolute_expression (&the_insn
, &s
);
1751 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1754 CHECK_FIELD (num
, 32, 1, 0);
1755 INSERT_FIELD_AND_CONTINUE (opcode
, 32 - num
, 0);
1757 /* Handle a 5 bit immediate at 15. */
1759 num
= pa_get_absolute_expression (&the_insn
, &s
);
1760 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1763 /* When in strict mode, we want to just reject this
1764 match instead of giving an out of range error. */
1765 CHECK_FIELD (num
, 15, -16, strict
);
1766 num
= low_sign_unext (num
, 5);
1767 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1769 /* Handle a 5 bit immediate at 31. */
1771 num
= pa_get_absolute_expression (&the_insn
, &s
);
1772 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1775 /* When in strict mode, we want to just reject this
1776 match instead of giving an out of range error. */
1777 CHECK_FIELD (num
, 15, -16, strict
);
1778 num
= low_sign_unext (num
, 5);
1779 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1781 /* Handle an unsigned 5 bit immediate at 31. */
1783 num
= pa_get_absolute_expression (&the_insn
, &s
);
1784 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1787 CHECK_FIELD (num
, 31, 0, strict
);
1788 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1790 /* Handle an unsigned 5 bit immediate at 15. */
1792 num
= pa_get_absolute_expression (&the_insn
, &s
);
1793 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1796 CHECK_FIELD (num
, 31, 0, strict
);
1797 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1799 /* Handle an unsigned 10 bit immediate at 15. */
1801 num
= pa_get_absolute_expression (&the_insn
, &s
);
1802 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1805 CHECK_FIELD (num
, 1023, 0, strict
);
1806 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1808 /* Handle a 2 bit space identifier at 17. */
1810 if (!pa_parse_number (&s
, 0))
1813 CHECK_FIELD (num
, 3, 0, 1);
1814 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 14);
1816 /* Handle a 3 bit space identifier at 18. */
1818 if (!pa_parse_number (&s
, 0))
1821 CHECK_FIELD (num
, 7, 0, 1);
1822 opcode
|= re_assemble_3 (num
);
1825 /* Handle all completers. */
1830 /* Handle a completer for an indexing load or store. */
1837 while (*s
== ',' && i
< 2)
1840 if (strncasecmp (s
, "sm", 2) == 0)
1847 else if (strncasecmp (s
, "m", 1) == 0)
1849 else if ((strncasecmp (s
, "s ", 2) == 0)
1850 || (strncasecmp (s
, "s,", 2) == 0))
1852 /* When in strict mode this is a match failure. */
1859 as_bad (_("Invalid Indexed Load Completer."));
1864 as_bad (_("Invalid Indexed Load Completer Syntax."));
1866 INSERT_FIELD_AND_CONTINUE (opcode
, uu
, 13);
1869 /* Handle a short load/store completer. */
1882 if (strncasecmp (s
, "ma", 2) == 0)
1888 else if (strncasecmp (s
, "mb", 2) == 0)
1895 /* When in strict mode, pass through for cache op. */
1896 if (!found
&& strict
)
1901 as_bad (_("Invalid Short Load/Store Completer."));
1905 /* If we did not get a ma/mb completer, then we do not
1906 consider this a positive match for 'ce'. */
1907 else if (*args
== 'e')
1910 /* 'J', 'm', 'M' and 'q' are the same, except for where they
1911 encode the before/after field. */
1912 if (*args
== 'm' || *args
== 'M')
1915 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
1917 else if (*args
== 'q')
1920 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
1922 else if (*args
== 'J')
1924 /* M bit is explicit in the major opcode. */
1925 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
1927 else if (*args
== 'e')
1929 /* Stash the ma/mb flag temporarily in the
1930 instruction. We will use (and remove it)
1931 later when handling 'J', 'K', '<' & '>'. */
1937 /* Handle a stbys completer. */
1944 while (*s
== ',' && i
< 2)
1947 if (strncasecmp (s
, "m", 1) == 0)
1949 else if ((strncasecmp (s
, "b ", 2) == 0)
1950 || (strncasecmp (s
, "b,", 2) == 0))
1952 else if (strncasecmp (s
, "e", 1) == 0)
1954 /* When in strict mode this is a match failure. */
1961 as_bad (_("Invalid Store Bytes Short Completer"));
1966 as_bad (_("Invalid Store Bytes Short Completer"));
1968 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
1971 /* Handle load cache hint completer. */
1974 if (!strncmp (s
, ",sl", 3))
1979 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1981 /* Handle store cache hint completer. */
1984 if (!strncmp (s
, ",sl", 3))
1989 else if (!strncmp (s
, ",bc", 3))
1994 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1996 /* Handle load and clear cache hint completer. */
1999 if (!strncmp (s
, ",co", 3))
2004 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
2006 /* Handle load ordering completer. */
2008 if (strncmp (s
, ",o", 2) != 0)
2013 /* Handle a branch gate completer. */
2015 if (strncasecmp (s
, ",gate", 5) != 0)
2020 /* Handle a branch link and push completer. */
2022 if (strncasecmp (s
, ",l,push", 7) != 0)
2027 /* Handle a branch link completer. */
2029 if (strncasecmp (s
, ",l", 2) != 0)
2034 /* Handle a branch pop completer. */
2036 if (strncasecmp (s
, ",pop", 4) != 0)
2041 /* Handle a local processor completer. */
2043 if (strncasecmp (s
, ",l", 2) != 0)
2048 /* Handle a PROBE read/write completer. */
2051 if (!strncasecmp (s
, ",w", 2))
2056 else if (!strncasecmp (s
, ",r", 2))
2062 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2064 /* Handle MFCTL wide completer. */
2066 if (strncasecmp (s
, ",w", 2) != 0)
2071 /* Handle an RFI restore completer. */
2074 if (!strncasecmp (s
, ",r", 2))
2080 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
2082 /* Handle a system control completer. */
2084 if (*s
== ',' && (*(s
+ 1) == 'm' || *(s
+ 1) == 'M'))
2092 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
2094 /* Handle intermediate/final completer for DCOR. */
2097 if (!strncasecmp (s
, ",i", 2))
2103 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2105 /* Handle zero/sign extension completer. */
2108 if (!strncasecmp (s
, ",z", 2))
2114 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
2116 /* Handle add completer. */
2119 if (!strncasecmp (s
, ",l", 2))
2124 else if (!strncasecmp (s
, ",tsv", 4))
2130 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
2132 /* Handle 64 bit carry for ADD. */
2135 if (!strncasecmp (s
, ",dc,tsv", 7) ||
2136 !strncasecmp (s
, ",tsv,dc", 7))
2141 else if (!strncasecmp (s
, ",dc", 3))
2149 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2151 /* Handle 32 bit carry for ADD. */
2154 if (!strncasecmp (s
, ",c,tsv", 6) ||
2155 !strncasecmp (s
, ",tsv,c", 6))
2160 else if (!strncasecmp (s
, ",c", 2))
2168 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2170 /* Handle trap on signed overflow. */
2173 if (!strncasecmp (s
, ",tsv", 4))
2179 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2181 /* Handle trap on condition and overflow. */
2184 if (!strncasecmp (s
, ",tc,tsv", 7) ||
2185 !strncasecmp (s
, ",tsv,tc", 7))
2190 else if (!strncasecmp (s
, ",tc", 3))
2198 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2200 /* Handle 64 bit borrow for SUB. */
2203 if (!strncasecmp (s
, ",db,tsv", 7) ||
2204 !strncasecmp (s
, ",tsv,db", 7))
2209 else if (!strncasecmp (s
, ",db", 3))
2217 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2219 /* Handle 32 bit borrow for SUB. */
2222 if (!strncasecmp (s
, ",b,tsv", 6) ||
2223 !strncasecmp (s
, ",tsv,b", 6))
2228 else if (!strncasecmp (s
, ",b", 2))
2236 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2238 /* Handle trap condition completer for UADDCM. */
2241 if (!strncasecmp (s
, ",tc", 3))
2247 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2249 /* Handle signed/unsigned at 21. */
2253 if (strncasecmp (s
, ",s", 2) == 0)
2258 else if (strncasecmp (s
, ",u", 2) == 0)
2264 INSERT_FIELD_AND_CONTINUE (opcode
, sign
, 10);
2267 /* Handle left/right combination at 17:18. */
2277 as_bad (_("Invalid left/right combination completer"));
2280 INSERT_FIELD_AND_CONTINUE (opcode
, lr
, 13);
2283 as_bad (_("Invalid left/right combination completer"));
2286 /* Handle saturation at 24:25. */
2290 if (strncasecmp (s
, ",ss", 3) == 0)
2295 else if (strncasecmp (s
, ",us", 3) == 0)
2301 INSERT_FIELD_AND_CONTINUE (opcode
, sat
, 6);
2304 /* Handle permutation completer. */
2332 as_bad (_("Invalid permutation completer"));
2334 opcode
|= perm
<< permloc
[i
];
2339 as_bad (_("Invalid permutation completer"));
2347 /* Handle all conditions. */
2353 /* Handle FP compare conditions. */
2355 cond
= pa_parse_fp_cmp_cond (&s
);
2356 INSERT_FIELD_AND_CONTINUE (opcode
, cond
, 0);
2358 /* Handle an add condition. */
2367 /* 64 bit conditions. */
2379 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2383 if (strcmp (name
, "=") == 0)
2385 else if (strcmp (name
, "<") == 0)
2387 else if (strcmp (name
, "<=") == 0)
2389 else if (strcasecmp (name
, "nuv") == 0)
2391 else if (strcasecmp (name
, "znv") == 0)
2393 else if (strcasecmp (name
, "sv") == 0)
2395 else if (strcasecmp (name
, "od") == 0)
2397 else if (strcasecmp (name
, "tr") == 0)
2402 else if (strcmp (name
, "<>") == 0)
2407 else if (strcmp (name
, ">=") == 0)
2412 else if (strcmp (name
, ">") == 0)
2417 else if (strcasecmp (name
, "uv") == 0)
2422 else if (strcasecmp (name
, "vnz") == 0)
2427 else if (strcasecmp (name
, "nsv") == 0)
2432 else if (strcasecmp (name
, "ev") == 0)
2437 /* ",*" is a valid condition. */
2438 else if (*args
== 'a' || *name
)
2439 as_bad (_("Invalid Add Condition: %s"), name
);
2442 opcode
|= cmpltr
<< 13;
2443 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2445 /* Handle non-negated add and branch condition. */
2447 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
2450 as_bad (_("Invalid Add and Branch Condition"));
2453 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2455 /* Handle 64 bit wide-mode add and branch condition. */
2457 cmpltr
= pa_parse_addb_64_cmpltr (&s
);
2460 as_bad (_("Invalid Add and Branch Condition"));
2465 /* Negated condition requires an opcode change. */
2466 opcode
|= (cmpltr
& 8) << 24;
2468 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
2470 /* Handle a negated or non-negated add and branch
2474 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
2478 cmpltr
= pa_parse_neg_add_cmpltr (&s
);
2481 as_bad (_("Invalid Compare/Subtract Condition"));
2486 /* Negated condition requires an opcode change. */
2490 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2492 /* Handle branch on bit conditions. */
2510 if (strncmp (s
, "<", 1) == 0)
2515 else if (strncmp (s
, ">=", 2) == 0)
2521 as_bad (_("Invalid Bit Branch Condition: %c"), *s
);
2523 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 15);
2525 /* Handle a compare/subtract condition. */
2534 /* 64 bit conditions. */
2546 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2550 if (strcmp (name
, "=") == 0)
2552 else if (strcmp (name
, "<") == 0)
2554 else if (strcmp (name
, "<=") == 0)
2556 else if (strcasecmp (name
, "<<") == 0)
2558 else if (strcasecmp (name
, "<<=") == 0)
2560 else if (strcasecmp (name
, "sv") == 0)
2562 else if (strcasecmp (name
, "od") == 0)
2564 else if (strcasecmp (name
, "tr") == 0)
2569 else if (strcmp (name
, "<>") == 0)
2574 else if (strcmp (name
, ">=") == 0)
2579 else if (strcmp (name
, ">") == 0)
2584 else if (strcasecmp (name
, ">>=") == 0)
2589 else if (strcasecmp (name
, ">>") == 0)
2594 else if (strcasecmp (name
, "nsv") == 0)
2599 else if (strcasecmp (name
, "ev") == 0)
2604 /* ",*" is a valid condition. */
2605 else if (*args
!= 'S' || *name
)
2606 as_bad (_("Invalid Compare/Subtract Condition: %s"),
2610 opcode
|= cmpltr
<< 13;
2611 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2613 /* Handle a non-negated compare condition. */
2615 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
2618 as_bad (_("Invalid Compare/Subtract Condition"));
2621 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2623 /* Handle a 32 bit compare and branch condition. */
2626 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
2630 cmpltr
= pa_parse_neg_cmpsub_cmpltr (&s
);
2633 as_bad (_("Invalid Compare and Branch Condition"));
2638 /* Negated condition requires an opcode change. */
2643 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2645 /* Handle a 64 bit compare and branch condition. */
2647 cmpltr
= pa_parse_cmpb_64_cmpltr (&s
);
2650 /* Negated condition requires an opcode change. */
2651 opcode
|= (cmpltr
& 8) << 26;
2654 /* Not a 64 bit cond. Give 32 bit a chance. */
2657 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
2659 /* Handle a 64 bit cmpib condition. */
2661 cmpltr
= pa_parse_cmpib_64_cmpltr (&s
);
2663 /* Not a 64 bit cond. Give 32 bit a chance. */
2666 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2668 /* Handle a logical instruction condition. */
2677 /* 64 bit conditions. */
2689 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2694 if (strcmp (name
, "=") == 0)
2696 else if (strcmp (name
, "<") == 0)
2698 else if (strcmp (name
, "<=") == 0)
2700 else if (strcasecmp (name
, "od") == 0)
2702 else if (strcasecmp (name
, "tr") == 0)
2707 else if (strcmp (name
, "<>") == 0)
2712 else if (strcmp (name
, ">=") == 0)
2717 else if (strcmp (name
, ">") == 0)
2722 else if (strcasecmp (name
, "ev") == 0)
2727 /* ",*" is a valid condition. */
2728 else if (*args
!= 'L' || *name
)
2729 as_bad (_("Invalid Logical Instruction Condition."));
2732 opcode
|= cmpltr
<< 13;
2733 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2735 /* Handle a shift/extract/deposit condition. */
2744 /* 64 bit conditions. */
2756 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2760 if (strcmp (name
, "=") == 0)
2762 else if (strcmp (name
, "<") == 0)
2764 else if (strcasecmp (name
, "od") == 0)
2766 else if (strcasecmp (name
, "tr") == 0)
2768 else if (strcmp (name
, "<>") == 0)
2770 else if (strcmp (name
, ">=") == 0)
2772 else if (strcasecmp (name
, "ev") == 0)
2774 /* Handle movb,n. Put things back the way they were.
2775 This includes moving s back to where it started. */
2776 else if (strcasecmp (name
, "n") == 0 && *args
== 'y')
2782 /* ",*" is a valid condition. */
2783 else if (*args
!= 'X' || *name
)
2784 as_bad (_("Invalid Shift/Extract/Deposit Condition."));
2787 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2789 /* Handle a unit instruction condition. */
2798 /* 64 bit conditions. */
2809 if (strncasecmp (s
, "sbz", 3) == 0)
2814 else if (strncasecmp (s
, "shz", 3) == 0)
2819 else if (strncasecmp (s
, "sdc", 3) == 0)
2824 else if (strncasecmp (s
, "sbc", 3) == 0)
2829 else if (strncasecmp (s
, "shc", 3) == 0)
2834 else if (strncasecmp (s
, "tr", 2) == 0)
2840 else if (strncasecmp (s
, "nbz", 3) == 0)
2846 else if (strncasecmp (s
, "nhz", 3) == 0)
2852 else if (strncasecmp (s
, "ndc", 3) == 0)
2858 else if (strncasecmp (s
, "nbc", 3) == 0)
2864 else if (strncasecmp (s
, "nhc", 3) == 0)
2870 else if (strncasecmp (s
, "swz", 3) == 0)
2876 else if (strncasecmp (s
, "swc", 3) == 0)
2882 else if (strncasecmp (s
, "nwz", 3) == 0)
2888 else if (strncasecmp (s
, "nwc", 3) == 0)
2894 /* ",*" is a valid condition. */
2895 else if (*args
!= 'U' || (*s
!= ' ' && *s
!= '\t'))
2896 as_bad (_("Invalid Unit Instruction Condition."));
2898 opcode
|= cmpltr
<< 13;
2899 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2907 /* Handle a nullification completer for branch instructions. */
2909 nullif
= pa_parse_nullif (&s
);
2910 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 1);
2912 /* Handle a nullification completer for copr and spop insns. */
2914 nullif
= pa_parse_nullif (&s
);
2915 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 5);
2917 /* Handle ,%r2 completer for new syntax branches. */
2919 if (*s
== ',' && strncasecmp (s
+ 1, "%r2", 3) == 0)
2921 else if (*s
== ',' && strncasecmp (s
+ 1, "%rp", 3) == 0)
2927 /* Handle 3 bit entry into the fp compare array. Valid values
2928 are 0..6 inclusive. */
2932 if (the_insn
.exp
.X_op
== O_constant
)
2934 num
= evaluate_absolute (&the_insn
);
2935 CHECK_FIELD (num
, 6, 0, 0);
2937 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
2942 /* Handle 3 bit entry into the fp compare array. Valid values
2943 are 0..6 inclusive. */
2946 if (the_insn
.exp
.X_op
== O_constant
)
2949 num
= evaluate_absolute (&the_insn
);
2950 CHECK_FIELD (num
, 6, 0, 0);
2951 num
= (num
+ 1) ^ 1;
2952 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
2957 /* Handle graphics test completers for ftest */
2960 num
= pa_parse_ftest_gfx_completer (&s
);
2961 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2964 /* Handle a 11 bit immediate at 31. */
2966 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2969 if (the_insn
.exp
.X_op
== O_constant
)
2971 num
= evaluate_absolute (&the_insn
);
2972 CHECK_FIELD (num
, 1023, -1024, 0);
2973 num
= low_sign_unext (num
, 11);
2974 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2978 if (is_DP_relative (the_insn
.exp
))
2979 the_insn
.reloc
= R_HPPA_GOTOFF
;
2980 else if (is_PC_relative (the_insn
.exp
))
2981 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
2983 the_insn
.reloc
= R_HPPA
;
2984 the_insn
.format
= 11;
2988 /* Handle a 14 bit immediate at 31. */
2990 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2993 if (the_insn
.exp
.X_op
== O_constant
)
2997 /* XXX the completer stored away tidbits of information
2998 for us to extract. We need a cleaner way to do this.
2999 Now that we have lots of letters again, it would be
3000 good to rethink this. */
3003 num
= evaluate_absolute (&the_insn
);
3004 if (mb
!= (num
< 0))
3006 CHECK_FIELD (num
, 8191, -8192, 0);
3007 num
= low_sign_unext (num
, 14);
3008 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3012 /* Handle a 14 bit immediate at 31. */
3014 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3017 if (the_insn
.exp
.X_op
== O_constant
)
3023 num
= evaluate_absolute (&the_insn
);
3024 if (mb
== (num
< 0))
3028 CHECK_FIELD (num
, 8191, -8192, 0);
3029 num
= low_sign_unext (num
, 14);
3030 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3034 /* Handle a 16 bit immediate at 31. */
3036 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3039 if (the_insn
.exp
.X_op
== O_constant
)
3045 num
= evaluate_absolute (&the_insn
);
3046 if (mb
!= (num
< 0))
3048 CHECK_FIELD (num
, 32767, -32768, 0);
3049 num
= re_assemble_16 (num
);
3050 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3054 /* Handle a 16 bit immediate at 31. */
3056 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3059 if (the_insn
.exp
.X_op
== O_constant
)
3065 num
= evaluate_absolute (&the_insn
);
3066 if (mb
== (num
< 0))
3070 CHECK_FIELD (num
, 32767, -32768, 0);
3071 num
= re_assemble_16 (num
);
3072 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3076 /* Handle 14 bit immediate, shifted left three times. */
3078 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3081 if (the_insn
.exp
.X_op
== O_constant
)
3083 num
= evaluate_absolute (&the_insn
);
3086 CHECK_FIELD (num
, 8191, -8192, 0);
3091 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 4);
3095 if (is_DP_relative (the_insn
.exp
))
3096 the_insn
.reloc
= R_HPPA_GOTOFF
;
3097 else if (is_PC_relative (the_insn
.exp
))
3098 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3100 the_insn
.reloc
= R_HPPA
;
3101 the_insn
.format
= 14;
3106 /* Handle 14 bit immediate, shifted left twice. */
3108 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3111 if (the_insn
.exp
.X_op
== O_constant
)
3113 num
= evaluate_absolute (&the_insn
);
3116 CHECK_FIELD (num
, 8191, -8192, 0);
3121 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
3125 if (is_DP_relative (the_insn
.exp
))
3126 the_insn
.reloc
= R_HPPA_GOTOFF
;
3127 else if (is_PC_relative (the_insn
.exp
))
3128 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3130 the_insn
.reloc
= R_HPPA
;
3131 the_insn
.format
= 14;
3135 /* Handle a 14 bit immediate at 31. */
3137 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3140 if (the_insn
.exp
.X_op
== O_constant
)
3142 num
= evaluate_absolute (&the_insn
);
3143 CHECK_FIELD (num
, 8191, -8192, 0);
3144 num
= low_sign_unext (num
, 14);
3145 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3149 if (is_DP_relative (the_insn
.exp
))
3150 the_insn
.reloc
= R_HPPA_GOTOFF
;
3151 else if (is_PC_relative (the_insn
.exp
))
3152 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3154 the_insn
.reloc
= R_HPPA
;
3155 the_insn
.format
= 14;
3159 /* Handle a 21 bit immediate at 31. */
3161 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3164 if (the_insn
.exp
.X_op
== O_constant
)
3166 num
= evaluate_absolute (&the_insn
);
3167 CHECK_FIELD (num
>> 11, 1048575, -1048576, 0);
3168 opcode
|= re_assemble_21 (num
);
3173 if (is_DP_relative (the_insn
.exp
))
3174 the_insn
.reloc
= R_HPPA_GOTOFF
;
3175 else if (is_PC_relative (the_insn
.exp
))
3176 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3178 the_insn
.reloc
= R_HPPA
;
3179 the_insn
.format
= 21;
3183 /* Handle a 16 bit immediate at 31 (PA 2.0 wide mode only). */
3185 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3188 if (the_insn
.exp
.X_op
== O_constant
)
3190 num
= evaluate_absolute (&the_insn
);
3191 CHECK_FIELD (num
, 32767, -32768, 0);
3192 opcode
|= re_assemble_16 (num
);
3197 /* ??? Is this valid for wide mode? */
3198 if (is_DP_relative (the_insn
.exp
))
3199 the_insn
.reloc
= R_HPPA_GOTOFF
;
3200 else if (is_PC_relative (the_insn
.exp
))
3201 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3203 the_insn
.reloc
= R_HPPA
;
3204 the_insn
.format
= 14;
3208 /* Handle a word-aligned 16-bit imm. at 31 (PA2.0 wide). */
3210 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3213 if (the_insn
.exp
.X_op
== O_constant
)
3215 num
= evaluate_absolute (&the_insn
);
3216 CHECK_FIELD (num
, 32767, -32768, 0);
3217 CHECK_ALIGN (num
, 4, 0);
3218 opcode
|= re_assemble_16 (num
);
3223 /* ??? Is this valid for wide mode? */
3224 if (is_DP_relative (the_insn
.exp
))
3225 the_insn
.reloc
= R_HPPA_GOTOFF
;
3226 else if (is_PC_relative (the_insn
.exp
))
3227 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3229 the_insn
.reloc
= R_HPPA
;
3230 the_insn
.format
= 14;
3234 /* Handle a dword-aligned 16-bit imm. at 31 (PA2.0 wide). */
3236 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3239 if (the_insn
.exp
.X_op
== O_constant
)
3241 num
= evaluate_absolute (&the_insn
);
3242 CHECK_FIELD (num
, 32767, -32768, 0);
3243 CHECK_ALIGN (num
, 8, 0);
3244 opcode
|= re_assemble_16 (num
);
3249 /* ??? Is this valid for wide mode? */
3250 if (is_DP_relative (the_insn
.exp
))
3251 the_insn
.reloc
= R_HPPA_GOTOFF
;
3252 else if (is_PC_relative (the_insn
.exp
))
3253 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3255 the_insn
.reloc
= R_HPPA
;
3256 the_insn
.format
= 14;
3260 /* Handle a 12 bit branch displacement. */
3262 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3266 if (!the_insn
.exp
.X_add_symbol
3267 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3270 num
= evaluate_absolute (&the_insn
);
3273 as_bad (_("Branch to unaligned address"));
3276 if (the_insn
.exp
.X_add_symbol
)
3278 CHECK_FIELD (num
, 8191, -8192, 0);
3279 opcode
|= re_assemble_12 (num
>> 2);
3284 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3285 the_insn
.format
= 12;
3286 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3287 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3292 /* Handle a 17 bit branch displacement. */
3294 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3298 if (!the_insn
.exp
.X_add_symbol
3299 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3302 num
= evaluate_absolute (&the_insn
);
3305 as_bad (_("Branch to unaligned address"));
3308 if (the_insn
.exp
.X_add_symbol
)
3310 CHECK_FIELD (num
, 262143, -262144, 0);
3311 opcode
|= re_assemble_17 (num
>> 2);
3316 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3317 the_insn
.format
= 17;
3318 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3319 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3323 /* Handle a 22 bit branch displacement. */
3325 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3329 if (!the_insn
.exp
.X_add_symbol
3330 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3333 num
= evaluate_absolute (&the_insn
);
3336 as_bad (_("Branch to unaligned address"));
3339 if (the_insn
.exp
.X_add_symbol
)
3341 CHECK_FIELD (num
, 8388607, -8388608, 0);
3342 opcode
|= re_assemble_22 (num
>> 2);
3346 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3347 the_insn
.format
= 22;
3348 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3349 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3353 /* Handle an absolute 17 bit branch target. */
3355 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3359 if (!the_insn
.exp
.X_add_symbol
3360 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3363 num
= evaluate_absolute (&the_insn
);
3366 as_bad (_("Branch to unaligned address"));
3369 if (the_insn
.exp
.X_add_symbol
)
3371 CHECK_FIELD (num
, 262143, -262144, 0);
3372 opcode
|= re_assemble_17 (num
>> 2);
3377 the_insn
.reloc
= R_HPPA_ABS_CALL
;
3378 the_insn
.format
= 17;
3379 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3380 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3384 /* Handle '%r1' implicit operand of addil instruction. */
3386 if (*s
== ',' && *(s
+ 1) == '%' && *(s
+ 3) == '1'
3387 && (*(s
+ 2) == 'r' || *(s
+ 2) == 'R'))
3395 /* Handle '%sr0,%r31' implicit operand of be,l instruction. */
3397 if (strncasecmp (s
, "%sr0,%r31", 9) != 0)
3402 /* Handle immediate value of 0 for ordered load/store instructions. */
3409 /* Handle a 2 bit shift count at 25. */
3411 num
= pa_get_absolute_expression (&the_insn
, &s
);
3412 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3415 CHECK_FIELD (num
, 3, 1, strict
);
3416 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3418 /* Handle a 4 bit shift count at 25. */
3420 num
= pa_get_absolute_expression (&the_insn
, &s
);
3421 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3424 CHECK_FIELD (num
, 15, 0, strict
);
3425 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3427 /* Handle a 5 bit shift count at 26. */
3429 num
= pa_get_absolute_expression (&the_insn
, &s
);
3430 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3433 CHECK_FIELD (num
, 31, 0, strict
);
3434 INSERT_FIELD_AND_CONTINUE (opcode
, 31 - num
, 5);
3436 /* Handle a 6 bit shift count at 20,22:26. */
3438 num
= pa_get_absolute_expression (&the_insn
, &s
);
3439 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3442 CHECK_FIELD (num
, 63, 0, strict
);
3444 opcode
|= (num
& 0x20) << 6;
3445 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
3447 /* Handle a 6 bit field length at 23,27:31. */
3450 num
= pa_get_absolute_expression (&the_insn
, &s
);
3451 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3454 CHECK_FIELD (num
, 64, 1, strict
);
3456 opcode
|= (num
& 0x20) << 3;
3457 num
= 31 - (num
& 0x1f);
3458 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3460 /* Handle a 6 bit field length at 19,27:31. */
3462 num
= pa_get_absolute_expression (&the_insn
, &s
);
3463 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3466 CHECK_FIELD (num
, 64, 1, strict
);
3468 opcode
|= (num
& 0x20) << 7;
3469 num
= 31 - (num
& 0x1f);
3470 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3472 /* Handle a 5 bit bit position at 26. */
3474 num
= pa_get_absolute_expression (&the_insn
, &s
);
3475 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3478 CHECK_FIELD (num
, 31, 0, strict
);
3479 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 5);
3481 /* Handle a 6 bit bit position at 20,22:26. */
3483 num
= pa_get_absolute_expression (&the_insn
, &s
);
3484 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3487 CHECK_FIELD (num
, 63, 0, strict
);
3488 opcode
|= (num
& 0x20) << 6;
3489 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
3491 /* Handle a 5 bit immediate at 10 with 'd' as the complement
3492 of the high bit of the immediate. */
3494 num
= pa_get_absolute_expression (&the_insn
, &s
);
3495 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3498 CHECK_FIELD (num
, 63, 0, strict
);
3502 opcode
|= (1 << 13);
3503 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 21);
3505 /* Handle a 5 bit immediate at 10. */
3507 num
= pa_get_absolute_expression (&the_insn
, &s
);
3508 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3511 CHECK_FIELD (num
, 31, 0, strict
);
3512 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3514 /* Handle a 9 bit immediate at 28. */
3516 num
= pa_get_absolute_expression (&the_insn
, &s
);
3517 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3520 CHECK_FIELD (num
, 511, 1, strict
);
3521 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
3523 /* Handle a 13 bit immediate at 18. */
3525 num
= pa_get_absolute_expression (&the_insn
, &s
);
3526 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3529 CHECK_FIELD (num
, 8191, 0, strict
);
3530 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
3532 /* Handle a 26 bit immediate at 31. */
3534 num
= pa_get_absolute_expression (&the_insn
, &s
);
3535 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3538 CHECK_FIELD (num
, 67108863, 0, strict
);
3539 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3541 /* Handle a 3 bit SFU identifier at 25. */
3544 as_bad (_("Invalid SFU identifier"));
3545 num
= pa_get_absolute_expression (&the_insn
, &s
);
3546 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3549 CHECK_FIELD (num
, 7, 0, strict
);
3550 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3552 /* Handle a 20 bit SOP field for spop0. */
3554 num
= pa_get_absolute_expression (&the_insn
, &s
);
3555 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3558 CHECK_FIELD (num
, 1048575, 0, strict
);
3559 num
= (num
& 0x1f) | ((num
& 0x000fffe0) << 6);
3560 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3562 /* Handle a 15bit SOP field for spop1. */
3564 num
= pa_get_absolute_expression (&the_insn
, &s
);
3565 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3568 CHECK_FIELD (num
, 32767, 0, strict
);
3569 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
3571 /* Handle a 10bit SOP field for spop3. */
3573 num
= pa_get_absolute_expression (&the_insn
, &s
);
3574 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3577 CHECK_FIELD (num
, 1023, 0, strict
);
3578 num
= (num
& 0x1f) | ((num
& 0x000003e0) << 6);
3579 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3581 /* Handle a 15 bit SOP field for spop2. */
3583 num
= pa_get_absolute_expression (&the_insn
, &s
);
3584 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3587 CHECK_FIELD (num
, 32767, 0, strict
);
3588 num
= (num
& 0x1f) | ((num
& 0x00007fe0) << 6);
3589 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3591 /* Handle a 3-bit co-processor ID field. */
3594 as_bad (_("Invalid COPR identifier"));
3595 num
= pa_get_absolute_expression (&the_insn
, &s
);
3596 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3599 CHECK_FIELD (num
, 7, 0, strict
);
3600 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3602 /* Handle a 22bit SOP field for copr. */
3604 num
= pa_get_absolute_expression (&the_insn
, &s
);
3605 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3608 CHECK_FIELD (num
, 4194303, 0, strict
);
3609 num
= (num
& 0x1f) | ((num
& 0x003fffe0) << 4);
3610 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3612 /* Handle a source FP operand format completer. */
3614 if (*s
== ',' && *(s
+1) == 't')
3621 flag
= pa_parse_fp_cnv_format (&s
);
3622 the_insn
.fpof1
= flag
;
3623 if (flag
== W
|| flag
== UW
)
3625 if (flag
== DW
|| flag
== UDW
)
3627 if (flag
== QW
|| flag
== UQW
)
3629 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3631 /* Handle a destination FP operand format completer. */
3633 /* pa_parse_format needs the ',' prefix. */
3635 flag
= pa_parse_fp_cnv_format (&s
);
3636 the_insn
.fpof2
= flag
;
3637 if (flag
== W
|| flag
== UW
)
3639 if (flag
== DW
|| flag
== UDW
)
3641 if (flag
== QW
|| flag
== UQW
)
3643 opcode
|= flag
<< 13;
3644 if (the_insn
.fpof1
== SGL
3645 || the_insn
.fpof1
== DBL
3646 || the_insn
.fpof1
== QUAD
)
3648 if (the_insn
.fpof2
== SGL
3649 || the_insn
.fpof2
== DBL
3650 || the_insn
.fpof2
== QUAD
)
3652 else if (the_insn
.fpof2
== W
3653 || the_insn
.fpof2
== DW
3654 || the_insn
.fpof2
== QW
)
3656 else if (the_insn
.fpof2
== UW
3657 || the_insn
.fpof2
== UDW
3658 || the_insn
.fpof2
== UQW
)
3663 else if (the_insn
.fpof1
== W
3664 || the_insn
.fpof1
== DW
3665 || the_insn
.fpof1
== QW
)
3667 if (the_insn
.fpof2
== SGL
3668 || the_insn
.fpof2
== DBL
3669 || the_insn
.fpof2
== QUAD
)
3674 else if (the_insn
.fpof1
== UW
3675 || the_insn
.fpof1
== UDW
3676 || the_insn
.fpof1
== UQW
)
3678 if (the_insn
.fpof2
== SGL
3679 || the_insn
.fpof2
== DBL
3680 || the_insn
.fpof2
== QUAD
)
3685 flag
|= the_insn
.trunc
;
3686 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 15);
3688 /* Handle a source FP operand format completer. */
3690 flag
= pa_parse_fp_format (&s
);
3691 the_insn
.fpof1
= flag
;
3692 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3694 /* Handle a destination FP operand format completer. */
3696 /* pa_parse_format needs the ',' prefix. */
3698 flag
= pa_parse_fp_format (&s
);
3699 the_insn
.fpof2
= flag
;
3700 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 13);
3702 /* Handle a source FP operand format completer at 20. */
3704 flag
= pa_parse_fp_format (&s
);
3705 the_insn
.fpof1
= flag
;
3706 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3708 /* Handle a floating point operand format at 26.
3709 Only allows single and double precision. */
3711 flag
= pa_parse_fp_format (&s
);
3717 the_insn
.fpof1
= flag
;
3723 as_bad (_("Invalid Floating Point Operand Format."));
3727 /* Handle all floating point registers. */
3731 /* Float target register. */
3733 if (!pa_parse_number (&s
, 3))
3735 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3736 CHECK_FIELD (num
, 31, 0, 0);
3737 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3739 /* Float target register with L/R selection. */
3742 if (!pa_parse_number (&s
, 1))
3744 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3745 CHECK_FIELD (num
, 31, 0, 0);
3748 /* 0x30 opcodes are FP arithmetic operation opcodes
3749 and need to be turned into 0x38 opcodes. This
3750 is not necessary for loads/stores. */
3751 if (need_pa11_opcode ()
3752 && ((opcode
& 0xfc000000) == 0x30000000))
3755 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 6 : 0);
3759 /* Float operand 1. */
3762 if (!pa_parse_number (&s
, 1))
3764 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3765 CHECK_FIELD (num
, 31, 0, 0);
3766 opcode
|= num
<< 21;
3767 if (need_pa11_opcode ())
3769 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
3775 /* Float operand 1 with L/R selection. */
3779 if (!pa_parse_number (&s
, 1))
3781 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3782 CHECK_FIELD (num
, 31, 0, 0);
3783 opcode
|= num
<< 21;
3784 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
3788 /* Float operand 2. */
3791 if (!pa_parse_number (&s
, 1))
3793 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3794 CHECK_FIELD (num
, 31, 0, 0);
3795 opcode
|= num
<< 16;
3796 if (need_pa11_opcode ())
3798 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
3804 /* Float operand 2 with L/R selection. */
3807 if (!pa_parse_number (&s
, 1))
3809 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3810 CHECK_FIELD (num
, 31, 0, 0);
3811 opcode
|= num
<< 16;
3812 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
3816 /* Float operand 3 for fmpyfadd, fmpynfadd. */
3819 if (!pa_parse_number (&s
, 1))
3821 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3822 CHECK_FIELD (num
, 31, 0, 0);
3823 opcode
|= (num
& 0x1c) << 11;
3824 opcode
|= (num
& 0x03) << 9;
3825 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 8 : 0);
3829 /* Float mult operand 1 for fmpyadd, fmpysub */
3832 if (!pa_parse_number (&s
, 1))
3834 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3835 CHECK_FIELD (num
, 31, 0, 0);
3836 if (the_insn
.fpof1
== SGL
)
3840 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3844 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3846 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3849 /* Float mult operand 2 for fmpyadd, fmpysub */
3852 if (!pa_parse_number (&s
, 1))
3854 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3855 CHECK_FIELD (num
, 31, 0, 0);
3856 if (the_insn
.fpof1
== SGL
)
3860 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3864 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3866 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3869 /* Float mult target for fmpyadd, fmpysub */
3872 if (!pa_parse_number (&s
, 1))
3874 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3875 CHECK_FIELD (num
, 31, 0, 0);
3876 if (the_insn
.fpof1
== SGL
)
3880 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3884 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3886 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3889 /* Float add operand 1 for fmpyadd, fmpysub */
3892 if (!pa_parse_number (&s
, 1))
3894 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3895 CHECK_FIELD (num
, 31, 0, 0);
3896 if (the_insn
.fpof1
== SGL
)
3900 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3904 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3906 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3909 /* Float add target for fmpyadd, fmpysub */
3912 if (!pa_parse_number (&s
, 1))
3914 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3915 CHECK_FIELD (num
, 31, 0, 0);
3916 if (the_insn
.fpof1
== SGL
)
3920 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3924 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3926 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
3929 /* Handle L/R register halves like 'x'. */
3933 if (!pa_parse_number (&s
, 1))
3935 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3936 CHECK_FIELD (num
, 31, 0, 0);
3937 opcode
|= num
<< 16;
3938 if (need_pa11_opcode ())
3940 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 1 : 0);
3945 /* Float target register (PA 2.0 wide). */
3947 if (!pa_parse_number (&s
, 3))
3949 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3950 CHECK_FIELD (num
, 31, 0, 0);
3951 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3965 /* Check if the args matched. */
3968 if (&insn
[1] - pa_opcodes
< (int) NUMOPCODES
3969 && !strcmp (insn
->name
, insn
[1].name
))
3977 as_bad (_("Invalid operands %s"), error_message
);
3984 the_insn
.opcode
= opcode
;
3987 /* Turn a string in input_line_pointer into a floating point constant of type
3988 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
3989 emitted is stored in *sizeP . An error message or NULL is returned. */
3991 #define MAX_LITTLENUMS 6
3994 md_atof (type
, litP
, sizeP
)
4000 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
4001 LITTLENUM_TYPE
*wordP
;
4033 return _("Bad call to MD_ATOF()");
4035 t
= atof_ieee (input_line_pointer
, type
, words
);
4037 input_line_pointer
= t
;
4038 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
4039 for (wordP
= words
; prec
--;)
4041 md_number_to_chars (litP
, (valueT
) (*wordP
++), sizeof (LITTLENUM_TYPE
));
4042 litP
+= sizeof (LITTLENUM_TYPE
);
4047 /* Write out big-endian. */
4050 md_number_to_chars (buf
, val
, n
)
4055 number_to_chars_bigendian (buf
, val
, n
);
4058 /* Translate internal representation of relocation info to BFD target
4062 tc_gen_reloc (section
, fixp
)
4067 struct hppa_fix_struct
*hppa_fixp
;
4068 static arelent
*no_relocs
= NULL
;
4075 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
4076 if (fixp
->fx_addsy
== 0)
4079 assert (hppa_fixp
!= 0);
4080 assert (section
!= 0);
4082 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
4084 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4085 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4086 codes
= hppa_gen_reloc_type (stdoutput
,
4088 hppa_fixp
->fx_r_format
,
4089 hppa_fixp
->fx_r_field
,
4090 fixp
->fx_subsy
!= NULL
,
4091 symbol_get_bfdsym (fixp
->fx_addsy
));
4095 as_bad_where (fixp
->fx_file
, fixp
->fx_line
, _("Cannot handle fixup"));
4099 for (n_relocs
= 0; codes
[n_relocs
]; n_relocs
++)
4102 relocs
= (arelent
**) xmalloc (sizeof (arelent
*) * n_relocs
+ 1);
4103 reloc
= (arelent
*) xmalloc (sizeof (arelent
) * n_relocs
);
4104 for (i
= 0; i
< n_relocs
; i
++)
4105 relocs
[i
] = &reloc
[i
];
4107 relocs
[n_relocs
] = NULL
;
4110 switch (fixp
->fx_r_type
)
4113 assert (n_relocs
== 1);
4117 /* Now, do any processing that is dependent on the relocation type. */
4120 case R_PARISC_DLTREL21L
:
4121 case R_PARISC_DLTREL14R
:
4122 case R_PARISC_DLTREL14F
:
4123 case R_PARISC_PLABEL32
:
4124 case R_PARISC_PLABEL21L
:
4125 case R_PARISC_PLABEL14R
:
4126 /* For plabel relocations, the addend of the
4127 relocation should be either 0 (no static link) or 2
4128 (static link required). This adjustment is done in
4129 bfd/elf32-hppa.c:elf32_hppa_relocate_section.
4131 We also slam a zero addend into the DLT relative relocs;
4132 it doesn't make a lot of sense to use any addend since
4133 it gets you a different (eg unknown) DLT entry. */
4137 #ifdef ELF_ARG_RELOC
4138 case R_PARISC_PCREL17R
:
4139 case R_PARISC_PCREL17F
:
4140 case R_PARISC_PCREL17C
:
4141 case R_PARISC_DIR17R
:
4142 case R_PARISC_DIR17F
:
4143 case R_PARISC_PCREL21L
:
4144 case R_PARISC_DIR21L
:
4145 reloc
->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
,
4150 case R_PARISC_DIR32
:
4151 /* Facilitate hand-crafted unwind info. */
4152 if (strcmp (section
->name
, UNWIND_SECTION_NAME
) == 0)
4153 code
= R_PARISC_SEGREL32
;
4157 reloc
->addend
= fixp
->fx_offset
;
4161 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4162 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4163 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
,
4164 (bfd_reloc_code_real_type
) code
);
4165 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4167 assert (reloc
->howto
&& (unsigned int) code
== reloc
->howto
->type
);
4172 /* Walk over reach relocation returned by the BFD backend. */
4173 for (i
= 0; i
< n_relocs
; i
++)
4177 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4178 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4180 bfd_reloc_type_lookup (stdoutput
,
4181 (bfd_reloc_code_real_type
) code
);
4182 relocs
[i
]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4187 /* The only time we ever use a R_COMP2 fixup is for the difference
4188 of two symbols. With that in mind we fill in all four
4189 relocs now and break out of the loop. */
4191 relocs
[0]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4193 bfd_reloc_type_lookup (stdoutput
,
4194 (bfd_reloc_code_real_type
) *codes
[0]);
4195 relocs
[0]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4196 relocs
[0]->addend
= 0;
4197 relocs
[1]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4198 *relocs
[1]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4200 bfd_reloc_type_lookup (stdoutput
,
4201 (bfd_reloc_code_real_type
) *codes
[1]);
4202 relocs
[1]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4203 relocs
[1]->addend
= 0;
4204 relocs
[2]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4205 *relocs
[2]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_subsy
);
4207 bfd_reloc_type_lookup (stdoutput
,
4208 (bfd_reloc_code_real_type
) *codes
[2]);
4209 relocs
[2]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4210 relocs
[2]->addend
= 0;
4211 relocs
[3]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4213 bfd_reloc_type_lookup (stdoutput
,
4214 (bfd_reloc_code_real_type
) *codes
[3]);
4215 relocs
[3]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4216 relocs
[3]->addend
= 0;
4217 relocs
[4]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4219 bfd_reloc_type_lookup (stdoutput
,
4220 (bfd_reloc_code_real_type
) *codes
[4]);
4221 relocs
[4]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4222 relocs
[4]->addend
= 0;
4226 relocs
[i
]->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
, 0);
4232 /* For plabel relocations, the addend of the
4233 relocation should be either 0 (no static link) or 2
4234 (static link required).
4236 FIXME: We always assume no static link!
4238 We also slam a zero addend into the DLT relative relocs;
4239 it doesn't make a lot of sense to use any addend since
4240 it gets you a different (eg unknown) DLT entry. */
4241 relocs
[i
]->addend
= 0;
4256 /* There is no symbol or addend associated with these fixups. */
4257 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4258 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
4259 relocs
[i
]->addend
= 0;
4265 /* There is no symbol associated with these fixups. */
4266 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4267 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
4268 relocs
[i
]->addend
= fixp
->fx_offset
;
4272 relocs
[i
]->addend
= fixp
->fx_offset
;
4282 /* Process any machine dependent frag types. */
4285 md_convert_frag (abfd
, sec
, fragP
)
4286 register bfd
*abfd ATTRIBUTE_UNUSED
;
4287 register asection
*sec ATTRIBUTE_UNUSED
;
4288 register fragS
*fragP
;
4290 unsigned int address
;
4292 if (fragP
->fr_type
== rs_machine_dependent
)
4294 switch ((int) fragP
->fr_subtype
)
4297 fragP
->fr_type
= rs_fill
;
4298 know (fragP
->fr_var
== 1);
4299 know (fragP
->fr_next
);
4300 address
= fragP
->fr_address
+ fragP
->fr_fix
;
4301 if (address
% fragP
->fr_offset
)
4304 fragP
->fr_next
->fr_address
4309 fragP
->fr_offset
= 0;
4315 /* Round up a section size to the appropriate boundary. */
4318 md_section_align (segment
, size
)
4322 int align
= bfd_get_section_alignment (stdoutput
, segment
);
4323 int align2
= (1 << align
) - 1;
4325 return (size
+ align2
) & ~align2
;
4328 /* Return the approximate size of a frag before relaxation has occurred. */
4330 md_estimate_size_before_relax (fragP
, segment
)
4331 register fragS
*fragP
;
4332 asection
*segment ATTRIBUTE_UNUSED
;
4338 while ((fragP
->fr_fix
+ size
) % fragP
->fr_offset
)
4345 # ifdef WARN_COMMENTS
4346 const char *md_shortopts
= "Vc";
4348 const char *md_shortopts
= "V";
4351 # ifdef WARN_COMMENTS
4352 const char *md_shortopts
= "c";
4354 const char *md_shortopts
= "";
4358 struct option md_longopts
[] = {
4359 #ifdef WARN_COMMENTS
4360 {"warn-comment", no_argument
, NULL
, 'c'},
4362 {NULL
, no_argument
, NULL
, 0}
4364 size_t md_longopts_size
= sizeof (md_longopts
);
4367 md_parse_option (c
, arg
)
4368 int c ATTRIBUTE_UNUSED
;
4369 char *arg ATTRIBUTE_UNUSED
;
4378 print_version_id ();
4381 #ifdef WARN_COMMENTS
4392 md_show_usage (stream
)
4393 FILE *stream ATTRIBUTE_UNUSED
;
4396 fprintf (stream
, _("\
4399 #ifdef WARN_COMMENTS
4400 fprintf (stream
, _("\
4401 -c print a warning if a comment is found\n"));
4405 /* We have no need to default values of symbols. */
4408 md_undefined_symbol (name
)
4409 char *name ATTRIBUTE_UNUSED
;
4414 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
4415 #define nonzero_dibits(x) \
4416 ((x) | (((x) & 0x55555555) << 1) | (((x) & 0xAAAAAAAA) >> 1))
4417 #define arg_reloc_stub_needed(CALLER, CALLEE) \
4418 (((CALLER) ^ (CALLEE)) & nonzero_dibits (CALLER) & nonzero_dibits (CALLEE))
4420 #define arg_reloc_stub_needed(CALLER, CALLEE) 0
4423 /* Apply a fixup to an instruction. */
4426 md_apply_fix3 (fixP
, valP
, seg
)
4429 segT seg ATTRIBUTE_UNUSED
;
4432 struct hppa_fix_struct
*hppa_fixP
;
4436 /* SOM uses R_HPPA_ENTRY and R_HPPA_EXIT relocations which can
4437 never be "applied" (they are just markers). Likewise for
4438 R_HPPA_BEGIN_BRTAB and R_HPPA_END_BRTAB. */
4440 if (fixP
->fx_r_type
== R_HPPA_ENTRY
4441 || fixP
->fx_r_type
== R_HPPA_EXIT
4442 || fixP
->fx_r_type
== R_HPPA_BEGIN_BRTAB
4443 || fixP
->fx_r_type
== R_HPPA_END_BRTAB
4444 || fixP
->fx_r_type
== R_HPPA_BEGIN_TRY
)
4447 /* Disgusting. We must set fx_offset ourselves -- R_HPPA_END_TRY
4448 fixups are considered not adjustable, which in turn causes
4449 adjust_reloc_syms to not set fx_offset. Ugh. */
4450 if (fixP
->fx_r_type
== R_HPPA_END_TRY
)
4452 fixP
->fx_offset
= * valP
;
4457 if (fixP
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
4458 || fixP
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
)
4462 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
4465 /* There should have been an HPPA specific fixup associated
4466 with the GAS fixup. */
4467 hppa_fixP
= (struct hppa_fix_struct
*) fixP
->tc_fix_data
;
4468 if (hppa_fixP
== NULL
)
4470 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
4471 _("no hppa_fixup entry for fixup type 0x%x"),
4476 buf
= (unsigned char *) (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
);
4477 insn
= bfd_get_32 (stdoutput
, buf
);
4478 fmt
= bfd_hppa_insn2fmt (stdoutput
, insn
);
4480 /* If there is a symbol associated with this fixup, then it's something
4481 which will need a SOM relocation (except for some PC-relative relocs).
4482 In such cases we should treat the "val" or "addend" as zero since it
4483 will be added in as needed from fx_offset in tc_gen_reloc. */
4484 if ((fixP
->fx_addsy
!= NULL
4485 || fixP
->fx_r_type
== (int) R_HPPA_NONE
)
4490 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
4492 /* These field selectors imply that we do not want an addend. */
4493 else if (hppa_fixP
->fx_r_field
== e_psel
4494 || hppa_fixP
->fx_r_field
== e_rpsel
4495 || hppa_fixP
->fx_r_field
== e_lpsel
4496 || hppa_fixP
->fx_r_field
== e_tsel
4497 || hppa_fixP
->fx_r_field
== e_rtsel
4498 || hppa_fixP
->fx_r_field
== e_ltsel
)
4499 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
4502 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
4504 /* Handle pc-relative exceptions from above. */
4505 if ((fmt
== 12 || fmt
== 17 || fmt
== 22)
4508 && !arg_reloc_stub_needed (symbol_arg_reloc_info (fixP
->fx_addsy
),
4509 hppa_fixP
->fx_arg_reloc
)
4511 && (* valP
- 8 + 8192 < 16384
4512 || (fmt
== 17 && * valP
- 8 + 262144 < 524288)
4513 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
4516 && (* valP
- 8 + 262144 < 524288
4517 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
4519 && !S_IS_EXTERNAL (fixP
->fx_addsy
)
4520 && !S_IS_WEAK (fixP
->fx_addsy
)
4521 && S_GET_SEGMENT (fixP
->fx_addsy
) == hppa_fixP
->segment
4523 && S_GET_SEGMENT (fixP
->fx_subsy
) != hppa_fixP
->segment
))
4525 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
4531 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4532 fixP
->fx_file
, fixP
->fx_line
);
4535 insn
= (insn
& ~ 0x3ff1) | (((val
& 0x1ff8) << 1)
4536 | ((val
& 0x2000) >> 13));
4539 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4540 fixP
->fx_file
, fixP
->fx_line
);
4543 insn
= (insn
& ~ 0x3ff9) | (((val
& 0x1ffc) << 1)
4544 | ((val
& 0x2000) >> 13));
4546 /* Handle all opcodes with the 'j' operand type. */
4548 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4549 fixP
->fx_file
, fixP
->fx_line
);
4552 insn
= ((insn
& ~ 0x3fff) | low_sign_unext (val
, 14));
4555 /* Handle all opcodes with the 'k' operand type. */
4557 CHECK_FIELD_WHERE (new_val
, 1048575, -1048576,
4558 fixP
->fx_file
, fixP
->fx_line
);
4561 insn
= (insn
& ~ 0x1fffff) | re_assemble_21 (val
);
4564 /* Handle all the opcodes with the 'i' operand type. */
4566 CHECK_FIELD_WHERE (new_val
, 1023, -1024,
4567 fixP
->fx_file
, fixP
->fx_line
);
4570 insn
= (insn
& ~ 0x7ff) | low_sign_unext (val
, 11);
4573 /* Handle all the opcodes with the 'w' operand type. */
4575 CHECK_FIELD_WHERE (new_val
- 8, 8191, -8192,
4576 fixP
->fx_file
, fixP
->fx_line
);
4579 insn
= (insn
& ~ 0x1ffd) | re_assemble_12 (val
>> 2);
4582 /* Handle some of the opcodes with the 'W' operand type. */
4585 offsetT distance
= * valP
;
4587 /* If this is an absolute branch (ie no link) with an out of
4588 range target, then we want to complain. */
4589 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
4590 && (insn
& 0xffe00000) == 0xe8000000)
4591 CHECK_FIELD_WHERE (distance
- 8, 262143, -262144,
4592 fixP
->fx_file
, fixP
->fx_line
);
4594 CHECK_FIELD_WHERE (new_val
- 8, 262143, -262144,
4595 fixP
->fx_file
, fixP
->fx_line
);
4598 insn
= (insn
& ~ 0x1f1ffd) | re_assemble_17 (val
>> 2);
4604 offsetT distance
= * valP
;
4606 /* If this is an absolute branch (ie no link) with an out of
4607 range target, then we want to complain. */
4608 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
4609 && (insn
& 0xffe00000) == 0xe8000000)
4610 CHECK_FIELD_WHERE (distance
- 8, 8388607, -8388608,
4611 fixP
->fx_file
, fixP
->fx_line
);
4613 CHECK_FIELD_WHERE (new_val
- 8, 8388607, -8388608,
4614 fixP
->fx_file
, fixP
->fx_line
);
4617 insn
= (insn
& ~ 0x3ff1ffd) | re_assemble_22 (val
>> 2);
4623 insn
= (insn
& ~ 0xfff1) | re_assemble_16 (val
& -8);
4628 insn
= (insn
& ~ 0xfff9) | re_assemble_16 (val
& -4);
4633 insn
= (insn
& ~ 0xffff) | re_assemble_16 (val
);
4641 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
4642 _("Unknown relocation encountered in md_apply_fix."));
4646 /* Insert the relocation. */
4647 bfd_put_32 (stdoutput
, insn
, buf
);
4650 /* Exactly what point is a PC-relative offset relative TO?
4651 On the PA, they're relative to the address of the offset. */
4654 md_pcrel_from (fixP
)
4657 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
4660 /* Return nonzero if the input line pointer is at the end of
4664 is_end_of_statement ()
4666 return ((*input_line_pointer
== '\n')
4667 || (*input_line_pointer
== ';')
4668 || (*input_line_pointer
== '!'));
4671 /* Read a number from S. The number might come in one of many forms,
4672 the most common will be a hex or decimal constant, but it could be
4673 a pre-defined register (Yuk!), or an absolute symbol.
4675 Return 1 on success or 0 on failure. If STRICT, then a missing
4676 register prefix will cause a failure. The number itself is
4677 returned in `pa_number'.
4679 IS_FLOAT indicates that a PA-89 FP register number should be
4680 parsed; A `l' or `r' suffix is checked for if but 2 of IS_FLOAT is
4683 pa_parse_number can not handle negative constants and will fail
4684 horribly if it is passed such a constant. */
4687 pa_parse_number (s
, is_float
)
4697 bfd_boolean have_prefix
;
4699 /* Skip whitespace before the number. */
4700 while (*p
== ' ' || *p
== '\t')
4706 if (!strict
&& ISDIGIT (*p
))
4708 /* Looks like a number. */
4710 if (*p
== '0' && (*(p
+ 1) == 'x' || *(p
+ 1) == 'X'))
4712 /* The number is specified in hex. */
4714 while (ISDIGIT (*p
) || ((*p
>= 'a') && (*p
<= 'f'))
4715 || ((*p
>= 'A') && (*p
<= 'F')))
4718 num
= num
* 16 + *p
- '0';
4719 else if (*p
>= 'a' && *p
<= 'f')
4720 num
= num
* 16 + *p
- 'a' + 10;
4722 num
= num
* 16 + *p
- 'A' + 10;
4728 /* The number is specified in decimal. */
4729 while (ISDIGIT (*p
))
4731 num
= num
* 10 + *p
- '0';
4738 /* Check for a `l' or `r' suffix. */
4741 pa_number
+= FP_REG_BASE
;
4742 if (! (is_float
& 2))
4744 if (IS_R_SELECT (p
))
4746 pa_number
+= FP_REG_RSEL
;
4749 else if (IS_L_SELECT (p
))
4758 /* The number might be a predefined register. */
4763 /* Tege hack: Special case for general registers as the general
4764 code makes a binary search with case translation, and is VERY
4769 if (*p
== 'e' && *(p
+ 1) == 't'
4770 && (*(p
+ 2) == '0' || *(p
+ 2) == '1'))
4773 num
= *p
- '0' + 28;
4781 else if (!ISDIGIT (*p
))
4784 as_bad (_("Undefined register: '%s'."), name
);
4790 num
= num
* 10 + *p
++ - '0';
4791 while (ISDIGIT (*p
));
4796 /* Do a normal register search. */
4797 while (is_part_of_name (c
))
4803 status
= reg_name_search (name
);
4809 as_bad (_("Undefined register: '%s'."), name
);
4819 /* And finally, it could be a symbol in the absolute section which
4820 is effectively a constant, or a register alias symbol. */
4823 while (is_part_of_name (c
))
4829 if ((sym
= symbol_find (name
)) != NULL
)
4831 if (S_GET_SEGMENT (sym
) == reg_section
)
4833 num
= S_GET_VALUE (sym
);
4834 /* Well, we don't really have one, but we do have a
4838 else if (S_GET_SEGMENT (sym
) == &bfd_abs_section
)
4839 num
= S_GET_VALUE (sym
);
4843 as_bad (_("Non-absolute symbol: '%s'."), name
);
4849 /* There is where we'd come for an undefined symbol
4850 or for an empty string. For an empty string we
4851 will return zero. That's a concession made for
4852 compatibility with the braindamaged HP assemblers. */
4858 as_bad (_("Undefined absolute constant: '%s'."), name
);
4867 if (!strict
|| have_prefix
)
4875 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
4877 /* Given NAME, find the register number associated with that name, return
4878 the integer value associated with the given name or -1 on failure. */
4881 reg_name_search (name
)
4884 int middle
, low
, high
;
4888 high
= REG_NAME_CNT
- 1;
4892 middle
= (low
+ high
) / 2;
4893 cmp
= strcasecmp (name
, pre_defined_registers
[middle
].name
);
4899 return pre_defined_registers
[middle
].value
;
4901 while (low
<= high
);
4906 /* Return nonzero if the given INSN and L/R information will require
4907 a new PA-1.1 opcode. */
4912 if ((pa_number
& FP_REG_RSEL
) != 0
4913 && !(the_insn
.fpof1
== DBL
&& the_insn
.fpof2
== DBL
))
4915 /* If this instruction is specific to a particular architecture,
4916 then set a new architecture. */
4917 if (bfd_get_mach (stdoutput
) < pa11
)
4919 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, pa11
))
4920 as_warn (_("could not update architecture and machine"));
4928 /* Parse a condition for a fcmp instruction. Return the numerical
4929 code associated with the condition. */
4932 pa_parse_fp_cmp_cond (s
)
4939 for (i
= 0; i
< 32; i
++)
4941 if (strncasecmp (*s
, fp_cond_map
[i
].string
,
4942 strlen (fp_cond_map
[i
].string
)) == 0)
4944 cond
= fp_cond_map
[i
].cond
;
4945 *s
+= strlen (fp_cond_map
[i
].string
);
4946 /* If not a complete match, back up the input string and
4948 if (**s
!= ' ' && **s
!= '\t')
4950 *s
-= strlen (fp_cond_map
[i
].string
);
4953 while (**s
== ' ' || **s
== '\t')
4959 as_bad (_("Invalid FP Compare Condition: %s"), *s
);
4961 /* Advance over the bogus completer. */
4962 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
4968 /* Parse a graphics test complete for ftest. */
4971 pa_parse_ftest_gfx_completer (s
)
4977 if (strncasecmp (*s
, "acc8", 4) == 0)
4982 else if (strncasecmp (*s
, "acc6", 4) == 0)
4987 else if (strncasecmp (*s
, "acc4", 4) == 0)
4992 else if (strncasecmp (*s
, "acc2", 4) == 0)
4997 else if (strncasecmp (*s
, "acc", 3) == 0)
5002 else if (strncasecmp (*s
, "rej8", 4) == 0)
5007 else if (strncasecmp (*s
, "rej", 3) == 0)
5015 as_bad (_("Invalid FTEST completer: %s"), *s
);
5021 /* Parse an FP operand format completer returning the completer
5024 static fp_operand_format
5025 pa_parse_fp_cnv_format (s
)
5034 if (strncasecmp (*s
, "sgl", 3) == 0)
5039 else if (strncasecmp (*s
, "dbl", 3) == 0)
5044 else if (strncasecmp (*s
, "quad", 4) == 0)
5049 else if (strncasecmp (*s
, "w", 1) == 0)
5054 else if (strncasecmp (*s
, "uw", 2) == 0)
5059 else if (strncasecmp (*s
, "dw", 2) == 0)
5064 else if (strncasecmp (*s
, "udw", 3) == 0)
5069 else if (strncasecmp (*s
, "qw", 2) == 0)
5074 else if (strncasecmp (*s
, "uqw", 3) == 0)
5081 format
= ILLEGAL_FMT
;
5082 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
5089 /* Parse an FP operand format completer returning the completer
5092 static fp_operand_format
5093 pa_parse_fp_format (s
)
5102 if (strncasecmp (*s
, "sgl", 3) == 0)
5107 else if (strncasecmp (*s
, "dbl", 3) == 0)
5112 else if (strncasecmp (*s
, "quad", 4) == 0)
5119 format
= ILLEGAL_FMT
;
5120 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
5127 /* Convert from a selector string into a selector type. */
5130 pa_chk_field_selector (str
)
5133 int middle
, low
, high
;
5137 /* Read past any whitespace. */
5138 /* FIXME: should we read past newlines and formfeeds??? */
5139 while (**str
== ' ' || **str
== '\t' || **str
== '\n' || **str
== '\f')
5142 if ((*str
)[1] == '\'' || (*str
)[1] == '%')
5143 name
[0] = TOLOWER ((*str
)[0]),
5145 else if ((*str
)[2] == '\'' || (*str
)[2] == '%')
5146 name
[0] = TOLOWER ((*str
)[0]),
5147 name
[1] = TOLOWER ((*str
)[1]),
5149 else if ((*str
)[3] == '\'' || (*str
)[3] == '%')
5150 name
[0] = TOLOWER ((*str
)[0]),
5151 name
[1] = TOLOWER ((*str
)[1]),
5152 name
[2] = TOLOWER ((*str
)[2]),
5158 high
= sizeof (selector_table
) / sizeof (struct selector_entry
) - 1;
5162 middle
= (low
+ high
) / 2;
5163 cmp
= strcmp (name
, selector_table
[middle
].prefix
);
5170 *str
+= strlen (name
) + 1;
5172 if (selector_table
[middle
].field_selector
== e_nsel
)
5175 return selector_table
[middle
].field_selector
;
5178 while (low
<= high
);
5183 /* Mark (via expr_end) the end of an expression (I think). FIXME. */
5186 get_expression (str
)
5192 save_in
= input_line_pointer
;
5193 input_line_pointer
= str
;
5194 seg
= expression (&the_insn
.exp
);
5195 if (!(seg
== absolute_section
5196 || seg
== undefined_section
5197 || SEG_NORMAL (seg
)))
5199 as_warn (_("Bad segment in expression."));
5200 expr_end
= input_line_pointer
;
5201 input_line_pointer
= save_in
;
5204 expr_end
= input_line_pointer
;
5205 input_line_pointer
= save_in
;
5209 /* Mark (via expr_end) the end of an absolute expression. FIXME. */
5211 pa_get_absolute_expression (insn
, strp
)
5217 insn
->field_selector
= pa_chk_field_selector (strp
);
5218 save_in
= input_line_pointer
;
5219 input_line_pointer
= *strp
;
5220 expression (&insn
->exp
);
5221 /* This is not perfect, but is a huge improvement over doing nothing.
5223 The PA assembly syntax is ambiguous in a variety of ways. Consider
5224 this string "4 %r5" Is that the number 4 followed by the register
5225 r5, or is that 4 MOD r5?
5227 If we get a modulo expression when looking for an absolute, we try
5228 again cutting off the input string at the first whitespace character. */
5229 if (insn
->exp
.X_op
== O_modulus
)
5234 input_line_pointer
= *strp
;
5236 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
5242 retval
= pa_get_absolute_expression (insn
, strp
);
5244 input_line_pointer
= save_in
;
5246 return evaluate_absolute (insn
);
5248 /* When in strict mode we have a non-match, fix up the pointers
5249 and return to our caller. */
5250 if (insn
->exp
.X_op
!= O_constant
&& strict
)
5252 expr_end
= input_line_pointer
;
5253 input_line_pointer
= save_in
;
5256 if (insn
->exp
.X_op
!= O_constant
)
5258 as_bad (_("Bad segment (should be absolute)."));
5259 expr_end
= input_line_pointer
;
5260 input_line_pointer
= save_in
;
5263 expr_end
= input_line_pointer
;
5264 input_line_pointer
= save_in
;
5265 return evaluate_absolute (insn
);
5268 /* Evaluate an absolute expression EXP which may be modified by
5269 the selector FIELD_SELECTOR. Return the value of the expression. */
5271 evaluate_absolute (insn
)
5276 int field_selector
= insn
->field_selector
;
5279 value
= exp
.X_add_number
;
5281 return hppa_field_adjust (0, value
, field_selector
);
5284 /* Given an argument location specification return the associated
5285 argument location number. */
5288 pa_build_arg_reloc (type_name
)
5292 if (strncasecmp (type_name
, "no", 2) == 0)
5294 if (strncasecmp (type_name
, "gr", 2) == 0)
5296 else if (strncasecmp (type_name
, "fr", 2) == 0)
5298 else if (strncasecmp (type_name
, "fu", 2) == 0)
5301 as_bad (_("Invalid argument location: %s\n"), type_name
);
5306 /* Encode and return an argument relocation specification for
5307 the given register in the location specified by arg_reloc. */
5310 pa_align_arg_reloc (reg
, arg_reloc
)
5312 unsigned int arg_reloc
;
5314 unsigned int new_reloc
;
5316 new_reloc
= arg_reloc
;
5332 as_bad (_("Invalid argument description: %d"), reg
);
5338 /* Parse a PA nullification completer (,n). Return nonzero if the
5339 completer was found; return zero if no completer was found. */
5351 if (strncasecmp (*s
, "n", 1) == 0)
5355 as_bad (_("Invalid Nullification: (%c)"), **s
);
5364 /* Parse a non-negated compare/subtract completer returning the
5365 number (for encoding in instructions) of the given completer. */
5368 pa_parse_nonneg_cmpsub_cmpltr (s
)
5372 char *name
= *s
+ 1;
5381 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5386 if (strcmp (name
, "=") == 0)
5390 else if (strcmp (name
, "<") == 0)
5394 else if (strcmp (name
, "<=") == 0)
5398 else if (strcmp (name
, "<<") == 0)
5402 else if (strcmp (name
, "<<=") == 0)
5406 else if (strcasecmp (name
, "sv") == 0)
5410 else if (strcasecmp (name
, "od") == 0)
5414 /* If we have something like addb,n then there is no condition
5416 else if (strcasecmp (name
, "n") == 0)
5428 /* Reset pointers if this was really a ,n for a branch instruction. */
5435 /* Parse a negated compare/subtract completer returning the
5436 number (for encoding in instructions) of the given completer. */
5439 pa_parse_neg_cmpsub_cmpltr (s
)
5443 char *name
= *s
+ 1;
5452 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5457 if (strcasecmp (name
, "tr") == 0)
5461 else if (strcmp (name
, "<>") == 0)
5465 else if (strcmp (name
, ">=") == 0)
5469 else if (strcmp (name
, ">") == 0)
5473 else if (strcmp (name
, ">>=") == 0)
5477 else if (strcmp (name
, ">>") == 0)
5481 else if (strcasecmp (name
, "nsv") == 0)
5485 else if (strcasecmp (name
, "ev") == 0)
5489 /* If we have something like addb,n then there is no condition
5491 else if (strcasecmp (name
, "n") == 0)
5503 /* Reset pointers if this was really a ,n for a branch instruction. */
5510 /* Parse a 64 bit compare and branch completer returning the number (for
5511 encoding in instructions) of the given completer.
5513 Nonnegated comparisons are returned as 0-7, negated comparisons are
5514 returned as 8-15. */
5517 pa_parse_cmpb_64_cmpltr (s
)
5521 char *name
= *s
+ 1;
5528 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5533 if (strcmp (name
, "*") == 0)
5537 else if (strcmp (name
, "*=") == 0)
5541 else if (strcmp (name
, "*<") == 0)
5545 else if (strcmp (name
, "*<=") == 0)
5549 else if (strcmp (name
, "*<<") == 0)
5553 else if (strcmp (name
, "*<<=") == 0)
5557 else if (strcasecmp (name
, "*sv") == 0)
5561 else if (strcasecmp (name
, "*od") == 0)
5565 else if (strcasecmp (name
, "*tr") == 0)
5569 else if (strcmp (name
, "*<>") == 0)
5573 else if (strcmp (name
, "*>=") == 0)
5577 else if (strcmp (name
, "*>") == 0)
5581 else if (strcmp (name
, "*>>=") == 0)
5585 else if (strcmp (name
, "*>>") == 0)
5589 else if (strcasecmp (name
, "*nsv") == 0)
5593 else if (strcasecmp (name
, "*ev") == 0)
5607 /* Parse a 64 bit compare immediate and branch completer returning the number
5608 (for encoding in instructions) of the given completer. */
5611 pa_parse_cmpib_64_cmpltr (s
)
5615 char *name
= *s
+ 1;
5622 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5627 if (strcmp (name
, "*<<") == 0)
5631 else if (strcmp (name
, "*=") == 0)
5635 else if (strcmp (name
, "*<") == 0)
5639 else if (strcmp (name
, "*<=") == 0)
5643 else if (strcmp (name
, "*>>=") == 0)
5647 else if (strcmp (name
, "*<>") == 0)
5651 else if (strcasecmp (name
, "*>=") == 0)
5655 else if (strcasecmp (name
, "*>") == 0)
5669 /* Parse a non-negated addition completer returning the number
5670 (for encoding in instructions) of the given completer. */
5673 pa_parse_nonneg_add_cmpltr (s
)
5677 char *name
= *s
+ 1;
5686 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5690 if (strcmp (name
, "=") == 0)
5694 else if (strcmp (name
, "<") == 0)
5698 else if (strcmp (name
, "<=") == 0)
5702 else if (strcasecmp (name
, "nuv") == 0)
5706 else if (strcasecmp (name
, "znv") == 0)
5710 else if (strcasecmp (name
, "sv") == 0)
5714 else if (strcasecmp (name
, "od") == 0)
5718 /* If we have something like addb,n then there is no condition
5720 else if (strcasecmp (name
, "n") == 0)
5732 /* Reset pointers if this was really a ,n for a branch instruction. */
5739 /* Parse a negated addition completer returning the number
5740 (for encoding in instructions) of the given completer. */
5743 pa_parse_neg_add_cmpltr (s
)
5747 char *name
= *s
+ 1;
5756 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5760 if (strcasecmp (name
, "tr") == 0)
5764 else if (strcmp (name
, "<>") == 0)
5768 else if (strcmp (name
, ">=") == 0)
5772 else if (strcmp (name
, ">") == 0)
5776 else if (strcasecmp (name
, "uv") == 0)
5780 else if (strcasecmp (name
, "vnz") == 0)
5784 else if (strcasecmp (name
, "nsv") == 0)
5788 else if (strcasecmp (name
, "ev") == 0)
5792 /* If we have something like addb,n then there is no condition
5794 else if (strcasecmp (name
, "n") == 0)
5806 /* Reset pointers if this was really a ,n for a branch instruction. */
5813 /* Parse a 64 bit wide mode add and branch completer returning the number (for
5814 encoding in instructions) of the given completer. */
5817 pa_parse_addb_64_cmpltr (s
)
5821 char *name
= *s
+ 1;
5830 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5834 if (strcmp (name
, "=") == 0)
5838 else if (strcmp (name
, "<") == 0)
5842 else if (strcmp (name
, "<=") == 0)
5846 else if (strcasecmp (name
, "nuv") == 0)
5850 else if (strcasecmp (name
, "*=") == 0)
5854 else if (strcasecmp (name
, "*<") == 0)
5858 else if (strcasecmp (name
, "*<=") == 0)
5862 else if (strcmp (name
, "tr") == 0)
5866 else if (strcmp (name
, "<>") == 0)
5870 else if (strcmp (name
, ">=") == 0)
5874 else if (strcmp (name
, ">") == 0)
5878 else if (strcasecmp (name
, "uv") == 0)
5882 else if (strcasecmp (name
, "*<>") == 0)
5886 else if (strcasecmp (name
, "*>=") == 0)
5890 else if (strcasecmp (name
, "*>") == 0)
5894 /* If we have something like addb,n then there is no condition
5896 else if (strcasecmp (name
, "n") == 0)
5908 /* Reset pointers if this was really a ,n for a branch instruction. */
5916 /* Handle an alignment directive. Special so that we can update the
5917 alignment of the subspace if necessary. */
5922 /* We must have a valid space and subspace. */
5923 pa_check_current_space_and_subspace ();
5925 /* Let the generic gas code do most of the work. */
5926 s_align_bytes (bytes
);
5928 /* If bytes is a power of 2, then update the current subspace's
5929 alignment if necessary. */
5930 if (exact_log2 (bytes
) != -1)
5931 record_alignment (current_subspace
->ssd_seg
, exact_log2 (bytes
));
5935 /* Handle a .BLOCK type pseudo-op. */
5939 int z ATTRIBUTE_UNUSED
;
5943 unsigned int temp_size
;
5947 /* We must have a valid space and subspace. */
5948 pa_check_current_space_and_subspace ();
5951 temp_size
= get_absolute_expression ();
5953 /* Always fill with zeros, that's what the HP assembler does. */
5956 p
= frag_var (rs_fill
, (int) temp_size
, (int) temp_size
,
5957 (relax_substateT
) 0, (symbolS
*) 0, (offsetT
) 1, NULL
);
5958 memset (p
, 0, temp_size
);
5960 /* Convert 2 bytes at a time. */
5962 for (i
= 0; i
< temp_size
; i
+= 2)
5964 md_number_to_chars (p
+ i
,
5966 (int) ((temp_size
- i
) > 2 ? 2 : (temp_size
- i
)));
5969 pa_undefine_label ();
5970 demand_empty_rest_of_line ();
5973 /* Handle a .begin_brtab and .end_brtab pseudo-op. */
5977 int begin ATTRIBUTE_UNUSED
;
5981 /* The BRTAB relocations are only available in SOM (to denote
5982 the beginning and end of branch tables). */
5983 char *where
= frag_more (0);
5985 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5986 NULL
, (offsetT
) 0, NULL
,
5987 0, begin
? R_HPPA_BEGIN_BRTAB
: R_HPPA_END_BRTAB
,
5991 demand_empty_rest_of_line ();
5994 /* Handle a .begin_try and .end_try pseudo-op. */
5998 int begin ATTRIBUTE_UNUSED
;
6002 char *where
= frag_more (0);
6007 /* The TRY relocations are only available in SOM (to denote
6008 the beginning and end of exception handling regions). */
6010 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6011 NULL
, (offsetT
) 0, begin
? NULL
: &exp
,
6012 0, begin
? R_HPPA_BEGIN_TRY
: R_HPPA_END_TRY
,
6016 demand_empty_rest_of_line ();
6019 /* Handle a .CALL pseudo-op. This involves storing away information
6020 about where arguments are to be found so the linker can detect
6021 (and correct) argument location mismatches between caller and callee. */
6025 int unused ATTRIBUTE_UNUSED
;
6028 /* We must have a valid space and subspace. */
6029 pa_check_current_space_and_subspace ();
6032 pa_call_args (&last_call_desc
);
6033 demand_empty_rest_of_line ();
6036 /* Do the dirty work of building a call descriptor which describes
6037 where the caller placed arguments to a function call. */
6040 pa_call_args (call_desc
)
6041 struct call_desc
*call_desc
;
6044 unsigned int temp
, arg_reloc
;
6046 while (!is_end_of_statement ())
6048 name
= input_line_pointer
;
6049 c
= get_symbol_end ();
6050 /* Process a source argument. */
6051 if ((strncasecmp (name
, "argw", 4) == 0))
6053 temp
= atoi (name
+ 4);
6054 p
= input_line_pointer
;
6056 input_line_pointer
++;
6057 name
= input_line_pointer
;
6058 c
= get_symbol_end ();
6059 arg_reloc
= pa_build_arg_reloc (name
);
6060 call_desc
->arg_reloc
|= pa_align_arg_reloc (temp
, arg_reloc
);
6062 /* Process a return value. */
6063 else if ((strncasecmp (name
, "rtnval", 6) == 0))
6065 p
= input_line_pointer
;
6067 input_line_pointer
++;
6068 name
= input_line_pointer
;
6069 c
= get_symbol_end ();
6070 arg_reloc
= pa_build_arg_reloc (name
);
6071 call_desc
->arg_reloc
|= (arg_reloc
& 0x3);
6075 as_bad (_("Invalid .CALL argument: %s"), name
);
6077 p
= input_line_pointer
;
6079 if (!is_end_of_statement ())
6080 input_line_pointer
++;
6084 /* Return TRUE if FRAG1 and FRAG2 are the same. */
6087 is_same_frag (frag1
, frag2
)
6094 else if (frag2
== NULL
)
6096 else if (frag1
== frag2
)
6098 else if (frag2
->fr_type
== rs_fill
&& frag2
->fr_fix
== 0)
6099 return (is_same_frag (frag1
, frag2
->fr_next
));
6105 /* Build an entry in the UNWIND subspace from the given function
6106 attributes in CALL_INFO. This is not needed for SOM as using
6107 R_ENTRY and R_EXIT relocations allow the linker to handle building
6108 of the unwind spaces. */
6111 pa_build_unwind_subspace (call_info
)
6112 struct call_info
*call_info
;
6114 asection
*seg
, *save_seg
;
6115 subsegT save_subseg
;
6116 unsigned int unwind
;
6120 if ((bfd_get_section_flags (stdoutput
, now_seg
)
6121 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
6122 != (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
6125 reloc
= R_PARISC_SEGREL32
;
6127 save_subseg
= now_subseg
;
6128 /* Get into the right seg/subseg. This may involve creating
6129 the seg the first time through. Make sure to have the
6130 old seg/subseg so that we can reset things when we are done. */
6131 seg
= bfd_get_section_by_name (stdoutput
, UNWIND_SECTION_NAME
);
6132 if (seg
== ASEC_NULL
)
6134 seg
= subseg_new (UNWIND_SECTION_NAME
, 0);
6135 bfd_set_section_flags (stdoutput
, seg
,
6136 SEC_READONLY
| SEC_HAS_CONTENTS
6137 | SEC_LOAD
| SEC_RELOC
| SEC_ALLOC
| SEC_DATA
);
6138 bfd_set_section_alignment (stdoutput
, seg
, 2);
6141 subseg_set (seg
, 0);
6143 /* Get some space to hold relocation information for the unwind
6147 /* Relocation info. for start offset of the function. */
6148 md_number_to_chars (p
, 0, 4);
6149 fix_new_hppa (frag_now
, p
- frag_now
->fr_literal
, 4,
6150 call_info
->start_symbol
, (offsetT
) 0,
6151 (expressionS
*) NULL
, 0, reloc
,
6154 /* Relocation info. for end offset of the function.
6156 Because we allow reductions of 32bit relocations for ELF, this will be
6157 reduced to section_sym + offset which avoids putting the temporary
6158 symbol into the symbol table. It (should) end up giving the same
6159 value as call_info->start_symbol + function size once the linker is
6160 finished with its work. */
6161 md_number_to_chars (p
+ 4, 0, 4);
6162 fix_new_hppa (frag_now
, p
+ 4 - frag_now
->fr_literal
, 4,
6163 call_info
->end_symbol
, (offsetT
) 0,
6164 (expressionS
*) NULL
, 0, reloc
,
6167 /* Dump the descriptor. */
6168 unwind
= UNWIND_LOW32 (&call_info
->ci_unwind
.descriptor
);
6169 md_number_to_chars (p
+ 8, unwind
, 4);
6171 unwind
= UNWIND_HIGH32 (&call_info
->ci_unwind
.descriptor
);
6172 md_number_to_chars (p
+ 12, unwind
, 4);
6174 /* Return back to the original segment/subsegment. */
6175 subseg_set (save_seg
, save_subseg
);
6179 /* Process a .CALLINFO pseudo-op. This information is used later
6180 to build unwind descriptors and maybe one day to support
6181 .ENTER and .LEAVE. */
6184 pa_callinfo (unused
)
6185 int unused ATTRIBUTE_UNUSED
;
6191 /* We must have a valid space and subspace. */
6192 pa_check_current_space_and_subspace ();
6195 /* .CALLINFO must appear within a procedure definition. */
6196 if (!within_procedure
)
6197 as_bad (_(".callinfo is not within a procedure definition"));
6199 /* Mark the fact that we found the .CALLINFO for the
6200 current procedure. */
6201 callinfo_found
= TRUE
;
6203 /* Iterate over the .CALLINFO arguments. */
6204 while (!is_end_of_statement ())
6206 name
= input_line_pointer
;
6207 c
= get_symbol_end ();
6208 /* Frame size specification. */
6209 if ((strncasecmp (name
, "frame", 5) == 0))
6211 p
= input_line_pointer
;
6213 input_line_pointer
++;
6214 temp
= get_absolute_expression ();
6215 if ((temp
& 0x3) != 0)
6217 as_bad (_("FRAME parameter must be a multiple of 8: %d\n"), temp
);
6221 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
6222 last_call_info
->ci_unwind
.descriptor
.frame_size
= temp
/ 8;
6225 /* Entry register (GR, GR and SR) specifications. */
6226 else if ((strncasecmp (name
, "entry_gr", 8) == 0))
6228 p
= input_line_pointer
;
6230 input_line_pointer
++;
6231 temp
= get_absolute_expression ();
6232 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
6233 even though %r19 is caller saved. I think this is a bug in
6234 the HP assembler, and we are not going to emulate it. */
6235 if (temp
< 3 || temp
> 18)
6236 as_bad (_("Value for ENTRY_GR must be in the range 3..18\n"));
6237 last_call_info
->ci_unwind
.descriptor
.entry_gr
= temp
- 2;
6239 else if ((strncasecmp (name
, "entry_fr", 8) == 0))
6241 p
= input_line_pointer
;
6243 input_line_pointer
++;
6244 temp
= get_absolute_expression ();
6245 /* Similarly the HP assembler takes 31 as the high bound even
6246 though %fr21 is the last callee saved floating point register. */
6247 if (temp
< 12 || temp
> 21)
6248 as_bad (_("Value for ENTRY_FR must be in the range 12..21\n"));
6249 last_call_info
->ci_unwind
.descriptor
.entry_fr
= temp
- 11;
6251 else if ((strncasecmp (name
, "entry_sr", 8) == 0))
6253 p
= input_line_pointer
;
6255 input_line_pointer
++;
6256 temp
= get_absolute_expression ();
6258 as_bad (_("Value for ENTRY_SR must be 3\n"));
6260 /* Note whether or not this function performs any calls. */
6261 else if ((strncasecmp (name
, "calls", 5) == 0) ||
6262 (strncasecmp (name
, "caller", 6) == 0))
6264 p
= input_line_pointer
;
6267 else if ((strncasecmp (name
, "no_calls", 8) == 0))
6269 p
= input_line_pointer
;
6272 /* Should RP be saved into the stack. */
6273 else if ((strncasecmp (name
, "save_rp", 7) == 0))
6275 p
= input_line_pointer
;
6277 last_call_info
->ci_unwind
.descriptor
.save_rp
= 1;
6279 /* Likewise for SP. */
6280 else if ((strncasecmp (name
, "save_sp", 7) == 0))
6282 p
= input_line_pointer
;
6284 last_call_info
->ci_unwind
.descriptor
.save_sp
= 1;
6286 /* Is this an unwindable procedure. If so mark it so
6287 in the unwind descriptor. */
6288 else if ((strncasecmp (name
, "no_unwind", 9) == 0))
6290 p
= input_line_pointer
;
6292 last_call_info
->ci_unwind
.descriptor
.cannot_unwind
= 1;
6294 /* Is this an interrupt routine. If so mark it in the
6295 unwind descriptor. */
6296 else if ((strncasecmp (name
, "hpux_int", 7) == 0))
6298 p
= input_line_pointer
;
6300 last_call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 1;
6302 /* Is this a millicode routine. "millicode" isn't in my
6303 assembler manual, but my copy is old. The HP assembler
6304 accepts it, and there's a place in the unwind descriptor
6305 to drop the information, so we'll accept it too. */
6306 else if ((strncasecmp (name
, "millicode", 9) == 0))
6308 p
= input_line_pointer
;
6310 last_call_info
->ci_unwind
.descriptor
.millicode
= 1;
6314 as_bad (_("Invalid .CALLINFO argument: %s"), name
);
6315 *input_line_pointer
= c
;
6317 if (!is_end_of_statement ())
6318 input_line_pointer
++;
6321 demand_empty_rest_of_line ();
6324 #if !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD)))
6325 /* Switch to the text space. Like s_text, but delete our
6326 label when finished. */
6329 int unused ATTRIBUTE_UNUSED
;
6332 current_space
= is_defined_space ("$TEXT$");
6334 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6338 pa_undefine_label ();
6341 /* Switch to the data space. As usual delete our label. */
6344 int unused ATTRIBUTE_UNUSED
;
6347 current_space
= is_defined_space ("$PRIVATE$");
6349 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6352 pa_undefine_label ();
6355 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
6356 the .comm pseudo-op has the following symtax:
6358 <label> .comm <length>
6360 where <label> is optional and is a symbol whose address will be the start of
6361 a block of memory <length> bytes long. <length> must be an absolute
6362 expression. <length> bytes will be allocated in the current space
6365 Also note the label may not even be on the same line as the .comm.
6367 This difference in syntax means the colon function will be called
6368 on the symbol before we arrive in pa_comm. colon will set a number
6369 of attributes of the symbol that need to be fixed here. In particular
6370 the value, section pointer, fragment pointer, flags, etc. What
6373 This also makes error detection all but impossible. */
6377 int unused ATTRIBUTE_UNUSED
;
6381 label_symbol_struct
*label_symbol
= pa_get_label ();
6384 symbol
= label_symbol
->lss_label
;
6389 size
= get_absolute_expression ();
6393 symbol_get_bfdsym (symbol
)->flags
|= BSF_OBJECT
;
6394 S_SET_VALUE (symbol
, size
);
6395 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6396 S_SET_EXTERNAL (symbol
);
6398 /* colon() has already set the frag to the current location in the
6399 current subspace; we need to reset the fragment to the zero address
6400 fragment. We also need to reset the segment pointer. */
6401 symbol_set_frag (symbol
, &zero_address_frag
);
6403 demand_empty_rest_of_line ();
6405 #endif /* !(defined (OBJ_ELF) && (defined (TE_LINUX) || defined (TE_NetBSD))) */
6407 /* Process a .END pseudo-op. */
6411 int unused ATTRIBUTE_UNUSED
;
6413 demand_empty_rest_of_line ();
6416 /* Process a .ENTER pseudo-op. This is not supported. */
6419 int unused ATTRIBUTE_UNUSED
;
6422 /* We must have a valid space and subspace. */
6423 pa_check_current_space_and_subspace ();
6426 as_bad (_("The .ENTER pseudo-op is not supported"));
6427 demand_empty_rest_of_line ();
6430 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
6434 int unused ATTRIBUTE_UNUSED
;
6437 /* We must have a valid space and subspace. */
6438 pa_check_current_space_and_subspace ();
6441 if (!within_procedure
)
6442 as_bad (_("Misplaced .entry. Ignored."));
6445 if (!callinfo_found
)
6446 as_bad (_("Missing .callinfo."));
6448 demand_empty_rest_of_line ();
6449 within_entry_exit
= TRUE
;
6452 /* SOM defers building of unwind descriptors until the link phase.
6453 The assembler is responsible for creating an R_ENTRY relocation
6454 to mark the beginning of a region and hold the unwind bits, and
6455 for creating an R_EXIT relocation to mark the end of the region.
6457 FIXME. ELF should be using the same conventions! The problem
6458 is an unwind requires too much relocation space. Hmmm. Maybe
6459 if we split the unwind bits up between the relocations which
6460 denote the entry and exit points. */
6461 if (last_call_info
->start_symbol
!= NULL
)
6466 where
= frag_more (0);
6467 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
6468 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6469 NULL
, (offsetT
) 0, NULL
,
6470 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
6475 /* Silly nonsense for pa_equ. The only half-sensible use for this is
6476 being able to subtract two register symbols that specify a range of
6477 registers, to get the size of the range. */
6478 static int fudge_reg_expressions
;
6481 hppa_force_reg_syms_absolute (resultP
, op
, rightP
)
6482 expressionS
*resultP
;
6483 operatorT op ATTRIBUTE_UNUSED
;
6484 expressionS
*rightP
;
6486 if (fudge_reg_expressions
6487 && rightP
->X_op
== O_register
6488 && resultP
->X_op
== O_register
)
6490 rightP
->X_op
= O_constant
;
6491 resultP
->X_op
= O_constant
;
6493 return 0; /* Continue normal expr handling. */
6496 /* Handle a .EQU pseudo-op. */
6502 label_symbol_struct
*label_symbol
= pa_get_label ();
6507 symbol
= label_symbol
->lss_label
;
6511 if (!pa_parse_number (&input_line_pointer
, 0))
6512 as_bad (_(".REG expression must be a register"));
6513 S_SET_VALUE (symbol
, pa_number
);
6514 S_SET_SEGMENT (symbol
, reg_section
);
6521 fudge_reg_expressions
= 1;
6522 seg
= expression (&exp
);
6523 fudge_reg_expressions
= 0;
6524 if (exp
.X_op
!= O_constant
6525 && exp
.X_op
!= O_register
)
6527 if (exp
.X_op
!= O_absent
)
6528 as_bad (_("bad or irreducible absolute expression; zero assumed"));
6529 exp
.X_add_number
= 0;
6530 seg
= absolute_section
;
6532 S_SET_VALUE (symbol
, (unsigned int) exp
.X_add_number
);
6533 S_SET_SEGMENT (symbol
, seg
);
6539 as_bad (_(".REG must use a label"));
6541 as_bad (_(".EQU must use a label"));
6544 pa_undefine_label ();
6545 demand_empty_rest_of_line ();
6548 /* Helper function. Does processing for the end of a function. This
6549 usually involves creating some relocations or building special
6550 symbols to mark the end of the function. */
6557 where
= frag_more (0);
6560 /* Mark the end of the function, stuff away the location of the frag
6561 for the end of the function, and finally call pa_build_unwind_subspace
6562 to add an entry in the unwind table. */
6563 hppa_elf_mark_end_of_function ();
6564 pa_build_unwind_subspace (last_call_info
);
6566 /* SOM defers building of unwind descriptors until the link phase.
6567 The assembler is responsible for creating an R_ENTRY relocation
6568 to mark the beginning of a region and hold the unwind bits, and
6569 for creating an R_EXIT relocation to mark the end of the region.
6571 FIXME. ELF should be using the same conventions! The problem
6572 is an unwind requires too much relocation space. Hmmm. Maybe
6573 if we split the unwind bits up between the relocations which
6574 denote the entry and exit points. */
6575 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6577 NULL
, 0, R_HPPA_EXIT
, e_fsel
, 0, 0,
6578 UNWIND_HIGH32 (&last_call_info
->ci_unwind
.descriptor
));
6582 /* Process a .EXIT pseudo-op. */
6586 int unused ATTRIBUTE_UNUSED
;
6589 /* We must have a valid space and subspace. */
6590 pa_check_current_space_and_subspace ();
6593 if (!within_procedure
)
6594 as_bad (_(".EXIT must appear within a procedure"));
6597 if (!callinfo_found
)
6598 as_bad (_("Missing .callinfo"));
6601 if (!within_entry_exit
)
6602 as_bad (_("No .ENTRY for this .EXIT"));
6605 within_entry_exit
= FALSE
;
6610 demand_empty_rest_of_line ();
6613 /* Process a .EXPORT directive. This makes functions external
6614 and provides information such as argument relocation entries
6619 int unused ATTRIBUTE_UNUSED
;
6624 name
= input_line_pointer
;
6625 c
= get_symbol_end ();
6626 /* Make sure the given symbol exists. */
6627 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6629 as_bad (_("Cannot define export symbol: %s\n"), name
);
6630 p
= input_line_pointer
;
6632 input_line_pointer
++;
6636 /* OK. Set the external bits and process argument relocations.
6637 For the HP, weak and global are not mutually exclusive.
6638 S_SET_EXTERNAL will not set BSF_GLOBAL if WEAK is set.
6639 Call S_SET_EXTERNAL to get the other processing. Manually
6640 set BSF_GLOBAL when we get back. */
6641 S_SET_EXTERNAL (symbol
);
6642 symbol_get_bfdsym (symbol
)->flags
|= BSF_GLOBAL
;
6643 p
= input_line_pointer
;
6645 if (!is_end_of_statement ())
6647 input_line_pointer
++;
6648 pa_type_args (symbol
, 1);
6652 demand_empty_rest_of_line ();
6655 /* Helper function to process arguments to a .EXPORT pseudo-op. */
6658 pa_type_args (symbolP
, is_export
)
6663 unsigned int temp
, arg_reloc
;
6664 pa_symbol_type type
= SYMBOL_TYPE_UNKNOWN
;
6665 asymbol
*bfdsym
= symbol_get_bfdsym (symbolP
);
6667 if (strncasecmp (input_line_pointer
, "absolute", 8) == 0)
6670 input_line_pointer
+= 8;
6671 bfdsym
->flags
&= ~BSF_FUNCTION
;
6672 S_SET_SEGMENT (symbolP
, bfd_abs_section_ptr
);
6673 type
= SYMBOL_TYPE_ABSOLUTE
;
6675 else if (strncasecmp (input_line_pointer
, "code", 4) == 0)
6677 input_line_pointer
+= 4;
6678 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
6679 instead one should be IMPORTing/EXPORTing ENTRY types.
6681 Complain if one tries to EXPORT a CODE type since that's never
6682 done. Both GCC and HP C still try to IMPORT CODE types, so
6683 silently fix them to be ENTRY types. */
6684 if (S_IS_FUNCTION (symbolP
))
6687 as_tsktsk (_("Using ENTRY rather than CODE in export directive for %s"),
6688 S_GET_NAME (symbolP
));
6690 bfdsym
->flags
|= BSF_FUNCTION
;
6691 type
= SYMBOL_TYPE_ENTRY
;
6695 bfdsym
->flags
&= ~BSF_FUNCTION
;
6696 type
= SYMBOL_TYPE_CODE
;
6699 else if (strncasecmp (input_line_pointer
, "data", 4) == 0)
6701 input_line_pointer
+= 4;
6702 bfdsym
->flags
&= ~BSF_FUNCTION
;
6703 bfdsym
->flags
|= BSF_OBJECT
;
6704 type
= SYMBOL_TYPE_DATA
;
6706 else if ((strncasecmp (input_line_pointer
, "entry", 5) == 0))
6708 input_line_pointer
+= 5;
6709 bfdsym
->flags
|= BSF_FUNCTION
;
6710 type
= SYMBOL_TYPE_ENTRY
;
6712 else if (strncasecmp (input_line_pointer
, "millicode", 9) == 0)
6714 input_line_pointer
+= 9;
6715 bfdsym
->flags
|= BSF_FUNCTION
;
6718 elf_symbol_type
*elfsym
= (elf_symbol_type
*) bfdsym
;
6719 elfsym
->internal_elf_sym
.st_info
=
6720 ELF_ST_INFO (ELF_ST_BIND (elfsym
->internal_elf_sym
.st_info
),
6724 type
= SYMBOL_TYPE_MILLICODE
;
6726 else if (strncasecmp (input_line_pointer
, "plabel", 6) == 0)
6728 input_line_pointer
+= 6;
6729 bfdsym
->flags
&= ~BSF_FUNCTION
;
6730 type
= SYMBOL_TYPE_PLABEL
;
6732 else if (strncasecmp (input_line_pointer
, "pri_prog", 8) == 0)
6734 input_line_pointer
+= 8;
6735 bfdsym
->flags
|= BSF_FUNCTION
;
6736 type
= SYMBOL_TYPE_PRI_PROG
;
6738 else if (strncasecmp (input_line_pointer
, "sec_prog", 8) == 0)
6740 input_line_pointer
+= 8;
6741 bfdsym
->flags
|= BSF_FUNCTION
;
6742 type
= SYMBOL_TYPE_SEC_PROG
;
6745 /* SOM requires much more information about symbol types
6746 than BFD understands. This is how we get this information
6747 to the SOM BFD backend. */
6748 #ifdef obj_set_symbol_type
6749 obj_set_symbol_type (bfdsym
, (int) type
);
6752 /* Now that the type of the exported symbol has been handled,
6753 handle any argument relocation information. */
6754 while (!is_end_of_statement ())
6756 if (*input_line_pointer
== ',')
6757 input_line_pointer
++;
6758 name
= input_line_pointer
;
6759 c
= get_symbol_end ();
6760 /* Argument sources. */
6761 if ((strncasecmp (name
, "argw", 4) == 0))
6763 p
= input_line_pointer
;
6765 input_line_pointer
++;
6766 temp
= atoi (name
+ 4);
6767 name
= input_line_pointer
;
6768 c
= get_symbol_end ();
6769 arg_reloc
= pa_align_arg_reloc (temp
, pa_build_arg_reloc (name
));
6770 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6771 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6773 *input_line_pointer
= c
;
6775 /* The return value. */
6776 else if ((strncasecmp (name
, "rtnval", 6)) == 0)
6778 p
= input_line_pointer
;
6780 input_line_pointer
++;
6781 name
= input_line_pointer
;
6782 c
= get_symbol_end ();
6783 arg_reloc
= pa_build_arg_reloc (name
);
6784 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6785 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6787 *input_line_pointer
= c
;
6789 /* Privilege level. */
6790 else if ((strncasecmp (name
, "priv_lev", 8)) == 0)
6792 p
= input_line_pointer
;
6794 input_line_pointer
++;
6795 temp
= atoi (input_line_pointer
);
6797 ((obj_symbol_type
*) bfdsym
)->tc_data
.ap
.hppa_priv_level
= temp
;
6799 c
= get_symbol_end ();
6800 *input_line_pointer
= c
;
6804 as_bad (_("Undefined .EXPORT/.IMPORT argument (ignored): %s"), name
);
6805 p
= input_line_pointer
;
6808 if (!is_end_of_statement ())
6809 input_line_pointer
++;
6813 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
6814 assembly file must either be defined in the assembly file, or
6815 explicitly IMPORTED from another. */
6819 int unused ATTRIBUTE_UNUSED
;
6824 name
= input_line_pointer
;
6825 c
= get_symbol_end ();
6827 symbol
= symbol_find (name
);
6828 /* Ugh. We might be importing a symbol defined earlier in the file,
6829 in which case all the code below will really screw things up
6830 (set the wrong segment, symbol flags & type, etc). */
6831 if (symbol
== NULL
|| !S_IS_DEFINED (symbol
))
6833 symbol
= symbol_find_or_make (name
);
6834 p
= input_line_pointer
;
6837 if (!is_end_of_statement ())
6839 input_line_pointer
++;
6840 pa_type_args (symbol
, 0);
6844 /* Sigh. To be compatible with the HP assembler and to help
6845 poorly written assembly code, we assign a type based on
6846 the current segment. Note only BSF_FUNCTION really
6847 matters, we do not need to set the full SYMBOL_TYPE_* info. */
6848 if (now_seg
== text_section
)
6849 symbol_get_bfdsym (symbol
)->flags
|= BSF_FUNCTION
;
6851 /* If the section is undefined, then the symbol is undefined
6852 Since this is an import, leave the section undefined. */
6853 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6858 /* The symbol was already defined. Just eat everything up to
6859 the end of the current statement. */
6860 while (!is_end_of_statement ())
6861 input_line_pointer
++;
6864 demand_empty_rest_of_line ();
6867 /* Handle a .LABEL pseudo-op. */
6871 int unused ATTRIBUTE_UNUSED
;
6875 name
= input_line_pointer
;
6876 c
= get_symbol_end ();
6878 if (strlen (name
) > 0)
6881 p
= input_line_pointer
;
6886 as_warn (_("Missing label name on .LABEL"));
6889 if (!is_end_of_statement ())
6891 as_warn (_("extra .LABEL arguments ignored."));
6892 ignore_rest_of_line ();
6894 demand_empty_rest_of_line ();
6897 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
6901 int unused ATTRIBUTE_UNUSED
;
6904 /* We must have a valid space and subspace. */
6905 pa_check_current_space_and_subspace ();
6908 as_bad (_("The .LEAVE pseudo-op is not supported"));
6909 demand_empty_rest_of_line ();
6912 /* Handle a .LEVEL pseudo-op. */
6916 int unused ATTRIBUTE_UNUSED
;
6920 level
= input_line_pointer
;
6921 if (strncmp (level
, "1.0", 3) == 0)
6923 input_line_pointer
+= 3;
6924 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 10))
6925 as_warn (_("could not set architecture and machine"));
6927 else if (strncmp (level
, "1.1", 3) == 0)
6929 input_line_pointer
+= 3;
6930 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 11))
6931 as_warn (_("could not set architecture and machine"));
6933 else if (strncmp (level
, "2.0w", 4) == 0)
6935 input_line_pointer
+= 4;
6936 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 25))
6937 as_warn (_("could not set architecture and machine"));
6939 else if (strncmp (level
, "2.0", 3) == 0)
6941 input_line_pointer
+= 3;
6942 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 20))
6943 as_warn (_("could not set architecture and machine"));
6947 as_bad (_("Unrecognized .LEVEL argument\n"));
6948 ignore_rest_of_line ();
6950 demand_empty_rest_of_line ();
6953 /* Handle a .ORIGIN pseudo-op. */
6957 int unused ATTRIBUTE_UNUSED
;
6960 /* We must have a valid space and subspace. */
6961 pa_check_current_space_and_subspace ();
6965 pa_undefine_label ();
6968 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
6969 is for static functions. FIXME. Should share more code with .EXPORT. */
6973 int unused ATTRIBUTE_UNUSED
;
6978 name
= input_line_pointer
;
6979 c
= get_symbol_end ();
6981 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6983 as_bad (_("Cannot define static symbol: %s\n"), name
);
6984 p
= input_line_pointer
;
6986 input_line_pointer
++;
6990 S_CLEAR_EXTERNAL (symbol
);
6991 p
= input_line_pointer
;
6993 if (!is_end_of_statement ())
6995 input_line_pointer
++;
6996 pa_type_args (symbol
, 0);
7000 demand_empty_rest_of_line ();
7003 /* Handle a .PROC pseudo-op. It is used to mark the beginning
7004 of a procedure from a syntactical point of view. */
7008 int unused ATTRIBUTE_UNUSED
;
7010 struct call_info
*call_info
;
7013 /* We must have a valid space and subspace. */
7014 pa_check_current_space_and_subspace ();
7017 if (within_procedure
)
7018 as_fatal (_("Nested procedures"));
7020 /* Reset global variables for new procedure. */
7021 callinfo_found
= FALSE
;
7022 within_procedure
= TRUE
;
7024 /* Create another call_info structure. */
7025 call_info
= (struct call_info
*) xmalloc (sizeof (struct call_info
));
7028 as_fatal (_("Cannot allocate unwind descriptor\n"));
7030 memset (call_info
, 0, sizeof (struct call_info
));
7032 call_info
->ci_next
= NULL
;
7034 if (call_info_root
== NULL
)
7036 call_info_root
= call_info
;
7037 last_call_info
= call_info
;
7041 last_call_info
->ci_next
= call_info
;
7042 last_call_info
= call_info
;
7045 /* set up defaults on call_info structure */
7047 call_info
->ci_unwind
.descriptor
.cannot_unwind
= 0;
7048 call_info
->ci_unwind
.descriptor
.region_desc
= 1;
7049 call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 0;
7051 /* If we got a .PROC pseudo-op, we know that the function is defined
7052 locally. Make sure it gets into the symbol table. */
7054 label_symbol_struct
*label_symbol
= pa_get_label ();
7058 if (label_symbol
->lss_label
)
7060 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7061 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
|= BSF_FUNCTION
;
7064 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7067 last_call_info
->start_symbol
= NULL
;
7070 demand_empty_rest_of_line ();
7073 /* Process the syntactical end of a procedure. Make sure all the
7074 appropriate pseudo-ops were found within the procedure. */
7078 int unused ATTRIBUTE_UNUSED
;
7082 /* We must have a valid space and subspace. */
7083 pa_check_current_space_and_subspace ();
7086 /* If we are within a procedure definition, make sure we've
7087 defined a label for the procedure; handle case where the
7088 label was defined after the .PROC directive.
7090 Note there's not need to diddle with the segment or fragment
7091 for the label symbol in this case. We have already switched
7092 into the new $CODE$ subspace at this point. */
7093 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
7095 label_symbol_struct
*label_symbol
= pa_get_label ();
7099 if (label_symbol
->lss_label
)
7101 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7102 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
7105 /* Also handle allocation of a fixup to hold the unwind
7106 information when the label appears after the proc/procend. */
7107 if (within_entry_exit
)
7112 where
= frag_more (0);
7113 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
7114 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
7115 NULL
, (offsetT
) 0, NULL
,
7116 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
7121 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7124 as_bad (_("Missing function name for .PROC"));
7127 if (!within_procedure
)
7128 as_bad (_("misplaced .procend"));
7130 if (!callinfo_found
)
7131 as_bad (_("Missing .callinfo for this procedure"));
7133 if (within_entry_exit
)
7134 as_bad (_("Missing .EXIT for a .ENTRY"));
7137 /* ELF needs to mark the end of each function so that it can compute
7138 the size of the function (apparently its needed in the symbol table). */
7139 hppa_elf_mark_end_of_function ();
7142 within_procedure
= FALSE
;
7143 demand_empty_rest_of_line ();
7144 pa_undefine_label ();
7148 /* If VALUE is an exact power of two between zero and 2^31, then
7149 return log2 (VALUE). Else return -1. */
7157 while ((1 << shift
) != value
&& shift
< 32)
7166 /* Check to make sure we have a valid space and subspace. */
7169 pa_check_current_space_and_subspace ()
7171 if (current_space
== NULL
)
7172 as_fatal (_("Not in a space.\n"));
7174 if (current_subspace
== NULL
)
7175 as_fatal (_("Not in a subspace.\n"));
7178 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
7179 then create a new space entry to hold the information specified
7180 by the parameters to the .SPACE directive. */
7182 static sd_chain_struct
*
7183 pa_parse_space_stmt (space_name
, create_flag
)
7187 char *name
, *ptemp
, c
;
7188 char loadable
, defined
, private, sort
;
7190 asection
*seg
= NULL
;
7191 sd_chain_struct
*space
;
7193 /* load default values */
7199 if (strcmp (space_name
, "$TEXT$") == 0)
7201 seg
= pa_def_spaces
[0].segment
;
7202 defined
= pa_def_spaces
[0].defined
;
7203 private = pa_def_spaces
[0].private;
7204 sort
= pa_def_spaces
[0].sort
;
7205 spnum
= pa_def_spaces
[0].spnum
;
7207 else if (strcmp (space_name
, "$PRIVATE$") == 0)
7209 seg
= pa_def_spaces
[1].segment
;
7210 defined
= pa_def_spaces
[1].defined
;
7211 private = pa_def_spaces
[1].private;
7212 sort
= pa_def_spaces
[1].sort
;
7213 spnum
= pa_def_spaces
[1].spnum
;
7216 if (!is_end_of_statement ())
7218 print_errors
= FALSE
;
7219 ptemp
= input_line_pointer
+ 1;
7220 /* First see if the space was specified as a number rather than
7221 as a name. According to the PA assembly manual the rest of
7222 the line should be ignored. */
7224 pa_parse_number (&ptemp
, 0);
7228 input_line_pointer
= ptemp
;
7232 while (!is_end_of_statement ())
7234 input_line_pointer
++;
7235 name
= input_line_pointer
;
7236 c
= get_symbol_end ();
7237 if ((strncasecmp (name
, "spnum", 5) == 0))
7239 *input_line_pointer
= c
;
7240 input_line_pointer
++;
7241 spnum
= get_absolute_expression ();
7243 else if ((strncasecmp (name
, "sort", 4) == 0))
7245 *input_line_pointer
= c
;
7246 input_line_pointer
++;
7247 sort
= get_absolute_expression ();
7249 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7251 *input_line_pointer
= c
;
7254 else if ((strncasecmp (name
, "notdefined", 10) == 0))
7256 *input_line_pointer
= c
;
7259 else if ((strncasecmp (name
, "private", 7) == 0))
7261 *input_line_pointer
= c
;
7266 as_bad (_("Invalid .SPACE argument"));
7267 *input_line_pointer
= c
;
7268 if (!is_end_of_statement ())
7269 input_line_pointer
++;
7273 print_errors
= TRUE
;
7276 if (create_flag
&& seg
== NULL
)
7277 seg
= subseg_new (space_name
, 0);
7279 /* If create_flag is nonzero, then create the new space with
7280 the attributes computed above. Else set the values in
7281 an already existing space -- this can only happen for
7282 the first occurrence of a built-in space. */
7284 space
= create_new_space (space_name
, spnum
, loadable
, defined
,
7285 private, sort
, seg
, 1);
7288 space
= is_defined_space (space_name
);
7289 SPACE_SPNUM (space
) = spnum
;
7290 SPACE_DEFINED (space
) = defined
& 1;
7291 SPACE_USER_DEFINED (space
) = 1;
7294 #ifdef obj_set_section_attributes
7295 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7301 /* Handle a .SPACE pseudo-op; this switches the current space to the
7302 given space, creating the new space if necessary. */
7306 int unused ATTRIBUTE_UNUSED
;
7308 char *name
, c
, *space_name
, *save_s
;
7309 sd_chain_struct
*sd_chain
;
7311 if (within_procedure
)
7313 as_bad (_("Can\'t change spaces within a procedure definition. Ignored"));
7314 ignore_rest_of_line ();
7318 /* Check for some of the predefined spaces. FIXME: most of the code
7319 below is repeated several times, can we extract the common parts
7320 and place them into a subroutine or something similar? */
7321 /* FIXME Is this (and the next IF stmt) really right?
7322 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
7323 if (strncmp (input_line_pointer
, "$TEXT$", 6) == 0)
7325 input_line_pointer
+= 6;
7326 sd_chain
= is_defined_space ("$TEXT$");
7327 if (sd_chain
== NULL
)
7328 sd_chain
= pa_parse_space_stmt ("$TEXT$", 1);
7329 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7330 sd_chain
= pa_parse_space_stmt ("$TEXT$", 0);
7332 current_space
= sd_chain
;
7333 subseg_set (text_section
, sd_chain
->sd_last_subseg
);
7335 = pa_subsegment_to_subspace (text_section
,
7336 sd_chain
->sd_last_subseg
);
7337 demand_empty_rest_of_line ();
7340 if (strncmp (input_line_pointer
, "$PRIVATE$", 9) == 0)
7342 input_line_pointer
+= 9;
7343 sd_chain
= is_defined_space ("$PRIVATE$");
7344 if (sd_chain
== NULL
)
7345 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 1);
7346 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7347 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 0);
7349 current_space
= sd_chain
;
7350 subseg_set (data_section
, sd_chain
->sd_last_subseg
);
7352 = pa_subsegment_to_subspace (data_section
,
7353 sd_chain
->sd_last_subseg
);
7354 demand_empty_rest_of_line ();
7357 if (!strncasecmp (input_line_pointer
,
7358 GDB_DEBUG_SPACE_NAME
,
7359 strlen (GDB_DEBUG_SPACE_NAME
)))
7361 input_line_pointer
+= strlen (GDB_DEBUG_SPACE_NAME
);
7362 sd_chain
= is_defined_space (GDB_DEBUG_SPACE_NAME
);
7363 if (sd_chain
== NULL
)
7364 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 1);
7365 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7366 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 0);
7368 current_space
= sd_chain
;
7371 asection
*gdb_section
7372 = bfd_make_section_old_way (stdoutput
, GDB_DEBUG_SPACE_NAME
);
7374 subseg_set (gdb_section
, sd_chain
->sd_last_subseg
);
7376 = pa_subsegment_to_subspace (gdb_section
,
7377 sd_chain
->sd_last_subseg
);
7379 demand_empty_rest_of_line ();
7383 /* It could be a space specified by number. */
7385 save_s
= input_line_pointer
;
7387 pa_parse_number (&input_line_pointer
, 0);
7390 if ((sd_chain
= pa_find_space_by_number (pa_number
)))
7392 current_space
= sd_chain
;
7394 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7396 = pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7397 sd_chain
->sd_last_subseg
);
7398 demand_empty_rest_of_line ();
7403 /* Not a number, attempt to create a new space. */
7405 input_line_pointer
= save_s
;
7406 name
= input_line_pointer
;
7407 c
= get_symbol_end ();
7408 space_name
= xmalloc (strlen (name
) + 1);
7409 strcpy (space_name
, name
);
7410 *input_line_pointer
= c
;
7412 sd_chain
= pa_parse_space_stmt (space_name
, 1);
7413 current_space
= sd_chain
;
7415 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7416 current_subspace
= pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7417 sd_chain
->sd_last_subseg
);
7418 demand_empty_rest_of_line ();
7422 /* Switch to a new space. (I think). FIXME. */
7426 int unused ATTRIBUTE_UNUSED
;
7431 sd_chain_struct
*space
;
7433 name
= input_line_pointer
;
7434 c
= get_symbol_end ();
7435 space
= is_defined_space (name
);
7439 md_number_to_chars (p
, SPACE_SPNUM (space
), 4);
7442 as_warn (_("Undefined space: '%s' Assuming space number = 0."), name
);
7444 *input_line_pointer
= c
;
7445 demand_empty_rest_of_line ();
7448 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
7449 given subspace, creating the new subspace if necessary.
7451 FIXME. Should mirror pa_space more closely, in particular how
7452 they're broken up into subroutines. */
7455 pa_subspace (create_new
)
7458 char *name
, *ss_name
, c
;
7459 char loadable
, code_only
, comdat
, common
, dup_common
, zero
, sort
;
7460 int i
, access
, space_index
, alignment
, quadrant
, applicable
, flags
;
7461 sd_chain_struct
*space
;
7462 ssd_chain_struct
*ssd
;
7465 if (current_space
== NULL
)
7466 as_fatal (_("Must be in a space before changing or declaring subspaces.\n"));
7468 if (within_procedure
)
7470 as_bad (_("Can\'t change subspaces within a procedure definition. Ignored"));
7471 ignore_rest_of_line ();
7475 name
= input_line_pointer
;
7476 c
= get_symbol_end ();
7477 ss_name
= xmalloc (strlen (name
) + 1);
7478 strcpy (ss_name
, name
);
7479 *input_line_pointer
= c
;
7481 /* Load default values. */
7494 space
= current_space
;
7498 ssd
= is_defined_subspace (ss_name
);
7499 /* Allow user to override the builtin attributes of subspaces. But
7500 only allow the attributes to be changed once! */
7501 if (ssd
&& SUBSPACE_DEFINED (ssd
))
7503 subseg_set (ssd
->ssd_seg
, ssd
->ssd_subseg
);
7504 current_subspace
= ssd
;
7505 if (!is_end_of_statement ())
7506 as_warn (_("Parameters of an existing subspace can\'t be modified"));
7507 demand_empty_rest_of_line ();
7512 /* A new subspace. Load default values if it matches one of
7513 the builtin subspaces. */
7515 while (pa_def_subspaces
[i
].name
)
7517 if (strcasecmp (pa_def_subspaces
[i
].name
, ss_name
) == 0)
7519 loadable
= pa_def_subspaces
[i
].loadable
;
7520 comdat
= pa_def_subspaces
[i
].comdat
;
7521 common
= pa_def_subspaces
[i
].common
;
7522 dup_common
= pa_def_subspaces
[i
].dup_common
;
7523 code_only
= pa_def_subspaces
[i
].code_only
;
7524 zero
= pa_def_subspaces
[i
].zero
;
7525 space_index
= pa_def_subspaces
[i
].space_index
;
7526 alignment
= pa_def_subspaces
[i
].alignment
;
7527 quadrant
= pa_def_subspaces
[i
].quadrant
;
7528 access
= pa_def_subspaces
[i
].access
;
7529 sort
= pa_def_subspaces
[i
].sort
;
7536 /* We should be working with a new subspace now. Fill in
7537 any information as specified by the user. */
7538 if (!is_end_of_statement ())
7540 input_line_pointer
++;
7541 while (!is_end_of_statement ())
7543 name
= input_line_pointer
;
7544 c
= get_symbol_end ();
7545 if ((strncasecmp (name
, "quad", 4) == 0))
7547 *input_line_pointer
= c
;
7548 input_line_pointer
++;
7549 quadrant
= get_absolute_expression ();
7551 else if ((strncasecmp (name
, "align", 5) == 0))
7553 *input_line_pointer
= c
;
7554 input_line_pointer
++;
7555 alignment
= get_absolute_expression ();
7556 if (exact_log2 (alignment
) == -1)
7558 as_bad (_("Alignment must be a power of 2"));
7562 else if ((strncasecmp (name
, "access", 6) == 0))
7564 *input_line_pointer
= c
;
7565 input_line_pointer
++;
7566 access
= get_absolute_expression ();
7568 else if ((strncasecmp (name
, "sort", 4) == 0))
7570 *input_line_pointer
= c
;
7571 input_line_pointer
++;
7572 sort
= get_absolute_expression ();
7574 else if ((strncasecmp (name
, "code_only", 9) == 0))
7576 *input_line_pointer
= c
;
7579 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7581 *input_line_pointer
= c
;
7584 else if ((strncasecmp (name
, "comdat", 6) == 0))
7586 *input_line_pointer
= c
;
7589 else if ((strncasecmp (name
, "common", 6) == 0))
7591 *input_line_pointer
= c
;
7594 else if ((strncasecmp (name
, "dup_comm", 8) == 0))
7596 *input_line_pointer
= c
;
7599 else if ((strncasecmp (name
, "zero", 4) == 0))
7601 *input_line_pointer
= c
;
7604 else if ((strncasecmp (name
, "first", 5) == 0))
7605 as_bad (_("FIRST not supported as a .SUBSPACE argument"));
7607 as_bad (_("Invalid .SUBSPACE argument"));
7608 if (!is_end_of_statement ())
7609 input_line_pointer
++;
7613 /* Compute a reasonable set of BFD flags based on the information
7614 in the .subspace directive. */
7615 applicable
= bfd_applicable_section_flags (stdoutput
);
7618 flags
|= (SEC_ALLOC
| SEC_LOAD
);
7622 /* These flags are used to implement various flavors of initialized
7623 common. The SOM linker discards duplicate subspaces when they
7624 have the same "key" symbol name. This support is more like
7625 GNU linkonce than BFD common. Further, pc-relative relocations
7626 are converted to section relative relocations in BFD common
7627 sections. This complicates the handling of relocations in
7628 common sections containing text and isn't currently supported
7629 correctly in the SOM BFD backend. */
7630 if (comdat
|| common
|| dup_common
)
7631 flags
|= SEC_LINK_ONCE
;
7633 flags
|= SEC_RELOC
| SEC_HAS_CONTENTS
;
7635 /* This is a zero-filled subspace (eg BSS). */
7637 flags
&= ~(SEC_LOAD
| SEC_HAS_CONTENTS
);
7639 applicable
&= flags
;
7641 /* If this is an existing subspace, then we want to use the
7642 segment already associated with the subspace.
7644 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
7645 lots of sections. It might be a problem in the PA ELF
7646 code, I do not know yet. For now avoid creating anything
7647 but the "standard" sections for ELF. */
7649 section
= subseg_force_new (ss_name
, 0);
7651 section
= ssd
->ssd_seg
;
7653 section
= subseg_new (ss_name
, 0);
7656 seg_info (section
)->bss
= 1;
7658 /* Now set the flags. */
7659 bfd_set_section_flags (stdoutput
, section
, applicable
);
7661 /* Record any alignment request for this section. */
7662 record_alignment (section
, exact_log2 (alignment
));
7664 /* Set the starting offset for this section. */
7665 bfd_set_section_vma (stdoutput
, section
,
7666 pa_subspace_start (space
, quadrant
));
7668 /* Now that all the flags are set, update an existing subspace,
7669 or create a new one. */
7672 current_subspace
= update_subspace (space
, ss_name
, loadable
,
7673 code_only
, comdat
, common
,
7674 dup_common
, sort
, zero
, access
,
7675 space_index
, alignment
, quadrant
,
7678 current_subspace
= create_new_subspace (space
, ss_name
, loadable
,
7679 code_only
, comdat
, common
,
7680 dup_common
, zero
, sort
,
7681 access
, space_index
,
7682 alignment
, quadrant
, section
);
7684 demand_empty_rest_of_line ();
7685 current_subspace
->ssd_seg
= section
;
7686 subseg_set (current_subspace
->ssd_seg
, current_subspace
->ssd_subseg
);
7688 SUBSPACE_DEFINED (current_subspace
) = 1;
7691 /* Create default space and subspace dictionaries. */
7698 space_dict_root
= NULL
;
7699 space_dict_last
= NULL
;
7702 while (pa_def_spaces
[i
].name
)
7706 /* Pick the right name to use for the new section. */
7707 name
= pa_def_spaces
[i
].name
;
7709 pa_def_spaces
[i
].segment
= subseg_new (name
, 0);
7710 create_new_space (pa_def_spaces
[i
].name
, pa_def_spaces
[i
].spnum
,
7711 pa_def_spaces
[i
].loadable
, pa_def_spaces
[i
].defined
,
7712 pa_def_spaces
[i
].private, pa_def_spaces
[i
].sort
,
7713 pa_def_spaces
[i
].segment
, 0);
7718 while (pa_def_subspaces
[i
].name
)
7721 int applicable
, subsegment
;
7722 asection
*segment
= NULL
;
7723 sd_chain_struct
*space
;
7725 /* Pick the right name for the new section and pick the right
7726 subsegment number. */
7727 name
= pa_def_subspaces
[i
].name
;
7730 /* Create the new section. */
7731 segment
= subseg_new (name
, subsegment
);
7733 /* For SOM we want to replace the standard .text, .data, and .bss
7734 sections with our own. We also want to set BFD flags for
7735 all the built-in subspaces. */
7736 if (!strcmp (pa_def_subspaces
[i
].name
, "$CODE$"))
7738 text_section
= segment
;
7739 applicable
= bfd_applicable_section_flags (stdoutput
);
7740 bfd_set_section_flags (stdoutput
, segment
,
7741 applicable
& (SEC_ALLOC
| SEC_LOAD
7742 | SEC_RELOC
| SEC_CODE
7744 | SEC_HAS_CONTENTS
));
7746 else if (!strcmp (pa_def_subspaces
[i
].name
, "$DATA$"))
7748 data_section
= segment
;
7749 applicable
= bfd_applicable_section_flags (stdoutput
);
7750 bfd_set_section_flags (stdoutput
, segment
,
7751 applicable
& (SEC_ALLOC
| SEC_LOAD
7753 | SEC_HAS_CONTENTS
));
7756 else if (!strcmp (pa_def_subspaces
[i
].name
, "$BSS$"))
7758 bss_section
= segment
;
7759 applicable
= bfd_applicable_section_flags (stdoutput
);
7760 bfd_set_section_flags (stdoutput
, segment
,
7761 applicable
& SEC_ALLOC
);
7763 else if (!strcmp (pa_def_subspaces
[i
].name
, "$LIT$"))
7765 applicable
= bfd_applicable_section_flags (stdoutput
);
7766 bfd_set_section_flags (stdoutput
, segment
,
7767 applicable
& (SEC_ALLOC
| SEC_LOAD
7770 | SEC_HAS_CONTENTS
));
7772 else if (!strcmp (pa_def_subspaces
[i
].name
, "$MILLICODE$"))
7774 applicable
= bfd_applicable_section_flags (stdoutput
);
7775 bfd_set_section_flags (stdoutput
, segment
,
7776 applicable
& (SEC_ALLOC
| SEC_LOAD
7779 | SEC_HAS_CONTENTS
));
7781 else if (!strcmp (pa_def_subspaces
[i
].name
, "$UNWIND$"))
7783 applicable
= bfd_applicable_section_flags (stdoutput
);
7784 bfd_set_section_flags (stdoutput
, segment
,
7785 applicable
& (SEC_ALLOC
| SEC_LOAD
7788 | SEC_HAS_CONTENTS
));
7791 /* Find the space associated with this subspace. */
7792 space
= pa_segment_to_space (pa_def_spaces
[pa_def_subspaces
[i
].
7793 def_space_index
].segment
);
7796 as_fatal (_("Internal error: Unable to find containing space for %s."),
7797 pa_def_subspaces
[i
].name
);
7800 create_new_subspace (space
, name
,
7801 pa_def_subspaces
[i
].loadable
,
7802 pa_def_subspaces
[i
].code_only
,
7803 pa_def_subspaces
[i
].comdat
,
7804 pa_def_subspaces
[i
].common
,
7805 pa_def_subspaces
[i
].dup_common
,
7806 pa_def_subspaces
[i
].zero
,
7807 pa_def_subspaces
[i
].sort
,
7808 pa_def_subspaces
[i
].access
,
7809 pa_def_subspaces
[i
].space_index
,
7810 pa_def_subspaces
[i
].alignment
,
7811 pa_def_subspaces
[i
].quadrant
,
7817 /* Create a new space NAME, with the appropriate flags as defined
7818 by the given parameters. */
7820 static sd_chain_struct
*
7821 create_new_space (name
, spnum
, loadable
, defined
, private,
7822 sort
, seg
, user_defined
)
7825 int loadable ATTRIBUTE_UNUSED
;
7832 sd_chain_struct
*chain_entry
;
7834 chain_entry
= (sd_chain_struct
*) xmalloc (sizeof (sd_chain_struct
));
7836 as_fatal (_("Out of memory: could not allocate new space chain entry: %s\n"),
7839 SPACE_NAME (chain_entry
) = (char *) xmalloc (strlen (name
) + 1);
7840 strcpy (SPACE_NAME (chain_entry
), name
);
7841 SPACE_DEFINED (chain_entry
) = defined
;
7842 SPACE_USER_DEFINED (chain_entry
) = user_defined
;
7843 SPACE_SPNUM (chain_entry
) = spnum
;
7845 chain_entry
->sd_seg
= seg
;
7846 chain_entry
->sd_last_subseg
= -1;
7847 chain_entry
->sd_subspaces
= NULL
;
7848 chain_entry
->sd_next
= NULL
;
7850 /* Find spot for the new space based on its sort key. */
7851 if (!space_dict_last
)
7852 space_dict_last
= chain_entry
;
7854 if (space_dict_root
== NULL
)
7855 space_dict_root
= chain_entry
;
7858 sd_chain_struct
*chain_pointer
;
7859 sd_chain_struct
*prev_chain_pointer
;
7861 chain_pointer
= space_dict_root
;
7862 prev_chain_pointer
= NULL
;
7864 while (chain_pointer
)
7866 prev_chain_pointer
= chain_pointer
;
7867 chain_pointer
= chain_pointer
->sd_next
;
7870 /* At this point we've found the correct place to add the new
7871 entry. So add it and update the linked lists as appropriate. */
7872 if (prev_chain_pointer
)
7874 chain_entry
->sd_next
= chain_pointer
;
7875 prev_chain_pointer
->sd_next
= chain_entry
;
7879 space_dict_root
= chain_entry
;
7880 chain_entry
->sd_next
= chain_pointer
;
7883 if (chain_entry
->sd_next
== NULL
)
7884 space_dict_last
= chain_entry
;
7887 /* This is here to catch predefined spaces which do not get
7888 modified by the user's input. Another call is found at
7889 the bottom of pa_parse_space_stmt to handle cases where
7890 the user modifies a predefined space. */
7891 #ifdef obj_set_section_attributes
7892 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7898 /* Create a new subspace NAME, with the appropriate flags as defined
7899 by the given parameters.
7901 Add the new subspace to the subspace dictionary chain in numerical
7902 order as defined by the SORT entries. */
7904 static ssd_chain_struct
*
7905 create_new_subspace (space
, name
, loadable
, code_only
, comdat
, common
,
7906 dup_common
, is_zero
, sort
, access
, space_index
,
7907 alignment
, quadrant
, seg
)
7908 sd_chain_struct
*space
;
7910 int loadable ATTRIBUTE_UNUSED
;
7911 int code_only ATTRIBUTE_UNUSED
;
7912 int comdat
, common
, dup_common
;
7913 int is_zero ATTRIBUTE_UNUSED
;
7916 int space_index ATTRIBUTE_UNUSED
;
7917 int alignment ATTRIBUTE_UNUSED
;
7921 ssd_chain_struct
*chain_entry
;
7923 chain_entry
= (ssd_chain_struct
*) xmalloc (sizeof (ssd_chain_struct
));
7925 as_fatal (_("Out of memory: could not allocate new subspace chain entry: %s\n"), name
);
7927 SUBSPACE_NAME (chain_entry
) = (char *) xmalloc (strlen (name
) + 1);
7928 strcpy (SUBSPACE_NAME (chain_entry
), name
);
7930 /* Initialize subspace_defined. When we hit a .subspace directive
7931 we'll set it to 1 which "locks-in" the subspace attributes. */
7932 SUBSPACE_DEFINED (chain_entry
) = 0;
7934 chain_entry
->ssd_subseg
= 0;
7935 chain_entry
->ssd_seg
= seg
;
7936 chain_entry
->ssd_next
= NULL
;
7938 /* Find spot for the new subspace based on its sort key. */
7939 if (space
->sd_subspaces
== NULL
)
7940 space
->sd_subspaces
= chain_entry
;
7943 ssd_chain_struct
*chain_pointer
;
7944 ssd_chain_struct
*prev_chain_pointer
;
7946 chain_pointer
= space
->sd_subspaces
;
7947 prev_chain_pointer
= NULL
;
7949 while (chain_pointer
)
7951 prev_chain_pointer
= chain_pointer
;
7952 chain_pointer
= chain_pointer
->ssd_next
;
7955 /* Now we have somewhere to put the new entry. Insert it and update
7957 if (prev_chain_pointer
)
7959 chain_entry
->ssd_next
= chain_pointer
;
7960 prev_chain_pointer
->ssd_next
= chain_entry
;
7964 space
->sd_subspaces
= chain_entry
;
7965 chain_entry
->ssd_next
= chain_pointer
;
7969 #ifdef obj_set_subsection_attributes
7970 obj_set_subsection_attributes (seg
, space
->sd_seg
, access
, sort
,
7971 quadrant
, comdat
, common
, dup_common
);
7977 /* Update the information for the given subspace based upon the
7978 various arguments. Return the modified subspace chain entry. */
7980 static ssd_chain_struct
*
7981 update_subspace (space
, name
, loadable
, code_only
, comdat
, common
, dup_common
,
7982 sort
, zero
, access
, space_index
, alignment
, quadrant
, section
)
7983 sd_chain_struct
*space
;
7985 int loadable ATTRIBUTE_UNUSED
;
7986 int code_only ATTRIBUTE_UNUSED
;
7990 int zero ATTRIBUTE_UNUSED
;
7993 int space_index ATTRIBUTE_UNUSED
;
7994 int alignment ATTRIBUTE_UNUSED
;
7998 ssd_chain_struct
*chain_entry
;
8000 chain_entry
= is_defined_subspace (name
);
8002 #ifdef obj_set_subsection_attributes
8003 obj_set_subsection_attributes (section
, space
->sd_seg
, access
, sort
,
8004 quadrant
, comdat
, common
, dup_common
);
8010 /* Return the space chain entry for the space with the name NAME or
8011 NULL if no such space exists. */
8013 static sd_chain_struct
*
8014 is_defined_space (name
)
8017 sd_chain_struct
*chain_pointer
;
8019 for (chain_pointer
= space_dict_root
;
8021 chain_pointer
= chain_pointer
->sd_next
)
8023 if (strcmp (SPACE_NAME (chain_pointer
), name
) == 0)
8024 return chain_pointer
;
8027 /* No mapping from segment to space was found. Return NULL. */
8031 /* Find and return the space associated with the given seg. If no mapping
8032 from the given seg to a space is found, then return NULL.
8034 Unlike subspaces, the number of spaces is not expected to grow much,
8035 so a linear exhaustive search is OK here. */
8037 static sd_chain_struct
*
8038 pa_segment_to_space (seg
)
8041 sd_chain_struct
*space_chain
;
8043 /* Walk through each space looking for the correct mapping. */
8044 for (space_chain
= space_dict_root
;
8046 space_chain
= space_chain
->sd_next
)
8048 if (space_chain
->sd_seg
== seg
)
8052 /* Mapping was not found. Return NULL. */
8056 /* Return the first space chain entry for the subspace with the name
8057 NAME or NULL if no such subspace exists.
8059 When there are multiple subspaces with the same name, switching to
8060 the first (i.e., default) subspace is preferable in most situations.
8061 For example, it wouldn't be desirable to merge COMDAT data with non
8064 Uses a linear search through all the spaces and subspaces, this may
8065 not be appropriate if we ever being placing each function in its
8068 static ssd_chain_struct
*
8069 is_defined_subspace (name
)
8072 sd_chain_struct
*space_chain
;
8073 ssd_chain_struct
*subspace_chain
;
8075 /* Walk through each space. */
8076 for (space_chain
= space_dict_root
;
8078 space_chain
= space_chain
->sd_next
)
8080 /* Walk through each subspace looking for a name which matches. */
8081 for (subspace_chain
= space_chain
->sd_subspaces
;
8083 subspace_chain
= subspace_chain
->ssd_next
)
8084 if (strcmp (SUBSPACE_NAME (subspace_chain
), name
) == 0)
8085 return subspace_chain
;
8088 /* Subspace wasn't found. Return NULL. */
8092 /* Find and return the subspace associated with the given seg. If no
8093 mapping from the given seg to a subspace is found, then return NULL.
8095 If we ever put each procedure/function within its own subspace
8096 (to make life easier on the compiler and linker), then this will have
8097 to become more efficient. */
8099 static ssd_chain_struct
*
8100 pa_subsegment_to_subspace (seg
, subseg
)
8104 sd_chain_struct
*space_chain
;
8105 ssd_chain_struct
*subspace_chain
;
8107 /* Walk through each space. */
8108 for (space_chain
= space_dict_root
;
8110 space_chain
= space_chain
->sd_next
)
8112 if (space_chain
->sd_seg
== seg
)
8114 /* Walk through each subspace within each space looking for
8115 the correct mapping. */
8116 for (subspace_chain
= space_chain
->sd_subspaces
;
8118 subspace_chain
= subspace_chain
->ssd_next
)
8119 if (subspace_chain
->ssd_subseg
== (int) subseg
)
8120 return subspace_chain
;
8124 /* No mapping from subsegment to subspace found. Return NULL. */
8128 /* Given a number, try and find a space with the name number.
8130 Return a pointer to a space dictionary chain entry for the space
8131 that was found or NULL on failure. */
8133 static sd_chain_struct
*
8134 pa_find_space_by_number (number
)
8137 sd_chain_struct
*space_chain
;
8139 for (space_chain
= space_dict_root
;
8141 space_chain
= space_chain
->sd_next
)
8143 if (SPACE_SPNUM (space_chain
) == (unsigned int) number
)
8147 /* No appropriate space found. Return NULL. */
8151 /* Return the starting address for the given subspace. If the starting
8152 address is unknown then return zero. */
8155 pa_subspace_start (space
, quadrant
)
8156 sd_chain_struct
*space
;
8159 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
8160 is not correct for the PA OSF1 port. */
8161 if ((strcmp (SPACE_NAME (space
), "$PRIVATE$") == 0) && quadrant
== 1)
8163 else if (space
->sd_seg
== data_section
&& quadrant
== 1)
8171 /* Helper function for pa_stringer. Used to find the end of
8178 unsigned int c
= *s
& CHAR_MASK
;
8191 /* Handle a .STRING type pseudo-op. */
8194 pa_stringer (append_zero
)
8197 char *s
, num_buf
[4];
8201 /* Preprocess the string to handle PA-specific escape sequences.
8202 For example, \xDD where DD is a hexadecimal number should be
8203 changed to \OOO where OOO is an octal number. */
8206 /* We must have a valid space and subspace. */
8207 pa_check_current_space_and_subspace ();
8210 /* Skip the opening quote. */
8211 s
= input_line_pointer
+ 1;
8213 while (is_a_char (c
= pa_stringer_aux (s
++)))
8220 /* Handle \x<num>. */
8223 unsigned int number
;
8228 /* Get past the 'x'. */
8230 for (num_digit
= 0, number
= 0, dg
= *s
;
8232 && (ISDIGIT (dg
) || (dg
>= 'a' && dg
<= 'f')
8233 || (dg
>= 'A' && dg
<= 'F'));
8237 number
= number
* 16 + dg
- '0';
8238 else if (dg
>= 'a' && dg
<= 'f')
8239 number
= number
* 16 + dg
- 'a' + 10;
8241 number
= number
* 16 + dg
- 'A' + 10;
8251 sprintf (num_buf
, "%02o", number
);
8254 sprintf (num_buf
, "%03o", number
);
8257 for (i
= 0; i
<= num_digit
; i
++)
8258 s_start
[i
] = num_buf
[i
];
8262 /* This might be a "\"", skip over the escaped char. */
8269 stringer (append_zero
);
8270 pa_undefine_label ();
8273 /* Handle a .VERSION pseudo-op. */
8277 int unused ATTRIBUTE_UNUSED
;
8280 pa_undefine_label ();
8285 /* Handle a .COMPILER pseudo-op. */
8288 pa_compiler (unused
)
8289 int unused ATTRIBUTE_UNUSED
;
8291 obj_som_compiler (0);
8292 pa_undefine_label ();
8297 /* Handle a .COPYRIGHT pseudo-op. */
8300 pa_copyright (unused
)
8301 int unused ATTRIBUTE_UNUSED
;
8304 pa_undefine_label ();
8307 /* Just like a normal cons, but when finished we have to undefine
8308 the latest space label. */
8315 pa_undefine_label ();
8318 /* Like float_cons, but we need to undefine our label. */
8321 pa_float_cons (float_type
)
8324 float_cons (float_type
);
8325 pa_undefine_label ();
8328 /* Like s_fill, but delete our label when finished. */
8332 int unused ATTRIBUTE_UNUSED
;
8335 /* We must have a valid space and subspace. */
8336 pa_check_current_space_and_subspace ();
8340 pa_undefine_label ();
8343 /* Like lcomm, but delete our label when finished. */
8346 pa_lcomm (needs_align
)
8350 /* We must have a valid space and subspace. */
8351 pa_check_current_space_and_subspace ();
8354 s_lcomm (needs_align
);
8355 pa_undefine_label ();
8358 /* Like lsym, but delete our label when finished. */
8362 int unused ATTRIBUTE_UNUSED
;
8365 /* We must have a valid space and subspace. */
8366 pa_check_current_space_and_subspace ();
8370 pa_undefine_label ();
8373 /* On the PA relocations which involve function symbols must not be
8374 adjusted. This so that the linker can know when/how to create argument
8375 relocation stubs for indirect calls and calls to static functions.
8377 "T" field selectors create DLT relative fixups for accessing
8378 globals and statics in PIC code; each DLT relative fixup creates
8379 an entry in the DLT table. The entries contain the address of
8380 the final target (eg accessing "foo" would create a DLT entry
8381 with the address of "foo").
8383 Unfortunately, the HP linker doesn't take into account any addend
8384 when generating the DLT; so accessing $LIT$+8 puts the address of
8385 $LIT$ into the DLT rather than the address of $LIT$+8.
8387 The end result is we can't perform relocation symbol reductions for
8388 any fixup which creates entries in the DLT (eg they use "T" field
8391 Reject reductions involving symbols with external scope; such
8392 reductions make life a living hell for object file editors.
8394 FIXME. Also reject R_HPPA relocations which are 32bits wide in
8395 the code space. The SOM BFD backend doesn't know how to pull the
8396 right bits out of an instruction. */
8399 hppa_fix_adjustable (fixp
)
8405 struct hppa_fix_struct
*hppa_fix
;
8407 hppa_fix
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8410 /* Reject reductions of symbols in 32bit relocs unless they
8412 if (fixp
->fx_r_type
== R_HPPA
8413 && hppa_fix
->fx_r_format
== 32
8414 && strncmp (S_GET_NAME (fixp
->fx_addsy
),
8416 strlen (FAKE_LABEL_NAME
)))
8421 /* LR/RR selectors are implicitly used for a number of different relocation
8422 types. We must ensure that none of these types are adjusted (see below)
8423 even if they occur with a different selector. */
8424 code
= elf_hppa_reloc_final_type (stdoutput
, fixp
->fx_r_type
,
8425 hppa_fix
->fx_r_format
,
8426 hppa_fix
->fx_r_field
);
8430 /* Relocation types which use e_lrsel. */
8431 case R_PARISC_DIR21L
:
8432 case R_PARISC_DLTREL21L
:
8433 case R_PARISC_DPREL21L
:
8434 case R_PARISC_PLTOFF21L
:
8436 /* Relocation types which use e_rrsel. */
8437 case R_PARISC_DIR14R
:
8438 case R_PARISC_DIR14DR
:
8439 case R_PARISC_DIR14WR
:
8440 case R_PARISC_DIR17R
:
8441 case R_PARISC_DLTREL14R
:
8442 case R_PARISC_DLTREL14DR
:
8443 case R_PARISC_DLTREL14WR
:
8444 case R_PARISC_DPREL14R
:
8445 case R_PARISC_DPREL14DR
:
8446 case R_PARISC_DPREL14WR
:
8447 case R_PARISC_PLTOFF14R
:
8448 case R_PARISC_PLTOFF14DR
:
8449 case R_PARISC_PLTOFF14WR
:
8451 /* Other types that we reject for reduction. */
8452 case R_PARISC_GNU_VTENTRY
:
8453 case R_PARISC_GNU_VTINHERIT
:
8460 /* Reject reductions of symbols in sym1-sym2 expressions when
8461 the fixup will occur in a CODE subspace.
8463 XXX FIXME: Long term we probably want to reject all of these;
8464 for example reducing in the debug section would lose if we ever
8465 supported using the optimizing hp linker. */
8468 && (hppa_fix
->segment
->flags
& SEC_CODE
))
8471 /* We can't adjust any relocs that use LR% and RR% field selectors.
8473 If a symbol is reduced to a section symbol, the assembler will
8474 adjust the addend unless the symbol happens to reside right at
8475 the start of the section. Additionally, the linker has no choice
8476 but to manipulate the addends when coalescing input sections for
8477 "ld -r". Since an LR% field selector is defined to round the
8478 addend, we can't change the addend without risking that a LR% and
8479 it's corresponding (possible multiple) RR% field will no longer
8480 sum to the right value.
8483 . ldil LR%foo+0,%r21
8484 . ldw RR%foo+0(%r21),%r26
8485 . ldw RR%foo+4(%r21),%r25
8487 If foo is at address 4092 (decimal) in section `sect', then after
8488 reducing to the section symbol we get
8489 . LR%sect+4092 == (L%sect)+0
8490 . RR%sect+4092 == (R%sect)+4092
8491 . RR%sect+4096 == (R%sect)-4096
8492 and the last address loses because rounding the addend to 8k
8493 multiples takes us up to 8192 with an offset of -4096.
8495 In cases where the LR% expression is identical to the RR% one we
8496 will never have a problem, but is so happens that gcc rounds
8497 addends involved in LR% field selectors to work around a HP
8498 linker bug. ie. We often have addresses like the last case
8499 above where the LR% expression is offset from the RR% one. */
8501 if (hppa_fix
->fx_r_field
== e_lrsel
8502 || hppa_fix
->fx_r_field
== e_rrsel
8503 || hppa_fix
->fx_r_field
== e_nlrsel
)
8506 /* Reject reductions of symbols in DLT relative relocs,
8507 relocations with plabels. */
8508 if (hppa_fix
->fx_r_field
== e_tsel
8509 || hppa_fix
->fx_r_field
== e_ltsel
8510 || hppa_fix
->fx_r_field
== e_rtsel
8511 || hppa_fix
->fx_r_field
== e_psel
8512 || hppa_fix
->fx_r_field
== e_rpsel
8513 || hppa_fix
->fx_r_field
== e_lpsel
)
8516 /* Reject absolute calls (jumps). */
8517 if (hppa_fix
->fx_r_type
== R_HPPA_ABS_CALL
)
8520 /* Reject reductions of function symbols. */
8521 if (fixp
->fx_addsy
!= 0 && S_IS_FUNCTION (fixp
->fx_addsy
))
8527 /* Return nonzero if the fixup in FIXP will require a relocation,
8528 even it if appears that the fixup could be completely handled
8532 hppa_force_relocation (fixp
)
8535 struct hppa_fix_struct
*hppa_fixp
;
8537 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8539 if (fixp
->fx_r_type
== (int) R_HPPA_ENTRY
8540 || fixp
->fx_r_type
== (int) R_HPPA_EXIT
8541 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_BRTAB
8542 || fixp
->fx_r_type
== (int) R_HPPA_END_BRTAB
8543 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_TRY
8544 || fixp
->fx_r_type
== (int) R_HPPA_END_TRY
8545 || (fixp
->fx_addsy
!= NULL
&& fixp
->fx_subsy
!= NULL
8546 && (hppa_fixp
->segment
->flags
& SEC_CODE
) != 0))
8550 if (fixp
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
8551 || fixp
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
)
8555 assert (fixp
->fx_addsy
!= NULL
);
8557 /* Ensure we emit a relocation for global symbols so that dynamic
8559 if (S_FORCE_RELOC (fixp
->fx_addsy
, 1))
8562 /* It is necessary to force PC-relative calls/jumps to have a relocation
8563 entry if they're going to need either an argument relocation or long
8566 && arg_reloc_stub_needed (symbol_arg_reloc_info (fixp
->fx_addsy
),
8567 hppa_fixp
->fx_arg_reloc
))
8570 /* Now check to see if we're going to need a long-branch stub. */
8571 if (fixp
->fx_r_type
== (int) R_HPPA_PCREL_CALL
)
8573 long pc
= md_pcrel_from (fixp
);
8574 valueT distance
, min_stub_distance
;
8576 distance
= fixp
->fx_offset
+ S_GET_VALUE (fixp
->fx_addsy
) - pc
- 8;
8578 /* Distance to the closest possible stub. This will detect most
8579 but not all circumstances where a stub will not work. */
8580 min_stub_distance
= pc
+ 16;
8582 if (last_call_info
!= NULL
)
8583 min_stub_distance
-= S_GET_VALUE (last_call_info
->start_symbol
);
8586 if ((distance
+ 8388608 >= 16777216
8587 && min_stub_distance
<= 8388608)
8588 || (hppa_fixp
->fx_r_format
== 17
8589 && distance
+ 262144 >= 524288
8590 && min_stub_distance
<= 262144)
8591 || (hppa_fixp
->fx_r_format
== 12
8592 && distance
+ 8192 >= 16384
8593 && min_stub_distance
<= 8192)
8598 if (fixp
->fx_r_type
== (int) R_HPPA_ABS_CALL
)
8601 /* No need (yet) to force another relocations to be emitted. */
8605 /* Now for some ELF specific code. FIXME. */
8607 /* Mark the end of a function so that it's possible to compute
8608 the size of the function in elf_hppa_final_processing. */
8611 hppa_elf_mark_end_of_function ()
8613 /* ELF does not have EXIT relocations. All we do is create a
8614 temporary symbol marking the end of the function. */
8617 if (last_call_info
== NULL
|| last_call_info
->start_symbol
== NULL
)
8619 /* We have already warned about a missing label,
8620 or other problems. */
8624 name
= (char *) xmalloc (strlen ("L$\001end_")
8625 + strlen (S_GET_NAME (last_call_info
->start_symbol
))
8631 strcpy (name
, "L$\001end_");
8632 strcat (name
, S_GET_NAME (last_call_info
->start_symbol
));
8634 /* If we have a .exit followed by a .procend, then the
8635 symbol will have already been defined. */
8636 symbolP
= symbol_find (name
);
8639 /* The symbol has already been defined! This can
8640 happen if we have a .exit followed by a .procend.
8642 This is *not* an error. All we want to do is free
8643 the memory we just allocated for the name and continue. */
8648 /* symbol value should be the offset of the
8649 last instruction of the function */
8650 symbolP
= symbol_new (name
, now_seg
, (valueT
) (frag_now_fix () - 4),
8654 S_CLEAR_EXTERNAL (symbolP
);
8655 symbol_table_insert (symbolP
);
8659 last_call_info
->end_symbol
= symbolP
;
8661 as_bad (_("Symbol '%s' could not be created."), name
);
8665 as_bad (_("No memory for symbol name."));
8669 /* For ELF, this function serves one purpose: to setup the st_size
8670 field of STT_FUNC symbols. To do this, we need to scan the
8671 call_info structure list, determining st_size in by taking the
8672 difference in the address of the beginning/end marker symbols. */
8675 elf_hppa_final_processing ()
8677 struct call_info
*call_info_pointer
;
8679 for (call_info_pointer
= call_info_root
;
8681 call_info_pointer
= call_info_pointer
->ci_next
)
8683 elf_symbol_type
*esym
8684 = ((elf_symbol_type
*)
8685 symbol_get_bfdsym (call_info_pointer
->start_symbol
));
8686 esym
->internal_elf_sym
.st_size
=
8687 S_GET_VALUE (call_info_pointer
->end_symbol
)
8688 - S_GET_VALUE (call_info_pointer
->start_symbol
) + 4;
8693 pa_vtable_entry (ignore
)
8694 int ignore ATTRIBUTE_UNUSED
;
8696 struct fix
*new_fix
;
8698 new_fix
= obj_elf_vtable_entry (0);
8702 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
8703 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8704 hppa_fix
->fx_r_type
= R_HPPA
;
8705 hppa_fix
->fx_r_field
= e_fsel
;
8706 hppa_fix
->fx_r_format
= 32;
8707 hppa_fix
->fx_arg_reloc
= 0;
8708 hppa_fix
->segment
= now_seg
;
8709 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8710 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTENTRY
;
8715 pa_vtable_inherit (ignore
)
8716 int ignore ATTRIBUTE_UNUSED
;
8718 struct fix
*new_fix
;
8720 new_fix
= obj_elf_vtable_inherit (0);
8724 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
8725 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8726 hppa_fix
->fx_r_type
= R_HPPA
;
8727 hppa_fix
->fx_r_field
= e_fsel
;
8728 hppa_fix
->fx_r_format
= 32;
8729 hppa_fix
->fx_arg_reloc
= 0;
8730 hppa_fix
->segment
= now_seg
;
8731 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8732 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTINHERIT
;