Apparently I forgot to commit this change:
[deliverable/binutils-gdb.git] / gas / config / tc-hppa.c
1 /* tc-hppa.c -- Assemble for the PA
2 Copyright (C) 1989 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 /* HP PA-RISC support was contributed by the Center for Software Science
22 at the University of Utah. */
23
24 #include <stdio.h>
25 #include <ctype.h>
26
27 #include "as.h"
28 #include "subsegs.h"
29
30 #include "bfd/libhppa.h"
31 #include "bfd/libbfd.h"
32
33 /* Be careful, this file includes data *declarations*. */
34 #include "opcode/hppa.h"
35
36 /* A "convient" place to put object file dependencies which do
37 not need to be seen outside of tc-hppa.c. */
38 #ifdef OBJ_ELF
39 /* Names of various debugging spaces/subspaces. */
40 #define GDB_DEBUG_SPACE_NAME ".stab"
41 #define GDB_STRINGS_SUBSPACE_NAME ".stabstr"
42 #define GDB_SYMBOLS_SUBSPACE_NAME ".stab"
43 #define UNWIND_SECTION_NAME ".PARISC.unwind"
44 /* Nonzero if CODE is a fixup code needing further processing. */
45
46 /* Object file formats specify relocation types. */
47 typedef elf32_hppa_reloc_type reloc_type;
48
49 /* Object file formats specify BFD symbol types. */
50 typedef elf_symbol_type obj_symbol_type;
51
52 /* How to generate a relocation. */
53 #define hppa_gen_reloc_type hppa_elf_gen_reloc_type
54
55 /* ELF objects can have versions, but apparently do not have anywhere
56 to store a copyright string. */
57 #define obj_version obj_elf_version
58 #define obj_copyright obj_elf_version
59
60 /* Use space aliases. */
61 #define USE_ALIASES 1
62 #endif
63
64 #ifdef OBJ_SOM
65 /* Names of various debugging spaces/subspaces. */
66 #define GDB_DEBUG_SPACE_NAME "$GDB_DEBUG$"
67 #define GDB_STRINGS_SUBSPACE_NAME "$GDB_STRINGS$"
68 #define GDB_SYMBOLS_SUBSPACE_NAME "$GDB_SYMBOLS$"
69 #define UNWIND_SECTION_NAME "$UNWIND$"
70
71 /* Object file formats specify relocation types. */
72 typedef int reloc_type;
73
74 /* SOM objects can have both a version string and a copyright string. */
75 #define obj_version obj_som_version
76 #define obj_copyright obj_som_copyright
77
78 /* Do not use space aliases. */
79 #define USE_ALIASES 0
80
81 /* How to generate a relocation. */
82 #define hppa_gen_reloc_type hppa_som_gen_reloc_type
83
84 /* Object file formats specify BFD symbol types. */
85 typedef som_symbol_type obj_symbol_type;
86
87 /* This apparently isn't in older versions of hpux reloc.h. */
88 #ifndef R_DLT_REL
89 #define R_DLT_REL 0x78
90 #endif
91 #endif
92
93 /* Various structures and types used internally in tc-hppa.c. */
94
95 /* Unwind table and descriptor. FIXME: Sync this with GDB version. */
96
97 struct unwind_desc
98 {
99 unsigned int cannot_unwind:1;
100 unsigned int millicode:1;
101 unsigned int millicode_save_rest:1;
102 unsigned int region_desc:2;
103 unsigned int save_sr:2;
104 unsigned int entry_fr:4;
105 unsigned int entry_gr:5;
106 unsigned int args_stored:1;
107 unsigned int call_fr:5;
108 unsigned int call_gr:5;
109 unsigned int save_sp:1;
110 unsigned int save_rp:1;
111 unsigned int save_rp_in_frame:1;
112 unsigned int extn_ptr_defined:1;
113 unsigned int cleanup_defined:1;
114
115 unsigned int hpe_interrupt_marker:1;
116 unsigned int hpux_interrupt_marker:1;
117 unsigned int reserved:3;
118 unsigned int frame_size:27;
119 };
120
121 struct unwind_table
122 {
123 /* Starting and ending offsets of the region described by
124 descriptor. */
125 unsigned int start_offset;
126 unsigned int end_offset;
127 struct unwind_desc descriptor;
128 };
129
130 /* This structure is used by the .callinfo, .enter, .leave pseudo-ops to
131 control the entry and exit code they generate. It is also used in
132 creation of the correct stack unwind descriptors.
133
134 NOTE: GAS does not support .enter and .leave for the generation of
135 prologues and epilogues. FIXME.
136
137 The fields in structure roughly correspond to the arguments available on the
138 .callinfo pseudo-op. */
139
140 struct call_info
141 {
142 /* The unwind descriptor being built. */
143 struct unwind_table ci_unwind;
144
145 /* Name of this function. */
146 symbolS *start_symbol;
147
148 /* Size of the function in bytes. */
149 unsigned long function_size;
150
151 /* Next entry in the chain. */
152 struct call_info *ci_next;
153 };
154
155 /* Operand formats for FP instructions. Note not all FP instructions
156 allow all four formats to be used (for example fmpysub only allows
157 SGL and DBL). */
158 typedef enum
159 {
160 SGL, DBL, ILLEGAL_FMT, QUAD
161 }
162 fp_operand_format;
163
164 /* This fully describes the symbol types which may be attached to
165 an EXPORT or IMPORT directive. Only SOM uses this formation
166 (ELF has no need for it). */
167 typedef enum
168 {
169 SYMBOL_TYPE_UNKNOWN,
170 SYMBOL_TYPE_ABSOLUTE,
171 SYMBOL_TYPE_CODE,
172 SYMBOL_TYPE_DATA,
173 SYMBOL_TYPE_ENTRY,
174 SYMBOL_TYPE_MILLICODE,
175 SYMBOL_TYPE_PLABEL,
176 SYMBOL_TYPE_PRI_PROG,
177 SYMBOL_TYPE_SEC_PROG,
178 }
179 pa_symbol_type;
180
181 /* This structure contains information needed to assemble
182 individual instructions. */
183 struct pa_it
184 {
185 /* Holds the opcode after parsing by pa_ip. */
186 unsigned long opcode;
187
188 /* Holds an expression associated with the current instruction. */
189 expressionS exp;
190
191 /* Does this instruction use PC-relative addressing. */
192 int pcrel;
193
194 /* Floating point formats for operand1 and operand2. */
195 fp_operand_format fpof1;
196 fp_operand_format fpof2;
197
198 /* Holds the field selector for this instruction
199 (for example L%, LR%, etc). */
200 long field_selector;
201
202 /* Holds any argument relocation bits associated with this
203 instruction. (instruction should be some sort of call). */
204 long arg_reloc;
205
206 /* The format specification for this instruction. */
207 int format;
208
209 /* The relocation (if any) associated with this instruction. */
210 reloc_type reloc;
211 };
212
213 /* PA-89 floating point registers are arranged like this:
214
215
216 +--------------+--------------+
217 | 0 or 16L | 16 or 16R |
218 +--------------+--------------+
219 | 1 or 17L | 17 or 17R |
220 +--------------+--------------+
221 | | |
222
223 . . .
224 . . .
225 . . .
226
227 | | |
228 +--------------+--------------+
229 | 14 or 30L | 30 or 30R |
230 +--------------+--------------+
231 | 15 or 31L | 31 or 31R |
232 +--------------+--------------+
233
234
235 The following is a version of pa_parse_number that
236 handles the L/R notation and returns the correct
237 value to put into the instruction register field.
238 The correct value to put into the instruction is
239 encoded in the structure 'pa_89_fp_reg_struct'. */
240
241 struct pa_89_fp_reg_struct
242 {
243 /* The register number. */
244 char number_part;
245
246 /* L/R selector. */
247 char l_r_select;
248 };
249
250 /* Additional information needed to build argument relocation stubs. */
251 struct call_desc
252 {
253 /* The argument relocation specification. */
254 unsigned int arg_reloc;
255
256 /* Number of arguments. */
257 unsigned int arg_count;
258 };
259
260 /* This structure defines an entry in the subspace dictionary
261 chain. */
262
263 struct subspace_dictionary_chain
264 {
265 /* Nonzero if this space has been defined by the user code. */
266 unsigned int ssd_defined;
267
268 /* Name of this subspace. */
269 char *ssd_name;
270
271 /* GAS segment and subsegment associated with this subspace. */
272 asection *ssd_seg;
273 int ssd_subseg;
274
275 /* Next space in the subspace dictionary chain. */
276 struct subspace_dictionary_chain *ssd_next;
277 };
278
279 typedef struct subspace_dictionary_chain ssd_chain_struct;
280
281 /* This structure defines an entry in the subspace dictionary
282 chain. */
283
284 struct space_dictionary_chain
285 {
286 /* Nonzero if this space has been defined by the user code or
287 as a default space. */
288 unsigned int sd_defined;
289
290 /* Nonzero if this spaces has been defined by the user code. */
291 unsigned int sd_user_defined;
292
293 /* The space number (or index). */
294 unsigned int sd_spnum;
295
296 /* The name of this subspace. */
297 char *sd_name;
298
299 /* GAS segment to which this subspace corresponds. */
300 asection *sd_seg;
301
302 /* Current subsegment number being used. */
303 int sd_last_subseg;
304
305 /* The chain of subspaces contained within this space. */
306 ssd_chain_struct *sd_subspaces;
307
308 /* The next entry in the space dictionary chain. */
309 struct space_dictionary_chain *sd_next;
310 };
311
312 typedef struct space_dictionary_chain sd_chain_struct;
313
314 /* Structure for previous label tracking. Needed so that alignments,
315 callinfo declarations, etc can be easily attached to a particular
316 label. */
317 typedef struct label_symbol_struct
318 {
319 struct symbol *lss_label;
320 sd_chain_struct *lss_space;
321 struct label_symbol_struct *lss_next;
322 }
323 label_symbol_struct;
324
325 /* This structure defines attributes of the default subspace
326 dictionary entries. */
327
328 struct default_subspace_dict
329 {
330 /* Name of the subspace. */
331 char *name;
332
333 /* FIXME. Is this still needed? */
334 char defined;
335
336 /* Nonzero if this subspace is loadable. */
337 char loadable;
338
339 /* Nonzero if this subspace contains only code. */
340 char code_only;
341
342 /* Nonzero if this is a common subspace. */
343 char common;
344
345 /* Nonzero if this is a common subspace which allows symbols
346 to be multiply defined. */
347 char dup_common;
348
349 /* Nonzero if this subspace should be zero filled. */
350 char zero;
351
352 /* Sort key for this subspace. */
353 unsigned char sort;
354
355 /* Access control bits for this subspace. Can represent RWX access
356 as well as privilege level changes for gateways. */
357 int access;
358
359 /* Index of containing space. */
360 int space_index;
361
362 /* Alignment (in bytes) of this subspace. */
363 int alignment;
364
365 /* Quadrant within space where this subspace should be loaded. */
366 int quadrant;
367
368 /* An index into the default spaces array. */
369 int def_space_index;
370
371 /* An alias for this section (or NULL if no alias exists). */
372 char *alias;
373
374 /* Subsegment associated with this subspace. */
375 subsegT subsegment;
376 };
377
378 /* This structure defines attributes of the default space
379 dictionary entries. */
380
381 struct default_space_dict
382 {
383 /* Name of the space. */
384 char *name;
385
386 /* Space number. It is possible to identify spaces within
387 assembly code numerically! */
388 int spnum;
389
390 /* Nonzero if this space is loadable. */
391 char loadable;
392
393 /* Nonzero if this space is "defined". FIXME is still needed */
394 char defined;
395
396 /* Nonzero if this space can not be shared. */
397 char private;
398
399 /* Sort key for this space. */
400 unsigned char sort;
401
402 /* Segment associated with this space. */
403 asection *segment;
404
405 /* An alias for this section (or NULL if no alias exists). */
406 char *alias;
407 };
408
409 /* Extra information needed to perform fixups (relocations) on the PA. */
410 struct hppa_fix_struct
411 {
412 /* The field selector. */
413 enum hppa_reloc_field_selector_type fx_r_field;
414
415 /* Type of fixup. */
416 int fx_r_type;
417
418 /* Format of fixup. */
419 int fx_r_format;
420
421 /* Argument relocation bits. */
422 long fx_arg_reloc;
423
424 /* The segment this fixup appears in. */
425 segT segment;
426 };
427
428 /* Structure to hold information about predefined registers. */
429
430 struct pd_reg
431 {
432 char *name;
433 int value;
434 };
435
436 /* This structure defines the mapping from a FP condition string
437 to a condition number which can be recorded in an instruction. */
438 struct fp_cond_map
439 {
440 char *string;
441 int cond;
442 };
443
444 /* This structure defines a mapping from a field selector
445 string to a field selector type. */
446 struct selector_entry
447 {
448 char *prefix;
449 int field_selector;
450 };
451
452 /* Prototypes for functions local to tc-hppa.c. */
453
454 static void pa_check_current_space_and_subspace PARAMS ((void));
455 static fp_operand_format pa_parse_fp_format PARAMS ((char **s));
456 static void pa_cons PARAMS ((int));
457 static void pa_data PARAMS ((int));
458 static void pa_float_cons PARAMS ((int));
459 static void pa_fill PARAMS ((int));
460 static void pa_lcomm PARAMS ((int));
461 static void pa_lsym PARAMS ((int));
462 static void pa_stringer PARAMS ((int));
463 static void pa_text PARAMS ((int));
464 static void pa_version PARAMS ((int));
465 static int pa_parse_fp_cmp_cond PARAMS ((char **));
466 static int get_expression PARAMS ((char *));
467 static int pa_get_absolute_expression PARAMS ((struct pa_it *, char **));
468 static int evaluate_absolute PARAMS ((struct pa_it *));
469 static unsigned int pa_build_arg_reloc PARAMS ((char *));
470 static unsigned int pa_align_arg_reloc PARAMS ((unsigned int, unsigned int));
471 static int pa_parse_nullif PARAMS ((char **));
472 static int pa_parse_nonneg_cmpsub_cmpltr PARAMS ((char **, int));
473 static int pa_parse_neg_cmpsub_cmpltr PARAMS ((char **, int));
474 static int pa_parse_neg_add_cmpltr PARAMS ((char **, int));
475 static int pa_parse_nonneg_add_cmpltr PARAMS ((char **, int));
476 static void pa_align PARAMS ((int));
477 static void pa_block PARAMS ((int));
478 static void pa_call PARAMS ((int));
479 static void pa_call_args PARAMS ((struct call_desc *));
480 static void pa_callinfo PARAMS ((int));
481 static void pa_code PARAMS ((int));
482 static void pa_comm PARAMS ((int));
483 static void pa_copyright PARAMS ((int));
484 static void pa_end PARAMS ((int));
485 static void pa_enter PARAMS ((int));
486 static void pa_entry PARAMS ((int));
487 static void pa_equ PARAMS ((int));
488 static void pa_exit PARAMS ((int));
489 static void pa_export PARAMS ((int));
490 static void pa_type_args PARAMS ((symbolS *, int));
491 static void pa_import PARAMS ((int));
492 static void pa_label PARAMS ((int));
493 static void pa_leave PARAMS ((int));
494 static void pa_origin PARAMS ((int));
495 static void pa_proc PARAMS ((int));
496 static void pa_procend PARAMS ((int));
497 static void pa_space PARAMS ((int));
498 static void pa_spnum PARAMS ((int));
499 static void pa_subspace PARAMS ((int));
500 static void pa_param PARAMS ((int));
501 static void pa_undefine_label PARAMS ((void));
502 static int need_89_opcode PARAMS ((struct pa_it *,
503 struct pa_89_fp_reg_struct *));
504 static int pa_parse_number PARAMS ((char **, struct pa_89_fp_reg_struct *));
505 static label_symbol_struct *pa_get_label PARAMS ((void));
506 static sd_chain_struct *create_new_space PARAMS ((char *, int, int,
507 int, int, int,
508 asection *, int));
509 static ssd_chain_struct *create_new_subspace PARAMS ((sd_chain_struct *,
510 char *, int, int,
511 int, int, int,
512 int, int, int, int,
513 int, asection *));
514 static ssd_chain_struct *update_subspace PARAMS ((sd_chain_struct *,
515 char *, int, int, int,
516 int, int, int, int,
517 int, int, int,
518 asection *));
519 static sd_chain_struct *is_defined_space PARAMS ((char *));
520 static ssd_chain_struct *is_defined_subspace PARAMS ((char *));
521 static sd_chain_struct *pa_segment_to_space PARAMS ((asection *));
522 static ssd_chain_struct *pa_subsegment_to_subspace PARAMS ((asection *,
523 subsegT));
524 static sd_chain_struct *pa_find_space_by_number PARAMS ((int));
525 static unsigned int pa_subspace_start PARAMS ((sd_chain_struct *, int));
526 static void pa_ip PARAMS ((char *));
527 static void fix_new_hppa PARAMS ((fragS *, int, int, symbolS *,
528 long, expressionS *, int,
529 bfd_reloc_code_real_type,
530 enum hppa_reloc_field_selector_type,
531 int, long, int *));
532 static int is_end_of_statement PARAMS ((void));
533 static int reg_name_search PARAMS ((char *));
534 static int pa_chk_field_selector PARAMS ((char **));
535 static int is_same_frag PARAMS ((fragS *, fragS *));
536 static void pa_build_unwind_subspace PARAMS ((struct call_info *));
537 static void process_exit PARAMS ((void));
538 static sd_chain_struct *pa_parse_space_stmt PARAMS ((char *, int));
539 static int log2 PARAMS ((int));
540 static int pa_next_subseg PARAMS ((sd_chain_struct *));
541 static unsigned int pa_stringer_aux PARAMS ((char *));
542 static void pa_spaces_begin PARAMS ((void));
543
544 /* File and gloally scoped variable declarations. */
545
546 /* Root and final entry in the space chain. */
547 static sd_chain_struct *space_dict_root;
548 static sd_chain_struct *space_dict_last;
549
550 /* The current space and subspace. */
551 static sd_chain_struct *current_space;
552 static ssd_chain_struct *current_subspace;
553
554 /* Root of the call_info chain. */
555 static struct call_info *call_info_root;
556
557 /* The last call_info (for functions) structure
558 seen so it can be associated with fixups and
559 function labels. */
560 static struct call_info *last_call_info;
561
562 /* The last call description (for actual calls). */
563 static struct call_desc last_call_desc;
564
565 /* Relaxation isn't supported for the PA yet. */
566 const relax_typeS md_relax_table[] =
567 {0};
568
569 /* Jumps are always the same size -- one instruction. */
570 int md_short_jump_size = 4;
571 int md_long_jump_size = 4;
572
573 /* handle of the OPCODE hash table */
574 static struct hash_control *op_hash = NULL;
575
576 /* This array holds the chars that always start a comment. If the
577 pre-processor is disabled, these aren't very useful. */
578 const char comment_chars[] = ";";
579
580 /* Table of pseudo ops for the PA. FIXME -- how many of these
581 are now redundant with the overall GAS and the object file
582 dependent tables? */
583 const pseudo_typeS md_pseudo_table[] =
584 {
585 /* align pseudo-ops on the PA specify the actual alignment requested,
586 not the log2 of the requested alignment. */
587 {"align", pa_align, 8},
588 {"block", pa_block, 1},
589 {"blockz", pa_block, 0},
590 {"byte", pa_cons, 1},
591 {"call", pa_call, 0},
592 {"callinfo", pa_callinfo, 0},
593 {"code", pa_code, 0},
594 {"comm", pa_comm, 0},
595 {"copyright", pa_copyright, 0},
596 {"data", pa_data, 0},
597 {"double", pa_float_cons, 'd'},
598 {"end", pa_end, 0},
599 {"enter", pa_enter, 0},
600 {"entry", pa_entry, 0},
601 {"equ", pa_equ, 0},
602 {"exit", pa_exit, 0},
603 {"export", pa_export, 0},
604 {"fill", pa_fill, 0},
605 {"float", pa_float_cons, 'f'},
606 {"half", pa_cons, 2},
607 {"import", pa_import, 0},
608 {"int", pa_cons, 4},
609 {"label", pa_label, 0},
610 {"lcomm", pa_lcomm, 0},
611 {"leave", pa_leave, 0},
612 {"long", pa_cons, 4},
613 {"lsym", pa_lsym, 0},
614 {"octa", pa_cons, 16},
615 {"org", pa_origin, 0},
616 {"origin", pa_origin, 0},
617 {"param", pa_param, 0},
618 {"proc", pa_proc, 0},
619 {"procend", pa_procend, 0},
620 {"quad", pa_cons, 8},
621 {"reg", pa_equ, 1},
622 {"short", pa_cons, 2},
623 {"single", pa_float_cons, 'f'},
624 {"space", pa_space, 0},
625 {"spnum", pa_spnum, 0},
626 {"string", pa_stringer, 0},
627 {"stringz", pa_stringer, 1},
628 {"subspa", pa_subspace, 0},
629 {"text", pa_text, 0},
630 {"version", pa_version, 0},
631 {"word", pa_cons, 4},
632 {NULL, 0, 0}
633 };
634
635 /* This array holds the chars that only start a comment at the beginning of
636 a line. If the line seems to have the form '# 123 filename'
637 .line and .file directives will appear in the pre-processed output.
638
639 Note that input_file.c hand checks for '#' at the beginning of the
640 first line of the input file. This is because the compiler outputs
641 #NO_APP at the beginning of its output.
642
643 Also note that '/*' will always start a comment. */
644 const char line_comment_chars[] = "#";
645
646 /* This array holds the characters which act as line separators. */
647 const char line_separator_chars[] = "!";
648
649 /* Chars that can be used to separate mant from exp in floating point nums. */
650 const char EXP_CHARS[] = "eE";
651
652 /* Chars that mean this number is a floating point constant.
653 As in 0f12.456 or 0d1.2345e12.
654
655 Be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
656 changed in read.c. Ideally it shouldn't hae to know abou it at
657 all, but nothing is ideal around here. */
658 const char FLT_CHARS[] = "rRsSfFdDxXpP";
659
660 static struct pa_it the_insn;
661
662 /* Points to the end of an expression just parsed by get_expressoin
663 and friends. FIXME. This shouldn't be handled with a file-global
664 variable. */
665 static char *expr_end;
666
667 /* Nonzero if a .callinfo appeared within the current procedure. */
668 static int callinfo_found;
669
670 /* Nonzero if the assembler is currently within a .entry/.exit pair. */
671 static int within_entry_exit;
672
673 /* Nonzero if the assembler is currently within a procedure definition. */
674 static int within_procedure;
675
676 /* Handle on strucutre which keep track of the last symbol
677 seen in each subspace. */
678 static label_symbol_struct *label_symbols_rootp = NULL;
679
680 /* Holds the last field selector. */
681 static int hppa_field_selector;
682
683 /* A dummy bfd symbol so that all relocations have symbols of some kind. */
684 static symbolS *dummy_symbol;
685
686 /* Nonzero if errors are to be printed. */
687 static int print_errors = 1;
688
689 /* List of registers that are pre-defined:
690
691 Each general register has one predefined name of the form
692 %r<REGNUM> which has the value <REGNUM>.
693
694 Space and control registers are handled in a similar manner,
695 but use %sr<REGNUM> and %cr<REGNUM> as their predefined names.
696
697 Likewise for the floating point registers, but of the form
698 %fr<REGNUM>. Floating point registers have additional predefined
699 names with 'L' and 'R' suffixes (e.g. %fr19L, %fr19R) which
700 again have the value <REGNUM>.
701
702 Many registers also have synonyms:
703
704 %r26 - %r23 have %arg0 - %arg3 as synonyms
705 %r28 - %r29 have %ret0 - %ret1 as synonyms
706 %r30 has %sp as a synonym
707 %r27 has %dp as a synonym
708 %r2 has %rp as a synonym
709
710 Almost every control register has a synonym; they are not listed
711 here for brevity.
712
713 The table is sorted. Suitable for searching by a binary search. */
714
715 static const struct pd_reg pre_defined_registers[] =
716 {
717 {"%arg0", 26},
718 {"%arg1", 25},
719 {"%arg2", 24},
720 {"%arg3", 23},
721 {"%cr0", 0},
722 {"%cr10", 10},
723 {"%cr11", 11},
724 {"%cr12", 12},
725 {"%cr13", 13},
726 {"%cr14", 14},
727 {"%cr15", 15},
728 {"%cr16", 16},
729 {"%cr17", 17},
730 {"%cr18", 18},
731 {"%cr19", 19},
732 {"%cr20", 20},
733 {"%cr21", 21},
734 {"%cr22", 22},
735 {"%cr23", 23},
736 {"%cr24", 24},
737 {"%cr25", 25},
738 {"%cr26", 26},
739 {"%cr27", 27},
740 {"%cr28", 28},
741 {"%cr29", 29},
742 {"%cr30", 30},
743 {"%cr31", 31},
744 {"%cr8", 8},
745 {"%cr9", 9},
746 {"%dp", 27},
747 {"%eiem", 15},
748 {"%eirr", 23},
749 {"%fr0", 0},
750 {"%fr0l", 0},
751 {"%fr0r", 0},
752 {"%fr1", 1},
753 {"%fr10", 10},
754 {"%fr10l", 10},
755 {"%fr10r", 10},
756 {"%fr11", 11},
757 {"%fr11l", 11},
758 {"%fr11r", 11},
759 {"%fr12", 12},
760 {"%fr12l", 12},
761 {"%fr12r", 12},
762 {"%fr13", 13},
763 {"%fr13l", 13},
764 {"%fr13r", 13},
765 {"%fr14", 14},
766 {"%fr14l", 14},
767 {"%fr14r", 14},
768 {"%fr15", 15},
769 {"%fr15l", 15},
770 {"%fr15r", 15},
771 {"%fr16", 16},
772 {"%fr16l", 16},
773 {"%fr16r", 16},
774 {"%fr17", 17},
775 {"%fr17l", 17},
776 {"%fr17r", 17},
777 {"%fr18", 18},
778 {"%fr18l", 18},
779 {"%fr18r", 18},
780 {"%fr19", 19},
781 {"%fr19l", 19},
782 {"%fr19r", 19},
783 {"%fr1l", 1},
784 {"%fr1r", 1},
785 {"%fr2", 2},
786 {"%fr20", 20},
787 {"%fr20l", 20},
788 {"%fr20r", 20},
789 {"%fr21", 21},
790 {"%fr21l", 21},
791 {"%fr21r", 21},
792 {"%fr22", 22},
793 {"%fr22l", 22},
794 {"%fr22r", 22},
795 {"%fr23", 23},
796 {"%fr23l", 23},
797 {"%fr23r", 23},
798 {"%fr24", 24},
799 {"%fr24l", 24},
800 {"%fr24r", 24},
801 {"%fr25", 25},
802 {"%fr25l", 25},
803 {"%fr25r", 25},
804 {"%fr26", 26},
805 {"%fr26l", 26},
806 {"%fr26r", 26},
807 {"%fr27", 27},
808 {"%fr27l", 27},
809 {"%fr27r", 27},
810 {"%fr28", 28},
811 {"%fr28l", 28},
812 {"%fr28r", 28},
813 {"%fr29", 29},
814 {"%fr29l", 29},
815 {"%fr29r", 29},
816 {"%fr2l", 2},
817 {"%fr2r", 2},
818 {"%fr3", 3},
819 {"%fr30", 30},
820 {"%fr30l", 30},
821 {"%fr30r", 30},
822 {"%fr31", 31},
823 {"%fr31l", 31},
824 {"%fr31r", 31},
825 {"%fr3l", 3},
826 {"%fr3r", 3},
827 {"%fr4", 4},
828 {"%fr4l", 4},
829 {"%fr4r", 4},
830 {"%fr5", 5},
831 {"%fr5l", 5},
832 {"%fr5r", 5},
833 {"%fr6", 6},
834 {"%fr6l", 6},
835 {"%fr6r", 6},
836 {"%fr7", 7},
837 {"%fr7l", 7},
838 {"%fr7r", 7},
839 {"%fr8", 8},
840 {"%fr8l", 8},
841 {"%fr8r", 8},
842 {"%fr9", 9},
843 {"%fr9l", 9},
844 {"%fr9r", 9},
845 {"%hta", 25},
846 {"%iir", 19},
847 {"%ior", 21},
848 {"%ipsw", 22},
849 {"%isr", 20},
850 {"%itmr", 16},
851 {"%iva", 14},
852 {"%pcoq", 18},
853 {"%pcsq", 17},
854 {"%pidr1", 8},
855 {"%pidr2", 9},
856 {"%pidr3", 12},
857 {"%pidr4", 13},
858 {"%ppda", 24},
859 {"%r0", 0},
860 {"%r1", 1},
861 {"%r10", 10},
862 {"%r11", 11},
863 {"%r12", 12},
864 {"%r13", 13},
865 {"%r14", 14},
866 {"%r15", 15},
867 {"%r16", 16},
868 {"%r17", 17},
869 {"%r18", 18},
870 {"%r19", 19},
871 {"%r2", 2},
872 {"%r20", 20},
873 {"%r21", 21},
874 {"%r22", 22},
875 {"%r23", 23},
876 {"%r24", 24},
877 {"%r25", 25},
878 {"%r26", 26},
879 {"%r27", 27},
880 {"%r28", 28},
881 {"%r29", 29},
882 {"%r3", 3},
883 {"%r30", 30},
884 {"%r31", 31},
885 {"%r4", 4},
886 {"%r5", 5},
887 {"%r6", 6},
888 {"%r7", 7},
889 {"%r8", 8},
890 {"%r9", 9},
891 {"%rctr", 0},
892 {"%ret0", 28},
893 {"%ret1", 29},
894 {"%rp", 2},
895 {"%sar", 11},
896 {"%sp", 30},
897 {"%sr0", 0},
898 {"%sr1", 1},
899 {"%sr2", 2},
900 {"%sr3", 3},
901 {"%sr4", 4},
902 {"%sr5", 5},
903 {"%sr6", 6},
904 {"%sr7", 7},
905 {"%tr0", 24},
906 {"%tr1", 25},
907 {"%tr2", 26},
908 {"%tr3", 27},
909 {"%tr4", 28},
910 {"%tr5", 29},
911 {"%tr6", 30},
912 {"%tr7", 31}
913 };
914
915 /* This table is sorted by order of the length of the string. This is
916 so we check for <> before we check for <. If we had a <> and checked
917 for < first, we would get a false match. */
918 static const struct fp_cond_map fp_cond_map[] =
919 {
920 {"false?", 0},
921 {"false", 1},
922 {"true?", 30},
923 {"true", 31},
924 {"!<=>", 3},
925 {"!?>=", 8},
926 {"!?<=", 16},
927 {"!<>", 7},
928 {"!>=", 11},
929 {"!?>", 12},
930 {"?<=", 14},
931 {"!<=", 19},
932 {"!?<", 20},
933 {"?>=", 22},
934 {"!?=", 24},
935 {"!=t", 27},
936 {"<=>", 29},
937 {"=t", 5},
938 {"?=", 6},
939 {"?<", 10},
940 {"<=", 13},
941 {"!>", 15},
942 {"?>", 18},
943 {">=", 21},
944 {"!<", 23},
945 {"<>", 25},
946 {"!=", 26},
947 {"!?", 28},
948 {"?", 2},
949 {"=", 4},
950 {"<", 9},
951 {">", 17}
952 };
953
954 static const struct selector_entry selector_table[] =
955 {
956 {"f", e_fsel},
957 {"l", e_lsel},
958 {"ld", e_ldsel},
959 {"lp", e_lpsel},
960 {"lr", e_lrsel},
961 {"ls", e_lssel},
962 {"lt", e_ltsel},
963 {"p", e_psel},
964 {"r", e_rsel},
965 {"rd", e_rdsel},
966 {"rp", e_rpsel},
967 {"rr", e_rrsel},
968 {"rs", e_rssel},
969 {"rt", e_rtsel},
970 {"t", e_tsel},
971 };
972
973 /* default space and subspace dictionaries */
974
975 #define GDB_SYMBOLS GDB_SYMBOLS_SUBSPACE_NAME
976 #define GDB_STRINGS GDB_STRINGS_SUBSPACE_NAME
977
978 /* pre-defined subsegments (subspaces) for the HPPA. */
979 #define SUBSEG_CODE 0
980 #define SUBSEG_DATA 0
981 #define SUBSEG_LIT 1
982 #define SUBSEG_BSS 2
983 #define SUBSEG_UNWIND 3
984 #define SUBSEG_GDB_STRINGS 0
985 #define SUBSEG_GDB_SYMBOLS 1
986
987 static struct default_subspace_dict pa_def_subspaces[] =
988 {
989 {"$CODE$", 1, 1, 1, 0, 0, 0, 24, 0x2c, 0, 8, 0, 0, ".text", SUBSEG_CODE},
990 {"$DATA$", 1, 1, 0, 0, 0, 0, 24, 0x1f, 1, 8, 1, 1, ".data", SUBSEG_DATA},
991 {"$LIT$", 1, 1, 0, 0, 0, 0, 16, 0x2c, 0, 8, 0, 0, ".text", SUBSEG_LIT},
992 {"$BSS$", 1, 1, 0, 0, 0, 1, 80, 0x1f, 1, 8, 1, 1, ".bss", SUBSEG_BSS},
993 #ifdef OBJ_ELF
994 {"$UNWIND$", 1, 1, 0, 0, 0, 0, 64, 0x2c, 0, 4, 0, 0, ".PARISC.unwind", SUBSEG_UNWIND},
995 #endif
996 {NULL, 0, 1, 0, 0, 0, 0, 255, 0x1f, 0, 4, 0, 0, 0}
997 };
998
999 static struct default_space_dict pa_def_spaces[] =
1000 {
1001 {"$TEXT$", 0, 1, 1, 0, 8, ASEC_NULL, ".text"},
1002 {"$PRIVATE$", 1, 1, 1, 1, 16, ASEC_NULL, ".data"},
1003 {NULL, 0, 0, 0, 0, 0, ASEC_NULL, NULL}
1004 };
1005
1006 /* Misc local definitions used by the assembler. */
1007
1008 /* Return nonzero if the string pointed to by S potentially represents
1009 a right or left half of a FP register */
1010 #define IS_R_SELECT(S) (*(S) == 'R' || *(S) == 'r')
1011 #define IS_L_SELECT(S) (*(S) == 'L' || *(S) == 'l')
1012
1013 /* These macros are used to maintain spaces/subspaces. */
1014 #define SPACE_DEFINED(space_chain) (space_chain)->sd_defined
1015 #define SPACE_USER_DEFINED(space_chain) (space_chain)->sd_user_defined
1016 #define SPACE_SPNUM(space_chain) (space_chain)->sd_spnum
1017 #define SPACE_NAME(space_chain) (space_chain)->sd_name
1018
1019 #define SUBSPACE_DEFINED(ss_chain) (ss_chain)->ssd_defined
1020 #define SUBSPACE_NAME(ss_chain) (ss_chain)->ssd_name
1021
1022 /* Insert FIELD into OPCODE starting at bit START. Continue pa_ip
1023 main loop after insertion. */
1024
1025 #define INSERT_FIELD_AND_CONTINUE(OPCODE, FIELD, START) \
1026 { \
1027 ((OPCODE) |= (FIELD) << (START)); \
1028 continue; \
1029 }
1030
1031 /* Simple range checking for FIELD againt HIGH and LOW bounds.
1032 IGNORE is used to suppress the error message. */
1033
1034 #define CHECK_FIELD(FIELD, HIGH, LOW, IGNORE) \
1035 { \
1036 if ((FIELD) > (HIGH) || (FIELD) < (LOW)) \
1037 { \
1038 if (! IGNORE) \
1039 as_bad ("Field out of range [%d..%d] (%d).", (LOW), (HIGH), \
1040 (int) (FIELD));\
1041 break; \
1042 } \
1043 }
1044
1045 #define is_DP_relative(exp) \
1046 ((exp).X_op == O_subtract \
1047 && strcmp((exp).X_op_symbol->bsym->name, "$global$") == 0)
1048
1049 #define is_PC_relative(exp) \
1050 ((exp).X_op == O_subtract \
1051 && strcmp((exp).X_op_symbol->bsym->name, "$PIC_pcrel$0") == 0)
1052
1053 /* We need some complex handling for stabs (sym1 - sym2). Luckily, we'll
1054 always be able to reduce the expression to a constant, so we don't
1055 need real complex handling yet. */
1056 #define is_complex(exp) \
1057 ((exp).X_op != O_constant && (exp).X_op != O_symbol)
1058
1059 /* Actual functions to implement the PA specific code for the assembler. */
1060
1061 /* Called before writing the object file. Make sure entry/exit and
1062 proc/procend pairs match. */
1063
1064 void
1065 pa_check_eof ()
1066 {
1067 if (within_entry_exit)
1068 as_fatal ("Missing .exit\n");
1069
1070 if (within_procedure)
1071 as_fatal ("Missing .procend\n");
1072 }
1073
1074 /* Check to make sure we have a valid space and subspace. */
1075
1076 static void
1077 pa_check_current_space_and_subspace ()
1078 {
1079 if (current_space == NULL)
1080 as_fatal ("Not in a space.\n");
1081
1082 if (current_subspace == NULL)
1083 as_fatal ("Not in a subspace.\n");
1084 }
1085
1086 /* Returns a pointer to the label_symbol_struct for the current space.
1087 or NULL if no label_symbol_struct exists for the current space. */
1088
1089 static label_symbol_struct *
1090 pa_get_label ()
1091 {
1092 label_symbol_struct *label_chain;
1093 sd_chain_struct *space_chain = current_space;
1094
1095 for (label_chain = label_symbols_rootp;
1096 label_chain;
1097 label_chain = label_chain->lss_next)
1098 if (space_chain == label_chain->lss_space && label_chain->lss_label)
1099 return label_chain;
1100
1101 return NULL;
1102 }
1103
1104 /* Defines a label for the current space. If one is already defined,
1105 this function will replace it with the new label. */
1106
1107 void
1108 pa_define_label (symbol)
1109 symbolS *symbol;
1110 {
1111 label_symbol_struct *label_chain = pa_get_label ();
1112 sd_chain_struct *space_chain = current_space;
1113
1114 if (label_chain)
1115 label_chain->lss_label = symbol;
1116 else
1117 {
1118 /* Create a new label entry and add it to the head of the chain. */
1119 label_chain
1120 = (label_symbol_struct *) xmalloc (sizeof (label_symbol_struct));
1121 label_chain->lss_label = symbol;
1122 label_chain->lss_space = space_chain;
1123 label_chain->lss_next = NULL;
1124
1125 if (label_symbols_rootp)
1126 label_chain->lss_next = label_symbols_rootp;
1127
1128 label_symbols_rootp = label_chain;
1129 }
1130 }
1131
1132 /* Removes a label definition for the current space.
1133 If there is no label_symbol_struct entry, then no action is taken. */
1134
1135 static void
1136 pa_undefine_label ()
1137 {
1138 label_symbol_struct *label_chain;
1139 label_symbol_struct *prev_label_chain = NULL;
1140 sd_chain_struct *space_chain = current_space;
1141
1142 for (label_chain = label_symbols_rootp;
1143 label_chain;
1144 label_chain = label_chain->lss_next)
1145 {
1146 if (space_chain == label_chain->lss_space && label_chain->lss_label)
1147 {
1148 /* Remove the label from the chain and free its memory. */
1149 if (prev_label_chain)
1150 prev_label_chain->lss_next = label_chain->lss_next;
1151 else
1152 label_symbols_rootp = label_chain->lss_next;
1153
1154 free (label_chain);
1155 break;
1156 }
1157 prev_label_chain = label_chain;
1158 }
1159 }
1160
1161
1162 /* An HPPA-specific version of fix_new. This is required because the HPPA
1163 code needs to keep track of some extra stuff. Each call to fix_new_hppa
1164 results in the creation of an instance of an hppa_fix_struct. An
1165 hppa_fix_struct stores the extra information along with a pointer to the
1166 original fixS. This is attached to the original fixup via the
1167 tc_fix_data field. */
1168
1169 static void
1170 fix_new_hppa (frag, where, size, add_symbol, offset, exp, pcrel,
1171 r_type, r_field, r_format, arg_reloc, unwind_bits)
1172 fragS *frag;
1173 int where;
1174 int size;
1175 symbolS *add_symbol;
1176 long offset;
1177 expressionS *exp;
1178 int pcrel;
1179 bfd_reloc_code_real_type r_type;
1180 enum hppa_reloc_field_selector_type r_field;
1181 int r_format;
1182 long arg_reloc;
1183 int* unwind_bits;
1184 {
1185 fixS *new_fix;
1186
1187 struct hppa_fix_struct *hppa_fix = (struct hppa_fix_struct *)
1188 obstack_alloc (&notes, sizeof (struct hppa_fix_struct));
1189
1190 if (exp != NULL)
1191 new_fix = fix_new_exp (frag, where, size, exp, pcrel, r_type);
1192 else
1193 new_fix = fix_new (frag, where, size, add_symbol, offset, pcrel, r_type);
1194 new_fix->tc_fix_data = (void *) hppa_fix;
1195 hppa_fix->fx_r_type = r_type;
1196 hppa_fix->fx_r_field = r_field;
1197 hppa_fix->fx_r_format = r_format;
1198 hppa_fix->fx_arg_reloc = arg_reloc;
1199 hppa_fix->segment = now_seg;
1200 #ifdef OBJ_SOM
1201 if (r_type == R_ENTRY || r_type == R_EXIT)
1202 new_fix->fx_offset = *unwind_bits;
1203 #endif
1204
1205 /* foo-$global$ is used to access non-automatic storage. $global$
1206 is really just a marker and has served its purpose, so eliminate
1207 it now so as not to confuse write.c. */
1208 if (new_fix->fx_subsy
1209 && !strcmp (S_GET_NAME (new_fix->fx_subsy), "$global$"))
1210 new_fix->fx_subsy = NULL;
1211 }
1212
1213 /* Parse a .byte, .word, .long expression for the HPPA. Called by
1214 cons via the TC_PARSE_CONS_EXPRESSION macro. */
1215
1216 void
1217 parse_cons_expression_hppa (exp)
1218 expressionS *exp;
1219 {
1220 hppa_field_selector = pa_chk_field_selector (&input_line_pointer);
1221 expression (exp);
1222 }
1223
1224 /* This fix_new is called by cons via TC_CONS_FIX_NEW.
1225 hppa_field_selector is set by the parse_cons_expression_hppa. */
1226
1227 void
1228 cons_fix_new_hppa (frag, where, size, exp)
1229 fragS *frag;
1230 int where;
1231 int size;
1232 expressionS *exp;
1233 {
1234 unsigned int rel_type;
1235
1236 /* Get a base relocation type. */
1237 if (is_DP_relative (*exp))
1238 rel_type = R_HPPA_GOTOFF;
1239 else if (is_complex (*exp))
1240 rel_type = R_HPPA_COMPLEX;
1241 else
1242 rel_type = R_HPPA;
1243
1244 if (hppa_field_selector != e_psel && hppa_field_selector != e_fsel)
1245 as_warn ("Invalid field selector. Assuming F%%.");
1246
1247 fix_new_hppa (frag, where, size,
1248 (symbolS *) NULL, (offsetT) 0, exp, 0, rel_type,
1249 hppa_field_selector, 32, 0, NULL);
1250
1251 /* Reset field selector to its default state. */
1252 hppa_field_selector = 0;
1253 }
1254
1255 /* This function is called once, at assembler startup time. It should
1256 set up all the tables, etc. that the MD part of the assembler will need. */
1257
1258 void
1259 md_begin ()
1260 {
1261 const char *retval = NULL;
1262 int lose = 0;
1263 unsigned int i = 0;
1264
1265 last_call_info = NULL;
1266 call_info_root = NULL;
1267
1268 /* Folding of text and data segments fails miserably on the PA.
1269 Warn user and disable "-R" option. */
1270 if (flag_readonly_data_in_text)
1271 {
1272 as_warn ("-R option not supported on this target.");
1273 flag_readonly_data_in_text = 0;
1274 }
1275
1276 pa_spaces_begin ();
1277
1278 op_hash = hash_new ();
1279
1280 while (i < NUMOPCODES)
1281 {
1282 const char *name = pa_opcodes[i].name;
1283 retval = hash_insert (op_hash, name, (struct pa_opcode *) &pa_opcodes[i]);
1284 if (retval != NULL && *retval != '\0')
1285 {
1286 as_fatal ("Internal error: can't hash `%s': %s\n", name, retval);
1287 lose = 1;
1288 }
1289 do
1290 {
1291 if ((pa_opcodes[i].match & pa_opcodes[i].mask)
1292 != pa_opcodes[i].match)
1293 {
1294 fprintf (stderr, "internal error: losing opcode: `%s' \"%s\"\n",
1295 pa_opcodes[i].name, pa_opcodes[i].args);
1296 lose = 1;
1297 }
1298 ++i;
1299 }
1300 while (i < NUMOPCODES && !strcmp (pa_opcodes[i].name, name));
1301 }
1302
1303 if (lose)
1304 as_fatal ("Broken assembler. No assembly attempted.");
1305
1306 /* SOM will change text_section. To make sure we never put
1307 anything into the old one switch to the new one now. */
1308 subseg_set (text_section, 0);
1309
1310 dummy_symbol = symbol_find_or_make ("L$dummy");
1311 S_SET_SEGMENT (dummy_symbol, text_section);
1312 }
1313
1314 /* Assemble a single instruction storing it into a frag. */
1315 void
1316 md_assemble (str)
1317 char *str;
1318 {
1319 char *to;
1320
1321 /* The had better be something to assemble. */
1322 assert (str);
1323
1324 /* If we are within a procedure definition, make sure we've
1325 defined a label for the procedure; handle case where the
1326 label was defined after the .PROC directive.
1327
1328 Note there's not need to diddle with the segment or fragment
1329 for the label symbol in this case. We have already switched
1330 into the new $CODE$ subspace at this point. */
1331 if (within_procedure && last_call_info->start_symbol == NULL)
1332 {
1333 label_symbol_struct *label_symbol = pa_get_label ();
1334
1335 if (label_symbol)
1336 {
1337 if (label_symbol->lss_label)
1338 {
1339 last_call_info->start_symbol = label_symbol->lss_label;
1340 label_symbol->lss_label->bsym->flags |= BSF_FUNCTION;
1341 #ifdef OBJ_SOM
1342 /* Also handle allocation of a fixup to hold the unwind
1343 information when the label appears after the proc/procend. */
1344 if (within_entry_exit)
1345 {
1346 char *where = frag_more (0);
1347
1348 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
1349 NULL, (offsetT) 0, NULL,
1350 0, R_HPPA_ENTRY, e_fsel, 0, 0,
1351 (int *)&last_call_info->ci_unwind.descriptor);
1352 }
1353 #endif
1354 }
1355 else
1356 as_bad ("Missing function name for .PROC (corrupted label chain)");
1357 }
1358 else
1359 as_bad ("Missing function name for .PROC");
1360 }
1361
1362 /* Assemble the instruction. Results are saved into "the_insn". */
1363 pa_ip (str);
1364
1365 /* Get somewhere to put the assembled instrution. */
1366 to = frag_more (4);
1367
1368 /* Output the opcode. */
1369 md_number_to_chars (to, the_insn.opcode, 4);
1370
1371 /* If necessary output more stuff. */
1372 if (the_insn.reloc != R_HPPA_NONE)
1373 fix_new_hppa (frag_now, (to - frag_now->fr_literal), 4, NULL,
1374 (offsetT) 0, &the_insn.exp, the_insn.pcrel,
1375 the_insn.reloc, the_insn.field_selector,
1376 the_insn.format, the_insn.arg_reloc, NULL);
1377 }
1378
1379 /* Do the real work for assembling a single instruction. Store results
1380 into the global "the_insn" variable. */
1381
1382 static void
1383 pa_ip (str)
1384 char *str;
1385 {
1386 char *error_message = "";
1387 char *s, c, *argstart, *name, *save_s;
1388 const char *args;
1389 int match = FALSE;
1390 int comma = 0;
1391 int cmpltr, nullif, flag, cond, num;
1392 unsigned long opcode;
1393 struct pa_opcode *insn;
1394
1395 /* We must have a valid space and subspace. */
1396 pa_check_current_space_and_subspace ();
1397
1398 /* Skip to something interesting. */
1399 for (s = str; isupper (*s) || islower (*s) || (*s >= '0' && *s <= '3'); ++s)
1400 ;
1401
1402 switch (*s)
1403 {
1404
1405 case '\0':
1406 break;
1407
1408 case ',':
1409 comma = 1;
1410
1411 /*FALLTHROUGH */
1412
1413 case ' ':
1414 *s++ = '\0';
1415 break;
1416
1417 default:
1418 as_fatal ("Unknown opcode: `%s'", str);
1419 }
1420
1421 save_s = str;
1422
1423 /* Convert everything into lower case. */
1424 while (*save_s)
1425 {
1426 if (isupper (*save_s))
1427 *save_s = tolower (*save_s);
1428 save_s++;
1429 }
1430
1431 /* Look up the opcode in the has table. */
1432 if ((insn = (struct pa_opcode *) hash_find (op_hash, str)) == NULL)
1433 {
1434 as_bad ("Unknown opcode: `%s'", str);
1435 return;
1436 }
1437
1438 if (comma)
1439 {
1440 *--s = ',';
1441 }
1442
1443 /* Mark the location where arguments for the instruction start, then
1444 start processing them. */
1445 argstart = s;
1446 for (;;)
1447 {
1448 /* Do some initialization. */
1449 opcode = insn->match;
1450 bzero (&the_insn, sizeof (the_insn));
1451
1452 the_insn.reloc = R_HPPA_NONE;
1453
1454 /* Build the opcode, checking as we go to make
1455 sure that the operands match. */
1456 for (args = insn->args;; ++args)
1457 {
1458 switch (*args)
1459 {
1460
1461 /* End of arguments. */
1462 case '\0':
1463 if (*s == '\0')
1464 match = TRUE;
1465 break;
1466
1467 case '+':
1468 if (*s == '+')
1469 {
1470 ++s;
1471 continue;
1472 }
1473 if (*s == '-')
1474 continue;
1475 break;
1476
1477 /* These must match exactly. */
1478 case '(':
1479 case ')':
1480 case ',':
1481 case ' ':
1482 if (*s++ == *args)
1483 continue;
1484 break;
1485
1486 /* Handle a 5 bit register or control register field at 10. */
1487 case 'b':
1488 case '^':
1489 num = pa_parse_number (&s, 0);
1490 CHECK_FIELD (num, 31, 0, 0);
1491 INSERT_FIELD_AND_CONTINUE (opcode, num, 21);
1492
1493 /* Handle a 5 bit register field at 15. */
1494 case 'x':
1495 num = pa_parse_number (&s, 0);
1496 CHECK_FIELD (num, 31, 0, 0);
1497 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
1498
1499 /* Handle a 5 bit register field at 31. */
1500 case 'y':
1501 case 't':
1502 num = pa_parse_number (&s, 0);
1503 CHECK_FIELD (num, 31, 0, 0);
1504 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
1505
1506 /* Handle a 5 bit field length at 31. */
1507 case 'T':
1508 num = pa_get_absolute_expression (&the_insn, &s);
1509 s = expr_end;
1510 CHECK_FIELD (num, 32, 1, 0);
1511 INSERT_FIELD_AND_CONTINUE (opcode, 32 - num, 0);
1512
1513 /* Handle a 5 bit immediate at 15. */
1514 case '5':
1515 num = pa_get_absolute_expression (&the_insn, &s);
1516 s = expr_end;
1517 CHECK_FIELD (num, 15, -16, 0);
1518 low_sign_unext (num, 5, &num);
1519 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
1520
1521 /* Handle a 5 bit immediate at 31. */
1522 case 'V':
1523 num = pa_get_absolute_expression (&the_insn, &s);
1524 s = expr_end;
1525 CHECK_FIELD (num, 15, -16, 0)
1526 low_sign_unext (num, 5, &num);
1527 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
1528
1529 /* Handle an unsigned 5 bit immediate at 31. */
1530 case 'r':
1531 num = pa_get_absolute_expression (&the_insn, &s);
1532 s = expr_end;
1533 CHECK_FIELD (num, 31, 0, 0);
1534 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
1535
1536 /* Handle an unsigned 5 bit immediate at 15. */
1537 case 'R':
1538 num = pa_get_absolute_expression (&the_insn, &s);
1539 s = expr_end;
1540 CHECK_FIELD (num, 31, 0, 0);
1541 INSERT_FIELD_AND_CONTINUE (opcode, num, 16);
1542
1543 /* Handle a 2 bit space identifier at 17. */
1544 case 's':
1545 num = pa_parse_number (&s, 0);
1546 CHECK_FIELD (num, 3, 0, 1);
1547 INSERT_FIELD_AND_CONTINUE (opcode, num, 14);
1548
1549 /* Handle a 3 bit space identifier at 18. */
1550 case 'S':
1551 num = pa_parse_number (&s, 0);
1552 CHECK_FIELD (num, 7, 0, 1);
1553 dis_assemble_3 (num, &num);
1554 INSERT_FIELD_AND_CONTINUE (opcode, num, 13);
1555
1556 /* Handle a completer for an indexing load or store. */
1557 case 'c':
1558 {
1559 int uu = 0;
1560 int m = 0;
1561 int i = 0;
1562 while (*s == ',' && i < 2)
1563 {
1564 s++;
1565 if (strncasecmp (s, "sm", 2) == 0)
1566 {
1567 uu = 1;
1568 m = 1;
1569 s++;
1570 i++;
1571 }
1572 else if (strncasecmp (s, "m", 1) == 0)
1573 m = 1;
1574 else if (strncasecmp (s, "s", 1) == 0)
1575 uu = 1;
1576 else
1577 as_bad ("Invalid Indexed Load Completer.");
1578 s++;
1579 i++;
1580 }
1581 if (i > 2)
1582 as_bad ("Invalid Indexed Load Completer Syntax.");
1583 opcode |= m << 5;
1584 INSERT_FIELD_AND_CONTINUE (opcode, uu, 13);
1585 }
1586
1587 /* Handle a short load/store completer. */
1588 case 'C':
1589 {
1590 int a = 0;
1591 int m = 0;
1592 if (*s == ',')
1593 {
1594 s++;
1595 if (strncasecmp (s, "ma", 2) == 0)
1596 {
1597 a = 0;
1598 m = 1;
1599 }
1600 else if (strncasecmp (s, "mb", 2) == 0)
1601 {
1602 a = 1;
1603 m = 1;
1604 }
1605 else
1606 as_bad ("Invalid Short Load/Store Completer.");
1607 s += 2;
1608 }
1609 opcode |= m << 5;
1610 INSERT_FIELD_AND_CONTINUE (opcode, a, 13);
1611 }
1612
1613 /* Handle a stbys completer. */
1614 case 'Y':
1615 {
1616 int a = 0;
1617 int m = 0;
1618 int i = 0;
1619 while (*s == ',' && i < 2)
1620 {
1621 s++;
1622 if (strncasecmp (s, "m", 1) == 0)
1623 m = 1;
1624 else if (strncasecmp (s, "b", 1) == 0)
1625 a = 0;
1626 else if (strncasecmp (s, "e", 1) == 0)
1627 a = 1;
1628 else
1629 as_bad ("Invalid Store Bytes Short Completer");
1630 s++;
1631 i++;
1632 }
1633 if (i > 2)
1634 as_bad ("Invalid Store Bytes Short Completer");
1635 opcode |= m << 5;
1636 INSERT_FIELD_AND_CONTINUE (opcode, a, 13);
1637 }
1638
1639 /* Handle a non-negated compare/stubtract condition. */
1640 case '<':
1641 cmpltr = pa_parse_nonneg_cmpsub_cmpltr (&s, 1);
1642 if (cmpltr < 0)
1643 {
1644 as_bad ("Invalid Compare/Subtract Condition: %c", *s);
1645 cmpltr = 0;
1646 }
1647 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
1648
1649 /* Handle a negated or non-negated compare/subtract condition. */
1650 case '?':
1651 save_s = s;
1652 cmpltr = pa_parse_nonneg_cmpsub_cmpltr (&s, 1);
1653 if (cmpltr < 0)
1654 {
1655 s = save_s;
1656 cmpltr = pa_parse_neg_cmpsub_cmpltr (&s, 1);
1657 if (cmpltr < 0)
1658 {
1659 as_bad ("Invalid Compare/Subtract Condition.");
1660 cmpltr = 0;
1661 }
1662 else
1663 {
1664 /* Negated condition requires an opcode change. */
1665 opcode |= 1 << 27;
1666 }
1667 }
1668 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
1669
1670 /* Handle non-negated add condition. */
1671 case '!':
1672 cmpltr = pa_parse_nonneg_add_cmpltr (&s, 1);
1673 if (cmpltr < 0)
1674 {
1675 as_bad ("Invalid Compare/Subtract Condition: %c", *s);
1676 cmpltr = 0;
1677 }
1678 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
1679
1680 /* Handle a negated or non-negated add condition. */
1681 case '@':
1682 save_s = s;
1683 cmpltr = pa_parse_nonneg_add_cmpltr (&s, 1);
1684 if (cmpltr < 0)
1685 {
1686 s = save_s;
1687 cmpltr = pa_parse_neg_add_cmpltr (&s, 1);
1688 if (cmpltr < 0)
1689 {
1690 as_bad ("Invalid Compare/Subtract Condition");
1691 cmpltr = 0;
1692 }
1693 else
1694 {
1695 /* Negated condition requires an opcode change. */
1696 opcode |= 1 << 27;
1697 }
1698 }
1699 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
1700
1701 /* Handle a compare/subtract condition. */
1702 case 'a':
1703 cmpltr = 0;
1704 flag = 0;
1705 save_s = s;
1706 if (*s == ',')
1707 {
1708 cmpltr = pa_parse_nonneg_cmpsub_cmpltr (&s, 0);
1709 if (cmpltr < 0)
1710 {
1711 flag = 1;
1712 s = save_s;
1713 cmpltr = pa_parse_neg_cmpsub_cmpltr (&s, 0);
1714 if (cmpltr < 0)
1715 {
1716 as_bad ("Invalid Compare/Subtract Condition");
1717 }
1718 }
1719 }
1720 opcode |= cmpltr << 13;
1721 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
1722
1723 /* Handle a non-negated add condition. */
1724 case 'd':
1725 cmpltr = 0;
1726 nullif = 0;
1727 flag = 0;
1728 if (*s == ',')
1729 {
1730 s++;
1731 name = s;
1732 while (*s != ',' && *s != ' ' && *s != '\t')
1733 s += 1;
1734 c = *s;
1735 *s = 0x00;
1736 if (strcmp (name, "=") == 0)
1737 cmpltr = 1;
1738 else if (strcmp (name, "<") == 0)
1739 cmpltr = 2;
1740 else if (strcmp (name, "<=") == 0)
1741 cmpltr = 3;
1742 else if (strcasecmp (name, "nuv") == 0)
1743 cmpltr = 4;
1744 else if (strcasecmp (name, "znv") == 0)
1745 cmpltr = 5;
1746 else if (strcasecmp (name, "sv") == 0)
1747 cmpltr = 6;
1748 else if (strcasecmp (name, "od") == 0)
1749 cmpltr = 7;
1750 else if (strcasecmp (name, "n") == 0)
1751 nullif = 1;
1752 else if (strcasecmp (name, "tr") == 0)
1753 {
1754 cmpltr = 0;
1755 flag = 1;
1756 }
1757 else if (strcmp (name, "<>") == 0)
1758 {
1759 cmpltr = 1;
1760 flag = 1;
1761 }
1762 else if (strcmp (name, ">=") == 0)
1763 {
1764 cmpltr = 2;
1765 flag = 1;
1766 }
1767 else if (strcmp (name, ">") == 0)
1768 {
1769 cmpltr = 3;
1770 flag = 1;
1771 }
1772 else if (strcasecmp (name, "uv") == 0)
1773 {
1774 cmpltr = 4;
1775 flag = 1;
1776 }
1777 else if (strcasecmp (name, "vnz") == 0)
1778 {
1779 cmpltr = 5;
1780 flag = 1;
1781 }
1782 else if (strcasecmp (name, "nsv") == 0)
1783 {
1784 cmpltr = 6;
1785 flag = 1;
1786 }
1787 else if (strcasecmp (name, "ev") == 0)
1788 {
1789 cmpltr = 7;
1790 flag = 1;
1791 }
1792 else
1793 as_bad ("Invalid Add Condition: %s", name);
1794 *s = c;
1795 }
1796 nullif = pa_parse_nullif (&s);
1797 opcode |= nullif << 1;
1798 opcode |= cmpltr << 13;
1799 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
1800
1801 /* HANDLE a logical instruction condition. */
1802 case '&':
1803 cmpltr = 0;
1804 flag = 0;
1805 if (*s == ',')
1806 {
1807 s++;
1808 name = s;
1809 while (*s != ',' && *s != ' ' && *s != '\t')
1810 s += 1;
1811 c = *s;
1812 *s = 0x00;
1813 if (strcmp (name, "=") == 0)
1814 cmpltr = 1;
1815 else if (strcmp (name, "<") == 0)
1816 cmpltr = 2;
1817 else if (strcmp (name, "<=") == 0)
1818 cmpltr = 3;
1819 else if (strcasecmp (name, "od") == 0)
1820 cmpltr = 7;
1821 else if (strcasecmp (name, "tr") == 0)
1822 {
1823 cmpltr = 0;
1824 flag = 1;
1825 }
1826 else if (strcmp (name, "<>") == 0)
1827 {
1828 cmpltr = 1;
1829 flag = 1;
1830 }
1831 else if (strcmp (name, ">=") == 0)
1832 {
1833 cmpltr = 2;
1834 flag = 1;
1835 }
1836 else if (strcmp (name, ">") == 0)
1837 {
1838 cmpltr = 3;
1839 flag = 1;
1840 }
1841 else if (strcasecmp (name, "ev") == 0)
1842 {
1843 cmpltr = 7;
1844 flag = 1;
1845 }
1846 else
1847 as_bad ("Invalid Logical Instruction Condition.");
1848 *s = c;
1849 }
1850 opcode |= cmpltr << 13;
1851 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
1852
1853 /* Handle a unit instruction condition. */
1854 case 'U':
1855 cmpltr = 0;
1856 flag = 0;
1857 if (*s == ',')
1858 {
1859 s++;
1860 if (strncasecmp (s, "sbz", 3) == 0)
1861 {
1862 cmpltr = 2;
1863 s += 3;
1864 }
1865 else if (strncasecmp (s, "shz", 3) == 0)
1866 {
1867 cmpltr = 3;
1868 s += 3;
1869 }
1870 else if (strncasecmp (s, "sdc", 3) == 0)
1871 {
1872 cmpltr = 4;
1873 s += 3;
1874 }
1875 else if (strncasecmp (s, "sbc", 3) == 0)
1876 {
1877 cmpltr = 6;
1878 s += 3;
1879 }
1880 else if (strncasecmp (s, "shc", 3) == 0)
1881 {
1882 cmpltr = 7;
1883 s += 3;
1884 }
1885 else if (strncasecmp (s, "tr", 2) == 0)
1886 {
1887 cmpltr = 0;
1888 flag = 1;
1889 s += 2;
1890 }
1891 else if (strncasecmp (s, "nbz", 3) == 0)
1892 {
1893 cmpltr = 2;
1894 flag = 1;
1895 s += 3;
1896 }
1897 else if (strncasecmp (s, "nhz", 3) == 0)
1898 {
1899 cmpltr = 3;
1900 flag = 1;
1901 s += 3;
1902 }
1903 else if (strncasecmp (s, "ndc", 3) == 0)
1904 {
1905 cmpltr = 4;
1906 flag = 1;
1907 s += 3;
1908 }
1909 else if (strncasecmp (s, "nbc", 3) == 0)
1910 {
1911 cmpltr = 6;
1912 flag = 1;
1913 s += 3;
1914 }
1915 else if (strncasecmp (s, "nhc", 3) == 0)
1916 {
1917 cmpltr = 7;
1918 flag = 1;
1919 s += 3;
1920 }
1921 else
1922 as_bad ("Invalid Logical Instruction Condition.");
1923 }
1924 opcode |= cmpltr << 13;
1925 INSERT_FIELD_AND_CONTINUE (opcode, flag, 12);
1926
1927 /* Handle a shift/extract/deposit condition. */
1928 case '|':
1929 case '>':
1930 cmpltr = 0;
1931 if (*s == ',')
1932 {
1933 save_s = s++;
1934 name = s;
1935 while (*s != ',' && *s != ' ' && *s != '\t')
1936 s += 1;
1937 c = *s;
1938 *s = 0x00;
1939 if (strcmp (name, "=") == 0)
1940 cmpltr = 1;
1941 else if (strcmp (name, "<") == 0)
1942 cmpltr = 2;
1943 else if (strcasecmp (name, "od") == 0)
1944 cmpltr = 3;
1945 else if (strcasecmp (name, "tr") == 0)
1946 cmpltr = 4;
1947 else if (strcmp (name, "<>") == 0)
1948 cmpltr = 5;
1949 else if (strcmp (name, ">=") == 0)
1950 cmpltr = 6;
1951 else if (strcasecmp (name, "ev") == 0)
1952 cmpltr = 7;
1953 /* Handle movb,n. Put things back the way they were.
1954 This includes moving s back to where it started. */
1955 else if (strcasecmp (name, "n") == 0 && *args == '|')
1956 {
1957 *s = c;
1958 s = save_s;
1959 continue;
1960 }
1961 else
1962 as_bad ("Invalid Shift/Extract/Deposit Condition.");
1963 *s = c;
1964 }
1965 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
1966
1967 /* Handle bvb and bb conditions. */
1968 case '~':
1969 cmpltr = 0;
1970 if (*s == ',')
1971 {
1972 s++;
1973 if (strncmp (s, "<", 1) == 0)
1974 {
1975 cmpltr = 2;
1976 s++;
1977 }
1978 else if (strncmp (s, ">=", 2) == 0)
1979 {
1980 cmpltr = 6;
1981 s += 2;
1982 }
1983 else
1984 as_bad ("Invalid Bit Branch Condition: %c", *s);
1985 }
1986 INSERT_FIELD_AND_CONTINUE (opcode, cmpltr, 13);
1987
1988 /* Handle a system control completer. */
1989 case 'Z':
1990 if (*s == ',' && (*(s + 1) == 'm' || *(s + 1) == 'M'))
1991 {
1992 flag = 1;
1993 s += 2;
1994 }
1995 else
1996 flag = 0;
1997
1998 INSERT_FIELD_AND_CONTINUE (opcode, flag, 5);
1999
2000 /* Handle a nullification completer for branch instructions. */
2001 case 'n':
2002 nullif = pa_parse_nullif (&s);
2003 INSERT_FIELD_AND_CONTINUE (opcode, nullif, 1);
2004
2005 /* Handle a nullification completer for copr and spop insns. */
2006 case 'N':
2007 nullif = pa_parse_nullif (&s);
2008 INSERT_FIELD_AND_CONTINUE (opcode, nullif, 5);
2009
2010 /* Handle a 11 bit immediate at 31. */
2011 case 'i':
2012 the_insn.field_selector = pa_chk_field_selector (&s);
2013 get_expression (s);
2014 s = expr_end;
2015 if (the_insn.exp.X_op == O_constant)
2016 {
2017 num = evaluate_absolute (&the_insn);
2018 CHECK_FIELD (num, 1023, -1024, 0);
2019 low_sign_unext (num, 11, &num);
2020 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2021 }
2022 else
2023 {
2024 if (is_DP_relative (the_insn.exp))
2025 the_insn.reloc = R_HPPA_GOTOFF;
2026 else if (is_PC_relative (the_insn.exp))
2027 the_insn.reloc = R_HPPA_PCREL_CALL;
2028 else
2029 the_insn.reloc = R_HPPA;
2030 the_insn.format = 11;
2031 continue;
2032 }
2033
2034 /* Handle a 14 bit immediate at 31. */
2035 case 'j':
2036 the_insn.field_selector = pa_chk_field_selector (&s);
2037 get_expression (s);
2038 s = expr_end;
2039 if (the_insn.exp.X_op == O_constant)
2040 {
2041 num = evaluate_absolute (&the_insn);
2042 CHECK_FIELD (num, 8191, -8192, 0);
2043 low_sign_unext (num, 14, &num);
2044 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2045 }
2046 else
2047 {
2048 if (is_DP_relative (the_insn.exp))
2049 the_insn.reloc = R_HPPA_GOTOFF;
2050 else if (is_PC_relative (the_insn.exp))
2051 the_insn.reloc = R_HPPA_PCREL_CALL;
2052 else
2053 the_insn.reloc = R_HPPA;
2054 the_insn.format = 14;
2055 continue;
2056 }
2057
2058 /* Handle a 21 bit immediate at 31. */
2059 case 'k':
2060 the_insn.field_selector = pa_chk_field_selector (&s);
2061 get_expression (s);
2062 s = expr_end;
2063 if (the_insn.exp.X_op == O_constant)
2064 {
2065 num = evaluate_absolute (&the_insn);
2066 CHECK_FIELD (num >> 11, 1048575, -1048576, 0);
2067 dis_assemble_21 (num, &num);
2068 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2069 }
2070 else
2071 {
2072 if (is_DP_relative (the_insn.exp))
2073 the_insn.reloc = R_HPPA_GOTOFF;
2074 else if (is_PC_relative (the_insn.exp))
2075 the_insn.reloc = R_HPPA_PCREL_CALL;
2076 else
2077 the_insn.reloc = R_HPPA;
2078 the_insn.format = 21;
2079 continue;
2080 }
2081
2082 /* Handle a 12 bit branch displacement. */
2083 case 'w':
2084 the_insn.field_selector = pa_chk_field_selector (&s);
2085 get_expression (s);
2086 s = expr_end;
2087 the_insn.pcrel = 1;
2088 if (!strcmp (S_GET_NAME (the_insn.exp.X_add_symbol), "L$0\001"))
2089 {
2090 unsigned int w1, w, result;
2091
2092 num = evaluate_absolute (&the_insn);
2093 if (num % 4)
2094 {
2095 as_bad ("Branch to unaligned address");
2096 break;
2097 }
2098 CHECK_FIELD (num, 8191, -8192, 0);
2099 sign_unext ((num - 8) >> 2, 12, &result);
2100 dis_assemble_12 (result, &w1, &w);
2101 INSERT_FIELD_AND_CONTINUE (opcode, ((w1 << 2) | w), 0);
2102 }
2103 else
2104 {
2105 the_insn.reloc = R_HPPA_PCREL_CALL;
2106 the_insn.format = 12;
2107 the_insn.arg_reloc = last_call_desc.arg_reloc;
2108 bzero (&last_call_desc, sizeof (struct call_desc));
2109 s = expr_end;
2110 continue;
2111 }
2112
2113 /* Handle a 17 bit branch displacement. */
2114 case 'W':
2115 the_insn.field_selector = pa_chk_field_selector (&s);
2116 get_expression (s);
2117 s = expr_end;
2118 the_insn.pcrel = 1;
2119 if (!the_insn.exp.X_add_symbol
2120 || !strcmp (S_GET_NAME (the_insn.exp.X_add_symbol),
2121 "L$0\001"))
2122 {
2123 unsigned int w2, w1, w, result;
2124
2125 num = evaluate_absolute (&the_insn);
2126 if (num % 4)
2127 {
2128 as_bad ("Branch to unaligned address");
2129 break;
2130 }
2131 CHECK_FIELD (num, 262143, -262144, 0);
2132
2133 if (the_insn.exp.X_add_symbol)
2134 num -= 8;
2135
2136 sign_unext (num >> 2, 17, &result);
2137 dis_assemble_17 (result, &w1, &w2, &w);
2138 INSERT_FIELD_AND_CONTINUE (opcode,
2139 ((w2 << 2) | (w1 << 16) | w), 0);
2140 }
2141 else
2142 {
2143 the_insn.reloc = R_HPPA_PCREL_CALL;
2144 the_insn.format = 17;
2145 the_insn.arg_reloc = last_call_desc.arg_reloc;
2146 bzero (&last_call_desc, sizeof (struct call_desc));
2147 continue;
2148 }
2149
2150 /* Handle an absolute 17 bit branch target. */
2151 case 'z':
2152 the_insn.field_selector = pa_chk_field_selector (&s);
2153 get_expression (s);
2154 s = expr_end;
2155 the_insn.pcrel = 0;
2156 if (!the_insn.exp.X_add_symbol
2157 || !strcmp (S_GET_NAME (the_insn.exp.X_add_symbol),
2158 "L$0\001"))
2159 {
2160 unsigned int w2, w1, w, result;
2161
2162 num = evaluate_absolute (&the_insn);
2163 if (num % 4)
2164 {
2165 as_bad ("Branch to unaligned address");
2166 break;
2167 }
2168 CHECK_FIELD (num, 262143, -262144, 0);
2169
2170 if (the_insn.exp.X_add_symbol)
2171 num -= 8;
2172
2173 sign_unext (num >> 2, 17, &result);
2174 dis_assemble_17 (result, &w1, &w2, &w);
2175 INSERT_FIELD_AND_CONTINUE (opcode,
2176 ((w2 << 2) | (w1 << 16) | w), 0);
2177 }
2178 else
2179 {
2180 the_insn.reloc = R_HPPA_ABS_CALL;
2181 the_insn.format = 17;
2182 continue;
2183 }
2184
2185 /* Handle a 5 bit shift count at 26. */
2186 case 'p':
2187 num = pa_get_absolute_expression (&the_insn, &s);
2188 s = expr_end;
2189 CHECK_FIELD (num, 31, 0, 0);
2190 INSERT_FIELD_AND_CONTINUE (opcode, 31 - num, 5);
2191
2192 /* Handle a 5 bit bit position at 26. */
2193 case 'P':
2194 num = pa_get_absolute_expression (&the_insn, &s);
2195 s = expr_end;
2196 CHECK_FIELD (num, 31, 0, 0);
2197 INSERT_FIELD_AND_CONTINUE (opcode, num, 5);
2198
2199 /* Handle a 5 bit immediate at 10. */
2200 case 'Q':
2201 num = pa_get_absolute_expression (&the_insn, &s);
2202 s = expr_end;
2203 CHECK_FIELD (num, 31, 0, 0);
2204 INSERT_FIELD_AND_CONTINUE (opcode, num, 21);
2205
2206 /* Handle a 13 bit immediate at 18. */
2207 case 'A':
2208 num = pa_get_absolute_expression (&the_insn, &s);
2209 s = expr_end;
2210 CHECK_FIELD (num, 8191, 0, 0);
2211 INSERT_FIELD_AND_CONTINUE (opcode, num, 13);
2212
2213 /* Handle a 26 bit immediate at 31. */
2214 case 'D':
2215 num = pa_get_absolute_expression (&the_insn, &s);
2216 s = expr_end;
2217 CHECK_FIELD (num, 671108864, 0, 0);
2218 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2219
2220 /* Handle a 3 bit SFU identifier at 25. */
2221 case 'f':
2222 if (*s++ != ',')
2223 as_bad ("Invalid SFU identifier");
2224 num = pa_get_absolute_expression (&the_insn, &s);
2225 s = expr_end;
2226 CHECK_FIELD (num, 7, 0, 0);
2227 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
2228
2229 /* Handle a 20 bit SOP field for spop0. */
2230 case 'O':
2231 num = pa_get_absolute_expression (&the_insn, &s);
2232 s = expr_end;
2233 CHECK_FIELD (num, 1048575, 0, 0);
2234 num = (num & 0x1f) | ((num & 0x000fffe0) << 6);
2235 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2236
2237 /* Handle a 15bit SOP field for spop1. */
2238 case 'o':
2239 num = pa_get_absolute_expression (&the_insn, &s);
2240 s = expr_end;
2241 CHECK_FIELD (num, 32767, 0, 0);
2242 INSERT_FIELD_AND_CONTINUE (opcode, num, 11);
2243
2244 /* Handle a 10bit SOP field for spop3. */
2245 case '0':
2246 num = pa_get_absolute_expression (&the_insn, &s);
2247 s = expr_end;
2248 CHECK_FIELD (num, 1023, 0, 0);
2249 num = (num & 0x1f) | ((num & 0x000003e0) << 6);
2250 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2251
2252 /* Handle a 15 bit SOP field for spop2. */
2253 case '1':
2254 num = pa_get_absolute_expression (&the_insn, &s);
2255 s = expr_end;
2256 CHECK_FIELD (num, 32767, 0, 0);
2257 num = (num & 0x1f) | ((num & 0x00007fe0) << 6);
2258 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2259
2260 /* Handle a 3-bit co-processor ID field. */
2261 case 'u':
2262 if (*s++ != ',')
2263 as_bad ("Invalid COPR identifier");
2264 num = pa_get_absolute_expression (&the_insn, &s);
2265 s = expr_end;
2266 CHECK_FIELD (num, 7, 0, 0);
2267 INSERT_FIELD_AND_CONTINUE (opcode, num, 6);
2268
2269 /* Handle a 22bit SOP field for copr. */
2270 case '2':
2271 num = pa_get_absolute_expression (&the_insn, &s);
2272 s = expr_end;
2273 CHECK_FIELD (num, 4194303, 0, 0);
2274 num = (num & 0x1f) | ((num & 0x003fffe0) << 4);
2275 INSERT_FIELD_AND_CONTINUE (opcode, num, 0);
2276
2277 /* Handle a source FP operand format completer. */
2278 case 'F':
2279 flag = pa_parse_fp_format (&s);
2280 the_insn.fpof1 = flag;
2281 INSERT_FIELD_AND_CONTINUE (opcode, flag, 11);
2282
2283 /* Handle a destination FP operand format completer. */
2284 case 'G':
2285 /* pa_parse_format needs the ',' prefix. */
2286 s--;
2287 flag = pa_parse_fp_format (&s);
2288 the_insn.fpof2 = flag;
2289 INSERT_FIELD_AND_CONTINUE (opcode, flag, 13);
2290
2291 /* Handle FP compare conditions. */
2292 case 'M':
2293 cond = pa_parse_fp_cmp_cond (&s);
2294 INSERT_FIELD_AND_CONTINUE (opcode, cond, 0);
2295
2296 /* Handle L/R register halves like 't'. */
2297 case 'v':
2298 {
2299 struct pa_89_fp_reg_struct result;
2300
2301 pa_parse_number (&s, &result);
2302 CHECK_FIELD (result.number_part, 31, 0, 0);
2303 opcode |= result.number_part;
2304
2305 /* 0x30 opcodes are FP arithmetic operation opcodes
2306 and need to be turned into 0x38 opcodes. This
2307 is not necessary for loads/stores. */
2308 if (need_89_opcode (&the_insn, &result)
2309 && ((opcode & 0xfc000000) == 0x30000000))
2310 opcode |= 1 << 27;
2311
2312 INSERT_FIELD_AND_CONTINUE (opcode, result.l_r_select & 1, 6);
2313 }
2314
2315 /* Handle L/R register halves like 'b'. */
2316 case 'E':
2317 {
2318 struct pa_89_fp_reg_struct result;
2319
2320 pa_parse_number (&s, &result);
2321 CHECK_FIELD (result.number_part, 31, 0, 0);
2322 opcode |= result.number_part << 21;
2323 if (need_89_opcode (&the_insn, &result))
2324 {
2325 opcode |= (result.l_r_select & 1) << 7;
2326 opcode |= 1 << 27;
2327 }
2328 continue;
2329 }
2330
2331 /* Handle L/R register halves like 'x'. */
2332 case 'X':
2333 {
2334 struct pa_89_fp_reg_struct result;
2335
2336 pa_parse_number (&s, &result);
2337 CHECK_FIELD (result.number_part, 31, 0, 0);
2338 opcode |= (result.number_part & 0x1f) << 16;
2339 if (need_89_opcode (&the_insn, &result))
2340 {
2341 opcode |= (result.l_r_select & 1) << 12;
2342 opcode |= 1 << 27;
2343 }
2344 continue;
2345 }
2346
2347 /* Handle a 5 bit register field at 10. */
2348 case '4':
2349 {
2350 struct pa_89_fp_reg_struct result;
2351
2352 pa_parse_number (&s, &result);
2353 CHECK_FIELD (result.number_part, 31, 0, 0);
2354 if (the_insn.fpof1 == SGL)
2355 {
2356 result.number_part &= 0xF;
2357 result.number_part |= (result.l_r_select & 1) << 4;
2358 }
2359 INSERT_FIELD_AND_CONTINUE (opcode, result.number_part, 21);
2360 }
2361
2362 /* Handle a 5 bit register field at 15. */
2363 case '6':
2364 {
2365 struct pa_89_fp_reg_struct result;
2366
2367 pa_parse_number (&s, &result);
2368 CHECK_FIELD (result.number_part, 31, 0, 0);
2369 if (the_insn.fpof1 == SGL)
2370 {
2371 result.number_part &= 0xF;
2372 result.number_part |= (result.l_r_select & 1) << 4;
2373 }
2374 INSERT_FIELD_AND_CONTINUE (opcode, result.number_part, 16);
2375 }
2376
2377 /* Handle a 5 bit register field at 31. */
2378 case '7':
2379 {
2380 struct pa_89_fp_reg_struct result;
2381
2382 pa_parse_number (&s, &result);
2383 CHECK_FIELD (result.number_part, 31, 0, 0);
2384 if (the_insn.fpof1 == SGL)
2385 {
2386 result.number_part &= 0xF;
2387 result.number_part |= (result.l_r_select & 1) << 4;
2388 }
2389 INSERT_FIELD_AND_CONTINUE (opcode, result.number_part, 0);
2390 }
2391
2392 /* Handle a 5 bit register field at 20. */
2393 case '8':
2394 {
2395 struct pa_89_fp_reg_struct result;
2396
2397 pa_parse_number (&s, &result);
2398 CHECK_FIELD (result.number_part, 31, 0, 0);
2399 if (the_insn.fpof1 == SGL)
2400 {
2401 result.number_part &= 0xF;
2402 result.number_part |= (result.l_r_select & 1) << 4;
2403 }
2404 INSERT_FIELD_AND_CONTINUE (opcode, result.number_part, 11);
2405 }
2406
2407 /* Handle a 5 bit register field at 25. */
2408 case '9':
2409 {
2410 struct pa_89_fp_reg_struct result;
2411
2412 pa_parse_number (&s, &result);
2413 CHECK_FIELD (result.number_part, 31, 0, 0);
2414 if (the_insn.fpof1 == SGL)
2415 {
2416 result.number_part &= 0xF;
2417 result.number_part |= (result.l_r_select & 1) << 4;
2418 }
2419 INSERT_FIELD_AND_CONTINUE (opcode, result.number_part, 6);
2420 }
2421
2422 /* Handle a floating point operand format at 26.
2423 Only allows single and double precision. */
2424 case 'H':
2425 flag = pa_parse_fp_format (&s);
2426 switch (flag)
2427 {
2428 case SGL:
2429 opcode |= 0x20;
2430 case DBL:
2431 the_insn.fpof1 = flag;
2432 continue;
2433
2434 case QUAD:
2435 case ILLEGAL_FMT:
2436 default:
2437 as_bad ("Invalid Floating Point Operand Format.");
2438 }
2439 break;
2440
2441 default:
2442 abort ();
2443 }
2444 break;
2445 }
2446
2447 /* Check if the args matched. */
2448 if (match == FALSE)
2449 {
2450 if (&insn[1] - pa_opcodes < NUMOPCODES
2451 && !strcmp (insn->name, insn[1].name))
2452 {
2453 ++insn;
2454 s = argstart;
2455 continue;
2456 }
2457 else
2458 {
2459 as_bad ("Invalid operands %s", error_message);
2460 return;
2461 }
2462 }
2463 break;
2464 }
2465
2466 the_insn.opcode = opcode;
2467 }
2468
2469 /* Turn a string in input_line_pointer into a floating point constant of type
2470 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
2471 emitted is stored in *sizeP . An error message or NULL is returned. */
2472
2473 #define MAX_LITTLENUMS 6
2474
2475 char *
2476 md_atof (type, litP, sizeP)
2477 char type;
2478 char *litP;
2479 int *sizeP;
2480 {
2481 int prec;
2482 LITTLENUM_TYPE words[MAX_LITTLENUMS];
2483 LITTLENUM_TYPE *wordP;
2484 char *t;
2485
2486 switch (type)
2487 {
2488
2489 case 'f':
2490 case 'F':
2491 case 's':
2492 case 'S':
2493 prec = 2;
2494 break;
2495
2496 case 'd':
2497 case 'D':
2498 case 'r':
2499 case 'R':
2500 prec = 4;
2501 break;
2502
2503 case 'x':
2504 case 'X':
2505 prec = 6;
2506 break;
2507
2508 case 'p':
2509 case 'P':
2510 prec = 6;
2511 break;
2512
2513 default:
2514 *sizeP = 0;
2515 return "Bad call to MD_ATOF()";
2516 }
2517 t = atof_ieee (input_line_pointer, type, words);
2518 if (t)
2519 input_line_pointer = t;
2520 *sizeP = prec * sizeof (LITTLENUM_TYPE);
2521 for (wordP = words; prec--;)
2522 {
2523 md_number_to_chars (litP, (valueT) (*wordP++), sizeof (LITTLENUM_TYPE));
2524 litP += sizeof (LITTLENUM_TYPE);
2525 }
2526 return NULL;
2527 }
2528
2529 /* Write out big-endian. */
2530
2531 void
2532 md_number_to_chars (buf, val, n)
2533 char *buf;
2534 valueT val;
2535 int n;
2536 {
2537 number_to_chars_bigendian (buf, val, n);
2538 }
2539
2540 /* Translate internal representation of relocation info to BFD target
2541 format. */
2542
2543 arelent **
2544 tc_gen_reloc (section, fixp)
2545 asection *section;
2546 fixS *fixp;
2547 {
2548 arelent *reloc;
2549 struct hppa_fix_struct *hppa_fixp;
2550 bfd_reloc_code_real_type code;
2551 static arelent *no_relocs = NULL;
2552 arelent **relocs;
2553 bfd_reloc_code_real_type **codes;
2554 int n_relocs;
2555 int i;
2556
2557 hppa_fixp = (struct hppa_fix_struct *) fixp->tc_fix_data;
2558 if (fixp->fx_addsy == 0)
2559 return &no_relocs;
2560 assert (hppa_fixp != 0);
2561 assert (section != 0);
2562
2563 reloc = (arelent *) bfd_alloc_by_size_t (stdoutput, sizeof (arelent));
2564 assert (reloc != 0);
2565
2566 reloc->sym_ptr_ptr = &fixp->fx_addsy->bsym;
2567 codes = (bfd_reloc_code_real_type **) hppa_gen_reloc_type (stdoutput,
2568 fixp->fx_r_type,
2569 hppa_fixp->fx_r_format,
2570 hppa_fixp->fx_r_field);
2571
2572 for (n_relocs = 0; codes[n_relocs]; n_relocs++)
2573 ;
2574
2575 relocs = (arelent **)
2576 bfd_alloc_by_size_t (stdoutput, sizeof (arelent *) * n_relocs + 1);
2577 assert (relocs != 0);
2578
2579 reloc = (arelent *) bfd_alloc_by_size_t (stdoutput,
2580 sizeof (arelent) * n_relocs);
2581 if (n_relocs > 0)
2582 assert (reloc != 0);
2583
2584 for (i = 0; i < n_relocs; i++)
2585 relocs[i] = &reloc[i];
2586
2587 relocs[n_relocs] = NULL;
2588
2589 #ifdef OBJ_ELF
2590 switch (fixp->fx_r_type)
2591 {
2592 default:
2593 assert (n_relocs == 1);
2594
2595 code = *codes[0];
2596
2597 reloc->sym_ptr_ptr = &fixp->fx_addsy->bsym;
2598 reloc->howto = bfd_reloc_type_lookup (stdoutput, code);
2599 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
2600 reloc->addend = 0; /* default */
2601
2602 assert (reloc->howto && code == reloc->howto->type);
2603
2604 /* Now, do any processing that is dependent on the relocation type. */
2605 switch (code)
2606 {
2607 case R_PARISC_DLTREL21L:
2608 case R_PARISC_DLTREL14R:
2609 case R_PARISC_DLTREL14F:
2610 case R_PARISC_PLABEL32:
2611 case R_PARISC_PLABEL21L:
2612 case R_PARISC_PLABEL14R:
2613 /* For plabel relocations, the addend of the
2614 relocation should be either 0 (no static link) or 2
2615 (static link required).
2616
2617 FIXME: We always assume no static link!
2618
2619 We also slam a zero addend into the DLT relative relocs;
2620 it doesn't make a lot of sense to use any addend since
2621 it gets you a different (eg unknown) DLT entry. */
2622 reloc->addend = 0;
2623 break;
2624
2625 case R_PARISC_PCREL21L:
2626 case R_PARISC_PCREL17R:
2627 case R_PARISC_PCREL17F:
2628 case R_PARISC_PCREL17C:
2629 case R_PARISC_PCREL14R:
2630 case R_PARISC_PCREL14F:
2631 /* The constant is stored in the instruction. */
2632 reloc->addend = HPPA_R_ADDEND (hppa_fixp->fx_arg_reloc, 0);
2633 break;
2634 default:
2635 reloc->addend = fixp->fx_offset;
2636 break;
2637 }
2638 break;
2639 }
2640 #else /* OBJ_SOM */
2641
2642 /* Walk over reach relocation returned by the BFD backend. */
2643 for (i = 0; i < n_relocs; i++)
2644 {
2645 code = *codes[i];
2646
2647 relocs[i]->sym_ptr_ptr = &fixp->fx_addsy->bsym;
2648 relocs[i]->howto = bfd_reloc_type_lookup (stdoutput, code);
2649 relocs[i]->address = fixp->fx_frag->fr_address + fixp->fx_where;
2650
2651 switch (code)
2652 {
2653 case R_PCREL_CALL:
2654 case R_ABS_CALL:
2655 relocs[i]->addend = HPPA_R_ADDEND (hppa_fixp->fx_arg_reloc, 0);
2656 break;
2657
2658 case R_DLT_REL:
2659 case R_DATA_PLABEL:
2660 case R_CODE_PLABEL:
2661 /* For plabel relocations, the addend of the
2662 relocation should be either 0 (no static link) or 2
2663 (static link required).
2664
2665 FIXME: We always assume no static link!
2666
2667 We also slam a zero addend into the DLT relative relocs;
2668 it doesn't make a lot of sense to use any addend since
2669 it gets you a different (eg unknown) DLT entry. */
2670 relocs[i]->addend = 0;
2671 break;
2672
2673 case R_N_MODE:
2674 case R_S_MODE:
2675 case R_D_MODE:
2676 case R_R_MODE:
2677 case R_FSEL:
2678 case R_LSEL:
2679 case R_RSEL:
2680 /* There is no symbol or addend associated with these fixups. */
2681 relocs[i]->sym_ptr_ptr = &dummy_symbol->bsym;
2682 relocs[i]->addend = 0;
2683 break;
2684
2685 case R_ENTRY:
2686 case R_EXIT:
2687 /* There is no symbol associated with these fixups. */
2688 relocs[i]->sym_ptr_ptr = &dummy_symbol->bsym;
2689 relocs[i]->addend = fixp->fx_offset;
2690 break;
2691
2692 default:
2693 relocs[i]->addend = fixp->fx_offset;
2694 }
2695 }
2696 #endif
2697
2698 return relocs;
2699 }
2700
2701 /* Process any machine dependent frag types. */
2702
2703 void
2704 md_convert_frag (abfd, sec, fragP)
2705 register bfd *abfd;
2706 register asection *sec;
2707 register fragS *fragP;
2708 {
2709 unsigned int address;
2710
2711 if (fragP->fr_type == rs_machine_dependent)
2712 {
2713 switch ((int) fragP->fr_subtype)
2714 {
2715 case 0:
2716 fragP->fr_type = rs_fill;
2717 know (fragP->fr_var == 1);
2718 know (fragP->fr_next);
2719 address = fragP->fr_address + fragP->fr_fix;
2720 if (address % fragP->fr_offset)
2721 {
2722 fragP->fr_offset =
2723 fragP->fr_next->fr_address
2724 - fragP->fr_address
2725 - fragP->fr_fix;
2726 }
2727 else
2728 fragP->fr_offset = 0;
2729 break;
2730 }
2731 }
2732 }
2733
2734 /* Round up a section size to the appropriate boundary. */
2735
2736 valueT
2737 md_section_align (segment, size)
2738 asection *segment;
2739 valueT size;
2740 {
2741 int align = bfd_get_section_alignment (stdoutput, segment);
2742 int align2 = (1 << align) - 1;
2743
2744 return (size + align2) & ~align2;
2745 }
2746
2747 /* Create a short jump from FROM_ADDR to TO_ADDR. Not used on the PA. */
2748 void
2749 md_create_short_jump (ptr, from_addr, to_addr, frag, to_symbol)
2750 char *ptr;
2751 addressT from_addr, to_addr;
2752 fragS *frag;
2753 symbolS *to_symbol;
2754 {
2755 fprintf (stderr, "pa_create_short_jmp\n");
2756 abort ();
2757 }
2758
2759 /* Create a long jump from FROM_ADDR to TO_ADDR. Not used on the PA. */
2760 void
2761 md_create_long_jump (ptr, from_addr, to_addr, frag, to_symbol)
2762 char *ptr;
2763 addressT from_addr, to_addr;
2764 fragS *frag;
2765 symbolS *to_symbol;
2766 {
2767 fprintf (stderr, "pa_create_long_jump\n");
2768 abort ();
2769 }
2770
2771 /* Return the approximate size of a frag before relaxation has occurred. */
2772 int
2773 md_estimate_size_before_relax (fragP, segment)
2774 register fragS *fragP;
2775 asection *segment;
2776 {
2777 int size;
2778
2779 size = 0;
2780
2781 while ((fragP->fr_fix + size) % fragP->fr_offset)
2782 size++;
2783
2784 return size;
2785 }
2786 \f
2787 CONST char *md_shortopts = "";
2788 struct option md_longopts[] = {
2789 {NULL, no_argument, NULL, 0}
2790 };
2791 size_t md_longopts_size = sizeof(md_longopts);
2792
2793 int
2794 md_parse_option (c, arg)
2795 int c;
2796 char *arg;
2797 {
2798 return 0;
2799 }
2800
2801 void
2802 md_show_usage (stream)
2803 FILE *stream;
2804 {
2805 }
2806 \f
2807 /* We have no need to default values of symbols. */
2808
2809 symbolS *
2810 md_undefined_symbol (name)
2811 char *name;
2812 {
2813 return 0;
2814 }
2815
2816 /* Parse an operand that is machine-specific.
2817 We just return without modifying the expression as we have nothing
2818 to do on the PA. */
2819
2820 void
2821 md_operand (expressionP)
2822 expressionS *expressionP;
2823 {
2824 }
2825
2826 /* Apply a fixup to an instruction. */
2827
2828 int
2829 md_apply_fix (fixP, valp)
2830 fixS *fixP;
2831 valueT *valp;
2832 {
2833 char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
2834 struct hppa_fix_struct *hppa_fixP;
2835 long new_val, result;
2836 unsigned int w1, w2, w;
2837
2838 hppa_fixP = (struct hppa_fix_struct *) fixP->tc_fix_data;
2839 /* SOM uses R_HPPA_ENTRY and R_HPPA_EXIT relocations which can
2840 never be "applied" (they are just markers). */
2841 #ifdef OBJ_SOM
2842 if (fixP->fx_r_type == R_HPPA_ENTRY
2843 || fixP->fx_r_type == R_HPPA_EXIT)
2844 return;
2845 #endif
2846
2847 /* There should have been an HPPA specific fixup associated
2848 with the GAS fixup. */
2849 if (hppa_fixP)
2850 {
2851 unsigned long buf_wd = bfd_get_32 (stdoutput, buf);
2852 unsigned char fmt = bfd_hppa_insn2fmt (buf_wd);
2853
2854 /* If there is a symbol associated with this fixup, then it's something
2855 which will need a SOM relocation (except for some PC-relative relocs).
2856 In such cases we should treat the "val" or "addend" as zero since it
2857 will be added in as needed from fx_offset in tc_gen_reloc. */
2858 if ((fixP->fx_addsy != NULL
2859 || fixP->fx_r_type == R_HPPA_NONE)
2860 #ifdef OBJ_SOM
2861 && fmt != 32
2862 || hppa_fixP->fx_r_field == e_psel
2863 || hppa_fixP->fx_r_field == e_rpsel
2864 || hppa_fixP->fx_r_field == e_lpsel
2865 || hppa_fixP->fx_r_field == e_tsel
2866 || hppa_fixP->fx_r_field == e_rtsel
2867 || hppa_fixP->fx_r_field == e_ltsel
2868 #endif
2869 )
2870 new_val = ((fmt == 12 || fmt == 17) ? 8 : 0);
2871 else
2872 new_val = hppa_field_adjust (*valp, 0, hppa_fixP->fx_r_field);
2873
2874 /* Handle pc-relative exceptions from above. */
2875 #define stub_needed(CALLER, CALLEE) \
2876 ((CALLEE) && (CALLER) && ((CALLEE) != (CALLER)))
2877 if ((fmt == 12 || fmt == 17)
2878 && fixP->fx_addsy
2879 && fixP->fx_pcrel
2880 && !stub_needed (((obj_symbol_type *)
2881 fixP->fx_addsy->bsym)->tc_data.hppa_arg_reloc,
2882 hppa_fixP->fx_arg_reloc)
2883 && S_GET_SEGMENT (fixP->fx_addsy) == hppa_fixP->segment
2884 && !(fixP->fx_subsy
2885 && S_GET_SEGMENT (fixP->fx_subsy) != hppa_fixP->segment))
2886
2887 new_val = hppa_field_adjust (*valp, 0, hppa_fixP->fx_r_field);
2888 #undef stub_needed
2889
2890 switch (fmt)
2891 {
2892 /* Handle all opcodes with the 'j' operand type. */
2893 case 14:
2894 CHECK_FIELD (new_val, 8191, -8192, 0);
2895
2896 /* Mask off 14 bits to be changed. */
2897 bfd_put_32 (stdoutput,
2898 bfd_get_32 (stdoutput, buf) & 0xffffc000,
2899 buf);
2900 low_sign_unext (new_val, 14, &result);
2901 break;
2902
2903 /* Handle all opcodes with the 'k' operand type. */
2904 case 21:
2905 CHECK_FIELD (new_val, 2097152, 0, 0);
2906
2907 /* Mask off 21 bits to be changed. */
2908 bfd_put_32 (stdoutput,
2909 bfd_get_32 (stdoutput, buf) & 0xffe00000,
2910 buf);
2911 dis_assemble_21 (new_val, &result);
2912 break;
2913
2914 /* Handle all the opcodes with the 'i' operand type. */
2915 case 11:
2916 CHECK_FIELD (new_val, 1023, -1023, 0);
2917
2918 /* Mask off 11 bits to be changed. */
2919 bfd_put_32 (stdoutput,
2920 bfd_get_32 (stdoutput, buf) & 0xffff800,
2921 buf);
2922 low_sign_unext (new_val, 11, &result);
2923 break;
2924
2925 /* Handle all the opcodes with the 'w' operand type. */
2926 case 12:
2927 CHECK_FIELD (new_val, 8191, -8192, 0)
2928
2929 /* Mask off 11 bits to be changed. */
2930 sign_unext ((new_val - 8) >> 2, 12, &result);
2931 bfd_put_32 (stdoutput,
2932 bfd_get_32 (stdoutput, buf) & 0xffffe002,
2933 buf);
2934
2935 dis_assemble_12 (result, &w1, &w);
2936 result = ((w1 << 2) | w);
2937 break;
2938
2939 /* Handle some of the opcodes with the 'W' operand type. */
2940 case 17:
2941 CHECK_FIELD (new_val, 262143, -262144, 0);
2942
2943 /* Mask off 17 bits to be changed. */
2944 bfd_put_32 (stdoutput,
2945 bfd_get_32 (stdoutput, buf) & 0xffe0e002,
2946 buf);
2947 sign_unext ((new_val - 8) >> 2, 17, &result);
2948 dis_assemble_17 (result, &w1, &w2, &w);
2949 result = ((w2 << 2) | (w1 << 16) | w);
2950 break;
2951
2952 case 32:
2953 result = 0;
2954 bfd_put_32 (stdoutput, new_val, buf);
2955 break;
2956
2957 default:
2958 as_bad ("Unknown relocation encountered in md_apply_fix.");
2959 return;
2960 }
2961
2962 /* Insert the relocation. */
2963 bfd_put_32 (stdoutput, bfd_get_32 (stdoutput, buf) | result, buf);
2964 return;
2965 }
2966 else
2967 {
2968 printf ("no hppa_fixup entry for this fixup (fixP = 0x%x, type = 0x%x)\n",
2969 (unsigned int) fixP, fixP->fx_r_type);
2970 return;
2971 }
2972 }
2973
2974 /* Exactly what point is a PC-relative offset relative TO?
2975 On the PA, they're relative to the address of the offset. */
2976
2977 long
2978 md_pcrel_from (fixP)
2979 fixS *fixP;
2980 {
2981 return fixP->fx_where + fixP->fx_frag->fr_address;
2982 }
2983
2984 /* Return nonzero if the input line pointer is at the end of
2985 a statement. */
2986
2987 static int
2988 is_end_of_statement ()
2989 {
2990 return ((*input_line_pointer == '\n')
2991 || (*input_line_pointer == ';')
2992 || (*input_line_pointer == '!'));
2993 }
2994
2995 /* Read a number from S. The number might come in one of many forms,
2996 the most common will be a hex or decimal constant, but it could be
2997 a pre-defined register (Yuk!), or an absolute symbol.
2998
2999 Return a number or -1 for failure.
3000
3001 When parsing PA-89 FP register numbers RESULT will be
3002 the address of a structure to return information about
3003 L/R half of FP registers, store results there as appropriate.
3004
3005 pa_parse_number can not handle negative constants and will fail
3006 horribly if it is passed such a constant. */
3007
3008 static int
3009 pa_parse_number (s, result)
3010 char **s;
3011 struct pa_89_fp_reg_struct *result;
3012 {
3013 int num;
3014 char *name;
3015 char c;
3016 symbolS *sym;
3017 int status;
3018 char *p = *s;
3019
3020 /* Skip whitespace before the number. */
3021 while (*p == ' ' || *p == '\t')
3022 p = p + 1;
3023
3024 /* Store info in RESULT if requested by caller. */
3025 if (result)
3026 {
3027 result->number_part = -1;
3028 result->l_r_select = -1;
3029 }
3030 num = -1;
3031
3032 if (isdigit (*p))
3033 {
3034 /* Looks like a number. */
3035 num = 0;
3036
3037 if (*p == '0' && (*(p + 1) == 'x' || *(p + 1) == 'X'))
3038 {
3039 /* The number is specified in hex. */
3040 p += 2;
3041 while (isdigit (*p) || ((*p >= 'a') && (*p <= 'f'))
3042 || ((*p >= 'A') && (*p <= 'F')))
3043 {
3044 if (isdigit (*p))
3045 num = num * 16 + *p - '0';
3046 else if (*p >= 'a' && *p <= 'f')
3047 num = num * 16 + *p - 'a' + 10;
3048 else
3049 num = num * 16 + *p - 'A' + 10;
3050 ++p;
3051 }
3052 }
3053 else
3054 {
3055 /* The number is specified in decimal. */
3056 while (isdigit (*p))
3057 {
3058 num = num * 10 + *p - '0';
3059 ++p;
3060 }
3061 }
3062
3063 /* Store info in RESULT if requested by the caller. */
3064 if (result)
3065 {
3066 result->number_part = num;
3067
3068 if (IS_R_SELECT (p))
3069 {
3070 result->l_r_select = 1;
3071 ++p;
3072 }
3073 else if (IS_L_SELECT (p))
3074 {
3075 result->l_r_select = 0;
3076 ++p;
3077 }
3078 else
3079 result->l_r_select = 0;
3080 }
3081 }
3082 else if (*p == '%')
3083 {
3084 /* The number might be a predefined register. */
3085 num = 0;
3086 name = p;
3087 p++;
3088 c = *p;
3089 /* Tege hack: Special case for general registers as the general
3090 code makes a binary search with case translation, and is VERY
3091 slow. */
3092 if (c == 'r')
3093 {
3094 p++;
3095 if (*p == 'e' && *(p + 1) == 't'
3096 && (*(p + 2) == '0' || *(p + 2) == '1'))
3097 {
3098 p += 2;
3099 num = *p - '0' + 28;
3100 p++;
3101 }
3102 else if (*p == 'p')
3103 {
3104 num = 2;
3105 p++;
3106 }
3107 else if (!isdigit (*p))
3108 {
3109 if (print_errors)
3110 as_bad ("Undefined register: '%s'.", name);
3111 num = -1;
3112 }
3113 else
3114 {
3115 do
3116 num = num * 10 + *p++ - '0';
3117 while (isdigit (*p));
3118 }
3119 }
3120 else
3121 {
3122 /* Do a normal register search. */
3123 while (is_part_of_name (c))
3124 {
3125 p = p + 1;
3126 c = *p;
3127 }
3128 *p = 0;
3129 status = reg_name_search (name);
3130 if (status >= 0)
3131 num = status;
3132 else
3133 {
3134 if (print_errors)
3135 as_bad ("Undefined register: '%s'.", name);
3136 num = -1;
3137 }
3138 *p = c;
3139 }
3140
3141 /* Store info in RESULT if requested by caller. */
3142 if (result)
3143 {
3144 result->number_part = num;
3145 if (IS_R_SELECT (p - 1))
3146 result->l_r_select = 1;
3147 else if (IS_L_SELECT (p - 1))
3148 result->l_r_select = 0;
3149 else
3150 result->l_r_select = 0;
3151 }
3152 }
3153 else
3154 {
3155 /* And finally, it could be a symbol in the absolute section which
3156 is effectively a constant. */
3157 num = 0;
3158 name = p;
3159 c = *p;
3160 while (is_part_of_name (c))
3161 {
3162 p = p + 1;
3163 c = *p;
3164 }
3165 *p = 0;
3166 if ((sym = symbol_find (name)) != NULL)
3167 {
3168 if (S_GET_SEGMENT (sym) == &bfd_abs_section)
3169 num = S_GET_VALUE (sym);
3170 else
3171 {
3172 if (print_errors)
3173 as_bad ("Non-absolute symbol: '%s'.", name);
3174 num = -1;
3175 }
3176 }
3177 else
3178 {
3179 /* There is where we'd come for an undefined symbol
3180 or for an empty string. For an empty string we
3181 will return zero. That's a concession made for
3182 compatability with the braindamaged HP assemblers. */
3183 if (*name == 0)
3184 num = 0;
3185 else
3186 {
3187 if (print_errors)
3188 as_bad ("Undefined absolute constant: '%s'.", name);
3189 num = -1;
3190 }
3191 }
3192 *p = c;
3193
3194 /* Store info in RESULT if requested by caller. */
3195 if (result)
3196 {
3197 result->number_part = num;
3198 if (IS_R_SELECT (p - 1))
3199 result->l_r_select = 1;
3200 else if (IS_L_SELECT (p - 1))
3201 result->l_r_select = 0;
3202 else
3203 result->l_r_select = 0;
3204 }
3205 }
3206
3207 *s = p;
3208 return num;
3209 }
3210
3211 #define REG_NAME_CNT (sizeof(pre_defined_registers) / sizeof(struct pd_reg))
3212
3213 /* Given NAME, find the register number associated with that name, return
3214 the integer value associated with the given name or -1 on failure. */
3215
3216 static int
3217 reg_name_search (name)
3218 char *name;
3219 {
3220 int middle, low, high;
3221 int cmp;
3222
3223 low = 0;
3224 high = REG_NAME_CNT - 1;
3225
3226 do
3227 {
3228 middle = (low + high) / 2;
3229 cmp = strcasecmp (name, pre_defined_registers[middle].name);
3230 if (cmp < 0)
3231 high = middle - 1;
3232 else if (cmp > 0)
3233 low = middle + 1;
3234 else
3235 return pre_defined_registers[middle].value;
3236 }
3237 while (low <= high);
3238
3239 return -1;
3240 }
3241
3242
3243 /* Return nonzero if the given INSN and L/R information will require
3244 a new PA-89 opcode. */
3245
3246 static int
3247 need_89_opcode (insn, result)
3248 struct pa_it *insn;
3249 struct pa_89_fp_reg_struct *result;
3250 {
3251 if (result->l_r_select == 1 && !(insn->fpof1 == DBL && insn->fpof2 == DBL))
3252 return TRUE;
3253 else
3254 return FALSE;
3255 }
3256
3257 /* Parse a condition for a fcmp instruction. Return the numerical
3258 code associated with the condition. */
3259
3260 static int
3261 pa_parse_fp_cmp_cond (s)
3262 char **s;
3263 {
3264 int cond, i;
3265
3266 cond = 0;
3267
3268 for (i = 0; i < 32; i++)
3269 {
3270 if (strncasecmp (*s, fp_cond_map[i].string,
3271 strlen (fp_cond_map[i].string)) == 0)
3272 {
3273 cond = fp_cond_map[i].cond;
3274 *s += strlen (fp_cond_map[i].string);
3275 /* If not a complete match, back up the input string and
3276 report an error. */
3277 if (**s != ' ' && **s != '\t')
3278 {
3279 *s -= strlen (fp_cond_map[i].string);
3280 break;
3281 }
3282 while (**s == ' ' || **s == '\t')
3283 *s = *s + 1;
3284 return cond;
3285 }
3286 }
3287
3288 as_bad ("Invalid FP Compare Condition: %s", *s);
3289
3290 /* Advance over the bogus completer. */
3291 while (**s != ',' && **s != ' ' && **s != '\t')
3292 *s += 1;
3293
3294 return 0;
3295 }
3296
3297 /* Parse an FP operand format completer returning the completer
3298 type. */
3299
3300 static fp_operand_format
3301 pa_parse_fp_format (s)
3302 char **s;
3303 {
3304 int format;
3305
3306 format = SGL;
3307 if (**s == ',')
3308 {
3309 *s += 1;
3310 if (strncasecmp (*s, "sgl", 3) == 0)
3311 {
3312 format = SGL;
3313 *s += 4;
3314 }
3315 else if (strncasecmp (*s, "dbl", 3) == 0)
3316 {
3317 format = DBL;
3318 *s += 4;
3319 }
3320 else if (strncasecmp (*s, "quad", 4) == 0)
3321 {
3322 format = QUAD;
3323 *s += 5;
3324 }
3325 else
3326 {
3327 format = ILLEGAL_FMT;
3328 as_bad ("Invalid FP Operand Format: %3s", *s);
3329 }
3330 }
3331
3332 return format;
3333 }
3334
3335 /* Convert from a selector string into a selector type. */
3336
3337 static int
3338 pa_chk_field_selector (str)
3339 char **str;
3340 {
3341 int middle, low, high;
3342 int cmp;
3343 char name[3];
3344
3345 /* Read past any whitespace. */
3346 /* FIXME: should we read past newlines and formfeeds??? */
3347 while (**str == ' ' || **str == '\t' || **str == '\n' || **str == '\f')
3348 *str = *str + 1;
3349
3350 if ((*str)[1] == '\'' || (*str)[1] == '%')
3351 name[0] = tolower ((*str)[0]),
3352 name[1] = 0;
3353 else if ((*str)[2] == '\'' || (*str)[2] == '%')
3354 name[0] = tolower ((*str)[0]),
3355 name[1] = tolower ((*str)[1]),
3356 name[2] = 0;
3357 else
3358 return e_fsel;
3359
3360 low = 0;
3361 high = sizeof (selector_table) / sizeof (struct selector_entry) - 1;
3362
3363 do
3364 {
3365 middle = (low + high) / 2;
3366 cmp = strcmp (name, selector_table[middle].prefix);
3367 if (cmp < 0)
3368 high = middle - 1;
3369 else if (cmp > 0)
3370 low = middle + 1;
3371 else
3372 {
3373 *str += strlen (name) + 1;
3374 return selector_table[middle].field_selector;
3375 }
3376 }
3377 while (low <= high);
3378
3379 return e_fsel;
3380 }
3381
3382 /* Mark (via expr_end) the end of an expression (I think). FIXME. */
3383
3384 static int
3385 get_expression (str)
3386 char *str;
3387 {
3388 char *save_in;
3389 asection *seg;
3390
3391 save_in = input_line_pointer;
3392 input_line_pointer = str;
3393 seg = expression (&the_insn.exp);
3394 if (!(seg == absolute_section
3395 || seg == undefined_section
3396 || SEG_NORMAL (seg)))
3397 {
3398 as_warn ("Bad segment in expression.");
3399 expr_end = input_line_pointer;
3400 input_line_pointer = save_in;
3401 return 1;
3402 }
3403 expr_end = input_line_pointer;
3404 input_line_pointer = save_in;
3405 return 0;
3406 }
3407
3408 /* Mark (via expr_end) the end of an absolute expression. FIXME. */
3409 static int
3410 pa_get_absolute_expression (insn, strp)
3411 struct pa_it *insn;
3412 char **strp;
3413 {
3414 char *save_in;
3415
3416 insn->field_selector = pa_chk_field_selector (strp);
3417 save_in = input_line_pointer;
3418 input_line_pointer = *strp;
3419 expression (&insn->exp);
3420 if (insn->exp.X_op != O_constant)
3421 {
3422 as_bad ("Bad segment (should be absolute).");
3423 expr_end = input_line_pointer;
3424 input_line_pointer = save_in;
3425 return 0;
3426 }
3427 expr_end = input_line_pointer;
3428 input_line_pointer = save_in;
3429 return evaluate_absolute (insn);
3430 }
3431
3432 /* Evaluate an absolute expression EXP which may be modified by
3433 the selector FIELD_SELECTOR. Return the value of the expression. */
3434 static int
3435 evaluate_absolute (insn)
3436 struct pa_it *insn;
3437 {
3438 int value;
3439 expressionS exp;
3440 int field_selector = insn->field_selector;
3441
3442 exp = insn->exp;
3443 value = exp.X_add_number;
3444
3445 switch (field_selector)
3446 {
3447 /* No change. */
3448 case e_fsel:
3449 break;
3450
3451 /* If bit 21 is on then add 0x800 and arithmetic shift right 11 bits. */
3452 case e_lssel:
3453 if (value & 0x00000400)
3454 value += 0x800;
3455 value = (value & 0xfffff800) >> 11;
3456 break;
3457
3458 /* Sign extend from bit 21. */
3459 case e_rssel:
3460 if (value & 0x00000400)
3461 value |= 0xfffff800;
3462 else
3463 value &= 0x7ff;
3464 break;
3465
3466 /* Arithmetic shift right 11 bits. */
3467 case e_lsel:
3468 value = (value & 0xfffff800) >> 11;
3469 break;
3470
3471 /* Set bits 0-20 to zero. */
3472 case e_rsel:
3473 value = value & 0x7ff;
3474 break;
3475
3476 /* Add 0x800 and arithmetic shift right 11 bits. */
3477 case e_ldsel:
3478 value += 0x800;
3479 value = (value & 0xfffff800) >> 11;
3480 break;
3481
3482 /* Set bitgs 0-21 to one. */
3483 case e_rdsel:
3484 value |= 0xfffff800;
3485 break;
3486
3487 #define RSEL_ROUND(c) (((c) + 0x1000) & ~0x1fff)
3488 case e_rrsel:
3489 value = (RSEL_ROUND (value) & 0x7ff) + (value - RSEL_ROUND (value));
3490 break;
3491
3492 case e_lrsel:
3493 value = (RSEL_ROUND (value) >> 11) & 0x1fffff;
3494 break;
3495 #undef RSEL_ROUND
3496
3497 default:
3498 BAD_CASE (field_selector);
3499 break;
3500 }
3501 return value;
3502 }
3503
3504 /* Given an argument location specification return the associated
3505 argument location number. */
3506
3507 static unsigned int
3508 pa_build_arg_reloc (type_name)
3509 char *type_name;
3510 {
3511
3512 if (strncasecmp (type_name, "no", 2) == 0)
3513 return 0;
3514 if (strncasecmp (type_name, "gr", 2) == 0)
3515 return 1;
3516 else if (strncasecmp (type_name, "fr", 2) == 0)
3517 return 2;
3518 else if (strncasecmp (type_name, "fu", 2) == 0)
3519 return 3;
3520 else
3521 as_bad ("Invalid argument location: %s\n", type_name);
3522
3523 return 0;
3524 }
3525
3526 /* Encode and return an argument relocation specification for
3527 the given register in the location specified by arg_reloc. */
3528
3529 static unsigned int
3530 pa_align_arg_reloc (reg, arg_reloc)
3531 unsigned int reg;
3532 unsigned int arg_reloc;
3533 {
3534 unsigned int new_reloc;
3535
3536 new_reloc = arg_reloc;
3537 switch (reg)
3538 {
3539 case 0:
3540 new_reloc <<= 8;
3541 break;
3542 case 1:
3543 new_reloc <<= 6;
3544 break;
3545 case 2:
3546 new_reloc <<= 4;
3547 break;
3548 case 3:
3549 new_reloc <<= 2;
3550 break;
3551 default:
3552 as_bad ("Invalid argument description: %d", reg);
3553 }
3554
3555 return new_reloc;
3556 }
3557
3558 /* Parse a PA nullification completer (,n). Return nonzero if the
3559 completer was found; return zero if no completer was found. */
3560
3561 static int
3562 pa_parse_nullif (s)
3563 char **s;
3564 {
3565 int nullif;
3566
3567 nullif = 0;
3568 if (**s == ',')
3569 {
3570 *s = *s + 1;
3571 if (strncasecmp (*s, "n", 1) == 0)
3572 nullif = 1;
3573 else
3574 {
3575 as_bad ("Invalid Nullification: (%c)", **s);
3576 nullif = 0;
3577 }
3578 *s = *s + 1;
3579 }
3580
3581 return nullif;
3582 }
3583
3584 /* Parse a non-negated compare/subtract completer returning the
3585 number (for encoding in instrutions) of the given completer.
3586
3587 ISBRANCH specifies whether or not this is parsing a condition
3588 completer for a branch (vs a nullification completer for a
3589 computational instruction. */
3590
3591 static int
3592 pa_parse_nonneg_cmpsub_cmpltr (s, isbranch)
3593 char **s;
3594 int isbranch;
3595 {
3596 int cmpltr;
3597 char *name = *s + 1;
3598 char c;
3599 char *save_s = *s;
3600
3601 cmpltr = 0;
3602 if (**s == ',')
3603 {
3604 *s += 1;
3605 while (**s != ',' && **s != ' ' && **s != '\t')
3606 *s += 1;
3607 c = **s;
3608 **s = 0x00;
3609 if (strcmp (name, "=") == 0)
3610 {
3611 cmpltr = 1;
3612 }
3613 else if (strcmp (name, "<") == 0)
3614 {
3615 cmpltr = 2;
3616 }
3617 else if (strcmp (name, "<=") == 0)
3618 {
3619 cmpltr = 3;
3620 }
3621 else if (strcmp (name, "<<") == 0)
3622 {
3623 cmpltr = 4;
3624 }
3625 else if (strcmp (name, "<<=") == 0)
3626 {
3627 cmpltr = 5;
3628 }
3629 else if (strcasecmp (name, "sv") == 0)
3630 {
3631 cmpltr = 6;
3632 }
3633 else if (strcasecmp (name, "od") == 0)
3634 {
3635 cmpltr = 7;
3636 }
3637 /* If we have something like addb,n then there is no condition
3638 completer. */
3639 else if (strcasecmp (name, "n") == 0 && isbranch)
3640 {
3641 cmpltr = 0;
3642 }
3643 else
3644 {
3645 cmpltr = -1;
3646 }
3647 **s = c;
3648 }
3649
3650 /* Reset pointers if this was really a ,n for a branch instruction. */
3651 if (cmpltr == 0 && *name == 'n' && isbranch)
3652 *s = save_s;
3653
3654 return cmpltr;
3655 }
3656
3657 /* Parse a negated compare/subtract completer returning the
3658 number (for encoding in instrutions) of the given completer.
3659
3660 ISBRANCH specifies whether or not this is parsing a condition
3661 completer for a branch (vs a nullification completer for a
3662 computational instruction. */
3663
3664 static int
3665 pa_parse_neg_cmpsub_cmpltr (s, isbranch)
3666 char **s;
3667 int isbranch;
3668 {
3669 int cmpltr;
3670 char *name = *s + 1;
3671 char c;
3672 char *save_s = *s;
3673
3674 cmpltr = 0;
3675 if (**s == ',')
3676 {
3677 *s += 1;
3678 while (**s != ',' && **s != ' ' && **s != '\t')
3679 *s += 1;
3680 c = **s;
3681 **s = 0x00;
3682 if (strcasecmp (name, "tr") == 0)
3683 {
3684 cmpltr = 0;
3685 }
3686 else if (strcmp (name, "<>") == 0)
3687 {
3688 cmpltr = 1;
3689 }
3690 else if (strcmp (name, ">=") == 0)
3691 {
3692 cmpltr = 2;
3693 }
3694 else if (strcmp (name, ">") == 0)
3695 {
3696 cmpltr = 3;
3697 }
3698 else if (strcmp (name, ">>=") == 0)
3699 {
3700 cmpltr = 4;
3701 }
3702 else if (strcmp (name, ">>") == 0)
3703 {
3704 cmpltr = 5;
3705 }
3706 else if (strcasecmp (name, "nsv") == 0)
3707 {
3708 cmpltr = 6;
3709 }
3710 else if (strcasecmp (name, "ev") == 0)
3711 {
3712 cmpltr = 7;
3713 }
3714 /* If we have something like addb,n then there is no condition
3715 completer. */
3716 else if (strcasecmp (name, "n") == 0 && isbranch)
3717 {
3718 cmpltr = 0;
3719 }
3720 else
3721 {
3722 cmpltr = -1;
3723 }
3724 **s = c;
3725 }
3726
3727 /* Reset pointers if this was really a ,n for a branch instruction. */
3728 if (cmpltr == 0 && *name == 'n' && isbranch)
3729 *s = save_s;
3730
3731 return cmpltr;
3732 }
3733
3734 /* Parse a non-negated addition completer returning the number
3735 (for encoding in instrutions) of the given completer.
3736
3737 ISBRANCH specifies whether or not this is parsing a condition
3738 completer for a branch (vs a nullification completer for a
3739 computational instruction. */
3740
3741 static int
3742 pa_parse_nonneg_add_cmpltr (s, isbranch)
3743 char **s;
3744 int isbranch;
3745 {
3746 int cmpltr;
3747 char *name = *s + 1;
3748 char c;
3749 char *save_s = *s;
3750
3751 cmpltr = 0;
3752 if (**s == ',')
3753 {
3754 *s += 1;
3755 while (**s != ',' && **s != ' ' && **s != '\t')
3756 *s += 1;
3757 c = **s;
3758 **s = 0x00;
3759 if (strcmp (name, "=") == 0)
3760 {
3761 cmpltr = 1;
3762 }
3763 else if (strcmp (name, "<") == 0)
3764 {
3765 cmpltr = 2;
3766 }
3767 else if (strcmp (name, "<=") == 0)
3768 {
3769 cmpltr = 3;
3770 }
3771 else if (strcasecmp (name, "nuv") == 0)
3772 {
3773 cmpltr = 4;
3774 }
3775 else if (strcasecmp (name, "znv") == 0)
3776 {
3777 cmpltr = 5;
3778 }
3779 else if (strcasecmp (name, "sv") == 0)
3780 {
3781 cmpltr = 6;
3782 }
3783 else if (strcasecmp (name, "od") == 0)
3784 {
3785 cmpltr = 7;
3786 }
3787 /* If we have something like addb,n then there is no condition
3788 completer. */
3789 else if (strcasecmp (name, "n") == 0 && isbranch)
3790 {
3791 cmpltr = 0;
3792 }
3793 else
3794 {
3795 cmpltr = -1;
3796 }
3797 **s = c;
3798 }
3799
3800 /* Reset pointers if this was really a ,n for a branch instruction. */
3801 if (cmpltr == 0 && *name == 'n' && isbranch)
3802 *s = save_s;
3803
3804 return cmpltr;
3805 }
3806
3807 /* Parse a negated addition completer returning the number
3808 (for encoding in instrutions) of the given completer.
3809
3810 ISBRANCH specifies whether or not this is parsing a condition
3811 completer for a branch (vs a nullification completer for a
3812 computational instruction. */
3813
3814 static int
3815 pa_parse_neg_add_cmpltr (s, isbranch)
3816 char **s;
3817 int isbranch;
3818 {
3819 int cmpltr;
3820 char *name = *s + 1;
3821 char c;
3822 char *save_s = *s;
3823
3824 cmpltr = 0;
3825 if (**s == ',')
3826 {
3827 *s += 1;
3828 while (**s != ',' && **s != ' ' && **s != '\t')
3829 *s += 1;
3830 c = **s;
3831 **s = 0x00;
3832 if (strcasecmp (name, "tr") == 0)
3833 {
3834 cmpltr = 0;
3835 }
3836 else if (strcmp (name, "<>") == 0)
3837 {
3838 cmpltr = 1;
3839 }
3840 else if (strcmp (name, ">=") == 0)
3841 {
3842 cmpltr = 2;
3843 }
3844 else if (strcmp (name, ">") == 0)
3845 {
3846 cmpltr = 3;
3847 }
3848 else if (strcasecmp (name, "uv") == 0)
3849 {
3850 cmpltr = 4;
3851 }
3852 else if (strcasecmp (name, "vnz") == 0)
3853 {
3854 cmpltr = 5;
3855 }
3856 else if (strcasecmp (name, "nsv") == 0)
3857 {
3858 cmpltr = 6;
3859 }
3860 else if (strcasecmp (name, "ev") == 0)
3861 {
3862 cmpltr = 7;
3863 }
3864 /* If we have something like addb,n then there is no condition
3865 completer. */
3866 else if (strcasecmp (name, "n") == 0 && isbranch)
3867 {
3868 cmpltr = 0;
3869 }
3870 else
3871 {
3872 cmpltr = -1;
3873 }
3874 **s = c;
3875 }
3876
3877 /* Reset pointers if this was really a ,n for a branch instruction. */
3878 if (cmpltr == 0 && *name == 'n' && isbranch)
3879 *s = save_s;
3880
3881 return cmpltr;
3882 }
3883
3884 /* Handle an alignment directive. Special so that we can update the
3885 alignment of the subspace if necessary. */
3886 static void
3887 pa_align (bytes)
3888 {
3889 /* We must have a valid space and subspace. */
3890 pa_check_current_space_and_subspace ();
3891
3892 /* Let the generic gas code do most of the work. */
3893 s_align_bytes (bytes);
3894
3895 /* If bytes is a power of 2, then update the current subspace's
3896 alignment if necessary. */
3897 if (log2 (bytes) != -1)
3898 record_alignment (current_subspace->ssd_seg, log2 (bytes));
3899 }
3900
3901 /* Handle a .BLOCK type pseudo-op. */
3902
3903 static void
3904 pa_block (z)
3905 int z;
3906 {
3907 char *p;
3908 long int temp_fill;
3909 unsigned int temp_size;
3910 int i;
3911
3912 /* We must have a valid space and subspace. */
3913 pa_check_current_space_and_subspace ();
3914
3915 temp_size = get_absolute_expression ();
3916
3917 /* Always fill with zeros, that's what the HP assembler does. */
3918 temp_fill = 0;
3919
3920 p = frag_var (rs_fill, (int) temp_size, (int) temp_size,
3921 (relax_substateT) 0, (symbolS *) 0, 1, NULL);
3922 bzero (p, temp_size);
3923
3924 /* Convert 2 bytes at a time. */
3925
3926 for (i = 0; i < temp_size; i += 2)
3927 {
3928 md_number_to_chars (p + i,
3929 (valueT) temp_fill,
3930 (int) ((temp_size - i) > 2 ? 2 : (temp_size - i)));
3931 }
3932
3933 pa_undefine_label ();
3934 demand_empty_rest_of_line ();
3935 }
3936
3937 /* Handle a .CALL pseudo-op. This involves storing away information
3938 about where arguments are to be found so the linker can detect
3939 (and correct) argument location mismatches between caller and callee. */
3940
3941 static void
3942 pa_call (unused)
3943 int unused;
3944 {
3945 /* We must have a valid space and subspace. */
3946 pa_check_current_space_and_subspace ();
3947
3948 pa_call_args (&last_call_desc);
3949 demand_empty_rest_of_line ();
3950 }
3951
3952 /* Do the dirty work of building a call descriptor which describes
3953 where the caller placed arguments to a function call. */
3954
3955 static void
3956 pa_call_args (call_desc)
3957 struct call_desc *call_desc;
3958 {
3959 char *name, c, *p;
3960 unsigned int temp, arg_reloc;
3961
3962 while (!is_end_of_statement ())
3963 {
3964 name = input_line_pointer;
3965 c = get_symbol_end ();
3966 /* Process a source argument. */
3967 if ((strncasecmp (name, "argw", 4) == 0))
3968 {
3969 temp = atoi (name + 4);
3970 p = input_line_pointer;
3971 *p = c;
3972 input_line_pointer++;
3973 name = input_line_pointer;
3974 c = get_symbol_end ();
3975 arg_reloc = pa_build_arg_reloc (name);
3976 call_desc->arg_reloc |= pa_align_arg_reloc (temp, arg_reloc);
3977 }
3978 /* Process a return value. */
3979 else if ((strncasecmp (name, "rtnval", 6) == 0))
3980 {
3981 p = input_line_pointer;
3982 *p = c;
3983 input_line_pointer++;
3984 name = input_line_pointer;
3985 c = get_symbol_end ();
3986 arg_reloc = pa_build_arg_reloc (name);
3987 call_desc->arg_reloc |= (arg_reloc & 0x3);
3988 }
3989 else
3990 {
3991 as_bad ("Invalid .CALL argument: %s", name);
3992 }
3993 p = input_line_pointer;
3994 *p = c;
3995 if (!is_end_of_statement ())
3996 input_line_pointer++;
3997 }
3998 }
3999
4000 /* Return TRUE if FRAG1 and FRAG2 are the same. */
4001
4002 static int
4003 is_same_frag (frag1, frag2)
4004 fragS *frag1;
4005 fragS *frag2;
4006 {
4007
4008 if (frag1 == NULL)
4009 return (FALSE);
4010 else if (frag2 == NULL)
4011 return (FALSE);
4012 else if (frag1 == frag2)
4013 return (TRUE);
4014 else if (frag2->fr_type == rs_fill && frag2->fr_fix == 0)
4015 return (is_same_frag (frag1, frag2->fr_next));
4016 else
4017 return (FALSE);
4018 }
4019
4020 #ifdef OBJ_ELF
4021 /* Build an entry in the UNWIND subspace from the given function
4022 attributes in CALL_INFO. This is not needed for SOM as using
4023 R_ENTRY and R_EXIT relocations allow the linker to handle building
4024 of the unwind spaces. */
4025
4026 static void
4027 pa_build_unwind_subspace (call_info)
4028 struct call_info *call_info;
4029 {
4030 char *unwind;
4031 asection *seg, *save_seg;
4032 subsegT subseg, save_subseg;
4033 int i;
4034 char c, *p;
4035
4036 /* Get into the right seg/subseg. This may involve creating
4037 the seg the first time through. Make sure to have the
4038 old seg/subseg so that we can reset things when we are done. */
4039 subseg = SUBSEG_UNWIND;
4040 seg = bfd_get_section_by_name (stdoutput, UNWIND_SECTION_NAME);
4041 if (seg == ASEC_NULL)
4042 {
4043 seg = bfd_make_section_old_way (stdoutput, UNWIND_SECTION_NAME);
4044 bfd_set_section_flags (stdoutput, seg,
4045 SEC_READONLY | SEC_HAS_CONTENTS
4046 | SEC_LOAD | SEC_RELOC);
4047 }
4048
4049 save_seg = now_seg;
4050 save_subseg = now_subseg;
4051 subseg_set (seg, subseg);
4052
4053
4054 /* Get some space to hold relocation information for the unwind
4055 descriptor. */
4056 p = frag_more (4);
4057
4058 /* Relocation info. for start offset of the function. */
4059 fix_new_hppa (frag_now, p - frag_now->fr_literal, 4,
4060 call_info->start_symbol, (offsetT) 0,
4061 (expressionS *) NULL, 0, R_PARISC_DIR32, e_fsel, 32, 0, NULL);
4062
4063 p = frag_more (4);
4064
4065 /* Relocation info. for end offset of the function. */
4066 fix_new_hppa (frag_now, p - frag_now->fr_literal, 4,
4067 call_info->start_symbol,
4068 call_info->function_size,
4069 (expressionS *) NULL, 0, R_PARISC_DIR32, e_fsel, 32, 0, NULL);
4070
4071 /* Dump it. */
4072 unwind = (char *) &call_info->ci_unwind;
4073 for (i = 8; i < sizeof (struct unwind_table); i++)
4074 {
4075 c = *(unwind + i);
4076 {
4077 FRAG_APPEND_1_CHAR (c);
4078 }
4079 }
4080
4081 /* Return back to the original segment/subsegment. */
4082 subseg_set (save_seg, save_subseg);
4083 }
4084 #endif
4085
4086 /* Process a .CALLINFO pseudo-op. This information is used later
4087 to build unwind descriptors and maybe one day to support
4088 .ENTER and .LEAVE. */
4089
4090 static void
4091 pa_callinfo (unused)
4092 int unused;
4093 {
4094 char *name, c, *p;
4095 int temp;
4096
4097 /* We must have a valid space and subspace. */
4098 pa_check_current_space_and_subspace ();
4099
4100 /* .CALLINFO must appear within a procedure definition. */
4101 if (!within_procedure)
4102 as_bad (".callinfo is not within a procedure definition");
4103
4104 /* Mark the fact that we found the .CALLINFO for the
4105 current procedure. */
4106 callinfo_found = TRUE;
4107
4108 /* Iterate over the .CALLINFO arguments. */
4109 while (!is_end_of_statement ())
4110 {
4111 name = input_line_pointer;
4112 c = get_symbol_end ();
4113 /* Frame size specification. */
4114 if ((strncasecmp (name, "frame", 5) == 0))
4115 {
4116 p = input_line_pointer;
4117 *p = c;
4118 input_line_pointer++;
4119 temp = get_absolute_expression ();
4120 if ((temp & 0x3) != 0)
4121 {
4122 as_bad ("FRAME parameter must be a multiple of 8: %d\n", temp);
4123 temp = 0;
4124 }
4125
4126 /* callinfo is in bytes and unwind_desc is in 8 byte units. */
4127 last_call_info->ci_unwind.descriptor.frame_size = temp / 8;
4128
4129 }
4130 /* Entry register (GR, GR and SR) specifications. */
4131 else if ((strncasecmp (name, "entry_gr", 8) == 0))
4132 {
4133 p = input_line_pointer;
4134 *p = c;
4135 input_line_pointer++;
4136 temp = get_absolute_expression ();
4137 /* The HP assembler accepts 19 as the high bound for ENTRY_GR
4138 even though %r19 is caller saved. I think this is a bug in
4139 the HP assembler, and we are not going to emulate it. */
4140 if (temp < 3 || temp > 18)
4141 as_bad ("Value for ENTRY_GR must be in the range 3..18\n");
4142 last_call_info->ci_unwind.descriptor.entry_gr = temp - 2;
4143 }
4144 else if ((strncasecmp (name, "entry_fr", 8) == 0))
4145 {
4146 p = input_line_pointer;
4147 *p = c;
4148 input_line_pointer++;
4149 temp = get_absolute_expression ();
4150 /* Similarly the HP assembler takes 31 as the high bound even
4151 though %fr21 is the last callee saved floating point register. */
4152 if (temp < 12 || temp > 21)
4153 as_bad ("Value for ENTRY_FR must be in the range 12..21\n");
4154 last_call_info->ci_unwind.descriptor.entry_fr = temp - 11;
4155 }
4156 else if ((strncasecmp (name, "entry_sr", 8) == 0))
4157 {
4158 p = input_line_pointer;
4159 *p = c;
4160 input_line_pointer++;
4161 temp = get_absolute_expression ();
4162 if (temp != 3)
4163 as_bad ("Value for ENTRY_SR must be 3\n");
4164 }
4165 /* Note whether or not this function performs any calls. */
4166 else if ((strncasecmp (name, "calls", 5) == 0) ||
4167 (strncasecmp (name, "caller", 6) == 0))
4168 {
4169 p = input_line_pointer;
4170 *p = c;
4171 }
4172 else if ((strncasecmp (name, "no_calls", 8) == 0))
4173 {
4174 p = input_line_pointer;
4175 *p = c;
4176 }
4177 /* Should RP be saved into the stack. */
4178 else if ((strncasecmp (name, "save_rp", 7) == 0))
4179 {
4180 p = input_line_pointer;
4181 *p = c;
4182 last_call_info->ci_unwind.descriptor.save_rp = 1;
4183 }
4184 /* Likewise for SP. */
4185 else if ((strncasecmp (name, "save_sp", 7) == 0))
4186 {
4187 p = input_line_pointer;
4188 *p = c;
4189 last_call_info->ci_unwind.descriptor.save_sp = 1;
4190 }
4191 /* Is this an unwindable procedure. If so mark it so
4192 in the unwind descriptor. */
4193 else if ((strncasecmp (name, "no_unwind", 9) == 0))
4194 {
4195 p = input_line_pointer;
4196 *p = c;
4197 last_call_info->ci_unwind.descriptor.cannot_unwind = 1;
4198 }
4199 /* Is this an interrupt routine. If so mark it in the
4200 unwind descriptor. */
4201 else if ((strncasecmp (name, "hpux_int", 7) == 0))
4202 {
4203 p = input_line_pointer;
4204 *p = c;
4205 last_call_info->ci_unwind.descriptor.hpux_interrupt_marker = 1;
4206 }
4207 /* Is this a millicode routine. "millicode" isn't in my
4208 assembler manual, but my copy is old. The HP assembler
4209 accepts it, and there's a place in the unwind descriptor
4210 to drop the information, so we'll accept it too. */
4211 else if ((strncasecmp (name, "millicode", 9) == 0))
4212 {
4213 p = input_line_pointer;
4214 *p = c;
4215 last_call_info->ci_unwind.descriptor.millicode = 1;
4216 }
4217 else
4218 {
4219 as_bad ("Invalid .CALLINFO argument: %s", name);
4220 *input_line_pointer = c;
4221 }
4222 if (!is_end_of_statement ())
4223 input_line_pointer++;
4224 }
4225
4226 demand_empty_rest_of_line ();
4227 }
4228
4229 /* Switch into the code subspace. */
4230
4231 static void
4232 pa_code (unused)
4233 int unused;
4234 {
4235 current_space = is_defined_space ("$TEXT$");
4236 current_subspace
4237 = pa_subsegment_to_subspace (current_space->sd_seg, 0);
4238 s_text (0);
4239 pa_undefine_label ();
4240 }
4241
4242 /* This is different than the standard GAS s_comm(). On HP9000/800 machines,
4243 the .comm pseudo-op has the following symtax:
4244
4245 <label> .comm <length>
4246
4247 where <label> is optional and is a symbol whose address will be the start of
4248 a block of memory <length> bytes long. <length> must be an absolute
4249 expression. <length> bytes will be allocated in the current space
4250 and subspace. */
4251
4252 static void
4253 pa_comm (unused)
4254 int unused;
4255 {
4256 unsigned int size;
4257 symbolS *symbol;
4258 label_symbol_struct *label_symbol = pa_get_label ();
4259
4260 if (label_symbol)
4261 symbol = label_symbol->lss_label;
4262 else
4263 symbol = NULL;
4264
4265 SKIP_WHITESPACE ();
4266 size = get_absolute_expression ();
4267
4268 if (symbol)
4269 {
4270 /* It is incorrect to check S_IS_DEFINED at this point as
4271 the symbol will *always* be defined. FIXME. How to
4272 correctly determine when this label really as been
4273 defined before. */
4274 if (S_GET_VALUE (symbol))
4275 {
4276 if (S_GET_VALUE (symbol) != size)
4277 {
4278 as_warn ("Length of .comm \"%s\" is already %ld. Not changed.",
4279 S_GET_NAME (symbol), S_GET_VALUE (symbol));
4280 return;
4281 }
4282 }
4283 else
4284 {
4285 S_SET_VALUE (symbol, size);
4286 S_SET_SEGMENT (symbol, bfd_und_section_ptr);
4287 S_SET_EXTERNAL (symbol);
4288
4289 /* colon() has already set the frag to the current location in the
4290 $BSS$ subspace; we need to reset the fragment to the zero address
4291 fragment. */
4292 symbol->sy_frag = &zero_address_frag;
4293 }
4294 }
4295 demand_empty_rest_of_line ();
4296 }
4297
4298 /* Process a .END pseudo-op. */
4299
4300 static void
4301 pa_end (unused)
4302 int unused;
4303 {
4304 demand_empty_rest_of_line ();
4305 }
4306
4307 /* Process a .ENTER pseudo-op. This is not supported. */
4308 static void
4309 pa_enter (unused)
4310 int unused;
4311 {
4312 /* We must have a valid space and subspace. */
4313 pa_check_current_space_and_subspace ();
4314
4315 abort ();
4316 }
4317
4318 /* Process a .ENTRY pseudo-op. .ENTRY marks the beginning of the
4319 procesure. */
4320 static void
4321 pa_entry (unused)
4322 int unused;
4323 {
4324 /* We must have a valid space and subspace. */
4325 pa_check_current_space_and_subspace ();
4326
4327 if (!within_procedure)
4328 as_bad ("Misplaced .entry. Ignored.");
4329 else
4330 {
4331 if (!callinfo_found)
4332 as_bad ("Missing .callinfo.");
4333 }
4334 demand_empty_rest_of_line ();
4335 within_entry_exit = TRUE;
4336
4337 #ifdef OBJ_SOM
4338 /* SOM defers building of unwind descriptors until the link phase.
4339 The assembler is responsible for creating an R_ENTRY relocation
4340 to mark the beginning of a region and hold the unwind bits, and
4341 for creating an R_EXIT relocation to mark the end of the region.
4342
4343 FIXME. ELF should be using the same conventions! The problem
4344 is an unwind requires too much relocation space. Hmmm. Maybe
4345 if we split the unwind bits up between the relocations which
4346 denote the entry and exit points. */
4347 if (last_call_info->start_symbol != NULL)
4348 {
4349 char *where = frag_more (0);
4350
4351 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
4352 NULL, (offsetT) 0, NULL,
4353 0, R_HPPA_ENTRY, e_fsel, 0, 0,
4354 (int *) &last_call_info->ci_unwind.descriptor);
4355 }
4356 #endif
4357 }
4358
4359 /* Handle a .EQU pseudo-op. */
4360
4361 static void
4362 pa_equ (reg)
4363 int reg;
4364 {
4365 label_symbol_struct *label_symbol = pa_get_label ();
4366 symbolS *symbol;
4367
4368 if (label_symbol)
4369 {
4370 symbol = label_symbol->lss_label;
4371 if (reg)
4372 S_SET_VALUE (symbol, pa_parse_number (&input_line_pointer, 0));
4373 else
4374 S_SET_VALUE (symbol, (unsigned int) get_absolute_expression ());
4375 S_SET_SEGMENT (symbol, bfd_abs_section_ptr);
4376 }
4377 else
4378 {
4379 if (reg)
4380 as_bad (".REG must use a label");
4381 else
4382 as_bad (".EQU must use a label");
4383 }
4384
4385 pa_undefine_label ();
4386 demand_empty_rest_of_line ();
4387 }
4388
4389 /* Helper function. Does processing for the end of a function. This
4390 usually involves creating some relocations or building special
4391 symbols to mark the end of the function. */
4392
4393 static void
4394 process_exit ()
4395 {
4396 char *where;
4397
4398 where = frag_more (0);
4399
4400 last_call_info->function_size
4401 = where - frag_now->fr_literal - S_GET_VALUE (last_call_info->start_symbol);
4402
4403 #ifdef OBJ_ELF
4404 /* Mark the end of the function, stuff away the location of the frag
4405 for the end of the function, and finally call pa_build_unwind_subspace
4406 to add an entry in the unwind table. */
4407 pa_build_unwind_subspace (last_call_info);
4408 #else
4409 /* SOM defers building of unwind descriptors until the link phase.
4410 The assembler is responsible for creating an R_ENTRY relocation
4411 to mark the beginning of a region and hold the unwind bits, and
4412 for creating an R_EXIT relocation to mark the end of the region.
4413
4414 FIXME. ELF should be using the same conventions! The problem
4415 is an unwind requires too much relocation space. Hmmm. Maybe
4416 if we split the unwind bits up between the relocations which
4417 denote the entry and exit points. */
4418 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
4419 NULL, (offsetT) 0,
4420 NULL, 0, R_HPPA_EXIT, e_fsel, 0, 0,
4421 (int *) &last_call_info->ci_unwind.descriptor + 1);
4422 #endif
4423 }
4424
4425 /* Process a .EXIT pseudo-op. */
4426
4427 static void
4428 pa_exit (unused)
4429 int unused;
4430 {
4431 /* We must have a valid space and subspace. */
4432 pa_check_current_space_and_subspace ();
4433
4434 if (!within_procedure)
4435 as_bad (".EXIT must appear within a procedure");
4436 else
4437 {
4438 if (!callinfo_found)
4439 as_bad ("Missing .callinfo");
4440 else
4441 {
4442 if (!within_entry_exit)
4443 as_bad ("No .ENTRY for this .EXIT");
4444 else
4445 {
4446 within_entry_exit = FALSE;
4447 process_exit ();
4448 }
4449 }
4450 }
4451 demand_empty_rest_of_line ();
4452 }
4453
4454 /* Process a .EXPORT directive. This makes functions external
4455 and provides information such as argument relocation entries
4456 to callers. */
4457
4458 static void
4459 pa_export (unused)
4460 int unused;
4461 {
4462 char *name, c, *p;
4463 symbolS *symbol;
4464
4465 name = input_line_pointer;
4466 c = get_symbol_end ();
4467 /* Make sure the given symbol exists. */
4468 if ((symbol = symbol_find_or_make (name)) == NULL)
4469 {
4470 as_bad ("Cannot define export symbol: %s\n", name);
4471 p = input_line_pointer;
4472 *p = c;
4473 input_line_pointer++;
4474 }
4475 else
4476 {
4477 /* OK. Set the external bits and process argument relocations. */
4478 S_SET_EXTERNAL (symbol);
4479 p = input_line_pointer;
4480 *p = c;
4481 if (!is_end_of_statement ())
4482 {
4483 input_line_pointer++;
4484 pa_type_args (symbol, 1);
4485 }
4486 }
4487
4488 demand_empty_rest_of_line ();
4489 }
4490
4491 /* Helper function to process arguments to a .EXPORT pseudo-op. */
4492
4493 static void
4494 pa_type_args (symbolP, is_export)
4495 symbolS *symbolP;
4496 int is_export;
4497 {
4498 char *name, c, *p;
4499 unsigned int temp, arg_reloc;
4500 pa_symbol_type type = SYMBOL_TYPE_UNKNOWN;
4501 obj_symbol_type *symbol = (obj_symbol_type *) symbolP->bsym;
4502
4503 if (strncasecmp (input_line_pointer, "absolute", 8) == 0)
4504
4505 {
4506 input_line_pointer += 8;
4507 symbolP->bsym->flags &= ~BSF_FUNCTION;
4508 S_SET_SEGMENT (symbolP, bfd_abs_section_ptr);
4509 type = SYMBOL_TYPE_ABSOLUTE;
4510 }
4511 else if (strncasecmp (input_line_pointer, "code", 4) == 0)
4512 {
4513 input_line_pointer += 4;
4514 /* IMPORTing/EXPORTing CODE types for functions is meaningless for SOM,
4515 instead one should be IMPORTing/EXPORTing ENTRY types.
4516
4517 Complain if one tries to EXPORT a CODE type since that's never
4518 done. Both GCC and HP C still try to IMPORT CODE types, so
4519 silently fix them to be ENTRY types. */
4520 if (symbolP->bsym->flags & BSF_FUNCTION)
4521 {
4522 if (is_export)
4523 as_tsktsk ("Using ENTRY rather than CODE in export directive for %s", symbolP->bsym->name);
4524
4525 symbolP->bsym->flags |= BSF_FUNCTION;
4526 type = SYMBOL_TYPE_ENTRY;
4527 }
4528 else
4529 {
4530 symbolP->bsym->flags &= ~BSF_FUNCTION;
4531 type = SYMBOL_TYPE_CODE;
4532 }
4533 }
4534 else if (strncasecmp (input_line_pointer, "data", 4) == 0)
4535 {
4536 input_line_pointer += 4;
4537 symbolP->bsym->flags &= ~BSF_FUNCTION;
4538 type = SYMBOL_TYPE_DATA;
4539 }
4540 else if ((strncasecmp (input_line_pointer, "entry", 5) == 0))
4541 {
4542 input_line_pointer += 5;
4543 symbolP->bsym->flags |= BSF_FUNCTION;
4544 type = SYMBOL_TYPE_ENTRY;
4545 }
4546 else if (strncasecmp (input_line_pointer, "millicode", 9) == 0)
4547 {
4548 input_line_pointer += 9;
4549 symbolP->bsym->flags |= BSF_FUNCTION;
4550 type = SYMBOL_TYPE_MILLICODE;
4551 }
4552 else if (strncasecmp (input_line_pointer, "plabel", 6) == 0)
4553 {
4554 input_line_pointer += 6;
4555 symbolP->bsym->flags &= ~BSF_FUNCTION;
4556 type = SYMBOL_TYPE_PLABEL;
4557 }
4558 else if (strncasecmp (input_line_pointer, "pri_prog", 8) == 0)
4559 {
4560 input_line_pointer += 8;
4561 symbolP->bsym->flags |= BSF_FUNCTION;
4562 type = SYMBOL_TYPE_PRI_PROG;
4563 }
4564 else if (strncasecmp (input_line_pointer, "sec_prog", 8) == 0)
4565 {
4566 input_line_pointer += 8;
4567 symbolP->bsym->flags |= BSF_FUNCTION;
4568 type = SYMBOL_TYPE_SEC_PROG;
4569 }
4570
4571 /* SOM requires much more information about symbol types
4572 than BFD understands. This is how we get this information
4573 to the SOM BFD backend. */
4574 #ifdef obj_set_symbol_type
4575 obj_set_symbol_type (symbolP->bsym, (int) type);
4576 #endif
4577
4578 /* Now that the type of the exported symbol has been handled,
4579 handle any argument relocation information. */
4580 while (!is_end_of_statement ())
4581 {
4582 if (*input_line_pointer == ',')
4583 input_line_pointer++;
4584 name = input_line_pointer;
4585 c = get_symbol_end ();
4586 /* Argument sources. */
4587 if ((strncasecmp (name, "argw", 4) == 0))
4588 {
4589 p = input_line_pointer;
4590 *p = c;
4591 input_line_pointer++;
4592 temp = atoi (name + 4);
4593 name = input_line_pointer;
4594 c = get_symbol_end ();
4595 arg_reloc = pa_align_arg_reloc (temp, pa_build_arg_reloc (name));
4596 symbol->tc_data.hppa_arg_reloc |= arg_reloc;
4597 *input_line_pointer = c;
4598 }
4599 /* The return value. */
4600 else if ((strncasecmp (name, "rtnval", 6)) == 0)
4601 {
4602 p = input_line_pointer;
4603 *p = c;
4604 input_line_pointer++;
4605 name = input_line_pointer;
4606 c = get_symbol_end ();
4607 arg_reloc = pa_build_arg_reloc (name);
4608 symbol->tc_data.hppa_arg_reloc |= arg_reloc;
4609 *input_line_pointer = c;
4610 }
4611 /* Privelege level. */
4612 else if ((strncasecmp (name, "priv_lev", 8)) == 0)
4613 {
4614 p = input_line_pointer;
4615 *p = c;
4616 input_line_pointer++;
4617 temp = atoi (input_line_pointer);
4618 c = get_symbol_end ();
4619 *input_line_pointer = c;
4620 }
4621 else
4622 {
4623 as_bad ("Undefined .EXPORT/.IMPORT argument (ignored): %s", name);
4624 p = input_line_pointer;
4625 *p = c;
4626 }
4627 if (!is_end_of_statement ())
4628 input_line_pointer++;
4629 }
4630 }
4631
4632 /* Handle an .IMPORT pseudo-op. Any symbol referenced in a given
4633 assembly file must either be defined in the assembly file, or
4634 explicitly IMPORTED from another. */
4635
4636 static void
4637 pa_import (unused)
4638 int unused;
4639 {
4640 char *name, c, *p;
4641 symbolS *symbol;
4642
4643 name = input_line_pointer;
4644 c = get_symbol_end ();
4645
4646 symbol = symbol_find (name);
4647 /* Ugh. We might be importing a symbol defined earlier in the file,
4648 in which case all the code below will really screw things up
4649 (set the wrong segment, symbol flags & type, etc). */
4650 if (symbol == NULL || !S_IS_DEFINED (symbol))
4651 {
4652 symbol = symbol_find_or_make (name);
4653 p = input_line_pointer;
4654 *p = c;
4655
4656 if (!is_end_of_statement ())
4657 {
4658 input_line_pointer++;
4659 pa_type_args (symbol, 0);
4660 }
4661 else
4662 {
4663 /* Sigh. To be compatable with the HP assembler and to help
4664 poorly written assembly code, we assign a type based on
4665 the the current segment. Note only BSF_FUNCTION really
4666 matters, we do not need to set the full SYMBOL_TYPE_* info. */
4667 if (now_seg == text_section)
4668 symbol->bsym->flags |= BSF_FUNCTION;
4669
4670 /* If the section is undefined, then the symbol is undefined
4671 Since this is an import, leave the section undefined. */
4672 S_SET_SEGMENT (symbol, bfd_und_section_ptr);
4673 }
4674 }
4675 else
4676 {
4677 /* The symbol was already defined. Just eat everything up to
4678 the end of the current statement. */
4679 while (!is_end_of_statement ())
4680 input_line_pointer++;
4681 }
4682
4683 demand_empty_rest_of_line ();
4684 }
4685
4686 /* Handle a .LABEL pseudo-op. */
4687
4688 static void
4689 pa_label (unused)
4690 int unused;
4691 {
4692 char *name, c, *p;
4693
4694 name = input_line_pointer;
4695 c = get_symbol_end ();
4696
4697 if (strlen (name) > 0)
4698 {
4699 colon (name);
4700 p = input_line_pointer;
4701 *p = c;
4702 }
4703 else
4704 {
4705 as_warn ("Missing label name on .LABEL");
4706 }
4707
4708 if (!is_end_of_statement ())
4709 {
4710 as_warn ("extra .LABEL arguments ignored.");
4711 ignore_rest_of_line ();
4712 }
4713 demand_empty_rest_of_line ();
4714 }
4715
4716 /* Handle a .LEAVE pseudo-op. This is not supported yet. */
4717
4718 static void
4719 pa_leave (unused)
4720 int unused;
4721 {
4722 /* We must have a valid space and subspace. */
4723 pa_check_current_space_and_subspace ();
4724
4725 abort ();
4726 }
4727
4728 /* Handle a .ORIGIN pseudo-op. */
4729
4730 static void
4731 pa_origin (unused)
4732 int unused;
4733 {
4734 /* We must have a valid space and subspace. */
4735 pa_check_current_space_and_subspace ();
4736
4737 s_org (0);
4738 pa_undefine_label ();
4739 }
4740
4741 /* Handle a .PARAM pseudo-op. This is much like a .EXPORT, except it
4742 is for static functions. FIXME. Should share more code with .EXPORT. */
4743
4744 static void
4745 pa_param (unused)
4746 int unused;
4747 {
4748 char *name, c, *p;
4749 symbolS *symbol;
4750
4751 name = input_line_pointer;
4752 c = get_symbol_end ();
4753
4754 if ((symbol = symbol_find_or_make (name)) == NULL)
4755 {
4756 as_bad ("Cannot define static symbol: %s\n", name);
4757 p = input_line_pointer;
4758 *p = c;
4759 input_line_pointer++;
4760 }
4761 else
4762 {
4763 S_CLEAR_EXTERNAL (symbol);
4764 p = input_line_pointer;
4765 *p = c;
4766 if (!is_end_of_statement ())
4767 {
4768 input_line_pointer++;
4769 pa_type_args (symbol, 0);
4770 }
4771 }
4772
4773 demand_empty_rest_of_line ();
4774 }
4775
4776 /* Handle a .PROC pseudo-op. It is used to mark the beginning
4777 of a procedure from a syntatical point of view. */
4778
4779 static void
4780 pa_proc (unused)
4781 int unused;
4782 {
4783 struct call_info *call_info;
4784
4785 /* We must have a valid space and subspace. */
4786 pa_check_current_space_and_subspace ();
4787
4788 if (within_procedure)
4789 as_fatal ("Nested procedures");
4790
4791 /* Reset global variables for new procedure. */
4792 callinfo_found = FALSE;
4793 within_procedure = TRUE;
4794
4795 /* Create another call_info structure. */
4796 call_info = (struct call_info *) xmalloc (sizeof (struct call_info));
4797
4798 if (!call_info)
4799 as_fatal ("Cannot allocate unwind descriptor\n");
4800
4801 bzero (call_info, sizeof (struct call_info));
4802
4803 call_info->ci_next = NULL;
4804
4805 if (call_info_root == NULL)
4806 {
4807 call_info_root = call_info;
4808 last_call_info = call_info;
4809 }
4810 else
4811 {
4812 last_call_info->ci_next = call_info;
4813 last_call_info = call_info;
4814 }
4815
4816 /* set up defaults on call_info structure */
4817
4818 call_info->ci_unwind.descriptor.cannot_unwind = 0;
4819 call_info->ci_unwind.descriptor.region_desc = 1;
4820 call_info->ci_unwind.descriptor.hpux_interrupt_marker = 0;
4821
4822 /* If we got a .PROC pseudo-op, we know that the function is defined
4823 locally. Make sure it gets into the symbol table. */
4824 {
4825 label_symbol_struct *label_symbol = pa_get_label ();
4826
4827 if (label_symbol)
4828 {
4829 if (label_symbol->lss_label)
4830 {
4831 last_call_info->start_symbol = label_symbol->lss_label;
4832 label_symbol->lss_label->bsym->flags |= BSF_FUNCTION;
4833 }
4834 else
4835 as_bad ("Missing function name for .PROC (corrupted label chain)");
4836 }
4837 else
4838 last_call_info->start_symbol = NULL;
4839 }
4840
4841 demand_empty_rest_of_line ();
4842 }
4843
4844 /* Process the syntatical end of a procedure. Make sure all the
4845 appropriate pseudo-ops were found within the procedure. */
4846
4847 static void
4848 pa_procend (unused)
4849 int unused;
4850 {
4851
4852 /* We must have a valid space and subspace. */
4853 pa_check_current_space_and_subspace ();
4854
4855 /* If we are within a procedure definition, make sure we've
4856 defined a label for the procedure; handle case where the
4857 label was defined after the .PROC directive.
4858
4859 Note there's not need to diddle with the segment or fragment
4860 for the label symbol in this case. We have already switched
4861 into the new $CODE$ subspace at this point. */
4862 if (within_procedure && last_call_info->start_symbol == NULL)
4863 {
4864 label_symbol_struct *label_symbol = pa_get_label ();
4865
4866 if (label_symbol)
4867 {
4868 if (label_symbol->lss_label)
4869 {
4870 last_call_info->start_symbol = label_symbol->lss_label;
4871 label_symbol->lss_label->bsym->flags |= BSF_FUNCTION;
4872 #ifdef OBJ_SOM
4873 /* Also handle allocation of a fixup to hold the unwind
4874 information when the label appears after the proc/procend. */
4875 if (within_entry_exit)
4876 {
4877 char *where = frag_more (0);
4878
4879 fix_new_hppa (frag_now, where - frag_now->fr_literal, 0,
4880 NULL, (offsetT) 0, NULL,
4881 0, R_HPPA_ENTRY, e_fsel, 0, 0,
4882 (int *) &last_call_info->ci_unwind.descriptor);
4883 }
4884 #endif
4885 }
4886 else
4887 as_bad ("Missing function name for .PROC (corrupted label chain)");
4888 }
4889 else
4890 as_bad ("Missing function name for .PROC");
4891 }
4892
4893 if (!within_procedure)
4894 as_bad ("misplaced .procend");
4895
4896 if (!callinfo_found)
4897 as_bad ("Missing .callinfo for this procedure");
4898
4899 if (within_entry_exit)
4900 as_bad ("Missing .EXIT for a .ENTRY");
4901
4902 last_call_info->function_size
4903 = frag_more (0) - frag_now->fr_literal - S_GET_VALUE (last_call_info->start_symbol);
4904 within_procedure = FALSE;
4905 demand_empty_rest_of_line ();
4906 pa_undefine_label ();
4907 }
4908
4909 /* Parse the parameters to a .SPACE directive; if CREATE_FLAG is nonzero,
4910 then create a new space entry to hold the information specified
4911 by the parameters to the .SPACE directive. */
4912
4913 static sd_chain_struct *
4914 pa_parse_space_stmt (space_name, create_flag)
4915 char *space_name;
4916 int create_flag;
4917 {
4918 char *name, *ptemp, c;
4919 char loadable, defined, private, sort;
4920 int spnum, temp;
4921 asection *seg = NULL;
4922 sd_chain_struct *space;
4923
4924 /* load default values */
4925 spnum = 0;
4926 sort = 0;
4927 loadable = TRUE;
4928 defined = TRUE;
4929 private = FALSE;
4930 if (strcmp (space_name, "$TEXT$") == 0)
4931 {
4932 seg = pa_def_spaces[0].segment;
4933 defined = pa_def_spaces[0].defined;
4934 private = pa_def_spaces[0].private;
4935 sort = pa_def_spaces[0].sort;
4936 spnum = pa_def_spaces[0].spnum;
4937 }
4938 else if (strcmp (space_name, "$PRIVATE$") == 0)
4939 {
4940 seg = pa_def_spaces[1].segment;
4941 defined = pa_def_spaces[1].defined;
4942 private = pa_def_spaces[1].private;
4943 sort = pa_def_spaces[1].sort;
4944 spnum = pa_def_spaces[1].spnum;
4945 }
4946
4947 if (!is_end_of_statement ())
4948 {
4949 print_errors = FALSE;
4950 ptemp = input_line_pointer + 1;
4951 /* First see if the space was specified as a number rather than
4952 as a name. According to the PA assembly manual the rest of
4953 the line should be ignored. */
4954 temp = pa_parse_number (&ptemp, 0);
4955 if (temp >= 0)
4956 {
4957 spnum = temp;
4958 input_line_pointer = ptemp;
4959 }
4960 else
4961 {
4962 while (!is_end_of_statement ())
4963 {
4964 input_line_pointer++;
4965 name = input_line_pointer;
4966 c = get_symbol_end ();
4967 if ((strncasecmp (name, "spnum", 5) == 0))
4968 {
4969 *input_line_pointer = c;
4970 input_line_pointer++;
4971 spnum = get_absolute_expression ();
4972 }
4973 else if ((strncasecmp (name, "sort", 4) == 0))
4974 {
4975 *input_line_pointer = c;
4976 input_line_pointer++;
4977 sort = get_absolute_expression ();
4978 }
4979 else if ((strncasecmp (name, "unloadable", 10) == 0))
4980 {
4981 *input_line_pointer = c;
4982 loadable = FALSE;
4983 }
4984 else if ((strncasecmp (name, "notdefined", 10) == 0))
4985 {
4986 *input_line_pointer = c;
4987 defined = FALSE;
4988 }
4989 else if ((strncasecmp (name, "private", 7) == 0))
4990 {
4991 *input_line_pointer = c;
4992 private = TRUE;
4993 }
4994 else
4995 {
4996 as_bad ("Invalid .SPACE argument");
4997 *input_line_pointer = c;
4998 if (!is_end_of_statement ())
4999 input_line_pointer++;
5000 }
5001 }
5002 }
5003 print_errors = TRUE;
5004 }
5005
5006 if (create_flag && seg == NULL)
5007 seg = subseg_new (space_name, 0);
5008
5009 /* If create_flag is nonzero, then create the new space with
5010 the attributes computed above. Else set the values in
5011 an already existing space -- this can only happen for
5012 the first occurence of a built-in space. */
5013 if (create_flag)
5014 space = create_new_space (space_name, spnum, loadable, defined,
5015 private, sort, seg, 1);
5016 else
5017 {
5018 space = is_defined_space (space_name);
5019 SPACE_SPNUM (space) = spnum;
5020 SPACE_DEFINED (space) = defined & 1;
5021 SPACE_USER_DEFINED (space) = 1;
5022 }
5023
5024 #ifdef obj_set_section_attributes
5025 obj_set_section_attributes (seg, defined, private, sort, spnum);
5026 #endif
5027
5028 return space;
5029 }
5030
5031 /* Handle a .SPACE pseudo-op; this switches the current space to the
5032 given space, creating the new space if necessary. */
5033
5034 static void
5035 pa_space (unused)
5036 int unused;
5037 {
5038 char *name, c, *space_name, *save_s;
5039 int temp;
5040 sd_chain_struct *sd_chain;
5041
5042 if (within_procedure)
5043 {
5044 as_bad ("Can\'t change spaces within a procedure definition. Ignored");
5045 ignore_rest_of_line ();
5046 }
5047 else
5048 {
5049 /* Check for some of the predefined spaces. FIXME: most of the code
5050 below is repeated several times, can we extract the common parts
5051 and place them into a subroutine or something similar? */
5052 /* FIXME Is this (and the next IF stmt) really right?
5053 What if INPUT_LINE_POINTER points to "$TEXT$FOO"? */
5054 if (strncmp (input_line_pointer, "$TEXT$", 6) == 0)
5055 {
5056 input_line_pointer += 6;
5057 sd_chain = is_defined_space ("$TEXT$");
5058 if (sd_chain == NULL)
5059 sd_chain = pa_parse_space_stmt ("$TEXT$", 1);
5060 else if (SPACE_USER_DEFINED (sd_chain) == 0)
5061 sd_chain = pa_parse_space_stmt ("$TEXT$", 0);
5062
5063 current_space = sd_chain;
5064 subseg_set (text_section, sd_chain->sd_last_subseg);
5065 current_subspace
5066 = pa_subsegment_to_subspace (text_section,
5067 sd_chain->sd_last_subseg);
5068 demand_empty_rest_of_line ();
5069 return;
5070 }
5071 if (strncmp (input_line_pointer, "$PRIVATE$", 9) == 0)
5072 {
5073 input_line_pointer += 9;
5074 sd_chain = is_defined_space ("$PRIVATE$");
5075 if (sd_chain == NULL)
5076 sd_chain = pa_parse_space_stmt ("$PRIVATE$", 1);
5077 else if (SPACE_USER_DEFINED (sd_chain) == 0)
5078 sd_chain = pa_parse_space_stmt ("$PRIVATE$", 0);
5079
5080 current_space = sd_chain;
5081 subseg_set (data_section, sd_chain->sd_last_subseg);
5082 current_subspace
5083 = pa_subsegment_to_subspace (data_section,
5084 sd_chain->sd_last_subseg);
5085 demand_empty_rest_of_line ();
5086 return;
5087 }
5088 if (!strncasecmp (input_line_pointer,
5089 GDB_DEBUG_SPACE_NAME,
5090 strlen (GDB_DEBUG_SPACE_NAME)))
5091 {
5092 input_line_pointer += strlen (GDB_DEBUG_SPACE_NAME);
5093 sd_chain = is_defined_space (GDB_DEBUG_SPACE_NAME);
5094 if (sd_chain == NULL)
5095 sd_chain = pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME, 1);
5096 else if (SPACE_USER_DEFINED (sd_chain) == 0)
5097 sd_chain = pa_parse_space_stmt (GDB_DEBUG_SPACE_NAME, 0);
5098
5099 current_space = sd_chain;
5100
5101 {
5102 asection *gdb_section
5103 = bfd_make_section_old_way (stdoutput, GDB_DEBUG_SPACE_NAME);
5104
5105 subseg_set (gdb_section, sd_chain->sd_last_subseg);
5106 current_subspace
5107 = pa_subsegment_to_subspace (gdb_section,
5108 sd_chain->sd_last_subseg);
5109 }
5110 demand_empty_rest_of_line ();
5111 return;
5112 }
5113
5114 /* It could be a space specified by number. */
5115 print_errors = 0;
5116 save_s = input_line_pointer;
5117 if ((temp = pa_parse_number (&input_line_pointer, 0)) >= 0)
5118 {
5119 if ((sd_chain = pa_find_space_by_number (temp)))
5120 {
5121 current_space = sd_chain;
5122
5123 subseg_set (sd_chain->sd_seg, sd_chain->sd_last_subseg);
5124 current_subspace
5125 = pa_subsegment_to_subspace (sd_chain->sd_seg,
5126 sd_chain->sd_last_subseg);
5127 demand_empty_rest_of_line ();
5128 return;
5129 }
5130 }
5131
5132 /* Not a number, attempt to create a new space. */
5133 print_errors = 1;
5134 input_line_pointer = save_s;
5135 name = input_line_pointer;
5136 c = get_symbol_end ();
5137 space_name = xmalloc (strlen (name) + 1);
5138 strcpy (space_name, name);
5139 *input_line_pointer = c;
5140
5141 sd_chain = pa_parse_space_stmt (space_name, 1);
5142 current_space = sd_chain;
5143
5144 subseg_set (sd_chain->sd_seg, sd_chain->sd_last_subseg);
5145 current_subspace = pa_subsegment_to_subspace (sd_chain->sd_seg,
5146 sd_chain->sd_last_subseg);
5147 demand_empty_rest_of_line ();
5148 }
5149 }
5150
5151 /* Switch to a new space. (I think). FIXME. */
5152
5153 static void
5154 pa_spnum (unused)
5155 int unused;
5156 {
5157 char *name;
5158 char c;
5159 char *p;
5160 sd_chain_struct *space;
5161
5162 name = input_line_pointer;
5163 c = get_symbol_end ();
5164 space = is_defined_space (name);
5165 if (space)
5166 {
5167 p = frag_more (4);
5168 md_number_to_chars (p, SPACE_SPNUM (space), 4);
5169 }
5170 else
5171 as_warn ("Undefined space: '%s' Assuming space number = 0.", name);
5172
5173 *input_line_pointer = c;
5174 demand_empty_rest_of_line ();
5175 }
5176
5177 /* If VALUE is an exact power of two between zero and 2^31, then
5178 return log2 (VALUE). Else return -1. */
5179
5180 static int
5181 log2 (value)
5182 int value;
5183 {
5184 int shift = 0;
5185
5186 while ((1 << shift) != value && shift < 32)
5187 shift++;
5188
5189 if (shift >= 32)
5190 return -1;
5191 else
5192 return shift;
5193 }
5194
5195 /* Handle a .SUBSPACE pseudo-op; this switches the current subspace to the
5196 given subspace, creating the new subspace if necessary.
5197
5198 FIXME. Should mirror pa_space more closely, in particular how
5199 they're broken up into subroutines. */
5200
5201 static void
5202 pa_subspace (unused)
5203 int unused;
5204 {
5205 char *name, *ss_name, *alias, c;
5206 char loadable, code_only, common, dup_common, zero, sort;
5207 int i, access, space_index, alignment, quadrant, applicable, flags;
5208 sd_chain_struct *space;
5209 ssd_chain_struct *ssd;
5210 asection *section;
5211
5212 if (current_space == NULL)
5213 as_fatal ("Must be in a space before changing or declaring subspaces.\n");
5214
5215 if (within_procedure)
5216 {
5217 as_bad ("Can\'t change subspaces within a procedure definition. Ignored");
5218 ignore_rest_of_line ();
5219 }
5220 else
5221 {
5222 name = input_line_pointer;
5223 c = get_symbol_end ();
5224 ss_name = xmalloc (strlen (name) + 1);
5225 strcpy (ss_name, name);
5226 *input_line_pointer = c;
5227
5228 /* Load default values. */
5229 sort = 0;
5230 access = 0x7f;
5231 loadable = 1;
5232 common = 0;
5233 dup_common = 0;
5234 code_only = 0;
5235 zero = 0;
5236 space_index = ~0;
5237 alignment = 1;
5238 quadrant = 0;
5239 alias = NULL;
5240
5241 space = current_space;
5242 ssd = is_defined_subspace (ss_name);
5243 /* Allow user to override the builtin attributes of subspaces. But
5244 only allow the attributes to be changed once! */
5245 if (ssd && SUBSPACE_DEFINED (ssd))
5246 {
5247 subseg_set (ssd->ssd_seg, ssd->ssd_subseg);
5248 current_subspace = ssd;
5249 if (!is_end_of_statement ())
5250 as_warn ("Parameters of an existing subspace can\'t be modified");
5251 demand_empty_rest_of_line ();
5252 return;
5253 }
5254 else
5255 {
5256 /* A new subspace. Load default values if it matches one of
5257 the builtin subspaces. */
5258 i = 0;
5259 while (pa_def_subspaces[i].name)
5260 {
5261 if (strcasecmp (pa_def_subspaces[i].name, ss_name) == 0)
5262 {
5263 loadable = pa_def_subspaces[i].loadable;
5264 common = pa_def_subspaces[i].common;
5265 dup_common = pa_def_subspaces[i].dup_common;
5266 code_only = pa_def_subspaces[i].code_only;
5267 zero = pa_def_subspaces[i].zero;
5268 space_index = pa_def_subspaces[i].space_index;
5269 alignment = pa_def_subspaces[i].alignment;
5270 quadrant = pa_def_subspaces[i].quadrant;
5271 access = pa_def_subspaces[i].access;
5272 sort = pa_def_subspaces[i].sort;
5273 if (USE_ALIASES && pa_def_subspaces[i].alias)
5274 alias = pa_def_subspaces[i].alias;
5275 break;
5276 }
5277 i++;
5278 }
5279 }
5280
5281 /* We should be working with a new subspace now. Fill in
5282 any information as specified by the user. */
5283 if (!is_end_of_statement ())
5284 {
5285 input_line_pointer++;
5286 while (!is_end_of_statement ())
5287 {
5288 name = input_line_pointer;
5289 c = get_symbol_end ();
5290 if ((strncasecmp (name, "quad", 4) == 0))
5291 {
5292 *input_line_pointer = c;
5293 input_line_pointer++;
5294 quadrant = get_absolute_expression ();
5295 }
5296 else if ((strncasecmp (name, "align", 5) == 0))
5297 {
5298 *input_line_pointer = c;
5299 input_line_pointer++;
5300 alignment = get_absolute_expression ();
5301 if (log2 (alignment) == -1)
5302 {
5303 as_bad ("Alignment must be a power of 2");
5304 alignment = 1;
5305 }
5306 }
5307 else if ((strncasecmp (name, "access", 6) == 0))
5308 {
5309 *input_line_pointer = c;
5310 input_line_pointer++;
5311 access = get_absolute_expression ();
5312 }
5313 else if ((strncasecmp (name, "sort", 4) == 0))
5314 {
5315 *input_line_pointer = c;
5316 input_line_pointer++;
5317 sort = get_absolute_expression ();
5318 }
5319 else if ((strncasecmp (name, "code_only", 9) == 0))
5320 {
5321 *input_line_pointer = c;
5322 code_only = 1;
5323 }
5324 else if ((strncasecmp (name, "unloadable", 10) == 0))
5325 {
5326 *input_line_pointer = c;
5327 loadable = 0;
5328 }
5329 else if ((strncasecmp (name, "common", 6) == 0))
5330 {
5331 *input_line_pointer = c;
5332 common = 1;
5333 }
5334 else if ((strncasecmp (name, "dup_comm", 8) == 0))
5335 {
5336 *input_line_pointer = c;
5337 dup_common = 1;
5338 }
5339 else if ((strncasecmp (name, "zero", 4) == 0))
5340 {
5341 *input_line_pointer = c;
5342 zero = 1;
5343 }
5344 else if ((strncasecmp (name, "first", 5) == 0))
5345 as_bad ("FIRST not supported as a .SUBSPACE argument");
5346 else
5347 as_bad ("Invalid .SUBSPACE argument");
5348 if (!is_end_of_statement ())
5349 input_line_pointer++;
5350 }
5351 }
5352
5353 /* Compute a reasonable set of BFD flags based on the information
5354 in the .subspace directive. */
5355 applicable = bfd_applicable_section_flags (stdoutput);
5356 flags = 0;
5357 if (loadable)
5358 flags |= (SEC_ALLOC | SEC_LOAD);
5359 if (code_only)
5360 flags |= SEC_CODE;
5361 if (common || dup_common)
5362 flags |= SEC_IS_COMMON;
5363
5364 flags |= SEC_RELOC | SEC_HAS_CONTENTS;
5365
5366 /* This is a zero-filled subspace (eg BSS). */
5367 if (zero)
5368 flags &= ~(SEC_LOAD | SEC_HAS_CONTENTS);
5369
5370 applicable &= flags;
5371
5372 /* If this is an existing subspace, then we want to use the
5373 segment already associated with the subspace.
5374
5375 FIXME NOW! ELF BFD doesn't appear to be ready to deal with
5376 lots of sections. It might be a problem in the PA ELF
5377 code, I do not know yet. For now avoid creating anything
5378 but the "standard" sections for ELF. */
5379 if (ssd)
5380 section = ssd->ssd_seg;
5381 else if (alias)
5382 section = subseg_new (alias, 0);
5383 else if (!alias && USE_ALIASES)
5384 {
5385 as_warn ("Ignoring subspace decl due to ELF BFD bugs.");
5386 demand_empty_rest_of_line ();
5387 return;
5388 }
5389 else
5390 section = subseg_new (ss_name, 0);
5391
5392 if (zero)
5393 seg_info (section)->bss = 1;
5394
5395 /* Now set the flags. */
5396 bfd_set_section_flags (stdoutput, section, applicable);
5397
5398 /* Record any alignment request for this section. */
5399 record_alignment (section, log2 (alignment));
5400
5401 /* Set the starting offset for this section. */
5402 bfd_set_section_vma (stdoutput, section,
5403 pa_subspace_start (space, quadrant));
5404
5405 /* Now that all the flags are set, update an existing subspace,
5406 or create a new one. */
5407 if (ssd)
5408
5409 current_subspace = update_subspace (space, ss_name, loadable,
5410 code_only, common, dup_common,
5411 sort, zero, access, space_index,
5412 alignment, quadrant,
5413 section);
5414 else
5415 current_subspace = create_new_subspace (space, ss_name, loadable,
5416 code_only, common,
5417 dup_common, zero, sort,
5418 access, space_index,
5419 alignment, quadrant, section);
5420
5421 demand_empty_rest_of_line ();
5422 current_subspace->ssd_seg = section;
5423 subseg_set (current_subspace->ssd_seg, current_subspace->ssd_subseg);
5424 }
5425 SUBSPACE_DEFINED (current_subspace) = 1;
5426 }
5427
5428
5429 /* Create default space and subspace dictionaries. */
5430
5431 static void
5432 pa_spaces_begin ()
5433 {
5434 int i;
5435
5436 space_dict_root = NULL;
5437 space_dict_last = NULL;
5438
5439 i = 0;
5440 while (pa_def_spaces[i].name)
5441 {
5442 char *name;
5443
5444 /* Pick the right name to use for the new section. */
5445 if (pa_def_spaces[i].alias && USE_ALIASES)
5446 name = pa_def_spaces[i].alias;
5447 else
5448 name = pa_def_spaces[i].name;
5449
5450 pa_def_spaces[i].segment = subseg_new (name, 0);
5451 create_new_space (pa_def_spaces[i].name, pa_def_spaces[i].spnum,
5452 pa_def_spaces[i].loadable, pa_def_spaces[i].defined,
5453 pa_def_spaces[i].private, pa_def_spaces[i].sort,
5454 pa_def_spaces[i].segment, 0);
5455 i++;
5456 }
5457
5458 i = 0;
5459 while (pa_def_subspaces[i].name)
5460 {
5461 char *name;
5462 int applicable, subsegment;
5463 asection *segment = NULL;
5464 sd_chain_struct *space;
5465
5466 /* Pick the right name for the new section and pick the right
5467 subsegment number. */
5468 if (pa_def_subspaces[i].alias && USE_ALIASES)
5469 {
5470 name = pa_def_subspaces[i].alias;
5471 subsegment = pa_def_subspaces[i].subsegment;
5472 }
5473 else
5474 {
5475 name = pa_def_subspaces[i].name;
5476 subsegment = 0;
5477 }
5478
5479 /* Create the new section. */
5480 segment = subseg_new (name, subsegment);
5481
5482
5483 /* For SOM we want to replace the standard .text, .data, and .bss
5484 sections with our own. We also want to set BFD flags for
5485 all the built-in subspaces. */
5486 if (!strcmp (pa_def_subspaces[i].name, "$CODE$") && !USE_ALIASES)
5487 {
5488 text_section = segment;
5489 applicable = bfd_applicable_section_flags (stdoutput);
5490 bfd_set_section_flags (stdoutput, segment,
5491 applicable & (SEC_ALLOC | SEC_LOAD
5492 | SEC_RELOC | SEC_CODE
5493 | SEC_READONLY
5494 | SEC_HAS_CONTENTS));
5495 }
5496 else if (!strcmp (pa_def_subspaces[i].name, "$DATA$") && !USE_ALIASES)
5497 {
5498 data_section = segment;
5499 applicable = bfd_applicable_section_flags (stdoutput);
5500 bfd_set_section_flags (stdoutput, segment,
5501 applicable & (SEC_ALLOC | SEC_LOAD
5502 | SEC_RELOC
5503 | SEC_HAS_CONTENTS));
5504
5505
5506 }
5507 else if (!strcmp (pa_def_subspaces[i].name, "$BSS$") && !USE_ALIASES)
5508 {
5509 bss_section = segment;
5510 applicable = bfd_applicable_section_flags (stdoutput);
5511 bfd_set_section_flags (stdoutput, segment,
5512 applicable & SEC_ALLOC);
5513 }
5514 else if (!strcmp (pa_def_subspaces[i].name, "$LIT$") && !USE_ALIASES)
5515 {
5516 applicable = bfd_applicable_section_flags (stdoutput);
5517 bfd_set_section_flags (stdoutput, segment,
5518 applicable & (SEC_ALLOC | SEC_LOAD
5519 | SEC_RELOC
5520 | SEC_READONLY
5521 | SEC_HAS_CONTENTS));
5522 }
5523 else if (!strcmp (pa_def_subspaces[i].name, "$UNWIND$") && !USE_ALIASES)
5524 {
5525 applicable = bfd_applicable_section_flags (stdoutput);
5526 bfd_set_section_flags (stdoutput, segment,
5527 applicable & (SEC_ALLOC | SEC_LOAD
5528 | SEC_RELOC
5529 | SEC_READONLY
5530 | SEC_HAS_CONTENTS));
5531 }
5532
5533 /* Find the space associated with this subspace. */
5534 space = pa_segment_to_space (pa_def_spaces[pa_def_subspaces[i].
5535 def_space_index].segment);
5536 if (space == NULL)
5537 {
5538 as_fatal ("Internal error: Unable to find containing space for %s.",
5539 pa_def_subspaces[i].name);
5540 }
5541
5542 create_new_subspace (space, name,
5543 pa_def_subspaces[i].loadable,
5544 pa_def_subspaces[i].code_only,
5545 pa_def_subspaces[i].common,
5546 pa_def_subspaces[i].dup_common,
5547 pa_def_subspaces[i].zero,
5548 pa_def_subspaces[i].sort,
5549 pa_def_subspaces[i].access,
5550 pa_def_subspaces[i].space_index,
5551 pa_def_subspaces[i].alignment,
5552 pa_def_subspaces[i].quadrant,
5553 segment);
5554 i++;
5555 }
5556 }
5557
5558
5559
5560 /* Create a new space NAME, with the appropriate flags as defined
5561 by the given parameters. */
5562
5563 static sd_chain_struct *
5564 create_new_space (name, spnum, loadable, defined, private,
5565 sort, seg, user_defined)
5566 char *name;
5567 int spnum;
5568 int loadable;
5569 int defined;
5570 int private;
5571 int sort;
5572 asection *seg;
5573 int user_defined;
5574 {
5575 sd_chain_struct *chain_entry;
5576
5577 chain_entry = (sd_chain_struct *) xmalloc (sizeof (sd_chain_struct));
5578 if (!chain_entry)
5579 as_fatal ("Out of memory: could not allocate new space chain entry: %s\n",
5580 name);
5581
5582 SPACE_NAME (chain_entry) = (char *) xmalloc (strlen (name) + 1);
5583 strcpy (SPACE_NAME (chain_entry), name);
5584 SPACE_DEFINED (chain_entry) = defined;
5585 SPACE_USER_DEFINED (chain_entry) = user_defined;
5586 SPACE_SPNUM (chain_entry) = spnum;
5587
5588 chain_entry->sd_seg = seg;
5589 chain_entry->sd_last_subseg = -1;
5590 chain_entry->sd_subspaces = NULL;
5591 chain_entry->sd_next = NULL;
5592
5593 /* Find spot for the new space based on its sort key. */
5594 if (!space_dict_last)
5595 space_dict_last = chain_entry;
5596
5597 if (space_dict_root == NULL)
5598 space_dict_root = chain_entry;
5599 else
5600 {
5601 sd_chain_struct *chain_pointer;
5602 sd_chain_struct *prev_chain_pointer;
5603
5604 chain_pointer = space_dict_root;
5605 prev_chain_pointer = NULL;
5606
5607 while (chain_pointer)
5608 {
5609 prev_chain_pointer = chain_pointer;
5610 chain_pointer = chain_pointer->sd_next;
5611 }
5612
5613 /* At this point we've found the correct place to add the new
5614 entry. So add it and update the linked lists as appropriate. */
5615 if (prev_chain_pointer)
5616 {
5617 chain_entry->sd_next = chain_pointer;
5618 prev_chain_pointer->sd_next = chain_entry;
5619 }
5620 else
5621 {
5622 space_dict_root = chain_entry;
5623 chain_entry->sd_next = chain_pointer;
5624 }
5625
5626 if (chain_entry->sd_next == NULL)
5627 space_dict_last = chain_entry;
5628 }
5629
5630 /* This is here to catch predefined spaces which do not get
5631 modified by the user's input. Another call is found at
5632 the bottom of pa_parse_space_stmt to handle cases where
5633 the user modifies a predefined space. */
5634 #ifdef obj_set_section_attributes
5635 obj_set_section_attributes (seg, defined, private, sort, spnum);
5636 #endif
5637
5638 return chain_entry;
5639 }
5640
5641 /* Create a new subspace NAME, with the appropriate flags as defined
5642 by the given parameters.
5643
5644 Add the new subspace to the subspace dictionary chain in numerical
5645 order as defined by the SORT entries. */
5646
5647 static ssd_chain_struct *
5648 create_new_subspace (space, name, loadable, code_only, common,
5649 dup_common, is_zero, sort, access, space_index,
5650 alignment, quadrant, seg)
5651 sd_chain_struct *space;
5652 char *name;
5653 int loadable, code_only, common, dup_common, is_zero;
5654 int sort;
5655 int access;
5656 int space_index;
5657 int alignment;
5658 int quadrant;
5659 asection *seg;
5660 {
5661 ssd_chain_struct *chain_entry;
5662
5663 chain_entry = (ssd_chain_struct *) xmalloc (sizeof (ssd_chain_struct));
5664 if (!chain_entry)
5665 as_fatal ("Out of memory: could not allocate new subspace chain entry: %s\n", name);
5666
5667 SUBSPACE_NAME (chain_entry) = (char *) xmalloc (strlen (name) + 1);
5668 strcpy (SUBSPACE_NAME (chain_entry), name);
5669
5670 /* Initialize subspace_defined. When we hit a .subspace directive
5671 we'll set it to 1 which "locks-in" the subspace attributes. */
5672 SUBSPACE_DEFINED (chain_entry) = 0;
5673
5674 chain_entry->ssd_subseg = USE_ALIASES ? pa_next_subseg (space) : 0;
5675 chain_entry->ssd_seg = seg;
5676 chain_entry->ssd_next = NULL;
5677
5678 /* Find spot for the new subspace based on its sort key. */
5679 if (space->sd_subspaces == NULL)
5680 space->sd_subspaces = chain_entry;
5681 else
5682 {
5683 ssd_chain_struct *chain_pointer;
5684 ssd_chain_struct *prev_chain_pointer;
5685
5686 chain_pointer = space->sd_subspaces;
5687 prev_chain_pointer = NULL;
5688
5689 while (chain_pointer)
5690 {
5691 prev_chain_pointer = chain_pointer;
5692 chain_pointer = chain_pointer->ssd_next;
5693 }
5694
5695 /* Now we have somewhere to put the new entry. Insert it and update
5696 the links. */
5697 if (prev_chain_pointer)
5698 {
5699 chain_entry->ssd_next = chain_pointer;
5700 prev_chain_pointer->ssd_next = chain_entry;
5701 }
5702 else
5703 {
5704 space->sd_subspaces = chain_entry;
5705 chain_entry->ssd_next = chain_pointer;
5706 }
5707 }
5708
5709 #ifdef obj_set_subsection_attributes
5710 obj_set_subsection_attributes (seg, space->sd_seg, access,
5711 sort, quadrant);
5712 #endif
5713
5714 return chain_entry;
5715 }
5716
5717 /* Update the information for the given subspace based upon the
5718 various arguments. Return the modified subspace chain entry. */
5719
5720 static ssd_chain_struct *
5721 update_subspace (space, name, loadable, code_only, common, dup_common, sort,
5722 zero, access, space_index, alignment, quadrant, section)
5723 sd_chain_struct *space;
5724 char *name;
5725 int loadable;
5726 int code_only;
5727 int common;
5728 int dup_common;
5729 int zero;
5730 int sort;
5731 int access;
5732 int space_index;
5733 int alignment;
5734 int quadrant;
5735 asection *section;
5736 {
5737 ssd_chain_struct *chain_entry;
5738
5739 chain_entry = is_defined_subspace (name);
5740
5741 #ifdef obj_set_subsection_attributes
5742 obj_set_subsection_attributes (section, space->sd_seg, access,
5743 sort, quadrant);
5744 #endif
5745
5746 return chain_entry;
5747 }
5748
5749 /* Return the space chain entry for the space with the name NAME or
5750 NULL if no such space exists. */
5751
5752 static sd_chain_struct *
5753 is_defined_space (name)
5754 char *name;
5755 {
5756 sd_chain_struct *chain_pointer;
5757
5758 for (chain_pointer = space_dict_root;
5759 chain_pointer;
5760 chain_pointer = chain_pointer->sd_next)
5761 {
5762 if (strcmp (SPACE_NAME (chain_pointer), name) == 0)
5763 return chain_pointer;
5764 }
5765
5766 /* No mapping from segment to space was found. Return NULL. */
5767 return NULL;
5768 }
5769
5770 /* Find and return the space associated with the given seg. If no mapping
5771 from the given seg to a space is found, then return NULL.
5772
5773 Unlike subspaces, the number of spaces is not expected to grow much,
5774 so a linear exhaustive search is OK here. */
5775
5776 static sd_chain_struct *
5777 pa_segment_to_space (seg)
5778 asection *seg;
5779 {
5780 sd_chain_struct *space_chain;
5781
5782 /* Walk through each space looking for the correct mapping. */
5783 for (space_chain = space_dict_root;
5784 space_chain;
5785 space_chain = space_chain->sd_next)
5786 {
5787 if (space_chain->sd_seg == seg)
5788 return space_chain;
5789 }
5790
5791 /* Mapping was not found. Return NULL. */
5792 return NULL;
5793 }
5794
5795 /* Return the space chain entry for the subspace with the name NAME or
5796 NULL if no such subspace exists.
5797
5798 Uses a linear search through all the spaces and subspaces, this may
5799 not be appropriate if we ever being placing each function in its
5800 own subspace. */
5801
5802 static ssd_chain_struct *
5803 is_defined_subspace (name)
5804 char *name;
5805 {
5806 sd_chain_struct *space_chain;
5807 ssd_chain_struct *subspace_chain;
5808
5809 /* Walk through each space. */
5810 for (space_chain = space_dict_root;
5811 space_chain;
5812 space_chain = space_chain->sd_next)
5813 {
5814 /* Walk through each subspace looking for a name which matches. */
5815 for (subspace_chain = space_chain->sd_subspaces;
5816 subspace_chain;
5817 subspace_chain = subspace_chain->ssd_next)
5818 if (strcmp (SUBSPACE_NAME (subspace_chain), name) == 0)
5819 return subspace_chain;
5820 }
5821
5822 /* Subspace wasn't found. Return NULL. */
5823 return NULL;
5824 }
5825
5826 /* Find and return the subspace associated with the given seg. If no
5827 mapping from the given seg to a subspace is found, then return NULL.
5828
5829 If we ever put each procedure/function within its own subspace
5830 (to make life easier on the compiler and linker), then this will have
5831 to become more efficient. */
5832
5833 static ssd_chain_struct *
5834 pa_subsegment_to_subspace (seg, subseg)
5835 asection *seg;
5836 subsegT subseg;
5837 {
5838 sd_chain_struct *space_chain;
5839 ssd_chain_struct *subspace_chain;
5840
5841 /* Walk through each space. */
5842 for (space_chain = space_dict_root;
5843 space_chain;
5844 space_chain = space_chain->sd_next)
5845 {
5846 if (space_chain->sd_seg == seg)
5847 {
5848 /* Walk through each subspace within each space looking for
5849 the correct mapping. */
5850 for (subspace_chain = space_chain->sd_subspaces;
5851 subspace_chain;
5852 subspace_chain = subspace_chain->ssd_next)
5853 if (subspace_chain->ssd_subseg == (int) subseg)
5854 return subspace_chain;
5855 }
5856 }
5857
5858 /* No mapping from subsegment to subspace found. Return NULL. */
5859 return NULL;
5860 }
5861
5862 /* Given a number, try and find a space with the name number.
5863
5864 Return a pointer to a space dictionary chain entry for the space
5865 that was found or NULL on failure. */
5866
5867 static sd_chain_struct *
5868 pa_find_space_by_number (number)
5869 int number;
5870 {
5871 sd_chain_struct *space_chain;
5872
5873 for (space_chain = space_dict_root;
5874 space_chain;
5875 space_chain = space_chain->sd_next)
5876 {
5877 if (SPACE_SPNUM (space_chain) == number)
5878 return space_chain;
5879 }
5880
5881 /* No appropriate space found. Return NULL. */
5882 return NULL;
5883 }
5884
5885 /* Return the starting address for the given subspace. If the starting
5886 address is unknown then return zero. */
5887
5888 static unsigned int
5889 pa_subspace_start (space, quadrant)
5890 sd_chain_struct *space;
5891 int quadrant;
5892 {
5893 /* FIXME. Assumes everyone puts read/write data at 0x4000000, this
5894 is not correct for the PA OSF1 port. */
5895 if ((strcmp (SPACE_NAME (space), "$PRIVATE$") == 0) && quadrant == 1)
5896 return 0x40000000;
5897 else if (space->sd_seg == data_section && quadrant == 1)
5898 return 0x40000000;
5899 else
5900 return 0;
5901 }
5902
5903 /* FIXME. Needs documentation. */
5904 static int
5905 pa_next_subseg (space)
5906 sd_chain_struct *space;
5907 {
5908
5909 space->sd_last_subseg++;
5910 return space->sd_last_subseg;
5911 }
5912
5913 /* Helper function for pa_stringer. Used to find the end of
5914 a string. */
5915
5916 static unsigned int
5917 pa_stringer_aux (s)
5918 char *s;
5919 {
5920 unsigned int c = *s & CHAR_MASK;
5921
5922 /* We must have a valid space and subspace. */
5923 pa_check_current_space_and_subspace ();
5924
5925 switch (c)
5926 {
5927 case '\"':
5928 c = NOT_A_CHAR;
5929 break;
5930 default:
5931 break;
5932 }
5933 return c;
5934 }
5935
5936 /* Handle a .STRING type pseudo-op. */
5937
5938 static void
5939 pa_stringer (append_zero)
5940 int append_zero;
5941 {
5942 char *s, num_buf[4];
5943 unsigned int c;
5944 int i;
5945
5946 /* Preprocess the string to handle PA-specific escape sequences.
5947 For example, \xDD where DD is a hexidecimal number should be
5948 changed to \OOO where OOO is an octal number. */
5949
5950 /* Skip the opening quote. */
5951 s = input_line_pointer + 1;
5952
5953 while (is_a_char (c = pa_stringer_aux (s++)))
5954 {
5955 if (c == '\\')
5956 {
5957 c = *s;
5958 switch (c)
5959 {
5960 /* Handle \x<num>. */
5961 case 'x':
5962 {
5963 unsigned int number;
5964 int num_digit;
5965 char dg;
5966 char *s_start = s;
5967
5968 /* Get pas the 'x'. */
5969 s++;
5970 for (num_digit = 0, number = 0, dg = *s;
5971 num_digit < 2
5972 && (isdigit (dg) || (dg >= 'a' && dg <= 'f')
5973 || (dg >= 'A' && dg <= 'F'));
5974 num_digit++)
5975 {
5976 if (isdigit (dg))
5977 number = number * 16 + dg - '0';
5978 else if (dg >= 'a' && dg <= 'f')
5979 number = number * 16 + dg - 'a' + 10;
5980 else
5981 number = number * 16 + dg - 'A' + 10;
5982
5983 s++;
5984 dg = *s;
5985 }
5986 if (num_digit > 0)
5987 {
5988 switch (num_digit)
5989 {
5990 case 1:
5991 sprintf (num_buf, "%02o", number);
5992 break;
5993 case 2:
5994 sprintf (num_buf, "%03o", number);
5995 break;
5996 }
5997 for (i = 0; i <= num_digit; i++)
5998 s_start[i] = num_buf[i];
5999 }
6000 break;
6001 }
6002 /* This might be a "\"", skip over the escaped char. */
6003 default:
6004 s++;
6005 break;
6006 }
6007 }
6008 }
6009 stringer (append_zero);
6010 pa_undefine_label ();
6011 }
6012
6013 /* Handle a .VERSION pseudo-op. */
6014
6015 static void
6016 pa_version (unused)
6017 int unused;
6018 {
6019 obj_version (0);
6020 pa_undefine_label ();
6021 }
6022
6023 /* Handle a .COPYRIGHT pseudo-op. */
6024
6025 static void
6026 pa_copyright (unused)
6027 int unused;
6028 {
6029 obj_copyright (0);
6030 pa_undefine_label ();
6031 }
6032
6033 /* Just like a normal cons, but when finished we have to undefine
6034 the latest space label. */
6035
6036 static void
6037 pa_cons (nbytes)
6038 int nbytes;
6039 {
6040 cons (nbytes);
6041 pa_undefine_label ();
6042 }
6043
6044 /* Switch to the data space. As usual delete our label. */
6045
6046 static void
6047 pa_data (unused)
6048 int unused;
6049 {
6050 current_space = is_defined_space ("$PRIVATE$");
6051 current_subspace
6052 = pa_subsegment_to_subspace (current_space->sd_seg, 0);
6053 s_data (0);
6054 pa_undefine_label ();
6055 }
6056
6057 /* Like float_cons, but we need to undefine our label. */
6058
6059 static void
6060 pa_float_cons (float_type)
6061 int float_type;
6062 {
6063 float_cons (float_type);
6064 pa_undefine_label ();
6065 }
6066
6067 /* Like s_fill, but delete our label when finished. */
6068
6069 static void
6070 pa_fill (unused)
6071 int unused;
6072 {
6073 /* We must have a valid space and subspace. */
6074 pa_check_current_space_and_subspace ();
6075
6076 s_fill (0);
6077 pa_undefine_label ();
6078 }
6079
6080 /* Like lcomm, but delete our label when finished. */
6081
6082 static void
6083 pa_lcomm (needs_align)
6084 int needs_align;
6085 {
6086 /* We must have a valid space and subspace. */
6087 pa_check_current_space_and_subspace ();
6088
6089 s_lcomm (needs_align);
6090 pa_undefine_label ();
6091 }
6092
6093 /* Like lsym, but delete our label when finished. */
6094
6095 static void
6096 pa_lsym (unused)
6097 int unused;
6098 {
6099 /* We must have a valid space and subspace. */
6100 pa_check_current_space_and_subspace ();
6101
6102 s_lsym (0);
6103 pa_undefine_label ();
6104 }
6105
6106 /* Switch to the text space. Like s_text, but delete our
6107 label when finished. */
6108 static void
6109 pa_text (unused)
6110 int unused;
6111 {
6112 current_space = is_defined_space ("$TEXT$");
6113 current_subspace
6114 = pa_subsegment_to_subspace (current_space->sd_seg, 0);
6115
6116 s_text (0);
6117 pa_undefine_label ();
6118 }
6119
6120 /* On the PA relocations which involve function symbols must not be
6121 adjusted. This so that the linker can know when/how to create argument
6122 relocation stubs for indirect calls and calls to static functions.
6123
6124 "T" field selectors create DLT relative fixups for accessing
6125 globals and statics in PIC code; each DLT relative fixup creates
6126 an entry in the DLT table. The entries contain the address of
6127 the final target (eg accessing "foo" would create a DLT entry
6128 with the address of "foo").
6129
6130 Unfortunately, the HP linker doesn't take into account any addend
6131 when generating the DLT; so accessing $LIT$+8 puts the address of
6132 $LIT$ into the DLT rather than the address of $LIT$+8.
6133
6134 The end result is we can't perform relocation symbol reductions for
6135 any fixup which creates entries in the DLT (eg they use "T" field
6136 selectors).
6137
6138 Reject reductions involving symbols with external scope; such
6139 reductions make life a living hell for object file editors.
6140
6141 FIXME. Also reject R_HPPA relocations which are 32bits wide in
6142 the code space. The SOM BFD backend doesn't know how to pull the
6143 right bits out of an instruction. */
6144
6145 int
6146 hppa_fix_adjustable (fixp)
6147 fixS *fixp;
6148 {
6149 struct hppa_fix_struct *hppa_fix;
6150
6151 hppa_fix = (struct hppa_fix_struct *) fixp->tc_fix_data;
6152
6153 #ifdef OBJ_SOM
6154 /* Reject reductions of symbols in 32bit relocs. */
6155 if (fixp->fx_r_type == R_HPPA && hppa_fix->fx_r_format == 32)
6156 return 0;
6157 #endif
6158
6159 /* Reject reductions of symbols in DLT relative relocs,
6160 relocations with plabels. */
6161 if (hppa_fix->fx_r_field == e_tsel
6162 || hppa_fix->fx_r_field == e_ltsel
6163 || hppa_fix->fx_r_field == e_rtsel
6164 || hppa_fix->fx_r_field == e_psel
6165 || hppa_fix->fx_r_field == e_rpsel
6166 || hppa_fix->fx_r_field == e_lpsel)
6167 return 0;
6168
6169 if (fixp->fx_addsy && fixp->fx_addsy->bsym->flags & BSF_GLOBAL)
6170 return 0;
6171
6172 /* Reject reductions of function symbols. */
6173 if (fixp->fx_addsy == 0
6174 || (fixp->fx_addsy->bsym->flags & BSF_FUNCTION) == 0)
6175 return 1;
6176
6177 return 0;
6178 }
6179
6180 /* Return nonzero if the fixup in FIXP will require a relocation,
6181 even it if appears that the fixup could be completely handled
6182 within GAS. */
6183
6184 int
6185 hppa_force_relocation (fixp)
6186 fixS *fixp;
6187 {
6188 struct hppa_fix_struct *hppa_fixp;
6189
6190 hppa_fixp = (struct hppa_fix_struct *) fixp->tc_fix_data;
6191 #ifdef OBJ_SOM
6192 if (fixp->fx_r_type == R_HPPA_ENTRY || fixp->fx_r_type == R_HPPA_EXIT)
6193 return 1;
6194 #endif
6195
6196 #define stub_needed(CALLER, CALLEE) \
6197 ((CALLEE) && (CALLER) && ((CALLEE) != (CALLER)))
6198
6199 /* It is necessary to force PC-relative calls/jumps to have a relocation
6200 entry if they're going to need either a argument relocation or long
6201 call stub. FIXME. Can't we need the same for absolute calls? */
6202 if (fixp->fx_pcrel && fixp->fx_addsy
6203 && (stub_needed (((obj_symbol_type *)
6204 fixp->fx_addsy->bsym)->tc_data.hppa_arg_reloc,
6205 hppa_fixp->fx_arg_reloc)))
6206 return 1;
6207
6208 #undef stub_needed
6209
6210 /* No need (yet) to force another relocations to be emitted. */
6211 return 0;
6212 }
6213
6214 /* Now for some ELF specific code. FIXME. */
6215 #ifdef OBJ_ELF
6216 /* For ELF, this function serves one purpose: to setup the st_size
6217 field of STT_FUNC symbols. */
6218
6219 void
6220 elf_hppa_final_processing ()
6221 {
6222 struct call_info *call_info_pointer;
6223
6224 for (call_info_pointer = call_info_root;
6225 call_info_pointer;
6226 call_info_pointer = call_info_pointer->ci_next)
6227 {
6228 elf_symbol_type *esym
6229 = (elf_symbol_type *) call_info_pointer->start_symbol->bsym;
6230 esym->internal_elf_sym.st_size = call_info_pointer->function_size;
6231 }
6232 }
6233 #endif
This page took 0.163841 seconds and 4 git commands to generate.