1 /* tc-hppa.c -- Assemble for the PA
2 Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002 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 "convient" 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 common subspace. */
369 /* Nonzero if this is a common subspace which allows symbols
370 to be multiply defined. */
373 /* Nonzero if this subspace should be zero filled. */
376 /* Sort key for this subspace. */
379 /* Access control bits for this subspace. Can represent RWX access
380 as well as privilege level changes for gateways. */
383 /* Index of containing space. */
386 /* Alignment (in bytes) of this subspace. */
389 /* Quadrant within space where this subspace should be loaded. */
392 /* An index into the default spaces array. */
395 /* Subsegment associated with this subspace. */
399 /* This structure defines attributes of the default space
400 dictionary entries. */
402 struct default_space_dict
404 /* Name of the space. */
407 /* Space number. It is possible to identify spaces within
408 assembly code numerically! */
411 /* Nonzero if this space is loadable. */
414 /* Nonzero if this space is "defined". FIXME is still needed */
417 /* Nonzero if this space can not be shared. */
420 /* Sort key for this space. */
423 /* Segment associated with this space. */
428 /* Structure for previous label tracking. Needed so that alignments,
429 callinfo declarations, etc can be easily attached to a particular
431 typedef struct label_symbol_struct
433 struct symbol
*lss_label
;
435 sd_chain_struct
*lss_space
;
440 struct label_symbol_struct
*lss_next
;
444 /* Extra information needed to perform fixups (relocations) on the PA. */
445 struct hppa_fix_struct
447 /* The field selector. */
448 enum hppa_reloc_field_selector_type_alt fx_r_field
;
453 /* Format of fixup. */
456 /* Argument relocation bits. */
457 unsigned int fx_arg_reloc
;
459 /* The segment this fixup appears in. */
463 /* Structure to hold information about predefined registers. */
471 /* This structure defines the mapping from a FP condition string
472 to a condition number which can be recorded in an instruction. */
479 /* This structure defines a mapping from a field selector
480 string to a field selector type. */
481 struct selector_entry
487 /* Prototypes for functions local to tc-hppa.c. */
490 static void pa_check_current_space_and_subspace
PARAMS ((void));
493 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
494 static void pa_text
PARAMS ((int));
495 static void pa_data
PARAMS ((int));
496 static void pa_comm
PARAMS ((int));
498 static fp_operand_format pa_parse_fp_format
PARAMS ((char **s
));
499 static void pa_cons
PARAMS ((int));
500 static void pa_float_cons
PARAMS ((int));
501 static void pa_fill
PARAMS ((int));
502 static void pa_lcomm
PARAMS ((int));
503 static void pa_lsym
PARAMS ((int));
504 static void pa_stringer
PARAMS ((int));
505 static void pa_version
PARAMS ((int));
506 static int pa_parse_fp_cmp_cond
PARAMS ((char **));
507 static int get_expression
PARAMS ((char *));
508 static int pa_get_absolute_expression
PARAMS ((struct pa_it
*, char **));
509 static int evaluate_absolute
PARAMS ((struct pa_it
*));
510 static unsigned int pa_build_arg_reloc
PARAMS ((char *));
511 static unsigned int pa_align_arg_reloc
PARAMS ((unsigned int, unsigned int));
512 static int pa_parse_nullif
PARAMS ((char **));
513 static int pa_parse_nonneg_cmpsub_cmpltr
PARAMS ((char **));
514 static int pa_parse_neg_cmpsub_cmpltr
PARAMS ((char **));
515 static int pa_parse_neg_add_cmpltr
PARAMS ((char **));
516 static int pa_parse_nonneg_add_cmpltr
PARAMS ((char **));
517 static int pa_parse_cmpb_64_cmpltr
PARAMS ((char **));
518 static int pa_parse_cmpib_64_cmpltr
PARAMS ((char **));
519 static int pa_parse_addb_64_cmpltr
PARAMS ((char **));
520 static void pa_block
PARAMS ((int));
521 static void pa_brtab
PARAMS ((int));
522 static void pa_try
PARAMS ((int));
523 static void pa_call
PARAMS ((int));
524 static void pa_call_args
PARAMS ((struct call_desc
*));
525 static void pa_callinfo
PARAMS ((int));
526 static void pa_copyright
PARAMS ((int));
527 static void pa_end
PARAMS ((int));
528 static void pa_enter
PARAMS ((int));
529 static void pa_entry
PARAMS ((int));
530 static void pa_equ
PARAMS ((int));
531 static void pa_exit
PARAMS ((int));
532 static void pa_export
PARAMS ((int));
533 static void pa_type_args
PARAMS ((symbolS
*, int));
534 static void pa_import
PARAMS ((int));
535 static void pa_label
PARAMS ((int));
536 static void pa_leave
PARAMS ((int));
537 static void pa_level
PARAMS ((int));
538 static void pa_origin
PARAMS ((int));
539 static void pa_proc
PARAMS ((int));
540 static void pa_procend
PARAMS ((int));
541 static void pa_param
PARAMS ((int));
542 static void pa_undefine_label
PARAMS ((void));
543 static int need_pa11_opcode
PARAMS ((void));
544 static int pa_parse_number
PARAMS ((char **, int));
545 static label_symbol_struct
*pa_get_label
PARAMS ((void));
547 static int log2
PARAMS ((int));
548 static void pa_compiler
PARAMS ((int));
549 static void pa_align
PARAMS ((int));
550 static void pa_space
PARAMS ((int));
551 static void pa_spnum
PARAMS ((int));
552 static void pa_subspace
PARAMS ((int));
553 static sd_chain_struct
*create_new_space
PARAMS ((char *, int, int,
556 static ssd_chain_struct
*create_new_subspace
PARAMS ((sd_chain_struct
*,
561 static ssd_chain_struct
*update_subspace
PARAMS ((sd_chain_struct
*,
562 char *, int, int, int,
566 static sd_chain_struct
*is_defined_space
PARAMS ((char *));
567 static ssd_chain_struct
*is_defined_subspace
PARAMS ((char *));
568 static sd_chain_struct
*pa_segment_to_space
PARAMS ((asection
*));
569 static ssd_chain_struct
*pa_subsegment_to_subspace
PARAMS ((asection
*,
571 static sd_chain_struct
*pa_find_space_by_number
PARAMS ((int));
572 static unsigned int pa_subspace_start
PARAMS ((sd_chain_struct
*, int));
573 static sd_chain_struct
*pa_parse_space_stmt
PARAMS ((char *, int));
574 static int pa_next_subseg
PARAMS ((sd_chain_struct
*));
575 static void pa_spaces_begin
PARAMS ((void));
577 static void pa_ip
PARAMS ((char *));
578 static void fix_new_hppa
PARAMS ((fragS
*, int, int, symbolS
*,
579 offsetT
, expressionS
*, int,
580 bfd_reloc_code_real_type
,
581 enum hppa_reloc_field_selector_type_alt
,
582 int, unsigned int, int));
583 static int is_end_of_statement
PARAMS ((void));
584 static int reg_name_search
PARAMS ((char *));
585 static int pa_chk_field_selector
PARAMS ((char **));
586 static int is_same_frag
PARAMS ((fragS
*, fragS
*));
587 static void process_exit
PARAMS ((void));
588 static unsigned int pa_stringer_aux
PARAMS ((char *));
589 static fp_operand_format pa_parse_fp_cnv_format
PARAMS ((char **s
));
590 static int pa_parse_ftest_gfx_completer
PARAMS ((char **));
593 static void hppa_elf_mark_end_of_function
PARAMS ((void));
594 static void pa_build_unwind_subspace
PARAMS ((struct call_info
*));
595 static void pa_vtable_entry
PARAMS ((int));
596 static void pa_vtable_inherit
PARAMS ((int));
599 /* File and gloally scoped variable declarations. */
602 /* Root and final entry in the space chain. */
603 static sd_chain_struct
*space_dict_root
;
604 static sd_chain_struct
*space_dict_last
;
606 /* The current space and subspace. */
607 static sd_chain_struct
*current_space
;
608 static ssd_chain_struct
*current_subspace
;
611 /* Root of the call_info chain. */
612 static struct call_info
*call_info_root
;
614 /* The last call_info (for functions) structure
615 seen so it can be associated with fixups and
617 static struct call_info
*last_call_info
;
619 /* The last call description (for actual calls). */
620 static struct call_desc last_call_desc
;
622 /* handle of the OPCODE hash table */
623 static struct hash_control
*op_hash
= NULL
;
625 /* Table of pseudo ops for the PA. FIXME -- how many of these
626 are now redundant with the overall GAS and the object file
628 const pseudo_typeS md_pseudo_table
[] =
630 /* align pseudo-ops on the PA specify the actual alignment requested,
631 not the log2 of the requested alignment. */
633 {"align", pa_align
, 8},
636 {"align", s_align_bytes
, 8},
638 {"begin_brtab", pa_brtab
, 1},
639 {"begin_try", pa_try
, 1},
640 {"block", pa_block
, 1},
641 {"blockz", pa_block
, 0},
642 {"byte", pa_cons
, 1},
643 {"call", pa_call
, 0},
644 {"callinfo", pa_callinfo
, 0},
645 #if defined (OBJ_ELF) && defined (TE_LINUX)
646 {"code", obj_elf_text
, 0},
648 {"code", pa_text
, 0},
649 {"comm", pa_comm
, 0},
652 {"compiler", pa_compiler
, 0},
654 {"copyright", pa_copyright
, 0},
655 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
656 {"data", pa_data
, 0},
658 {"double", pa_float_cons
, 'd'},
659 {"dword", pa_cons
, 8},
661 {"end_brtab", pa_brtab
, 0},
662 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
663 {"end_try", pa_try
, 0},
665 {"enter", pa_enter
, 0},
666 {"entry", pa_entry
, 0},
668 {"exit", pa_exit
, 0},
669 {"export", pa_export
, 0},
671 {"file", (void (*) PARAMS ((int))) dwarf2_directive_file
, 0 },
673 {"fill", pa_fill
, 0},
674 {"float", pa_float_cons
, 'f'},
675 {"half", pa_cons
, 2},
676 {"import", pa_import
, 0},
678 {"label", pa_label
, 0},
679 {"lcomm", pa_lcomm
, 0},
680 {"leave", pa_leave
, 0},
681 {"level", pa_level
, 0},
683 {"loc", dwarf2_directive_loc
, 0 },
685 {"long", pa_cons
, 4},
686 {"lsym", pa_lsym
, 0},
688 {"nsubspa", pa_subspace
, 1},
690 {"octa", pa_cons
, 16},
691 {"org", pa_origin
, 0},
692 {"origin", pa_origin
, 0},
693 {"param", pa_param
, 0},
694 {"proc", pa_proc
, 0},
695 {"procend", pa_procend
, 0},
696 {"quad", pa_cons
, 8},
698 {"short", pa_cons
, 2},
699 {"single", pa_float_cons
, 'f'},
701 {"space", pa_space
, 0},
702 {"spnum", pa_spnum
, 0},
704 {"string", pa_stringer
, 0},
705 {"stringz", pa_stringer
, 1},
707 {"subspa", pa_subspace
, 0},
709 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
710 {"text", pa_text
, 0},
712 {"version", pa_version
, 0},
714 {"vtable_entry", pa_vtable_entry
, 0},
715 {"vtable_inherit", pa_vtable_inherit
, 0},
717 {"word", pa_cons
, 4},
721 /* This array holds the chars that only start a comment at the beginning of
722 a line. If the line seems to have the form '# 123 filename'
723 .line and .file directives will appear in the pre-processed output.
725 Note that input_file.c hand checks for '#' at the beginning of the
726 first line of the input file. This is because the compiler outputs
727 #NO_APP at the beginning of its output.
729 Also note that C style comments will always work. */
730 const char line_comment_chars
[] = "#";
732 /* This array holds the chars that always start a comment. If the
733 pre-processor is disabled, these aren't very useful. */
734 const char comment_chars
[] = ";";
736 /* This array holds the characters which act as line separators. */
737 const char line_separator_chars
[] = "!";
739 /* Chars that can be used to separate mant from exp in floating point nums. */
740 const char EXP_CHARS
[] = "eE";
742 /* Chars that mean this number is a floating point constant.
743 As in 0f12.456 or 0d1.2345e12.
745 Be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
746 changed in read.c. Ideally it shouldn't hae to know abou it at
747 all, but nothing is ideal around here. */
748 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
750 static struct pa_it the_insn
;
752 /* Points to the end of an expression just parsed by get_expressoin
753 and friends. FIXME. This shouldn't be handled with a file-global
755 static char *expr_end
;
757 /* Nonzero if a .callinfo appeared within the current procedure. */
758 static int callinfo_found
;
760 /* Nonzero if the assembler is currently within a .entry/.exit pair. */
761 static int within_entry_exit
;
763 /* Nonzero if the assembler is currently within a procedure definition. */
764 static int within_procedure
;
766 /* Handle on structure which keep track of the last symbol
767 seen in each subspace. */
768 static label_symbol_struct
*label_symbols_rootp
= NULL
;
770 /* Holds the last field selector. */
771 static int hppa_field_selector
;
773 /* Nonzero when strict syntax checking is enabled. Zero otherwise.
775 Each opcode in the table has a flag which indicates whether or not
776 strict syntax checking should be enabled for that instruction. */
777 static int strict
= 0;
779 /* pa_parse_number returns values in `pa_number'. Mostly
780 pa_parse_number is used to return a register number, with floating
781 point registers being numbered from FP_REG_BASE upwards.
782 The bit specified with FP_REG_RSEL is set if the floating point
783 register has a `r' suffix. */
784 #define FP_REG_BASE 64
785 #define FP_REG_RSEL 128
786 static int pa_number
;
789 /* A dummy bfd symbol so that all relocations have symbols of some kind. */
790 static symbolS
*dummy_symbol
;
793 /* Nonzero if errors are to be printed. */
794 static int print_errors
= 1;
796 /* List of registers that are pre-defined:
798 Each general register has one predefined name of the form
799 %r<REGNUM> which has the value <REGNUM>.
801 Space and control registers are handled in a similar manner,
802 but use %sr<REGNUM> and %cr<REGNUM> as their predefined names.
804 Likewise for the floating point registers, but of the form
805 %fr<REGNUM>. Floating point registers have additional predefined
806 names with 'L' and 'R' suffixes (e.g. %fr19L, %fr19R) which
807 again have the value <REGNUM>.
809 Many registers also have synonyms:
811 %r26 - %r23 have %arg0 - %arg3 as synonyms
812 %r28 - %r29 have %ret0 - %ret1 as synonyms
813 %r30 has %sp as a synonym
814 %r27 has %dp as a synonym
815 %r2 has %rp as a synonym
817 Almost every control register has a synonym; they are not listed
820 The table is sorted. Suitable for searching by a binary search. */
822 static const struct pd_reg pre_defined_registers
[] =
856 {"%fr0", 0 + FP_REG_BASE
},
857 {"%fr0l", 0 + FP_REG_BASE
},
858 {"%fr0r", 0 + FP_REG_BASE
+ FP_REG_RSEL
},
859 {"%fr1", 1 + FP_REG_BASE
},
860 {"%fr10", 10 + FP_REG_BASE
},
861 {"%fr10l", 10 + FP_REG_BASE
},
862 {"%fr10r", 10 + FP_REG_BASE
+ FP_REG_RSEL
},
863 {"%fr11", 11 + FP_REG_BASE
},
864 {"%fr11l", 11 + FP_REG_BASE
},
865 {"%fr11r", 11 + FP_REG_BASE
+ FP_REG_RSEL
},
866 {"%fr12", 12 + FP_REG_BASE
},
867 {"%fr12l", 12 + FP_REG_BASE
},
868 {"%fr12r", 12 + FP_REG_BASE
+ FP_REG_RSEL
},
869 {"%fr13", 13 + FP_REG_BASE
},
870 {"%fr13l", 13 + FP_REG_BASE
},
871 {"%fr13r", 13 + FP_REG_BASE
+ FP_REG_RSEL
},
872 {"%fr14", 14 + FP_REG_BASE
},
873 {"%fr14l", 14 + FP_REG_BASE
},
874 {"%fr14r", 14 + FP_REG_BASE
+ FP_REG_RSEL
},
875 {"%fr15", 15 + FP_REG_BASE
},
876 {"%fr15l", 15 + FP_REG_BASE
},
877 {"%fr15r", 15 + FP_REG_BASE
+ FP_REG_RSEL
},
878 {"%fr16", 16 + FP_REG_BASE
},
879 {"%fr16l", 16 + FP_REG_BASE
},
880 {"%fr16r", 16 + FP_REG_BASE
+ FP_REG_RSEL
},
881 {"%fr17", 17 + FP_REG_BASE
},
882 {"%fr17l", 17 + FP_REG_BASE
},
883 {"%fr17r", 17 + FP_REG_BASE
+ FP_REG_RSEL
},
884 {"%fr18", 18 + FP_REG_BASE
},
885 {"%fr18l", 18 + FP_REG_BASE
},
886 {"%fr18r", 18 + FP_REG_BASE
+ FP_REG_RSEL
},
887 {"%fr19", 19 + FP_REG_BASE
},
888 {"%fr19l", 19 + FP_REG_BASE
},
889 {"%fr19r", 19 + FP_REG_BASE
+ FP_REG_RSEL
},
890 {"%fr1l", 1 + FP_REG_BASE
},
891 {"%fr1r", 1 + FP_REG_BASE
+ FP_REG_RSEL
},
892 {"%fr2", 2 + FP_REG_BASE
},
893 {"%fr20", 20 + FP_REG_BASE
},
894 {"%fr20l", 20 + FP_REG_BASE
},
895 {"%fr20r", 20 + FP_REG_BASE
+ FP_REG_RSEL
},
896 {"%fr21", 21 + FP_REG_BASE
},
897 {"%fr21l", 21 + FP_REG_BASE
},
898 {"%fr21r", 21 + FP_REG_BASE
+ FP_REG_RSEL
},
899 {"%fr22", 22 + FP_REG_BASE
},
900 {"%fr22l", 22 + FP_REG_BASE
},
901 {"%fr22r", 22 + FP_REG_BASE
+ FP_REG_RSEL
},
902 {"%fr23", 23 + FP_REG_BASE
},
903 {"%fr23l", 23 + FP_REG_BASE
},
904 {"%fr23r", 23 + FP_REG_BASE
+ FP_REG_RSEL
},
905 {"%fr24", 24 + FP_REG_BASE
},
906 {"%fr24l", 24 + FP_REG_BASE
},
907 {"%fr24r", 24 + FP_REG_BASE
+ FP_REG_RSEL
},
908 {"%fr25", 25 + FP_REG_BASE
},
909 {"%fr25l", 25 + FP_REG_BASE
},
910 {"%fr25r", 25 + FP_REG_BASE
+ FP_REG_RSEL
},
911 {"%fr26", 26 + FP_REG_BASE
},
912 {"%fr26l", 26 + FP_REG_BASE
},
913 {"%fr26r", 26 + FP_REG_BASE
+ FP_REG_RSEL
},
914 {"%fr27", 27 + FP_REG_BASE
},
915 {"%fr27l", 27 + FP_REG_BASE
},
916 {"%fr27r", 27 + FP_REG_BASE
+ FP_REG_RSEL
},
917 {"%fr28", 28 + FP_REG_BASE
},
918 {"%fr28l", 28 + FP_REG_BASE
},
919 {"%fr28r", 28 + FP_REG_BASE
+ FP_REG_RSEL
},
920 {"%fr29", 29 + FP_REG_BASE
},
921 {"%fr29l", 29 + FP_REG_BASE
},
922 {"%fr29r", 29 + FP_REG_BASE
+ FP_REG_RSEL
},
923 {"%fr2l", 2 + FP_REG_BASE
},
924 {"%fr2r", 2 + FP_REG_BASE
+ FP_REG_RSEL
},
925 {"%fr3", 3 + FP_REG_BASE
},
926 {"%fr30", 30 + FP_REG_BASE
},
927 {"%fr30l", 30 + FP_REG_BASE
},
928 {"%fr30r", 30 + FP_REG_BASE
+ FP_REG_RSEL
},
929 {"%fr31", 31 + FP_REG_BASE
},
930 {"%fr31l", 31 + FP_REG_BASE
},
931 {"%fr31r", 31 + FP_REG_BASE
+ FP_REG_RSEL
},
932 {"%fr3l", 3 + FP_REG_BASE
},
933 {"%fr3r", 3 + FP_REG_BASE
+ FP_REG_RSEL
},
934 {"%fr4", 4 + FP_REG_BASE
},
935 {"%fr4l", 4 + FP_REG_BASE
},
936 {"%fr4r", 4 + FP_REG_BASE
+ FP_REG_RSEL
},
937 {"%fr5", 5 + FP_REG_BASE
},
938 {"%fr5l", 5 + FP_REG_BASE
},
939 {"%fr5r", 5 + FP_REG_BASE
+ FP_REG_RSEL
},
940 {"%fr6", 6 + FP_REG_BASE
},
941 {"%fr6l", 6 + FP_REG_BASE
},
942 {"%fr6r", 6 + FP_REG_BASE
+ FP_REG_RSEL
},
943 {"%fr7", 7 + FP_REG_BASE
},
944 {"%fr7l", 7 + FP_REG_BASE
},
945 {"%fr7r", 7 + FP_REG_BASE
+ FP_REG_RSEL
},
946 {"%fr8", 8 + FP_REG_BASE
},
947 {"%fr8l", 8 + FP_REG_BASE
},
948 {"%fr8r", 8 + FP_REG_BASE
+ FP_REG_RSEL
},
949 {"%fr9", 9 + FP_REG_BASE
},
950 {"%fr9l", 9 + FP_REG_BASE
},
951 {"%fr9r", 9 + FP_REG_BASE
+ FP_REG_RSEL
},
959 #if TARGET_ARCH_SIZE == 64
1027 /* This table is sorted by order of the length of the string. This is
1028 so we check for <> before we check for <. If we had a <> and checked
1029 for < first, we would get a false match. */
1030 static const struct fp_cond_map fp_cond_map
[] =
1066 static const struct selector_entry selector_table
[] =
1091 /* default space and subspace dictionaries */
1093 #define GDB_SYMBOLS GDB_SYMBOLS_SUBSPACE_NAME
1094 #define GDB_STRINGS GDB_STRINGS_SUBSPACE_NAME
1096 /* pre-defined subsegments (subspaces) for the HPPA. */
1097 #define SUBSEG_CODE 0
1098 #define SUBSEG_LIT 1
1099 #define SUBSEG_MILLI 2
1100 #define SUBSEG_DATA 0
1101 #define SUBSEG_BSS 2
1102 #define SUBSEG_UNWIND 3
1103 #define SUBSEG_GDB_STRINGS 0
1104 #define SUBSEG_GDB_SYMBOLS 1
1106 static struct default_subspace_dict pa_def_subspaces
[] =
1108 {"$CODE$", 1, 1, 1, 0, 0, 0, 24, 0x2c, 0, 8, 0, 0, SUBSEG_CODE
},
1109 {"$DATA$", 1, 1, 0, 0, 0, 0, 24, 0x1f, 1, 8, 1, 1, SUBSEG_DATA
},
1110 {"$LIT$", 1, 1, 0, 0, 0, 0, 16, 0x2c, 0, 8, 0, 0, SUBSEG_LIT
},
1111 {"$MILLICODE$", 1, 1, 0, 0, 0, 0, 8, 0x2c, 0, 8, 0, 0, SUBSEG_MILLI
},
1112 {"$BSS$", 1, 1, 0, 0, 0, 1, 80, 0x1f, 1, 8, 1, 1, SUBSEG_BSS
},
1113 {NULL
, 0, 1, 0, 0, 0, 0, 255, 0x1f, 0, 4, 0, 0, 0}
1116 static struct default_space_dict pa_def_spaces
[] =
1118 {"$TEXT$", 0, 1, 1, 0, 8, ASEC_NULL
},
1119 {"$PRIVATE$", 1, 1, 1, 1, 16, ASEC_NULL
},
1120 {NULL
, 0, 0, 0, 0, 0, ASEC_NULL
}
1123 /* Misc local definitions used by the assembler. */
1125 /* These macros are used to maintain spaces/subspaces. */
1126 #define SPACE_DEFINED(space_chain) (space_chain)->sd_defined
1127 #define SPACE_USER_DEFINED(space_chain) (space_chain)->sd_user_defined
1128 #define SPACE_SPNUM(space_chain) (space_chain)->sd_spnum
1129 #define SPACE_NAME(space_chain) (space_chain)->sd_name
1131 #define SUBSPACE_DEFINED(ss_chain) (ss_chain)->ssd_defined
1132 #define SUBSPACE_NAME(ss_chain) (ss_chain)->ssd_name
1135 /* Return nonzero if the string pointed to by S potentially represents
1136 a right or left half of a FP register */
1137 #define IS_R_SELECT(S) (*(S) == 'R' || *(S) == 'r')
1138 #define IS_L_SELECT(S) (*(S) == 'L' || *(S) == 'l')
1140 /* Insert FIELD into OPCODE starting at bit START. Continue pa_ip
1141 main loop after insertion. */
1143 #define INSERT_FIELD_AND_CONTINUE(OPCODE, FIELD, START) \
1145 ((OPCODE) |= (FIELD) << (START)); \
1149 /* Simple range checking for FIELD againt HIGH and LOW bounds.
1150 IGNORE is used to suppress the error message. */
1152 #define CHECK_FIELD(FIELD, HIGH, LOW, IGNORE) \
1154 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1157 as_bad (_("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1163 /* Variant of CHECK_FIELD for use in md_apply_fix3 and other places where
1164 the current file and line number are not valid. */
1166 #define CHECK_FIELD_WHERE(FIELD, HIGH, LOW, FILENAME, LINE) \
1168 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1170 as_bad_where ((FILENAME), (LINE), \
1171 _("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1177 /* Simple alignment checking for FIELD againt ALIGN (a power of two).
1178 IGNORE is used to suppress the error message. */
1180 #define CHECK_ALIGN(FIELD, ALIGN, IGNORE) \
1182 if ((FIELD) & ((ALIGN) - 1)) \
1185 as_bad (_("Field not properly aligned [%d] (%d)."), (ALIGN), \
1191 #define is_DP_relative(exp) \
1192 ((exp).X_op == O_subtract \
1193 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$global$") == 0)
1195 #define is_PC_relative(exp) \
1196 ((exp).X_op == O_subtract \
1197 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$PIC_pcrel$0") == 0)
1199 /* We need some complex handling for stabs (sym1 - sym2). Luckily, we'll
1200 always be able to reduce the expression to a constant, so we don't
1201 need real complex handling yet. */
1202 #define is_complex(exp) \
1203 ((exp).X_op != O_constant && (exp).X_op != O_symbol)
1205 /* Actual functions to implement the PA specific code for the assembler. */
1207 /* Called before writing the object file. Make sure entry/exit and
1208 proc/procend pairs match. */
1213 if (within_entry_exit
)
1214 as_fatal (_("Missing .exit\n"));
1216 if (within_procedure
)
1217 as_fatal (_("Missing .procend\n"));
1220 /* Returns a pointer to the label_symbol_struct for the current space.
1221 or NULL if no label_symbol_struct exists for the current space. */
1223 static label_symbol_struct
*
1226 label_symbol_struct
*label_chain
;
1228 for (label_chain
= label_symbols_rootp
;
1230 label_chain
= label_chain
->lss_next
)
1233 if (current_space
== label_chain
->lss_space
&& label_chain
->lss_label
)
1237 if (now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
)
1245 /* Defines a label for the current space. If one is already defined,
1246 this function will replace it with the new label. */
1249 pa_define_label (symbol
)
1252 label_symbol_struct
*label_chain
= pa_get_label ();
1255 label_chain
->lss_label
= symbol
;
1258 /* Create a new label entry and add it to the head of the chain. */
1260 = (label_symbol_struct
*) xmalloc (sizeof (label_symbol_struct
));
1261 label_chain
->lss_label
= symbol
;
1263 label_chain
->lss_space
= current_space
;
1266 label_chain
->lss_segment
= now_seg
;
1268 label_chain
->lss_next
= NULL
;
1270 if (label_symbols_rootp
)
1271 label_chain
->lss_next
= label_symbols_rootp
;
1273 label_symbols_rootp
= label_chain
;
1277 /* Removes a label definition for the current space.
1278 If there is no label_symbol_struct entry, then no action is taken. */
1281 pa_undefine_label ()
1283 label_symbol_struct
*label_chain
;
1284 label_symbol_struct
*prev_label_chain
= NULL
;
1286 for (label_chain
= label_symbols_rootp
;
1288 label_chain
= label_chain
->lss_next
)
1292 && current_space
== label_chain
->lss_space
&& label_chain
->lss_label
1295 && now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
1299 /* Remove the label from the chain and free its memory. */
1300 if (prev_label_chain
)
1301 prev_label_chain
->lss_next
= label_chain
->lss_next
;
1303 label_symbols_rootp
= label_chain
->lss_next
;
1308 prev_label_chain
= label_chain
;
1312 /* An HPPA-specific version of fix_new. This is required because the HPPA
1313 code needs to keep track of some extra stuff. Each call to fix_new_hppa
1314 results in the creation of an instance of an hppa_fix_struct. An
1315 hppa_fix_struct stores the extra information along with a pointer to the
1316 original fixS. This is attached to the original fixup via the
1317 tc_fix_data field. */
1320 fix_new_hppa (frag
, where
, size
, add_symbol
, offset
, exp
, pcrel
,
1321 r_type
, r_field
, r_format
, arg_reloc
, unwind_bits
)
1325 symbolS
*add_symbol
;
1329 bfd_reloc_code_real_type r_type
;
1330 enum hppa_reloc_field_selector_type_alt r_field
;
1332 unsigned int arg_reloc
;
1333 int unwind_bits ATTRIBUTE_UNUSED
;
1337 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
1338 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
1341 new_fix
= fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
);
1343 new_fix
= fix_new (frag
, where
, size
, add_symbol
, offset
, pcrel
, r_type
);
1344 new_fix
->tc_fix_data
= (void *) hppa_fix
;
1345 hppa_fix
->fx_r_type
= r_type
;
1346 hppa_fix
->fx_r_field
= r_field
;
1347 hppa_fix
->fx_r_format
= r_format
;
1348 hppa_fix
->fx_arg_reloc
= arg_reloc
;
1349 hppa_fix
->segment
= now_seg
;
1351 if (r_type
== R_ENTRY
|| r_type
== R_EXIT
)
1352 new_fix
->fx_offset
= unwind_bits
;
1355 /* foo-$global$ is used to access non-automatic storage. $global$
1356 is really just a marker and has served its purpose, so eliminate
1357 it now so as not to confuse write.c. Ditto for $PIC_pcrel$0. */
1358 if (new_fix
->fx_subsy
1359 && (strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$global$") == 0
1360 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$PIC_pcrel$0") == 0))
1361 new_fix
->fx_subsy
= NULL
;
1364 /* Parse a .byte, .word, .long expression for the HPPA. Called by
1365 cons via the TC_PARSE_CONS_EXPRESSION macro. */
1368 parse_cons_expression_hppa (exp
)
1371 hppa_field_selector
= pa_chk_field_selector (&input_line_pointer
);
1375 /* This fix_new is called by cons via TC_CONS_FIX_NEW.
1376 hppa_field_selector is set by the parse_cons_expression_hppa. */
1379 cons_fix_new_hppa (frag
, where
, size
, exp
)
1385 unsigned int rel_type
;
1387 /* Get a base relocation type. */
1388 if (is_DP_relative (*exp
))
1389 rel_type
= R_HPPA_GOTOFF
;
1390 else if (is_complex (*exp
))
1391 rel_type
= R_HPPA_COMPLEX
;
1395 if (hppa_field_selector
!= e_psel
&& hppa_field_selector
!= e_fsel
)
1397 as_warn (_("Invalid field selector. Assuming F%%."));
1398 hppa_field_selector
= e_fsel
;
1401 fix_new_hppa (frag
, where
, size
,
1402 (symbolS
*) NULL
, (offsetT
) 0, exp
, 0, rel_type
,
1403 hppa_field_selector
, size
* 8, 0, 0);
1405 /* Reset field selector to its default state. */
1406 hppa_field_selector
= 0;
1409 /* This function is called once, at assembler startup time. It should
1410 set up all the tables, etc. that the MD part of the assembler will need. */
1415 const char *retval
= NULL
;
1419 last_call_info
= NULL
;
1420 call_info_root
= NULL
;
1422 /* Set the default machine type. */
1423 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, DEFAULT_LEVEL
))
1424 as_warn (_("could not set architecture and machine"));
1426 /* Folding of text and data segments fails miserably on the PA.
1427 Warn user and disable "-R" option. */
1428 if (flag_readonly_data_in_text
)
1430 as_warn (_("-R option not supported on this target."));
1431 flag_readonly_data_in_text
= 0;
1438 op_hash
= hash_new ();
1440 while (i
< NUMOPCODES
)
1442 const char *name
= pa_opcodes
[i
].name
;
1443 retval
= hash_insert (op_hash
, name
, (struct pa_opcode
*) &pa_opcodes
[i
]);
1444 if (retval
!= NULL
&& *retval
!= '\0')
1446 as_fatal (_("Internal error: can't hash `%s': %s\n"), name
, retval
);
1451 if ((pa_opcodes
[i
].match
& pa_opcodes
[i
].mask
)
1452 != pa_opcodes
[i
].match
)
1454 fprintf (stderr
, _("internal error: losing opcode: `%s' \"%s\"\n"),
1455 pa_opcodes
[i
].name
, pa_opcodes
[i
].args
);
1460 while (i
< NUMOPCODES
&& !strcmp (pa_opcodes
[i
].name
, name
));
1464 as_fatal (_("Broken assembler. No assembly attempted."));
1467 /* SOM will change text_section. To make sure we never put
1468 anything into the old one switch to the new one now. */
1469 subseg_set (text_section
, 0);
1473 dummy_symbol
= symbol_find_or_make ("L$dummy");
1474 S_SET_SEGMENT (dummy_symbol
, text_section
);
1475 /* Force the symbol to be converted to a real symbol. */
1476 (void) symbol_get_bfdsym (dummy_symbol
);
1480 /* Assemble a single instruction storing it into a frag. */
1487 /* The had better be something to assemble. */
1490 /* If we are within a procedure definition, make sure we've
1491 defined a label for the procedure; handle case where the
1492 label was defined after the .PROC directive.
1494 Note there's not need to diddle with the segment or fragment
1495 for the label symbol in this case. We have already switched
1496 into the new $CODE$ subspace at this point. */
1497 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
1499 label_symbol_struct
*label_symbol
= pa_get_label ();
1503 if (label_symbol
->lss_label
)
1505 last_call_info
->start_symbol
= label_symbol
->lss_label
;
1506 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
1509 /* Also handle allocation of a fixup to hold the unwind
1510 information when the label appears after the proc/procend. */
1511 if (within_entry_exit
)
1516 where
= frag_more (0);
1517 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
1518 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
1519 NULL
, (offsetT
) 0, NULL
,
1520 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
1525 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
1528 as_bad (_("Missing function name for .PROC"));
1531 /* Assemble the instruction. Results are saved into "the_insn". */
1534 /* Get somewhere to put the assembled instrution. */
1537 /* Output the opcode. */
1538 md_number_to_chars (to
, the_insn
.opcode
, 4);
1540 /* If necessary output more stuff. */
1541 if (the_insn
.reloc
!= R_HPPA_NONE
)
1542 fix_new_hppa (frag_now
, (to
- frag_now
->fr_literal
), 4, NULL
,
1543 (offsetT
) 0, &the_insn
.exp
, the_insn
.pcrel
,
1544 the_insn
.reloc
, the_insn
.field_selector
,
1545 the_insn
.format
, the_insn
.arg_reloc
, 0);
1548 dwarf2_emit_insn (4);
1552 /* Do the real work for assembling a single instruction. Store results
1553 into the global "the_insn" variable. */
1559 char *error_message
= "";
1560 char *s
, c
, *argstart
, *name
, *save_s
;
1564 int cmpltr
, nullif
, flag
, cond
, num
;
1565 unsigned long opcode
;
1566 struct pa_opcode
*insn
;
1569 /* We must have a valid space and subspace. */
1570 pa_check_current_space_and_subspace ();
1573 /* Convert everything up to the first whitespace character into lower
1575 for (s
= str
; *s
!= ' ' && *s
!= '\t' && *s
!= '\n' && *s
!= '\0'; s
++)
1578 /* Skip to something interesting. */
1580 ISUPPER (*s
) || ISLOWER (*s
) || (*s
>= '0' && *s
<= '3');
1600 as_fatal (_("Unknown opcode: `%s'"), str
);
1603 /* Look up the opcode in the has table. */
1604 if ((insn
= (struct pa_opcode
*) hash_find (op_hash
, str
)) == NULL
)
1606 as_bad ("Unknown opcode: `%s'", str
);
1615 /* Mark the location where arguments for the instruction start, then
1616 start processing them. */
1620 /* Do some initialization. */
1621 opcode
= insn
->match
;
1622 strict
= (insn
->flags
& FLAG_STRICT
);
1623 memset (&the_insn
, 0, sizeof (the_insn
));
1625 the_insn
.reloc
= R_HPPA_NONE
;
1627 /* If this instruction is specific to a particular architecture,
1628 then set a new architecture. */
1629 /* But do not automatically promote to pa2.0. The automatic promotion
1630 crud is for compatability with HP's old assemblers only. */
1632 && bfd_get_mach (stdoutput
) < insn
->arch
)
1634 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, insn
->arch
))
1635 as_warn (_("could not update architecture and machine"));
1637 else if (bfd_get_mach (stdoutput
) < insn
->arch
)
1643 /* Build the opcode, checking as we go to make
1644 sure that the operands match. */
1645 for (args
= insn
->args
;; ++args
)
1647 /* Absorb white space in instruction. */
1648 while (*s
== ' ' || *s
== '\t')
1654 /* End of arguments. */
1670 /* These must match exactly. */
1679 /* Handle a 5 bit register or control register field at 10. */
1682 if (!pa_parse_number (&s
, 0))
1685 CHECK_FIELD (num
, 31, 0, 0);
1686 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
1688 /* Handle %sar or %cr11. No bits get set, we just verify that it
1691 /* Skip whitespace before register. */
1692 while (*s
== ' ' || *s
== '\t')
1695 if (!strncasecmp (s
, "%sar", 4))
1700 else if (!strncasecmp (s
, "%cr11", 5))
1707 /* Handle a 5 bit register field at 15. */
1709 if (!pa_parse_number (&s
, 0))
1712 CHECK_FIELD (num
, 31, 0, 0);
1713 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1715 /* Handle a 5 bit register field at 31. */
1717 if (!pa_parse_number (&s
, 0))
1720 CHECK_FIELD (num
, 31, 0, 0);
1721 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1723 /* Handle a 5 bit register field at 10 and 15. */
1725 if (!pa_parse_number (&s
, 0))
1728 CHECK_FIELD (num
, 31, 0, 0);
1729 opcode
|= num
<< 16;
1730 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
1732 /* Handle a 5 bit field length at 31. */
1734 num
= pa_get_absolute_expression (&the_insn
, &s
);
1735 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1738 CHECK_FIELD (num
, 32, 1, 0);
1739 INSERT_FIELD_AND_CONTINUE (opcode
, 32 - num
, 0);
1741 /* Handle a 5 bit immediate at 15. */
1743 num
= pa_get_absolute_expression (&the_insn
, &s
);
1744 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1747 /* When in strict mode, we want to just reject this
1748 match instead of giving an out of range error. */
1749 CHECK_FIELD (num
, 15, -16, strict
);
1750 num
= low_sign_unext (num
, 5);
1751 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1753 /* Handle a 5 bit immediate at 31. */
1755 num
= pa_get_absolute_expression (&the_insn
, &s
);
1756 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1759 /* When in strict mode, we want to just reject this
1760 match instead of giving an out of range error. */
1761 CHECK_FIELD (num
, 15, -16, strict
);
1762 num
= low_sign_unext (num
, 5);
1763 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1765 /* Handle an unsigned 5 bit immediate at 31. */
1767 num
= pa_get_absolute_expression (&the_insn
, &s
);
1768 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1771 CHECK_FIELD (num
, 31, 0, strict
);
1772 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1774 /* Handle an unsigned 5 bit immediate at 15. */
1776 num
= pa_get_absolute_expression (&the_insn
, &s
);
1777 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1780 CHECK_FIELD (num
, 31, 0, strict
);
1781 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1783 /* Handle an unsigned 10 bit immediate at 15. */
1785 num
= pa_get_absolute_expression (&the_insn
, &s
);
1786 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1789 CHECK_FIELD (num
, 1023, 0, strict
);
1790 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1792 /* Handle a 2 bit space identifier at 17. */
1794 if (!pa_parse_number (&s
, 0))
1797 CHECK_FIELD (num
, 3, 0, 1);
1798 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 14);
1800 /* Handle a 3 bit space identifier at 18. */
1802 if (!pa_parse_number (&s
, 0))
1805 CHECK_FIELD (num
, 7, 0, 1);
1806 opcode
|= re_assemble_3 (num
);
1809 /* Handle all completers. */
1814 /* Handle a completer for an indexing load or store. */
1821 while (*s
== ',' && i
< 2)
1824 if (strncasecmp (s
, "sm", 2) == 0)
1831 else if (strncasecmp (s
, "m", 1) == 0)
1833 else if ((strncasecmp (s
, "s ", 2) == 0)
1834 || (strncasecmp (s
, "s,", 2) == 0))
1836 /* When in strict mode this is a match failure. */
1843 as_bad (_("Invalid Indexed Load Completer."));
1848 as_bad (_("Invalid Indexed Load Completer Syntax."));
1850 INSERT_FIELD_AND_CONTINUE (opcode
, uu
, 13);
1853 /* Handle a short load/store completer. */
1866 if (strncasecmp (s
, "ma", 2) == 0)
1872 else if (strncasecmp (s
, "mb", 2) == 0)
1879 /* When in strict mode, pass through for cache op. */
1880 if (!found
&& strict
)
1885 as_bad (_("Invalid Short Load/Store Completer."));
1889 /* If we did not get a ma/mb completer, then we do not
1890 consider this a positive match for 'ce'. */
1891 else if (*args
== 'e')
1894 /* 'J', 'm', 'M' and 'q' are the same, except for where they
1895 encode the before/after field. */
1896 if (*args
== 'm' || *args
== 'M')
1899 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
1901 else if (*args
== 'q')
1904 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
1906 else if (*args
== 'J')
1908 /* M bit is explicit in the major opcode. */
1909 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
1911 else if (*args
== 'e')
1913 /* Stash the ma/mb flag temporarily in the
1914 instruction. We will use (and remove it)
1915 later when handling 'J', 'K', '<' & '>'. */
1921 /* Handle a stbys completer. */
1928 while (*s
== ',' && i
< 2)
1931 if (strncasecmp (s
, "m", 1) == 0)
1933 else if ((strncasecmp (s
, "b ", 2) == 0)
1934 || (strncasecmp (s
, "b,", 2) == 0))
1936 else if (strncasecmp (s
, "e", 1) == 0)
1938 /* When in strict mode this is a match failure. */
1945 as_bad (_("Invalid Store Bytes Short Completer"));
1950 as_bad (_("Invalid Store Bytes Short Completer"));
1952 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
1955 /* Handle load cache hint completer. */
1958 if (!strncmp (s
, ",sl", 3))
1963 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1965 /* Handle store cache hint completer. */
1968 if (!strncmp (s
, ",sl", 3))
1973 else if (!strncmp (s
, ",bc", 3))
1978 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1980 /* Handle load and clear cache hint completer. */
1983 if (!strncmp (s
, ",co", 3))
1988 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1990 /* Handle load ordering completer. */
1992 if (strncmp (s
, ",o", 2) != 0)
1997 /* Handle a branch gate completer. */
1999 if (strncasecmp (s
, ",gate", 5) != 0)
2004 /* Handle a branch link and push completer. */
2006 if (strncasecmp (s
, ",l,push", 7) != 0)
2011 /* Handle a branch link completer. */
2013 if (strncasecmp (s
, ",l", 2) != 0)
2018 /* Handle a branch pop completer. */
2020 if (strncasecmp (s
, ",pop", 4) != 0)
2025 /* Handle a local processor completer. */
2027 if (strncasecmp (s
, ",l", 2) != 0)
2032 /* Handle a PROBE read/write completer. */
2035 if (!strncasecmp (s
, ",w", 2))
2040 else if (!strncasecmp (s
, ",r", 2))
2046 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2048 /* Handle MFCTL wide completer. */
2050 if (strncasecmp (s
, ",w", 2) != 0)
2055 /* Handle an RFI restore completer. */
2058 if (!strncasecmp (s
, ",r", 2))
2064 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
2066 /* Handle a system control completer. */
2068 if (*s
== ',' && (*(s
+ 1) == 'm' || *(s
+ 1) == 'M'))
2076 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
2078 /* Handle intermediate/final completer for DCOR. */
2081 if (!strncasecmp (s
, ",i", 2))
2087 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2089 /* Handle zero/sign extension completer. */
2092 if (!strncasecmp (s
, ",z", 2))
2098 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
2100 /* Handle add completer. */
2103 if (!strncasecmp (s
, ",l", 2))
2108 else if (!strncasecmp (s
, ",tsv", 4))
2114 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
2116 /* Handle 64 bit carry for ADD. */
2119 if (!strncasecmp (s
, ",dc,tsv", 7) ||
2120 !strncasecmp (s
, ",tsv,dc", 7))
2125 else if (!strncasecmp (s
, ",dc", 3))
2133 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2135 /* Handle 32 bit carry for ADD. */
2138 if (!strncasecmp (s
, ",c,tsv", 6) ||
2139 !strncasecmp (s
, ",tsv,c", 6))
2144 else if (!strncasecmp (s
, ",c", 2))
2152 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2154 /* Handle trap on signed overflow. */
2157 if (!strncasecmp (s
, ",tsv", 4))
2163 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2165 /* Handle trap on condition and overflow. */
2168 if (!strncasecmp (s
, ",tc,tsv", 7) ||
2169 !strncasecmp (s
, ",tsv,tc", 7))
2174 else if (!strncasecmp (s
, ",tc", 3))
2182 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2184 /* Handle 64 bit borrow for SUB. */
2187 if (!strncasecmp (s
, ",db,tsv", 7) ||
2188 !strncasecmp (s
, ",tsv,db", 7))
2193 else if (!strncasecmp (s
, ",db", 3))
2201 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2203 /* Handle 32 bit borrow for SUB. */
2206 if (!strncasecmp (s
, ",b,tsv", 6) ||
2207 !strncasecmp (s
, ",tsv,b", 6))
2212 else if (!strncasecmp (s
, ",b", 2))
2220 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2222 /* Handle trap condition completer for UADDCM. */
2225 if (!strncasecmp (s
, ",tc", 3))
2231 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2233 /* Handle signed/unsigned at 21. */
2237 if (strncasecmp (s
, ",s", 2) == 0)
2242 else if (strncasecmp (s
, ",u", 2) == 0)
2248 INSERT_FIELD_AND_CONTINUE (opcode
, sign
, 10);
2251 /* Handle left/right combination at 17:18. */
2261 as_bad (_("Invalid left/right combination completer"));
2264 INSERT_FIELD_AND_CONTINUE (opcode
, lr
, 13);
2267 as_bad (_("Invalid left/right combination completer"));
2270 /* Handle saturation at 24:25. */
2274 if (strncasecmp (s
, ",ss", 3) == 0)
2279 else if (strncasecmp (s
, ",us", 3) == 0)
2285 INSERT_FIELD_AND_CONTINUE (opcode
, sat
, 6);
2288 /* Handle permutation completer. */
2316 as_bad (_("Invalid permutation completer"));
2318 opcode
|= perm
<< permloc
[i
];
2323 as_bad (_("Invalid permutation completer"));
2331 /* Handle all conditions. */
2337 /* Handle FP compare conditions. */
2339 cond
= pa_parse_fp_cmp_cond (&s
);
2340 INSERT_FIELD_AND_CONTINUE (opcode
, cond
, 0);
2342 /* Handle an add condition. */
2351 /* 64 bit conditions. */
2364 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2368 if (strcmp (name
, "=") == 0)
2370 else if (strcmp (name
, "<") == 0)
2372 else if (strcmp (name
, "<=") == 0)
2374 else if (strcasecmp (name
, "nuv") == 0)
2376 else if (strcasecmp (name
, "znv") == 0)
2378 else if (strcasecmp (name
, "sv") == 0)
2380 else if (strcasecmp (name
, "od") == 0)
2382 else if (strcasecmp (name
, "tr") == 0)
2387 else if (strcmp (name
, "<>") == 0)
2392 else if (strcmp (name
, ">=") == 0)
2397 else if (strcmp (name
, ">") == 0)
2402 else if (strcasecmp (name
, "uv") == 0)
2407 else if (strcasecmp (name
, "vnz") == 0)
2412 else if (strcasecmp (name
, "nsv") == 0)
2417 else if (strcasecmp (name
, "ev") == 0)
2422 /* ",*" is a valid condition. */
2423 else if (*args
== 'a')
2424 as_bad (_("Invalid Add Condition: %s"), name
);
2427 opcode
|= cmpltr
<< 13;
2428 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2430 /* Handle non-negated add and branch condition. */
2432 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
2435 as_bad (_("Invalid Add and Branch Condition"));
2438 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2440 /* Handle 64 bit wide-mode add and branch condition. */
2442 cmpltr
= pa_parse_addb_64_cmpltr (&s
);
2445 as_bad (_("Invalid Add and Branch Condition"));
2450 /* Negated condition requires an opcode change. */
2451 opcode
|= (cmpltr
& 8) << 24;
2453 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
2455 /* Handle a negated or non-negated add and branch
2459 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
2463 cmpltr
= pa_parse_neg_add_cmpltr (&s
);
2466 as_bad (_("Invalid Compare/Subtract Condition"));
2471 /* Negated condition requires an opcode change. */
2475 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2477 /* Handle branch on bit conditions. */
2495 if (strncmp (s
, "<", 1) == 0)
2500 else if (strncmp (s
, ">=", 2) == 0)
2506 as_bad (_("Invalid Bit Branch Condition: %c"), *s
);
2508 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 15);
2510 /* Handle a compare/subtract condition. */
2519 /* 64 bit conditions. */
2532 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2536 if (strcmp (name
, "=") == 0)
2538 else if (strcmp (name
, "<") == 0)
2540 else if (strcmp (name
, "<=") == 0)
2542 else if (strcasecmp (name
, "<<") == 0)
2544 else if (strcasecmp (name
, "<<=") == 0)
2546 else if (strcasecmp (name
, "sv") == 0)
2548 else if (strcasecmp (name
, "od") == 0)
2550 else if (strcasecmp (name
, "tr") == 0)
2555 else if (strcmp (name
, "<>") == 0)
2560 else if (strcmp (name
, ">=") == 0)
2565 else if (strcmp (name
, ">") == 0)
2570 else if (strcasecmp (name
, ">>=") == 0)
2575 else if (strcasecmp (name
, ">>") == 0)
2580 else if (strcasecmp (name
, "nsv") == 0)
2585 else if (strcasecmp (name
, "ev") == 0)
2590 /* ",*" is a valid condition. */
2591 else if (*args
!= 'S')
2592 as_bad (_("Invalid Compare/Subtract Condition: %s"),
2596 opcode
|= cmpltr
<< 13;
2597 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2599 /* Handle a non-negated compare condition. */
2601 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
2604 as_bad (_("Invalid Compare/Subtract Condition"));
2607 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2609 /* Handle a 32 bit compare and branch condition. */
2612 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
2616 cmpltr
= pa_parse_neg_cmpsub_cmpltr (&s
);
2619 as_bad (_("Invalid Compare and Branch Condition"));
2624 /* Negated condition requires an opcode change. */
2629 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2631 /* Handle a 64 bit compare and branch condition. */
2633 cmpltr
= pa_parse_cmpb_64_cmpltr (&s
);
2636 /* Negated condition requires an opcode change. */
2637 opcode
|= (cmpltr
& 8) << 26;
2640 /* Not a 64 bit cond. Give 32 bit a chance. */
2643 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
2645 /* Handle a 64 bit cmpib condition. */
2647 cmpltr
= pa_parse_cmpib_64_cmpltr (&s
);
2649 /* Not a 64 bit cond. Give 32 bit a chance. */
2652 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2654 /* Handle a logical instruction condition. */
2663 /* 64 bit conditions. */
2675 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2680 if (strcmp (name
, "=") == 0)
2682 else if (strcmp (name
, "<") == 0)
2684 else if (strcmp (name
, "<=") == 0)
2686 else if (strcasecmp (name
, "od") == 0)
2688 else if (strcasecmp (name
, "tr") == 0)
2693 else if (strcmp (name
, "<>") == 0)
2698 else if (strcmp (name
, ">=") == 0)
2703 else if (strcmp (name
, ">") == 0)
2708 else if (strcasecmp (name
, "ev") == 0)
2713 /* ",*" is a valid condition. */
2714 else if (*args
!= 'L')
2715 as_bad (_("Invalid Logical Instruction Condition."));
2718 opcode
|= cmpltr
<< 13;
2719 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2721 /* Handle a shift/extract/deposit condition. */
2730 /* 64 bit conditions. */
2742 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2746 if (strcmp (name
, "=") == 0)
2748 else if (strcmp (name
, "<") == 0)
2750 else if (strcasecmp (name
, "od") == 0)
2752 else if (strcasecmp (name
, "tr") == 0)
2754 else if (strcmp (name
, "<>") == 0)
2756 else if (strcmp (name
, ">=") == 0)
2758 else if (strcasecmp (name
, "ev") == 0)
2760 /* Handle movb,n. Put things back the way they were.
2761 This includes moving s back to where it started. */
2762 else if (strcasecmp (name
, "n") == 0 && *args
== 'y')
2768 /* ",*" is a valid condition. */
2769 else if (*args
!= 'X')
2770 as_bad (_("Invalid Shift/Extract/Deposit Condition."));
2773 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2775 /* Handle a unit instruction condition. */
2784 /* 64 bit conditions. */
2795 if (strncasecmp (s
, "sbz", 3) == 0)
2800 else if (strncasecmp (s
, "shz", 3) == 0)
2805 else if (strncasecmp (s
, "sdc", 3) == 0)
2810 else if (strncasecmp (s
, "sbc", 3) == 0)
2815 else if (strncasecmp (s
, "shc", 3) == 0)
2820 else if (strncasecmp (s
, "tr", 2) == 0)
2826 else if (strncasecmp (s
, "nbz", 3) == 0)
2832 else if (strncasecmp (s
, "nhz", 3) == 0)
2838 else if (strncasecmp (s
, "ndc", 3) == 0)
2844 else if (strncasecmp (s
, "nbc", 3) == 0)
2850 else if (strncasecmp (s
, "nhc", 3) == 0)
2856 else if (strncasecmp (s
, "swz", 3) == 0)
2862 else if (strncasecmp (s
, "swc", 3) == 0)
2868 else if (strncasecmp (s
, "nwz", 3) == 0)
2874 else if (strncasecmp (s
, "nwc", 3) == 0)
2880 /* ",*" is a valid condition. */
2881 else if (*args
!= 'U')
2882 as_bad (_("Invalid Unit Instruction Condition."));
2884 opcode
|= cmpltr
<< 13;
2885 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2893 /* Handle a nullification completer for branch instructions. */
2895 nullif
= pa_parse_nullif (&s
);
2896 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 1);
2898 /* Handle a nullification completer for copr and spop insns. */
2900 nullif
= pa_parse_nullif (&s
);
2901 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 5);
2903 /* Handle ,%r2 completer for new syntax branches. */
2905 if (*s
== ',' && strncasecmp (s
+ 1, "%r2", 3) == 0)
2907 else if (*s
== ',' && strncasecmp (s
+ 1, "%rp", 3) == 0)
2913 /* Handle 3 bit entry into the fp compare array. Valid values
2914 are 0..6 inclusive. */
2918 if (the_insn
.exp
.X_op
== O_constant
)
2920 num
= evaluate_absolute (&the_insn
);
2921 CHECK_FIELD (num
, 6, 0, 0);
2923 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
2928 /* Handle 3 bit entry into the fp compare array. Valid values
2929 are 0..6 inclusive. */
2932 if (the_insn
.exp
.X_op
== O_constant
)
2935 num
= evaluate_absolute (&the_insn
);
2936 CHECK_FIELD (num
, 6, 0, 0);
2937 num
= (num
+ 1) ^ 1;
2938 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
2943 /* Handle graphics test completers for ftest */
2946 num
= pa_parse_ftest_gfx_completer (&s
);
2947 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2950 /* Handle a 11 bit immediate at 31. */
2952 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2955 if (the_insn
.exp
.X_op
== O_constant
)
2957 num
= evaluate_absolute (&the_insn
);
2958 CHECK_FIELD (num
, 1023, -1024, 0);
2959 num
= low_sign_unext (num
, 11);
2960 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2964 if (is_DP_relative (the_insn
.exp
))
2965 the_insn
.reloc
= R_HPPA_GOTOFF
;
2966 else if (is_PC_relative (the_insn
.exp
))
2967 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
2969 the_insn
.reloc
= R_HPPA
;
2970 the_insn
.format
= 11;
2974 /* Handle a 14 bit immediate at 31. */
2976 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2979 if (the_insn
.exp
.X_op
== O_constant
)
2983 /* XXX the completer stored away tidbits of information
2984 for us to extract. We need a cleaner way to do this.
2985 Now that we have lots of letters again, it would be
2986 good to rethink this. */
2989 num
= evaluate_absolute (&the_insn
);
2990 if (mb
!= (num
< 0))
2992 CHECK_FIELD (num
, 8191, -8192, 0);
2993 num
= low_sign_unext (num
, 14);
2994 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2998 /* Handle a 14 bit immediate at 31. */
3000 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3003 if (the_insn
.exp
.X_op
== O_constant
)
3009 num
= evaluate_absolute (&the_insn
);
3010 if (mb
== (num
< 0))
3014 CHECK_FIELD (num
, 8191, -8192, 0);
3015 num
= low_sign_unext (num
, 14);
3016 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3020 /* Handle a 16 bit immediate at 31. */
3022 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3025 if (the_insn
.exp
.X_op
== O_constant
)
3031 num
= evaluate_absolute (&the_insn
);
3032 if (mb
!= (num
< 0))
3034 CHECK_FIELD (num
, 32767, -32768, 0);
3035 num
= re_assemble_16 (num
);
3036 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3040 /* Handle a 16 bit immediate at 31. */
3042 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3045 if (the_insn
.exp
.X_op
== O_constant
)
3051 num
= evaluate_absolute (&the_insn
);
3052 if (mb
== (num
< 0))
3056 CHECK_FIELD (num
, 32767, -32768, 0);
3057 num
= re_assemble_16 (num
);
3058 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3062 /* Handle 14 bit immediate, shifted left three times. */
3064 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3067 if (the_insn
.exp
.X_op
== O_constant
)
3069 num
= evaluate_absolute (&the_insn
);
3072 CHECK_FIELD (num
, 8191, -8192, 0);
3077 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 4);
3081 if (is_DP_relative (the_insn
.exp
))
3082 the_insn
.reloc
= R_HPPA_GOTOFF
;
3083 else if (is_PC_relative (the_insn
.exp
))
3084 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3086 the_insn
.reloc
= R_HPPA
;
3087 the_insn
.format
= 14;
3092 /* Handle 14 bit immediate, shifted left twice. */
3094 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3097 if (the_insn
.exp
.X_op
== O_constant
)
3099 num
= evaluate_absolute (&the_insn
);
3102 CHECK_FIELD (num
, 8191, -8192, 0);
3107 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
3111 if (is_DP_relative (the_insn
.exp
))
3112 the_insn
.reloc
= R_HPPA_GOTOFF
;
3113 else if (is_PC_relative (the_insn
.exp
))
3114 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3116 the_insn
.reloc
= R_HPPA
;
3117 the_insn
.format
= 14;
3121 /* Handle a 14 bit immediate at 31. */
3123 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3126 if (the_insn
.exp
.X_op
== O_constant
)
3128 num
= evaluate_absolute (&the_insn
);
3129 CHECK_FIELD (num
, 8191, -8192, 0);
3130 num
= low_sign_unext (num
, 14);
3131 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3135 if (is_DP_relative (the_insn
.exp
))
3136 the_insn
.reloc
= R_HPPA_GOTOFF
;
3137 else if (is_PC_relative (the_insn
.exp
))
3138 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3140 the_insn
.reloc
= R_HPPA
;
3141 the_insn
.format
= 14;
3145 /* Handle a 21 bit immediate at 31. */
3147 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3150 if (the_insn
.exp
.X_op
== O_constant
)
3152 num
= evaluate_absolute (&the_insn
);
3153 CHECK_FIELD (num
>> 11, 1048575, -1048576, 0);
3154 opcode
|= re_assemble_21 (num
);
3159 if (is_DP_relative (the_insn
.exp
))
3160 the_insn
.reloc
= R_HPPA_GOTOFF
;
3161 else if (is_PC_relative (the_insn
.exp
))
3162 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3164 the_insn
.reloc
= R_HPPA
;
3165 the_insn
.format
= 21;
3169 /* Handle a 16 bit immediate at 31 (PA 2.0 wide mode only). */
3171 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3174 if (the_insn
.exp
.X_op
== O_constant
)
3176 num
= evaluate_absolute (&the_insn
);
3177 CHECK_FIELD (num
, 32767, -32768, 0);
3178 opcode
|= re_assemble_16 (num
);
3183 /* ??? Is this valid for wide mode? */
3184 if (is_DP_relative (the_insn
.exp
))
3185 the_insn
.reloc
= R_HPPA_GOTOFF
;
3186 else if (is_PC_relative (the_insn
.exp
))
3187 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3189 the_insn
.reloc
= R_HPPA
;
3190 the_insn
.format
= 14;
3194 /* Handle a word-aligned 16-bit imm. at 31 (PA2.0 wide). */
3196 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3199 if (the_insn
.exp
.X_op
== O_constant
)
3201 num
= evaluate_absolute (&the_insn
);
3202 CHECK_FIELD (num
, 32767, -32768, 0);
3203 CHECK_ALIGN (num
, 4, 0);
3204 opcode
|= re_assemble_16 (num
);
3209 /* ??? Is this valid for wide mode? */
3210 if (is_DP_relative (the_insn
.exp
))
3211 the_insn
.reloc
= R_HPPA_GOTOFF
;
3212 else if (is_PC_relative (the_insn
.exp
))
3213 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3215 the_insn
.reloc
= R_HPPA
;
3216 the_insn
.format
= 14;
3220 /* Handle a dword-aligned 16-bit imm. at 31 (PA2.0 wide). */
3222 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3225 if (the_insn
.exp
.X_op
== O_constant
)
3227 num
= evaluate_absolute (&the_insn
);
3228 CHECK_FIELD (num
, 32767, -32768, 0);
3229 CHECK_ALIGN (num
, 8, 0);
3230 opcode
|= re_assemble_16 (num
);
3235 /* ??? Is this valid for wide mode? */
3236 if (is_DP_relative (the_insn
.exp
))
3237 the_insn
.reloc
= R_HPPA_GOTOFF
;
3238 else if (is_PC_relative (the_insn
.exp
))
3239 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3241 the_insn
.reloc
= R_HPPA
;
3242 the_insn
.format
= 14;
3246 /* Handle a 12 bit branch displacement. */
3248 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3252 if (!the_insn
.exp
.X_add_symbol
3253 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3256 num
= evaluate_absolute (&the_insn
);
3259 as_bad (_("Branch to unaligned address"));
3262 if (the_insn
.exp
.X_add_symbol
)
3264 CHECK_FIELD (num
, 8191, -8192, 0);
3265 opcode
|= re_assemble_12 (num
>> 2);
3270 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3271 the_insn
.format
= 12;
3272 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3273 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3278 /* Handle a 17 bit branch displacement. */
3280 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3284 if (!the_insn
.exp
.X_add_symbol
3285 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3288 num
= evaluate_absolute (&the_insn
);
3291 as_bad (_("Branch to unaligned address"));
3294 if (the_insn
.exp
.X_add_symbol
)
3296 CHECK_FIELD (num
, 262143, -262144, 0);
3297 opcode
|= re_assemble_17 (num
>> 2);
3302 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3303 the_insn
.format
= 17;
3304 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3305 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3309 /* Handle a 22 bit branch displacement. */
3311 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3315 if (!the_insn
.exp
.X_add_symbol
3316 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3319 num
= evaluate_absolute (&the_insn
);
3322 as_bad (_("Branch to unaligned address"));
3325 if (the_insn
.exp
.X_add_symbol
)
3327 CHECK_FIELD (num
, 8388607, -8388608, 0);
3328 opcode
|= re_assemble_22 (num
>> 2);
3332 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3333 the_insn
.format
= 22;
3334 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3335 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3339 /* Handle an absolute 17 bit branch target. */
3341 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3345 if (!the_insn
.exp
.X_add_symbol
3346 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3349 num
= evaluate_absolute (&the_insn
);
3352 as_bad (_("Branch to unaligned address"));
3355 if (the_insn
.exp
.X_add_symbol
)
3357 CHECK_FIELD (num
, 262143, -262144, 0);
3358 opcode
|= re_assemble_17 (num
>> 2);
3363 the_insn
.reloc
= R_HPPA_ABS_CALL
;
3364 the_insn
.format
= 17;
3365 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3366 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3370 /* Handle '%r1' implicit operand of addil instruction. */
3372 if (*s
== ',' && *(s
+ 1) == '%' && *(s
+ 3) == '1'
3373 && (*(s
+ 2) == 'r' || *(s
+ 2) == 'R'))
3381 /* Handle '%sr0,%r31' implicit operand of be,l instruction. */
3383 if (strncasecmp (s
, "%sr0,%r31", 9) != 0)
3388 /* Handle immediate value of 0 for ordered load/store instructions. */
3395 /* Handle a 2 bit shift count at 25. */
3397 num
= pa_get_absolute_expression (&the_insn
, &s
);
3398 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3401 CHECK_FIELD (num
, 3, 1, strict
);
3402 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3404 /* Handle a 4 bit shift count at 25. */
3406 num
= pa_get_absolute_expression (&the_insn
, &s
);
3407 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3410 CHECK_FIELD (num
, 15, 0, strict
);
3411 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3413 /* Handle a 5 bit shift count at 26. */
3415 num
= pa_get_absolute_expression (&the_insn
, &s
);
3416 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3419 CHECK_FIELD (num
, 31, 0, strict
);
3420 INSERT_FIELD_AND_CONTINUE (opcode
, 31 - num
, 5);
3422 /* Handle a 6 bit shift count at 20,22:26. */
3424 num
= pa_get_absolute_expression (&the_insn
, &s
);
3425 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3428 CHECK_FIELD (num
, 63, 0, strict
);
3430 opcode
|= (num
& 0x20) << 6;
3431 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
3433 /* Handle a 6 bit field length at 23,27:31. */
3436 num
= pa_get_absolute_expression (&the_insn
, &s
);
3437 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3440 CHECK_FIELD (num
, 64, 1, strict
);
3442 opcode
|= (num
& 0x20) << 3;
3443 num
= 31 - (num
& 0x1f);
3444 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3446 /* Handle a 6 bit field length at 19,27:31. */
3448 num
= pa_get_absolute_expression (&the_insn
, &s
);
3449 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3452 CHECK_FIELD (num
, 64, 1, strict
);
3454 opcode
|= (num
& 0x20) << 7;
3455 num
= 31 - (num
& 0x1f);
3456 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3458 /* Handle a 5 bit bit position at 26. */
3460 num
= pa_get_absolute_expression (&the_insn
, &s
);
3461 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3464 CHECK_FIELD (num
, 31, 0, strict
);
3465 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 5);
3467 /* Handle a 6 bit bit position at 20,22:26. */
3469 num
= pa_get_absolute_expression (&the_insn
, &s
);
3470 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3473 CHECK_FIELD (num
, 63, 0, strict
);
3474 opcode
|= (num
& 0x20) << 6;
3475 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
3477 /* Handle a 5 bit immediate at 10 with 'd' as the complement
3478 of the high bit of the immediate. */
3480 num
= pa_get_absolute_expression (&the_insn
, &s
);
3481 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3484 CHECK_FIELD (num
, 63, 0, strict
);
3488 opcode
|= (1 << 13);
3489 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 21);
3491 /* Handle a 5 bit immediate at 10. */
3493 num
= pa_get_absolute_expression (&the_insn
, &s
);
3494 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3497 CHECK_FIELD (num
, 31, 0, strict
);
3498 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3500 /* Handle a 9 bit immediate at 28. */
3502 num
= pa_get_absolute_expression (&the_insn
, &s
);
3503 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3506 CHECK_FIELD (num
, 511, 1, strict
);
3507 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
3509 /* Handle a 13 bit immediate at 18. */
3511 num
= pa_get_absolute_expression (&the_insn
, &s
);
3512 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3515 CHECK_FIELD (num
, 8191, 0, strict
);
3516 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
3518 /* Handle a 26 bit immediate at 31. */
3520 num
= pa_get_absolute_expression (&the_insn
, &s
);
3521 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3524 CHECK_FIELD (num
, 67108863, 0, strict
);
3525 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3527 /* Handle a 3 bit SFU identifier at 25. */
3530 as_bad (_("Invalid SFU identifier"));
3531 num
= pa_get_absolute_expression (&the_insn
, &s
);
3532 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3535 CHECK_FIELD (num
, 7, 0, strict
);
3536 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3538 /* Handle a 20 bit SOP field for spop0. */
3540 num
= pa_get_absolute_expression (&the_insn
, &s
);
3541 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3544 CHECK_FIELD (num
, 1048575, 0, strict
);
3545 num
= (num
& 0x1f) | ((num
& 0x000fffe0) << 6);
3546 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3548 /* Handle a 15bit SOP field for spop1. */
3550 num
= pa_get_absolute_expression (&the_insn
, &s
);
3551 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3554 CHECK_FIELD (num
, 32767, 0, strict
);
3555 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
3557 /* Handle a 10bit SOP field for spop3. */
3559 num
= pa_get_absolute_expression (&the_insn
, &s
);
3560 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3563 CHECK_FIELD (num
, 1023, 0, strict
);
3564 num
= (num
& 0x1f) | ((num
& 0x000003e0) << 6);
3565 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3567 /* Handle a 15 bit SOP field for spop2. */
3569 num
= pa_get_absolute_expression (&the_insn
, &s
);
3570 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3573 CHECK_FIELD (num
, 32767, 0, strict
);
3574 num
= (num
& 0x1f) | ((num
& 0x00007fe0) << 6);
3575 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3577 /* Handle a 3-bit co-processor ID field. */
3580 as_bad (_("Invalid COPR identifier"));
3581 num
= pa_get_absolute_expression (&the_insn
, &s
);
3582 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3585 CHECK_FIELD (num
, 7, 0, strict
);
3586 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3588 /* Handle a 22bit SOP field for copr. */
3590 num
= pa_get_absolute_expression (&the_insn
, &s
);
3591 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3594 CHECK_FIELD (num
, 4194303, 0, strict
);
3595 num
= (num
& 0x1f) | ((num
& 0x003fffe0) << 4);
3596 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3598 /* Handle a source FP operand format completer. */
3600 if (*s
== ',' && *(s
+1) == 't')
3607 flag
= pa_parse_fp_cnv_format (&s
);
3608 the_insn
.fpof1
= flag
;
3609 if (flag
== W
|| flag
== UW
)
3611 if (flag
== DW
|| flag
== UDW
)
3613 if (flag
== QW
|| flag
== UQW
)
3615 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3617 /* Handle a destination FP operand format completer. */
3619 /* pa_parse_format needs the ',' prefix. */
3621 flag
= pa_parse_fp_cnv_format (&s
);
3622 the_insn
.fpof2
= flag
;
3623 if (flag
== W
|| flag
== UW
)
3625 if (flag
== DW
|| flag
== UDW
)
3627 if (flag
== QW
|| flag
== UQW
)
3629 opcode
|= flag
<< 13;
3630 if (the_insn
.fpof1
== SGL
3631 || the_insn
.fpof1
== DBL
3632 || the_insn
.fpof1
== QUAD
)
3634 if (the_insn
.fpof2
== SGL
3635 || the_insn
.fpof2
== DBL
3636 || the_insn
.fpof2
== QUAD
)
3638 else if (the_insn
.fpof2
== W
3639 || the_insn
.fpof2
== DW
3640 || the_insn
.fpof2
== QW
)
3642 else if (the_insn
.fpof2
== UW
3643 || the_insn
.fpof2
== UDW
3644 || the_insn
.fpof2
== UQW
)
3649 else if (the_insn
.fpof1
== W
3650 || the_insn
.fpof1
== DW
3651 || the_insn
.fpof1
== QW
)
3653 if (the_insn
.fpof2
== SGL
3654 || the_insn
.fpof2
== DBL
3655 || the_insn
.fpof2
== QUAD
)
3660 else if (the_insn
.fpof1
== UW
3661 || the_insn
.fpof1
== UDW
3662 || the_insn
.fpof1
== UQW
)
3664 if (the_insn
.fpof2
== SGL
3665 || the_insn
.fpof2
== DBL
3666 || the_insn
.fpof2
== QUAD
)
3671 flag
|= the_insn
.trunc
;
3672 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 15);
3674 /* Handle a source FP operand format completer. */
3676 flag
= pa_parse_fp_format (&s
);
3677 the_insn
.fpof1
= flag
;
3678 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3680 /* Handle a destination FP operand format completer. */
3682 /* pa_parse_format needs the ',' prefix. */
3684 flag
= pa_parse_fp_format (&s
);
3685 the_insn
.fpof2
= flag
;
3686 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 13);
3688 /* Handle a source FP operand format completer at 20. */
3690 flag
= pa_parse_fp_format (&s
);
3691 the_insn
.fpof1
= flag
;
3692 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3694 /* Handle a floating point operand format at 26.
3695 Only allows single and double precision. */
3697 flag
= pa_parse_fp_format (&s
);
3703 the_insn
.fpof1
= flag
;
3709 as_bad (_("Invalid Floating Point Operand Format."));
3713 /* Handle all floating point registers. */
3717 /* Float target register. */
3719 if (!pa_parse_number (&s
, 3))
3721 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3722 CHECK_FIELD (num
, 31, 0, 0);
3723 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3725 /* Float target register with L/R selection. */
3728 if (!pa_parse_number (&s
, 1))
3730 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3731 CHECK_FIELD (num
, 31, 0, 0);
3734 /* 0x30 opcodes are FP arithmetic operation opcodes
3735 and need to be turned into 0x38 opcodes. This
3736 is not necessary for loads/stores. */
3737 if (need_pa11_opcode ()
3738 && ((opcode
& 0xfc000000) == 0x30000000))
3741 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 6 : 0);
3745 /* Float operand 1. */
3748 if (!pa_parse_number (&s
, 1))
3750 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3751 CHECK_FIELD (num
, 31, 0, 0);
3752 opcode
|= num
<< 21;
3753 if (need_pa11_opcode ())
3755 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
3761 /* Float operand 1 with L/R selection. */
3765 if (!pa_parse_number (&s
, 1))
3767 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3768 CHECK_FIELD (num
, 31, 0, 0);
3769 opcode
|= num
<< 21;
3770 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
3774 /* Float operand 2. */
3777 if (!pa_parse_number (&s
, 1))
3779 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3780 CHECK_FIELD (num
, 31, 0, 0);
3781 opcode
|= num
<< 16;
3782 if (need_pa11_opcode ())
3784 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
3790 /* Float operand 2 with L/R selection. */
3793 if (!pa_parse_number (&s
, 1))
3795 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3796 CHECK_FIELD (num
, 31, 0, 0);
3797 opcode
|= num
<< 16;
3798 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
3802 /* Float operand 3 for fmpyfadd, fmpynfadd. */
3805 if (!pa_parse_number (&s
, 1))
3807 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3808 CHECK_FIELD (num
, 31, 0, 0);
3809 opcode
|= (num
& 0x1c) << 11;
3810 opcode
|= (num
& 0x03) << 9;
3811 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 8 : 0);
3815 /* Float mult operand 1 for fmpyadd, fmpysub */
3818 if (!pa_parse_number (&s
, 1))
3820 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3821 CHECK_FIELD (num
, 31, 0, 0);
3822 if (the_insn
.fpof1
== SGL
)
3826 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3830 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3832 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3835 /* Float mult operand 2 for fmpyadd, fmpysub */
3838 if (!pa_parse_number (&s
, 1))
3840 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3841 CHECK_FIELD (num
, 31, 0, 0);
3842 if (the_insn
.fpof1
== SGL
)
3846 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3850 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3852 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3855 /* Float mult target for fmpyadd, fmpysub */
3858 if (!pa_parse_number (&s
, 1))
3860 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3861 CHECK_FIELD (num
, 31, 0, 0);
3862 if (the_insn
.fpof1
== SGL
)
3866 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3870 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3872 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3875 /* Float add operand 1 for fmpyadd, fmpysub */
3878 if (!pa_parse_number (&s
, 1))
3880 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3881 CHECK_FIELD (num
, 31, 0, 0);
3882 if (the_insn
.fpof1
== SGL
)
3886 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3890 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3892 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3895 /* Float add target for fmpyadd, fmpysub */
3898 if (!pa_parse_number (&s
, 1))
3900 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3901 CHECK_FIELD (num
, 31, 0, 0);
3902 if (the_insn
.fpof1
== SGL
)
3906 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3910 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3912 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
3915 /* Handle L/R register halves like 'x'. */
3919 if (!pa_parse_number (&s
, 1))
3921 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3922 CHECK_FIELD (num
, 31, 0, 0);
3923 opcode
|= num
<< 16;
3924 if (need_pa11_opcode ())
3926 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 1 : 0);
3931 /* Float target register (PA 2.0 wide). */
3933 if (!pa_parse_number (&s
, 3))
3935 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3936 CHECK_FIELD (num
, 31, 0, 0);
3937 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3951 /* Check if the args matched. */
3954 if (&insn
[1] - pa_opcodes
< (int) NUMOPCODES
3955 && !strcmp (insn
->name
, insn
[1].name
))
3963 as_bad (_("Invalid operands %s"), error_message
);
3970 the_insn
.opcode
= opcode
;
3973 /* Turn a string in input_line_pointer into a floating point constant of type
3974 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
3975 emitted is stored in *sizeP . An error message or NULL is returned. */
3977 #define MAX_LITTLENUMS 6
3980 md_atof (type
, litP
, sizeP
)
3986 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
3987 LITTLENUM_TYPE
*wordP
;
4019 return _("Bad call to MD_ATOF()");
4021 t
= atof_ieee (input_line_pointer
, type
, words
);
4023 input_line_pointer
= t
;
4024 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
4025 for (wordP
= words
; prec
--;)
4027 md_number_to_chars (litP
, (valueT
) (*wordP
++), sizeof (LITTLENUM_TYPE
));
4028 litP
+= sizeof (LITTLENUM_TYPE
);
4033 /* Write out big-endian. */
4036 md_number_to_chars (buf
, val
, n
)
4041 number_to_chars_bigendian (buf
, val
, n
);
4044 /* Translate internal representation of relocation info to BFD target
4048 tc_gen_reloc (section
, fixp
)
4053 struct hppa_fix_struct
*hppa_fixp
;
4054 static arelent
*no_relocs
= NULL
;
4061 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
4062 if (fixp
->fx_addsy
== 0)
4065 assert (hppa_fixp
!= 0);
4066 assert (section
!= 0);
4068 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
4070 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4071 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4072 codes
= hppa_gen_reloc_type (stdoutput
,
4074 hppa_fixp
->fx_r_format
,
4075 hppa_fixp
->fx_r_field
,
4076 fixp
->fx_subsy
!= NULL
,
4077 symbol_get_bfdsym (fixp
->fx_addsy
));
4081 as_bad_where (fixp
->fx_file
, fixp
->fx_line
, _("Cannot handle fixup"));
4085 for (n_relocs
= 0; codes
[n_relocs
]; n_relocs
++)
4088 relocs
= (arelent
**) xmalloc (sizeof (arelent
*) * n_relocs
+ 1);
4089 reloc
= (arelent
*) xmalloc (sizeof (arelent
) * n_relocs
);
4090 for (i
= 0; i
< n_relocs
; i
++)
4091 relocs
[i
] = &reloc
[i
];
4093 relocs
[n_relocs
] = NULL
;
4096 switch (fixp
->fx_r_type
)
4099 assert (n_relocs
== 1);
4103 /* Now, do any processing that is dependent on the relocation type. */
4106 case R_PARISC_DLTREL21L
:
4107 case R_PARISC_DLTREL14R
:
4108 case R_PARISC_DLTREL14F
:
4109 case R_PARISC_PLABEL32
:
4110 case R_PARISC_PLABEL21L
:
4111 case R_PARISC_PLABEL14R
:
4112 /* For plabel relocations, the addend of the
4113 relocation should be either 0 (no static link) or 2
4114 (static link required). This adjustment is done in
4115 bfd/elf32-hppa.c:elf32_hppa_relocate_section.
4117 We also slam a zero addend into the DLT relative relocs;
4118 it doesn't make a lot of sense to use any addend since
4119 it gets you a different (eg unknown) DLT entry. */
4123 #ifdef ELF_ARG_RELOC
4124 case R_PARISC_PCREL17R
:
4125 case R_PARISC_PCREL17F
:
4126 case R_PARISC_PCREL17C
:
4127 case R_PARISC_DIR17R
:
4128 case R_PARISC_DIR17F
:
4129 case R_PARISC_PCREL21L
:
4130 case R_PARISC_DIR21L
:
4131 reloc
->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
,
4136 case R_PARISC_DIR32
:
4137 /* Facilitate hand-crafted unwind info. */
4138 if (strcmp (section
->name
, UNWIND_SECTION_NAME
) == 0)
4139 code
= R_PARISC_SEGREL32
;
4143 reloc
->addend
= fixp
->fx_offset
;
4147 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4148 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4149 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
,
4150 (bfd_reloc_code_real_type
) code
);
4151 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4153 assert (reloc
->howto
&& (unsigned int) code
== reloc
->howto
->type
);
4158 /* Walk over reach relocation returned by the BFD backend. */
4159 for (i
= 0; i
< n_relocs
; i
++)
4163 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4164 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4166 bfd_reloc_type_lookup (stdoutput
,
4167 (bfd_reloc_code_real_type
) code
);
4168 relocs
[i
]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4173 /* The only time we ever use a R_COMP2 fixup is for the difference
4174 of two symbols. With that in mind we fill in all four
4175 relocs now and break out of the loop. */
4177 relocs
[0]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4179 bfd_reloc_type_lookup (stdoutput
,
4180 (bfd_reloc_code_real_type
) *codes
[0]);
4181 relocs
[0]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4182 relocs
[0]->addend
= 0;
4183 relocs
[1]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4184 *relocs
[1]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4186 bfd_reloc_type_lookup (stdoutput
,
4187 (bfd_reloc_code_real_type
) *codes
[1]);
4188 relocs
[1]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4189 relocs
[1]->addend
= 0;
4190 relocs
[2]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4191 *relocs
[2]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_subsy
);
4193 bfd_reloc_type_lookup (stdoutput
,
4194 (bfd_reloc_code_real_type
) *codes
[2]);
4195 relocs
[2]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4196 relocs
[2]->addend
= 0;
4197 relocs
[3]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4199 bfd_reloc_type_lookup (stdoutput
,
4200 (bfd_reloc_code_real_type
) *codes
[3]);
4201 relocs
[3]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4202 relocs
[3]->addend
= 0;
4203 relocs
[4]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4205 bfd_reloc_type_lookup (stdoutput
,
4206 (bfd_reloc_code_real_type
) *codes
[4]);
4207 relocs
[4]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4208 relocs
[4]->addend
= 0;
4212 relocs
[i
]->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
, 0);
4218 /* For plabel relocations, the addend of the
4219 relocation should be either 0 (no static link) or 2
4220 (static link required).
4222 FIXME: We always assume no static link!
4224 We also slam a zero addend into the DLT relative relocs;
4225 it doesn't make a lot of sense to use any addend since
4226 it gets you a different (eg unknown) DLT entry. */
4227 relocs
[i
]->addend
= 0;
4242 /* There is no symbol or addend associated with these fixups. */
4243 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4244 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
4245 relocs
[i
]->addend
= 0;
4251 /* There is no symbol associated with these fixups. */
4252 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4253 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
4254 relocs
[i
]->addend
= fixp
->fx_offset
;
4258 relocs
[i
]->addend
= fixp
->fx_offset
;
4268 /* Process any machine dependent frag types. */
4271 md_convert_frag (abfd
, sec
, fragP
)
4272 register bfd
*abfd ATTRIBUTE_UNUSED
;
4273 register asection
*sec ATTRIBUTE_UNUSED
;
4274 register fragS
*fragP
;
4276 unsigned int address
;
4278 if (fragP
->fr_type
== rs_machine_dependent
)
4280 switch ((int) fragP
->fr_subtype
)
4283 fragP
->fr_type
= rs_fill
;
4284 know (fragP
->fr_var
== 1);
4285 know (fragP
->fr_next
);
4286 address
= fragP
->fr_address
+ fragP
->fr_fix
;
4287 if (address
% fragP
->fr_offset
)
4290 fragP
->fr_next
->fr_address
4295 fragP
->fr_offset
= 0;
4301 /* Round up a section size to the appropriate boundary. */
4304 md_section_align (segment
, size
)
4308 int align
= bfd_get_section_alignment (stdoutput
, segment
);
4309 int align2
= (1 << align
) - 1;
4311 return (size
+ align2
) & ~align2
;
4314 /* Return the approximate size of a frag before relaxation has occurred. */
4316 md_estimate_size_before_relax (fragP
, segment
)
4317 register fragS
*fragP
;
4318 asection
*segment ATTRIBUTE_UNUSED
;
4324 while ((fragP
->fr_fix
+ size
) % fragP
->fr_offset
)
4331 # ifdef WARN_COMMENTS
4332 const char *md_shortopts
= "Vc";
4334 const char *md_shortopts
= "V";
4337 # ifdef WARN_COMMENTS
4338 const char *md_shortopts
= "c";
4340 const char *md_shortopts
= "";
4344 struct option md_longopts
[] = {
4345 #ifdef WARN_COMMENTS
4346 {"warn-comment", no_argument
, NULL
, 'c'},
4348 {NULL
, no_argument
, NULL
, 0}
4350 size_t md_longopts_size
= sizeof (md_longopts
);
4353 md_parse_option (c
, arg
)
4354 int c ATTRIBUTE_UNUSED
;
4355 char *arg ATTRIBUTE_UNUSED
;
4364 print_version_id ();
4367 #ifdef WARN_COMMENTS
4378 md_show_usage (stream
)
4379 FILE *stream ATTRIBUTE_UNUSED
;
4382 fprintf (stream
, _("\
4385 #ifdef WARN_COMMENTS
4386 fprintf (stream
, _("\
4387 -c print a warning if a comment is found\n"));
4391 /* We have no need to default values of symbols. */
4394 md_undefined_symbol (name
)
4395 char *name ATTRIBUTE_UNUSED
;
4400 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
4401 #define nonzero_dibits(x) \
4402 ((x) | (((x) & 0x55555555) << 1) | (((x) & 0xAAAAAAAA) >> 1))
4403 #define arg_reloc_stub_needed(CALLER, CALLEE) \
4404 (((CALLER) ^ (CALLEE)) & nonzero_dibits (CALLER) & nonzero_dibits (CALLEE))
4406 #define arg_reloc_stub_needed(CALLER, CALLEE) 0
4409 /* Apply a fixup to an instruction. */
4412 md_apply_fix3 (fixP
, valP
, seg
)
4415 segT seg ATTRIBUTE_UNUSED
;
4418 struct hppa_fix_struct
*hppa_fixP
;
4422 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
4425 /* SOM uses R_HPPA_ENTRY and R_HPPA_EXIT relocations which can
4426 never be "applied" (they are just markers). Likewise for
4427 R_HPPA_BEGIN_BRTAB and R_HPPA_END_BRTAB. */
4429 if (fixP
->fx_r_type
== R_HPPA_ENTRY
4430 || fixP
->fx_r_type
== R_HPPA_EXIT
4431 || fixP
->fx_r_type
== R_HPPA_BEGIN_BRTAB
4432 || fixP
->fx_r_type
== R_HPPA_END_BRTAB
4433 || fixP
->fx_r_type
== R_HPPA_BEGIN_TRY
)
4436 /* Disgusting. We must set fx_offset ourselves -- R_HPPA_END_TRY
4437 fixups are considered not adjustable, which in turn causes
4438 adjust_reloc_syms to not set fx_offset. Ugh. */
4439 if (fixP
->fx_r_type
== R_HPPA_END_TRY
)
4441 fixP
->fx_offset
= * valP
;
4446 if (fixP
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
4447 || fixP
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
)
4451 /* There should have been an HPPA specific fixup associated
4452 with the GAS fixup. */
4453 hppa_fixP
= (struct hppa_fix_struct
*) fixP
->tc_fix_data
;
4454 if (hppa_fixP
== NULL
)
4456 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
4457 _("no hppa_fixup entry for fixup type 0x%x"),
4462 buf
= (unsigned char *) (fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
);
4463 insn
= bfd_get_32 (stdoutput
, buf
);
4464 fmt
= bfd_hppa_insn2fmt (stdoutput
, insn
);
4466 /* If there is a symbol associated with this fixup, then it's something
4467 which will need a SOM relocation (except for some PC-relative relocs).
4468 In such cases we should treat the "val" or "addend" as zero since it
4469 will be added in as needed from fx_offset in tc_gen_reloc. */
4470 if ((fixP
->fx_addsy
!= NULL
4471 || fixP
->fx_r_type
== (int) R_HPPA_NONE
)
4476 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
4478 /* These field selectors imply that we do not want an addend. */
4479 else if (hppa_fixP
->fx_r_field
== e_psel
4480 || hppa_fixP
->fx_r_field
== e_rpsel
4481 || hppa_fixP
->fx_r_field
== e_lpsel
4482 || hppa_fixP
->fx_r_field
== e_tsel
4483 || hppa_fixP
->fx_r_field
== e_rtsel
4484 || hppa_fixP
->fx_r_field
== e_ltsel
)
4485 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
4486 /* This is truly disgusting. The machine independent code blindly
4487 adds in the value of the symbol being relocated against. Damn! */
4489 && fixP
->fx_addsy
!= NULL
4490 && S_GET_SEGMENT (fixP
->fx_addsy
) != bfd_com_section_ptr
)
4491 new_val
= hppa_field_adjust (* valP
- S_GET_VALUE (fixP
->fx_addsy
),
4492 0, hppa_fixP
->fx_r_field
);
4495 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
4497 /* Handle pc-relative exceptions from above. */
4498 if ((fmt
== 12 || fmt
== 17 || fmt
== 22)
4501 && !arg_reloc_stub_needed (symbol_arg_reloc_info (fixP
->fx_addsy
),
4502 hppa_fixP
->fx_arg_reloc
)
4504 && (* valP
- 8 + 8192 < 16384
4505 || (fmt
== 17 && * valP
- 8 + 262144 < 524288)
4506 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
4509 && (* valP
- 8 + 262144 < 524288
4510 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
4512 && !S_IS_EXTERNAL (fixP
->fx_addsy
)
4513 && !S_IS_WEAK (fixP
->fx_addsy
)
4514 && S_GET_SEGMENT (fixP
->fx_addsy
) == hppa_fixP
->segment
4516 && S_GET_SEGMENT (fixP
->fx_subsy
) != hppa_fixP
->segment
))
4518 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
4524 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4525 fixP
->fx_file
, fixP
->fx_line
);
4528 insn
= (insn
& ~ 0x3ff1) | (((val
& 0x1ff8) << 1)
4529 | ((val
& 0x2000) >> 13));
4532 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4533 fixP
->fx_file
, fixP
->fx_line
);
4536 insn
= (insn
& ~ 0x3ff9) | (((val
& 0x1ffc) << 1)
4537 | ((val
& 0x2000) >> 13));
4539 /* Handle all opcodes with the 'j' operand type. */
4541 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4542 fixP
->fx_file
, fixP
->fx_line
);
4545 insn
= ((insn
& ~ 0x3fff) | low_sign_unext (val
, 14));
4548 /* Handle all opcodes with the 'k' operand type. */
4550 CHECK_FIELD_WHERE (new_val
, 1048575, -1048576,
4551 fixP
->fx_file
, fixP
->fx_line
);
4554 insn
= (insn
& ~ 0x1fffff) | re_assemble_21 (val
);
4557 /* Handle all the opcodes with the 'i' operand type. */
4559 CHECK_FIELD_WHERE (new_val
, 1023, -1024,
4560 fixP
->fx_file
, fixP
->fx_line
);
4563 insn
= (insn
& ~ 0x7ff) | low_sign_unext (val
, 11);
4566 /* Handle all the opcodes with the 'w' operand type. */
4568 CHECK_FIELD_WHERE (new_val
- 8, 8191, -8192,
4569 fixP
->fx_file
, fixP
->fx_line
);
4572 insn
= (insn
& ~ 0x1ffd) | re_assemble_12 (val
>> 2);
4575 /* Handle some of the opcodes with the 'W' operand type. */
4578 offsetT distance
= * valP
;
4580 /* If this is an absolute branch (ie no link) with an out of
4581 range target, then we want to complain. */
4582 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
4583 && (insn
& 0xffe00000) == 0xe8000000)
4584 CHECK_FIELD_WHERE (distance
- 8, 262143, -262144,
4585 fixP
->fx_file
, fixP
->fx_line
);
4587 CHECK_FIELD_WHERE (new_val
- 8, 262143, -262144,
4588 fixP
->fx_file
, fixP
->fx_line
);
4591 insn
= (insn
& ~ 0x1f1ffd) | re_assemble_17 (val
>> 2);
4597 offsetT distance
= * valP
;
4599 /* If this is an absolute branch (ie no link) with an out of
4600 range target, then we want to complain. */
4601 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
4602 && (insn
& 0xffe00000) == 0xe8000000)
4603 CHECK_FIELD_WHERE (distance
- 8, 8388607, -8388608,
4604 fixP
->fx_file
, fixP
->fx_line
);
4606 CHECK_FIELD_WHERE (new_val
- 8, 8388607, -8388608,
4607 fixP
->fx_file
, fixP
->fx_line
);
4610 insn
= (insn
& ~ 0x3ff1ffd) | re_assemble_22 (val
>> 2);
4616 insn
= (insn
& ~ 0xfff1) | re_assemble_16 (val
& -8);
4621 insn
= (insn
& ~ 0xfff9) | re_assemble_16 (val
& -4);
4626 insn
= (insn
& ~ 0xffff) | re_assemble_16 (val
);
4634 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
4635 _("Unknown relocation encountered in md_apply_fix."));
4639 /* Insert the relocation. */
4640 bfd_put_32 (stdoutput
, insn
, buf
);
4643 /* Exactly what point is a PC-relative offset relative TO?
4644 On the PA, they're relative to the address of the offset. */
4647 md_pcrel_from (fixP
)
4650 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
4653 /* Return nonzero if the input line pointer is at the end of
4657 is_end_of_statement ()
4659 return ((*input_line_pointer
== '\n')
4660 || (*input_line_pointer
== ';')
4661 || (*input_line_pointer
== '!'));
4664 /* Read a number from S. The number might come in one of many forms,
4665 the most common will be a hex or decimal constant, but it could be
4666 a pre-defined register (Yuk!), or an absolute symbol.
4668 Return 1 on success or 0 on failure. If STRICT, then a missing
4669 register prefix will cause a failure. The number itself is
4670 returned in `pa_number'.
4672 IS_FLOAT indicates that a PA-89 FP register number should be
4673 parsed; A `l' or `r' suffix is checked for if but 2 of IS_FLOAT is
4676 pa_parse_number can not handle negative constants and will fail
4677 horribly if it is passed such a constant. */
4680 pa_parse_number (s
, is_float
)
4690 boolean have_prefix
;
4692 /* Skip whitespace before the number. */
4693 while (*p
== ' ' || *p
== '\t')
4699 if (!strict
&& ISDIGIT (*p
))
4701 /* Looks like a number. */
4703 if (*p
== '0' && (*(p
+ 1) == 'x' || *(p
+ 1) == 'X'))
4705 /* The number is specified in hex. */
4707 while (ISDIGIT (*p
) || ((*p
>= 'a') && (*p
<= 'f'))
4708 || ((*p
>= 'A') && (*p
<= 'F')))
4711 num
= num
* 16 + *p
- '0';
4712 else if (*p
>= 'a' && *p
<= 'f')
4713 num
= num
* 16 + *p
- 'a' + 10;
4715 num
= num
* 16 + *p
- 'A' + 10;
4721 /* The number is specified in decimal. */
4722 while (ISDIGIT (*p
))
4724 num
= num
* 10 + *p
- '0';
4731 /* Check for a `l' or `r' suffix. */
4734 pa_number
+= FP_REG_BASE
;
4735 if (! (is_float
& 2))
4737 if (IS_R_SELECT (p
))
4739 pa_number
+= FP_REG_RSEL
;
4742 else if (IS_L_SELECT (p
))
4751 /* The number might be a predefined register. */
4756 /* Tege hack: Special case for general registers as the general
4757 code makes a binary search with case translation, and is VERY
4762 if (*p
== 'e' && *(p
+ 1) == 't'
4763 && (*(p
+ 2) == '0' || *(p
+ 2) == '1'))
4766 num
= *p
- '0' + 28;
4774 else if (!ISDIGIT (*p
))
4777 as_bad (_("Undefined register: '%s'."), name
);
4783 num
= num
* 10 + *p
++ - '0';
4784 while (ISDIGIT (*p
));
4789 /* Do a normal register search. */
4790 while (is_part_of_name (c
))
4796 status
= reg_name_search (name
);
4802 as_bad (_("Undefined register: '%s'."), name
);
4812 /* And finally, it could be a symbol in the absolute section which
4813 is effectively a constant, or a register alias symbol. */
4816 while (is_part_of_name (c
))
4822 if ((sym
= symbol_find (name
)) != NULL
)
4824 if (S_GET_SEGMENT (sym
) == reg_section
)
4826 num
= S_GET_VALUE (sym
);
4827 /* Well, we don't really have one, but we do have a
4831 else if (S_GET_SEGMENT (sym
) == &bfd_abs_section
)
4832 num
= S_GET_VALUE (sym
);
4836 as_bad (_("Non-absolute symbol: '%s'."), name
);
4842 /* There is where we'd come for an undefined symbol
4843 or for an empty string. For an empty string we
4844 will return zero. That's a concession made for
4845 compatability with the braindamaged HP assemblers. */
4851 as_bad (_("Undefined absolute constant: '%s'."), name
);
4860 if (!strict
|| have_prefix
)
4868 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
4870 /* Given NAME, find the register number associated with that name, return
4871 the integer value associated with the given name or -1 on failure. */
4874 reg_name_search (name
)
4877 int middle
, low
, high
;
4881 high
= REG_NAME_CNT
- 1;
4885 middle
= (low
+ high
) / 2;
4886 cmp
= strcasecmp (name
, pre_defined_registers
[middle
].name
);
4892 return pre_defined_registers
[middle
].value
;
4894 while (low
<= high
);
4899 /* Return nonzero if the given INSN and L/R information will require
4900 a new PA-1.1 opcode. */
4905 if ((pa_number
& FP_REG_RSEL
) != 0
4906 && !(the_insn
.fpof1
== DBL
&& the_insn
.fpof2
== DBL
))
4908 /* If this instruction is specific to a particular architecture,
4909 then set a new architecture. */
4910 if (bfd_get_mach (stdoutput
) < pa11
)
4912 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, pa11
))
4913 as_warn (_("could not update architecture and machine"));
4921 /* Parse a condition for a fcmp instruction. Return the numerical
4922 code associated with the condition. */
4925 pa_parse_fp_cmp_cond (s
)
4932 for (i
= 0; i
< 32; i
++)
4934 if (strncasecmp (*s
, fp_cond_map
[i
].string
,
4935 strlen (fp_cond_map
[i
].string
)) == 0)
4937 cond
= fp_cond_map
[i
].cond
;
4938 *s
+= strlen (fp_cond_map
[i
].string
);
4939 /* If not a complete match, back up the input string and
4941 if (**s
!= ' ' && **s
!= '\t')
4943 *s
-= strlen (fp_cond_map
[i
].string
);
4946 while (**s
== ' ' || **s
== '\t')
4952 as_bad (_("Invalid FP Compare Condition: %s"), *s
);
4954 /* Advance over the bogus completer. */
4955 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
4961 /* Parse a graphics test complete for ftest. */
4964 pa_parse_ftest_gfx_completer (s
)
4970 if (strncasecmp (*s
, "acc8", 4) == 0)
4975 else if (strncasecmp (*s
, "acc6", 4) == 0)
4980 else if (strncasecmp (*s
, "acc4", 4) == 0)
4985 else if (strncasecmp (*s
, "acc2", 4) == 0)
4990 else if (strncasecmp (*s
, "acc", 3) == 0)
4995 else if (strncasecmp (*s
, "rej8", 4) == 0)
5000 else if (strncasecmp (*s
, "rej", 3) == 0)
5008 as_bad (_("Invalid FTEST completer: %s"), *s
);
5014 /* Parse an FP operand format completer returning the completer
5017 static fp_operand_format
5018 pa_parse_fp_cnv_format (s
)
5027 if (strncasecmp (*s
, "sgl", 3) == 0)
5032 else if (strncasecmp (*s
, "dbl", 3) == 0)
5037 else if (strncasecmp (*s
, "quad", 4) == 0)
5042 else if (strncasecmp (*s
, "w", 1) == 0)
5047 else if (strncasecmp (*s
, "uw", 2) == 0)
5052 else if (strncasecmp (*s
, "dw", 2) == 0)
5057 else if (strncasecmp (*s
, "udw", 3) == 0)
5062 else if (strncasecmp (*s
, "qw", 2) == 0)
5067 else if (strncasecmp (*s
, "uqw", 3) == 0)
5074 format
= ILLEGAL_FMT
;
5075 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
5082 /* Parse an FP operand format completer returning the completer
5085 static fp_operand_format
5086 pa_parse_fp_format (s
)
5095 if (strncasecmp (*s
, "sgl", 3) == 0)
5100 else if (strncasecmp (*s
, "dbl", 3) == 0)
5105 else if (strncasecmp (*s
, "quad", 4) == 0)
5112 format
= ILLEGAL_FMT
;
5113 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
5120 /* Convert from a selector string into a selector type. */
5123 pa_chk_field_selector (str
)
5126 int middle
, low
, high
;
5130 /* Read past any whitespace. */
5131 /* FIXME: should we read past newlines and formfeeds??? */
5132 while (**str
== ' ' || **str
== '\t' || **str
== '\n' || **str
== '\f')
5135 if ((*str
)[1] == '\'' || (*str
)[1] == '%')
5136 name
[0] = TOLOWER ((*str
)[0]),
5138 else if ((*str
)[2] == '\'' || (*str
)[2] == '%')
5139 name
[0] = TOLOWER ((*str
)[0]),
5140 name
[1] = TOLOWER ((*str
)[1]),
5142 else if ((*str
)[3] == '\'' || (*str
)[3] == '%')
5143 name
[0] = TOLOWER ((*str
)[0]),
5144 name
[1] = TOLOWER ((*str
)[1]),
5145 name
[2] = TOLOWER ((*str
)[2]),
5151 high
= sizeof (selector_table
) / sizeof (struct selector_entry
) - 1;
5155 middle
= (low
+ high
) / 2;
5156 cmp
= strcmp (name
, selector_table
[middle
].prefix
);
5163 *str
+= strlen (name
) + 1;
5165 if (selector_table
[middle
].field_selector
== e_nsel
)
5168 return selector_table
[middle
].field_selector
;
5171 while (low
<= high
);
5176 /* Mark (via expr_end) the end of an expression (I think). FIXME. */
5179 get_expression (str
)
5185 save_in
= input_line_pointer
;
5186 input_line_pointer
= str
;
5187 seg
= expression (&the_insn
.exp
);
5188 if (!(seg
== absolute_section
5189 || seg
== undefined_section
5190 || SEG_NORMAL (seg
)))
5192 as_warn (_("Bad segment in expression."));
5193 expr_end
= input_line_pointer
;
5194 input_line_pointer
= save_in
;
5197 expr_end
= input_line_pointer
;
5198 input_line_pointer
= save_in
;
5202 /* Mark (via expr_end) the end of an absolute expression. FIXME. */
5204 pa_get_absolute_expression (insn
, strp
)
5210 insn
->field_selector
= pa_chk_field_selector (strp
);
5211 save_in
= input_line_pointer
;
5212 input_line_pointer
= *strp
;
5213 expression (&insn
->exp
);
5214 /* This is not perfect, but is a huge improvement over doing nothing.
5216 The PA assembly syntax is ambigious in a variety of ways. Consider
5217 this string "4 %r5" Is that the number 4 followed by the register
5218 r5, or is that 4 MOD r5?
5220 If we get a modulo expresion When looking for an absolute, we try
5221 again cutting off the input string at the first whitespace character. */
5222 if (insn
->exp
.X_op
== O_modulus
)
5227 input_line_pointer
= *strp
;
5229 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
5235 retval
= pa_get_absolute_expression (insn
, strp
);
5237 input_line_pointer
= save_in
;
5239 return evaluate_absolute (insn
);
5241 /* When in strict mode we have a non-match, fix up the pointers
5242 and return to our caller. */
5243 if (insn
->exp
.X_op
!= O_constant
&& strict
)
5245 expr_end
= input_line_pointer
;
5246 input_line_pointer
= save_in
;
5249 if (insn
->exp
.X_op
!= O_constant
)
5251 as_bad (_("Bad segment (should be absolute)."));
5252 expr_end
= input_line_pointer
;
5253 input_line_pointer
= save_in
;
5256 expr_end
= input_line_pointer
;
5257 input_line_pointer
= save_in
;
5258 return evaluate_absolute (insn
);
5261 /* Evaluate an absolute expression EXP which may be modified by
5262 the selector FIELD_SELECTOR. Return the value of the expression. */
5264 evaluate_absolute (insn
)
5269 int field_selector
= insn
->field_selector
;
5272 value
= exp
.X_add_number
;
5274 return hppa_field_adjust (0, value
, field_selector
);
5277 /* Given an argument location specification return the associated
5278 argument location number. */
5281 pa_build_arg_reloc (type_name
)
5285 if (strncasecmp (type_name
, "no", 2) == 0)
5287 if (strncasecmp (type_name
, "gr", 2) == 0)
5289 else if (strncasecmp (type_name
, "fr", 2) == 0)
5291 else if (strncasecmp (type_name
, "fu", 2) == 0)
5294 as_bad (_("Invalid argument location: %s\n"), type_name
);
5299 /* Encode and return an argument relocation specification for
5300 the given register in the location specified by arg_reloc. */
5303 pa_align_arg_reloc (reg
, arg_reloc
)
5305 unsigned int arg_reloc
;
5307 unsigned int new_reloc
;
5309 new_reloc
= arg_reloc
;
5325 as_bad (_("Invalid argument description: %d"), reg
);
5331 /* Parse a PA nullification completer (,n). Return nonzero if the
5332 completer was found; return zero if no completer was found. */
5344 if (strncasecmp (*s
, "n", 1) == 0)
5348 as_bad (_("Invalid Nullification: (%c)"), **s
);
5357 /* Parse a non-negated compare/subtract completer returning the
5358 number (for encoding in instrutions) of the given completer. */
5361 pa_parse_nonneg_cmpsub_cmpltr (s
)
5365 char *name
= *s
+ 1;
5374 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5379 if (strcmp (name
, "=") == 0)
5383 else if (strcmp (name
, "<") == 0)
5387 else if (strcmp (name
, "<=") == 0)
5391 else if (strcmp (name
, "<<") == 0)
5395 else if (strcmp (name
, "<<=") == 0)
5399 else if (strcasecmp (name
, "sv") == 0)
5403 else if (strcasecmp (name
, "od") == 0)
5407 /* If we have something like addb,n then there is no condition
5409 else if (strcasecmp (name
, "n") == 0)
5421 /* Reset pointers if this was really a ,n for a branch instruction. */
5428 /* Parse a negated compare/subtract completer returning the
5429 number (for encoding in instrutions) of the given completer. */
5432 pa_parse_neg_cmpsub_cmpltr (s
)
5436 char *name
= *s
+ 1;
5445 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5450 if (strcasecmp (name
, "tr") == 0)
5454 else if (strcmp (name
, "<>") == 0)
5458 else if (strcmp (name
, ">=") == 0)
5462 else if (strcmp (name
, ">") == 0)
5466 else if (strcmp (name
, ">>=") == 0)
5470 else if (strcmp (name
, ">>") == 0)
5474 else if (strcasecmp (name
, "nsv") == 0)
5478 else if (strcasecmp (name
, "ev") == 0)
5482 /* If we have something like addb,n then there is no condition
5484 else if (strcasecmp (name
, "n") == 0)
5496 /* Reset pointers if this was really a ,n for a branch instruction. */
5503 /* Parse a 64 bit compare and branch completer returning the number (for
5504 encoding in instrutions) of the given completer.
5506 Nonnegated comparisons are returned as 0-7, negated comparisons are
5507 returned as 8-15. */
5510 pa_parse_cmpb_64_cmpltr (s
)
5514 char *name
= *s
+ 1;
5521 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5526 if (strcmp (name
, "*") == 0)
5530 else if (strcmp (name
, "*=") == 0)
5534 else if (strcmp (name
, "*<") == 0)
5538 else if (strcmp (name
, "*<=") == 0)
5542 else if (strcmp (name
, "*<<") == 0)
5546 else if (strcmp (name
, "*<<=") == 0)
5550 else if (strcasecmp (name
, "*sv") == 0)
5554 else if (strcasecmp (name
, "*od") == 0)
5558 else if (strcasecmp (name
, "*tr") == 0)
5562 else if (strcmp (name
, "*<>") == 0)
5566 else if (strcmp (name
, "*>=") == 0)
5570 else if (strcmp (name
, "*>") == 0)
5574 else if (strcmp (name
, "*>>=") == 0)
5578 else if (strcmp (name
, "*>>") == 0)
5582 else if (strcasecmp (name
, "*nsv") == 0)
5586 else if (strcasecmp (name
, "*ev") == 0)
5600 /* Parse a 64 bit compare immediate and branch completer returning the number
5601 (for encoding in instrutions) of the given completer. */
5604 pa_parse_cmpib_64_cmpltr (s
)
5608 char *name
= *s
+ 1;
5615 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5620 if (strcmp (name
, "*<<") == 0)
5624 else if (strcmp (name
, "*=") == 0)
5628 else if (strcmp (name
, "*<") == 0)
5632 else if (strcmp (name
, "*<=") == 0)
5636 else if (strcmp (name
, "*>>=") == 0)
5640 else if (strcmp (name
, "*<>") == 0)
5644 else if (strcasecmp (name
, "*>=") == 0)
5648 else if (strcasecmp (name
, "*>") == 0)
5662 /* Parse a non-negated addition completer returning the number
5663 (for encoding in instrutions) of the given completer. */
5666 pa_parse_nonneg_add_cmpltr (s
)
5670 char *name
= *s
+ 1;
5679 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5683 if (strcmp (name
, "=") == 0)
5687 else if (strcmp (name
, "<") == 0)
5691 else if (strcmp (name
, "<=") == 0)
5695 else if (strcasecmp (name
, "nuv") == 0)
5699 else if (strcasecmp (name
, "znv") == 0)
5703 else if (strcasecmp (name
, "sv") == 0)
5707 else if (strcasecmp (name
, "od") == 0)
5711 /* If we have something like addb,n then there is no condition
5713 else if (strcasecmp (name
, "n") == 0)
5725 /* Reset pointers if this was really a ,n for a branch instruction. */
5732 /* Parse a negated addition completer returning the number
5733 (for encoding in instrutions) of the given completer. */
5736 pa_parse_neg_add_cmpltr (s
)
5740 char *name
= *s
+ 1;
5749 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5753 if (strcasecmp (name
, "tr") == 0)
5757 else if (strcmp (name
, "<>") == 0)
5761 else if (strcmp (name
, ">=") == 0)
5765 else if (strcmp (name
, ">") == 0)
5769 else if (strcasecmp (name
, "uv") == 0)
5773 else if (strcasecmp (name
, "vnz") == 0)
5777 else if (strcasecmp (name
, "nsv") == 0)
5781 else if (strcasecmp (name
, "ev") == 0)
5785 /* If we have something like addb,n then there is no condition
5787 else if (strcasecmp (name
, "n") == 0)
5799 /* Reset pointers if this was really a ,n for a branch instruction. */
5806 /* Parse a 64 bit wide mode add and branch completer returning the number (for
5807 encoding in instrutions) of the given completer. */
5810 pa_parse_addb_64_cmpltr (s
)
5814 char *name
= *s
+ 1;
5823 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5827 if (strcmp (name
, "=") == 0)
5831 else if (strcmp (name
, "<") == 0)
5835 else if (strcmp (name
, "<=") == 0)
5839 else if (strcasecmp (name
, "nuv") == 0)
5843 else if (strcasecmp (name
, "*=") == 0)
5847 else if (strcasecmp (name
, "*<") == 0)
5851 else if (strcasecmp (name
, "*<=") == 0)
5855 else if (strcmp (name
, "tr") == 0)
5859 else if (strcmp (name
, "<>") == 0)
5863 else if (strcmp (name
, ">=") == 0)
5867 else if (strcmp (name
, ">") == 0)
5871 else if (strcasecmp (name
, "uv") == 0)
5875 else if (strcasecmp (name
, "*<>") == 0)
5879 else if (strcasecmp (name
, "*>=") == 0)
5883 else if (strcasecmp (name
, "*>") == 0)
5887 /* If we have something like addb,n then there is no condition
5889 else if (strcasecmp (name
, "n") == 0)
5901 /* Reset pointers if this was really a ,n for a branch instruction. */
5909 /* Handle an alignment directive. Special so that we can update the
5910 alignment of the subspace if necessary. */
5915 /* We must have a valid space and subspace. */
5916 pa_check_current_space_and_subspace ();
5918 /* Let the generic gas code do most of the work. */
5919 s_align_bytes (bytes
);
5921 /* If bytes is a power of 2, then update the current subspace's
5922 alignment if necessary. */
5923 if (log2 (bytes
) != -1)
5924 record_alignment (current_subspace
->ssd_seg
, log2 (bytes
));
5928 /* Handle a .BLOCK type pseudo-op. */
5932 int z ATTRIBUTE_UNUSED
;
5936 unsigned int temp_size
;
5940 /* We must have a valid space and subspace. */
5941 pa_check_current_space_and_subspace ();
5944 temp_size
= get_absolute_expression ();
5946 /* Always fill with zeros, that's what the HP assembler does. */
5949 p
= frag_var (rs_fill
, (int) temp_size
, (int) temp_size
,
5950 (relax_substateT
) 0, (symbolS
*) 0, (offsetT
) 1, NULL
);
5951 memset (p
, 0, temp_size
);
5953 /* Convert 2 bytes at a time. */
5955 for (i
= 0; i
< temp_size
; i
+= 2)
5957 md_number_to_chars (p
+ i
,
5959 (int) ((temp_size
- i
) > 2 ? 2 : (temp_size
- i
)));
5962 pa_undefine_label ();
5963 demand_empty_rest_of_line ();
5966 /* Handle a .begin_brtab and .end_brtab pseudo-op. */
5970 int begin ATTRIBUTE_UNUSED
;
5974 /* The BRTAB relocations are only availble in SOM (to denote
5975 the beginning and end of branch tables). */
5976 char *where
= frag_more (0);
5978 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5979 NULL
, (offsetT
) 0, NULL
,
5980 0, begin
? R_HPPA_BEGIN_BRTAB
: R_HPPA_END_BRTAB
,
5984 demand_empty_rest_of_line ();
5987 /* Handle a .begin_try and .end_try pseudo-op. */
5991 int begin ATTRIBUTE_UNUSED
;
5995 char *where
= frag_more (0);
6000 /* The TRY relocations are only availble in SOM (to denote
6001 the beginning and end of exception handling regions). */
6003 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6004 NULL
, (offsetT
) 0, begin
? NULL
: &exp
,
6005 0, begin
? R_HPPA_BEGIN_TRY
: R_HPPA_END_TRY
,
6009 demand_empty_rest_of_line ();
6012 /* Handle a .CALL pseudo-op. This involves storing away information
6013 about where arguments are to be found so the linker can detect
6014 (and correct) argument location mismatches between caller and callee. */
6018 int unused ATTRIBUTE_UNUSED
;
6021 /* We must have a valid space and subspace. */
6022 pa_check_current_space_and_subspace ();
6025 pa_call_args (&last_call_desc
);
6026 demand_empty_rest_of_line ();
6029 /* Do the dirty work of building a call descriptor which describes
6030 where the caller placed arguments to a function call. */
6033 pa_call_args (call_desc
)
6034 struct call_desc
*call_desc
;
6037 unsigned int temp
, arg_reloc
;
6039 while (!is_end_of_statement ())
6041 name
= input_line_pointer
;
6042 c
= get_symbol_end ();
6043 /* Process a source argument. */
6044 if ((strncasecmp (name
, "argw", 4) == 0))
6046 temp
= atoi (name
+ 4);
6047 p
= input_line_pointer
;
6049 input_line_pointer
++;
6050 name
= input_line_pointer
;
6051 c
= get_symbol_end ();
6052 arg_reloc
= pa_build_arg_reloc (name
);
6053 call_desc
->arg_reloc
|= pa_align_arg_reloc (temp
, arg_reloc
);
6055 /* Process a return value. */
6056 else if ((strncasecmp (name
, "rtnval", 6) == 0))
6058 p
= input_line_pointer
;
6060 input_line_pointer
++;
6061 name
= input_line_pointer
;
6062 c
= get_symbol_end ();
6063 arg_reloc
= pa_build_arg_reloc (name
);
6064 call_desc
->arg_reloc
|= (arg_reloc
& 0x3);
6068 as_bad (_("Invalid .CALL argument: %s"), name
);
6070 p
= input_line_pointer
;
6072 if (!is_end_of_statement ())
6073 input_line_pointer
++;
6077 /* Return TRUE if FRAG1 and FRAG2 are the same. */
6080 is_same_frag (frag1
, frag2
)
6087 else if (frag2
== NULL
)
6089 else if (frag1
== frag2
)
6091 else if (frag2
->fr_type
== rs_fill
&& frag2
->fr_fix
== 0)
6092 return (is_same_frag (frag1
, frag2
->fr_next
));
6098 /* Build an entry in the UNWIND subspace from the given function
6099 attributes in CALL_INFO. This is not needed for SOM as using
6100 R_ENTRY and R_EXIT relocations allow the linker to handle building
6101 of the unwind spaces. */
6104 pa_build_unwind_subspace (call_info
)
6105 struct call_info
*call_info
;
6107 asection
*seg
, *save_seg
;
6108 subsegT save_subseg
;
6109 unsigned int unwind
;
6113 if ((bfd_get_section_flags (stdoutput
, now_seg
)
6114 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
6115 != (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
6118 reloc
= R_PARISC_SEGREL32
;
6120 save_subseg
= now_subseg
;
6121 /* Get into the right seg/subseg. This may involve creating
6122 the seg the first time through. Make sure to have the
6123 old seg/subseg so that we can reset things when we are done. */
6124 seg
= bfd_get_section_by_name (stdoutput
, UNWIND_SECTION_NAME
);
6125 if (seg
== ASEC_NULL
)
6127 seg
= subseg_new (UNWIND_SECTION_NAME
, 0);
6128 bfd_set_section_flags (stdoutput
, seg
,
6129 SEC_READONLY
| SEC_HAS_CONTENTS
6130 | SEC_LOAD
| SEC_RELOC
| SEC_ALLOC
| SEC_DATA
);
6131 bfd_set_section_alignment (stdoutput
, seg
, 2);
6134 subseg_set (seg
, 0);
6136 /* Get some space to hold relocation information for the unwind
6140 /* Relocation info. for start offset of the function. */
6141 md_number_to_chars (p
, 0, 4);
6142 fix_new_hppa (frag_now
, p
- frag_now
->fr_literal
, 4,
6143 call_info
->start_symbol
, (offsetT
) 0,
6144 (expressionS
*) NULL
, 0, reloc
,
6147 /* Relocation info. for end offset of the function.
6149 Because we allow reductions of 32bit relocations for ELF, this will be
6150 reduced to section_sym + offset which avoids putting the temporary
6151 symbol into the symbol table. It (should) end up giving the same
6152 value as call_info->start_symbol + function size once the linker is
6153 finished with its work. */
6154 md_number_to_chars (p
+ 4, 0, 4);
6155 fix_new_hppa (frag_now
, p
+ 4 - frag_now
->fr_literal
, 4,
6156 call_info
->end_symbol
, (offsetT
) 0,
6157 (expressionS
*) NULL
, 0, reloc
,
6160 /* Dump the descriptor. */
6161 unwind
= UNWIND_LOW32 (&call_info
->ci_unwind
.descriptor
);
6162 md_number_to_chars (p
+ 8, unwind
, 4);
6164 unwind
= UNWIND_HIGH32 (&call_info
->ci_unwind
.descriptor
);
6165 md_number_to_chars (p
+ 12, unwind
, 4);
6167 /* Return back to the original segment/subsegment. */
6168 subseg_set (save_seg
, save_subseg
);
6172 /* Process a .CALLINFO pseudo-op. This information is used later
6173 to build unwind descriptors and maybe one day to support
6174 .ENTER and .LEAVE. */
6177 pa_callinfo (unused
)
6178 int unused ATTRIBUTE_UNUSED
;
6184 /* We must have a valid space and subspace. */
6185 pa_check_current_space_and_subspace ();
6188 /* .CALLINFO must appear within a procedure definition. */
6189 if (!within_procedure
)
6190 as_bad (_(".callinfo is not within a procedure definition"));
6192 /* Mark the fact that we found the .CALLINFO for the
6193 current procedure. */
6194 callinfo_found
= TRUE
;
6196 /* Iterate over the .CALLINFO arguments. */
6197 while (!is_end_of_statement ())
6199 name
= input_line_pointer
;
6200 c
= get_symbol_end ();
6201 /* Frame size specification. */
6202 if ((strncasecmp (name
, "frame", 5) == 0))
6204 p
= input_line_pointer
;
6206 input_line_pointer
++;
6207 temp
= get_absolute_expression ();
6208 if ((temp
& 0x3) != 0)
6210 as_bad (_("FRAME parameter must be a multiple of 8: %d\n"), temp
);
6214 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
6215 last_call_info
->ci_unwind
.descriptor
.frame_size
= temp
/ 8;
6218 /* Entry register (GR, GR and SR) specifications. */
6219 else if ((strncasecmp (name
, "entry_gr", 8) == 0))
6221 p
= input_line_pointer
;
6223 input_line_pointer
++;
6224 temp
= get_absolute_expression ();
6225 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
6226 even though %r19 is caller saved. I think this is a bug in
6227 the HP assembler, and we are not going to emulate it. */
6228 if (temp
< 3 || temp
> 18)
6229 as_bad (_("Value for ENTRY_GR must be in the range 3..18\n"));
6230 last_call_info
->ci_unwind
.descriptor
.entry_gr
= temp
- 2;
6232 else if ((strncasecmp (name
, "entry_fr", 8) == 0))
6234 p
= input_line_pointer
;
6236 input_line_pointer
++;
6237 temp
= get_absolute_expression ();
6238 /* Similarly the HP assembler takes 31 as the high bound even
6239 though %fr21 is the last callee saved floating point register. */
6240 if (temp
< 12 || temp
> 21)
6241 as_bad (_("Value for ENTRY_FR must be in the range 12..21\n"));
6242 last_call_info
->ci_unwind
.descriptor
.entry_fr
= temp
- 11;
6244 else if ((strncasecmp (name
, "entry_sr", 8) == 0))
6246 p
= input_line_pointer
;
6248 input_line_pointer
++;
6249 temp
= get_absolute_expression ();
6251 as_bad (_("Value for ENTRY_SR must be 3\n"));
6253 /* Note whether or not this function performs any calls. */
6254 else if ((strncasecmp (name
, "calls", 5) == 0) ||
6255 (strncasecmp (name
, "caller", 6) == 0))
6257 p
= input_line_pointer
;
6260 else if ((strncasecmp (name
, "no_calls", 8) == 0))
6262 p
= input_line_pointer
;
6265 /* Should RP be saved into the stack. */
6266 else if ((strncasecmp (name
, "save_rp", 7) == 0))
6268 p
= input_line_pointer
;
6270 last_call_info
->ci_unwind
.descriptor
.save_rp
= 1;
6272 /* Likewise for SP. */
6273 else if ((strncasecmp (name
, "save_sp", 7) == 0))
6275 p
= input_line_pointer
;
6277 last_call_info
->ci_unwind
.descriptor
.save_sp
= 1;
6279 /* Is this an unwindable procedure. If so mark it so
6280 in the unwind descriptor. */
6281 else if ((strncasecmp (name
, "no_unwind", 9) == 0))
6283 p
= input_line_pointer
;
6285 last_call_info
->ci_unwind
.descriptor
.cannot_unwind
= 1;
6287 /* Is this an interrupt routine. If so mark it in the
6288 unwind descriptor. */
6289 else if ((strncasecmp (name
, "hpux_int", 7) == 0))
6291 p
= input_line_pointer
;
6293 last_call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 1;
6295 /* Is this a millicode routine. "millicode" isn't in my
6296 assembler manual, but my copy is old. The HP assembler
6297 accepts it, and there's a place in the unwind descriptor
6298 to drop the information, so we'll accept it too. */
6299 else if ((strncasecmp (name
, "millicode", 9) == 0))
6301 p
= input_line_pointer
;
6303 last_call_info
->ci_unwind
.descriptor
.millicode
= 1;
6307 as_bad (_("Invalid .CALLINFO argument: %s"), name
);
6308 *input_line_pointer
= c
;
6310 if (!is_end_of_statement ())
6311 input_line_pointer
++;
6314 demand_empty_rest_of_line ();
6317 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
6318 /* Switch to the text space. Like s_text, but delete our
6319 label when finished. */
6322 int unused ATTRIBUTE_UNUSED
;
6325 current_space
= is_defined_space ("$TEXT$");
6327 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6331 pa_undefine_label ();
6334 /* Switch to the data space. As usual delete our label. */
6337 int unused ATTRIBUTE_UNUSED
;
6340 current_space
= is_defined_space ("$PRIVATE$");
6342 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6345 pa_undefine_label ();
6348 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
6349 the .comm pseudo-op has the following symtax:
6351 <label> .comm <length>
6353 where <label> is optional and is a symbol whose address will be the start of
6354 a block of memory <length> bytes long. <length> must be an absolute
6355 expression. <length> bytes will be allocated in the current space
6358 Also note the label may not even be on the same line as the .comm.
6360 This difference in syntax means the colon function will be called
6361 on the symbol before we arrive in pa_comm. colon will set a number
6362 of attributes of the symbol that need to be fixed here. In particular
6363 the value, section pointer, fragment pointer, flags, etc. What
6366 This also makes error detection all but impossible. */
6370 int unused ATTRIBUTE_UNUSED
;
6374 label_symbol_struct
*label_symbol
= pa_get_label ();
6377 symbol
= label_symbol
->lss_label
;
6382 size
= get_absolute_expression ();
6386 S_SET_VALUE (symbol
, size
);
6387 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6388 S_SET_EXTERNAL (symbol
);
6390 /* colon() has already set the frag to the current location in the
6391 current subspace; we need to reset the fragment to the zero address
6392 fragment. We also need to reset the segment pointer. */
6393 symbol_set_frag (symbol
, &zero_address_frag
);
6395 demand_empty_rest_of_line ();
6397 #endif /* !(defined (OBJ_ELF) && defined (TE_LINUX)) */
6399 /* Process a .END pseudo-op. */
6403 int unused ATTRIBUTE_UNUSED
;
6405 demand_empty_rest_of_line ();
6408 /* Process a .ENTER pseudo-op. This is not supported. */
6411 int unused ATTRIBUTE_UNUSED
;
6414 /* We must have a valid space and subspace. */
6415 pa_check_current_space_and_subspace ();
6418 as_bad (_("The .ENTER pseudo-op is not supported"));
6419 demand_empty_rest_of_line ();
6422 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
6426 int unused ATTRIBUTE_UNUSED
;
6429 /* We must have a valid space and subspace. */
6430 pa_check_current_space_and_subspace ();
6433 if (!within_procedure
)
6434 as_bad (_("Misplaced .entry. Ignored."));
6437 if (!callinfo_found
)
6438 as_bad (_("Missing .callinfo."));
6440 demand_empty_rest_of_line ();
6441 within_entry_exit
= TRUE
;
6444 /* SOM defers building of unwind descriptors until the link phase.
6445 The assembler is responsible for creating an R_ENTRY relocation
6446 to mark the beginning of a region and hold the unwind bits, and
6447 for creating an R_EXIT relocation to mark the end of the region.
6449 FIXME. ELF should be using the same conventions! The problem
6450 is an unwind requires too much relocation space. Hmmm. Maybe
6451 if we split the unwind bits up between the relocations which
6452 denote the entry and exit points. */
6453 if (last_call_info
->start_symbol
!= NULL
)
6458 where
= frag_more (0);
6459 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
6460 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6461 NULL
, (offsetT
) 0, NULL
,
6462 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
6467 /* Silly nonsense for pa_equ. The only half-sensible use for this is
6468 being able to subtract two register symbols that specify a range of
6469 registers, to get the size of the range. */
6470 static int fudge_reg_expressions
;
6473 hppa_force_reg_syms_absolute (resultP
, op
, rightP
)
6474 expressionS
*resultP
;
6475 operatorT op ATTRIBUTE_UNUSED
;
6476 expressionS
*rightP
;
6478 if (fudge_reg_expressions
6479 && rightP
->X_op
== O_register
6480 && resultP
->X_op
== O_register
)
6482 rightP
->X_op
= O_constant
;
6483 resultP
->X_op
= O_constant
;
6485 return 0; /* Continue normal expr handling. */
6488 /* Handle a .EQU pseudo-op. */
6494 label_symbol_struct
*label_symbol
= pa_get_label ();
6499 symbol
= label_symbol
->lss_label
;
6503 if (!pa_parse_number (&input_line_pointer
, 0))
6504 as_bad (_(".REG expression must be a register"));
6505 S_SET_VALUE (symbol
, pa_number
);
6506 S_SET_SEGMENT (symbol
, reg_section
);
6513 fudge_reg_expressions
= 1;
6514 seg
= expression (&exp
);
6515 fudge_reg_expressions
= 0;
6516 if (exp
.X_op
!= O_constant
6517 && exp
.X_op
!= O_register
)
6519 if (exp
.X_op
!= O_absent
)
6520 as_bad (_("bad or irreducible absolute expression; zero assumed"));
6521 exp
.X_add_number
= 0;
6522 seg
= absolute_section
;
6524 S_SET_VALUE (symbol
, (unsigned int) exp
.X_add_number
);
6525 S_SET_SEGMENT (symbol
, seg
);
6531 as_bad (_(".REG must use a label"));
6533 as_bad (_(".EQU must use a label"));
6536 pa_undefine_label ();
6537 demand_empty_rest_of_line ();
6540 /* Helper function. Does processing for the end of a function. This
6541 usually involves creating some relocations or building special
6542 symbols to mark the end of the function. */
6549 where
= frag_more (0);
6552 /* Mark the end of the function, stuff away the location of the frag
6553 for the end of the function, and finally call pa_build_unwind_subspace
6554 to add an entry in the unwind table. */
6555 hppa_elf_mark_end_of_function ();
6556 pa_build_unwind_subspace (last_call_info
);
6558 /* SOM defers building of unwind descriptors until the link phase.
6559 The assembler is responsible for creating an R_ENTRY relocation
6560 to mark the beginning of a region and hold the unwind bits, and
6561 for creating an R_EXIT relocation to mark the end of the region.
6563 FIXME. ELF should be using the same conventions! The problem
6564 is an unwind requires too much relocation space. Hmmm. Maybe
6565 if we split the unwind bits up between the relocations which
6566 denote the entry and exit points. */
6567 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6569 NULL
, 0, R_HPPA_EXIT
, e_fsel
, 0, 0,
6570 UNWIND_HIGH32 (&last_call_info
->ci_unwind
.descriptor
));
6574 /* Process a .EXIT pseudo-op. */
6578 int unused ATTRIBUTE_UNUSED
;
6581 /* We must have a valid space and subspace. */
6582 pa_check_current_space_and_subspace ();
6585 if (!within_procedure
)
6586 as_bad (_(".EXIT must appear within a procedure"));
6589 if (!callinfo_found
)
6590 as_bad (_("Missing .callinfo"));
6593 if (!within_entry_exit
)
6594 as_bad (_("No .ENTRY for this .EXIT"));
6597 within_entry_exit
= FALSE
;
6602 demand_empty_rest_of_line ();
6605 /* Process a .EXPORT directive. This makes functions external
6606 and provides information such as argument relocation entries
6611 int unused ATTRIBUTE_UNUSED
;
6616 name
= input_line_pointer
;
6617 c
= get_symbol_end ();
6618 /* Make sure the given symbol exists. */
6619 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6621 as_bad (_("Cannot define export symbol: %s\n"), name
);
6622 p
= input_line_pointer
;
6624 input_line_pointer
++;
6628 /* OK. Set the external bits and process argument relocations.
6629 For the HP, weak and global are not mutually exclusive.
6630 S_SET_EXTERNAL will not set BSF_GLOBAL if WEAK is set.
6631 Call S_SET_EXTERNAL to get the other processing. Manually
6632 set BSF_GLOBAL when we get back. */
6633 S_SET_EXTERNAL (symbol
);
6634 symbol_get_bfdsym (symbol
)->flags
|= BSF_GLOBAL
;
6635 p
= input_line_pointer
;
6637 if (!is_end_of_statement ())
6639 input_line_pointer
++;
6640 pa_type_args (symbol
, 1);
6644 demand_empty_rest_of_line ();
6647 /* Helper function to process arguments to a .EXPORT pseudo-op. */
6650 pa_type_args (symbolP
, is_export
)
6655 unsigned int temp
, arg_reloc
;
6656 pa_symbol_type type
= SYMBOL_TYPE_UNKNOWN
;
6657 asymbol
*bfdsym
= symbol_get_bfdsym (symbolP
);
6659 if (strncasecmp (input_line_pointer
, "absolute", 8) == 0)
6662 input_line_pointer
+= 8;
6663 bfdsym
->flags
&= ~BSF_FUNCTION
;
6664 S_SET_SEGMENT (symbolP
, bfd_abs_section_ptr
);
6665 type
= SYMBOL_TYPE_ABSOLUTE
;
6667 else if (strncasecmp (input_line_pointer
, "code", 4) == 0)
6669 input_line_pointer
+= 4;
6670 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
6671 instead one should be IMPORTing/EXPORTing ENTRY types.
6673 Complain if one tries to EXPORT a CODE type since that's never
6674 done. Both GCC and HP C still try to IMPORT CODE types, so
6675 silently fix them to be ENTRY types. */
6676 if (S_IS_FUNCTION (symbolP
))
6679 as_tsktsk (_("Using ENTRY rather than CODE in export directive for %s"),
6680 S_GET_NAME (symbolP
));
6682 bfdsym
->flags
|= BSF_FUNCTION
;
6683 type
= SYMBOL_TYPE_ENTRY
;
6687 bfdsym
->flags
&= ~BSF_FUNCTION
;
6688 type
= SYMBOL_TYPE_CODE
;
6691 else if (strncasecmp (input_line_pointer
, "data", 4) == 0)
6693 input_line_pointer
+= 4;
6694 bfdsym
->flags
&= ~BSF_FUNCTION
;
6695 bfdsym
->flags
|= BSF_OBJECT
;
6696 type
= SYMBOL_TYPE_DATA
;
6698 else if ((strncasecmp (input_line_pointer
, "entry", 5) == 0))
6700 input_line_pointer
+= 5;
6701 bfdsym
->flags
|= BSF_FUNCTION
;
6702 type
= SYMBOL_TYPE_ENTRY
;
6704 else if (strncasecmp (input_line_pointer
, "millicode", 9) == 0)
6706 input_line_pointer
+= 9;
6707 bfdsym
->flags
|= BSF_FUNCTION
;
6710 elf_symbol_type
*elfsym
= (elf_symbol_type
*) bfdsym
;
6711 elfsym
->internal_elf_sym
.st_info
=
6712 ELF_ST_INFO (ELF_ST_BIND (elfsym
->internal_elf_sym
.st_info
),
6716 type
= SYMBOL_TYPE_MILLICODE
;
6718 else if (strncasecmp (input_line_pointer
, "plabel", 6) == 0)
6720 input_line_pointer
+= 6;
6721 bfdsym
->flags
&= ~BSF_FUNCTION
;
6722 type
= SYMBOL_TYPE_PLABEL
;
6724 else if (strncasecmp (input_line_pointer
, "pri_prog", 8) == 0)
6726 input_line_pointer
+= 8;
6727 bfdsym
->flags
|= BSF_FUNCTION
;
6728 type
= SYMBOL_TYPE_PRI_PROG
;
6730 else if (strncasecmp (input_line_pointer
, "sec_prog", 8) == 0)
6732 input_line_pointer
+= 8;
6733 bfdsym
->flags
|= BSF_FUNCTION
;
6734 type
= SYMBOL_TYPE_SEC_PROG
;
6737 /* SOM requires much more information about symbol types
6738 than BFD understands. This is how we get this information
6739 to the SOM BFD backend. */
6740 #ifdef obj_set_symbol_type
6741 obj_set_symbol_type (bfdsym
, (int) type
);
6744 /* Now that the type of the exported symbol has been handled,
6745 handle any argument relocation information. */
6746 while (!is_end_of_statement ())
6748 if (*input_line_pointer
== ',')
6749 input_line_pointer
++;
6750 name
= input_line_pointer
;
6751 c
= get_symbol_end ();
6752 /* Argument sources. */
6753 if ((strncasecmp (name
, "argw", 4) == 0))
6755 p
= input_line_pointer
;
6757 input_line_pointer
++;
6758 temp
= atoi (name
+ 4);
6759 name
= input_line_pointer
;
6760 c
= get_symbol_end ();
6761 arg_reloc
= pa_align_arg_reloc (temp
, pa_build_arg_reloc (name
));
6762 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6763 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6765 *input_line_pointer
= c
;
6767 /* The return value. */
6768 else if ((strncasecmp (name
, "rtnval", 6)) == 0)
6770 p
= input_line_pointer
;
6772 input_line_pointer
++;
6773 name
= input_line_pointer
;
6774 c
= get_symbol_end ();
6775 arg_reloc
= pa_build_arg_reloc (name
);
6776 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6777 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6779 *input_line_pointer
= c
;
6781 /* Privelege level. */
6782 else if ((strncasecmp (name
, "priv_lev", 8)) == 0)
6784 p
= input_line_pointer
;
6786 input_line_pointer
++;
6787 temp
= atoi (input_line_pointer
);
6789 ((obj_symbol_type
*) bfdsym
)->tc_data
.ap
.hppa_priv_level
= temp
;
6791 c
= get_symbol_end ();
6792 *input_line_pointer
= c
;
6796 as_bad (_("Undefined .EXPORT/.IMPORT argument (ignored): %s"), name
);
6797 p
= input_line_pointer
;
6800 if (!is_end_of_statement ())
6801 input_line_pointer
++;
6805 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
6806 assembly file must either be defined in the assembly file, or
6807 explicitly IMPORTED from another. */
6811 int unused ATTRIBUTE_UNUSED
;
6816 name
= input_line_pointer
;
6817 c
= get_symbol_end ();
6819 symbol
= symbol_find (name
);
6820 /* Ugh. We might be importing a symbol defined earlier in the file,
6821 in which case all the code below will really screw things up
6822 (set the wrong segment, symbol flags & type, etc). */
6823 if (symbol
== NULL
|| !S_IS_DEFINED (symbol
))
6825 symbol
= symbol_find_or_make (name
);
6826 p
= input_line_pointer
;
6829 if (!is_end_of_statement ())
6831 input_line_pointer
++;
6832 pa_type_args (symbol
, 0);
6836 /* Sigh. To be compatable with the HP assembler and to help
6837 poorly written assembly code, we assign a type based on
6838 the current segment. Note only BSF_FUNCTION really
6839 matters, we do not need to set the full SYMBOL_TYPE_* info. */
6840 if (now_seg
== text_section
)
6841 symbol_get_bfdsym (symbol
)->flags
|= BSF_FUNCTION
;
6843 /* If the section is undefined, then the symbol is undefined
6844 Since this is an import, leave the section undefined. */
6845 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6850 /* The symbol was already defined. Just eat everything up to
6851 the end of the current statement. */
6852 while (!is_end_of_statement ())
6853 input_line_pointer
++;
6856 demand_empty_rest_of_line ();
6859 /* Handle a .LABEL pseudo-op. */
6863 int unused ATTRIBUTE_UNUSED
;
6867 name
= input_line_pointer
;
6868 c
= get_symbol_end ();
6870 if (strlen (name
) > 0)
6873 p
= input_line_pointer
;
6878 as_warn (_("Missing label name on .LABEL"));
6881 if (!is_end_of_statement ())
6883 as_warn (_("extra .LABEL arguments ignored."));
6884 ignore_rest_of_line ();
6886 demand_empty_rest_of_line ();
6889 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
6893 int unused ATTRIBUTE_UNUSED
;
6896 /* We must have a valid space and subspace. */
6897 pa_check_current_space_and_subspace ();
6900 as_bad (_("The .LEAVE pseudo-op is not supported"));
6901 demand_empty_rest_of_line ();
6904 /* Handle a .LEVEL pseudo-op. */
6908 int unused ATTRIBUTE_UNUSED
;
6912 level
= input_line_pointer
;
6913 if (strncmp (level
, "1.0", 3) == 0)
6915 input_line_pointer
+= 3;
6916 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 10))
6917 as_warn (_("could not set architecture and machine"));
6919 else if (strncmp (level
, "1.1", 3) == 0)
6921 input_line_pointer
+= 3;
6922 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 11))
6923 as_warn (_("could not set architecture and machine"));
6925 else if (strncmp (level
, "2.0w", 4) == 0)
6927 input_line_pointer
+= 4;
6928 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 25))
6929 as_warn (_("could not set architecture and machine"));
6931 else if (strncmp (level
, "2.0", 3) == 0)
6933 input_line_pointer
+= 3;
6934 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 20))
6935 as_warn (_("could not set architecture and machine"));
6939 as_bad (_("Unrecognized .LEVEL argument\n"));
6940 ignore_rest_of_line ();
6942 demand_empty_rest_of_line ();
6945 /* Handle a .ORIGIN pseudo-op. */
6949 int unused ATTRIBUTE_UNUSED
;
6952 /* We must have a valid space and subspace. */
6953 pa_check_current_space_and_subspace ();
6957 pa_undefine_label ();
6960 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
6961 is for static functions. FIXME. Should share more code with .EXPORT. */
6965 int unused ATTRIBUTE_UNUSED
;
6970 name
= input_line_pointer
;
6971 c
= get_symbol_end ();
6973 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6975 as_bad (_("Cannot define static symbol: %s\n"), name
);
6976 p
= input_line_pointer
;
6978 input_line_pointer
++;
6982 S_CLEAR_EXTERNAL (symbol
);
6983 p
= input_line_pointer
;
6985 if (!is_end_of_statement ())
6987 input_line_pointer
++;
6988 pa_type_args (symbol
, 0);
6992 demand_empty_rest_of_line ();
6995 /* Handle a .PROC pseudo-op. It is used to mark the beginning
6996 of a procedure from a syntactical point of view. */
7000 int unused ATTRIBUTE_UNUSED
;
7002 struct call_info
*call_info
;
7005 /* We must have a valid space and subspace. */
7006 pa_check_current_space_and_subspace ();
7009 if (within_procedure
)
7010 as_fatal (_("Nested procedures"));
7012 /* Reset global variables for new procedure. */
7013 callinfo_found
= FALSE
;
7014 within_procedure
= TRUE
;
7016 /* Create another call_info structure. */
7017 call_info
= (struct call_info
*) xmalloc (sizeof (struct call_info
));
7020 as_fatal (_("Cannot allocate unwind descriptor\n"));
7022 memset (call_info
, 0, sizeof (struct call_info
));
7024 call_info
->ci_next
= NULL
;
7026 if (call_info_root
== NULL
)
7028 call_info_root
= call_info
;
7029 last_call_info
= call_info
;
7033 last_call_info
->ci_next
= call_info
;
7034 last_call_info
= call_info
;
7037 /* set up defaults on call_info structure */
7039 call_info
->ci_unwind
.descriptor
.cannot_unwind
= 0;
7040 call_info
->ci_unwind
.descriptor
.region_desc
= 1;
7041 call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 0;
7043 /* If we got a .PROC pseudo-op, we know that the function is defined
7044 locally. Make sure it gets into the symbol table. */
7046 label_symbol_struct
*label_symbol
= pa_get_label ();
7050 if (label_symbol
->lss_label
)
7052 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7053 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
|= BSF_FUNCTION
;
7056 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7059 last_call_info
->start_symbol
= NULL
;
7062 demand_empty_rest_of_line ();
7065 /* Process the syntatical end of a procedure. Make sure all the
7066 appropriate pseudo-ops were found within the procedure. */
7070 int unused ATTRIBUTE_UNUSED
;
7074 /* We must have a valid space and subspace. */
7075 pa_check_current_space_and_subspace ();
7078 /* If we are within a procedure definition, make sure we've
7079 defined a label for the procedure; handle case where the
7080 label was defined after the .PROC directive.
7082 Note there's not need to diddle with the segment or fragment
7083 for the label symbol in this case. We have already switched
7084 into the new $CODE$ subspace at this point. */
7085 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
7087 label_symbol_struct
*label_symbol
= pa_get_label ();
7091 if (label_symbol
->lss_label
)
7093 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7094 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
7097 /* Also handle allocation of a fixup to hold the unwind
7098 information when the label appears after the proc/procend. */
7099 if (within_entry_exit
)
7104 where
= frag_more (0);
7105 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
7106 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
7107 NULL
, (offsetT
) 0, NULL
,
7108 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
7113 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7116 as_bad (_("Missing function name for .PROC"));
7119 if (!within_procedure
)
7120 as_bad (_("misplaced .procend"));
7122 if (!callinfo_found
)
7123 as_bad (_("Missing .callinfo for this procedure"));
7125 if (within_entry_exit
)
7126 as_bad (_("Missing .EXIT for a .ENTRY"));
7129 /* ELF needs to mark the end of each function so that it can compute
7130 the size of the function (apparently its needed in the symbol table). */
7131 hppa_elf_mark_end_of_function ();
7134 within_procedure
= FALSE
;
7135 demand_empty_rest_of_line ();
7136 pa_undefine_label ();
7140 /* If VALUE is an exact power of two between zero and 2^31, then
7141 return log2 (VALUE). Else return -1. */
7149 while ((1 << shift
) != value
&& shift
< 32)
7158 /* Check to make sure we have a valid space and subspace. */
7161 pa_check_current_space_and_subspace ()
7163 if (current_space
== NULL
)
7164 as_fatal (_("Not in a space.\n"));
7166 if (current_subspace
== NULL
)
7167 as_fatal (_("Not in a subspace.\n"));
7170 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
7171 then create a new space entry to hold the information specified
7172 by the parameters to the .SPACE directive. */
7174 static sd_chain_struct
*
7175 pa_parse_space_stmt (space_name
, create_flag
)
7179 char *name
, *ptemp
, c
;
7180 char loadable
, defined
, private, sort
;
7182 asection
*seg
= NULL
;
7183 sd_chain_struct
*space
;
7185 /* load default values */
7191 if (strcmp (space_name
, "$TEXT$") == 0)
7193 seg
= pa_def_spaces
[0].segment
;
7194 defined
= pa_def_spaces
[0].defined
;
7195 private = pa_def_spaces
[0].private;
7196 sort
= pa_def_spaces
[0].sort
;
7197 spnum
= pa_def_spaces
[0].spnum
;
7199 else if (strcmp (space_name
, "$PRIVATE$") == 0)
7201 seg
= pa_def_spaces
[1].segment
;
7202 defined
= pa_def_spaces
[1].defined
;
7203 private = pa_def_spaces
[1].private;
7204 sort
= pa_def_spaces
[1].sort
;
7205 spnum
= pa_def_spaces
[1].spnum
;
7208 if (!is_end_of_statement ())
7210 print_errors
= FALSE
;
7211 ptemp
= input_line_pointer
+ 1;
7212 /* First see if the space was specified as a number rather than
7213 as a name. According to the PA assembly manual the rest of
7214 the line should be ignored. */
7216 pa_parse_number (&ptemp
, 0);
7220 input_line_pointer
= ptemp
;
7224 while (!is_end_of_statement ())
7226 input_line_pointer
++;
7227 name
= input_line_pointer
;
7228 c
= get_symbol_end ();
7229 if ((strncasecmp (name
, "spnum", 5) == 0))
7231 *input_line_pointer
= c
;
7232 input_line_pointer
++;
7233 spnum
= get_absolute_expression ();
7235 else if ((strncasecmp (name
, "sort", 4) == 0))
7237 *input_line_pointer
= c
;
7238 input_line_pointer
++;
7239 sort
= get_absolute_expression ();
7241 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7243 *input_line_pointer
= c
;
7246 else if ((strncasecmp (name
, "notdefined", 10) == 0))
7248 *input_line_pointer
= c
;
7251 else if ((strncasecmp (name
, "private", 7) == 0))
7253 *input_line_pointer
= c
;
7258 as_bad (_("Invalid .SPACE argument"));
7259 *input_line_pointer
= c
;
7260 if (!is_end_of_statement ())
7261 input_line_pointer
++;
7265 print_errors
= TRUE
;
7268 if (create_flag
&& seg
== NULL
)
7269 seg
= subseg_new (space_name
, 0);
7271 /* If create_flag is nonzero, then create the new space with
7272 the attributes computed above. Else set the values in
7273 an already existing space -- this can only happen for
7274 the first occurence of a built-in space. */
7276 space
= create_new_space (space_name
, spnum
, loadable
, defined
,
7277 private, sort
, seg
, 1);
7280 space
= is_defined_space (space_name
);
7281 SPACE_SPNUM (space
) = spnum
;
7282 SPACE_DEFINED (space
) = defined
& 1;
7283 SPACE_USER_DEFINED (space
) = 1;
7286 #ifdef obj_set_section_attributes
7287 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7293 /* Handle a .SPACE pseudo-op; this switches the current space to the
7294 given space, creating the new space if necessary. */
7298 int unused ATTRIBUTE_UNUSED
;
7300 char *name
, c
, *space_name
, *save_s
;
7301 sd_chain_struct
*sd_chain
;
7303 if (within_procedure
)
7305 as_bad (_("Can\'t change spaces within a procedure definition. Ignored"));
7306 ignore_rest_of_line ();
7310 /* Check for some of the predefined spaces. FIXME: most of the code
7311 below is repeated several times, can we extract the common parts
7312 and place them into a subroutine or something similar? */
7313 /* FIXME Is this (and the next IF stmt) really right?
7314 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
7315 if (strncmp (input_line_pointer
, "$TEXT$", 6) == 0)
7317 input_line_pointer
+= 6;
7318 sd_chain
= is_defined_space ("$TEXT$");
7319 if (sd_chain
== NULL
)
7320 sd_chain
= pa_parse_space_stmt ("$TEXT$", 1);
7321 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7322 sd_chain
= pa_parse_space_stmt ("$TEXT$", 0);
7324 current_space
= sd_chain
;
7325 subseg_set (text_section
, sd_chain
->sd_last_subseg
);
7327 = pa_subsegment_to_subspace (text_section
,
7328 sd_chain
->sd_last_subseg
);
7329 demand_empty_rest_of_line ();
7332 if (strncmp (input_line_pointer
, "$PRIVATE$", 9) == 0)
7334 input_line_pointer
+= 9;
7335 sd_chain
= is_defined_space ("$PRIVATE$");
7336 if (sd_chain
== NULL
)
7337 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 1);
7338 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7339 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 0);
7341 current_space
= sd_chain
;
7342 subseg_set (data_section
, sd_chain
->sd_last_subseg
);
7344 = pa_subsegment_to_subspace (data_section
,
7345 sd_chain
->sd_last_subseg
);
7346 demand_empty_rest_of_line ();
7349 if (!strncasecmp (input_line_pointer
,
7350 GDB_DEBUG_SPACE_NAME
,
7351 strlen (GDB_DEBUG_SPACE_NAME
)))
7353 input_line_pointer
+= strlen (GDB_DEBUG_SPACE_NAME
);
7354 sd_chain
= is_defined_space (GDB_DEBUG_SPACE_NAME
);
7355 if (sd_chain
== NULL
)
7356 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 1);
7357 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7358 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 0);
7360 current_space
= sd_chain
;
7363 asection
*gdb_section
7364 = bfd_make_section_old_way (stdoutput
, GDB_DEBUG_SPACE_NAME
);
7366 subseg_set (gdb_section
, sd_chain
->sd_last_subseg
);
7368 = pa_subsegment_to_subspace (gdb_section
,
7369 sd_chain
->sd_last_subseg
);
7371 demand_empty_rest_of_line ();
7375 /* It could be a space specified by number. */
7377 save_s
= input_line_pointer
;
7379 pa_parse_number (&input_line_pointer
, 0);
7382 if ((sd_chain
= pa_find_space_by_number (pa_number
)))
7384 current_space
= sd_chain
;
7386 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7388 = pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7389 sd_chain
->sd_last_subseg
);
7390 demand_empty_rest_of_line ();
7395 /* Not a number, attempt to create a new space. */
7397 input_line_pointer
= save_s
;
7398 name
= input_line_pointer
;
7399 c
= get_symbol_end ();
7400 space_name
= xmalloc (strlen (name
) + 1);
7401 strcpy (space_name
, name
);
7402 *input_line_pointer
= c
;
7404 sd_chain
= pa_parse_space_stmt (space_name
, 1);
7405 current_space
= sd_chain
;
7407 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7408 current_subspace
= pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7409 sd_chain
->sd_last_subseg
);
7410 demand_empty_rest_of_line ();
7414 /* Switch to a new space. (I think). FIXME. */
7418 int unused ATTRIBUTE_UNUSED
;
7423 sd_chain_struct
*space
;
7425 name
= input_line_pointer
;
7426 c
= get_symbol_end ();
7427 space
= is_defined_space (name
);
7431 md_number_to_chars (p
, SPACE_SPNUM (space
), 4);
7434 as_warn (_("Undefined space: '%s' Assuming space number = 0."), name
);
7436 *input_line_pointer
= c
;
7437 demand_empty_rest_of_line ();
7440 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
7441 given subspace, creating the new subspace if necessary.
7443 FIXME. Should mirror pa_space more closely, in particular how
7444 they're broken up into subroutines. */
7447 pa_subspace (create_new
)
7450 char *name
, *ss_name
, c
;
7451 char loadable
, code_only
, common
, dup_common
, zero
, sort
;
7452 int i
, access
, space_index
, alignment
, quadrant
, applicable
, flags
;
7453 sd_chain_struct
*space
;
7454 ssd_chain_struct
*ssd
;
7457 if (current_space
== NULL
)
7458 as_fatal (_("Must be in a space before changing or declaring subspaces.\n"));
7460 if (within_procedure
)
7462 as_bad (_("Can\'t change subspaces within a procedure definition. Ignored"));
7463 ignore_rest_of_line ();
7467 name
= input_line_pointer
;
7468 c
= get_symbol_end ();
7469 ss_name
= xmalloc (strlen (name
) + 1);
7470 strcpy (ss_name
, name
);
7471 *input_line_pointer
= c
;
7473 /* Load default values. */
7485 space
= current_space
;
7489 ssd
= is_defined_subspace (ss_name
);
7490 /* Allow user to override the builtin attributes of subspaces. But
7491 only allow the attributes to be changed once! */
7492 if (ssd
&& SUBSPACE_DEFINED (ssd
))
7494 subseg_set (ssd
->ssd_seg
, ssd
->ssd_subseg
);
7495 current_subspace
= ssd
;
7496 if (!is_end_of_statement ())
7497 as_warn (_("Parameters of an existing subspace can\'t be modified"));
7498 demand_empty_rest_of_line ();
7503 /* A new subspace. Load default values if it matches one of
7504 the builtin subspaces. */
7506 while (pa_def_subspaces
[i
].name
)
7508 if (strcasecmp (pa_def_subspaces
[i
].name
, ss_name
) == 0)
7510 loadable
= pa_def_subspaces
[i
].loadable
;
7511 common
= pa_def_subspaces
[i
].common
;
7512 dup_common
= pa_def_subspaces
[i
].dup_common
;
7513 code_only
= pa_def_subspaces
[i
].code_only
;
7514 zero
= pa_def_subspaces
[i
].zero
;
7515 space_index
= pa_def_subspaces
[i
].space_index
;
7516 alignment
= pa_def_subspaces
[i
].alignment
;
7517 quadrant
= pa_def_subspaces
[i
].quadrant
;
7518 access
= pa_def_subspaces
[i
].access
;
7519 sort
= pa_def_subspaces
[i
].sort
;
7526 /* We should be working with a new subspace now. Fill in
7527 any information as specified by the user. */
7528 if (!is_end_of_statement ())
7530 input_line_pointer
++;
7531 while (!is_end_of_statement ())
7533 name
= input_line_pointer
;
7534 c
= get_symbol_end ();
7535 if ((strncasecmp (name
, "quad", 4) == 0))
7537 *input_line_pointer
= c
;
7538 input_line_pointer
++;
7539 quadrant
= get_absolute_expression ();
7541 else if ((strncasecmp (name
, "align", 5) == 0))
7543 *input_line_pointer
= c
;
7544 input_line_pointer
++;
7545 alignment
= get_absolute_expression ();
7546 if (log2 (alignment
) == -1)
7548 as_bad (_("Alignment must be a power of 2"));
7552 else if ((strncasecmp (name
, "access", 6) == 0))
7554 *input_line_pointer
= c
;
7555 input_line_pointer
++;
7556 access
= get_absolute_expression ();
7558 else if ((strncasecmp (name
, "sort", 4) == 0))
7560 *input_line_pointer
= c
;
7561 input_line_pointer
++;
7562 sort
= get_absolute_expression ();
7564 else if ((strncasecmp (name
, "code_only", 9) == 0))
7566 *input_line_pointer
= c
;
7569 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7571 *input_line_pointer
= c
;
7574 else if ((strncasecmp (name
, "common", 6) == 0))
7576 *input_line_pointer
= c
;
7579 else if ((strncasecmp (name
, "dup_comm", 8) == 0))
7581 *input_line_pointer
= c
;
7584 else if ((strncasecmp (name
, "zero", 4) == 0))
7586 *input_line_pointer
= c
;
7589 else if ((strncasecmp (name
, "first", 5) == 0))
7590 as_bad (_("FIRST not supported as a .SUBSPACE argument"));
7592 as_bad (_("Invalid .SUBSPACE argument"));
7593 if (!is_end_of_statement ())
7594 input_line_pointer
++;
7598 /* Compute a reasonable set of BFD flags based on the information
7599 in the .subspace directive. */
7600 applicable
= bfd_applicable_section_flags (stdoutput
);
7603 flags
|= (SEC_ALLOC
| SEC_LOAD
);
7606 if (common
|| dup_common
)
7607 flags
|= SEC_IS_COMMON
;
7609 flags
|= SEC_RELOC
| SEC_HAS_CONTENTS
;
7611 /* This is a zero-filled subspace (eg BSS). */
7613 flags
&= ~(SEC_LOAD
| SEC_HAS_CONTENTS
);
7615 applicable
&= flags
;
7617 /* If this is an existing subspace, then we want to use the
7618 segment already associated with the subspace.
7620 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
7621 lots of sections. It might be a problem in the PA ELF
7622 code, I do not know yet. For now avoid creating anything
7623 but the "standard" sections for ELF. */
7625 section
= subseg_force_new (ss_name
, 0);
7627 section
= ssd
->ssd_seg
;
7629 section
= subseg_new (ss_name
, 0);
7632 seg_info (section
)->bss
= 1;
7634 /* Now set the flags. */
7635 bfd_set_section_flags (stdoutput
, section
, applicable
);
7637 /* Record any alignment request for this section. */
7638 record_alignment (section
, log2 (alignment
));
7640 /* Set the starting offset for this section. */
7641 bfd_set_section_vma (stdoutput
, section
,
7642 pa_subspace_start (space
, quadrant
));
7644 /* Now that all the flags are set, update an existing subspace,
7645 or create a new one. */
7648 current_subspace
= update_subspace (space
, ss_name
, loadable
,
7649 code_only
, common
, dup_common
,
7650 sort
, zero
, access
, space_index
,
7651 alignment
, quadrant
,
7654 current_subspace
= create_new_subspace (space
, ss_name
, loadable
,
7656 dup_common
, zero
, sort
,
7657 access
, space_index
,
7658 alignment
, quadrant
, section
);
7660 demand_empty_rest_of_line ();
7661 current_subspace
->ssd_seg
= section
;
7662 subseg_set (current_subspace
->ssd_seg
, current_subspace
->ssd_subseg
);
7664 SUBSPACE_DEFINED (current_subspace
) = 1;
7667 /* Create default space and subspace dictionaries. */
7674 space_dict_root
= NULL
;
7675 space_dict_last
= NULL
;
7678 while (pa_def_spaces
[i
].name
)
7682 /* Pick the right name to use for the new section. */
7683 name
= pa_def_spaces
[i
].name
;
7685 pa_def_spaces
[i
].segment
= subseg_new (name
, 0);
7686 create_new_space (pa_def_spaces
[i
].name
, pa_def_spaces
[i
].spnum
,
7687 pa_def_spaces
[i
].loadable
, pa_def_spaces
[i
].defined
,
7688 pa_def_spaces
[i
].private, pa_def_spaces
[i
].sort
,
7689 pa_def_spaces
[i
].segment
, 0);
7694 while (pa_def_subspaces
[i
].name
)
7697 int applicable
, subsegment
;
7698 asection
*segment
= NULL
;
7699 sd_chain_struct
*space
;
7701 /* Pick the right name for the new section and pick the right
7702 subsegment number. */
7703 name
= pa_def_subspaces
[i
].name
;
7706 /* Create the new section. */
7707 segment
= subseg_new (name
, subsegment
);
7709 /* For SOM we want to replace the standard .text, .data, and .bss
7710 sections with our own. We also want to set BFD flags for
7711 all the built-in subspaces. */
7712 if (!strcmp (pa_def_subspaces
[i
].name
, "$CODE$"))
7714 text_section
= segment
;
7715 applicable
= bfd_applicable_section_flags (stdoutput
);
7716 bfd_set_section_flags (stdoutput
, segment
,
7717 applicable
& (SEC_ALLOC
| SEC_LOAD
7718 | SEC_RELOC
| SEC_CODE
7720 | SEC_HAS_CONTENTS
));
7722 else if (!strcmp (pa_def_subspaces
[i
].name
, "$DATA$"))
7724 data_section
= segment
;
7725 applicable
= bfd_applicable_section_flags (stdoutput
);
7726 bfd_set_section_flags (stdoutput
, segment
,
7727 applicable
& (SEC_ALLOC
| SEC_LOAD
7729 | SEC_HAS_CONTENTS
));
7732 else if (!strcmp (pa_def_subspaces
[i
].name
, "$BSS$"))
7734 bss_section
= segment
;
7735 applicable
= bfd_applicable_section_flags (stdoutput
);
7736 bfd_set_section_flags (stdoutput
, segment
,
7737 applicable
& SEC_ALLOC
);
7739 else if (!strcmp (pa_def_subspaces
[i
].name
, "$LIT$"))
7741 applicable
= bfd_applicable_section_flags (stdoutput
);
7742 bfd_set_section_flags (stdoutput
, segment
,
7743 applicable
& (SEC_ALLOC
| SEC_LOAD
7746 | SEC_HAS_CONTENTS
));
7748 else if (!strcmp (pa_def_subspaces
[i
].name
, "$MILLICODE$"))
7750 applicable
= bfd_applicable_section_flags (stdoutput
);
7751 bfd_set_section_flags (stdoutput
, segment
,
7752 applicable
& (SEC_ALLOC
| SEC_LOAD
7755 | SEC_HAS_CONTENTS
));
7757 else if (!strcmp (pa_def_subspaces
[i
].name
, "$UNWIND$"))
7759 applicable
= bfd_applicable_section_flags (stdoutput
);
7760 bfd_set_section_flags (stdoutput
, segment
,
7761 applicable
& (SEC_ALLOC
| SEC_LOAD
7764 | SEC_HAS_CONTENTS
));
7767 /* Find the space associated with this subspace. */
7768 space
= pa_segment_to_space (pa_def_spaces
[pa_def_subspaces
[i
].
7769 def_space_index
].segment
);
7772 as_fatal (_("Internal error: Unable to find containing space for %s."),
7773 pa_def_subspaces
[i
].name
);
7776 create_new_subspace (space
, name
,
7777 pa_def_subspaces
[i
].loadable
,
7778 pa_def_subspaces
[i
].code_only
,
7779 pa_def_subspaces
[i
].common
,
7780 pa_def_subspaces
[i
].dup_common
,
7781 pa_def_subspaces
[i
].zero
,
7782 pa_def_subspaces
[i
].sort
,
7783 pa_def_subspaces
[i
].access
,
7784 pa_def_subspaces
[i
].space_index
,
7785 pa_def_subspaces
[i
].alignment
,
7786 pa_def_subspaces
[i
].quadrant
,
7792 /* Create a new space NAME, with the appropriate flags as defined
7793 by the given parameters. */
7795 static sd_chain_struct
*
7796 create_new_space (name
, spnum
, loadable
, defined
, private,
7797 sort
, seg
, user_defined
)
7807 sd_chain_struct
*chain_entry
;
7809 chain_entry
= (sd_chain_struct
*) xmalloc (sizeof (sd_chain_struct
));
7811 as_fatal (_("Out of memory: could not allocate new space chain entry: %s\n"),
7814 SPACE_NAME (chain_entry
) = (char *) xmalloc (strlen (name
) + 1);
7815 strcpy (SPACE_NAME (chain_entry
), name
);
7816 SPACE_DEFINED (chain_entry
) = defined
;
7817 SPACE_USER_DEFINED (chain_entry
) = user_defined
;
7818 SPACE_SPNUM (chain_entry
) = spnum
;
7820 chain_entry
->sd_seg
= seg
;
7821 chain_entry
->sd_last_subseg
= -1;
7822 chain_entry
->sd_subspaces
= NULL
;
7823 chain_entry
->sd_next
= NULL
;
7825 /* Find spot for the new space based on its sort key. */
7826 if (!space_dict_last
)
7827 space_dict_last
= chain_entry
;
7829 if (space_dict_root
== NULL
)
7830 space_dict_root
= chain_entry
;
7833 sd_chain_struct
*chain_pointer
;
7834 sd_chain_struct
*prev_chain_pointer
;
7836 chain_pointer
= space_dict_root
;
7837 prev_chain_pointer
= NULL
;
7839 while (chain_pointer
)
7841 prev_chain_pointer
= chain_pointer
;
7842 chain_pointer
= chain_pointer
->sd_next
;
7845 /* At this point we've found the correct place to add the new
7846 entry. So add it and update the linked lists as appropriate. */
7847 if (prev_chain_pointer
)
7849 chain_entry
->sd_next
= chain_pointer
;
7850 prev_chain_pointer
->sd_next
= chain_entry
;
7854 space_dict_root
= chain_entry
;
7855 chain_entry
->sd_next
= chain_pointer
;
7858 if (chain_entry
->sd_next
== NULL
)
7859 space_dict_last
= chain_entry
;
7862 /* This is here to catch predefined spaces which do not get
7863 modified by the user's input. Another call is found at
7864 the bottom of pa_parse_space_stmt to handle cases where
7865 the user modifies a predefined space. */
7866 #ifdef obj_set_section_attributes
7867 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7873 /* Create a new subspace NAME, with the appropriate flags as defined
7874 by the given parameters.
7876 Add the new subspace to the subspace dictionary chain in numerical
7877 order as defined by the SORT entries. */
7879 static ssd_chain_struct
*
7880 create_new_subspace (space
, name
, loadable
, code_only
, common
,
7881 dup_common
, is_zero
, sort
, access
, space_index
,
7882 alignment
, quadrant
, seg
)
7883 sd_chain_struct
*space
;
7885 int loadable
, code_only
, common
, dup_common
, is_zero
;
7893 ssd_chain_struct
*chain_entry
;
7895 chain_entry
= (ssd_chain_struct
*) xmalloc (sizeof (ssd_chain_struct
));
7897 as_fatal (_("Out of memory: could not allocate new subspace chain entry: %s\n"), name
);
7899 SUBSPACE_NAME (chain_entry
) = (char *) xmalloc (strlen (name
) + 1);
7900 strcpy (SUBSPACE_NAME (chain_entry
), name
);
7902 /* Initialize subspace_defined. When we hit a .subspace directive
7903 we'll set it to 1 which "locks-in" the subspace attributes. */
7904 SUBSPACE_DEFINED (chain_entry
) = 0;
7906 chain_entry
->ssd_subseg
= 0;
7907 chain_entry
->ssd_seg
= seg
;
7908 chain_entry
->ssd_next
= NULL
;
7910 /* Find spot for the new subspace based on its sort key. */
7911 if (space
->sd_subspaces
== NULL
)
7912 space
->sd_subspaces
= chain_entry
;
7915 ssd_chain_struct
*chain_pointer
;
7916 ssd_chain_struct
*prev_chain_pointer
;
7918 chain_pointer
= space
->sd_subspaces
;
7919 prev_chain_pointer
= NULL
;
7921 while (chain_pointer
)
7923 prev_chain_pointer
= chain_pointer
;
7924 chain_pointer
= chain_pointer
->ssd_next
;
7927 /* Now we have somewhere to put the new entry. Insert it and update
7929 if (prev_chain_pointer
)
7931 chain_entry
->ssd_next
= chain_pointer
;
7932 prev_chain_pointer
->ssd_next
= chain_entry
;
7936 space
->sd_subspaces
= chain_entry
;
7937 chain_entry
->ssd_next
= chain_pointer
;
7941 #ifdef obj_set_subsection_attributes
7942 obj_set_subsection_attributes (seg
, space
->sd_seg
, access
,
7949 /* Update the information for the given subspace based upon the
7950 various arguments. Return the modified subspace chain entry. */
7952 static ssd_chain_struct
*
7953 update_subspace (space
, name
, loadable
, code_only
, common
, dup_common
, sort
,
7954 zero
, access
, space_index
, alignment
, quadrant
, section
)
7955 sd_chain_struct
*space
;
7969 ssd_chain_struct
*chain_entry
;
7971 chain_entry
= is_defined_subspace (name
);
7973 #ifdef obj_set_subsection_attributes
7974 obj_set_subsection_attributes (section
, space
->sd_seg
, access
,
7981 /* Return the space chain entry for the space with the name NAME or
7982 NULL if no such space exists. */
7984 static sd_chain_struct
*
7985 is_defined_space (name
)
7988 sd_chain_struct
*chain_pointer
;
7990 for (chain_pointer
= space_dict_root
;
7992 chain_pointer
= chain_pointer
->sd_next
)
7994 if (strcmp (SPACE_NAME (chain_pointer
), name
) == 0)
7995 return chain_pointer
;
7998 /* No mapping from segment to space was found. Return NULL. */
8002 /* Find and return the space associated with the given seg. If no mapping
8003 from the given seg to a space is found, then return NULL.
8005 Unlike subspaces, the number of spaces is not expected to grow much,
8006 so a linear exhaustive search is OK here. */
8008 static sd_chain_struct
*
8009 pa_segment_to_space (seg
)
8012 sd_chain_struct
*space_chain
;
8014 /* Walk through each space looking for the correct mapping. */
8015 for (space_chain
= space_dict_root
;
8017 space_chain
= space_chain
->sd_next
)
8019 if (space_chain
->sd_seg
== seg
)
8023 /* Mapping was not found. Return NULL. */
8027 /* Return the space chain entry for the subspace with the name NAME or
8028 NULL if no such subspace exists.
8030 Uses a linear search through all the spaces and subspaces, this may
8031 not be appropriate if we ever being placing each function in its
8034 static ssd_chain_struct
*
8035 is_defined_subspace (name
)
8038 sd_chain_struct
*space_chain
;
8039 ssd_chain_struct
*subspace_chain
;
8041 /* Walk through each space. */
8042 for (space_chain
= space_dict_root
;
8044 space_chain
= space_chain
->sd_next
)
8046 /* Walk through each subspace looking for a name which matches. */
8047 for (subspace_chain
= space_chain
->sd_subspaces
;
8049 subspace_chain
= subspace_chain
->ssd_next
)
8050 if (strcmp (SUBSPACE_NAME (subspace_chain
), name
) == 0)
8051 return subspace_chain
;
8054 /* Subspace wasn't found. Return NULL. */
8058 /* Find and return the subspace associated with the given seg. If no
8059 mapping from the given seg to a subspace is found, then return NULL.
8061 If we ever put each procedure/function within its own subspace
8062 (to make life easier on the compiler and linker), then this will have
8063 to become more efficient. */
8065 static ssd_chain_struct
*
8066 pa_subsegment_to_subspace (seg
, subseg
)
8070 sd_chain_struct
*space_chain
;
8071 ssd_chain_struct
*subspace_chain
;
8073 /* Walk through each space. */
8074 for (space_chain
= space_dict_root
;
8076 space_chain
= space_chain
->sd_next
)
8078 if (space_chain
->sd_seg
== seg
)
8080 /* Walk through each subspace within each space looking for
8081 the correct mapping. */
8082 for (subspace_chain
= space_chain
->sd_subspaces
;
8084 subspace_chain
= subspace_chain
->ssd_next
)
8085 if (subspace_chain
->ssd_subseg
== (int) subseg
)
8086 return subspace_chain
;
8090 /* No mapping from subsegment to subspace found. Return NULL. */
8094 /* Given a number, try and find a space with the name number.
8096 Return a pointer to a space dictionary chain entry for the space
8097 that was found or NULL on failure. */
8099 static sd_chain_struct
*
8100 pa_find_space_by_number (number
)
8103 sd_chain_struct
*space_chain
;
8105 for (space_chain
= space_dict_root
;
8107 space_chain
= space_chain
->sd_next
)
8109 if (SPACE_SPNUM (space_chain
) == (unsigned int) number
)
8113 /* No appropriate space found. Return NULL. */
8117 /* Return the starting address for the given subspace. If the starting
8118 address is unknown then return zero. */
8121 pa_subspace_start (space
, quadrant
)
8122 sd_chain_struct
*space
;
8125 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
8126 is not correct for the PA OSF1 port. */
8127 if ((strcmp (SPACE_NAME (space
), "$PRIVATE$") == 0) && quadrant
== 1)
8129 else if (space
->sd_seg
== data_section
&& quadrant
== 1)
8136 /* FIXME. Needs documentation. */
8138 pa_next_subseg (space
)
8139 sd_chain_struct
*space
;
8142 space
->sd_last_subseg
++;
8143 return space
->sd_last_subseg
;
8147 /* Helper function for pa_stringer. Used to find the end of
8154 unsigned int c
= *s
& CHAR_MASK
;
8167 /* Handle a .STRING type pseudo-op. */
8170 pa_stringer (append_zero
)
8173 char *s
, num_buf
[4];
8177 /* Preprocess the string to handle PA-specific escape sequences.
8178 For example, \xDD where DD is a hexadecimal number should be
8179 changed to \OOO where OOO is an octal number. */
8182 /* We must have a valid space and subspace. */
8183 pa_check_current_space_and_subspace ();
8186 /* Skip the opening quote. */
8187 s
= input_line_pointer
+ 1;
8189 while (is_a_char (c
= pa_stringer_aux (s
++)))
8196 /* Handle \x<num>. */
8199 unsigned int number
;
8204 /* Get past the 'x'. */
8206 for (num_digit
= 0, number
= 0, dg
= *s
;
8208 && (ISDIGIT (dg
) || (dg
>= 'a' && dg
<= 'f')
8209 || (dg
>= 'A' && dg
<= 'F'));
8213 number
= number
* 16 + dg
- '0';
8214 else if (dg
>= 'a' && dg
<= 'f')
8215 number
= number
* 16 + dg
- 'a' + 10;
8217 number
= number
* 16 + dg
- 'A' + 10;
8227 sprintf (num_buf
, "%02o", number
);
8230 sprintf (num_buf
, "%03o", number
);
8233 for (i
= 0; i
<= num_digit
; i
++)
8234 s_start
[i
] = num_buf
[i
];
8238 /* This might be a "\"", skip over the escaped char. */
8245 stringer (append_zero
);
8246 pa_undefine_label ();
8249 /* Handle a .VERSION pseudo-op. */
8253 int unused ATTRIBUTE_UNUSED
;
8256 pa_undefine_label ();
8261 /* Handle a .COMPILER pseudo-op. */
8264 pa_compiler (unused
)
8265 int unused ATTRIBUTE_UNUSED
;
8267 obj_som_compiler (0);
8268 pa_undefine_label ();
8273 /* Handle a .COPYRIGHT pseudo-op. */
8276 pa_copyright (unused
)
8277 int unused ATTRIBUTE_UNUSED
;
8280 pa_undefine_label ();
8283 /* Just like a normal cons, but when finished we have to undefine
8284 the latest space label. */
8291 pa_undefine_label ();
8294 /* Like float_cons, but we need to undefine our label. */
8297 pa_float_cons (float_type
)
8300 float_cons (float_type
);
8301 pa_undefine_label ();
8304 /* Like s_fill, but delete our label when finished. */
8308 int unused ATTRIBUTE_UNUSED
;
8311 /* We must have a valid space and subspace. */
8312 pa_check_current_space_and_subspace ();
8316 pa_undefine_label ();
8319 /* Like lcomm, but delete our label when finished. */
8322 pa_lcomm (needs_align
)
8326 /* We must have a valid space and subspace. */
8327 pa_check_current_space_and_subspace ();
8330 s_lcomm (needs_align
);
8331 pa_undefine_label ();
8334 /* Like lsym, but delete our label when finished. */
8338 int unused ATTRIBUTE_UNUSED
;
8341 /* We must have a valid space and subspace. */
8342 pa_check_current_space_and_subspace ();
8346 pa_undefine_label ();
8349 /* On the PA relocations which involve function symbols must not be
8350 adjusted. This so that the linker can know when/how to create argument
8351 relocation stubs for indirect calls and calls to static functions.
8353 "T" field selectors create DLT relative fixups for accessing
8354 globals and statics in PIC code; each DLT relative fixup creates
8355 an entry in the DLT table. The entries contain the address of
8356 the final target (eg accessing "foo" would create a DLT entry
8357 with the address of "foo").
8359 Unfortunately, the HP linker doesn't take into account any addend
8360 when generating the DLT; so accessing $LIT$+8 puts the address of
8361 $LIT$ into the DLT rather than the address of $LIT$+8.
8363 The end result is we can't perform relocation symbol reductions for
8364 any fixup which creates entries in the DLT (eg they use "T" field
8367 Reject reductions involving symbols with external scope; such
8368 reductions make life a living hell for object file editors.
8370 FIXME. Also reject R_HPPA relocations which are 32bits wide in
8371 the code space. The SOM BFD backend doesn't know how to pull the
8372 right bits out of an instruction. */
8375 hppa_fix_adjustable (fixp
)
8379 struct hppa_fix_struct
*hppa_fix
;
8381 hppa_fix
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8384 /* Reject reductions of symbols in 32bit relocs. */
8385 if (fixp
->fx_r_type
== R_HPPA
&& hppa_fix
->fx_r_format
== 32)
8390 /* LR/RR selectors are implicitly used for a number of different relocation
8391 types. We must ensure that none of these types are adjusted (see below)
8392 even if they occur with a different selector. */
8393 code
= elf_hppa_reloc_final_type (stdoutput
, fixp
->fx_r_type
,
8394 hppa_fix
->fx_r_format
,
8395 hppa_fix
->fx_r_field
);
8399 /* Relocation types which use e_lrsel. */
8400 case R_PARISC_DIR21L
:
8401 case R_PARISC_DLTREL21L
:
8402 case R_PARISC_DPREL21L
:
8403 case R_PARISC_PLTOFF21L
:
8405 /* Relocation types which use e_rrsel. */
8406 case R_PARISC_DIR14R
:
8407 case R_PARISC_DIR14DR
:
8408 case R_PARISC_DIR14WR
:
8409 case R_PARISC_DIR17R
:
8410 case R_PARISC_DLTREL14R
:
8411 case R_PARISC_DLTREL14DR
:
8412 case R_PARISC_DLTREL14WR
:
8413 case R_PARISC_DPREL14R
:
8414 case R_PARISC_DPREL14DR
:
8415 case R_PARISC_DPREL14WR
:
8416 case R_PARISC_PLTOFF14R
:
8417 case R_PARISC_PLTOFF14DR
:
8418 case R_PARISC_PLTOFF14WR
:
8420 /* Other types that we reject for reduction. */
8421 case R_PARISC_GNU_VTENTRY
:
8422 case R_PARISC_GNU_VTINHERIT
:
8429 if (fixp
->fx_addsy
&& (S_IS_EXTERNAL (fixp
->fx_addsy
)
8430 || S_IS_WEAK (fixp
->fx_addsy
)))
8433 /* Reject reductions of symbols in sym1-sym2 expressions when
8434 the fixup will occur in a CODE subspace.
8436 XXX FIXME: Long term we probably want to reject all of these;
8437 for example reducing in the debug section would lose if we ever
8438 supported using the optimizing hp linker. */
8441 && (hppa_fix
->segment
->flags
& SEC_CODE
))
8443 /* Apparently sy_used_in_reloc never gets set for sub symbols. */
8444 symbol_mark_used_in_reloc (fixp
->fx_subsy
);
8448 /* We can't adjust any relocs that use LR% and RR% field selectors.
8450 If a symbol is reduced to a section symbol, the assembler will
8451 adjust the addend unless the symbol happens to reside right at
8452 the start of the section. Additionally, the linker has no choice
8453 but to manipulate the addends when coalescing input sections for
8454 "ld -r". Since an LR% field selector is defined to round the
8455 addend, we can't change the addend without risking that a LR% and
8456 it's corresponding (possible multiple) RR% field will no longer
8457 sum to the right value.
8460 . ldil LR%foo+0,%r21
8461 . ldw RR%foo+0(%r21),%r26
8462 . ldw RR%foo+4(%r21),%r25
8464 If foo is at address 4092 (decimal) in section `sect', then after
8465 reducing to the section symbol we get
8466 . LR%sect+4092 == (L%sect)+0
8467 . RR%sect+4092 == (R%sect)+4092
8468 . RR%sect+4096 == (R%sect)-4096
8469 and the last address loses because rounding the addend to 8k
8470 mutiples takes us up to 8192 with an offset of -4096.
8472 In cases where the LR% expression is identical to the RR% one we
8473 will never have a problem, but is so happens that gcc rounds
8474 addends involved in LR% field selectors to work around a HP
8475 linker bug. ie. We often have addresses like the last case
8476 above where the LR% expression is offset from the RR% one. */
8478 if (hppa_fix
->fx_r_field
== e_lrsel
8479 || hppa_fix
->fx_r_field
== e_rrsel
8480 || hppa_fix
->fx_r_field
== e_nlrsel
)
8483 /* Reject reductions of symbols in DLT relative relocs,
8484 relocations with plabels. */
8485 if (hppa_fix
->fx_r_field
== e_tsel
8486 || hppa_fix
->fx_r_field
== e_ltsel
8487 || hppa_fix
->fx_r_field
== e_rtsel
8488 || hppa_fix
->fx_r_field
== e_psel
8489 || hppa_fix
->fx_r_field
== e_rpsel
8490 || hppa_fix
->fx_r_field
== e_lpsel
)
8493 /* Reject absolute calls (jumps). */
8494 if (hppa_fix
->fx_r_type
== R_HPPA_ABS_CALL
)
8497 /* Reject reductions of function symbols. */
8498 if (fixp
->fx_addsy
!= 0 && S_IS_FUNCTION (fixp
->fx_addsy
))
8504 /* Return nonzero if the fixup in FIXP will require a relocation,
8505 even it if appears that the fixup could be completely handled
8509 hppa_force_relocation (fixp
)
8512 struct hppa_fix_struct
*hppa_fixp
;
8514 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8516 if (fixp
->fx_r_type
== (int) R_HPPA_ENTRY
8517 || fixp
->fx_r_type
== (int) R_HPPA_EXIT
8518 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_BRTAB
8519 || fixp
->fx_r_type
== (int) R_HPPA_END_BRTAB
8520 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_TRY
8521 || fixp
->fx_r_type
== (int) R_HPPA_END_TRY
8522 || (fixp
->fx_addsy
!= NULL
&& fixp
->fx_subsy
!= NULL
8523 && (hppa_fixp
->segment
->flags
& SEC_CODE
) != 0))
8527 if (fixp
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
8528 || fixp
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
)
8532 assert (fixp
->fx_addsy
!= NULL
);
8534 /* Ensure we emit a relocation for global symbols so that dynamic
8536 if (S_IS_EXTERNAL (fixp
->fx_addsy
) || S_IS_WEAK (fixp
->fx_addsy
))
8539 /* It is necessary to force PC-relative calls/jumps to have a relocation
8540 entry if they're going to need either an argument relocation or long
8543 && arg_reloc_stub_needed (symbol_arg_reloc_info (fixp
->fx_addsy
),
8544 hppa_fixp
->fx_arg_reloc
))
8547 /* Now check to see if we're going to need a long-branch stub. */
8548 if (fixp
->fx_r_type
== (int) R_HPPA_PCREL_CALL
)
8550 long pc
= md_pcrel_from (fixp
);
8551 valueT distance
, min_stub_distance
;
8553 distance
= fixp
->fx_offset
+ S_GET_VALUE (fixp
->fx_addsy
) - pc
- 8;
8555 /* Distance to the closest possible stub. This will detect most
8556 but not all circumstances where a stub will not work. */
8557 min_stub_distance
= pc
+ 16;
8559 if (last_call_info
!= NULL
)
8560 min_stub_distance
-= S_GET_VALUE (last_call_info
->start_symbol
);
8563 if ((distance
+ 8388608 >= 16777216
8564 && min_stub_distance
<= 8388608)
8565 || (hppa_fixp
->fx_r_format
== 17
8566 && distance
+ 262144 >= 524288
8567 && min_stub_distance
<= 262144)
8568 || (hppa_fixp
->fx_r_format
== 12
8569 && distance
+ 8192 >= 16384
8570 && min_stub_distance
<= 8192)
8575 if (fixp
->fx_r_type
== (int) R_HPPA_ABS_CALL
)
8578 /* No need (yet) to force another relocations to be emitted. */
8582 /* Now for some ELF specific code. FIXME. */
8584 /* Mark the end of a function so that it's possible to compute
8585 the size of the function in elf_hppa_final_processing. */
8588 hppa_elf_mark_end_of_function ()
8590 /* ELF does not have EXIT relocations. All we do is create a
8591 temporary symbol marking the end of the function. */
8594 if (last_call_info
== NULL
|| last_call_info
->start_symbol
== NULL
)
8596 /* We have already warned about a missing label,
8597 or other problems. */
8601 name
= (char *) xmalloc (strlen ("L$\001end_")
8602 + strlen (S_GET_NAME (last_call_info
->start_symbol
))
8608 strcpy (name
, "L$\001end_");
8609 strcat (name
, S_GET_NAME (last_call_info
->start_symbol
));
8611 /* If we have a .exit followed by a .procend, then the
8612 symbol will have already been defined. */
8613 symbolP
= symbol_find (name
);
8616 /* The symbol has already been defined! This can
8617 happen if we have a .exit followed by a .procend.
8619 This is *not* an error. All we want to do is free
8620 the memory we just allocated for the name and continue. */
8625 /* symbol value should be the offset of the
8626 last instruction of the function */
8627 symbolP
= symbol_new (name
, now_seg
, (valueT
) (frag_now_fix () - 4),
8631 S_CLEAR_EXTERNAL (symbolP
);
8632 symbol_table_insert (symbolP
);
8636 last_call_info
->end_symbol
= symbolP
;
8638 as_bad (_("Symbol '%s' could not be created."), name
);
8642 as_bad (_("No memory for symbol name."));
8646 /* For ELF, this function serves one purpose: to setup the st_size
8647 field of STT_FUNC symbols. To do this, we need to scan the
8648 call_info structure list, determining st_size in by taking the
8649 difference in the address of the beginning/end marker symbols. */
8652 elf_hppa_final_processing ()
8654 struct call_info
*call_info_pointer
;
8656 for (call_info_pointer
= call_info_root
;
8658 call_info_pointer
= call_info_pointer
->ci_next
)
8660 elf_symbol_type
*esym
8661 = ((elf_symbol_type
*)
8662 symbol_get_bfdsym (call_info_pointer
->start_symbol
));
8663 esym
->internal_elf_sym
.st_size
=
8664 S_GET_VALUE (call_info_pointer
->end_symbol
)
8665 - S_GET_VALUE (call_info_pointer
->start_symbol
) + 4;
8670 pa_vtable_entry (ignore
)
8671 int ignore ATTRIBUTE_UNUSED
;
8673 struct fix
*new_fix
;
8675 new_fix
= obj_elf_vtable_entry (0);
8679 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
8680 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8681 hppa_fix
->fx_r_type
= R_HPPA
;
8682 hppa_fix
->fx_r_field
= e_fsel
;
8683 hppa_fix
->fx_r_format
= 32;
8684 hppa_fix
->fx_arg_reloc
= 0;
8685 hppa_fix
->segment
= now_seg
;
8686 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8687 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTENTRY
;
8692 pa_vtable_inherit (ignore
)
8693 int ignore ATTRIBUTE_UNUSED
;
8695 struct fix
*new_fix
;
8697 new_fix
= obj_elf_vtable_inherit (0);
8701 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
8702 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8703 hppa_fix
->fx_r_type
= R_HPPA
;
8704 hppa_fix
->fx_r_field
= e_fsel
;
8705 hppa_fix
->fx_r_format
= 32;
8706 hppa_fix
->fx_arg_reloc
= 0;
8707 hppa_fix
->segment
= now_seg
;
8708 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8709 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTINHERIT
;