1 /* tc-hppa.c -- Assemble for the PA
2 Copyright 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
3 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
61 #define hppa_gen_reloc_type _bfd_elf32_hppa_gen_reloc_type
64 /* ELF objects can have versions, but apparently do not have anywhere
65 to store a copyright string. */
66 #define obj_version obj_elf_version
67 #define obj_copyright obj_elf_version
69 #define UNWIND_SECTION_NAME ".PARISC.unwind"
73 /* Names of various debugging spaces/subspaces. */
74 #define GDB_DEBUG_SPACE_NAME "$GDB_DEBUG$"
75 #define GDB_STRINGS_SUBSPACE_NAME "$GDB_STRINGS$"
76 #define GDB_SYMBOLS_SUBSPACE_NAME "$GDB_SYMBOLS$"
77 #define UNWIND_SECTION_NAME "$UNWIND$"
79 /* Object file formats specify relocation types. */
80 typedef int reloc_type
;
82 /* SOM objects can have both a version string and a copyright string. */
83 #define obj_version obj_som_version
84 #define obj_copyright obj_som_copyright
86 /* How to generate a relocation. */
87 #define hppa_gen_reloc_type hppa_som_gen_reloc_type
89 /* Object file formats specify BFD symbol types. */
90 typedef som_symbol_type obj_symbol_type
;
91 #define symbol_arg_reloc_info(sym)\
92 (((obj_symbol_type *) symbol_get_bfdsym (sym))->tc_data.ap.hppa_arg_reloc)
94 /* This apparently isn't in older versions of hpux reloc.h. */
96 #define R_DLT_REL 0x78
108 #if TARGET_ARCH_SIZE == 64
109 #define DEFAULT_LEVEL 25
111 #define DEFAULT_LEVEL 10
114 /* Various structures and types used internally in tc-hppa.c. */
116 /* Unwind table and descriptor. FIXME: Sync this with GDB version. */
120 unsigned int cannot_unwind
:1;
121 unsigned int millicode
:1;
122 unsigned int millicode_save_rest
:1;
123 unsigned int region_desc
:2;
124 unsigned int save_sr
:2;
125 unsigned int entry_fr
:4;
126 unsigned int entry_gr
:5;
127 unsigned int args_stored
:1;
128 unsigned int call_fr
:5;
129 unsigned int call_gr
:5;
130 unsigned int save_sp
:1;
131 unsigned int save_rp
:1;
132 unsigned int save_rp_in_frame
:1;
133 unsigned int extn_ptr_defined
:1;
134 unsigned int cleanup_defined
:1;
136 unsigned int hpe_interrupt_marker
:1;
137 unsigned int hpux_interrupt_marker
:1;
138 unsigned int reserved
:3;
139 unsigned int frame_size
:27;
142 /* We can't rely on compilers placing bitfields in any particular
143 place, so use these macros when dumping unwind descriptors to
145 #define UNWIND_LOW32(U) \
146 (((U)->cannot_unwind << 31) \
147 | ((U)->millicode << 30) \
148 | ((U)->millicode_save_rest << 29) \
149 | ((U)->region_desc << 27) \
150 | ((U)->save_sr << 25) \
151 | ((U)->entry_fr << 21) \
152 | ((U)->entry_gr << 16) \
153 | ((U)->args_stored << 15) \
154 | ((U)->call_fr << 10) \
155 | ((U)->call_gr << 5) \
156 | ((U)->save_sp << 4) \
157 | ((U)->save_rp << 3) \
158 | ((U)->save_rp_in_frame << 2) \
159 | ((U)->extn_ptr_defined << 1) \
160 | ((U)->cleanup_defined << 0))
162 #define UNWIND_HIGH32(U) \
163 (((U)->hpe_interrupt_marker << 31) \
164 | ((U)->hpux_interrupt_marker << 30) \
165 | ((U)->frame_size << 0))
169 /* Starting and ending offsets of the region described by
171 unsigned int start_offset
;
172 unsigned int end_offset
;
173 struct unwind_desc descriptor
;
176 /* This structure is used by the .callinfo, .enter, .leave pseudo-ops to
177 control the entry and exit code they generate. It is also used in
178 creation of the correct stack unwind descriptors.
180 NOTE: GAS does not support .enter and .leave for the generation of
181 prologues and epilogues. FIXME.
183 The fields in structure roughly correspond to the arguments available on the
184 .callinfo pseudo-op. */
188 /* The unwind descriptor being built. */
189 struct unwind_table ci_unwind
;
191 /* Name of this function. */
192 symbolS
*start_symbol
;
194 /* (temporary) symbol used to mark the end of this function. */
197 /* Next entry in the chain. */
198 struct call_info
*ci_next
;
201 /* Operand formats for FP instructions. Note not all FP instructions
202 allow all four formats to be used (for example fmpysub only allows
206 SGL
, DBL
, ILLEGAL_FMT
, QUAD
, W
, UW
, DW
, UDW
, QW
, UQW
210 /* This fully describes the symbol types which may be attached to
211 an EXPORT or IMPORT directive. Only SOM uses this formation
212 (ELF has no need for it). */
216 SYMBOL_TYPE_ABSOLUTE
,
220 SYMBOL_TYPE_MILLICODE
,
222 SYMBOL_TYPE_PRI_PROG
,
223 SYMBOL_TYPE_SEC_PROG
,
227 /* This structure contains information needed to assemble
228 individual instructions. */
231 /* Holds the opcode after parsing by pa_ip. */
232 unsigned long opcode
;
234 /* Holds an expression associated with the current instruction. */
237 /* Does this instruction use PC-relative addressing. */
240 /* Floating point formats for operand1 and operand2. */
241 fp_operand_format fpof1
;
242 fp_operand_format fpof2
;
244 /* Whether or not we saw a truncation request on an fcnv insn. */
247 /* Holds the field selector for this instruction
248 (for example L%, LR%, etc). */
251 /* Holds any argument relocation bits associated with this
252 instruction. (instruction should be some sort of call). */
253 unsigned int arg_reloc
;
255 /* The format specification for this instruction. */
258 /* The relocation (if any) associated with this instruction. */
262 /* PA-89 floating point registers are arranged like this:
264 +--------------+--------------+
265 | 0 or 16L | 16 or 16R |
266 +--------------+--------------+
267 | 1 or 17L | 17 or 17R |
268 +--------------+--------------+
276 +--------------+--------------+
277 | 14 or 30L | 30 or 30R |
278 +--------------+--------------+
279 | 15 or 31L | 31 or 31R |
280 +--------------+--------------+ */
282 /* Additional information needed to build argument relocation stubs. */
285 /* The argument relocation specification. */
286 unsigned int arg_reloc
;
288 /* Number of arguments. */
289 unsigned int arg_count
;
293 /* This structure defines an entry in the subspace dictionary
296 struct subspace_dictionary_chain
298 /* Nonzero if this space has been defined by the user code. */
299 unsigned int ssd_defined
;
301 /* Name of this subspace. */
304 /* GAS segment and subsegment associated with this subspace. */
308 /* Next space in the subspace dictionary chain. */
309 struct subspace_dictionary_chain
*ssd_next
;
312 typedef struct subspace_dictionary_chain ssd_chain_struct
;
314 /* This structure defines an entry in the subspace dictionary
317 struct space_dictionary_chain
319 /* Nonzero if this space has been defined by the user code or
320 as a default space. */
321 unsigned int sd_defined
;
323 /* Nonzero if this spaces has been defined by the user code. */
324 unsigned int sd_user_defined
;
326 /* The space number (or index). */
327 unsigned int sd_spnum
;
329 /* The name of this subspace. */
332 /* GAS segment to which this subspace corresponds. */
335 /* Current subsegment number being used. */
338 /* The chain of subspaces contained within this space. */
339 ssd_chain_struct
*sd_subspaces
;
341 /* The next entry in the space dictionary chain. */
342 struct space_dictionary_chain
*sd_next
;
345 typedef struct space_dictionary_chain sd_chain_struct
;
347 /* This structure defines attributes of the default subspace
348 dictionary entries. */
350 struct default_subspace_dict
352 /* Name of the subspace. */
355 /* FIXME. Is this still needed? */
358 /* Nonzero if this subspace is loadable. */
361 /* Nonzero if this subspace contains only code. */
364 /* Nonzero if this is a common subspace. */
367 /* Nonzero if this is a common subspace which allows symbols
368 to be multiply defined. */
371 /* Nonzero if this subspace should be zero filled. */
374 /* Sort key for this subspace. */
377 /* Access control bits for this subspace. Can represent RWX access
378 as well as privilege level changes for gateways. */
381 /* Index of containing space. */
384 /* Alignment (in bytes) of this subspace. */
387 /* Quadrant within space where this subspace should be loaded. */
390 /* An index into the default spaces array. */
393 /* Subsegment associated with this subspace. */
397 /* This structure defines attributes of the default space
398 dictionary entries. */
400 struct default_space_dict
402 /* Name of the space. */
405 /* Space number. It is possible to identify spaces within
406 assembly code numerically! */
409 /* Nonzero if this space is loadable. */
412 /* Nonzero if this space is "defined". FIXME is still needed */
415 /* Nonzero if this space can not be shared. */
418 /* Sort key for this space. */
421 /* Segment associated with this space. */
426 /* Structure for previous label tracking. Needed so that alignments,
427 callinfo declarations, etc can be easily attached to a particular
429 typedef struct label_symbol_struct
431 struct symbol
*lss_label
;
433 sd_chain_struct
*lss_space
;
438 struct label_symbol_struct
*lss_next
;
442 /* Extra information needed to perform fixups (relocations) on the PA. */
443 struct hppa_fix_struct
445 /* The field selector. */
446 enum hppa_reloc_field_selector_type_alt fx_r_field
;
451 /* Format of fixup. */
454 /* Argument relocation bits. */
455 unsigned int fx_arg_reloc
;
457 /* The segment this fixup appears in. */
461 /* Structure to hold information about predefined registers. */
469 /* This structure defines the mapping from a FP condition string
470 to a condition number which can be recorded in an instruction. */
477 /* This structure defines a mapping from a field selector
478 string to a field selector type. */
479 struct selector_entry
485 /* Prototypes for functions local to tc-hppa.c. */
488 static void pa_check_current_space_and_subspace
PARAMS ((void));
491 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
492 static void pa_text
PARAMS ((int));
493 static void pa_data
PARAMS ((int));
494 static void pa_comm
PARAMS ((int));
496 static fp_operand_format pa_parse_fp_format
PARAMS ((char **s
));
497 static void pa_cons
PARAMS ((int));
498 static void pa_float_cons
PARAMS ((int));
499 static void pa_fill
PARAMS ((int));
500 static void pa_lcomm
PARAMS ((int));
501 static void pa_lsym
PARAMS ((int));
502 static void pa_stringer
PARAMS ((int));
503 static void pa_version
PARAMS ((int));
504 static int pa_parse_fp_cmp_cond
PARAMS ((char **));
505 static int get_expression
PARAMS ((char *));
506 static int pa_get_absolute_expression
PARAMS ((struct pa_it
*, char **));
507 static int evaluate_absolute
PARAMS ((struct pa_it
*));
508 static unsigned int pa_build_arg_reloc
PARAMS ((char *));
509 static unsigned int pa_align_arg_reloc
PARAMS ((unsigned int, unsigned int));
510 static int pa_parse_nullif
PARAMS ((char **));
511 static int pa_parse_nonneg_cmpsub_cmpltr
PARAMS ((char **));
512 static int pa_parse_neg_cmpsub_cmpltr
PARAMS ((char **));
513 static int pa_parse_neg_add_cmpltr
PARAMS ((char **));
514 static int pa_parse_nonneg_add_cmpltr
PARAMS ((char **));
515 static int pa_parse_cmpb_64_cmpltr
PARAMS ((char **));
516 static int pa_parse_cmpib_64_cmpltr
PARAMS ((char **));
517 static int pa_parse_addb_64_cmpltr
PARAMS ((char **));
518 static void pa_block
PARAMS ((int));
519 static void pa_brtab
PARAMS ((int));
520 static void pa_try
PARAMS ((int));
521 static void pa_call
PARAMS ((int));
522 static void pa_call_args
PARAMS ((struct call_desc
*));
523 static void pa_callinfo
PARAMS ((int));
524 static void pa_copyright
PARAMS ((int));
525 static void pa_end
PARAMS ((int));
526 static void pa_enter
PARAMS ((int));
527 static void pa_entry
PARAMS ((int));
528 static void pa_equ
PARAMS ((int));
529 static void pa_exit
PARAMS ((int));
530 static void pa_export
PARAMS ((int));
531 static void pa_type_args
PARAMS ((symbolS
*, int));
532 static void pa_import
PARAMS ((int));
533 static void pa_label
PARAMS ((int));
534 static void pa_leave
PARAMS ((int));
535 static void pa_level
PARAMS ((int));
536 static void pa_origin
PARAMS ((int));
537 static void pa_proc
PARAMS ((int));
538 static void pa_procend
PARAMS ((int));
539 static void pa_param
PARAMS ((int));
540 static void pa_undefine_label
PARAMS ((void));
541 static int need_pa11_opcode
PARAMS ((void));
542 static int pa_parse_number
PARAMS ((char **, int));
543 static label_symbol_struct
*pa_get_label
PARAMS ((void));
545 static int log2
PARAMS ((int));
546 static void pa_compiler
PARAMS ((int));
547 static void pa_align
PARAMS ((int));
548 static void pa_space
PARAMS ((int));
549 static void pa_spnum
PARAMS ((int));
550 static void pa_subspace
PARAMS ((int));
551 static sd_chain_struct
*create_new_space
PARAMS ((char *, int, int,
554 static ssd_chain_struct
*create_new_subspace
PARAMS ((sd_chain_struct
*,
559 static ssd_chain_struct
*update_subspace
PARAMS ((sd_chain_struct
*,
560 char *, int, int, int,
564 static sd_chain_struct
*is_defined_space
PARAMS ((char *));
565 static ssd_chain_struct
*is_defined_subspace
PARAMS ((char *));
566 static sd_chain_struct
*pa_segment_to_space
PARAMS ((asection
*));
567 static ssd_chain_struct
*pa_subsegment_to_subspace
PARAMS ((asection
*,
569 static sd_chain_struct
*pa_find_space_by_number
PARAMS ((int));
570 static unsigned int pa_subspace_start
PARAMS ((sd_chain_struct
*, int));
571 static sd_chain_struct
*pa_parse_space_stmt
PARAMS ((char *, int));
572 static int pa_next_subseg
PARAMS ((sd_chain_struct
*));
573 static void pa_spaces_begin
PARAMS ((void));
575 static void pa_ip
PARAMS ((char *));
576 static void fix_new_hppa
PARAMS ((fragS
*, int, int, symbolS
*,
577 offsetT
, expressionS
*, int,
578 bfd_reloc_code_real_type
,
579 enum hppa_reloc_field_selector_type_alt
,
580 int, unsigned int, int));
581 static int is_end_of_statement
PARAMS ((void));
582 static int reg_name_search
PARAMS ((char *));
583 static int pa_chk_field_selector
PARAMS ((char **));
584 static int is_same_frag
PARAMS ((fragS
*, fragS
*));
585 static void process_exit
PARAMS ((void));
586 static unsigned int pa_stringer_aux
PARAMS ((char *));
587 static fp_operand_format pa_parse_fp_cnv_format
PARAMS ((char **s
));
588 static int pa_parse_ftest_gfx_completer
PARAMS ((char **));
591 static void hppa_elf_mark_end_of_function
PARAMS ((void));
592 static void pa_build_unwind_subspace
PARAMS ((struct call_info
*));
593 static void pa_vtable_entry
PARAMS ((int));
594 static void pa_vtable_inherit
PARAMS ((int));
597 /* File and gloally scoped variable declarations. */
600 /* Root and final entry in the space chain. */
601 static sd_chain_struct
*space_dict_root
;
602 static sd_chain_struct
*space_dict_last
;
604 /* The current space and subspace. */
605 static sd_chain_struct
*current_space
;
606 static ssd_chain_struct
*current_subspace
;
609 /* Root of the call_info chain. */
610 static struct call_info
*call_info_root
;
612 /* The last call_info (for functions) structure
613 seen so it can be associated with fixups and
615 static struct call_info
*last_call_info
;
617 /* The last call description (for actual calls). */
618 static struct call_desc last_call_desc
;
620 /* handle of the OPCODE hash table */
621 static struct hash_control
*op_hash
= NULL
;
623 /* Table of pseudo ops for the PA. FIXME -- how many of these
624 are now redundant with the overall GAS and the object file
626 const pseudo_typeS md_pseudo_table
[] =
628 /* align pseudo-ops on the PA specify the actual alignment requested,
629 not the log2 of the requested alignment. */
631 {"align", pa_align
, 8},
634 {"align", s_align_bytes
, 8},
636 {"begin_brtab", pa_brtab
, 1},
637 {"begin_try", pa_try
, 1},
638 {"block", pa_block
, 1},
639 {"blockz", pa_block
, 0},
640 {"byte", pa_cons
, 1},
641 {"call", pa_call
, 0},
642 {"callinfo", pa_callinfo
, 0},
643 #if defined (OBJ_ELF) && defined (TE_LINUX)
644 {"code", obj_elf_text
, 0},
646 {"code", pa_text
, 0},
647 {"comm", pa_comm
, 0},
650 {"compiler", pa_compiler
, 0},
652 {"copyright", pa_copyright
, 0},
653 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
654 {"data", pa_data
, 0},
656 {"double", pa_float_cons
, 'd'},
657 {"dword", pa_cons
, 8},
659 {"end_brtab", pa_brtab
, 0},
660 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
661 {"end_try", pa_try
, 0},
663 {"enter", pa_enter
, 0},
664 {"entry", pa_entry
, 0},
666 {"exit", pa_exit
, 0},
667 {"export", pa_export
, 0},
669 {"file", dwarf2_directive_file
, 0 },
671 {"fill", pa_fill
, 0},
672 {"float", pa_float_cons
, 'f'},
673 {"half", pa_cons
, 2},
674 {"import", pa_import
, 0},
676 {"label", pa_label
, 0},
677 {"lcomm", pa_lcomm
, 0},
678 {"leave", pa_leave
, 0},
679 {"level", pa_level
, 0},
681 {"loc", dwarf2_directive_loc
, 0 },
683 {"long", pa_cons
, 4},
684 {"lsym", pa_lsym
, 0},
686 {"nsubspa", pa_subspace
, 1},
688 {"octa", pa_cons
, 16},
689 {"org", pa_origin
, 0},
690 {"origin", pa_origin
, 0},
691 {"param", pa_param
, 0},
692 {"proc", pa_proc
, 0},
693 {"procend", pa_procend
, 0},
694 {"quad", pa_cons
, 8},
696 {"short", pa_cons
, 2},
697 {"single", pa_float_cons
, 'f'},
699 {"space", pa_space
, 0},
700 {"spnum", pa_spnum
, 0},
702 {"string", pa_stringer
, 0},
703 {"stringz", pa_stringer
, 1},
705 {"subspa", pa_subspace
, 0},
707 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
708 {"text", pa_text
, 0},
710 {"version", pa_version
, 0},
712 {"vtable_entry", pa_vtable_entry
, 0},
713 {"vtable_inherit", pa_vtable_inherit
, 0},
715 {"word", pa_cons
, 4},
719 /* This array holds the chars that only start a comment at the beginning of
720 a line. If the line seems to have the form '# 123 filename'
721 .line and .file directives will appear in the pre-processed output.
723 Note that input_file.c hand checks for '#' at the beginning of the
724 first line of the input file. This is because the compiler outputs
725 #NO_APP at the beginning of its output.
727 Also note that C style comments will always work. */
728 const char line_comment_chars
[] = "#";
730 /* This array holds the chars that always start a comment. If the
731 pre-processor is disabled, these aren't very useful. */
732 const char comment_chars
[] = ";";
734 /* This array holds the characters which act as line separators. */
735 const char line_separator_chars
[] = "!";
737 /* Chars that can be used to separate mant from exp in floating point nums. */
738 const char EXP_CHARS
[] = "eE";
740 /* Chars that mean this number is a floating point constant.
741 As in 0f12.456 or 0d1.2345e12.
743 Be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
744 changed in read.c. Ideally it shouldn't hae to know abou it at
745 all, but nothing is ideal around here. */
746 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
748 static struct pa_it the_insn
;
750 /* Points to the end of an expression just parsed by get_expressoin
751 and friends. FIXME. This shouldn't be handled with a file-global
753 static char *expr_end
;
755 /* Nonzero if a .callinfo appeared within the current procedure. */
756 static int callinfo_found
;
758 /* Nonzero if the assembler is currently within a .entry/.exit pair. */
759 static int within_entry_exit
;
761 /* Nonzero if the assembler is currently within a procedure definition. */
762 static int within_procedure
;
764 /* Handle on structure which keep track of the last symbol
765 seen in each subspace. */
766 static label_symbol_struct
*label_symbols_rootp
= NULL
;
768 /* Holds the last field selector. */
769 static int hppa_field_selector
;
771 /* Nonzero when strict syntax checking is enabled. Zero otherwise.
773 Each opcode in the table has a flag which indicates whether or not
774 strict syntax checking should be enabled for that instruction. */
775 static int strict
= 0;
777 /* pa_parse_number returns values in `pa_number'. Mostly
778 pa_parse_number is used to return a register number, with floating
779 point registers being numbered from FP_REG_BASE upwards.
780 The bit specified with FP_REG_RSEL is set if the floating point
781 register has a `r' suffix. */
782 #define FP_REG_BASE 64
783 #define FP_REG_RSEL 128
784 static int pa_number
;
787 /* A dummy bfd symbol so that all relocations have symbols of some kind. */
788 static symbolS
*dummy_symbol
;
791 /* Nonzero if errors are to be printed. */
792 static int print_errors
= 1;
794 /* List of registers that are pre-defined:
796 Each general register has one predefined name of the form
797 %r<REGNUM> which has the value <REGNUM>.
799 Space and control registers are handled in a similar manner,
800 but use %sr<REGNUM> and %cr<REGNUM> as their predefined names.
802 Likewise for the floating point registers, but of the form
803 %fr<REGNUM>. Floating point registers have additional predefined
804 names with 'L' and 'R' suffixes (e.g. %fr19L, %fr19R) which
805 again have the value <REGNUM>.
807 Many registers also have synonyms:
809 %r26 - %r23 have %arg0 - %arg3 as synonyms
810 %r28 - %r29 have %ret0 - %ret1 as synonyms
811 %r30 has %sp as a synonym
812 %r27 has %dp as a synonym
813 %r2 has %rp as a synonym
815 Almost every control register has a synonym; they are not listed
818 The table is sorted. Suitable for searching by a binary search. */
820 static const struct pd_reg pre_defined_registers
[] =
854 {"%fr0", 0 + FP_REG_BASE
},
855 {"%fr0l", 0 + FP_REG_BASE
},
856 {"%fr0r", 0 + FP_REG_BASE
+ FP_REG_RSEL
},
857 {"%fr1", 1 + FP_REG_BASE
},
858 {"%fr10", 10 + FP_REG_BASE
},
859 {"%fr10l", 10 + FP_REG_BASE
},
860 {"%fr10r", 10 + FP_REG_BASE
+ FP_REG_RSEL
},
861 {"%fr11", 11 + FP_REG_BASE
},
862 {"%fr11l", 11 + FP_REG_BASE
},
863 {"%fr11r", 11 + FP_REG_BASE
+ FP_REG_RSEL
},
864 {"%fr12", 12 + FP_REG_BASE
},
865 {"%fr12l", 12 + FP_REG_BASE
},
866 {"%fr12r", 12 + FP_REG_BASE
+ FP_REG_RSEL
},
867 {"%fr13", 13 + FP_REG_BASE
},
868 {"%fr13l", 13 + FP_REG_BASE
},
869 {"%fr13r", 13 + FP_REG_BASE
+ FP_REG_RSEL
},
870 {"%fr14", 14 + FP_REG_BASE
},
871 {"%fr14l", 14 + FP_REG_BASE
},
872 {"%fr14r", 14 + FP_REG_BASE
+ FP_REG_RSEL
},
873 {"%fr15", 15 + FP_REG_BASE
},
874 {"%fr15l", 15 + FP_REG_BASE
},
875 {"%fr15r", 15 + FP_REG_BASE
+ FP_REG_RSEL
},
876 {"%fr16", 16 + FP_REG_BASE
},
877 {"%fr16l", 16 + FP_REG_BASE
},
878 {"%fr16r", 16 + FP_REG_BASE
+ FP_REG_RSEL
},
879 {"%fr17", 17 + FP_REG_BASE
},
880 {"%fr17l", 17 + FP_REG_BASE
},
881 {"%fr17r", 17 + FP_REG_BASE
+ FP_REG_RSEL
},
882 {"%fr18", 18 + FP_REG_BASE
},
883 {"%fr18l", 18 + FP_REG_BASE
},
884 {"%fr18r", 18 + FP_REG_BASE
+ FP_REG_RSEL
},
885 {"%fr19", 19 + FP_REG_BASE
},
886 {"%fr19l", 19 + FP_REG_BASE
},
887 {"%fr19r", 19 + FP_REG_BASE
+ FP_REG_RSEL
},
888 {"%fr1l", 1 + FP_REG_BASE
},
889 {"%fr1r", 1 + FP_REG_BASE
+ FP_REG_RSEL
},
890 {"%fr2", 2 + FP_REG_BASE
},
891 {"%fr20", 20 + FP_REG_BASE
},
892 {"%fr20l", 20 + FP_REG_BASE
},
893 {"%fr20r", 20 + FP_REG_BASE
+ FP_REG_RSEL
},
894 {"%fr21", 21 + FP_REG_BASE
},
895 {"%fr21l", 21 + FP_REG_BASE
},
896 {"%fr21r", 21 + FP_REG_BASE
+ FP_REG_RSEL
},
897 {"%fr22", 22 + FP_REG_BASE
},
898 {"%fr22l", 22 + FP_REG_BASE
},
899 {"%fr22r", 22 + FP_REG_BASE
+ FP_REG_RSEL
},
900 {"%fr23", 23 + FP_REG_BASE
},
901 {"%fr23l", 23 + FP_REG_BASE
},
902 {"%fr23r", 23 + FP_REG_BASE
+ FP_REG_RSEL
},
903 {"%fr24", 24 + FP_REG_BASE
},
904 {"%fr24l", 24 + FP_REG_BASE
},
905 {"%fr24r", 24 + FP_REG_BASE
+ FP_REG_RSEL
},
906 {"%fr25", 25 + FP_REG_BASE
},
907 {"%fr25l", 25 + FP_REG_BASE
},
908 {"%fr25r", 25 + FP_REG_BASE
+ FP_REG_RSEL
},
909 {"%fr26", 26 + FP_REG_BASE
},
910 {"%fr26l", 26 + FP_REG_BASE
},
911 {"%fr26r", 26 + FP_REG_BASE
+ FP_REG_RSEL
},
912 {"%fr27", 27 + FP_REG_BASE
},
913 {"%fr27l", 27 + FP_REG_BASE
},
914 {"%fr27r", 27 + FP_REG_BASE
+ FP_REG_RSEL
},
915 {"%fr28", 28 + FP_REG_BASE
},
916 {"%fr28l", 28 + FP_REG_BASE
},
917 {"%fr28r", 28 + FP_REG_BASE
+ FP_REG_RSEL
},
918 {"%fr29", 29 + FP_REG_BASE
},
919 {"%fr29l", 29 + FP_REG_BASE
},
920 {"%fr29r", 29 + FP_REG_BASE
+ FP_REG_RSEL
},
921 {"%fr2l", 2 + FP_REG_BASE
},
922 {"%fr2r", 2 + FP_REG_BASE
+ FP_REG_RSEL
},
923 {"%fr3", 3 + FP_REG_BASE
},
924 {"%fr30", 30 + FP_REG_BASE
},
925 {"%fr30l", 30 + FP_REG_BASE
},
926 {"%fr30r", 30 + FP_REG_BASE
+ FP_REG_RSEL
},
927 {"%fr31", 31 + FP_REG_BASE
},
928 {"%fr31l", 31 + FP_REG_BASE
},
929 {"%fr31r", 31 + FP_REG_BASE
+ FP_REG_RSEL
},
930 {"%fr3l", 3 + FP_REG_BASE
},
931 {"%fr3r", 3 + FP_REG_BASE
+ FP_REG_RSEL
},
932 {"%fr4", 4 + FP_REG_BASE
},
933 {"%fr4l", 4 + FP_REG_BASE
},
934 {"%fr4r", 4 + FP_REG_BASE
+ FP_REG_RSEL
},
935 {"%fr5", 5 + FP_REG_BASE
},
936 {"%fr5l", 5 + FP_REG_BASE
},
937 {"%fr5r", 5 + FP_REG_BASE
+ FP_REG_RSEL
},
938 {"%fr6", 6 + FP_REG_BASE
},
939 {"%fr6l", 6 + FP_REG_BASE
},
940 {"%fr6r", 6 + FP_REG_BASE
+ FP_REG_RSEL
},
941 {"%fr7", 7 + FP_REG_BASE
},
942 {"%fr7l", 7 + FP_REG_BASE
},
943 {"%fr7r", 7 + FP_REG_BASE
+ FP_REG_RSEL
},
944 {"%fr8", 8 + FP_REG_BASE
},
945 {"%fr8l", 8 + FP_REG_BASE
},
946 {"%fr8r", 8 + FP_REG_BASE
+ FP_REG_RSEL
},
947 {"%fr9", 9 + FP_REG_BASE
},
948 {"%fr9l", 9 + FP_REG_BASE
},
949 {"%fr9r", 9 + FP_REG_BASE
+ FP_REG_RSEL
},
957 #if TARGET_ARCH_SIZE == 64
1025 /* This table is sorted by order of the length of the string. This is
1026 so we check for <> before we check for <. If we had a <> and checked
1027 for < first, we would get a false match. */
1028 static const struct fp_cond_map fp_cond_map
[] =
1064 static const struct selector_entry selector_table
[] =
1089 /* default space and subspace dictionaries */
1091 #define GDB_SYMBOLS GDB_SYMBOLS_SUBSPACE_NAME
1092 #define GDB_STRINGS GDB_STRINGS_SUBSPACE_NAME
1094 /* pre-defined subsegments (subspaces) for the HPPA. */
1095 #define SUBSEG_CODE 0
1096 #define SUBSEG_LIT 1
1097 #define SUBSEG_MILLI 2
1098 #define SUBSEG_DATA 0
1099 #define SUBSEG_BSS 2
1100 #define SUBSEG_UNWIND 3
1101 #define SUBSEG_GDB_STRINGS 0
1102 #define SUBSEG_GDB_SYMBOLS 1
1104 static struct default_subspace_dict pa_def_subspaces
[] =
1106 {"$CODE$", 1, 1, 1, 0, 0, 0, 24, 0x2c, 0, 8, 0, 0, SUBSEG_CODE
},
1107 {"$DATA$", 1, 1, 0, 0, 0, 0, 24, 0x1f, 1, 8, 1, 1, SUBSEG_DATA
},
1108 {"$LIT$", 1, 1, 0, 0, 0, 0, 16, 0x2c, 0, 8, 0, 0, SUBSEG_LIT
},
1109 {"$MILLICODE$", 1, 1, 0, 0, 0, 0, 8, 0x2c, 0, 8, 0, 0, SUBSEG_MILLI
},
1110 {"$BSS$", 1, 1, 0, 0, 0, 1, 80, 0x1f, 1, 8, 1, 1, SUBSEG_BSS
},
1111 {NULL
, 0, 1, 0, 0, 0, 0, 255, 0x1f, 0, 4, 0, 0, 0}
1114 static struct default_space_dict pa_def_spaces
[] =
1116 {"$TEXT$", 0, 1, 1, 0, 8, ASEC_NULL
},
1117 {"$PRIVATE$", 1, 1, 1, 1, 16, ASEC_NULL
},
1118 {NULL
, 0, 0, 0, 0, 0, ASEC_NULL
}
1121 /* Misc local definitions used by the assembler. */
1123 /* These macros are used to maintain spaces/subspaces. */
1124 #define SPACE_DEFINED(space_chain) (space_chain)->sd_defined
1125 #define SPACE_USER_DEFINED(space_chain) (space_chain)->sd_user_defined
1126 #define SPACE_SPNUM(space_chain) (space_chain)->sd_spnum
1127 #define SPACE_NAME(space_chain) (space_chain)->sd_name
1129 #define SUBSPACE_DEFINED(ss_chain) (ss_chain)->ssd_defined
1130 #define SUBSPACE_NAME(ss_chain) (ss_chain)->ssd_name
1133 /* Return nonzero if the string pointed to by S potentially represents
1134 a right or left half of a FP register */
1135 #define IS_R_SELECT(S) (*(S) == 'R' || *(S) == 'r')
1136 #define IS_L_SELECT(S) (*(S) == 'L' || *(S) == 'l')
1138 /* Insert FIELD into OPCODE starting at bit START. Continue pa_ip
1139 main loop after insertion. */
1141 #define INSERT_FIELD_AND_CONTINUE(OPCODE, FIELD, START) \
1143 ((OPCODE) |= (FIELD) << (START)); \
1147 /* Simple range checking for FIELD againt HIGH and LOW bounds.
1148 IGNORE is used to suppress the error message. */
1150 #define CHECK_FIELD(FIELD, HIGH, LOW, IGNORE) \
1152 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1155 as_bad (_("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1161 /* Variant of CHECK_FIELD for use in md_apply_fix3 and other places where
1162 the current file and line number are not valid. */
1164 #define CHECK_FIELD_WHERE(FIELD, HIGH, LOW, FILENAME, LINE) \
1166 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1168 as_bad_where ((FILENAME), (LINE), \
1169 _("Field out of range [%d..%d] (%d)."), (LOW), (HIGH), \
1175 /* Simple alignment checking for FIELD againt ALIGN (a power of two).
1176 IGNORE is used to suppress the error message. */
1178 #define CHECK_ALIGN(FIELD, ALIGN, IGNORE) \
1180 if ((FIELD) & ((ALIGN) - 1)) \
1183 as_bad (_("Field not properly aligned [%d] (%d)."), (ALIGN), \
1189 #define is_DP_relative(exp) \
1190 ((exp).X_op == O_subtract \
1191 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$global$") == 0)
1193 #define is_PC_relative(exp) \
1194 ((exp).X_op == O_subtract \
1195 && strcmp (S_GET_NAME ((exp).X_op_symbol), "$PIC_pcrel$0") == 0)
1197 /* We need some complex handling for stabs (sym1 - sym2). Luckily, we'll
1198 always be able to reduce the expression to a constant, so we don't
1199 need real complex handling yet. */
1200 #define is_complex(exp) \
1201 ((exp).X_op != O_constant && (exp).X_op != O_symbol)
1203 /* Actual functions to implement the PA specific code for the assembler. */
1205 /* Called before writing the object file. Make sure entry/exit and
1206 proc/procend pairs match. */
1211 if (within_entry_exit
)
1212 as_fatal (_("Missing .exit\n"));
1214 if (within_procedure
)
1215 as_fatal (_("Missing .procend\n"));
1218 /* Returns a pointer to the label_symbol_struct for the current space.
1219 or NULL if no label_symbol_struct exists for the current space. */
1221 static label_symbol_struct
*
1224 label_symbol_struct
*label_chain
;
1226 for (label_chain
= label_symbols_rootp
;
1228 label_chain
= label_chain
->lss_next
)
1231 if (current_space
== label_chain
->lss_space
&& label_chain
->lss_label
)
1235 if (now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
)
1243 /* Defines a label for the current space. If one is already defined,
1244 this function will replace it with the new label. */
1247 pa_define_label (symbol
)
1250 label_symbol_struct
*label_chain
= pa_get_label ();
1253 label_chain
->lss_label
= symbol
;
1256 /* Create a new label entry and add it to the head of the chain. */
1258 = (label_symbol_struct
*) xmalloc (sizeof (label_symbol_struct
));
1259 label_chain
->lss_label
= symbol
;
1261 label_chain
->lss_space
= current_space
;
1264 label_chain
->lss_segment
= now_seg
;
1266 label_chain
->lss_next
= NULL
;
1268 if (label_symbols_rootp
)
1269 label_chain
->lss_next
= label_symbols_rootp
;
1271 label_symbols_rootp
= label_chain
;
1275 /* Removes a label definition for the current space.
1276 If there is no label_symbol_struct entry, then no action is taken. */
1279 pa_undefine_label ()
1281 label_symbol_struct
*label_chain
;
1282 label_symbol_struct
*prev_label_chain
= NULL
;
1284 for (label_chain
= label_symbols_rootp
;
1286 label_chain
= label_chain
->lss_next
)
1290 && current_space
== label_chain
->lss_space
&& label_chain
->lss_label
1293 && now_seg
== label_chain
->lss_segment
&& label_chain
->lss_label
1297 /* Remove the label from the chain and free its memory. */
1298 if (prev_label_chain
)
1299 prev_label_chain
->lss_next
= label_chain
->lss_next
;
1301 label_symbols_rootp
= label_chain
->lss_next
;
1306 prev_label_chain
= label_chain
;
1310 /* An HPPA-specific version of fix_new. This is required because the HPPA
1311 code needs to keep track of some extra stuff. Each call to fix_new_hppa
1312 results in the creation of an instance of an hppa_fix_struct. An
1313 hppa_fix_struct stores the extra information along with a pointer to the
1314 original fixS. This is attached to the original fixup via the
1315 tc_fix_data field. */
1318 fix_new_hppa (frag
, where
, size
, add_symbol
, offset
, exp
, pcrel
,
1319 r_type
, r_field
, r_format
, arg_reloc
, unwind_bits
)
1323 symbolS
*add_symbol
;
1327 bfd_reloc_code_real_type r_type
;
1328 enum hppa_reloc_field_selector_type_alt r_field
;
1330 unsigned int arg_reloc
;
1331 int unwind_bits ATTRIBUTE_UNUSED
;
1335 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
1336 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
1339 new_fix
= fix_new_exp (frag
, where
, size
, exp
, pcrel
, r_type
);
1341 new_fix
= fix_new (frag
, where
, size
, add_symbol
, offset
, pcrel
, r_type
);
1342 new_fix
->tc_fix_data
= (void *) hppa_fix
;
1343 hppa_fix
->fx_r_type
= r_type
;
1344 hppa_fix
->fx_r_field
= r_field
;
1345 hppa_fix
->fx_r_format
= r_format
;
1346 hppa_fix
->fx_arg_reloc
= arg_reloc
;
1347 hppa_fix
->segment
= now_seg
;
1349 if (r_type
== R_ENTRY
|| r_type
== R_EXIT
)
1350 new_fix
->fx_offset
= unwind_bits
;
1353 /* foo-$global$ is used to access non-automatic storage. $global$
1354 is really just a marker and has served its purpose, so eliminate
1355 it now so as not to confuse write.c. Ditto for $PIC_pcrel$0. */
1356 if (new_fix
->fx_subsy
1357 && (strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$global$") == 0
1358 || strcmp (S_GET_NAME (new_fix
->fx_subsy
), "$PIC_pcrel$0") == 0))
1359 new_fix
->fx_subsy
= NULL
;
1362 /* Parse a .byte, .word, .long expression for the HPPA. Called by
1363 cons via the TC_PARSE_CONS_EXPRESSION macro. */
1366 parse_cons_expression_hppa (exp
)
1369 hppa_field_selector
= pa_chk_field_selector (&input_line_pointer
);
1373 /* This fix_new is called by cons via TC_CONS_FIX_NEW.
1374 hppa_field_selector is set by the parse_cons_expression_hppa. */
1377 cons_fix_new_hppa (frag
, where
, size
, exp
)
1383 unsigned int rel_type
;
1385 /* Get a base relocation type. */
1386 if (is_DP_relative (*exp
))
1387 rel_type
= R_HPPA_GOTOFF
;
1388 else if (is_complex (*exp
))
1389 rel_type
= R_HPPA_COMPLEX
;
1393 if (hppa_field_selector
!= e_psel
&& hppa_field_selector
!= e_fsel
)
1395 as_warn (_("Invalid field selector. Assuming F%%."));
1396 hppa_field_selector
= e_fsel
;
1399 fix_new_hppa (frag
, where
, size
,
1400 (symbolS
*) NULL
, (offsetT
) 0, exp
, 0, rel_type
,
1401 hppa_field_selector
, size
* 8, 0, 0);
1403 /* Reset field selector to its default state. */
1404 hppa_field_selector
= 0;
1407 /* This function is called once, at assembler startup time. It should
1408 set up all the tables, etc. that the MD part of the assembler will need. */
1413 const char *retval
= NULL
;
1417 last_call_info
= NULL
;
1418 call_info_root
= NULL
;
1420 /* Set the default machine type. */
1421 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, DEFAULT_LEVEL
))
1422 as_warn (_("could not set architecture and machine"));
1424 /* Folding of text and data segments fails miserably on the PA.
1425 Warn user and disable "-R" option. */
1426 if (flag_readonly_data_in_text
)
1428 as_warn (_("-R option not supported on this target."));
1429 flag_readonly_data_in_text
= 0;
1436 op_hash
= hash_new ();
1438 while (i
< NUMOPCODES
)
1440 const char *name
= pa_opcodes
[i
].name
;
1441 retval
= hash_insert (op_hash
, name
, (struct pa_opcode
*) &pa_opcodes
[i
]);
1442 if (retval
!= NULL
&& *retval
!= '\0')
1444 as_fatal (_("Internal error: can't hash `%s': %s\n"), name
, retval
);
1449 if ((pa_opcodes
[i
].match
& pa_opcodes
[i
].mask
)
1450 != pa_opcodes
[i
].match
)
1452 fprintf (stderr
, _("internal error: losing opcode: `%s' \"%s\"\n"),
1453 pa_opcodes
[i
].name
, pa_opcodes
[i
].args
);
1458 while (i
< NUMOPCODES
&& !strcmp (pa_opcodes
[i
].name
, name
));
1462 as_fatal (_("Broken assembler. No assembly attempted."));
1465 /* SOM will change text_section. To make sure we never put
1466 anything into the old one switch to the new one now. */
1467 subseg_set (text_section
, 0);
1471 dummy_symbol
= symbol_find_or_make ("L$dummy");
1472 S_SET_SEGMENT (dummy_symbol
, text_section
);
1473 /* Force the symbol to be converted to a real symbol. */
1474 (void) symbol_get_bfdsym (dummy_symbol
);
1478 /* Assemble a single instruction storing it into a frag. */
1485 /* The had better be something to assemble. */
1488 /* If we are within a procedure definition, make sure we've
1489 defined a label for the procedure; handle case where the
1490 label was defined after the .PROC directive.
1492 Note there's not need to diddle with the segment or fragment
1493 for the label symbol in this case. We have already switched
1494 into the new $CODE$ subspace at this point. */
1495 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
1497 label_symbol_struct
*label_symbol
= pa_get_label ();
1501 if (label_symbol
->lss_label
)
1503 last_call_info
->start_symbol
= label_symbol
->lss_label
;
1504 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
1507 /* Also handle allocation of a fixup to hold the unwind
1508 information when the label appears after the proc/procend. */
1509 if (within_entry_exit
)
1514 where
= frag_more (0);
1515 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
1516 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
1517 NULL
, (offsetT
) 0, NULL
,
1518 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
1523 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
1526 as_bad (_("Missing function name for .PROC"));
1529 /* Assemble the instruction. Results are saved into "the_insn". */
1532 /* Get somewhere to put the assembled instrution. */
1535 /* Output the opcode. */
1536 md_number_to_chars (to
, the_insn
.opcode
, 4);
1538 /* If necessary output more stuff. */
1539 if (the_insn
.reloc
!= R_HPPA_NONE
)
1540 fix_new_hppa (frag_now
, (to
- frag_now
->fr_literal
), 4, NULL
,
1541 (offsetT
) 0, &the_insn
.exp
, the_insn
.pcrel
,
1542 the_insn
.reloc
, the_insn
.field_selector
,
1543 the_insn
.format
, the_insn
.arg_reloc
, 0);
1546 dwarf2_emit_insn (4);
1550 /* Do the real work for assembling a single instruction. Store results
1551 into the global "the_insn" variable. */
1557 char *error_message
= "";
1558 char *s
, c
, *argstart
, *name
, *save_s
;
1562 int cmpltr
, nullif
, flag
, cond
, num
;
1563 unsigned long opcode
;
1564 struct pa_opcode
*insn
;
1567 /* We must have a valid space and subspace. */
1568 pa_check_current_space_and_subspace ();
1571 /* Convert everything up to the first whitespace character into lower
1573 for (s
= str
; *s
!= ' ' && *s
!= '\t' && *s
!= '\n' && *s
!= '\0'; s
++)
1576 /* Skip to something interesting. */
1578 ISUPPER (*s
) || ISLOWER (*s
) || (*s
>= '0' && *s
<= '3');
1598 as_fatal (_("Unknown opcode: `%s'"), str
);
1601 /* Look up the opcode in the has table. */
1602 if ((insn
= (struct pa_opcode
*) hash_find (op_hash
, str
)) == NULL
)
1604 as_bad ("Unknown opcode: `%s'", str
);
1613 /* Mark the location where arguments for the instruction start, then
1614 start processing them. */
1618 /* Do some initialization. */
1619 opcode
= insn
->match
;
1620 strict
= (insn
->flags
& FLAG_STRICT
);
1621 memset (&the_insn
, 0, sizeof (the_insn
));
1623 the_insn
.reloc
= R_HPPA_NONE
;
1625 /* If this instruction is specific to a particular architecture,
1626 then set a new architecture. */
1627 /* But do not automatically promote to pa2.0. The automatic promotion
1628 crud is for compatability with HP's old assemblers only. */
1630 && bfd_get_mach (stdoutput
) < insn
->arch
)
1632 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, insn
->arch
))
1633 as_warn (_("could not update architecture and machine"));
1635 else if (bfd_get_mach (stdoutput
) < insn
->arch
)
1641 /* Build the opcode, checking as we go to make
1642 sure that the operands match. */
1643 for (args
= insn
->args
;; ++args
)
1645 /* Absorb white space in instruction. */
1646 while (*s
== ' ' || *s
== '\t')
1652 /* End of arguments. */
1668 /* These must match exactly. */
1677 /* Handle a 5 bit register or control register field at 10. */
1680 if (!pa_parse_number (&s
, 0))
1683 CHECK_FIELD (num
, 31, 0, 0);
1684 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
1686 /* Handle %sar or %cr11. No bits get set, we just verify that it
1689 /* Skip whitespace before register. */
1690 while (*s
== ' ' || *s
== '\t')
1693 if (!strncasecmp (s
, "%sar", 4))
1698 else if (!strncasecmp (s
, "%cr11", 5))
1705 /* Handle a 5 bit register field at 15. */
1707 if (!pa_parse_number (&s
, 0))
1710 CHECK_FIELD (num
, 31, 0, 0);
1711 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1713 /* Handle a 5 bit register field at 31. */
1715 if (!pa_parse_number (&s
, 0))
1718 CHECK_FIELD (num
, 31, 0, 0);
1719 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1721 /* Handle a 5 bit register field at 10 and 15. */
1723 if (!pa_parse_number (&s
, 0))
1726 CHECK_FIELD (num
, 31, 0, 0);
1727 opcode
|= num
<< 16;
1728 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
1730 /* Handle a 5 bit field length at 31. */
1732 num
= pa_get_absolute_expression (&the_insn
, &s
);
1733 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1736 CHECK_FIELD (num
, 32, 1, 0);
1737 INSERT_FIELD_AND_CONTINUE (opcode
, 32 - num
, 0);
1739 /* Handle a 5 bit immediate at 15. */
1741 num
= pa_get_absolute_expression (&the_insn
, &s
);
1742 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1745 /* When in strict mode, we want to just reject this
1746 match instead of giving an out of range error. */
1747 CHECK_FIELD (num
, 15, -16, strict
);
1748 num
= low_sign_unext (num
, 5);
1749 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1751 /* Handle a 5 bit immediate at 31. */
1753 num
= pa_get_absolute_expression (&the_insn
, &s
);
1754 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1757 /* When in strict mode, we want to just reject this
1758 match instead of giving an out of range error. */
1759 CHECK_FIELD (num
, 15, -16, strict
);
1760 num
= low_sign_unext (num
, 5);
1761 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1763 /* Handle an unsigned 5 bit immediate at 31. */
1765 num
= pa_get_absolute_expression (&the_insn
, &s
);
1766 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1769 CHECK_FIELD (num
, 31, 0, strict
);
1770 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
1772 /* Handle an unsigned 5 bit immediate at 15. */
1774 num
= pa_get_absolute_expression (&the_insn
, &s
);
1775 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1778 CHECK_FIELD (num
, 31, 0, strict
);
1779 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1781 /* Handle an unsigned 10 bit immediate at 15. */
1783 num
= pa_get_absolute_expression (&the_insn
, &s
);
1784 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
1787 CHECK_FIELD (num
, 1023, 0, strict
);
1788 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
1790 /* Handle a 2 bit space identifier at 17. */
1792 if (!pa_parse_number (&s
, 0))
1795 CHECK_FIELD (num
, 3, 0, 1);
1796 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 14);
1798 /* Handle a 3 bit space identifier at 18. */
1800 if (!pa_parse_number (&s
, 0))
1803 CHECK_FIELD (num
, 7, 0, 1);
1804 opcode
|= re_assemble_3 (num
);
1807 /* Handle all completers. */
1812 /* Handle a completer for an indexing load or store. */
1818 while (*s
== ',' && i
< 2)
1821 if (strncasecmp (s
, "sm", 2) == 0)
1828 else if (strncasecmp (s
, "m", 1) == 0)
1830 else if ((strncasecmp (s
, "s ", 2) == 0)
1831 || (strncasecmp (s
, "s,", 2) == 0))
1833 /* When in strict mode this is a match failure. */
1840 as_bad (_("Invalid Indexed Load Completer."));
1845 as_bad (_("Invalid Indexed Load Completer Syntax."));
1847 INSERT_FIELD_AND_CONTINUE (opcode
, uu
, 13);
1850 /* Handle a short load/store completer. */
1862 if (strncasecmp (s
, "ma", 2) == 0)
1868 else if (strncasecmp (s
, "mb", 2) == 0)
1875 /* When in strict mode, pass through for cache op. */
1876 if (!found
&& strict
)
1881 as_bad (_("Invalid Short Load/Store Completer."));
1885 /* If we did not get a ma/mb completer, then we do not
1886 consider this a positive match for 'ce'. */
1887 else if (*args
== 'e')
1890 /* 'J', 'm' and 'q' are the same, except for where they
1891 encode the before/after field. */
1895 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
1897 else if (*args
== 'q')
1900 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
1902 else if (*args
== 'J')
1904 /* M bit is explicit in the major opcode. */
1905 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 2);
1907 else if (*args
== 'e')
1909 /* Stash the ma/mb flag temporarily in the
1910 instruction. We will use (and remove it)
1911 later when handling 'J', 'K', '<' & '>'. */
1917 /* Handle a stbys completer. */
1923 while (*s
== ',' && i
< 2)
1926 if (strncasecmp (s
, "m", 1) == 0)
1928 else if ((strncasecmp (s
, "b ", 2) == 0)
1929 || (strncasecmp (s
, "b,", 2) == 0))
1931 else if (strncasecmp (s
, "e", 1) == 0)
1933 /* When in strict mode this is a match failure. */
1940 as_bad (_("Invalid Store Bytes Short Completer"));
1945 as_bad (_("Invalid Store Bytes Short Completer"));
1947 INSERT_FIELD_AND_CONTINUE (opcode
, a
, 13);
1950 /* Handle load cache hint completer. */
1953 if (!strncmp (s
, ",sl", 3))
1958 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1960 /* Handle store cache hint completer. */
1963 if (!strncmp (s
, ",sl", 3))
1968 else if (!strncmp (s
, ",bc", 3))
1973 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1975 /* Handle load and clear cache hint completer. */
1978 if (!strncmp (s
, ",co", 3))
1983 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 10);
1985 /* Handle load ordering completer. */
1987 if (strncmp (s
, ",o", 2) != 0)
1992 /* Handle a branch gate completer. */
1994 if (strncasecmp (s
, ",gate", 5) != 0)
1999 /* Handle a branch link and push completer. */
2001 if (strncasecmp (s
, ",l,push", 7) != 0)
2006 /* Handle a branch link completer. */
2008 if (strncasecmp (s
, ",l", 2) != 0)
2013 /* Handle a branch pop completer. */
2015 if (strncasecmp (s
, ",pop", 4) != 0)
2020 /* Handle a local processor completer. */
2022 if (strncasecmp (s
, ",l", 2) != 0)
2027 /* Handle a PROBE read/write completer. */
2030 if (!strncasecmp (s
, ",w", 2))
2035 else if (!strncasecmp (s
, ",r", 2))
2041 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2043 /* Handle MFCTL wide completer. */
2045 if (strncasecmp (s
, ",w", 2) != 0)
2050 /* Handle an RFI restore completer. */
2053 if (!strncasecmp (s
, ",r", 2))
2059 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
2061 /* Handle a system control completer. */
2063 if (*s
== ',' && (*(s
+ 1) == 'm' || *(s
+ 1) == 'M'))
2071 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 5);
2073 /* Handle intermediate/final completer for DCOR. */
2076 if (!strncasecmp (s
, ",i", 2))
2082 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2084 /* Handle zero/sign extension completer. */
2087 if (!strncasecmp (s
, ",z", 2))
2093 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
2095 /* Handle add completer. */
2098 if (!strncasecmp (s
, ",l", 2))
2103 else if (!strncasecmp (s
, ",tsv", 4))
2109 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 10);
2111 /* Handle 64 bit carry for ADD. */
2114 if (!strncasecmp (s
, ",dc,tsv", 7) ||
2115 !strncasecmp (s
, ",tsv,dc", 7))
2120 else if (!strncasecmp (s
, ",dc", 3))
2128 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2130 /* Handle 32 bit carry for ADD. */
2133 if (!strncasecmp (s
, ",c,tsv", 6) ||
2134 !strncasecmp (s
, ",tsv,c", 6))
2139 else if (!strncasecmp (s
, ",c", 2))
2147 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2149 /* Handle trap on signed overflow. */
2152 if (!strncasecmp (s
, ",tsv", 4))
2158 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2160 /* Handle trap on condition and overflow. */
2163 if (!strncasecmp (s
, ",tc,tsv", 7) ||
2164 !strncasecmp (s
, ",tsv,tc", 7))
2169 else if (!strncasecmp (s
, ",tc", 3))
2177 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2179 /* Handle 64 bit borrow for SUB. */
2182 if (!strncasecmp (s
, ",db,tsv", 7) ||
2183 !strncasecmp (s
, ",tsv,db", 7))
2188 else if (!strncasecmp (s
, ",db", 3))
2196 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2198 /* Handle 32 bit borrow for SUB. */
2201 if (!strncasecmp (s
, ",b,tsv", 6) ||
2202 !strncasecmp (s
, ",tsv,b", 6))
2207 else if (!strncasecmp (s
, ",b", 2))
2215 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
2217 /* Handle trap condition completer for UADDCM. */
2220 if (!strncasecmp (s
, ",tc", 3))
2226 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 6);
2228 /* Handle signed/unsigned at 21. */
2232 if (strncasecmp (s
, ",s", 2) == 0)
2237 else if (strncasecmp (s
, ",u", 2) == 0)
2243 INSERT_FIELD_AND_CONTINUE (opcode
, sign
, 10);
2246 /* Handle left/right combination at 17:18. */
2256 as_bad (_("Invalid left/right combination completer"));
2259 INSERT_FIELD_AND_CONTINUE (opcode
, lr
, 13);
2262 as_bad (_("Invalid left/right combination completer"));
2265 /* Handle saturation at 24:25. */
2269 if (strncasecmp (s
, ",ss", 3) == 0)
2274 else if (strncasecmp (s
, ",us", 3) == 0)
2280 INSERT_FIELD_AND_CONTINUE (opcode
, sat
, 6);
2283 /* Handle permutation completer. */
2311 as_bad (_("Invalid permutation completer"));
2313 opcode
|= perm
<< permloc
[i
];
2318 as_bad (_("Invalid permutation completer"));
2326 /* Handle all conditions. */
2332 /* Handle FP compare conditions. */
2334 cond
= pa_parse_fp_cmp_cond (&s
);
2335 INSERT_FIELD_AND_CONTINUE (opcode
, cond
, 0);
2337 /* Handle an add condition. */
2346 /* 64 bit conditions. */
2359 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2363 if (strcmp (name
, "=") == 0)
2365 else if (strcmp (name
, "<") == 0)
2367 else if (strcmp (name
, "<=") == 0)
2369 else if (strcasecmp (name
, "nuv") == 0)
2371 else if (strcasecmp (name
, "znv") == 0)
2373 else if (strcasecmp (name
, "sv") == 0)
2375 else if (strcasecmp (name
, "od") == 0)
2377 else if (strcasecmp (name
, "tr") == 0)
2382 else if (strcmp (name
, "<>") == 0)
2387 else if (strcmp (name
, ">=") == 0)
2392 else if (strcmp (name
, ">") == 0)
2397 else if (strcasecmp (name
, "uv") == 0)
2402 else if (strcasecmp (name
, "vnz") == 0)
2407 else if (strcasecmp (name
, "nsv") == 0)
2412 else if (strcasecmp (name
, "ev") == 0)
2417 /* ",*" is a valid condition. */
2418 else if (*args
== 'a')
2419 as_bad (_("Invalid Add Condition: %s"), name
);
2422 opcode
|= cmpltr
<< 13;
2423 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2425 /* Handle non-negated add and branch condition. */
2427 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
2430 as_bad (_("Invalid Add and Branch Condition"));
2433 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2435 /* Handle 64 bit wide-mode add and branch condition. */
2437 cmpltr
= pa_parse_addb_64_cmpltr (&s
);
2440 as_bad (_("Invalid Add and Branch Condition"));
2445 /* Negated condition requires an opcode change. */
2446 opcode
|= (cmpltr
& 8) << 24;
2448 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
2450 /* Handle a negated or non-negated add and branch
2454 cmpltr
= pa_parse_nonneg_add_cmpltr (&s
);
2458 cmpltr
= pa_parse_neg_add_cmpltr (&s
);
2461 as_bad (_("Invalid Compare/Subtract Condition"));
2466 /* Negated condition requires an opcode change. */
2470 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2472 /* Handle branch on bit conditions. */
2490 if (strncmp (s
, "<", 1) == 0)
2495 else if (strncmp (s
, ">=", 2) == 0)
2501 as_bad (_("Invalid Bit Branch Condition: %c"), *s
);
2503 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 15);
2505 /* Handle a compare/subtract condition. */
2514 /* 64 bit conditions. */
2527 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2531 if (strcmp (name
, "=") == 0)
2533 else if (strcmp (name
, "<") == 0)
2535 else if (strcmp (name
, "<=") == 0)
2537 else if (strcasecmp (name
, "<<") == 0)
2539 else if (strcasecmp (name
, "<<=") == 0)
2541 else if (strcasecmp (name
, "sv") == 0)
2543 else if (strcasecmp (name
, "od") == 0)
2545 else if (strcasecmp (name
, "tr") == 0)
2550 else if (strcmp (name
, "<>") == 0)
2555 else if (strcmp (name
, ">=") == 0)
2560 else if (strcmp (name
, ">") == 0)
2565 else if (strcasecmp (name
, ">>=") == 0)
2570 else if (strcasecmp (name
, ">>") == 0)
2575 else if (strcasecmp (name
, "nsv") == 0)
2580 else if (strcasecmp (name
, "ev") == 0)
2585 /* ",*" is a valid condition. */
2586 else if (*args
!= 'S')
2587 as_bad (_("Invalid Compare/Subtract Condition: %s"),
2591 opcode
|= cmpltr
<< 13;
2592 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2594 /* Handle a non-negated compare condition. */
2596 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
2599 as_bad (_("Invalid Compare/Subtract Condition"));
2602 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2604 /* Handle a 32 bit compare and branch condition. */
2607 cmpltr
= pa_parse_nonneg_cmpsub_cmpltr (&s
);
2611 cmpltr
= pa_parse_neg_cmpsub_cmpltr (&s
);
2614 as_bad (_("Invalid Compare and Branch Condition"));
2619 /* Negated condition requires an opcode change. */
2624 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2626 /* Handle a 64 bit compare and branch condition. */
2628 cmpltr
= pa_parse_cmpb_64_cmpltr (&s
);
2631 /* Negated condition requires an opcode change. */
2632 opcode
|= (cmpltr
& 8) << 26;
2635 /* Not a 64 bit cond. Give 32 bit a chance. */
2638 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
& 7, 13);
2640 /* Handle a 64 bit cmpib condition. */
2642 cmpltr
= pa_parse_cmpib_64_cmpltr (&s
);
2644 /* Not a 64 bit cond. Give 32 bit a chance. */
2647 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2649 /* Handle a logical instruction condition. */
2658 /* 64 bit conditions. */
2670 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2675 if (strcmp (name
, "=") == 0)
2677 else if (strcmp (name
, "<") == 0)
2679 else if (strcmp (name
, "<=") == 0)
2681 else if (strcasecmp (name
, "od") == 0)
2683 else if (strcasecmp (name
, "tr") == 0)
2688 else if (strcmp (name
, "<>") == 0)
2693 else if (strcmp (name
, ">=") == 0)
2698 else if (strcmp (name
, ">") == 0)
2703 else if (strcasecmp (name
, "ev") == 0)
2708 /* ",*" is a valid condition. */
2709 else if (*args
!= 'L')
2710 as_bad (_("Invalid Logical Instruction Condition."));
2713 opcode
|= cmpltr
<< 13;
2714 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2716 /* Handle a shift/extract/deposit condition. */
2725 /* 64 bit conditions. */
2737 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
2741 if (strcmp (name
, "=") == 0)
2743 else if (strcmp (name
, "<") == 0)
2745 else if (strcasecmp (name
, "od") == 0)
2747 else if (strcasecmp (name
, "tr") == 0)
2749 else if (strcmp (name
, "<>") == 0)
2751 else if (strcmp (name
, ">=") == 0)
2753 else if (strcasecmp (name
, "ev") == 0)
2755 /* Handle movb,n. Put things back the way they were.
2756 This includes moving s back to where it started. */
2757 else if (strcasecmp (name
, "n") == 0 && *args
== 'y')
2763 /* ",*" is a valid condition. */
2764 else if (*args
!= 'X')
2765 as_bad (_("Invalid Shift/Extract/Deposit Condition."));
2768 INSERT_FIELD_AND_CONTINUE (opcode
, cmpltr
, 13);
2770 /* Handle a unit instruction condition. */
2779 /* 64 bit conditions. */
2790 if (strncasecmp (s
, "sbz", 3) == 0)
2795 else if (strncasecmp (s
, "shz", 3) == 0)
2800 else if (strncasecmp (s
, "sdc", 3) == 0)
2805 else if (strncasecmp (s
, "sbc", 3) == 0)
2810 else if (strncasecmp (s
, "shc", 3) == 0)
2815 else if (strncasecmp (s
, "tr", 2) == 0)
2821 else if (strncasecmp (s
, "nbz", 3) == 0)
2827 else if (strncasecmp (s
, "nhz", 3) == 0)
2833 else if (strncasecmp (s
, "ndc", 3) == 0)
2839 else if (strncasecmp (s
, "nbc", 3) == 0)
2845 else if (strncasecmp (s
, "nhc", 3) == 0)
2851 else if (strncasecmp (s
, "swz", 3) == 0)
2857 else if (strncasecmp (s
, "swc", 3) == 0)
2863 else if (strncasecmp (s
, "nwz", 3) == 0)
2869 else if (strncasecmp (s
, "nwc", 3) == 0)
2875 /* ",*" is a valid condition. */
2876 else if (*args
!= 'U')
2877 as_bad (_("Invalid Unit Instruction Condition."));
2879 opcode
|= cmpltr
<< 13;
2880 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 12);
2888 /* Handle a nullification completer for branch instructions. */
2890 nullif
= pa_parse_nullif (&s
);
2891 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 1);
2893 /* Handle a nullification completer for copr and spop insns. */
2895 nullif
= pa_parse_nullif (&s
);
2896 INSERT_FIELD_AND_CONTINUE (opcode
, nullif
, 5);
2898 /* Handle ,%r2 completer for new syntax branches. */
2900 if (*s
== ',' && strncasecmp (s
+ 1, "%r2", 3) == 0)
2902 else if (*s
== ',' && strncasecmp (s
+ 1, "%rp", 3) == 0)
2908 /* Handle 3 bit entry into the fp compare array. Valid values
2909 are 0..6 inclusive. */
2913 if (the_insn
.exp
.X_op
== O_constant
)
2915 num
= evaluate_absolute (&the_insn
);
2916 CHECK_FIELD (num
, 6, 0, 0);
2918 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
2923 /* Handle 3 bit entry into the fp compare array. Valid values
2924 are 0..6 inclusive. */
2927 if (the_insn
.exp
.X_op
== O_constant
)
2930 num
= evaluate_absolute (&the_insn
);
2931 CHECK_FIELD (num
, 6, 0, 0);
2932 num
= (num
+ 1) ^ 1;
2933 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
2938 /* Handle graphics test completers for ftest */
2941 num
= pa_parse_ftest_gfx_completer (&s
);
2942 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2945 /* Handle a 11 bit immediate at 31. */
2947 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2950 if (the_insn
.exp
.X_op
== O_constant
)
2952 num
= evaluate_absolute (&the_insn
);
2953 CHECK_FIELD (num
, 1023, -1024, 0);
2954 num
= low_sign_unext (num
, 11);
2955 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2959 if (is_DP_relative (the_insn
.exp
))
2960 the_insn
.reloc
= R_HPPA_GOTOFF
;
2961 else if (is_PC_relative (the_insn
.exp
))
2962 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
2964 the_insn
.reloc
= R_HPPA
;
2965 the_insn
.format
= 11;
2969 /* Handle a 14 bit immediate at 31. */
2971 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2974 if (the_insn
.exp
.X_op
== O_constant
)
2978 /* XXX the completer stored away tidbits of information
2979 for us to extract. We need a cleaner way to do this.
2980 Now that we have lots of letters again, it would be
2981 good to rethink this. */
2984 num
= evaluate_absolute (&the_insn
);
2985 if (mb
!= (num
< 0))
2987 CHECK_FIELD (num
, 8191, -8192, 0);
2988 num
= low_sign_unext (num
, 14);
2989 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
2993 /* Handle a 14 bit immediate at 31. */
2995 the_insn
.field_selector
= pa_chk_field_selector (&s
);
2998 if (the_insn
.exp
.X_op
== O_constant
)
3004 num
= evaluate_absolute (&the_insn
);
3005 if (mb
== (num
< 0))
3009 CHECK_FIELD (num
, 8191, -8192, 0);
3010 num
= low_sign_unext (num
, 14);
3011 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3015 /* Handle a 16 bit immediate at 31. */
3017 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3020 if (the_insn
.exp
.X_op
== O_constant
)
3026 num
= evaluate_absolute (&the_insn
);
3027 if (mb
!= (num
< 0))
3029 CHECK_FIELD (num
, 32767, -32768, 0);
3030 num
= re_assemble_16 (num
);
3031 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3035 /* Handle a 16 bit immediate at 31. */
3037 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3040 if (the_insn
.exp
.X_op
== O_constant
)
3046 num
= evaluate_absolute (&the_insn
);
3047 if (mb
== (num
< 0))
3051 CHECK_FIELD (num
, 32767, -32768, 0);
3052 num
= re_assemble_16 (num
);
3053 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3057 /* Handle 14 bit immediate, shifted left three times. */
3059 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3062 if (the_insn
.exp
.X_op
== O_constant
)
3064 num
= evaluate_absolute (&the_insn
);
3067 CHECK_FIELD (num
, 8191, -8192, 0);
3072 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 4);
3076 if (is_DP_relative (the_insn
.exp
))
3077 the_insn
.reloc
= R_HPPA_GOTOFF
;
3078 else if (is_PC_relative (the_insn
.exp
))
3079 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3081 the_insn
.reloc
= R_HPPA
;
3082 the_insn
.format
= 14;
3087 /* Handle 14 bit immediate, shifted left twice. */
3089 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3092 if (the_insn
.exp
.X_op
== O_constant
)
3094 num
= evaluate_absolute (&the_insn
);
3097 CHECK_FIELD (num
, 8191, -8192, 0);
3102 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
3106 if (is_DP_relative (the_insn
.exp
))
3107 the_insn
.reloc
= R_HPPA_GOTOFF
;
3108 else if (is_PC_relative (the_insn
.exp
))
3109 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3111 the_insn
.reloc
= R_HPPA
;
3112 the_insn
.format
= 14;
3116 /* Handle a 14 bit immediate at 31. */
3118 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3121 if (the_insn
.exp
.X_op
== O_constant
)
3123 num
= evaluate_absolute (&the_insn
);
3124 CHECK_FIELD (num
, 8191, -8192, 0);
3125 num
= low_sign_unext (num
, 14);
3126 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3130 if (is_DP_relative (the_insn
.exp
))
3131 the_insn
.reloc
= R_HPPA_GOTOFF
;
3132 else if (is_PC_relative (the_insn
.exp
))
3133 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3135 the_insn
.reloc
= R_HPPA
;
3136 the_insn
.format
= 14;
3140 /* Handle a 21 bit immediate at 31. */
3142 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3145 if (the_insn
.exp
.X_op
== O_constant
)
3147 num
= evaluate_absolute (&the_insn
);
3148 CHECK_FIELD (num
>> 11, 1048575, -1048576, 0);
3149 opcode
|= re_assemble_21 (num
);
3154 if (is_DP_relative (the_insn
.exp
))
3155 the_insn
.reloc
= R_HPPA_GOTOFF
;
3156 else if (is_PC_relative (the_insn
.exp
))
3157 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3159 the_insn
.reloc
= R_HPPA
;
3160 the_insn
.format
= 21;
3164 /* Handle a 16 bit immediate at 31 (PA 2.0 wide mode only). */
3166 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3169 if (the_insn
.exp
.X_op
== O_constant
)
3171 num
= evaluate_absolute (&the_insn
);
3172 CHECK_FIELD (num
, 32767, -32768, 0);
3173 opcode
|= re_assemble_16 (num
);
3178 /* ??? Is this valid for wide mode? */
3179 if (is_DP_relative (the_insn
.exp
))
3180 the_insn
.reloc
= R_HPPA_GOTOFF
;
3181 else if (is_PC_relative (the_insn
.exp
))
3182 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3184 the_insn
.reloc
= R_HPPA
;
3185 the_insn
.format
= 14;
3189 /* Handle a word-aligned 16-bit imm. at 31 (PA2.0 wide). */
3191 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3194 if (the_insn
.exp
.X_op
== O_constant
)
3196 num
= evaluate_absolute (&the_insn
);
3197 CHECK_FIELD (num
, 32767, -32768, 0);
3198 CHECK_ALIGN (num
, 4, 0);
3199 opcode
|= re_assemble_16 (num
);
3204 /* ??? Is this valid for wide mode? */
3205 if (is_DP_relative (the_insn
.exp
))
3206 the_insn
.reloc
= R_HPPA_GOTOFF
;
3207 else if (is_PC_relative (the_insn
.exp
))
3208 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3210 the_insn
.reloc
= R_HPPA
;
3211 the_insn
.format
= 14;
3215 /* Handle a dword-aligned 16-bit imm. at 31 (PA2.0 wide). */
3217 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3220 if (the_insn
.exp
.X_op
== O_constant
)
3222 num
= evaluate_absolute (&the_insn
);
3223 CHECK_FIELD (num
, 32767, -32768, 0);
3224 CHECK_ALIGN (num
, 8, 0);
3225 opcode
|= re_assemble_16 (num
);
3230 /* ??? Is this valid for wide mode? */
3231 if (is_DP_relative (the_insn
.exp
))
3232 the_insn
.reloc
= R_HPPA_GOTOFF
;
3233 else if (is_PC_relative (the_insn
.exp
))
3234 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3236 the_insn
.reloc
= R_HPPA
;
3237 the_insn
.format
= 14;
3241 /* Handle a 12 bit branch displacement. */
3243 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3247 if (!the_insn
.exp
.X_add_symbol
3248 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3251 num
= evaluate_absolute (&the_insn
);
3254 as_bad (_("Branch to unaligned address"));
3257 if (the_insn
.exp
.X_add_symbol
)
3259 CHECK_FIELD (num
, 8191, -8192, 0);
3260 opcode
|= re_assemble_12 (num
>> 2);
3265 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3266 the_insn
.format
= 12;
3267 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3268 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3273 /* Handle a 17 bit branch displacement. */
3275 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3279 if (!the_insn
.exp
.X_add_symbol
3280 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3283 num
= evaluate_absolute (&the_insn
);
3286 as_bad (_("Branch to unaligned address"));
3289 if (the_insn
.exp
.X_add_symbol
)
3291 CHECK_FIELD (num
, 262143, -262144, 0);
3292 opcode
|= re_assemble_17 (num
>> 2);
3297 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3298 the_insn
.format
= 17;
3299 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3300 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3304 /* Handle a 22 bit branch displacement. */
3306 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3310 if (!the_insn
.exp
.X_add_symbol
3311 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3314 num
= evaluate_absolute (&the_insn
);
3317 as_bad (_("Branch to unaligned address"));
3320 if (the_insn
.exp
.X_add_symbol
)
3322 CHECK_FIELD (num
, 8388607, -8388608, 0);
3323 opcode
|= re_assemble_22 (num
>> 2);
3327 the_insn
.reloc
= R_HPPA_PCREL_CALL
;
3328 the_insn
.format
= 22;
3329 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3330 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3334 /* Handle an absolute 17 bit branch target. */
3336 the_insn
.field_selector
= pa_chk_field_selector (&s
);
3340 if (!the_insn
.exp
.X_add_symbol
3341 || !strcmp (S_GET_NAME (the_insn
.exp
.X_add_symbol
),
3344 num
= evaluate_absolute (&the_insn
);
3347 as_bad (_("Branch to unaligned address"));
3350 if (the_insn
.exp
.X_add_symbol
)
3352 CHECK_FIELD (num
, 262143, -262144, 0);
3353 opcode
|= re_assemble_17 (num
>> 2);
3358 the_insn
.reloc
= R_HPPA_ABS_CALL
;
3359 the_insn
.format
= 17;
3360 the_insn
.arg_reloc
= last_call_desc
.arg_reloc
;
3361 memset (&last_call_desc
, 0, sizeof (struct call_desc
));
3365 /* Handle '%r1' implicit operand of addil instruction. */
3367 if (*s
== ',' && *(s
+ 1) == '%' && *(s
+ 3) == '1'
3368 && (*(s
+ 2) == 'r' || *(s
+ 2) == 'R'))
3376 /* Handle '%sr0,%r31' implicit operand of be,l instruction. */
3378 if (strncasecmp (s
, "%sr0,%r31", 9) != 0)
3383 /* Handle immediate value of 0 for ordered load/store instructions. */
3390 /* Handle a 2 bit shift count at 25. */
3392 num
= pa_get_absolute_expression (&the_insn
, &s
);
3393 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3396 CHECK_FIELD (num
, 3, 1, strict
);
3397 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3399 /* Handle a 4 bit shift count at 25. */
3401 num
= pa_get_absolute_expression (&the_insn
, &s
);
3402 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3405 CHECK_FIELD (num
, 15, 0, strict
);
3406 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3408 /* Handle a 5 bit shift count at 26. */
3410 num
= pa_get_absolute_expression (&the_insn
, &s
);
3411 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3414 CHECK_FIELD (num
, 31, 0, strict
);
3415 INSERT_FIELD_AND_CONTINUE (opcode
, 31 - num
, 5);
3417 /* Handle a 6 bit shift count at 20,22:26. */
3419 num
= pa_get_absolute_expression (&the_insn
, &s
);
3420 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3423 CHECK_FIELD (num
, 63, 0, strict
);
3425 opcode
|= (num
& 0x20) << 6;
3426 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
3428 /* Handle a 6 bit field length at 23,27:31. */
3431 num
= pa_get_absolute_expression (&the_insn
, &s
);
3432 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3435 CHECK_FIELD (num
, 64, 1, strict
);
3437 opcode
|= (num
& 0x20) << 3;
3438 num
= 31 - (num
& 0x1f);
3439 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3441 /* Handle a 6 bit field length at 19,27:31. */
3443 num
= pa_get_absolute_expression (&the_insn
, &s
);
3444 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3447 CHECK_FIELD (num
, 64, 1, strict
);
3449 opcode
|= (num
& 0x20) << 7;
3450 num
= 31 - (num
& 0x1f);
3451 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3453 /* Handle a 5 bit bit position at 26. */
3455 num
= pa_get_absolute_expression (&the_insn
, &s
);
3456 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3459 CHECK_FIELD (num
, 31, 0, strict
);
3460 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 5);
3462 /* Handle a 6 bit bit position at 20,22:26. */
3464 num
= pa_get_absolute_expression (&the_insn
, &s
);
3465 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3468 CHECK_FIELD (num
, 63, 0, strict
);
3469 opcode
|= (num
& 0x20) << 6;
3470 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 5);
3472 /* Handle a 5 bit immediate at 10 with 'd' as the complement
3473 of the high bit of the immediate. */
3475 num
= pa_get_absolute_expression (&the_insn
, &s
);
3476 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3479 CHECK_FIELD (num
, 63, 0, strict
);
3483 opcode
|= (1 << 13);
3484 INSERT_FIELD_AND_CONTINUE (opcode
, num
& 0x1f, 21);
3486 /* Handle a 5 bit immediate at 10. */
3488 num
= pa_get_absolute_expression (&the_insn
, &s
);
3489 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3492 CHECK_FIELD (num
, 31, 0, strict
);
3493 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3495 /* Handle a 9 bit immediate at 28. */
3497 num
= pa_get_absolute_expression (&the_insn
, &s
);
3498 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3501 CHECK_FIELD (num
, 511, 1, strict
);
3502 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 3);
3504 /* Handle a 13 bit immediate at 18. */
3506 num
= pa_get_absolute_expression (&the_insn
, &s
);
3507 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3510 CHECK_FIELD (num
, 8191, 0, strict
);
3511 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 13);
3513 /* Handle a 26 bit immediate at 31. */
3515 num
= pa_get_absolute_expression (&the_insn
, &s
);
3516 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3519 CHECK_FIELD (num
, 67108863, 0, strict
);
3520 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3522 /* Handle a 3 bit SFU identifier at 25. */
3525 as_bad (_("Invalid SFU identifier"));
3526 num
= pa_get_absolute_expression (&the_insn
, &s
);
3527 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3530 CHECK_FIELD (num
, 7, 0, strict
);
3531 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3533 /* Handle a 20 bit SOP field for spop0. */
3535 num
= pa_get_absolute_expression (&the_insn
, &s
);
3536 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3539 CHECK_FIELD (num
, 1048575, 0, strict
);
3540 num
= (num
& 0x1f) | ((num
& 0x000fffe0) << 6);
3541 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3543 /* Handle a 15bit SOP field for spop1. */
3545 num
= pa_get_absolute_expression (&the_insn
, &s
);
3546 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3549 CHECK_FIELD (num
, 32767, 0, strict
);
3550 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
3552 /* Handle a 10bit SOP field for spop3. */
3554 num
= pa_get_absolute_expression (&the_insn
, &s
);
3555 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3558 CHECK_FIELD (num
, 1023, 0, strict
);
3559 num
= (num
& 0x1f) | ((num
& 0x000003e0) << 6);
3560 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3562 /* Handle a 15 bit SOP field for spop2. */
3564 num
= pa_get_absolute_expression (&the_insn
, &s
);
3565 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3568 CHECK_FIELD (num
, 32767, 0, strict
);
3569 num
= (num
& 0x1f) | ((num
& 0x00007fe0) << 6);
3570 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3572 /* Handle a 3-bit co-processor ID field. */
3575 as_bad (_("Invalid COPR identifier"));
3576 num
= pa_get_absolute_expression (&the_insn
, &s
);
3577 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3580 CHECK_FIELD (num
, 7, 0, strict
);
3581 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3583 /* Handle a 22bit SOP field for copr. */
3585 num
= pa_get_absolute_expression (&the_insn
, &s
);
3586 if (strict
&& the_insn
.exp
.X_op
!= O_constant
)
3589 CHECK_FIELD (num
, 4194303, 0, strict
);
3590 num
= (num
& 0x1f) | ((num
& 0x003fffe0) << 4);
3591 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3593 /* Handle a source FP operand format completer. */
3595 if (*s
== ',' && *(s
+1) == 't')
3602 flag
= pa_parse_fp_cnv_format (&s
);
3603 the_insn
.fpof1
= flag
;
3604 if (flag
== W
|| flag
== UW
)
3606 if (flag
== DW
|| flag
== UDW
)
3608 if (flag
== QW
|| flag
== UQW
)
3610 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3612 /* Handle a destination FP operand format completer. */
3614 /* pa_parse_format needs the ',' prefix. */
3616 flag
= pa_parse_fp_cnv_format (&s
);
3617 the_insn
.fpof2
= flag
;
3618 if (flag
== W
|| flag
== UW
)
3620 if (flag
== DW
|| flag
== UDW
)
3622 if (flag
== QW
|| flag
== UQW
)
3624 opcode
|= flag
<< 13;
3625 if (the_insn
.fpof1
== SGL
3626 || the_insn
.fpof1
== DBL
3627 || the_insn
.fpof1
== QUAD
)
3629 if (the_insn
.fpof2
== SGL
3630 || the_insn
.fpof2
== DBL
3631 || the_insn
.fpof2
== QUAD
)
3633 else if (the_insn
.fpof2
== W
3634 || the_insn
.fpof2
== DW
3635 || the_insn
.fpof2
== QW
)
3637 else if (the_insn
.fpof2
== UW
3638 || the_insn
.fpof2
== UDW
3639 || the_insn
.fpof2
== UQW
)
3644 else if (the_insn
.fpof1
== W
3645 || the_insn
.fpof1
== DW
3646 || the_insn
.fpof1
== QW
)
3648 if (the_insn
.fpof2
== SGL
3649 || the_insn
.fpof2
== DBL
3650 || the_insn
.fpof2
== QUAD
)
3655 else if (the_insn
.fpof1
== UW
3656 || the_insn
.fpof1
== UDW
3657 || the_insn
.fpof1
== UQW
)
3659 if (the_insn
.fpof2
== SGL
3660 || the_insn
.fpof2
== DBL
3661 || the_insn
.fpof2
== QUAD
)
3666 flag
|= the_insn
.trunc
;
3667 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 15);
3669 /* Handle a source FP operand format completer. */
3671 flag
= pa_parse_fp_format (&s
);
3672 the_insn
.fpof1
= flag
;
3673 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3675 /* Handle a destination FP operand format completer. */
3677 /* pa_parse_format needs the ',' prefix. */
3679 flag
= pa_parse_fp_format (&s
);
3680 the_insn
.fpof2
= flag
;
3681 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 13);
3683 /* Handle a source FP operand format completer at 20. */
3685 flag
= pa_parse_fp_format (&s
);
3686 the_insn
.fpof1
= flag
;
3687 INSERT_FIELD_AND_CONTINUE (opcode
, flag
, 11);
3689 /* Handle a floating point operand format at 26.
3690 Only allows single and double precision. */
3692 flag
= pa_parse_fp_format (&s
);
3698 the_insn
.fpof1
= flag
;
3704 as_bad (_("Invalid Floating Point Operand Format."));
3708 /* Handle all floating point registers. */
3712 /* Float target register. */
3714 if (!pa_parse_number (&s
, 3))
3716 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3717 CHECK_FIELD (num
, 31, 0, 0);
3718 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3720 /* Float target register with L/R selection. */
3723 if (!pa_parse_number (&s
, 1))
3725 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3726 CHECK_FIELD (num
, 31, 0, 0);
3729 /* 0x30 opcodes are FP arithmetic operation opcodes
3730 and need to be turned into 0x38 opcodes. This
3731 is not necessary for loads/stores. */
3732 if (need_pa11_opcode ()
3733 && ((opcode
& 0xfc000000) == 0x30000000))
3736 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 6 : 0);
3740 /* Float operand 1. */
3743 if (!pa_parse_number (&s
, 1))
3745 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3746 CHECK_FIELD (num
, 31, 0, 0);
3747 opcode
|= num
<< 21;
3748 if (need_pa11_opcode ())
3750 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
3756 /* Float operand 1 with L/R selection. */
3760 if (!pa_parse_number (&s
, 1))
3762 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3763 CHECK_FIELD (num
, 31, 0, 0);
3764 opcode
|= num
<< 21;
3765 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 7 : 0);
3769 /* Float operand 2. */
3772 if (!pa_parse_number (&s
, 1))
3774 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3775 CHECK_FIELD (num
, 31, 0, 0);
3776 opcode
|= num
<< 16;
3777 if (need_pa11_opcode ())
3779 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
3785 /* Float operand 2 with L/R selection. */
3788 if (!pa_parse_number (&s
, 1))
3790 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3791 CHECK_FIELD (num
, 31, 0, 0);
3792 opcode
|= num
<< 16;
3793 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 12 : 0);
3797 /* Float operand 3 for fmpyfadd, fmpynfadd. */
3800 if (!pa_parse_number (&s
, 1))
3802 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3803 CHECK_FIELD (num
, 31, 0, 0);
3804 opcode
|= (num
& 0x1c) << 11;
3805 opcode
|= (num
& 0x03) << 9;
3806 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 8 : 0);
3810 /* Float mult operand 1 for fmpyadd, fmpysub */
3813 if (!pa_parse_number (&s
, 1))
3815 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3816 CHECK_FIELD (num
, 31, 0, 0);
3817 if (the_insn
.fpof1
== SGL
)
3821 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3825 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3827 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 21);
3830 /* Float mult operand 2 for fmpyadd, fmpysub */
3833 if (!pa_parse_number (&s
, 1))
3835 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3836 CHECK_FIELD (num
, 31, 0, 0);
3837 if (the_insn
.fpof1
== SGL
)
3841 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3845 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3847 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3850 /* Float mult target for fmpyadd, fmpysub */
3853 if (!pa_parse_number (&s
, 1))
3855 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3856 CHECK_FIELD (num
, 31, 0, 0);
3857 if (the_insn
.fpof1
== SGL
)
3861 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3865 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3867 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 0);
3870 /* Float add operand 1 for fmpyadd, fmpysub */
3873 if (!pa_parse_number (&s
, 1))
3875 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3876 CHECK_FIELD (num
, 31, 0, 0);
3877 if (the_insn
.fpof1
== SGL
)
3881 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3885 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3887 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 6);
3890 /* Float add target for fmpyadd, fmpysub */
3893 if (!pa_parse_number (&s
, 1))
3895 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3896 CHECK_FIELD (num
, 31, 0, 0);
3897 if (the_insn
.fpof1
== SGL
)
3901 as_bad (_("Invalid register for single precision fmpyadd or fmpysub"));
3905 num
|= (pa_number
& FP_REG_RSEL
? 1 << 4 : 0);
3907 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 11);
3910 /* Handle L/R register halves like 'x'. */
3914 if (!pa_parse_number (&s
, 1))
3916 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3917 CHECK_FIELD (num
, 31, 0, 0);
3918 opcode
|= num
<< 16;
3919 if (need_pa11_opcode ())
3921 opcode
|= (pa_number
& FP_REG_RSEL
? 1 << 1 : 0);
3926 /* Float target register (PA 2.0 wide). */
3928 if (!pa_parse_number (&s
, 3))
3930 num
= (pa_number
& ~FP_REG_RSEL
) - FP_REG_BASE
;
3931 CHECK_FIELD (num
, 31, 0, 0);
3932 INSERT_FIELD_AND_CONTINUE (opcode
, num
, 16);
3946 /* Check if the args matched. */
3949 if (&insn
[1] - pa_opcodes
< (int) NUMOPCODES
3950 && !strcmp (insn
->name
, insn
[1].name
))
3958 as_bad (_("Invalid operands %s"), error_message
);
3965 the_insn
.opcode
= opcode
;
3968 /* Turn a string in input_line_pointer into a floating point constant of type
3969 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
3970 emitted is stored in *sizeP . An error message or NULL is returned. */
3972 #define MAX_LITTLENUMS 6
3975 md_atof (type
, litP
, sizeP
)
3981 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
3982 LITTLENUM_TYPE
*wordP
;
4014 return _("Bad call to MD_ATOF()");
4016 t
= atof_ieee (input_line_pointer
, type
, words
);
4018 input_line_pointer
= t
;
4019 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
4020 for (wordP
= words
; prec
--;)
4022 md_number_to_chars (litP
, (valueT
) (*wordP
++), sizeof (LITTLENUM_TYPE
));
4023 litP
+= sizeof (LITTLENUM_TYPE
);
4028 /* Write out big-endian. */
4031 md_number_to_chars (buf
, val
, n
)
4036 number_to_chars_bigendian (buf
, val
, n
);
4039 /* Translate internal representation of relocation info to BFD target
4043 tc_gen_reloc (section
, fixp
)
4048 struct hppa_fix_struct
*hppa_fixp
;
4049 static arelent
*no_relocs
= NULL
;
4056 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
4057 if (fixp
->fx_addsy
== 0)
4060 assert (hppa_fixp
!= 0);
4061 assert (section
!= 0);
4063 reloc
= (arelent
*) xmalloc (sizeof (arelent
));
4065 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4066 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4067 codes
= hppa_gen_reloc_type (stdoutput
,
4069 hppa_fixp
->fx_r_format
,
4070 hppa_fixp
->fx_r_field
,
4071 fixp
->fx_subsy
!= NULL
,
4072 symbol_get_bfdsym (fixp
->fx_addsy
));
4076 as_bad_where (fixp
->fx_file
, fixp
->fx_line
, _("Cannot handle fixup"));
4080 for (n_relocs
= 0; codes
[n_relocs
]; n_relocs
++)
4083 relocs
= (arelent
**) xmalloc (sizeof (arelent
*) * n_relocs
+ 1);
4084 reloc
= (arelent
*) xmalloc (sizeof (arelent
) * n_relocs
);
4085 for (i
= 0; i
< n_relocs
; i
++)
4086 relocs
[i
] = &reloc
[i
];
4088 relocs
[n_relocs
] = NULL
;
4091 switch (fixp
->fx_r_type
)
4094 assert (n_relocs
== 1);
4098 /* Now, do any processing that is dependent on the relocation type. */
4101 case R_PARISC_DLTREL21L
:
4102 case R_PARISC_DLTREL14R
:
4103 case R_PARISC_DLTREL14F
:
4104 case R_PARISC_PLABEL32
:
4105 case R_PARISC_PLABEL21L
:
4106 case R_PARISC_PLABEL14R
:
4107 /* For plabel relocations, the addend of the
4108 relocation should be either 0 (no static link) or 2
4109 (static link required). This adjustment is done in
4110 bfd/elf32-hppa.c:elf32_hppa_relocate_section.
4112 We also slam a zero addend into the DLT relative relocs;
4113 it doesn't make a lot of sense to use any addend since
4114 it gets you a different (eg unknown) DLT entry. */
4118 #ifdef ELF_ARG_RELOC
4119 case R_PARISC_PCREL17R
:
4120 case R_PARISC_PCREL17F
:
4121 case R_PARISC_PCREL17C
:
4122 case R_PARISC_DIR17R
:
4123 case R_PARISC_DIR17F
:
4124 case R_PARISC_PCREL21L
:
4125 case R_PARISC_DIR21L
:
4126 reloc
->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
,
4131 case R_PARISC_DIR32
:
4132 /* Facilitate hand-crafted unwind info. */
4133 if (strcmp (section
->name
, UNWIND_SECTION_NAME
) == 0)
4134 code
= R_PARISC_SEGREL32
;
4138 reloc
->addend
= fixp
->fx_offset
;
4142 reloc
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4143 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4144 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
,
4145 (bfd_reloc_code_real_type
) code
);
4146 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4148 assert (reloc
->howto
&& (unsigned int) code
== reloc
->howto
->type
);
4153 /* Walk over reach relocation returned by the BFD backend. */
4154 for (i
= 0; i
< n_relocs
; i
++)
4158 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4159 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4161 bfd_reloc_type_lookup (stdoutput
,
4162 (bfd_reloc_code_real_type
) code
);
4163 relocs
[i
]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4168 /* The only time we ever use a R_COMP2 fixup is for the difference
4169 of two symbols. With that in mind we fill in all four
4170 relocs now and break out of the loop. */
4172 relocs
[0]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4174 bfd_reloc_type_lookup (stdoutput
,
4175 (bfd_reloc_code_real_type
) *codes
[0]);
4176 relocs
[0]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4177 relocs
[0]->addend
= 0;
4178 relocs
[1]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4179 *relocs
[1]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
4181 bfd_reloc_type_lookup (stdoutput
,
4182 (bfd_reloc_code_real_type
) *codes
[1]);
4183 relocs
[1]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4184 relocs
[1]->addend
= 0;
4185 relocs
[2]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4186 *relocs
[2]->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_subsy
);
4188 bfd_reloc_type_lookup (stdoutput
,
4189 (bfd_reloc_code_real_type
) *codes
[2]);
4190 relocs
[2]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4191 relocs
[2]->addend
= 0;
4192 relocs
[3]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4194 bfd_reloc_type_lookup (stdoutput
,
4195 (bfd_reloc_code_real_type
) *codes
[3]);
4196 relocs
[3]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4197 relocs
[3]->addend
= 0;
4198 relocs
[4]->sym_ptr_ptr
= (asymbol
**) &(bfd_abs_symbol
);
4200 bfd_reloc_type_lookup (stdoutput
,
4201 (bfd_reloc_code_real_type
) *codes
[4]);
4202 relocs
[4]->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
4203 relocs
[4]->addend
= 0;
4207 relocs
[i
]->addend
= HPPA_R_ADDEND (hppa_fixp
->fx_arg_reloc
, 0);
4213 /* For plabel relocations, the addend of the
4214 relocation should be either 0 (no static link) or 2
4215 (static link required).
4217 FIXME: We always assume no static link!
4219 We also slam a zero addend into the DLT relative relocs;
4220 it doesn't make a lot of sense to use any addend since
4221 it gets you a different (eg unknown) DLT entry. */
4222 relocs
[i
]->addend
= 0;
4237 /* There is no symbol or addend associated with these fixups. */
4238 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4239 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
4240 relocs
[i
]->addend
= 0;
4246 /* There is no symbol associated with these fixups. */
4247 relocs
[i
]->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
4248 *relocs
[i
]->sym_ptr_ptr
= symbol_get_bfdsym (dummy_symbol
);
4249 relocs
[i
]->addend
= fixp
->fx_offset
;
4253 relocs
[i
]->addend
= fixp
->fx_offset
;
4263 /* Process any machine dependent frag types. */
4266 md_convert_frag (abfd
, sec
, fragP
)
4267 register bfd
*abfd ATTRIBUTE_UNUSED
;
4268 register asection
*sec ATTRIBUTE_UNUSED
;
4269 register fragS
*fragP
;
4271 unsigned int address
;
4273 if (fragP
->fr_type
== rs_machine_dependent
)
4275 switch ((int) fragP
->fr_subtype
)
4278 fragP
->fr_type
= rs_fill
;
4279 know (fragP
->fr_var
== 1);
4280 know (fragP
->fr_next
);
4281 address
= fragP
->fr_address
+ fragP
->fr_fix
;
4282 if (address
% fragP
->fr_offset
)
4285 fragP
->fr_next
->fr_address
4290 fragP
->fr_offset
= 0;
4296 /* Round up a section size to the appropriate boundary. */
4299 md_section_align (segment
, size
)
4303 int align
= bfd_get_section_alignment (stdoutput
, segment
);
4304 int align2
= (1 << align
) - 1;
4306 return (size
+ align2
) & ~align2
;
4309 /* Return the approximate size of a frag before relaxation has occurred. */
4311 md_estimate_size_before_relax (fragP
, segment
)
4312 register fragS
*fragP
;
4313 asection
*segment ATTRIBUTE_UNUSED
;
4319 while ((fragP
->fr_fix
+ size
) % fragP
->fr_offset
)
4326 # ifdef WARN_COMMENTS
4327 const char *md_shortopts
= "Vc";
4329 const char *md_shortopts
= "V";
4332 # ifdef WARN_COMMENTS
4333 const char *md_shortopts
= "c";
4335 const char *md_shortopts
= "";
4339 struct option md_longopts
[] = {
4340 #ifdef WARN_COMMENTS
4341 {"warn-comment", no_argument
, NULL
, 'c'},
4343 {NULL
, no_argument
, NULL
, 0}
4345 size_t md_longopts_size
= sizeof (md_longopts
);
4348 md_parse_option (c
, arg
)
4349 int c ATTRIBUTE_UNUSED
;
4350 char *arg ATTRIBUTE_UNUSED
;
4359 print_version_id ();
4362 #ifdef WARN_COMMENTS
4373 md_show_usage (stream
)
4374 FILE *stream ATTRIBUTE_UNUSED
;
4377 fprintf (stream
, _("\
4380 #ifdef WARN_COMMENTS
4381 fprintf (stream
, _("\
4382 -c print a warning if a comment is found\n"));
4386 /* We have no need to default values of symbols. */
4389 md_undefined_symbol (name
)
4390 char *name ATTRIBUTE_UNUSED
;
4395 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
4396 #define nonzero_dibits(x) \
4397 ((x) | (((x) & 0x55555555) << 1) | (((x) & 0xAAAAAAAA) >> 1))
4398 #define arg_reloc_stub_needed(CALLER, CALLEE) \
4399 (((CALLER) ^ (CALLEE)) & nonzero_dibits (CALLER) & nonzero_dibits (CALLEE))
4401 #define arg_reloc_stub_needed(CALLER, CALLEE) 0
4404 /* Apply a fixup to an instruction. */
4407 md_apply_fix3 (fixP
, valP
, seg
)
4410 segT seg ATTRIBUTE_UNUSED
;
4413 struct hppa_fix_struct
*hppa_fixP
;
4417 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
4420 /* SOM uses R_HPPA_ENTRY and R_HPPA_EXIT relocations which can
4421 never be "applied" (they are just markers). Likewise for
4422 R_HPPA_BEGIN_BRTAB and R_HPPA_END_BRTAB. */
4424 if (fixP
->fx_r_type
== R_HPPA_ENTRY
4425 || fixP
->fx_r_type
== R_HPPA_EXIT
4426 || fixP
->fx_r_type
== R_HPPA_BEGIN_BRTAB
4427 || fixP
->fx_r_type
== R_HPPA_END_BRTAB
4428 || fixP
->fx_r_type
== R_HPPA_BEGIN_TRY
)
4431 /* Disgusting. We must set fx_offset ourselves -- R_HPPA_END_TRY
4432 fixups are considered not adjustable, which in turn causes
4433 adjust_reloc_syms to not set fx_offset. Ugh. */
4434 if (fixP
->fx_r_type
== R_HPPA_END_TRY
)
4436 fixP
->fx_offset
= * valP
;
4441 if (fixP
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
4442 || fixP
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
)
4446 /* There should have been an HPPA specific fixup associated
4447 with the GAS fixup. */
4448 hppa_fixP
= (struct hppa_fix_struct
*) fixP
->tc_fix_data
;
4449 if (hppa_fixP
== NULL
)
4451 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
4452 _("no hppa_fixup entry for fixup type 0x%x"),
4457 buf
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
4458 insn
= bfd_get_32 (stdoutput
, buf
);
4459 fmt
= bfd_hppa_insn2fmt (stdoutput
, insn
);
4461 /* If there is a symbol associated with this fixup, then it's something
4462 which will need a SOM relocation (except for some PC-relative relocs).
4463 In such cases we should treat the "val" or "addend" as zero since it
4464 will be added in as needed from fx_offset in tc_gen_reloc. */
4465 if ((fixP
->fx_addsy
!= NULL
4466 || fixP
->fx_r_type
== (int) R_HPPA_NONE
)
4471 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
4473 /* These field selectors imply that we do not want an addend. */
4474 else if (hppa_fixP
->fx_r_field
== e_psel
4475 || hppa_fixP
->fx_r_field
== e_rpsel
4476 || hppa_fixP
->fx_r_field
== e_lpsel
4477 || hppa_fixP
->fx_r_field
== e_tsel
4478 || hppa_fixP
->fx_r_field
== e_rtsel
4479 || hppa_fixP
->fx_r_field
== e_ltsel
)
4480 new_val
= ((fmt
== 12 || fmt
== 17 || fmt
== 22) ? 8 : 0);
4481 /* This is truly disgusting. The machine independent code blindly
4482 adds in the value of the symbol being relocated against. Damn! */
4484 && fixP
->fx_addsy
!= NULL
4485 && S_GET_SEGMENT (fixP
->fx_addsy
) != bfd_com_section_ptr
)
4486 new_val
= hppa_field_adjust (* valP
- S_GET_VALUE (fixP
->fx_addsy
),
4487 0, hppa_fixP
->fx_r_field
);
4490 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
4492 /* Handle pc-relative exceptions from above. */
4493 if ((fmt
== 12 || fmt
== 17 || fmt
== 22)
4496 && !arg_reloc_stub_needed (symbol_arg_reloc_info (fixP
->fx_addsy
),
4497 hppa_fixP
->fx_arg_reloc
)
4499 && (* valP
- 8 + 8192 < 16384
4500 || (fmt
== 17 && * valP
- 8 + 262144 < 524288)
4501 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
4504 && (* valP
- 8 + 262144 < 524288
4505 || (fmt
== 22 && * valP
- 8 + 8388608 < 16777216))
4507 && !S_IS_EXTERNAL (fixP
->fx_addsy
)
4508 && !S_IS_WEAK (fixP
->fx_addsy
)
4509 && S_GET_SEGMENT (fixP
->fx_addsy
) == hppa_fixP
->segment
4511 && S_GET_SEGMENT (fixP
->fx_subsy
) != hppa_fixP
->segment
))
4513 new_val
= hppa_field_adjust (* valP
, 0, hppa_fixP
->fx_r_field
);
4519 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4520 fixP
->fx_file
, fixP
->fx_line
);
4523 insn
= (insn
& ~ 0x3ff1) | (((val
& 0x1ff8) << 1)
4524 | ((val
& 0x2000) >> 13));
4527 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4528 fixP
->fx_file
, fixP
->fx_line
);
4531 insn
= (insn
& ~ 0x3ff9) | (((val
& 0x1ffc) << 1)
4532 | ((val
& 0x2000) >> 13));
4534 /* Handle all opcodes with the 'j' operand type. */
4536 CHECK_FIELD_WHERE (new_val
, 8191, -8192,
4537 fixP
->fx_file
, fixP
->fx_line
);
4540 insn
= ((insn
& ~ 0x3fff) | low_sign_unext (val
, 14));
4543 /* Handle all opcodes with the 'k' operand type. */
4545 CHECK_FIELD_WHERE (new_val
, 1048575, -1048576,
4546 fixP
->fx_file
, fixP
->fx_line
);
4549 insn
= (insn
& ~ 0x1fffff) | re_assemble_21 (val
);
4552 /* Handle all the opcodes with the 'i' operand type. */
4554 CHECK_FIELD_WHERE (new_val
, 1023, -1024,
4555 fixP
->fx_file
, fixP
->fx_line
);
4558 insn
= (insn
& ~ 0x7ff) | low_sign_unext (val
, 11);
4561 /* Handle all the opcodes with the 'w' operand type. */
4563 CHECK_FIELD_WHERE (new_val
- 8, 8191, -8192,
4564 fixP
->fx_file
, fixP
->fx_line
);
4567 insn
= (insn
& ~ 0x1ffd) | re_assemble_12 (val
>> 2);
4570 /* Handle some of the opcodes with the 'W' operand type. */
4573 offsetT distance
= * valP
;
4575 /* If this is an absolute branch (ie no link) with an out of
4576 range target, then we want to complain. */
4577 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
4578 && (insn
& 0xffe00000) == 0xe8000000)
4579 CHECK_FIELD_WHERE (distance
- 8, 262143, -262144,
4580 fixP
->fx_file
, fixP
->fx_line
);
4582 CHECK_FIELD_WHERE (new_val
- 8, 262143, -262144,
4583 fixP
->fx_file
, fixP
->fx_line
);
4586 insn
= (insn
& ~ 0x1f1ffd) | re_assemble_17 (val
>> 2);
4592 offsetT distance
= * valP
;
4594 /* If this is an absolute branch (ie no link) with an out of
4595 range target, then we want to complain. */
4596 if (fixP
->fx_r_type
== (int) R_HPPA_PCREL_CALL
4597 && (insn
& 0xffe00000) == 0xe8000000)
4598 CHECK_FIELD_WHERE (distance
- 8, 8388607, -8388608,
4599 fixP
->fx_file
, fixP
->fx_line
);
4601 CHECK_FIELD_WHERE (new_val
- 8, 8388607, -8388608,
4602 fixP
->fx_file
, fixP
->fx_line
);
4605 insn
= (insn
& ~ 0x3ff1ffd) | re_assemble_22 (val
>> 2);
4611 insn
= (insn
& ~ 0xfff1) | re_assemble_16 (val
& -8);
4616 insn
= (insn
& ~ 0xfff9) | re_assemble_16 (val
& -4);
4621 insn
= (insn
& ~ 0xffff) | re_assemble_16 (val
);
4629 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
4630 _("Unknown relocation encountered in md_apply_fix."));
4634 /* Insert the relocation. */
4635 bfd_put_32 (stdoutput
, insn
, buf
);
4638 /* Exactly what point is a PC-relative offset relative TO?
4639 On the PA, they're relative to the address of the offset. */
4642 md_pcrel_from (fixP
)
4645 return fixP
->fx_where
+ fixP
->fx_frag
->fr_address
;
4648 /* Return nonzero if the input line pointer is at the end of
4652 is_end_of_statement ()
4654 return ((*input_line_pointer
== '\n')
4655 || (*input_line_pointer
== ';')
4656 || (*input_line_pointer
== '!'));
4659 /* Read a number from S. The number might come in one of many forms,
4660 the most common will be a hex or decimal constant, but it could be
4661 a pre-defined register (Yuk!), or an absolute symbol.
4663 Return 1 on success or 0 on failure. If STRICT, then a missing
4664 register prefix will cause a failure. The number itself is
4665 returned in `pa_number'.
4667 IS_FLOAT indicates that a PA-89 FP register number should be
4668 parsed; A `l' or `r' suffix is checked for if but 2 of IS_FLOAT is
4671 pa_parse_number can not handle negative constants and will fail
4672 horribly if it is passed such a constant. */
4675 pa_parse_number (s
, is_float
)
4685 boolean have_prefix
;
4687 /* Skip whitespace before the number. */
4688 while (*p
== ' ' || *p
== '\t')
4694 if (!strict
&& ISDIGIT (*p
))
4696 /* Looks like a number. */
4698 if (*p
== '0' && (*(p
+ 1) == 'x' || *(p
+ 1) == 'X'))
4700 /* The number is specified in hex. */
4702 while (ISDIGIT (*p
) || ((*p
>= 'a') && (*p
<= 'f'))
4703 || ((*p
>= 'A') && (*p
<= 'F')))
4706 num
= num
* 16 + *p
- '0';
4707 else if (*p
>= 'a' && *p
<= 'f')
4708 num
= num
* 16 + *p
- 'a' + 10;
4710 num
= num
* 16 + *p
- 'A' + 10;
4716 /* The number is specified in decimal. */
4717 while (ISDIGIT (*p
))
4719 num
= num
* 10 + *p
- '0';
4726 /* Check for a `l' or `r' suffix. */
4729 pa_number
+= FP_REG_BASE
;
4730 if (! (is_float
& 2))
4732 if (IS_R_SELECT (p
))
4734 pa_number
+= FP_REG_RSEL
;
4737 else if (IS_L_SELECT (p
))
4746 /* The number might be a predefined register. */
4751 /* Tege hack: Special case for general registers as the general
4752 code makes a binary search with case translation, and is VERY
4757 if (*p
== 'e' && *(p
+ 1) == 't'
4758 && (*(p
+ 2) == '0' || *(p
+ 2) == '1'))
4761 num
= *p
- '0' + 28;
4769 else if (!ISDIGIT (*p
))
4772 as_bad (_("Undefined register: '%s'."), name
);
4778 num
= num
* 10 + *p
++ - '0';
4779 while (ISDIGIT (*p
));
4784 /* Do a normal register search. */
4785 while (is_part_of_name (c
))
4791 status
= reg_name_search (name
);
4797 as_bad (_("Undefined register: '%s'."), name
);
4807 /* And finally, it could be a symbol in the absolute section which
4808 is effectively a constant, or a register alias symbol. */
4811 while (is_part_of_name (c
))
4817 if ((sym
= symbol_find (name
)) != NULL
)
4819 if (S_GET_SEGMENT (sym
) == reg_section
)
4821 num
= S_GET_VALUE (sym
);
4822 /* Well, we don't really have one, but we do have a
4826 else if (S_GET_SEGMENT (sym
) == &bfd_abs_section
)
4827 num
= S_GET_VALUE (sym
);
4831 as_bad (_("Non-absolute symbol: '%s'."), name
);
4837 /* There is where we'd come for an undefined symbol
4838 or for an empty string. For an empty string we
4839 will return zero. That's a concession made for
4840 compatability with the braindamaged HP assemblers. */
4846 as_bad (_("Undefined absolute constant: '%s'."), name
);
4855 if (!strict
|| have_prefix
)
4863 #define REG_NAME_CNT (sizeof (pre_defined_registers) / sizeof (struct pd_reg))
4865 /* Given NAME, find the register number associated with that name, return
4866 the integer value associated with the given name or -1 on failure. */
4869 reg_name_search (name
)
4872 int middle
, low
, high
;
4876 high
= REG_NAME_CNT
- 1;
4880 middle
= (low
+ high
) / 2;
4881 cmp
= strcasecmp (name
, pre_defined_registers
[middle
].name
);
4887 return pre_defined_registers
[middle
].value
;
4889 while (low
<= high
);
4894 /* Return nonzero if the given INSN and L/R information will require
4895 a new PA-1.1 opcode. */
4900 if ((pa_number
& FP_REG_RSEL
) != 0
4901 && !(the_insn
.fpof1
== DBL
&& the_insn
.fpof2
== DBL
))
4903 /* If this instruction is specific to a particular architecture,
4904 then set a new architecture. */
4905 if (bfd_get_mach (stdoutput
) < pa11
)
4907 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, pa11
))
4908 as_warn (_("could not update architecture and machine"));
4916 /* Parse a condition for a fcmp instruction. Return the numerical
4917 code associated with the condition. */
4920 pa_parse_fp_cmp_cond (s
)
4927 for (i
= 0; i
< 32; i
++)
4929 if (strncasecmp (*s
, fp_cond_map
[i
].string
,
4930 strlen (fp_cond_map
[i
].string
)) == 0)
4932 cond
= fp_cond_map
[i
].cond
;
4933 *s
+= strlen (fp_cond_map
[i
].string
);
4934 /* If not a complete match, back up the input string and
4936 if (**s
!= ' ' && **s
!= '\t')
4938 *s
-= strlen (fp_cond_map
[i
].string
);
4941 while (**s
== ' ' || **s
== '\t')
4947 as_bad (_("Invalid FP Compare Condition: %s"), *s
);
4949 /* Advance over the bogus completer. */
4950 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
4956 /* Parse a graphics test complete for ftest. */
4959 pa_parse_ftest_gfx_completer (s
)
4965 if (strncasecmp (*s
, "acc8", 4) == 0)
4970 else if (strncasecmp (*s
, "acc6", 4) == 0)
4975 else if (strncasecmp (*s
, "acc4", 4) == 0)
4980 else if (strncasecmp (*s
, "acc2", 4) == 0)
4985 else if (strncasecmp (*s
, "acc", 3) == 0)
4990 else if (strncasecmp (*s
, "rej8", 4) == 0)
4995 else if (strncasecmp (*s
, "rej", 3) == 0)
5003 as_bad (_("Invalid FTEST completer: %s"), *s
);
5009 /* Parse an FP operand format completer returning the completer
5012 static fp_operand_format
5013 pa_parse_fp_cnv_format (s
)
5022 if (strncasecmp (*s
, "sgl", 3) == 0)
5027 else if (strncasecmp (*s
, "dbl", 3) == 0)
5032 else if (strncasecmp (*s
, "quad", 4) == 0)
5037 else if (strncasecmp (*s
, "w", 1) == 0)
5042 else if (strncasecmp (*s
, "uw", 2) == 0)
5047 else if (strncasecmp (*s
, "dw", 2) == 0)
5052 else if (strncasecmp (*s
, "udw", 3) == 0)
5057 else if (strncasecmp (*s
, "qw", 2) == 0)
5062 else if (strncasecmp (*s
, "uqw", 3) == 0)
5069 format
= ILLEGAL_FMT
;
5070 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
5077 /* Parse an FP operand format completer returning the completer
5080 static fp_operand_format
5081 pa_parse_fp_format (s
)
5090 if (strncasecmp (*s
, "sgl", 3) == 0)
5095 else if (strncasecmp (*s
, "dbl", 3) == 0)
5100 else if (strncasecmp (*s
, "quad", 4) == 0)
5107 format
= ILLEGAL_FMT
;
5108 as_bad (_("Invalid FP Operand Format: %3s"), *s
);
5115 /* Convert from a selector string into a selector type. */
5118 pa_chk_field_selector (str
)
5121 int middle
, low
, high
;
5125 /* Read past any whitespace. */
5126 /* FIXME: should we read past newlines and formfeeds??? */
5127 while (**str
== ' ' || **str
== '\t' || **str
== '\n' || **str
== '\f')
5130 if ((*str
)[1] == '\'' || (*str
)[1] == '%')
5131 name
[0] = TOLOWER ((*str
)[0]),
5133 else if ((*str
)[2] == '\'' || (*str
)[2] == '%')
5134 name
[0] = TOLOWER ((*str
)[0]),
5135 name
[1] = TOLOWER ((*str
)[1]),
5137 else if ((*str
)[3] == '\'' || (*str
)[3] == '%')
5138 name
[0] = TOLOWER ((*str
)[0]),
5139 name
[1] = TOLOWER ((*str
)[1]),
5140 name
[2] = TOLOWER ((*str
)[2]),
5146 high
= sizeof (selector_table
) / sizeof (struct selector_entry
) - 1;
5150 middle
= (low
+ high
) / 2;
5151 cmp
= strcmp (name
, selector_table
[middle
].prefix
);
5158 *str
+= strlen (name
) + 1;
5160 if (selector_table
[middle
].field_selector
== e_nsel
)
5163 return selector_table
[middle
].field_selector
;
5166 while (low
<= high
);
5171 /* Mark (via expr_end) the end of an expression (I think). FIXME. */
5174 get_expression (str
)
5180 save_in
= input_line_pointer
;
5181 input_line_pointer
= str
;
5182 seg
= expression (&the_insn
.exp
);
5183 if (!(seg
== absolute_section
5184 || seg
== undefined_section
5185 || SEG_NORMAL (seg
)))
5187 as_warn (_("Bad segment in expression."));
5188 expr_end
= input_line_pointer
;
5189 input_line_pointer
= save_in
;
5192 expr_end
= input_line_pointer
;
5193 input_line_pointer
= save_in
;
5197 /* Mark (via expr_end) the end of an absolute expression. FIXME. */
5199 pa_get_absolute_expression (insn
, strp
)
5205 insn
->field_selector
= pa_chk_field_selector (strp
);
5206 save_in
= input_line_pointer
;
5207 input_line_pointer
= *strp
;
5208 expression (&insn
->exp
);
5209 /* This is not perfect, but is a huge improvement over doing nothing.
5211 The PA assembly syntax is ambigious in a variety of ways. Consider
5212 this string "4 %r5" Is that the number 4 followed by the register
5213 r5, or is that 4 MOD r5?
5215 If we get a modulo expresion When looking for an absolute, we try
5216 again cutting off the input string at the first whitespace character. */
5217 if (insn
->exp
.X_op
== O_modulus
)
5222 input_line_pointer
= *strp
;
5224 while (*s
!= ',' && *s
!= ' ' && *s
!= '\t')
5230 retval
= pa_get_absolute_expression (insn
, strp
);
5232 input_line_pointer
= save_in
;
5234 return evaluate_absolute (insn
);
5236 /* When in strict mode we have a non-match, fix up the pointers
5237 and return to our caller. */
5238 if (insn
->exp
.X_op
!= O_constant
&& strict
)
5240 expr_end
= input_line_pointer
;
5241 input_line_pointer
= save_in
;
5244 if (insn
->exp
.X_op
!= O_constant
)
5246 as_bad (_("Bad segment (should be absolute)."));
5247 expr_end
= input_line_pointer
;
5248 input_line_pointer
= save_in
;
5251 expr_end
= input_line_pointer
;
5252 input_line_pointer
= save_in
;
5253 return evaluate_absolute (insn
);
5256 /* Evaluate an absolute expression EXP which may be modified by
5257 the selector FIELD_SELECTOR. Return the value of the expression. */
5259 evaluate_absolute (insn
)
5264 int field_selector
= insn
->field_selector
;
5267 value
= exp
.X_add_number
;
5269 return hppa_field_adjust (0, value
, field_selector
);
5272 /* Given an argument location specification return the associated
5273 argument location number. */
5276 pa_build_arg_reloc (type_name
)
5280 if (strncasecmp (type_name
, "no", 2) == 0)
5282 if (strncasecmp (type_name
, "gr", 2) == 0)
5284 else if (strncasecmp (type_name
, "fr", 2) == 0)
5286 else if (strncasecmp (type_name
, "fu", 2) == 0)
5289 as_bad (_("Invalid argument location: %s\n"), type_name
);
5294 /* Encode and return an argument relocation specification for
5295 the given register in the location specified by arg_reloc. */
5298 pa_align_arg_reloc (reg
, arg_reloc
)
5300 unsigned int arg_reloc
;
5302 unsigned int new_reloc
;
5304 new_reloc
= arg_reloc
;
5320 as_bad (_("Invalid argument description: %d"), reg
);
5326 /* Parse a PA nullification completer (,n). Return nonzero if the
5327 completer was found; return zero if no completer was found. */
5339 if (strncasecmp (*s
, "n", 1) == 0)
5343 as_bad (_("Invalid Nullification: (%c)"), **s
);
5352 /* Parse a non-negated compare/subtract completer returning the
5353 number (for encoding in instrutions) of the given completer. */
5356 pa_parse_nonneg_cmpsub_cmpltr (s
)
5360 char *name
= *s
+ 1;
5369 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5374 if (strcmp (name
, "=") == 0)
5378 else if (strcmp (name
, "<") == 0)
5382 else if (strcmp (name
, "<=") == 0)
5386 else if (strcmp (name
, "<<") == 0)
5390 else if (strcmp (name
, "<<=") == 0)
5394 else if (strcasecmp (name
, "sv") == 0)
5398 else if (strcasecmp (name
, "od") == 0)
5402 /* If we have something like addb,n then there is no condition
5404 else if (strcasecmp (name
, "n") == 0)
5416 /* Reset pointers if this was really a ,n for a branch instruction. */
5423 /* Parse a negated compare/subtract completer returning the
5424 number (for encoding in instrutions) of the given completer. */
5427 pa_parse_neg_cmpsub_cmpltr (s
)
5431 char *name
= *s
+ 1;
5440 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5445 if (strcasecmp (name
, "tr") == 0)
5449 else if (strcmp (name
, "<>") == 0)
5453 else if (strcmp (name
, ">=") == 0)
5457 else if (strcmp (name
, ">") == 0)
5461 else if (strcmp (name
, ">>=") == 0)
5465 else if (strcmp (name
, ">>") == 0)
5469 else if (strcasecmp (name
, "nsv") == 0)
5473 else if (strcasecmp (name
, "ev") == 0)
5477 /* If we have something like addb,n then there is no condition
5479 else if (strcasecmp (name
, "n") == 0)
5491 /* Reset pointers if this was really a ,n for a branch instruction. */
5498 /* Parse a 64 bit compare and branch completer returning the number (for
5499 encoding in instrutions) of the given completer.
5501 Nonnegated comparisons are returned as 0-7, negated comparisons are
5502 returned as 8-15. */
5505 pa_parse_cmpb_64_cmpltr (s
)
5509 char *name
= *s
+ 1;
5516 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5521 if (strcmp (name
, "*") == 0)
5525 else if (strcmp (name
, "*=") == 0)
5529 else if (strcmp (name
, "*<") == 0)
5533 else if (strcmp (name
, "*<=") == 0)
5537 else if (strcmp (name
, "*<<") == 0)
5541 else if (strcmp (name
, "*<<=") == 0)
5545 else if (strcasecmp (name
, "*sv") == 0)
5549 else if (strcasecmp (name
, "*od") == 0)
5553 else if (strcasecmp (name
, "*tr") == 0)
5557 else if (strcmp (name
, "*<>") == 0)
5561 else if (strcmp (name
, "*>=") == 0)
5565 else if (strcmp (name
, "*>") == 0)
5569 else if (strcmp (name
, "*>>=") == 0)
5573 else if (strcmp (name
, "*>>") == 0)
5577 else if (strcasecmp (name
, "*nsv") == 0)
5581 else if (strcasecmp (name
, "*ev") == 0)
5595 /* Parse a 64 bit compare immediate and branch completer returning the number
5596 (for encoding in instrutions) of the given completer. */
5599 pa_parse_cmpib_64_cmpltr (s
)
5603 char *name
= *s
+ 1;
5610 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5615 if (strcmp (name
, "*<<") == 0)
5619 else if (strcmp (name
, "*=") == 0)
5623 else if (strcmp (name
, "*<") == 0)
5627 else if (strcmp (name
, "*<=") == 0)
5631 else if (strcmp (name
, "*>>=") == 0)
5635 else if (strcmp (name
, "*<>") == 0)
5639 else if (strcasecmp (name
, "*>=") == 0)
5643 else if (strcasecmp (name
, "*>") == 0)
5657 /* Parse a non-negated addition completer returning the number
5658 (for encoding in instrutions) of the given completer. */
5661 pa_parse_nonneg_add_cmpltr (s
)
5665 char *name
= *s
+ 1;
5674 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5678 if (strcmp (name
, "=") == 0)
5682 else if (strcmp (name
, "<") == 0)
5686 else if (strcmp (name
, "<=") == 0)
5690 else if (strcasecmp (name
, "nuv") == 0)
5694 else if (strcasecmp (name
, "znv") == 0)
5698 else if (strcasecmp (name
, "sv") == 0)
5702 else if (strcasecmp (name
, "od") == 0)
5706 /* If we have something like addb,n then there is no condition
5708 else if (strcasecmp (name
, "n") == 0)
5720 /* Reset pointers if this was really a ,n for a branch instruction. */
5727 /* Parse a negated addition completer returning the number
5728 (for encoding in instrutions) of the given completer. */
5731 pa_parse_neg_add_cmpltr (s
)
5735 char *name
= *s
+ 1;
5744 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5748 if (strcasecmp (name
, "tr") == 0)
5752 else if (strcmp (name
, "<>") == 0)
5756 else if (strcmp (name
, ">=") == 0)
5760 else if (strcmp (name
, ">") == 0)
5764 else if (strcasecmp (name
, "uv") == 0)
5768 else if (strcasecmp (name
, "vnz") == 0)
5772 else if (strcasecmp (name
, "nsv") == 0)
5776 else if (strcasecmp (name
, "ev") == 0)
5780 /* If we have something like addb,n then there is no condition
5782 else if (strcasecmp (name
, "n") == 0)
5794 /* Reset pointers if this was really a ,n for a branch instruction. */
5801 /* Parse a 64 bit wide mode add and branch completer returning the number (for
5802 encoding in instrutions) of the given completer. */
5805 pa_parse_addb_64_cmpltr (s
)
5809 char *name
= *s
+ 1;
5818 while (**s
!= ',' && **s
!= ' ' && **s
!= '\t')
5822 if (strcmp (name
, "=") == 0)
5826 else if (strcmp (name
, "<") == 0)
5830 else if (strcmp (name
, "<=") == 0)
5834 else if (strcasecmp (name
, "nuv") == 0)
5838 else if (strcasecmp (name
, "*=") == 0)
5842 else if (strcasecmp (name
, "*<") == 0)
5846 else if (strcasecmp (name
, "*<=") == 0)
5850 else if (strcmp (name
, "tr") == 0)
5854 else if (strcmp (name
, "<>") == 0)
5858 else if (strcmp (name
, ">=") == 0)
5862 else if (strcmp (name
, ">") == 0)
5866 else if (strcasecmp (name
, "uv") == 0)
5870 else if (strcasecmp (name
, "*<>") == 0)
5874 else if (strcasecmp (name
, "*>=") == 0)
5878 else if (strcasecmp (name
, "*>") == 0)
5882 /* If we have something like addb,n then there is no condition
5884 else if (strcasecmp (name
, "n") == 0)
5896 /* Reset pointers if this was really a ,n for a branch instruction. */
5904 /* Handle an alignment directive. Special so that we can update the
5905 alignment of the subspace if necessary. */
5910 /* We must have a valid space and subspace. */
5911 pa_check_current_space_and_subspace ();
5913 /* Let the generic gas code do most of the work. */
5914 s_align_bytes (bytes
);
5916 /* If bytes is a power of 2, then update the current subspace's
5917 alignment if necessary. */
5918 if (log2 (bytes
) != -1)
5919 record_alignment (current_subspace
->ssd_seg
, log2 (bytes
));
5923 /* Handle a .BLOCK type pseudo-op. */
5927 int z ATTRIBUTE_UNUSED
;
5931 unsigned int temp_size
;
5935 /* We must have a valid space and subspace. */
5936 pa_check_current_space_and_subspace ();
5939 temp_size
= get_absolute_expression ();
5941 /* Always fill with zeros, that's what the HP assembler does. */
5944 p
= frag_var (rs_fill
, (int) temp_size
, (int) temp_size
,
5945 (relax_substateT
) 0, (symbolS
*) 0, (offsetT
) 1, NULL
);
5946 memset (p
, 0, temp_size
);
5948 /* Convert 2 bytes at a time. */
5950 for (i
= 0; i
< temp_size
; i
+= 2)
5952 md_number_to_chars (p
+ i
,
5954 (int) ((temp_size
- i
) > 2 ? 2 : (temp_size
- i
)));
5957 pa_undefine_label ();
5958 demand_empty_rest_of_line ();
5961 /* Handle a .begin_brtab and .end_brtab pseudo-op. */
5965 int begin ATTRIBUTE_UNUSED
;
5969 /* The BRTAB relocations are only availble in SOM (to denote
5970 the beginning and end of branch tables). */
5971 char *where
= frag_more (0);
5973 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5974 NULL
, (offsetT
) 0, NULL
,
5975 0, begin
? R_HPPA_BEGIN_BRTAB
: R_HPPA_END_BRTAB
,
5979 demand_empty_rest_of_line ();
5982 /* Handle a .begin_try and .end_try pseudo-op. */
5986 int begin ATTRIBUTE_UNUSED
;
5990 char *where
= frag_more (0);
5995 /* The TRY relocations are only availble in SOM (to denote
5996 the beginning and end of exception handling regions). */
5998 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
5999 NULL
, (offsetT
) 0, begin
? NULL
: &exp
,
6000 0, begin
? R_HPPA_BEGIN_TRY
: R_HPPA_END_TRY
,
6004 demand_empty_rest_of_line ();
6007 /* Handle a .CALL pseudo-op. This involves storing away information
6008 about where arguments are to be found so the linker can detect
6009 (and correct) argument location mismatches between caller and callee. */
6013 int unused ATTRIBUTE_UNUSED
;
6016 /* We must have a valid space and subspace. */
6017 pa_check_current_space_and_subspace ();
6020 pa_call_args (&last_call_desc
);
6021 demand_empty_rest_of_line ();
6024 /* Do the dirty work of building a call descriptor which describes
6025 where the caller placed arguments to a function call. */
6028 pa_call_args (call_desc
)
6029 struct call_desc
*call_desc
;
6032 unsigned int temp
, arg_reloc
;
6034 while (!is_end_of_statement ())
6036 name
= input_line_pointer
;
6037 c
= get_symbol_end ();
6038 /* Process a source argument. */
6039 if ((strncasecmp (name
, "argw", 4) == 0))
6041 temp
= atoi (name
+ 4);
6042 p
= input_line_pointer
;
6044 input_line_pointer
++;
6045 name
= input_line_pointer
;
6046 c
= get_symbol_end ();
6047 arg_reloc
= pa_build_arg_reloc (name
);
6048 call_desc
->arg_reloc
|= pa_align_arg_reloc (temp
, arg_reloc
);
6050 /* Process a return value. */
6051 else if ((strncasecmp (name
, "rtnval", 6) == 0))
6053 p
= input_line_pointer
;
6055 input_line_pointer
++;
6056 name
= input_line_pointer
;
6057 c
= get_symbol_end ();
6058 arg_reloc
= pa_build_arg_reloc (name
);
6059 call_desc
->arg_reloc
|= (arg_reloc
& 0x3);
6063 as_bad (_("Invalid .CALL argument: %s"), name
);
6065 p
= input_line_pointer
;
6067 if (!is_end_of_statement ())
6068 input_line_pointer
++;
6072 /* Return TRUE if FRAG1 and FRAG2 are the same. */
6075 is_same_frag (frag1
, frag2
)
6082 else if (frag2
== NULL
)
6084 else if (frag1
== frag2
)
6086 else if (frag2
->fr_type
== rs_fill
&& frag2
->fr_fix
== 0)
6087 return (is_same_frag (frag1
, frag2
->fr_next
));
6093 /* Build an entry in the UNWIND subspace from the given function
6094 attributes in CALL_INFO. This is not needed for SOM as using
6095 R_ENTRY and R_EXIT relocations allow the linker to handle building
6096 of the unwind spaces. */
6099 pa_build_unwind_subspace (call_info
)
6100 struct call_info
*call_info
;
6102 asection
*seg
, *save_seg
;
6103 subsegT save_subseg
;
6104 unsigned int unwind
;
6108 if ((bfd_get_section_flags (stdoutput
, now_seg
)
6109 & (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
6110 != (SEC_ALLOC
| SEC_LOAD
| SEC_READONLY
))
6113 reloc
= R_PARISC_SEGREL32
;
6115 save_subseg
= now_subseg
;
6116 /* Get into the right seg/subseg. This may involve creating
6117 the seg the first time through. Make sure to have the
6118 old seg/subseg so that we can reset things when we are done. */
6119 seg
= bfd_get_section_by_name (stdoutput
, UNWIND_SECTION_NAME
);
6120 if (seg
== ASEC_NULL
)
6122 seg
= subseg_new (UNWIND_SECTION_NAME
, 0);
6123 bfd_set_section_flags (stdoutput
, seg
,
6124 SEC_READONLY
| SEC_HAS_CONTENTS
6125 | SEC_LOAD
| SEC_RELOC
| SEC_ALLOC
| SEC_DATA
);
6126 bfd_set_section_alignment (stdoutput
, seg
, 2);
6129 subseg_set (seg
, 0);
6131 /* Get some space to hold relocation information for the unwind
6135 /* Relocation info. for start offset of the function. */
6136 md_number_to_chars (p
, 0, 4);
6137 fix_new_hppa (frag_now
, p
- frag_now
->fr_literal
, 4,
6138 call_info
->start_symbol
, (offsetT
) 0,
6139 (expressionS
*) NULL
, 0, reloc
,
6142 /* Relocation info. for end offset of the function.
6144 Because we allow reductions of 32bit relocations for ELF, this will be
6145 reduced to section_sym + offset which avoids putting the temporary
6146 symbol into the symbol table. It (should) end up giving the same
6147 value as call_info->start_symbol + function size once the linker is
6148 finished with its work. */
6149 md_number_to_chars (p
+ 4, 0, 4);
6150 fix_new_hppa (frag_now
, p
+ 4 - frag_now
->fr_literal
, 4,
6151 call_info
->end_symbol
, (offsetT
) 0,
6152 (expressionS
*) NULL
, 0, reloc
,
6155 /* Dump the descriptor. */
6156 unwind
= UNWIND_LOW32 (&call_info
->ci_unwind
.descriptor
);
6157 md_number_to_chars (p
+ 8, unwind
, 4);
6159 unwind
= UNWIND_HIGH32 (&call_info
->ci_unwind
.descriptor
);
6160 md_number_to_chars (p
+ 12, unwind
, 4);
6162 /* Return back to the original segment/subsegment. */
6163 subseg_set (save_seg
, save_subseg
);
6167 /* Process a .CALLINFO pseudo-op. This information is used later
6168 to build unwind descriptors and maybe one day to support
6169 .ENTER and .LEAVE. */
6172 pa_callinfo (unused
)
6173 int unused ATTRIBUTE_UNUSED
;
6179 /* We must have a valid space and subspace. */
6180 pa_check_current_space_and_subspace ();
6183 /* .CALLINFO must appear within a procedure definition. */
6184 if (!within_procedure
)
6185 as_bad (_(".callinfo is not within a procedure definition"));
6187 /* Mark the fact that we found the .CALLINFO for the
6188 current procedure. */
6189 callinfo_found
= TRUE
;
6191 /* Iterate over the .CALLINFO arguments. */
6192 while (!is_end_of_statement ())
6194 name
= input_line_pointer
;
6195 c
= get_symbol_end ();
6196 /* Frame size specification. */
6197 if ((strncasecmp (name
, "frame", 5) == 0))
6199 p
= input_line_pointer
;
6201 input_line_pointer
++;
6202 temp
= get_absolute_expression ();
6203 if ((temp
& 0x3) != 0)
6205 as_bad (_("FRAME parameter must be a multiple of 8: %d\n"), temp
);
6209 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
6210 last_call_info
->ci_unwind
.descriptor
.frame_size
= temp
/ 8;
6213 /* Entry register (GR, GR and SR) specifications. */
6214 else if ((strncasecmp (name
, "entry_gr", 8) == 0))
6216 p
= input_line_pointer
;
6218 input_line_pointer
++;
6219 temp
= get_absolute_expression ();
6220 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
6221 even though %r19 is caller saved. I think this is a bug in
6222 the HP assembler, and we are not going to emulate it. */
6223 if (temp
< 3 || temp
> 18)
6224 as_bad (_("Value for ENTRY_GR must be in the range 3..18\n"));
6225 last_call_info
->ci_unwind
.descriptor
.entry_gr
= temp
- 2;
6227 else if ((strncasecmp (name
, "entry_fr", 8) == 0))
6229 p
= input_line_pointer
;
6231 input_line_pointer
++;
6232 temp
= get_absolute_expression ();
6233 /* Similarly the HP assembler takes 31 as the high bound even
6234 though %fr21 is the last callee saved floating point register. */
6235 if (temp
< 12 || temp
> 21)
6236 as_bad (_("Value for ENTRY_FR must be in the range 12..21\n"));
6237 last_call_info
->ci_unwind
.descriptor
.entry_fr
= temp
- 11;
6239 else if ((strncasecmp (name
, "entry_sr", 8) == 0))
6241 p
= input_line_pointer
;
6243 input_line_pointer
++;
6244 temp
= get_absolute_expression ();
6246 as_bad (_("Value for ENTRY_SR must be 3\n"));
6248 /* Note whether or not this function performs any calls. */
6249 else if ((strncasecmp (name
, "calls", 5) == 0) ||
6250 (strncasecmp (name
, "caller", 6) == 0))
6252 p
= input_line_pointer
;
6255 else if ((strncasecmp (name
, "no_calls", 8) == 0))
6257 p
= input_line_pointer
;
6260 /* Should RP be saved into the stack. */
6261 else if ((strncasecmp (name
, "save_rp", 7) == 0))
6263 p
= input_line_pointer
;
6265 last_call_info
->ci_unwind
.descriptor
.save_rp
= 1;
6267 /* Likewise for SP. */
6268 else if ((strncasecmp (name
, "save_sp", 7) == 0))
6270 p
= input_line_pointer
;
6272 last_call_info
->ci_unwind
.descriptor
.save_sp
= 1;
6274 /* Is this an unwindable procedure. If so mark it so
6275 in the unwind descriptor. */
6276 else if ((strncasecmp (name
, "no_unwind", 9) == 0))
6278 p
= input_line_pointer
;
6280 last_call_info
->ci_unwind
.descriptor
.cannot_unwind
= 1;
6282 /* Is this an interrupt routine. If so mark it in the
6283 unwind descriptor. */
6284 else if ((strncasecmp (name
, "hpux_int", 7) == 0))
6286 p
= input_line_pointer
;
6288 last_call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 1;
6290 /* Is this a millicode routine. "millicode" isn't in my
6291 assembler manual, but my copy is old. The HP assembler
6292 accepts it, and there's a place in the unwind descriptor
6293 to drop the information, so we'll accept it too. */
6294 else if ((strncasecmp (name
, "millicode", 9) == 0))
6296 p
= input_line_pointer
;
6298 last_call_info
->ci_unwind
.descriptor
.millicode
= 1;
6302 as_bad (_("Invalid .CALLINFO argument: %s"), name
);
6303 *input_line_pointer
= c
;
6305 if (!is_end_of_statement ())
6306 input_line_pointer
++;
6309 demand_empty_rest_of_line ();
6312 #if !(defined (OBJ_ELF) && defined (TE_LINUX))
6313 /* Switch to the text space. Like s_text, but delete our
6314 label when finished. */
6317 int unused ATTRIBUTE_UNUSED
;
6320 current_space
= is_defined_space ("$TEXT$");
6322 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6326 pa_undefine_label ();
6329 /* Switch to the data space. As usual delete our label. */
6332 int unused ATTRIBUTE_UNUSED
;
6335 current_space
= is_defined_space ("$PRIVATE$");
6337 = pa_subsegment_to_subspace (current_space
->sd_seg
, 0);
6340 pa_undefine_label ();
6343 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
6344 the .comm pseudo-op has the following symtax:
6346 <label> .comm <length>
6348 where <label> is optional and is a symbol whose address will be the start of
6349 a block of memory <length> bytes long. <length> must be an absolute
6350 expression. <length> bytes will be allocated in the current space
6353 Also note the label may not even be on the same line as the .comm.
6355 This difference in syntax means the colon function will be called
6356 on the symbol before we arrive in pa_comm. colon will set a number
6357 of attributes of the symbol that need to be fixed here. In particular
6358 the value, section pointer, fragment pointer, flags, etc. What
6361 This also makes error detection all but impossible. */
6365 int unused ATTRIBUTE_UNUSED
;
6369 label_symbol_struct
*label_symbol
= pa_get_label ();
6372 symbol
= label_symbol
->lss_label
;
6377 size
= get_absolute_expression ();
6381 S_SET_VALUE (symbol
, size
);
6382 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6383 S_SET_EXTERNAL (symbol
);
6385 /* colon() has already set the frag to the current location in the
6386 current subspace; we need to reset the fragment to the zero address
6387 fragment. We also need to reset the segment pointer. */
6388 symbol_set_frag (symbol
, &zero_address_frag
);
6390 demand_empty_rest_of_line ();
6392 #endif /* !(defined (OBJ_ELF) && defined (TE_LINUX)) */
6394 /* Process a .END pseudo-op. */
6398 int unused ATTRIBUTE_UNUSED
;
6400 demand_empty_rest_of_line ();
6403 /* Process a .ENTER pseudo-op. This is not supported. */
6406 int unused ATTRIBUTE_UNUSED
;
6409 /* We must have a valid space and subspace. */
6410 pa_check_current_space_and_subspace ();
6413 as_bad (_("The .ENTER pseudo-op is not supported"));
6414 demand_empty_rest_of_line ();
6417 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
6421 int unused ATTRIBUTE_UNUSED
;
6424 /* We must have a valid space and subspace. */
6425 pa_check_current_space_and_subspace ();
6428 if (!within_procedure
)
6429 as_bad (_("Misplaced .entry. Ignored."));
6432 if (!callinfo_found
)
6433 as_bad (_("Missing .callinfo."));
6435 demand_empty_rest_of_line ();
6436 within_entry_exit
= TRUE
;
6439 /* SOM defers building of unwind descriptors until the link phase.
6440 The assembler is responsible for creating an R_ENTRY relocation
6441 to mark the beginning of a region and hold the unwind bits, and
6442 for creating an R_EXIT relocation to mark the end of the region.
6444 FIXME. ELF should be using the same conventions! The problem
6445 is an unwind requires too much relocation space. Hmmm. Maybe
6446 if we split the unwind bits up between the relocations which
6447 denote the entry and exit points. */
6448 if (last_call_info
->start_symbol
!= NULL
)
6453 where
= frag_more (0);
6454 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
6455 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6456 NULL
, (offsetT
) 0, NULL
,
6457 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
6462 /* Silly nonsense for pa_equ. The only half-sensible use for this is
6463 being able to subtract two register symbols that specify a range of
6464 registers, to get the size of the range. */
6465 static int fudge_reg_expressions
;
6468 hppa_force_reg_syms_absolute (resultP
, op
, rightP
)
6469 expressionS
*resultP
;
6470 operatorT op ATTRIBUTE_UNUSED
;
6471 expressionS
*rightP
;
6473 if (fudge_reg_expressions
6474 && rightP
->X_op
== O_register
6475 && resultP
->X_op
== O_register
)
6477 rightP
->X_op
= O_constant
;
6478 resultP
->X_op
= O_constant
;
6480 return 0; /* Continue normal expr handling. */
6483 /* Handle a .EQU pseudo-op. */
6489 label_symbol_struct
*label_symbol
= pa_get_label ();
6494 symbol
= label_symbol
->lss_label
;
6498 if (!pa_parse_number (&input_line_pointer
, 0))
6499 as_bad (_(".REG expression must be a register"));
6500 S_SET_VALUE (symbol
, pa_number
);
6501 S_SET_SEGMENT (symbol
, reg_section
);
6508 fudge_reg_expressions
= 1;
6509 seg
= expression (&exp
);
6510 fudge_reg_expressions
= 0;
6511 if (exp
.X_op
!= O_constant
6512 && exp
.X_op
!= O_register
)
6514 if (exp
.X_op
!= O_absent
)
6515 as_bad (_("bad or irreducible absolute expression; zero assumed"));
6516 exp
.X_add_number
= 0;
6517 seg
= absolute_section
;
6519 S_SET_VALUE (symbol
, (unsigned int) exp
.X_add_number
);
6520 S_SET_SEGMENT (symbol
, seg
);
6526 as_bad (_(".REG must use a label"));
6528 as_bad (_(".EQU must use a label"));
6531 pa_undefine_label ();
6532 demand_empty_rest_of_line ();
6535 /* Helper function. Does processing for the end of a function. This
6536 usually involves creating some relocations or building special
6537 symbols to mark the end of the function. */
6544 where
= frag_more (0);
6547 /* Mark the end of the function, stuff away the location of the frag
6548 for the end of the function, and finally call pa_build_unwind_subspace
6549 to add an entry in the unwind table. */
6550 hppa_elf_mark_end_of_function ();
6551 pa_build_unwind_subspace (last_call_info
);
6553 /* SOM defers building of unwind descriptors until the link phase.
6554 The assembler is responsible for creating an R_ENTRY relocation
6555 to mark the beginning of a region and hold the unwind bits, and
6556 for creating an R_EXIT relocation to mark the end of the region.
6558 FIXME. ELF should be using the same conventions! The problem
6559 is an unwind requires too much relocation space. Hmmm. Maybe
6560 if we split the unwind bits up between the relocations which
6561 denote the entry and exit points. */
6562 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
6564 NULL
, 0, R_HPPA_EXIT
, e_fsel
, 0, 0,
6565 UNWIND_HIGH32 (&last_call_info
->ci_unwind
.descriptor
));
6569 /* Process a .EXIT pseudo-op. */
6573 int unused ATTRIBUTE_UNUSED
;
6576 /* We must have a valid space and subspace. */
6577 pa_check_current_space_and_subspace ();
6580 if (!within_procedure
)
6581 as_bad (_(".EXIT must appear within a procedure"));
6584 if (!callinfo_found
)
6585 as_bad (_("Missing .callinfo"));
6588 if (!within_entry_exit
)
6589 as_bad (_("No .ENTRY for this .EXIT"));
6592 within_entry_exit
= FALSE
;
6597 demand_empty_rest_of_line ();
6600 /* Process a .EXPORT directive. This makes functions external
6601 and provides information such as argument relocation entries
6606 int unused ATTRIBUTE_UNUSED
;
6611 name
= input_line_pointer
;
6612 c
= get_symbol_end ();
6613 /* Make sure the given symbol exists. */
6614 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6616 as_bad (_("Cannot define export symbol: %s\n"), name
);
6617 p
= input_line_pointer
;
6619 input_line_pointer
++;
6623 /* OK. Set the external bits and process argument relocations.
6624 For the HP, weak and global are not mutually exclusive.
6625 S_SET_EXTERNAL will not set BSF_GLOBAL if WEAK is set.
6626 Call S_SET_EXTERNAL to get the other processing. Manually
6627 set BSF_GLOBAL when we get back. */
6628 S_SET_EXTERNAL (symbol
);
6629 symbol_get_bfdsym (symbol
)->flags
|= BSF_GLOBAL
;
6630 p
= input_line_pointer
;
6632 if (!is_end_of_statement ())
6634 input_line_pointer
++;
6635 pa_type_args (symbol
, 1);
6639 demand_empty_rest_of_line ();
6642 /* Helper function to process arguments to a .EXPORT pseudo-op. */
6645 pa_type_args (symbolP
, is_export
)
6650 unsigned int temp
, arg_reloc
;
6651 pa_symbol_type type
= SYMBOL_TYPE_UNKNOWN
;
6652 asymbol
*bfdsym
= symbol_get_bfdsym (symbolP
);
6654 if (strncasecmp (input_line_pointer
, "absolute", 8) == 0)
6657 input_line_pointer
+= 8;
6658 bfdsym
->flags
&= ~BSF_FUNCTION
;
6659 S_SET_SEGMENT (symbolP
, bfd_abs_section_ptr
);
6660 type
= SYMBOL_TYPE_ABSOLUTE
;
6662 else if (strncasecmp (input_line_pointer
, "code", 4) == 0)
6664 input_line_pointer
+= 4;
6665 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
6666 instead one should be IMPORTing/EXPORTing ENTRY types.
6668 Complain if one tries to EXPORT a CODE type since that's never
6669 done. Both GCC and HP C still try to IMPORT CODE types, so
6670 silently fix them to be ENTRY types. */
6671 if (S_IS_FUNCTION (symbolP
))
6674 as_tsktsk (_("Using ENTRY rather than CODE in export directive for %s"),
6675 S_GET_NAME (symbolP
));
6677 bfdsym
->flags
|= BSF_FUNCTION
;
6678 type
= SYMBOL_TYPE_ENTRY
;
6682 bfdsym
->flags
&= ~BSF_FUNCTION
;
6683 type
= SYMBOL_TYPE_CODE
;
6686 else if (strncasecmp (input_line_pointer
, "data", 4) == 0)
6688 input_line_pointer
+= 4;
6689 bfdsym
->flags
&= ~BSF_FUNCTION
;
6690 bfdsym
->flags
|= BSF_OBJECT
;
6691 type
= SYMBOL_TYPE_DATA
;
6693 else if ((strncasecmp (input_line_pointer
, "entry", 5) == 0))
6695 input_line_pointer
+= 5;
6696 bfdsym
->flags
|= BSF_FUNCTION
;
6697 type
= SYMBOL_TYPE_ENTRY
;
6699 else if (strncasecmp (input_line_pointer
, "millicode", 9) == 0)
6701 input_line_pointer
+= 9;
6702 bfdsym
->flags
|= BSF_FUNCTION
;
6705 elf_symbol_type
*elfsym
= (elf_symbol_type
*) bfdsym
;
6706 elfsym
->internal_elf_sym
.st_info
=
6707 ELF_ST_INFO (ELF_ST_BIND (elfsym
->internal_elf_sym
.st_info
),
6711 type
= SYMBOL_TYPE_MILLICODE
;
6713 else if (strncasecmp (input_line_pointer
, "plabel", 6) == 0)
6715 input_line_pointer
+= 6;
6716 bfdsym
->flags
&= ~BSF_FUNCTION
;
6717 type
= SYMBOL_TYPE_PLABEL
;
6719 else if (strncasecmp (input_line_pointer
, "pri_prog", 8) == 0)
6721 input_line_pointer
+= 8;
6722 bfdsym
->flags
|= BSF_FUNCTION
;
6723 type
= SYMBOL_TYPE_PRI_PROG
;
6725 else if (strncasecmp (input_line_pointer
, "sec_prog", 8) == 0)
6727 input_line_pointer
+= 8;
6728 bfdsym
->flags
|= BSF_FUNCTION
;
6729 type
= SYMBOL_TYPE_SEC_PROG
;
6732 /* SOM requires much more information about symbol types
6733 than BFD understands. This is how we get this information
6734 to the SOM BFD backend. */
6735 #ifdef obj_set_symbol_type
6736 obj_set_symbol_type (bfdsym
, (int) type
);
6739 /* Now that the type of the exported symbol has been handled,
6740 handle any argument relocation information. */
6741 while (!is_end_of_statement ())
6743 if (*input_line_pointer
== ',')
6744 input_line_pointer
++;
6745 name
= input_line_pointer
;
6746 c
= get_symbol_end ();
6747 /* Argument sources. */
6748 if ((strncasecmp (name
, "argw", 4) == 0))
6750 p
= input_line_pointer
;
6752 input_line_pointer
++;
6753 temp
= atoi (name
+ 4);
6754 name
= input_line_pointer
;
6755 c
= get_symbol_end ();
6756 arg_reloc
= pa_align_arg_reloc (temp
, pa_build_arg_reloc (name
));
6757 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6758 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6760 *input_line_pointer
= c
;
6762 /* The return value. */
6763 else if ((strncasecmp (name
, "rtnval", 6)) == 0)
6765 p
= input_line_pointer
;
6767 input_line_pointer
++;
6768 name
= input_line_pointer
;
6769 c
= get_symbol_end ();
6770 arg_reloc
= pa_build_arg_reloc (name
);
6771 #if defined (OBJ_SOM) || defined (ELF_ARG_RELOC)
6772 symbol_arg_reloc_info (symbolP
) |= arg_reloc
;
6774 *input_line_pointer
= c
;
6776 /* Privelege level. */
6777 else if ((strncasecmp (name
, "priv_lev", 8)) == 0)
6779 p
= input_line_pointer
;
6781 input_line_pointer
++;
6782 temp
= atoi (input_line_pointer
);
6784 ((obj_symbol_type
*) bfdsym
)->tc_data
.ap
.hppa_priv_level
= temp
;
6786 c
= get_symbol_end ();
6787 *input_line_pointer
= c
;
6791 as_bad (_("Undefined .EXPORT/.IMPORT argument (ignored): %s"), name
);
6792 p
= input_line_pointer
;
6795 if (!is_end_of_statement ())
6796 input_line_pointer
++;
6800 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
6801 assembly file must either be defined in the assembly file, or
6802 explicitly IMPORTED from another. */
6806 int unused ATTRIBUTE_UNUSED
;
6811 name
= input_line_pointer
;
6812 c
= get_symbol_end ();
6814 symbol
= symbol_find (name
);
6815 /* Ugh. We might be importing a symbol defined earlier in the file,
6816 in which case all the code below will really screw things up
6817 (set the wrong segment, symbol flags & type, etc). */
6818 if (symbol
== NULL
|| !S_IS_DEFINED (symbol
))
6820 symbol
= symbol_find_or_make (name
);
6821 p
= input_line_pointer
;
6824 if (!is_end_of_statement ())
6826 input_line_pointer
++;
6827 pa_type_args (symbol
, 0);
6831 /* Sigh. To be compatable with the HP assembler and to help
6832 poorly written assembly code, we assign a type based on
6833 the current segment. Note only BSF_FUNCTION really
6834 matters, we do not need to set the full SYMBOL_TYPE_* info. */
6835 if (now_seg
== text_section
)
6836 symbol_get_bfdsym (symbol
)->flags
|= BSF_FUNCTION
;
6838 /* If the section is undefined, then the symbol is undefined
6839 Since this is an import, leave the section undefined. */
6840 S_SET_SEGMENT (symbol
, bfd_und_section_ptr
);
6845 /* The symbol was already defined. Just eat everything up to
6846 the end of the current statement. */
6847 while (!is_end_of_statement ())
6848 input_line_pointer
++;
6851 demand_empty_rest_of_line ();
6854 /* Handle a .LABEL pseudo-op. */
6858 int unused ATTRIBUTE_UNUSED
;
6862 name
= input_line_pointer
;
6863 c
= get_symbol_end ();
6865 if (strlen (name
) > 0)
6868 p
= input_line_pointer
;
6873 as_warn (_("Missing label name on .LABEL"));
6876 if (!is_end_of_statement ())
6878 as_warn (_("extra .LABEL arguments ignored."));
6879 ignore_rest_of_line ();
6881 demand_empty_rest_of_line ();
6884 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
6888 int unused ATTRIBUTE_UNUSED
;
6891 /* We must have a valid space and subspace. */
6892 pa_check_current_space_and_subspace ();
6895 as_bad (_("The .LEAVE pseudo-op is not supported"));
6896 demand_empty_rest_of_line ();
6899 /* Handle a .LEVEL pseudo-op. */
6903 int unused ATTRIBUTE_UNUSED
;
6907 level
= input_line_pointer
;
6908 if (strncmp (level
, "1.0", 3) == 0)
6910 input_line_pointer
+= 3;
6911 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 10))
6912 as_warn (_("could not set architecture and machine"));
6914 else if (strncmp (level
, "1.1", 3) == 0)
6916 input_line_pointer
+= 3;
6917 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 11))
6918 as_warn (_("could not set architecture and machine"));
6920 else if (strncmp (level
, "2.0w", 4) == 0)
6922 input_line_pointer
+= 4;
6923 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 25))
6924 as_warn (_("could not set architecture and machine"));
6926 else if (strncmp (level
, "2.0", 3) == 0)
6928 input_line_pointer
+= 3;
6929 if (!bfd_set_arch_mach (stdoutput
, bfd_arch_hppa
, 20))
6930 as_warn (_("could not set architecture and machine"));
6934 as_bad (_("Unrecognized .LEVEL argument\n"));
6935 ignore_rest_of_line ();
6937 demand_empty_rest_of_line ();
6940 /* Handle a .ORIGIN pseudo-op. */
6944 int unused ATTRIBUTE_UNUSED
;
6947 /* We must have a valid space and subspace. */
6948 pa_check_current_space_and_subspace ();
6952 pa_undefine_label ();
6955 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
6956 is for static functions. FIXME. Should share more code with .EXPORT. */
6960 int unused ATTRIBUTE_UNUSED
;
6965 name
= input_line_pointer
;
6966 c
= get_symbol_end ();
6968 if ((symbol
= symbol_find_or_make (name
)) == NULL
)
6970 as_bad (_("Cannot define static symbol: %s\n"), name
);
6971 p
= input_line_pointer
;
6973 input_line_pointer
++;
6977 S_CLEAR_EXTERNAL (symbol
);
6978 p
= input_line_pointer
;
6980 if (!is_end_of_statement ())
6982 input_line_pointer
++;
6983 pa_type_args (symbol
, 0);
6987 demand_empty_rest_of_line ();
6990 /* Handle a .PROC pseudo-op. It is used to mark the beginning
6991 of a procedure from a syntactical point of view. */
6995 int unused ATTRIBUTE_UNUSED
;
6997 struct call_info
*call_info
;
7000 /* We must have a valid space and subspace. */
7001 pa_check_current_space_and_subspace ();
7004 if (within_procedure
)
7005 as_fatal (_("Nested procedures"));
7007 /* Reset global variables for new procedure. */
7008 callinfo_found
= FALSE
;
7009 within_procedure
= TRUE
;
7011 /* Create another call_info structure. */
7012 call_info
= (struct call_info
*) xmalloc (sizeof (struct call_info
));
7015 as_fatal (_("Cannot allocate unwind descriptor\n"));
7017 memset (call_info
, 0, sizeof (struct call_info
));
7019 call_info
->ci_next
= NULL
;
7021 if (call_info_root
== NULL
)
7023 call_info_root
= call_info
;
7024 last_call_info
= call_info
;
7028 last_call_info
->ci_next
= call_info
;
7029 last_call_info
= call_info
;
7032 /* set up defaults on call_info structure */
7034 call_info
->ci_unwind
.descriptor
.cannot_unwind
= 0;
7035 call_info
->ci_unwind
.descriptor
.region_desc
= 1;
7036 call_info
->ci_unwind
.descriptor
.hpux_interrupt_marker
= 0;
7038 /* If we got a .PROC pseudo-op, we know that the function is defined
7039 locally. Make sure it gets into the symbol table. */
7041 label_symbol_struct
*label_symbol
= pa_get_label ();
7045 if (label_symbol
->lss_label
)
7047 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7048 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
|= BSF_FUNCTION
;
7051 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7054 last_call_info
->start_symbol
= NULL
;
7057 demand_empty_rest_of_line ();
7060 /* Process the syntatical end of a procedure. Make sure all the
7061 appropriate pseudo-ops were found within the procedure. */
7065 int unused ATTRIBUTE_UNUSED
;
7069 /* We must have a valid space and subspace. */
7070 pa_check_current_space_and_subspace ();
7073 /* If we are within a procedure definition, make sure we've
7074 defined a label for the procedure; handle case where the
7075 label was defined after the .PROC directive.
7077 Note there's not need to diddle with the segment or fragment
7078 for the label symbol in this case. We have already switched
7079 into the new $CODE$ subspace at this point. */
7080 if (within_procedure
&& last_call_info
->start_symbol
== NULL
)
7082 label_symbol_struct
*label_symbol
= pa_get_label ();
7086 if (label_symbol
->lss_label
)
7088 last_call_info
->start_symbol
= label_symbol
->lss_label
;
7089 symbol_get_bfdsym (label_symbol
->lss_label
)->flags
7092 /* Also handle allocation of a fixup to hold the unwind
7093 information when the label appears after the proc/procend. */
7094 if (within_entry_exit
)
7099 where
= frag_more (0);
7100 u
= UNWIND_LOW32 (&last_call_info
->ci_unwind
.descriptor
);
7101 fix_new_hppa (frag_now
, where
- frag_now
->fr_literal
, 0,
7102 NULL
, (offsetT
) 0, NULL
,
7103 0, R_HPPA_ENTRY
, e_fsel
, 0, 0, u
);
7108 as_bad (_("Missing function name for .PROC (corrupted label chain)"));
7111 as_bad (_("Missing function name for .PROC"));
7114 if (!within_procedure
)
7115 as_bad (_("misplaced .procend"));
7117 if (!callinfo_found
)
7118 as_bad (_("Missing .callinfo for this procedure"));
7120 if (within_entry_exit
)
7121 as_bad (_("Missing .EXIT for a .ENTRY"));
7124 /* ELF needs to mark the end of each function so that it can compute
7125 the size of the function (apparently its needed in the symbol table). */
7126 hppa_elf_mark_end_of_function ();
7129 within_procedure
= FALSE
;
7130 demand_empty_rest_of_line ();
7131 pa_undefine_label ();
7135 /* If VALUE is an exact power of two between zero and 2^31, then
7136 return log2 (VALUE). Else return -1. */
7144 while ((1 << shift
) != value
&& shift
< 32)
7153 /* Check to make sure we have a valid space and subspace. */
7156 pa_check_current_space_and_subspace ()
7158 if (current_space
== NULL
)
7159 as_fatal (_("Not in a space.\n"));
7161 if (current_subspace
== NULL
)
7162 as_fatal (_("Not in a subspace.\n"));
7165 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
7166 then create a new space entry to hold the information specified
7167 by the parameters to the .SPACE directive. */
7169 static sd_chain_struct
*
7170 pa_parse_space_stmt (space_name
, create_flag
)
7174 char *name
, *ptemp
, c
;
7175 char loadable
, defined
, private, sort
;
7177 asection
*seg
= NULL
;
7178 sd_chain_struct
*space
;
7180 /* load default values */
7186 if (strcmp (space_name
, "$TEXT$") == 0)
7188 seg
= pa_def_spaces
[0].segment
;
7189 defined
= pa_def_spaces
[0].defined
;
7190 private = pa_def_spaces
[0].private;
7191 sort
= pa_def_spaces
[0].sort
;
7192 spnum
= pa_def_spaces
[0].spnum
;
7194 else if (strcmp (space_name
, "$PRIVATE$") == 0)
7196 seg
= pa_def_spaces
[1].segment
;
7197 defined
= pa_def_spaces
[1].defined
;
7198 private = pa_def_spaces
[1].private;
7199 sort
= pa_def_spaces
[1].sort
;
7200 spnum
= pa_def_spaces
[1].spnum
;
7203 if (!is_end_of_statement ())
7205 print_errors
= FALSE
;
7206 ptemp
= input_line_pointer
+ 1;
7207 /* First see if the space was specified as a number rather than
7208 as a name. According to the PA assembly manual the rest of
7209 the line should be ignored. */
7211 pa_parse_number (&ptemp
, 0);
7215 input_line_pointer
= ptemp
;
7219 while (!is_end_of_statement ())
7221 input_line_pointer
++;
7222 name
= input_line_pointer
;
7223 c
= get_symbol_end ();
7224 if ((strncasecmp (name
, "spnum", 5) == 0))
7226 *input_line_pointer
= c
;
7227 input_line_pointer
++;
7228 spnum
= get_absolute_expression ();
7230 else if ((strncasecmp (name
, "sort", 4) == 0))
7232 *input_line_pointer
= c
;
7233 input_line_pointer
++;
7234 sort
= get_absolute_expression ();
7236 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7238 *input_line_pointer
= c
;
7241 else if ((strncasecmp (name
, "notdefined", 10) == 0))
7243 *input_line_pointer
= c
;
7246 else if ((strncasecmp (name
, "private", 7) == 0))
7248 *input_line_pointer
= c
;
7253 as_bad (_("Invalid .SPACE argument"));
7254 *input_line_pointer
= c
;
7255 if (!is_end_of_statement ())
7256 input_line_pointer
++;
7260 print_errors
= TRUE
;
7263 if (create_flag
&& seg
== NULL
)
7264 seg
= subseg_new (space_name
, 0);
7266 /* If create_flag is nonzero, then create the new space with
7267 the attributes computed above. Else set the values in
7268 an already existing space -- this can only happen for
7269 the first occurence of a built-in space. */
7271 space
= create_new_space (space_name
, spnum
, loadable
, defined
,
7272 private, sort
, seg
, 1);
7275 space
= is_defined_space (space_name
);
7276 SPACE_SPNUM (space
) = spnum
;
7277 SPACE_DEFINED (space
) = defined
& 1;
7278 SPACE_USER_DEFINED (space
) = 1;
7281 #ifdef obj_set_section_attributes
7282 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7288 /* Handle a .SPACE pseudo-op; this switches the current space to the
7289 given space, creating the new space if necessary. */
7293 int unused ATTRIBUTE_UNUSED
;
7295 char *name
, c
, *space_name
, *save_s
;
7296 sd_chain_struct
*sd_chain
;
7298 if (within_procedure
)
7300 as_bad (_("Can\'t change spaces within a procedure definition. Ignored"));
7301 ignore_rest_of_line ();
7305 /* Check for some of the predefined spaces. FIXME: most of the code
7306 below is repeated several times, can we extract the common parts
7307 and place them into a subroutine or something similar? */
7308 /* FIXME Is this (and the next IF stmt) really right?
7309 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
7310 if (strncmp (input_line_pointer
, "$TEXT$", 6) == 0)
7312 input_line_pointer
+= 6;
7313 sd_chain
= is_defined_space ("$TEXT$");
7314 if (sd_chain
== NULL
)
7315 sd_chain
= pa_parse_space_stmt ("$TEXT$", 1);
7316 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7317 sd_chain
= pa_parse_space_stmt ("$TEXT$", 0);
7319 current_space
= sd_chain
;
7320 subseg_set (text_section
, sd_chain
->sd_last_subseg
);
7322 = pa_subsegment_to_subspace (text_section
,
7323 sd_chain
->sd_last_subseg
);
7324 demand_empty_rest_of_line ();
7327 if (strncmp (input_line_pointer
, "$PRIVATE$", 9) == 0)
7329 input_line_pointer
+= 9;
7330 sd_chain
= is_defined_space ("$PRIVATE$");
7331 if (sd_chain
== NULL
)
7332 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 1);
7333 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7334 sd_chain
= pa_parse_space_stmt ("$PRIVATE$", 0);
7336 current_space
= sd_chain
;
7337 subseg_set (data_section
, sd_chain
->sd_last_subseg
);
7339 = pa_subsegment_to_subspace (data_section
,
7340 sd_chain
->sd_last_subseg
);
7341 demand_empty_rest_of_line ();
7344 if (!strncasecmp (input_line_pointer
,
7345 GDB_DEBUG_SPACE_NAME
,
7346 strlen (GDB_DEBUG_SPACE_NAME
)))
7348 input_line_pointer
+= strlen (GDB_DEBUG_SPACE_NAME
);
7349 sd_chain
= is_defined_space (GDB_DEBUG_SPACE_NAME
);
7350 if (sd_chain
== NULL
)
7351 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 1);
7352 else if (SPACE_USER_DEFINED (sd_chain
) == 0)
7353 sd_chain
= pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME
, 0);
7355 current_space
= sd_chain
;
7358 asection
*gdb_section
7359 = bfd_make_section_old_way (stdoutput
, GDB_DEBUG_SPACE_NAME
);
7361 subseg_set (gdb_section
, sd_chain
->sd_last_subseg
);
7363 = pa_subsegment_to_subspace (gdb_section
,
7364 sd_chain
->sd_last_subseg
);
7366 demand_empty_rest_of_line ();
7370 /* It could be a space specified by number. */
7372 save_s
= input_line_pointer
;
7374 pa_parse_number (&input_line_pointer
, 0);
7377 if ((sd_chain
= pa_find_space_by_number (pa_number
)))
7379 current_space
= sd_chain
;
7381 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7383 = pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7384 sd_chain
->sd_last_subseg
);
7385 demand_empty_rest_of_line ();
7390 /* Not a number, attempt to create a new space. */
7392 input_line_pointer
= save_s
;
7393 name
= input_line_pointer
;
7394 c
= get_symbol_end ();
7395 space_name
= xmalloc (strlen (name
) + 1);
7396 strcpy (space_name
, name
);
7397 *input_line_pointer
= c
;
7399 sd_chain
= pa_parse_space_stmt (space_name
, 1);
7400 current_space
= sd_chain
;
7402 subseg_set (sd_chain
->sd_seg
, sd_chain
->sd_last_subseg
);
7403 current_subspace
= pa_subsegment_to_subspace (sd_chain
->sd_seg
,
7404 sd_chain
->sd_last_subseg
);
7405 demand_empty_rest_of_line ();
7409 /* Switch to a new space. (I think). FIXME. */
7413 int unused ATTRIBUTE_UNUSED
;
7418 sd_chain_struct
*space
;
7420 name
= input_line_pointer
;
7421 c
= get_symbol_end ();
7422 space
= is_defined_space (name
);
7426 md_number_to_chars (p
, SPACE_SPNUM (space
), 4);
7429 as_warn (_("Undefined space: '%s' Assuming space number = 0."), name
);
7431 *input_line_pointer
= c
;
7432 demand_empty_rest_of_line ();
7435 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
7436 given subspace, creating the new subspace if necessary.
7438 FIXME. Should mirror pa_space more closely, in particular how
7439 they're broken up into subroutines. */
7442 pa_subspace (create_new
)
7445 char *name
, *ss_name
, c
;
7446 char loadable
, code_only
, common
, dup_common
, zero
, sort
;
7447 int i
, access
, space_index
, alignment
, quadrant
, applicable
, flags
;
7448 sd_chain_struct
*space
;
7449 ssd_chain_struct
*ssd
;
7452 if (current_space
== NULL
)
7453 as_fatal (_("Must be in a space before changing or declaring subspaces.\n"));
7455 if (within_procedure
)
7457 as_bad (_("Can\'t change subspaces within a procedure definition. Ignored"));
7458 ignore_rest_of_line ();
7462 name
= input_line_pointer
;
7463 c
= get_symbol_end ();
7464 ss_name
= xmalloc (strlen (name
) + 1);
7465 strcpy (ss_name
, name
);
7466 *input_line_pointer
= c
;
7468 /* Load default values. */
7480 space
= current_space
;
7484 ssd
= is_defined_subspace (ss_name
);
7485 /* Allow user to override the builtin attributes of subspaces. But
7486 only allow the attributes to be changed once! */
7487 if (ssd
&& SUBSPACE_DEFINED (ssd
))
7489 subseg_set (ssd
->ssd_seg
, ssd
->ssd_subseg
);
7490 current_subspace
= ssd
;
7491 if (!is_end_of_statement ())
7492 as_warn (_("Parameters of an existing subspace can\'t be modified"));
7493 demand_empty_rest_of_line ();
7498 /* A new subspace. Load default values if it matches one of
7499 the builtin subspaces. */
7501 while (pa_def_subspaces
[i
].name
)
7503 if (strcasecmp (pa_def_subspaces
[i
].name
, ss_name
) == 0)
7505 loadable
= pa_def_subspaces
[i
].loadable
;
7506 common
= pa_def_subspaces
[i
].common
;
7507 dup_common
= pa_def_subspaces
[i
].dup_common
;
7508 code_only
= pa_def_subspaces
[i
].code_only
;
7509 zero
= pa_def_subspaces
[i
].zero
;
7510 space_index
= pa_def_subspaces
[i
].space_index
;
7511 alignment
= pa_def_subspaces
[i
].alignment
;
7512 quadrant
= pa_def_subspaces
[i
].quadrant
;
7513 access
= pa_def_subspaces
[i
].access
;
7514 sort
= pa_def_subspaces
[i
].sort
;
7521 /* We should be working with a new subspace now. Fill in
7522 any information as specified by the user. */
7523 if (!is_end_of_statement ())
7525 input_line_pointer
++;
7526 while (!is_end_of_statement ())
7528 name
= input_line_pointer
;
7529 c
= get_symbol_end ();
7530 if ((strncasecmp (name
, "quad", 4) == 0))
7532 *input_line_pointer
= c
;
7533 input_line_pointer
++;
7534 quadrant
= get_absolute_expression ();
7536 else if ((strncasecmp (name
, "align", 5) == 0))
7538 *input_line_pointer
= c
;
7539 input_line_pointer
++;
7540 alignment
= get_absolute_expression ();
7541 if (log2 (alignment
) == -1)
7543 as_bad (_("Alignment must be a power of 2"));
7547 else if ((strncasecmp (name
, "access", 6) == 0))
7549 *input_line_pointer
= c
;
7550 input_line_pointer
++;
7551 access
= get_absolute_expression ();
7553 else if ((strncasecmp (name
, "sort", 4) == 0))
7555 *input_line_pointer
= c
;
7556 input_line_pointer
++;
7557 sort
= get_absolute_expression ();
7559 else if ((strncasecmp (name
, "code_only", 9) == 0))
7561 *input_line_pointer
= c
;
7564 else if ((strncasecmp (name
, "unloadable", 10) == 0))
7566 *input_line_pointer
= c
;
7569 else if ((strncasecmp (name
, "common", 6) == 0))
7571 *input_line_pointer
= c
;
7574 else if ((strncasecmp (name
, "dup_comm", 8) == 0))
7576 *input_line_pointer
= c
;
7579 else if ((strncasecmp (name
, "zero", 4) == 0))
7581 *input_line_pointer
= c
;
7584 else if ((strncasecmp (name
, "first", 5) == 0))
7585 as_bad (_("FIRST not supported as a .SUBSPACE argument"));
7587 as_bad (_("Invalid .SUBSPACE argument"));
7588 if (!is_end_of_statement ())
7589 input_line_pointer
++;
7593 /* Compute a reasonable set of BFD flags based on the information
7594 in the .subspace directive. */
7595 applicable
= bfd_applicable_section_flags (stdoutput
);
7598 flags
|= (SEC_ALLOC
| SEC_LOAD
);
7601 if (common
|| dup_common
)
7602 flags
|= SEC_IS_COMMON
;
7604 flags
|= SEC_RELOC
| SEC_HAS_CONTENTS
;
7606 /* This is a zero-filled subspace (eg BSS). */
7608 flags
&= ~(SEC_LOAD
| SEC_HAS_CONTENTS
);
7610 applicable
&= flags
;
7612 /* If this is an existing subspace, then we want to use the
7613 segment already associated with the subspace.
7615 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
7616 lots of sections. It might be a problem in the PA ELF
7617 code, I do not know yet. For now avoid creating anything
7618 but the "standard" sections for ELF. */
7620 section
= subseg_force_new (ss_name
, 0);
7622 section
= ssd
->ssd_seg
;
7624 section
= subseg_new (ss_name
, 0);
7627 seg_info (section
)->bss
= 1;
7629 /* Now set the flags. */
7630 bfd_set_section_flags (stdoutput
, section
, applicable
);
7632 /* Record any alignment request for this section. */
7633 record_alignment (section
, log2 (alignment
));
7635 /* Set the starting offset for this section. */
7636 bfd_set_section_vma (stdoutput
, section
,
7637 pa_subspace_start (space
, quadrant
));
7639 /* Now that all the flags are set, update an existing subspace,
7640 or create a new one. */
7643 current_subspace
= update_subspace (space
, ss_name
, loadable
,
7644 code_only
, common
, dup_common
,
7645 sort
, zero
, access
, space_index
,
7646 alignment
, quadrant
,
7649 current_subspace
= create_new_subspace (space
, ss_name
, loadable
,
7651 dup_common
, zero
, sort
,
7652 access
, space_index
,
7653 alignment
, quadrant
, section
);
7655 demand_empty_rest_of_line ();
7656 current_subspace
->ssd_seg
= section
;
7657 subseg_set (current_subspace
->ssd_seg
, current_subspace
->ssd_subseg
);
7659 SUBSPACE_DEFINED (current_subspace
) = 1;
7662 /* Create default space and subspace dictionaries. */
7669 space_dict_root
= NULL
;
7670 space_dict_last
= NULL
;
7673 while (pa_def_spaces
[i
].name
)
7677 /* Pick the right name to use for the new section. */
7678 name
= pa_def_spaces
[i
].name
;
7680 pa_def_spaces
[i
].segment
= subseg_new (name
, 0);
7681 create_new_space (pa_def_spaces
[i
].name
, pa_def_spaces
[i
].spnum
,
7682 pa_def_spaces
[i
].loadable
, pa_def_spaces
[i
].defined
,
7683 pa_def_spaces
[i
].private, pa_def_spaces
[i
].sort
,
7684 pa_def_spaces
[i
].segment
, 0);
7689 while (pa_def_subspaces
[i
].name
)
7692 int applicable
, subsegment
;
7693 asection
*segment
= NULL
;
7694 sd_chain_struct
*space
;
7696 /* Pick the right name for the new section and pick the right
7697 subsegment number. */
7698 name
= pa_def_subspaces
[i
].name
;
7701 /* Create the new section. */
7702 segment
= subseg_new (name
, subsegment
);
7704 /* For SOM we want to replace the standard .text, .data, and .bss
7705 sections with our own. We also want to set BFD flags for
7706 all the built-in subspaces. */
7707 if (!strcmp (pa_def_subspaces
[i
].name
, "$CODE$"))
7709 text_section
= segment
;
7710 applicable
= bfd_applicable_section_flags (stdoutput
);
7711 bfd_set_section_flags (stdoutput
, segment
,
7712 applicable
& (SEC_ALLOC
| SEC_LOAD
7713 | SEC_RELOC
| SEC_CODE
7715 | SEC_HAS_CONTENTS
));
7717 else if (!strcmp (pa_def_subspaces
[i
].name
, "$DATA$"))
7719 data_section
= segment
;
7720 applicable
= bfd_applicable_section_flags (stdoutput
);
7721 bfd_set_section_flags (stdoutput
, segment
,
7722 applicable
& (SEC_ALLOC
| SEC_LOAD
7724 | SEC_HAS_CONTENTS
));
7727 else if (!strcmp (pa_def_subspaces
[i
].name
, "$BSS$"))
7729 bss_section
= segment
;
7730 applicable
= bfd_applicable_section_flags (stdoutput
);
7731 bfd_set_section_flags (stdoutput
, segment
,
7732 applicable
& SEC_ALLOC
);
7734 else if (!strcmp (pa_def_subspaces
[i
].name
, "$LIT$"))
7736 applicable
= bfd_applicable_section_flags (stdoutput
);
7737 bfd_set_section_flags (stdoutput
, segment
,
7738 applicable
& (SEC_ALLOC
| SEC_LOAD
7741 | SEC_HAS_CONTENTS
));
7743 else if (!strcmp (pa_def_subspaces
[i
].name
, "$MILLICODE$"))
7745 applicable
= bfd_applicable_section_flags (stdoutput
);
7746 bfd_set_section_flags (stdoutput
, segment
,
7747 applicable
& (SEC_ALLOC
| SEC_LOAD
7750 | SEC_HAS_CONTENTS
));
7752 else if (!strcmp (pa_def_subspaces
[i
].name
, "$UNWIND$"))
7754 applicable
= bfd_applicable_section_flags (stdoutput
);
7755 bfd_set_section_flags (stdoutput
, segment
,
7756 applicable
& (SEC_ALLOC
| SEC_LOAD
7759 | SEC_HAS_CONTENTS
));
7762 /* Find the space associated with this subspace. */
7763 space
= pa_segment_to_space (pa_def_spaces
[pa_def_subspaces
[i
].
7764 def_space_index
].segment
);
7767 as_fatal (_("Internal error: Unable to find containing space for %s."),
7768 pa_def_subspaces
[i
].name
);
7771 create_new_subspace (space
, name
,
7772 pa_def_subspaces
[i
].loadable
,
7773 pa_def_subspaces
[i
].code_only
,
7774 pa_def_subspaces
[i
].common
,
7775 pa_def_subspaces
[i
].dup_common
,
7776 pa_def_subspaces
[i
].zero
,
7777 pa_def_subspaces
[i
].sort
,
7778 pa_def_subspaces
[i
].access
,
7779 pa_def_subspaces
[i
].space_index
,
7780 pa_def_subspaces
[i
].alignment
,
7781 pa_def_subspaces
[i
].quadrant
,
7787 /* Create a new space NAME, with the appropriate flags as defined
7788 by the given parameters. */
7790 static sd_chain_struct
*
7791 create_new_space (name
, spnum
, loadable
, defined
, private,
7792 sort
, seg
, user_defined
)
7802 sd_chain_struct
*chain_entry
;
7804 chain_entry
= (sd_chain_struct
*) xmalloc (sizeof (sd_chain_struct
));
7806 as_fatal (_("Out of memory: could not allocate new space chain entry: %s\n"),
7809 SPACE_NAME (chain_entry
) = (char *) xmalloc (strlen (name
) + 1);
7810 strcpy (SPACE_NAME (chain_entry
), name
);
7811 SPACE_DEFINED (chain_entry
) = defined
;
7812 SPACE_USER_DEFINED (chain_entry
) = user_defined
;
7813 SPACE_SPNUM (chain_entry
) = spnum
;
7815 chain_entry
->sd_seg
= seg
;
7816 chain_entry
->sd_last_subseg
= -1;
7817 chain_entry
->sd_subspaces
= NULL
;
7818 chain_entry
->sd_next
= NULL
;
7820 /* Find spot for the new space based on its sort key. */
7821 if (!space_dict_last
)
7822 space_dict_last
= chain_entry
;
7824 if (space_dict_root
== NULL
)
7825 space_dict_root
= chain_entry
;
7828 sd_chain_struct
*chain_pointer
;
7829 sd_chain_struct
*prev_chain_pointer
;
7831 chain_pointer
= space_dict_root
;
7832 prev_chain_pointer
= NULL
;
7834 while (chain_pointer
)
7836 prev_chain_pointer
= chain_pointer
;
7837 chain_pointer
= chain_pointer
->sd_next
;
7840 /* At this point we've found the correct place to add the new
7841 entry. So add it and update the linked lists as appropriate. */
7842 if (prev_chain_pointer
)
7844 chain_entry
->sd_next
= chain_pointer
;
7845 prev_chain_pointer
->sd_next
= chain_entry
;
7849 space_dict_root
= chain_entry
;
7850 chain_entry
->sd_next
= chain_pointer
;
7853 if (chain_entry
->sd_next
== NULL
)
7854 space_dict_last
= chain_entry
;
7857 /* This is here to catch predefined spaces which do not get
7858 modified by the user's input. Another call is found at
7859 the bottom of pa_parse_space_stmt to handle cases where
7860 the user modifies a predefined space. */
7861 #ifdef obj_set_section_attributes
7862 obj_set_section_attributes (seg
, defined
, private, sort
, spnum
);
7868 /* Create a new subspace NAME, with the appropriate flags as defined
7869 by the given parameters.
7871 Add the new subspace to the subspace dictionary chain in numerical
7872 order as defined by the SORT entries. */
7874 static ssd_chain_struct
*
7875 create_new_subspace (space
, name
, loadable
, code_only
, common
,
7876 dup_common
, is_zero
, sort
, access
, space_index
,
7877 alignment
, quadrant
, seg
)
7878 sd_chain_struct
*space
;
7880 int loadable
, code_only
, common
, dup_common
, is_zero
;
7888 ssd_chain_struct
*chain_entry
;
7890 chain_entry
= (ssd_chain_struct
*) xmalloc (sizeof (ssd_chain_struct
));
7892 as_fatal (_("Out of memory: could not allocate new subspace chain entry: %s\n"), name
);
7894 SUBSPACE_NAME (chain_entry
) = (char *) xmalloc (strlen (name
) + 1);
7895 strcpy (SUBSPACE_NAME (chain_entry
), name
);
7897 /* Initialize subspace_defined. When we hit a .subspace directive
7898 we'll set it to 1 which "locks-in" the subspace attributes. */
7899 SUBSPACE_DEFINED (chain_entry
) = 0;
7901 chain_entry
->ssd_subseg
= 0;
7902 chain_entry
->ssd_seg
= seg
;
7903 chain_entry
->ssd_next
= NULL
;
7905 /* Find spot for the new subspace based on its sort key. */
7906 if (space
->sd_subspaces
== NULL
)
7907 space
->sd_subspaces
= chain_entry
;
7910 ssd_chain_struct
*chain_pointer
;
7911 ssd_chain_struct
*prev_chain_pointer
;
7913 chain_pointer
= space
->sd_subspaces
;
7914 prev_chain_pointer
= NULL
;
7916 while (chain_pointer
)
7918 prev_chain_pointer
= chain_pointer
;
7919 chain_pointer
= chain_pointer
->ssd_next
;
7922 /* Now we have somewhere to put the new entry. Insert it and update
7924 if (prev_chain_pointer
)
7926 chain_entry
->ssd_next
= chain_pointer
;
7927 prev_chain_pointer
->ssd_next
= chain_entry
;
7931 space
->sd_subspaces
= chain_entry
;
7932 chain_entry
->ssd_next
= chain_pointer
;
7936 #ifdef obj_set_subsection_attributes
7937 obj_set_subsection_attributes (seg
, space
->sd_seg
, access
,
7944 /* Update the information for the given subspace based upon the
7945 various arguments. Return the modified subspace chain entry. */
7947 static ssd_chain_struct
*
7948 update_subspace (space
, name
, loadable
, code_only
, common
, dup_common
, sort
,
7949 zero
, access
, space_index
, alignment
, quadrant
, section
)
7950 sd_chain_struct
*space
;
7964 ssd_chain_struct
*chain_entry
;
7966 chain_entry
= is_defined_subspace (name
);
7968 #ifdef obj_set_subsection_attributes
7969 obj_set_subsection_attributes (section
, space
->sd_seg
, access
,
7976 /* Return the space chain entry for the space with the name NAME or
7977 NULL if no such space exists. */
7979 static sd_chain_struct
*
7980 is_defined_space (name
)
7983 sd_chain_struct
*chain_pointer
;
7985 for (chain_pointer
= space_dict_root
;
7987 chain_pointer
= chain_pointer
->sd_next
)
7989 if (strcmp (SPACE_NAME (chain_pointer
), name
) == 0)
7990 return chain_pointer
;
7993 /* No mapping from segment to space was found. Return NULL. */
7997 /* Find and return the space associated with the given seg. If no mapping
7998 from the given seg to a space is found, then return NULL.
8000 Unlike subspaces, the number of spaces is not expected to grow much,
8001 so a linear exhaustive search is OK here. */
8003 static sd_chain_struct
*
8004 pa_segment_to_space (seg
)
8007 sd_chain_struct
*space_chain
;
8009 /* Walk through each space looking for the correct mapping. */
8010 for (space_chain
= space_dict_root
;
8012 space_chain
= space_chain
->sd_next
)
8014 if (space_chain
->sd_seg
== seg
)
8018 /* Mapping was not found. Return NULL. */
8022 /* Return the space chain entry for the subspace with the name NAME or
8023 NULL if no such subspace exists.
8025 Uses a linear search through all the spaces and subspaces, this may
8026 not be appropriate if we ever being placing each function in its
8029 static ssd_chain_struct
*
8030 is_defined_subspace (name
)
8033 sd_chain_struct
*space_chain
;
8034 ssd_chain_struct
*subspace_chain
;
8036 /* Walk through each space. */
8037 for (space_chain
= space_dict_root
;
8039 space_chain
= space_chain
->sd_next
)
8041 /* Walk through each subspace looking for a name which matches. */
8042 for (subspace_chain
= space_chain
->sd_subspaces
;
8044 subspace_chain
= subspace_chain
->ssd_next
)
8045 if (strcmp (SUBSPACE_NAME (subspace_chain
), name
) == 0)
8046 return subspace_chain
;
8049 /* Subspace wasn't found. Return NULL. */
8053 /* Find and return the subspace associated with the given seg. If no
8054 mapping from the given seg to a subspace is found, then return NULL.
8056 If we ever put each procedure/function within its own subspace
8057 (to make life easier on the compiler and linker), then this will have
8058 to become more efficient. */
8060 static ssd_chain_struct
*
8061 pa_subsegment_to_subspace (seg
, subseg
)
8065 sd_chain_struct
*space_chain
;
8066 ssd_chain_struct
*subspace_chain
;
8068 /* Walk through each space. */
8069 for (space_chain
= space_dict_root
;
8071 space_chain
= space_chain
->sd_next
)
8073 if (space_chain
->sd_seg
== seg
)
8075 /* Walk through each subspace within each space looking for
8076 the correct mapping. */
8077 for (subspace_chain
= space_chain
->sd_subspaces
;
8079 subspace_chain
= subspace_chain
->ssd_next
)
8080 if (subspace_chain
->ssd_subseg
== (int) subseg
)
8081 return subspace_chain
;
8085 /* No mapping from subsegment to subspace found. Return NULL. */
8089 /* Given a number, try and find a space with the name number.
8091 Return a pointer to a space dictionary chain entry for the space
8092 that was found or NULL on failure. */
8094 static sd_chain_struct
*
8095 pa_find_space_by_number (number
)
8098 sd_chain_struct
*space_chain
;
8100 for (space_chain
= space_dict_root
;
8102 space_chain
= space_chain
->sd_next
)
8104 if (SPACE_SPNUM (space_chain
) == (unsigned int) number
)
8108 /* No appropriate space found. Return NULL. */
8112 /* Return the starting address for the given subspace. If the starting
8113 address is unknown then return zero. */
8116 pa_subspace_start (space
, quadrant
)
8117 sd_chain_struct
*space
;
8120 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
8121 is not correct for the PA OSF1 port. */
8122 if ((strcmp (SPACE_NAME (space
), "$PRIVATE$") == 0) && quadrant
== 1)
8124 else if (space
->sd_seg
== data_section
&& quadrant
== 1)
8131 /* FIXME. Needs documentation. */
8133 pa_next_subseg (space
)
8134 sd_chain_struct
*space
;
8137 space
->sd_last_subseg
++;
8138 return space
->sd_last_subseg
;
8142 /* Helper function for pa_stringer. Used to find the end of
8149 unsigned int c
= *s
& CHAR_MASK
;
8162 /* Handle a .STRING type pseudo-op. */
8165 pa_stringer (append_zero
)
8168 char *s
, num_buf
[4];
8172 /* Preprocess the string to handle PA-specific escape sequences.
8173 For example, \xDD where DD is a hexadecimal number should be
8174 changed to \OOO where OOO is an octal number. */
8177 /* We must have a valid space and subspace. */
8178 pa_check_current_space_and_subspace ();
8181 /* Skip the opening quote. */
8182 s
= input_line_pointer
+ 1;
8184 while (is_a_char (c
= pa_stringer_aux (s
++)))
8191 /* Handle \x<num>. */
8194 unsigned int number
;
8199 /* Get past the 'x'. */
8201 for (num_digit
= 0, number
= 0, dg
= *s
;
8203 && (ISDIGIT (dg
) || (dg
>= 'a' && dg
<= 'f')
8204 || (dg
>= 'A' && dg
<= 'F'));
8208 number
= number
* 16 + dg
- '0';
8209 else if (dg
>= 'a' && dg
<= 'f')
8210 number
= number
* 16 + dg
- 'a' + 10;
8212 number
= number
* 16 + dg
- 'A' + 10;
8222 sprintf (num_buf
, "%02o", number
);
8225 sprintf (num_buf
, "%03o", number
);
8228 for (i
= 0; i
<= num_digit
; i
++)
8229 s_start
[i
] = num_buf
[i
];
8233 /* This might be a "\"", skip over the escaped char. */
8240 stringer (append_zero
);
8241 pa_undefine_label ();
8244 /* Handle a .VERSION pseudo-op. */
8248 int unused ATTRIBUTE_UNUSED
;
8251 pa_undefine_label ();
8256 /* Handle a .COMPILER pseudo-op. */
8259 pa_compiler (unused
)
8260 int unused ATTRIBUTE_UNUSED
;
8262 obj_som_compiler (0);
8263 pa_undefine_label ();
8268 /* Handle a .COPYRIGHT pseudo-op. */
8271 pa_copyright (unused
)
8272 int unused ATTRIBUTE_UNUSED
;
8275 pa_undefine_label ();
8278 /* Just like a normal cons, but when finished we have to undefine
8279 the latest space label. */
8286 pa_undefine_label ();
8289 /* Like float_cons, but we need to undefine our label. */
8292 pa_float_cons (float_type
)
8295 float_cons (float_type
);
8296 pa_undefine_label ();
8299 /* Like s_fill, but delete our label when finished. */
8303 int unused ATTRIBUTE_UNUSED
;
8306 /* We must have a valid space and subspace. */
8307 pa_check_current_space_and_subspace ();
8311 pa_undefine_label ();
8314 /* Like lcomm, but delete our label when finished. */
8317 pa_lcomm (needs_align
)
8321 /* We must have a valid space and subspace. */
8322 pa_check_current_space_and_subspace ();
8325 s_lcomm (needs_align
);
8326 pa_undefine_label ();
8329 /* Like lsym, but delete our label when finished. */
8333 int unused ATTRIBUTE_UNUSED
;
8336 /* We must have a valid space and subspace. */
8337 pa_check_current_space_and_subspace ();
8341 pa_undefine_label ();
8344 /* On the PA relocations which involve function symbols must not be
8345 adjusted. This so that the linker can know when/how to create argument
8346 relocation stubs for indirect calls and calls to static functions.
8348 "T" field selectors create DLT relative fixups for accessing
8349 globals and statics in PIC code; each DLT relative fixup creates
8350 an entry in the DLT table. The entries contain the address of
8351 the final target (eg accessing "foo" would create a DLT entry
8352 with the address of "foo").
8354 Unfortunately, the HP linker doesn't take into account any addend
8355 when generating the DLT; so accessing $LIT$+8 puts the address of
8356 $LIT$ into the DLT rather than the address of $LIT$+8.
8358 The end result is we can't perform relocation symbol reductions for
8359 any fixup which creates entries in the DLT (eg they use "T" field
8362 Reject reductions involving symbols with external scope; such
8363 reductions make life a living hell for object file editors.
8365 FIXME. Also reject R_HPPA relocations which are 32bits wide in
8366 the code space. The SOM BFD backend doesn't know how to pull the
8367 right bits out of an instruction. */
8370 hppa_fix_adjustable (fixp
)
8373 struct hppa_fix_struct
*hppa_fix
;
8375 hppa_fix
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8378 /* Reject reductions of symbols in 32bit relocs. */
8379 if (fixp
->fx_r_type
== R_HPPA
&& hppa_fix
->fx_r_format
== 32)
8384 if (fixp
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
8385 || fixp
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
)
8389 if (fixp
->fx_addsy
&& (S_IS_EXTERNAL (fixp
->fx_addsy
)
8390 || S_IS_WEAK (fixp
->fx_addsy
)))
8393 /* Reject reductions of symbols in sym1-sym2 expressions when
8394 the fixup will occur in a CODE subspace.
8396 XXX FIXME: Long term we probably want to reject all of these;
8397 for example reducing in the debug section would lose if we ever
8398 supported using the optimizing hp linker. */
8401 && (hppa_fix
->segment
->flags
& SEC_CODE
))
8403 /* Apparently sy_used_in_reloc never gets set for sub symbols. */
8404 symbol_mark_used_in_reloc (fixp
->fx_subsy
);
8408 /* We can't adjust any relocs that use LR% and RR% field selectors.
8410 If a symbol is reduced to a section symbol, the assembler will
8411 adjust the addend unless the symbol happens to reside right at
8412 the start of the section. Additionally, the linker has no choice
8413 but to manipulate the addends when coalescing input sections for
8414 "ld -r". Since an LR% field selector is defined to round the
8415 addend, we can't change the addend without risking that a LR% and
8416 it's corresponding (possible multiple) RR% field will no longer
8417 sum to the right value.
8420 . ldil LR%foo+0,%r21
8421 . ldw RR%foo+0(%r21),%r26
8422 . ldw RR%foo+4(%r21),%r25
8424 If foo is at address 4092 (decimal) in section `sect', then after
8425 reducing to the section symbol we get
8426 . LR%sect+4092 == (L%sect)+0
8427 . RR%sect+4092 == (R%sect)+4092
8428 . RR%sect+4096 == (R%sect)-4096
8429 and the last address loses because rounding the addend to 8k
8430 mutiples takes us up to 8192 with an offset of -4096.
8432 In cases where the LR% expression is identical to the RR% one we
8433 will never have a problem, but is so happens that gcc rounds
8434 addends involved in LR% field selectors to work around a HP
8435 linker bug. ie. We often have addresses like the last case
8436 above where the LR% expression is offset from the RR% one. */
8438 if (hppa_fix
->fx_r_field
== e_lrsel
8439 || hppa_fix
->fx_r_field
== e_rrsel
8440 || hppa_fix
->fx_r_field
== e_nlrsel
)
8443 /* Reject reductions of symbols in DLT relative relocs,
8444 relocations with plabels. */
8445 if (hppa_fix
->fx_r_field
== e_tsel
8446 || hppa_fix
->fx_r_field
== e_ltsel
8447 || hppa_fix
->fx_r_field
== e_rtsel
8448 || hppa_fix
->fx_r_field
== e_psel
8449 || hppa_fix
->fx_r_field
== e_rpsel
8450 || hppa_fix
->fx_r_field
== e_lpsel
)
8453 /* Reject absolute calls (jumps). */
8454 if (hppa_fix
->fx_r_type
== R_HPPA_ABS_CALL
)
8457 /* Reject reductions of function symbols. */
8458 if (fixp
->fx_addsy
!= 0 && S_IS_FUNCTION (fixp
->fx_addsy
))
8464 /* Return nonzero if the fixup in FIXP will require a relocation,
8465 even it if appears that the fixup could be completely handled
8469 hppa_force_relocation (fixp
)
8472 struct hppa_fix_struct
*hppa_fixp
;
8474 hppa_fixp
= (struct hppa_fix_struct
*) fixp
->tc_fix_data
;
8476 if (fixp
->fx_r_type
== (int) R_HPPA_ENTRY
8477 || fixp
->fx_r_type
== (int) R_HPPA_EXIT
8478 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_BRTAB
8479 || fixp
->fx_r_type
== (int) R_HPPA_END_BRTAB
8480 || fixp
->fx_r_type
== (int) R_HPPA_BEGIN_TRY
8481 || fixp
->fx_r_type
== (int) R_HPPA_END_TRY
8482 || (fixp
->fx_addsy
!= NULL
&& fixp
->fx_subsy
!= NULL
8483 && (hppa_fixp
->segment
->flags
& SEC_CODE
) != 0))
8487 if (fixp
->fx_r_type
== (int) R_PARISC_GNU_VTINHERIT
8488 || fixp
->fx_r_type
== (int) R_PARISC_GNU_VTENTRY
)
8492 assert (fixp
->fx_addsy
!= NULL
);
8494 /* Ensure we emit a relocation for global symbols so that dynamic
8496 if (S_IS_EXTERNAL (fixp
->fx_addsy
) || S_IS_WEAK (fixp
->fx_addsy
))
8499 /* It is necessary to force PC-relative calls/jumps to have a relocation
8500 entry if they're going to need either an argument relocation or long
8503 && arg_reloc_stub_needed (symbol_arg_reloc_info (fixp
->fx_addsy
),
8504 hppa_fixp
->fx_arg_reloc
))
8507 /* Now check to see if we're going to need a long-branch stub. */
8508 if (fixp
->fx_r_type
== (int) R_HPPA_PCREL_CALL
)
8512 distance
= (fixp
->fx_offset
+ S_GET_VALUE (fixp
->fx_addsy
)
8513 - md_pcrel_from (fixp
) - 8);
8514 if (distance
+ 8388608 >= 16777216
8515 || (hppa_fixp
->fx_r_format
== 17 && distance
+ 262144 >= 524288)
8517 || (hppa_fixp
->fx_r_format
== 12 && distance
+ 8192 >= 16384)
8523 if (fixp
->fx_r_type
== (int) R_HPPA_ABS_CALL
)
8526 /* No need (yet) to force another relocations to be emitted. */
8530 /* Now for some ELF specific code. FIXME. */
8532 /* Mark the end of a function so that it's possible to compute
8533 the size of the function in hppa_elf_final_processing. */
8536 hppa_elf_mark_end_of_function ()
8538 /* ELF does not have EXIT relocations. All we do is create a
8539 temporary symbol marking the end of the function. */
8542 if (last_call_info
== NULL
|| last_call_info
->start_symbol
== NULL
)
8544 /* We have already warned about a missing label,
8545 or other problems. */
8549 name
= (char *) xmalloc (strlen ("L$\001end_")
8550 + strlen (S_GET_NAME (last_call_info
->start_symbol
))
8556 strcpy (name
, "L$\001end_");
8557 strcat (name
, S_GET_NAME (last_call_info
->start_symbol
));
8559 /* If we have a .exit followed by a .procend, then the
8560 symbol will have already been defined. */
8561 symbolP
= symbol_find (name
);
8564 /* The symbol has already been defined! This can
8565 happen if we have a .exit followed by a .procend.
8567 This is *not* an error. All we want to do is free
8568 the memory we just allocated for the name and continue. */
8573 /* symbol value should be the offset of the
8574 last instruction of the function */
8575 symbolP
= symbol_new (name
, now_seg
, (valueT
) (frag_now_fix () - 4),
8579 S_CLEAR_EXTERNAL (symbolP
);
8580 symbol_table_insert (symbolP
);
8584 last_call_info
->end_symbol
= symbolP
;
8586 as_bad (_("Symbol '%s' could not be created."), name
);
8590 as_bad (_("No memory for symbol name."));
8594 /* For ELF, this function serves one purpose: to setup the st_size
8595 field of STT_FUNC symbols. To do this, we need to scan the
8596 call_info structure list, determining st_size in by taking the
8597 difference in the address of the beginning/end marker symbols. */
8600 elf_hppa_final_processing ()
8602 struct call_info
*call_info_pointer
;
8604 for (call_info_pointer
= call_info_root
;
8606 call_info_pointer
= call_info_pointer
->ci_next
)
8608 elf_symbol_type
*esym
8609 = ((elf_symbol_type
*)
8610 symbol_get_bfdsym (call_info_pointer
->start_symbol
));
8611 esym
->internal_elf_sym
.st_size
=
8612 S_GET_VALUE (call_info_pointer
->end_symbol
)
8613 - S_GET_VALUE (call_info_pointer
->start_symbol
) + 4;
8618 pa_vtable_entry (ignore
)
8619 int ignore ATTRIBUTE_UNUSED
;
8621 struct fix
*new_fix
;
8623 new_fix
= obj_elf_vtable_entry (0);
8627 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
8628 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8629 hppa_fix
->fx_r_type
= R_HPPA
;
8630 hppa_fix
->fx_r_field
= e_fsel
;
8631 hppa_fix
->fx_r_format
= 32;
8632 hppa_fix
->fx_arg_reloc
= 0;
8633 hppa_fix
->segment
= now_seg
;
8634 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8635 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTENTRY
;
8640 pa_vtable_inherit (ignore
)
8641 int ignore ATTRIBUTE_UNUSED
;
8643 struct fix
*new_fix
;
8645 new_fix
= obj_elf_vtable_inherit (0);
8649 struct hppa_fix_struct
*hppa_fix
= (struct hppa_fix_struct
*)
8650 obstack_alloc (¬es
, sizeof (struct hppa_fix_struct
));
8651 hppa_fix
->fx_r_type
= R_HPPA
;
8652 hppa_fix
->fx_r_field
= e_fsel
;
8653 hppa_fix
->fx_r_format
= 32;
8654 hppa_fix
->fx_arg_reloc
= 0;
8655 hppa_fix
->segment
= now_seg
;
8656 new_fix
->tc_fix_data
= (void *) hppa_fix
;
8657 new_fix
->fx_r_type
= (int) R_PARISC_GNU_VTINHERIT
;