Patch from David Mosberger, to avoid nop.f on Itanium2.
[binutils.git] / gas / config / tc-ia64.c
blobf458550e2dd7c19c0da87af060b92fa79d8fc244
1 /* tc-ia64.c -- Assembler for the HP/Intel IA-64 architecture.
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
24 TODO:
26 - optional operands
27 - directives:
28 .eb
29 .estate
30 .lb
31 .popsection
32 .previous
33 .psr
34 .pushsection
35 - labels are wrong if automatic alignment is introduced
36 (e.g., checkout the second real10 definition in test-data.s)
37 - DV-related stuff:
38 <reg>.safe_across_calls and any other DV-related directives I don't
39 have documentation for.
40 verify mod-sched-brs reads/writes are checked/marked (and other
41 notes)
45 #include "as.h"
46 #include "safe-ctype.h"
47 #include "dwarf2dbg.h"
48 #include "subsegs.h"
50 #include "opcode/ia64.h"
52 #include "elf/ia64.h"
54 #ifdef HAVE_LIMITS_H
55 #include <limits.h>
56 #endif
58 #define NELEMS(a) ((int) (sizeof (a)/sizeof ((a)[0])))
59 #define MIN(a,b) ((a) < (b) ? (a) : (b))
61 #define NUM_SLOTS 4
62 #define PREV_SLOT md.slot[(md.curr_slot + NUM_SLOTS - 1) % NUM_SLOTS]
63 #define CURR_SLOT md.slot[md.curr_slot]
65 #define O_pseudo_fixup (O_max + 1)
67 enum special_section
69 /* IA-64 ABI section pseudo-ops. */
70 SPECIAL_SECTION_BSS = 0,
71 SPECIAL_SECTION_SBSS,
72 SPECIAL_SECTION_SDATA,
73 SPECIAL_SECTION_RODATA,
74 SPECIAL_SECTION_COMMENT,
75 SPECIAL_SECTION_UNWIND,
76 SPECIAL_SECTION_UNWIND_INFO,
77 /* HPUX specific section pseudo-ops. */
78 SPECIAL_SECTION_INIT_ARRAY,
79 SPECIAL_SECTION_FINI_ARRAY,
82 enum reloc_func
84 FUNC_DTP_MODULE,
85 FUNC_DTP_RELATIVE,
86 FUNC_FPTR_RELATIVE,
87 FUNC_GP_RELATIVE,
88 FUNC_LT_RELATIVE,
89 FUNC_LT_RELATIVE_X,
90 FUNC_PC_RELATIVE,
91 FUNC_PLT_RELATIVE,
92 FUNC_SEC_RELATIVE,
93 FUNC_SEG_RELATIVE,
94 FUNC_TP_RELATIVE,
95 FUNC_LTV_RELATIVE,
96 FUNC_LT_FPTR_RELATIVE,
97 FUNC_LT_DTP_MODULE,
98 FUNC_LT_DTP_RELATIVE,
99 FUNC_LT_TP_RELATIVE,
100 FUNC_IPLT_RELOC,
103 enum reg_symbol
105 REG_GR = 0,
106 REG_FR = (REG_GR + 128),
107 REG_AR = (REG_FR + 128),
108 REG_CR = (REG_AR + 128),
109 REG_P = (REG_CR + 128),
110 REG_BR = (REG_P + 64),
111 REG_IP = (REG_BR + 8),
112 REG_CFM,
113 REG_PR,
114 REG_PR_ROT,
115 REG_PSR,
116 REG_PSR_L,
117 REG_PSR_UM,
118 /* The following are pseudo-registers for use by gas only. */
119 IND_CPUID,
120 IND_DBR,
121 IND_DTR,
122 IND_ITR,
123 IND_IBR,
124 IND_MEM,
125 IND_MSR,
126 IND_PKR,
127 IND_PMC,
128 IND_PMD,
129 IND_RR,
130 /* The following pseudo-registers are used for unwind directives only: */
131 REG_PSP,
132 REG_PRIUNAT,
133 REG_NUM
136 enum dynreg_type
138 DYNREG_GR = 0, /* dynamic general purpose register */
139 DYNREG_FR, /* dynamic floating point register */
140 DYNREG_PR, /* dynamic predicate register */
141 DYNREG_NUM_TYPES
144 enum operand_match_result
146 OPERAND_MATCH,
147 OPERAND_OUT_OF_RANGE,
148 OPERAND_MISMATCH
151 /* On the ia64, we can't know the address of a text label until the
152 instructions are packed into a bundle. To handle this, we keep
153 track of the list of labels that appear in front of each
154 instruction. */
155 struct label_fix
157 struct label_fix *next;
158 struct symbol *sym;
161 /* This is the endianness of the current section. */
162 extern int target_big_endian;
164 /* This is the default endianness. */
165 static int default_big_endian = TARGET_BYTES_BIG_ENDIAN;
167 void (*ia64_number_to_chars) PARAMS ((char *, valueT, int));
169 static void ia64_float_to_chars_bigendian
170 PARAMS ((char *, LITTLENUM_TYPE *, int));
171 static void ia64_float_to_chars_littleendian
172 PARAMS ((char *, LITTLENUM_TYPE *, int));
173 static void (*ia64_float_to_chars)
174 PARAMS ((char *, LITTLENUM_TYPE *, int));
176 static struct hash_control *alias_hash;
177 static struct hash_control *alias_name_hash;
178 static struct hash_control *secalias_hash;
179 static struct hash_control *secalias_name_hash;
181 /* List of chars besides those in app.c:symbol_chars that can start an
182 operand. Used to prevent the scrubber eating vital white-space. */
183 const char ia64_symbol_chars[] = "@?";
185 /* Characters which always start a comment. */
186 const char comment_chars[] = "";
188 /* Characters which start a comment at the beginning of a line. */
189 const char line_comment_chars[] = "#";
191 /* Characters which may be used to separate multiple commands on a
192 single line. */
193 const char line_separator_chars[] = ";";
195 /* Characters which are used to indicate an exponent in a floating
196 point number. */
197 const char EXP_CHARS[] = "eE";
199 /* Characters which mean that a number is a floating point constant,
200 as in 0d1.0. */
201 const char FLT_CHARS[] = "rRsSfFdDxXpP";
203 /* ia64-specific option processing: */
205 const char *md_shortopts = "m:N:x::";
207 struct option md_longopts[] =
209 #define OPTION_MCONSTANT_GP (OPTION_MD_BASE + 1)
210 {"mconstant-gp", no_argument, NULL, OPTION_MCONSTANT_GP},
211 #define OPTION_MAUTO_PIC (OPTION_MD_BASE + 2)
212 {"mauto-pic", no_argument, NULL, OPTION_MAUTO_PIC}
215 size_t md_longopts_size = sizeof (md_longopts);
217 static struct
219 struct hash_control *pseudo_hash; /* pseudo opcode hash table */
220 struct hash_control *reg_hash; /* register name hash table */
221 struct hash_control *dynreg_hash; /* dynamic register hash table */
222 struct hash_control *const_hash; /* constant hash table */
223 struct hash_control *entry_hash; /* code entry hint hash table */
225 symbolS *regsym[REG_NUM];
227 /* If X_op is != O_absent, the registername for the instruction's
228 qualifying predicate. If NULL, p0 is assumed for instructions
229 that are predicatable. */
230 expressionS qp;
232 /* Optimize for which CPU. */
233 enum
235 itanium1,
236 itanium2
237 } tune;
239 /* What to do when hint.b is used. */
240 enum
242 hint_b_error,
243 hint_b_warning,
244 hint_b_ok
245 } hint_b;
247 unsigned int
248 manual_bundling : 1,
249 debug_dv: 1,
250 detect_dv: 1,
251 explicit_mode : 1, /* which mode we're in */
252 default_explicit_mode : 1, /* which mode is the default */
253 mode_explicitly_set : 1, /* was the current mode explicitly set? */
254 auto_align : 1,
255 keep_pending_output : 1;
257 /* What to do when something is wrong with unwind directives. */
258 enum
260 unwind_check_warning,
261 unwind_check_error
262 } unwind_check;
264 /* Each bundle consists of up to three instructions. We keep
265 track of four most recent instructions so we can correctly set
266 the end_of_insn_group for the last instruction in a bundle. */
267 int curr_slot;
268 int num_slots_in_use;
269 struct slot
271 unsigned int
272 end_of_insn_group : 1,
273 manual_bundling_on : 1,
274 manual_bundling_off : 1,
275 loc_directive_seen : 1;
276 signed char user_template; /* user-selected template, if any */
277 unsigned char qp_regno; /* qualifying predicate */
278 /* This duplicates a good fraction of "struct fix" but we
279 can't use a "struct fix" instead since we can't call
280 fix_new_exp() until we know the address of the instruction. */
281 int num_fixups;
282 struct insn_fix
284 bfd_reloc_code_real_type code;
285 enum ia64_opnd opnd; /* type of operand in need of fix */
286 unsigned int is_pcrel : 1; /* is operand pc-relative? */
287 expressionS expr; /* the value to be inserted */
289 fixup[2]; /* at most two fixups per insn */
290 struct ia64_opcode *idesc;
291 struct label_fix *label_fixups;
292 struct label_fix *tag_fixups;
293 struct unw_rec_list *unwind_record; /* Unwind directive. */
294 expressionS opnd[6];
295 char *src_file;
296 unsigned int src_line;
297 struct dwarf2_line_info debug_line;
299 slot[NUM_SLOTS];
301 segT last_text_seg;
303 struct dynreg
305 struct dynreg *next; /* next dynamic register */
306 const char *name;
307 unsigned short base; /* the base register number */
308 unsigned short num_regs; /* # of registers in this set */
310 *dynreg[DYNREG_NUM_TYPES], in, loc, out, rot;
312 flagword flags; /* ELF-header flags */
314 struct mem_offset {
315 unsigned hint:1; /* is this hint currently valid? */
316 bfd_vma offset; /* mem.offset offset */
317 bfd_vma base; /* mem.offset base */
318 } mem_offset;
320 int path; /* number of alt. entry points seen */
321 const char **entry_labels; /* labels of all alternate paths in
322 the current DV-checking block. */
323 int maxpaths; /* size currently allocated for
324 entry_labels */
326 int pointer_size; /* size in bytes of a pointer */
327 int pointer_size_shift; /* shift size of a pointer for alignment */
331 /* These are not const, because they are modified to MMI for non-itanium1
332 targets below. */
333 /* MFI bundle of nops. */
334 static unsigned char le_nop[16] =
336 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
337 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00
339 /* MFI bundle of nops with stop-bit. */
340 static unsigned char le_nop_stop[16] =
342 0x0d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
343 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00
346 /* application registers: */
348 #define AR_K0 0
349 #define AR_K7 7
350 #define AR_RSC 16
351 #define AR_BSP 17
352 #define AR_BSPSTORE 18
353 #define AR_RNAT 19
354 #define AR_UNAT 36
355 #define AR_FPSR 40
356 #define AR_ITC 44
357 #define AR_PFS 64
358 #define AR_LC 65
360 static const struct
362 const char *name;
363 int regnum;
365 ar[] =
367 {"ar.k0", 0}, {"ar.k1", 1}, {"ar.k2", 2}, {"ar.k3", 3},
368 {"ar.k4", 4}, {"ar.k5", 5}, {"ar.k6", 6}, {"ar.k7", 7},
369 {"ar.rsc", 16}, {"ar.bsp", 17},
370 {"ar.bspstore", 18}, {"ar.rnat", 19},
371 {"ar.fcr", 21}, {"ar.eflag", 24},
372 {"ar.csd", 25}, {"ar.ssd", 26},
373 {"ar.cflg", 27}, {"ar.fsr", 28},
374 {"ar.fir", 29}, {"ar.fdr", 30},
375 {"ar.ccv", 32}, {"ar.unat", 36},
376 {"ar.fpsr", 40}, {"ar.itc", 44},
377 {"ar.pfs", 64}, {"ar.lc", 65},
378 {"ar.ec", 66},
381 #define CR_IPSR 16
382 #define CR_ISR 17
383 #define CR_IIP 19
384 #define CR_IFA 20
385 #define CR_ITIR 21
386 #define CR_IIPA 22
387 #define CR_IFS 23
388 #define CR_IIM 24
389 #define CR_IHA 25
390 #define CR_IVR 65
391 #define CR_TPR 66
392 #define CR_EOI 67
393 #define CR_IRR0 68
394 #define CR_IRR3 71
395 #define CR_LRR0 80
396 #define CR_LRR1 81
398 /* control registers: */
399 static const struct
401 const char *name;
402 int regnum;
404 cr[] =
406 {"cr.dcr", 0},
407 {"cr.itm", 1},
408 {"cr.iva", 2},
409 {"cr.pta", 8},
410 {"cr.gpta", 9},
411 {"cr.ipsr", 16},
412 {"cr.isr", 17},
413 {"cr.iip", 19},
414 {"cr.ifa", 20},
415 {"cr.itir", 21},
416 {"cr.iipa", 22},
417 {"cr.ifs", 23},
418 {"cr.iim", 24},
419 {"cr.iha", 25},
420 {"cr.lid", 64},
421 {"cr.ivr", 65},
422 {"cr.tpr", 66},
423 {"cr.eoi", 67},
424 {"cr.irr0", 68},
425 {"cr.irr1", 69},
426 {"cr.irr2", 70},
427 {"cr.irr3", 71},
428 {"cr.itv", 72},
429 {"cr.pmv", 73},
430 {"cr.cmcv", 74},
431 {"cr.lrr0", 80},
432 {"cr.lrr1", 81}
435 #define PSR_MFL 4
436 #define PSR_IC 13
437 #define PSR_DFL 18
438 #define PSR_CPL 32
440 static const struct const_desc
442 const char *name;
443 valueT value;
445 const_bits[] =
447 /* PSR constant masks: */
449 /* 0: reserved */
450 {"psr.be", ((valueT) 1) << 1},
451 {"psr.up", ((valueT) 1) << 2},
452 {"psr.ac", ((valueT) 1) << 3},
453 {"psr.mfl", ((valueT) 1) << 4},
454 {"psr.mfh", ((valueT) 1) << 5},
455 /* 6-12: reserved */
456 {"psr.ic", ((valueT) 1) << 13},
457 {"psr.i", ((valueT) 1) << 14},
458 {"psr.pk", ((valueT) 1) << 15},
459 /* 16: reserved */
460 {"psr.dt", ((valueT) 1) << 17},
461 {"psr.dfl", ((valueT) 1) << 18},
462 {"psr.dfh", ((valueT) 1) << 19},
463 {"psr.sp", ((valueT) 1) << 20},
464 {"psr.pp", ((valueT) 1) << 21},
465 {"psr.di", ((valueT) 1) << 22},
466 {"psr.si", ((valueT) 1) << 23},
467 {"psr.db", ((valueT) 1) << 24},
468 {"psr.lp", ((valueT) 1) << 25},
469 {"psr.tb", ((valueT) 1) << 26},
470 {"psr.rt", ((valueT) 1) << 27},
471 /* 28-31: reserved */
472 /* 32-33: cpl (current privilege level) */
473 {"psr.is", ((valueT) 1) << 34},
474 {"psr.mc", ((valueT) 1) << 35},
475 {"psr.it", ((valueT) 1) << 36},
476 {"psr.id", ((valueT) 1) << 37},
477 {"psr.da", ((valueT) 1) << 38},
478 {"psr.dd", ((valueT) 1) << 39},
479 {"psr.ss", ((valueT) 1) << 40},
480 /* 41-42: ri (restart instruction) */
481 {"psr.ed", ((valueT) 1) << 43},
482 {"psr.bn", ((valueT) 1) << 44},
485 /* indirect register-sets/memory: */
487 static const struct
489 const char *name;
490 int regnum;
492 indirect_reg[] =
494 { "CPUID", IND_CPUID },
495 { "cpuid", IND_CPUID },
496 { "dbr", IND_DBR },
497 { "dtr", IND_DTR },
498 { "itr", IND_ITR },
499 { "ibr", IND_IBR },
500 { "msr", IND_MSR },
501 { "pkr", IND_PKR },
502 { "pmc", IND_PMC },
503 { "pmd", IND_PMD },
504 { "rr", IND_RR },
507 /* Pseudo functions used to indicate relocation types (these functions
508 start with an at sign (@). */
509 static struct
511 const char *name;
512 enum pseudo_type
514 PSEUDO_FUNC_NONE,
515 PSEUDO_FUNC_RELOC,
516 PSEUDO_FUNC_CONST,
517 PSEUDO_FUNC_REG,
518 PSEUDO_FUNC_FLOAT
520 type;
521 union
523 unsigned long ival;
524 symbolS *sym;
528 pseudo_func[] =
530 /* reloc pseudo functions (these must come first!): */
531 { "dtpmod", PSEUDO_FUNC_RELOC, { 0 } },
532 { "dtprel", PSEUDO_FUNC_RELOC, { 0 } },
533 { "fptr", PSEUDO_FUNC_RELOC, { 0 } },
534 { "gprel", PSEUDO_FUNC_RELOC, { 0 } },
535 { "ltoff", PSEUDO_FUNC_RELOC, { 0 } },
536 { "ltoffx", PSEUDO_FUNC_RELOC, { 0 } },
537 { "pcrel", PSEUDO_FUNC_RELOC, { 0 } },
538 { "pltoff", PSEUDO_FUNC_RELOC, { 0 } },
539 { "secrel", PSEUDO_FUNC_RELOC, { 0 } },
540 { "segrel", PSEUDO_FUNC_RELOC, { 0 } },
541 { "tprel", PSEUDO_FUNC_RELOC, { 0 } },
542 { "ltv", PSEUDO_FUNC_RELOC, { 0 } },
543 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_FPTR_RELATIVE */
544 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_DTP_MODULE */
545 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_DTP_RELATIVE */
546 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_TP_RELATIVE */
547 { "iplt", PSEUDO_FUNC_RELOC, { 0 } },
549 /* mbtype4 constants: */
550 { "alt", PSEUDO_FUNC_CONST, { 0xa } },
551 { "brcst", PSEUDO_FUNC_CONST, { 0x0 } },
552 { "mix", PSEUDO_FUNC_CONST, { 0x8 } },
553 { "rev", PSEUDO_FUNC_CONST, { 0xb } },
554 { "shuf", PSEUDO_FUNC_CONST, { 0x9 } },
556 /* fclass constants: */
557 { "nat", PSEUDO_FUNC_CONST, { 0x100 } },
558 { "qnan", PSEUDO_FUNC_CONST, { 0x080 } },
559 { "snan", PSEUDO_FUNC_CONST, { 0x040 } },
560 { "pos", PSEUDO_FUNC_CONST, { 0x001 } },
561 { "neg", PSEUDO_FUNC_CONST, { 0x002 } },
562 { "zero", PSEUDO_FUNC_CONST, { 0x004 } },
563 { "unorm", PSEUDO_FUNC_CONST, { 0x008 } },
564 { "norm", PSEUDO_FUNC_CONST, { 0x010 } },
565 { "inf", PSEUDO_FUNC_CONST, { 0x020 } },
567 { "natval", PSEUDO_FUNC_CONST, { 0x100 } }, /* old usage */
569 /* hint constants: */
570 { "pause", PSEUDO_FUNC_CONST, { 0x0 } },
572 /* unwind-related constants: */
573 { "svr4", PSEUDO_FUNC_CONST, { ELFOSABI_NONE } },
574 { "hpux", PSEUDO_FUNC_CONST, { ELFOSABI_HPUX } },
575 { "nt", PSEUDO_FUNC_CONST, { 2 } }, /* conflicts w/ELFOSABI_NETBSD */
576 { "linux", PSEUDO_FUNC_CONST, { ELFOSABI_LINUX } },
577 { "freebsd", PSEUDO_FUNC_CONST, { ELFOSABI_FREEBSD } },
578 { "openvms", PSEUDO_FUNC_CONST, { ELFOSABI_OPENVMS } },
579 { "nsk", PSEUDO_FUNC_CONST, { ELFOSABI_NSK } },
581 /* unwind-related registers: */
582 { "priunat",PSEUDO_FUNC_REG, { REG_PRIUNAT } }
585 /* 41-bit nop opcodes (one per unit): */
586 static const bfd_vma nop[IA64_NUM_UNITS] =
588 0x0000000000LL, /* NIL => break 0 */
589 0x0008000000LL, /* I-unit nop */
590 0x0008000000LL, /* M-unit nop */
591 0x4000000000LL, /* B-unit nop */
592 0x0008000000LL, /* F-unit nop */
593 0x0008000000LL, /* L-"unit" nop */
594 0x0008000000LL, /* X-unit nop */
597 /* Can't be `const' as it's passed to input routines (which have the
598 habit of setting temporary sentinels. */
599 static char special_section_name[][20] =
601 {".bss"}, {".sbss"}, {".sdata"}, {".rodata"}, {".comment"},
602 {".IA_64.unwind"}, {".IA_64.unwind_info"},
603 {".init_array"}, {".fini_array"}
606 /* The best template for a particular sequence of up to three
607 instructions: */
608 #define N IA64_NUM_TYPES
609 static unsigned char best_template[N][N][N];
610 #undef N
612 /* Resource dependencies currently in effect */
613 static struct rsrc {
614 int depind; /* dependency index */
615 const struct ia64_dependency *dependency; /* actual dependency */
616 unsigned specific:1, /* is this a specific bit/regno? */
617 link_to_qp_branch:1; /* will a branch on the same QP clear it?*/
618 int index; /* specific regno/bit within dependency */
619 int note; /* optional qualifying note (0 if none) */
620 #define STATE_NONE 0
621 #define STATE_STOP 1
622 #define STATE_SRLZ 2
623 int insn_srlz; /* current insn serialization state */
624 int data_srlz; /* current data serialization state */
625 int qp_regno; /* qualifying predicate for this usage */
626 char *file; /* what file marked this dependency */
627 unsigned int line; /* what line marked this dependency */
628 struct mem_offset mem_offset; /* optional memory offset hint */
629 enum { CMP_NONE, CMP_OR, CMP_AND } cmp_type; /* OR or AND compare? */
630 int path; /* corresponding code entry index */
631 } *regdeps = NULL;
632 static int regdepslen = 0;
633 static int regdepstotlen = 0;
634 static const char *dv_mode[] = { "RAW", "WAW", "WAR" };
635 static const char *dv_sem[] = { "none", "implied", "impliedf",
636 "data", "instr", "specific", "stop", "other" };
637 static const char *dv_cmp_type[] = { "none", "OR", "AND" };
639 /* Current state of PR mutexation */
640 static struct qpmutex {
641 valueT prmask;
642 int path;
643 } *qp_mutexes = NULL; /* QP mutex bitmasks */
644 static int qp_mutexeslen = 0;
645 static int qp_mutexestotlen = 0;
646 static valueT qp_safe_across_calls = 0;
648 /* Current state of PR implications */
649 static struct qp_imply {
650 unsigned p1:6;
651 unsigned p2:6;
652 unsigned p2_branched:1;
653 int path;
654 } *qp_implies = NULL;
655 static int qp_implieslen = 0;
656 static int qp_impliestotlen = 0;
658 /* Keep track of static GR values so that indirect register usage can
659 sometimes be tracked. */
660 static struct gr {
661 unsigned known:1;
662 int path;
663 valueT value;
664 } gr_values[128] = {
667 #ifdef INT_MAX
668 INT_MAX,
669 #else
670 (((1 << (8 * sizeof(gr_values->path) - 2)) - 1) << 1) + 1,
671 #endif
676 /* Remember the alignment frag. */
677 static fragS *align_frag;
679 /* These are the routines required to output the various types of
680 unwind records. */
682 /* A slot_number is a frag address plus the slot index (0-2). We use the
683 frag address here so that if there is a section switch in the middle of
684 a function, then instructions emitted to a different section are not
685 counted. Since there may be more than one frag for a function, this
686 means we also need to keep track of which frag this address belongs to
687 so we can compute inter-frag distances. This also nicely solves the
688 problem with nops emitted for align directives, which can't easily be
689 counted, but can easily be derived from frag sizes. */
691 typedef struct unw_rec_list {
692 unwind_record r;
693 unsigned long slot_number;
694 fragS *slot_frag;
695 unsigned long next_slot_number;
696 fragS *next_slot_frag;
697 struct unw_rec_list *next;
698 } unw_rec_list;
700 #define SLOT_NUM_NOT_SET (unsigned)-1
702 /* Linked list of saved prologue counts. A very poor
703 implementation of a map from label numbers to prologue counts. */
704 typedef struct label_prologue_count
706 struct label_prologue_count *next;
707 unsigned long label_number;
708 unsigned int prologue_count;
709 } label_prologue_count;
711 static struct
713 /* Maintain a list of unwind entries for the current function. */
714 unw_rec_list *list;
715 unw_rec_list *tail;
717 /* Any unwind entires that should be attached to the current slot
718 that an insn is being constructed for. */
719 unw_rec_list *current_entry;
721 /* These are used to create the unwind table entry for this function. */
722 symbolS *proc_start;
723 symbolS *info; /* pointer to unwind info */
724 symbolS *personality_routine;
725 segT saved_text_seg;
726 subsegT saved_text_subseg;
727 unsigned int force_unwind_entry : 1; /* force generation of unwind entry? */
729 /* TRUE if processing unwind directives in a prologue region. */
730 unsigned int prologue : 1;
731 unsigned int prologue_mask : 4;
732 unsigned int body : 1;
733 unsigned int insn : 1;
734 unsigned int prologue_count; /* number of .prologues seen so far */
735 /* Prologue counts at previous .label_state directives. */
736 struct label_prologue_count * saved_prologue_counts;
737 } unwind;
739 /* The input value is a negated offset from psp, and specifies an address
740 psp - offset. The encoded value is psp + 16 - (4 * offset). Thus we
741 must add 16 and divide by 4 to get the encoded value. */
743 #define ENCODED_PSP_OFFSET(OFFSET) (((OFFSET) + 16) / 4)
745 typedef void (*vbyte_func) PARAMS ((int, char *, char *));
747 /* Forward declarations: */
748 static void set_section PARAMS ((char *name));
749 static unsigned int set_regstack PARAMS ((unsigned int, unsigned int,
750 unsigned int, unsigned int));
751 static void dot_align (int);
752 static void dot_radix PARAMS ((int));
753 static void dot_special_section PARAMS ((int));
754 static void dot_proc PARAMS ((int));
755 static void dot_fframe PARAMS ((int));
756 static void dot_vframe PARAMS ((int));
757 static void dot_vframesp PARAMS ((int));
758 static void dot_vframepsp PARAMS ((int));
759 static void dot_save PARAMS ((int));
760 static void dot_restore PARAMS ((int));
761 static void dot_restorereg PARAMS ((int));
762 static void dot_restorereg_p PARAMS ((int));
763 static void dot_handlerdata PARAMS ((int));
764 static void dot_unwentry PARAMS ((int));
765 static void dot_altrp PARAMS ((int));
766 static void dot_savemem PARAMS ((int));
767 static void dot_saveg PARAMS ((int));
768 static void dot_savef PARAMS ((int));
769 static void dot_saveb PARAMS ((int));
770 static void dot_savegf PARAMS ((int));
771 static void dot_spill PARAMS ((int));
772 static void dot_spillreg PARAMS ((int));
773 static void dot_spillmem PARAMS ((int));
774 static void dot_spillreg_p PARAMS ((int));
775 static void dot_spillmem_p PARAMS ((int));
776 static void dot_label_state PARAMS ((int));
777 static void dot_copy_state PARAMS ((int));
778 static void dot_unwabi PARAMS ((int));
779 static void dot_personality PARAMS ((int));
780 static void dot_body PARAMS ((int));
781 static void dot_prologue PARAMS ((int));
782 static void dot_endp PARAMS ((int));
783 static void dot_template PARAMS ((int));
784 static void dot_regstk PARAMS ((int));
785 static void dot_rot PARAMS ((int));
786 static void dot_byteorder PARAMS ((int));
787 static void dot_psr PARAMS ((int));
788 static void dot_alias PARAMS ((int));
789 static void dot_ln PARAMS ((int));
790 static void cross_section PARAMS ((int ref, void (*cons) PARAMS((int)), int ua));
791 static void dot_xdata PARAMS ((int));
792 static void stmt_float_cons PARAMS ((int));
793 static void stmt_cons_ua PARAMS ((int));
794 static void dot_xfloat_cons PARAMS ((int));
795 static void dot_xstringer PARAMS ((int));
796 static void dot_xdata_ua PARAMS ((int));
797 static void dot_xfloat_cons_ua PARAMS ((int));
798 static void print_prmask PARAMS ((valueT mask));
799 static void dot_pred_rel PARAMS ((int));
800 static void dot_reg_val PARAMS ((int));
801 static void dot_serialize PARAMS ((int));
802 static void dot_dv_mode PARAMS ((int));
803 static void dot_entry PARAMS ((int));
804 static void dot_mem_offset PARAMS ((int));
805 static void add_unwind_entry PARAMS((unw_rec_list *ptr));
806 static symbolS *declare_register PARAMS ((const char *name, int regnum));
807 static void declare_register_set PARAMS ((const char *, int, int));
808 static unsigned int operand_width PARAMS ((enum ia64_opnd));
809 static enum operand_match_result operand_match PARAMS ((const struct ia64_opcode *idesc,
810 int index,
811 expressionS *e));
812 static int parse_operand PARAMS ((expressionS *e));
813 static struct ia64_opcode * parse_operands PARAMS ((struct ia64_opcode *));
814 static void build_insn PARAMS ((struct slot *, bfd_vma *));
815 static void emit_one_bundle PARAMS ((void));
816 static void fix_insn PARAMS ((fixS *, const struct ia64_operand *, valueT));
817 static bfd_reloc_code_real_type ia64_gen_real_reloc_type PARAMS ((struct symbol *sym,
818 bfd_reloc_code_real_type r_type));
819 static void insn_group_break PARAMS ((int, int, int));
820 static void mark_resource PARAMS ((struct ia64_opcode *, const struct ia64_dependency *,
821 struct rsrc *, int depind, int path));
822 static void add_qp_mutex PARAMS((valueT mask));
823 static void add_qp_imply PARAMS((int p1, int p2));
824 static void clear_qp_branch_flag PARAMS((valueT mask));
825 static void clear_qp_mutex PARAMS((valueT mask));
826 static void clear_qp_implies PARAMS((valueT p1_mask, valueT p2_mask));
827 static int has_suffix_p PARAMS((const char *, const char *));
828 static void clear_register_values PARAMS ((void));
829 static void print_dependency PARAMS ((const char *action, int depind));
830 static void instruction_serialization PARAMS ((void));
831 static void data_serialization PARAMS ((void));
832 static void remove_marked_resource PARAMS ((struct rsrc *));
833 static int is_conditional_branch PARAMS ((struct ia64_opcode *));
834 static int is_taken_branch PARAMS ((struct ia64_opcode *));
835 static int is_interruption_or_rfi PARAMS ((struct ia64_opcode *));
836 static int depends_on PARAMS ((int, struct ia64_opcode *));
837 static int specify_resource PARAMS ((const struct ia64_dependency *,
838 struct ia64_opcode *, int, struct rsrc [], int, int));
839 static int check_dv PARAMS((struct ia64_opcode *idesc));
840 static void check_dependencies PARAMS((struct ia64_opcode *));
841 static void mark_resources PARAMS((struct ia64_opcode *));
842 static void update_dependencies PARAMS((struct ia64_opcode *));
843 static void note_register_values PARAMS((struct ia64_opcode *));
844 static int qp_mutex PARAMS ((int, int, int));
845 static int resources_match PARAMS ((struct rsrc *, struct ia64_opcode *, int, int, int));
846 static void output_vbyte_mem PARAMS ((int, char *, char *));
847 static void count_output PARAMS ((int, char *, char *));
848 static void output_R1_format PARAMS ((vbyte_func, unw_record_type, int));
849 static void output_R2_format PARAMS ((vbyte_func, int, int, unsigned long));
850 static void output_R3_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
851 static void output_P1_format PARAMS ((vbyte_func, int));
852 static void output_P2_format PARAMS ((vbyte_func, int, int));
853 static void output_P3_format PARAMS ((vbyte_func, unw_record_type, int));
854 static void output_P4_format PARAMS ((vbyte_func, unsigned char *, unsigned long));
855 static void output_P5_format PARAMS ((vbyte_func, int, unsigned long));
856 static void output_P6_format PARAMS ((vbyte_func, unw_record_type, int));
857 static void output_P7_format PARAMS ((vbyte_func, unw_record_type, unsigned long, unsigned long));
858 static void output_P8_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
859 static void output_P9_format PARAMS ((vbyte_func, int, int));
860 static void output_P10_format PARAMS ((vbyte_func, int, int));
861 static void output_B1_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
862 static void output_B2_format PARAMS ((vbyte_func, unsigned long, unsigned long));
863 static void output_B3_format PARAMS ((vbyte_func, unsigned long, unsigned long));
864 static void output_B4_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
865 static char format_ab_reg PARAMS ((int, int));
866 static void output_X1_format PARAMS ((vbyte_func, unw_record_type, int, int, unsigned long,
867 unsigned long));
868 static void output_X2_format PARAMS ((vbyte_func, int, int, int, int, int, unsigned long));
869 static void output_X3_format PARAMS ((vbyte_func, unw_record_type, int, int, int, unsigned long,
870 unsigned long));
871 static void output_X4_format PARAMS ((vbyte_func, int, int, int, int, int, int, unsigned long));
872 static unw_rec_list *output_endp PARAMS ((void));
873 static unw_rec_list *output_prologue PARAMS ((void));
874 static unw_rec_list *output_prologue_gr PARAMS ((unsigned int, unsigned int));
875 static unw_rec_list *output_body PARAMS ((void));
876 static unw_rec_list *output_mem_stack_f PARAMS ((unsigned int));
877 static unw_rec_list *output_mem_stack_v PARAMS ((void));
878 static unw_rec_list *output_psp_gr PARAMS ((unsigned int));
879 static unw_rec_list *output_psp_sprel PARAMS ((unsigned int));
880 static unw_rec_list *output_rp_when PARAMS ((void));
881 static unw_rec_list *output_rp_gr PARAMS ((unsigned int));
882 static unw_rec_list *output_rp_br PARAMS ((unsigned int));
883 static unw_rec_list *output_rp_psprel PARAMS ((unsigned int));
884 static unw_rec_list *output_rp_sprel PARAMS ((unsigned int));
885 static unw_rec_list *output_pfs_when PARAMS ((void));
886 static unw_rec_list *output_pfs_gr PARAMS ((unsigned int));
887 static unw_rec_list *output_pfs_psprel PARAMS ((unsigned int));
888 static unw_rec_list *output_pfs_sprel PARAMS ((unsigned int));
889 static unw_rec_list *output_preds_when PARAMS ((void));
890 static unw_rec_list *output_preds_gr PARAMS ((unsigned int));
891 static unw_rec_list *output_preds_psprel PARAMS ((unsigned int));
892 static unw_rec_list *output_preds_sprel PARAMS ((unsigned int));
893 static unw_rec_list *output_fr_mem PARAMS ((unsigned int));
894 static unw_rec_list *output_frgr_mem PARAMS ((unsigned int, unsigned int));
895 static unw_rec_list *output_gr_gr PARAMS ((unsigned int, unsigned int));
896 static unw_rec_list *output_gr_mem PARAMS ((unsigned int));
897 static unw_rec_list *output_br_mem PARAMS ((unsigned int));
898 static unw_rec_list *output_br_gr PARAMS ((unsigned int, unsigned int));
899 static unw_rec_list *output_spill_base PARAMS ((unsigned int));
900 static unw_rec_list *output_unat_when PARAMS ((void));
901 static unw_rec_list *output_unat_gr PARAMS ((unsigned int));
902 static unw_rec_list *output_unat_psprel PARAMS ((unsigned int));
903 static unw_rec_list *output_unat_sprel PARAMS ((unsigned int));
904 static unw_rec_list *output_lc_when PARAMS ((void));
905 static unw_rec_list *output_lc_gr PARAMS ((unsigned int));
906 static unw_rec_list *output_lc_psprel PARAMS ((unsigned int));
907 static unw_rec_list *output_lc_sprel PARAMS ((unsigned int));
908 static unw_rec_list *output_fpsr_when PARAMS ((void));
909 static unw_rec_list *output_fpsr_gr PARAMS ((unsigned int));
910 static unw_rec_list *output_fpsr_psprel PARAMS ((unsigned int));
911 static unw_rec_list *output_fpsr_sprel PARAMS ((unsigned int));
912 static unw_rec_list *output_priunat_when_gr PARAMS ((void));
913 static unw_rec_list *output_priunat_when_mem PARAMS ((void));
914 static unw_rec_list *output_priunat_gr PARAMS ((unsigned int));
915 static unw_rec_list *output_priunat_psprel PARAMS ((unsigned int));
916 static unw_rec_list *output_priunat_sprel PARAMS ((unsigned int));
917 static unw_rec_list *output_bsp_when PARAMS ((void));
918 static unw_rec_list *output_bsp_gr PARAMS ((unsigned int));
919 static unw_rec_list *output_bsp_psprel PARAMS ((unsigned int));
920 static unw_rec_list *output_bsp_sprel PARAMS ((unsigned int));
921 static unw_rec_list *output_bspstore_when PARAMS ((void));
922 static unw_rec_list *output_bspstore_gr PARAMS ((unsigned int));
923 static unw_rec_list *output_bspstore_psprel PARAMS ((unsigned int));
924 static unw_rec_list *output_bspstore_sprel PARAMS ((unsigned int));
925 static unw_rec_list *output_rnat_when PARAMS ((void));
926 static unw_rec_list *output_rnat_gr PARAMS ((unsigned int));
927 static unw_rec_list *output_rnat_psprel PARAMS ((unsigned int));
928 static unw_rec_list *output_rnat_sprel PARAMS ((unsigned int));
929 static unw_rec_list *output_unwabi PARAMS ((unsigned long, unsigned long));
930 static unw_rec_list *output_epilogue PARAMS ((unsigned long));
931 static unw_rec_list *output_label_state PARAMS ((unsigned long));
932 static unw_rec_list *output_copy_state PARAMS ((unsigned long));
933 static unw_rec_list *output_spill_psprel PARAMS ((unsigned int, unsigned int, unsigned int));
934 static unw_rec_list *output_spill_sprel PARAMS ((unsigned int, unsigned int, unsigned int));
935 static unw_rec_list *output_spill_psprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
936 unsigned int));
937 static unw_rec_list *output_spill_sprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
938 unsigned int));
939 static unw_rec_list *output_spill_reg PARAMS ((unsigned int, unsigned int, unsigned int,
940 unsigned int));
941 static unw_rec_list *output_spill_reg_p PARAMS ((unsigned int, unsigned int, unsigned int,
942 unsigned int, unsigned int));
943 static void process_one_record PARAMS ((unw_rec_list *, vbyte_func));
944 static void process_unw_records PARAMS ((unw_rec_list *, vbyte_func));
945 static int calc_record_size PARAMS ((unw_rec_list *));
946 static void set_imask PARAMS ((unw_rec_list *, unsigned long, unsigned long, unsigned int));
947 static unsigned long slot_index PARAMS ((unsigned long, fragS *,
948 unsigned long, fragS *,
949 int));
950 static unw_rec_list *optimize_unw_records PARAMS ((unw_rec_list *));
951 static void fixup_unw_records PARAMS ((unw_rec_list *, int));
952 static int convert_expr_to_ab_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
953 static int convert_expr_to_xy_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
954 static unsigned int get_saved_prologue_count PARAMS ((unsigned long));
955 static void save_prologue_count PARAMS ((unsigned long, unsigned int));
956 static void free_saved_prologue_counts PARAMS ((void));
958 /* Determine if application register REGNUM resides only in the integer
959 unit (as opposed to the memory unit). */
960 static int
961 ar_is_only_in_integer_unit (int reg)
963 reg -= REG_AR;
964 return reg >= 64 && reg <= 111;
967 /* Determine if application register REGNUM resides only in the memory
968 unit (as opposed to the integer unit). */
969 static int
970 ar_is_only_in_memory_unit (int reg)
972 reg -= REG_AR;
973 return reg >= 0 && reg <= 47;
976 /* Switch to section NAME and create section if necessary. It's
977 rather ugly that we have to manipulate input_line_pointer but I
978 don't see any other way to accomplish the same thing without
979 changing obj-elf.c (which may be the Right Thing, in the end). */
980 static void
981 set_section (name)
982 char *name;
984 char *saved_input_line_pointer;
986 saved_input_line_pointer = input_line_pointer;
987 input_line_pointer = name;
988 obj_elf_section (0);
989 input_line_pointer = saved_input_line_pointer;
992 /* Map 's' to SHF_IA_64_SHORT. */
995 ia64_elf_section_letter (letter, ptr_msg)
996 int letter;
997 char **ptr_msg;
999 if (letter == 's')
1000 return SHF_IA_64_SHORT;
1001 else if (letter == 'o')
1002 return SHF_LINK_ORDER;
1004 *ptr_msg = _("Bad .section directive: want a,o,s,w,x,M,S,G,T in string");
1005 return -1;
1008 /* Map SHF_IA_64_SHORT to SEC_SMALL_DATA. */
1010 flagword
1011 ia64_elf_section_flags (flags, attr, type)
1012 flagword flags;
1013 int attr, type ATTRIBUTE_UNUSED;
1015 if (attr & SHF_IA_64_SHORT)
1016 flags |= SEC_SMALL_DATA;
1017 return flags;
1021 ia64_elf_section_type (str, len)
1022 const char *str;
1023 size_t len;
1025 #define STREQ(s) ((len == sizeof (s) - 1) && (strncmp (str, s, sizeof (s) - 1) == 0))
1027 if (STREQ (ELF_STRING_ia64_unwind_info))
1028 return SHT_PROGBITS;
1030 if (STREQ (ELF_STRING_ia64_unwind_info_once))
1031 return SHT_PROGBITS;
1033 if (STREQ (ELF_STRING_ia64_unwind))
1034 return SHT_IA_64_UNWIND;
1036 if (STREQ (ELF_STRING_ia64_unwind_once))
1037 return SHT_IA_64_UNWIND;
1039 if (STREQ ("unwind"))
1040 return SHT_IA_64_UNWIND;
1042 return -1;
1043 #undef STREQ
1046 static unsigned int
1047 set_regstack (ins, locs, outs, rots)
1048 unsigned int ins, locs, outs, rots;
1050 /* Size of frame. */
1051 unsigned int sof;
1053 sof = ins + locs + outs;
1054 if (sof > 96)
1056 as_bad ("Size of frame exceeds maximum of 96 registers");
1057 return 0;
1059 if (rots > sof)
1061 as_warn ("Size of rotating registers exceeds frame size");
1062 return 0;
1064 md.in.base = REG_GR + 32;
1065 md.loc.base = md.in.base + ins;
1066 md.out.base = md.loc.base + locs;
1068 md.in.num_regs = ins;
1069 md.loc.num_regs = locs;
1070 md.out.num_regs = outs;
1071 md.rot.num_regs = rots;
1072 return sof;
1075 void
1076 ia64_flush_insns ()
1078 struct label_fix *lfix;
1079 segT saved_seg;
1080 subsegT saved_subseg;
1081 unw_rec_list *ptr;
1083 if (!md.last_text_seg)
1084 return;
1086 saved_seg = now_seg;
1087 saved_subseg = now_subseg;
1089 subseg_set (md.last_text_seg, 0);
1091 while (md.num_slots_in_use > 0)
1092 emit_one_bundle (); /* force out queued instructions */
1094 /* In case there are labels following the last instruction, resolve
1095 those now: */
1096 for (lfix = CURR_SLOT.label_fixups; lfix; lfix = lfix->next)
1098 S_SET_VALUE (lfix->sym, frag_now_fix ());
1099 symbol_set_frag (lfix->sym, frag_now);
1101 CURR_SLOT.label_fixups = 0;
1102 for (lfix = CURR_SLOT.tag_fixups; lfix; lfix = lfix->next)
1104 S_SET_VALUE (lfix->sym, frag_now_fix ());
1105 symbol_set_frag (lfix->sym, frag_now);
1107 CURR_SLOT.tag_fixups = 0;
1109 /* In case there are unwind directives following the last instruction,
1110 resolve those now. We only handle prologue, body, and endp directives
1111 here. Give an error for others. */
1112 for (ptr = unwind.current_entry; ptr; ptr = ptr->next)
1114 switch (ptr->r.type)
1116 case prologue:
1117 case prologue_gr:
1118 case body:
1119 case endp:
1120 ptr->slot_number = (unsigned long) frag_more (0);
1121 ptr->slot_frag = frag_now;
1122 break;
1124 /* Allow any record which doesn't have a "t" field (i.e.,
1125 doesn't relate to a particular instruction). */
1126 case unwabi:
1127 case br_gr:
1128 case copy_state:
1129 case fr_mem:
1130 case frgr_mem:
1131 case gr_gr:
1132 case gr_mem:
1133 case label_state:
1134 case rp_br:
1135 case spill_base:
1136 case spill_mask:
1137 /* nothing */
1138 break;
1140 default:
1141 as_bad (_("Unwind directive not followed by an instruction."));
1142 break;
1145 unwind.current_entry = NULL;
1147 subseg_set (saved_seg, saved_subseg);
1149 if (md.qp.X_op == O_register)
1150 as_bad ("qualifying predicate not followed by instruction");
1153 static void
1154 ia64_do_align (int nbytes)
1156 char *saved_input_line_pointer = input_line_pointer;
1158 input_line_pointer = "";
1159 s_align_bytes (nbytes);
1160 input_line_pointer = saved_input_line_pointer;
1163 void
1164 ia64_cons_align (nbytes)
1165 int nbytes;
1167 if (md.auto_align)
1169 char *saved_input_line_pointer = input_line_pointer;
1170 input_line_pointer = "";
1171 s_align_bytes (nbytes);
1172 input_line_pointer = saved_input_line_pointer;
1176 /* Output COUNT bytes to a memory location. */
1177 static char *vbyte_mem_ptr = NULL;
1179 void
1180 output_vbyte_mem (count, ptr, comment)
1181 int count;
1182 char *ptr;
1183 char *comment ATTRIBUTE_UNUSED;
1185 int x;
1186 if (vbyte_mem_ptr == NULL)
1187 abort ();
1189 if (count == 0)
1190 return;
1191 for (x = 0; x < count; x++)
1192 *(vbyte_mem_ptr++) = ptr[x];
1195 /* Count the number of bytes required for records. */
1196 static int vbyte_count = 0;
1197 void
1198 count_output (count, ptr, comment)
1199 int count;
1200 char *ptr ATTRIBUTE_UNUSED;
1201 char *comment ATTRIBUTE_UNUSED;
1203 vbyte_count += count;
1206 static void
1207 output_R1_format (f, rtype, rlen)
1208 vbyte_func f;
1209 unw_record_type rtype;
1210 int rlen;
1212 int r = 0;
1213 char byte;
1214 if (rlen > 0x1f)
1216 output_R3_format (f, rtype, rlen);
1217 return;
1220 if (rtype == body)
1221 r = 1;
1222 else if (rtype != prologue)
1223 as_bad ("record type is not valid");
1225 byte = UNW_R1 | (r << 5) | (rlen & 0x1f);
1226 (*f) (1, &byte, NULL);
1229 static void
1230 output_R2_format (f, mask, grsave, rlen)
1231 vbyte_func f;
1232 int mask, grsave;
1233 unsigned long rlen;
1235 char bytes[20];
1236 int count = 2;
1237 mask = (mask & 0x0f);
1238 grsave = (grsave & 0x7f);
1240 bytes[0] = (UNW_R2 | (mask >> 1));
1241 bytes[1] = (((mask & 0x01) << 7) | grsave);
1242 count += output_leb128 (bytes + 2, rlen, 0);
1243 (*f) (count, bytes, NULL);
1246 static void
1247 output_R3_format (f, rtype, rlen)
1248 vbyte_func f;
1249 unw_record_type rtype;
1250 unsigned long rlen;
1252 int r = 0, count;
1253 char bytes[20];
1254 if (rlen <= 0x1f)
1256 output_R1_format (f, rtype, rlen);
1257 return;
1260 if (rtype == body)
1261 r = 1;
1262 else if (rtype != prologue)
1263 as_bad ("record type is not valid");
1264 bytes[0] = (UNW_R3 | r);
1265 count = output_leb128 (bytes + 1, rlen, 0);
1266 (*f) (count + 1, bytes, NULL);
1269 static void
1270 output_P1_format (f, brmask)
1271 vbyte_func f;
1272 int brmask;
1274 char byte;
1275 byte = UNW_P1 | (brmask & 0x1f);
1276 (*f) (1, &byte, NULL);
1279 static void
1280 output_P2_format (f, brmask, gr)
1281 vbyte_func f;
1282 int brmask;
1283 int gr;
1285 char bytes[2];
1286 brmask = (brmask & 0x1f);
1287 bytes[0] = UNW_P2 | (brmask >> 1);
1288 bytes[1] = (((brmask & 1) << 7) | gr);
1289 (*f) (2, bytes, NULL);
1292 static void
1293 output_P3_format (f, rtype, reg)
1294 vbyte_func f;
1295 unw_record_type rtype;
1296 int reg;
1298 char bytes[2];
1299 int r = 0;
1300 reg = (reg & 0x7f);
1301 switch (rtype)
1303 case psp_gr:
1304 r = 0;
1305 break;
1306 case rp_gr:
1307 r = 1;
1308 break;
1309 case pfs_gr:
1310 r = 2;
1311 break;
1312 case preds_gr:
1313 r = 3;
1314 break;
1315 case unat_gr:
1316 r = 4;
1317 break;
1318 case lc_gr:
1319 r = 5;
1320 break;
1321 case rp_br:
1322 r = 6;
1323 break;
1324 case rnat_gr:
1325 r = 7;
1326 break;
1327 case bsp_gr:
1328 r = 8;
1329 break;
1330 case bspstore_gr:
1331 r = 9;
1332 break;
1333 case fpsr_gr:
1334 r = 10;
1335 break;
1336 case priunat_gr:
1337 r = 11;
1338 break;
1339 default:
1340 as_bad ("Invalid record type for P3 format.");
1342 bytes[0] = (UNW_P3 | (r >> 1));
1343 bytes[1] = (((r & 1) << 7) | reg);
1344 (*f) (2, bytes, NULL);
1347 static void
1348 output_P4_format (f, imask, imask_size)
1349 vbyte_func f;
1350 unsigned char *imask;
1351 unsigned long imask_size;
1353 imask[0] = UNW_P4;
1354 (*f) (imask_size, (char *) imask, NULL);
1357 static void
1358 output_P5_format (f, grmask, frmask)
1359 vbyte_func f;
1360 int grmask;
1361 unsigned long frmask;
1363 char bytes[4];
1364 grmask = (grmask & 0x0f);
1366 bytes[0] = UNW_P5;
1367 bytes[1] = ((grmask << 4) | ((frmask & 0x000f0000) >> 16));
1368 bytes[2] = ((frmask & 0x0000ff00) >> 8);
1369 bytes[3] = (frmask & 0x000000ff);
1370 (*f) (4, bytes, NULL);
1373 static void
1374 output_P6_format (f, rtype, rmask)
1375 vbyte_func f;
1376 unw_record_type rtype;
1377 int rmask;
1379 char byte;
1380 int r = 0;
1382 if (rtype == gr_mem)
1383 r = 1;
1384 else if (rtype != fr_mem)
1385 as_bad ("Invalid record type for format P6");
1386 byte = (UNW_P6 | (r << 4) | (rmask & 0x0f));
1387 (*f) (1, &byte, NULL);
1390 static void
1391 output_P7_format (f, rtype, w1, w2)
1392 vbyte_func f;
1393 unw_record_type rtype;
1394 unsigned long w1;
1395 unsigned long w2;
1397 char bytes[20];
1398 int count = 1;
1399 int r = 0;
1400 count += output_leb128 (bytes + 1, w1, 0);
1401 switch (rtype)
1403 case mem_stack_f:
1404 r = 0;
1405 count += output_leb128 (bytes + count, w2 >> 4, 0);
1406 break;
1407 case mem_stack_v:
1408 r = 1;
1409 break;
1410 case spill_base:
1411 r = 2;
1412 break;
1413 case psp_sprel:
1414 r = 3;
1415 break;
1416 case rp_when:
1417 r = 4;
1418 break;
1419 case rp_psprel:
1420 r = 5;
1421 break;
1422 case pfs_when:
1423 r = 6;
1424 break;
1425 case pfs_psprel:
1426 r = 7;
1427 break;
1428 case preds_when:
1429 r = 8;
1430 break;
1431 case preds_psprel:
1432 r = 9;
1433 break;
1434 case lc_when:
1435 r = 10;
1436 break;
1437 case lc_psprel:
1438 r = 11;
1439 break;
1440 case unat_when:
1441 r = 12;
1442 break;
1443 case unat_psprel:
1444 r = 13;
1445 break;
1446 case fpsr_when:
1447 r = 14;
1448 break;
1449 case fpsr_psprel:
1450 r = 15;
1451 break;
1452 default:
1453 break;
1455 bytes[0] = (UNW_P7 | r);
1456 (*f) (count, bytes, NULL);
1459 static void
1460 output_P8_format (f, rtype, t)
1461 vbyte_func f;
1462 unw_record_type rtype;
1463 unsigned long t;
1465 char bytes[20];
1466 int r = 0;
1467 int count = 2;
1468 bytes[0] = UNW_P8;
1469 switch (rtype)
1471 case rp_sprel:
1472 r = 1;
1473 break;
1474 case pfs_sprel:
1475 r = 2;
1476 break;
1477 case preds_sprel:
1478 r = 3;
1479 break;
1480 case lc_sprel:
1481 r = 4;
1482 break;
1483 case unat_sprel:
1484 r = 5;
1485 break;
1486 case fpsr_sprel:
1487 r = 6;
1488 break;
1489 case bsp_when:
1490 r = 7;
1491 break;
1492 case bsp_psprel:
1493 r = 8;
1494 break;
1495 case bsp_sprel:
1496 r = 9;
1497 break;
1498 case bspstore_when:
1499 r = 10;
1500 break;
1501 case bspstore_psprel:
1502 r = 11;
1503 break;
1504 case bspstore_sprel:
1505 r = 12;
1506 break;
1507 case rnat_when:
1508 r = 13;
1509 break;
1510 case rnat_psprel:
1511 r = 14;
1512 break;
1513 case rnat_sprel:
1514 r = 15;
1515 break;
1516 case priunat_when_gr:
1517 r = 16;
1518 break;
1519 case priunat_psprel:
1520 r = 17;
1521 break;
1522 case priunat_sprel:
1523 r = 18;
1524 break;
1525 case priunat_when_mem:
1526 r = 19;
1527 break;
1528 default:
1529 break;
1531 bytes[1] = r;
1532 count += output_leb128 (bytes + 2, t, 0);
1533 (*f) (count, bytes, NULL);
1536 static void
1537 output_P9_format (f, grmask, gr)
1538 vbyte_func f;
1539 int grmask;
1540 int gr;
1542 char bytes[3];
1543 bytes[0] = UNW_P9;
1544 bytes[1] = (grmask & 0x0f);
1545 bytes[2] = (gr & 0x7f);
1546 (*f) (3, bytes, NULL);
1549 static void
1550 output_P10_format (f, abi, context)
1551 vbyte_func f;
1552 int abi;
1553 int context;
1555 char bytes[3];
1556 bytes[0] = UNW_P10;
1557 bytes[1] = (abi & 0xff);
1558 bytes[2] = (context & 0xff);
1559 (*f) (3, bytes, NULL);
1562 static void
1563 output_B1_format (f, rtype, label)
1564 vbyte_func f;
1565 unw_record_type rtype;
1566 unsigned long label;
1568 char byte;
1569 int r = 0;
1570 if (label > 0x1f)
1572 output_B4_format (f, rtype, label);
1573 return;
1575 if (rtype == copy_state)
1576 r = 1;
1577 else if (rtype != label_state)
1578 as_bad ("Invalid record type for format B1");
1580 byte = (UNW_B1 | (r << 5) | (label & 0x1f));
1581 (*f) (1, &byte, NULL);
1584 static void
1585 output_B2_format (f, ecount, t)
1586 vbyte_func f;
1587 unsigned long ecount;
1588 unsigned long t;
1590 char bytes[20];
1591 int count = 1;
1592 if (ecount > 0x1f)
1594 output_B3_format (f, ecount, t);
1595 return;
1597 bytes[0] = (UNW_B2 | (ecount & 0x1f));
1598 count += output_leb128 (bytes + 1, t, 0);
1599 (*f) (count, bytes, NULL);
1602 static void
1603 output_B3_format (f, ecount, t)
1604 vbyte_func f;
1605 unsigned long ecount;
1606 unsigned long t;
1608 char bytes[20];
1609 int count = 1;
1610 if (ecount <= 0x1f)
1612 output_B2_format (f, ecount, t);
1613 return;
1615 bytes[0] = UNW_B3;
1616 count += output_leb128 (bytes + 1, t, 0);
1617 count += output_leb128 (bytes + count, ecount, 0);
1618 (*f) (count, bytes, NULL);
1621 static void
1622 output_B4_format (f, rtype, label)
1623 vbyte_func f;
1624 unw_record_type rtype;
1625 unsigned long label;
1627 char bytes[20];
1628 int r = 0;
1629 int count = 1;
1630 if (label <= 0x1f)
1632 output_B1_format (f, rtype, label);
1633 return;
1636 if (rtype == copy_state)
1637 r = 1;
1638 else if (rtype != label_state)
1639 as_bad ("Invalid record type for format B1");
1641 bytes[0] = (UNW_B4 | (r << 3));
1642 count += output_leb128 (bytes + 1, label, 0);
1643 (*f) (count, bytes, NULL);
1646 static char
1647 format_ab_reg (ab, reg)
1648 int ab;
1649 int reg;
1651 int ret;
1652 ab = (ab & 3);
1653 reg = (reg & 0x1f);
1654 ret = (ab << 5) | reg;
1655 return ret;
1658 static void
1659 output_X1_format (f, rtype, ab, reg, t, w1)
1660 vbyte_func f;
1661 unw_record_type rtype;
1662 int ab, reg;
1663 unsigned long t;
1664 unsigned long w1;
1666 char bytes[20];
1667 int r = 0;
1668 int count = 2;
1669 bytes[0] = UNW_X1;
1671 if (rtype == spill_sprel)
1672 r = 1;
1673 else if (rtype != spill_psprel)
1674 as_bad ("Invalid record type for format X1");
1675 bytes[1] = ((r << 7) | format_ab_reg (ab, reg));
1676 count += output_leb128 (bytes + 2, t, 0);
1677 count += output_leb128 (bytes + count, w1, 0);
1678 (*f) (count, bytes, NULL);
1681 static void
1682 output_X2_format (f, ab, reg, x, y, treg, t)
1683 vbyte_func f;
1684 int ab, reg;
1685 int x, y, treg;
1686 unsigned long t;
1688 char bytes[20];
1689 int count = 3;
1690 bytes[0] = UNW_X2;
1691 bytes[1] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1692 bytes[2] = (((y & 1) << 7) | (treg & 0x7f));
1693 count += output_leb128 (bytes + 3, t, 0);
1694 (*f) (count, bytes, NULL);
1697 static void
1698 output_X3_format (f, rtype, qp, ab, reg, t, w1)
1699 vbyte_func f;
1700 unw_record_type rtype;
1701 int qp;
1702 int ab, reg;
1703 unsigned long t;
1704 unsigned long w1;
1706 char bytes[20];
1707 int r = 0;
1708 int count = 3;
1709 bytes[0] = UNW_X3;
1711 if (rtype == spill_sprel_p)
1712 r = 1;
1713 else if (rtype != spill_psprel_p)
1714 as_bad ("Invalid record type for format X3");
1715 bytes[1] = ((r << 7) | (qp & 0x3f));
1716 bytes[2] = format_ab_reg (ab, reg);
1717 count += output_leb128 (bytes + 3, t, 0);
1718 count += output_leb128 (bytes + count, w1, 0);
1719 (*f) (count, bytes, NULL);
1722 static void
1723 output_X4_format (f, qp, ab, reg, x, y, treg, t)
1724 vbyte_func f;
1725 int qp;
1726 int ab, reg;
1727 int x, y, treg;
1728 unsigned long t;
1730 char bytes[20];
1731 int count = 4;
1732 bytes[0] = UNW_X4;
1733 bytes[1] = (qp & 0x3f);
1734 bytes[2] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1735 bytes[3] = (((y & 1) << 7) | (treg & 0x7f));
1736 count += output_leb128 (bytes + 4, t, 0);
1737 (*f) (count, bytes, NULL);
1740 /* This function allocates a record list structure, and initializes fields. */
1742 static unw_rec_list *
1743 alloc_record (unw_record_type t)
1745 unw_rec_list *ptr;
1746 ptr = xmalloc (sizeof (*ptr));
1747 ptr->next = NULL;
1748 ptr->slot_number = SLOT_NUM_NOT_SET;
1749 ptr->r.type = t;
1750 ptr->next_slot_number = 0;
1751 ptr->next_slot_frag = 0;
1752 return ptr;
1755 /* Dummy unwind record used for calculating the length of the last prologue or
1756 body region. */
1758 static unw_rec_list *
1759 output_endp ()
1761 unw_rec_list *ptr = alloc_record (endp);
1762 return ptr;
1765 static unw_rec_list *
1766 output_prologue ()
1768 unw_rec_list *ptr = alloc_record (prologue);
1769 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1770 return ptr;
1773 static unw_rec_list *
1774 output_prologue_gr (saved_mask, reg)
1775 unsigned int saved_mask;
1776 unsigned int reg;
1778 unw_rec_list *ptr = alloc_record (prologue_gr);
1779 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1780 ptr->r.record.r.grmask = saved_mask;
1781 ptr->r.record.r.grsave = reg;
1782 return ptr;
1785 static unw_rec_list *
1786 output_body ()
1788 unw_rec_list *ptr = alloc_record (body);
1789 return ptr;
1792 static unw_rec_list *
1793 output_mem_stack_f (size)
1794 unsigned int size;
1796 unw_rec_list *ptr = alloc_record (mem_stack_f);
1797 ptr->r.record.p.size = size;
1798 return ptr;
1801 static unw_rec_list *
1802 output_mem_stack_v ()
1804 unw_rec_list *ptr = alloc_record (mem_stack_v);
1805 return ptr;
1808 static unw_rec_list *
1809 output_psp_gr (gr)
1810 unsigned int gr;
1812 unw_rec_list *ptr = alloc_record (psp_gr);
1813 ptr->r.record.p.gr = gr;
1814 return ptr;
1817 static unw_rec_list *
1818 output_psp_sprel (offset)
1819 unsigned int offset;
1821 unw_rec_list *ptr = alloc_record (psp_sprel);
1822 ptr->r.record.p.spoff = offset / 4;
1823 return ptr;
1826 static unw_rec_list *
1827 output_rp_when ()
1829 unw_rec_list *ptr = alloc_record (rp_when);
1830 return ptr;
1833 static unw_rec_list *
1834 output_rp_gr (gr)
1835 unsigned int gr;
1837 unw_rec_list *ptr = alloc_record (rp_gr);
1838 ptr->r.record.p.gr = gr;
1839 return ptr;
1842 static unw_rec_list *
1843 output_rp_br (br)
1844 unsigned int br;
1846 unw_rec_list *ptr = alloc_record (rp_br);
1847 ptr->r.record.p.br = br;
1848 return ptr;
1851 static unw_rec_list *
1852 output_rp_psprel (offset)
1853 unsigned int offset;
1855 unw_rec_list *ptr = alloc_record (rp_psprel);
1856 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
1857 return ptr;
1860 static unw_rec_list *
1861 output_rp_sprel (offset)
1862 unsigned int offset;
1864 unw_rec_list *ptr = alloc_record (rp_sprel);
1865 ptr->r.record.p.spoff = offset / 4;
1866 return ptr;
1869 static unw_rec_list *
1870 output_pfs_when ()
1872 unw_rec_list *ptr = alloc_record (pfs_when);
1873 return ptr;
1876 static unw_rec_list *
1877 output_pfs_gr (gr)
1878 unsigned int gr;
1880 unw_rec_list *ptr = alloc_record (pfs_gr);
1881 ptr->r.record.p.gr = gr;
1882 return ptr;
1885 static unw_rec_list *
1886 output_pfs_psprel (offset)
1887 unsigned int offset;
1889 unw_rec_list *ptr = alloc_record (pfs_psprel);
1890 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
1891 return ptr;
1894 static unw_rec_list *
1895 output_pfs_sprel (offset)
1896 unsigned int offset;
1898 unw_rec_list *ptr = alloc_record (pfs_sprel);
1899 ptr->r.record.p.spoff = offset / 4;
1900 return ptr;
1903 static unw_rec_list *
1904 output_preds_when ()
1906 unw_rec_list *ptr = alloc_record (preds_when);
1907 return ptr;
1910 static unw_rec_list *
1911 output_preds_gr (gr)
1912 unsigned int gr;
1914 unw_rec_list *ptr = alloc_record (preds_gr);
1915 ptr->r.record.p.gr = gr;
1916 return ptr;
1919 static unw_rec_list *
1920 output_preds_psprel (offset)
1921 unsigned int offset;
1923 unw_rec_list *ptr = alloc_record (preds_psprel);
1924 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
1925 return ptr;
1928 static unw_rec_list *
1929 output_preds_sprel (offset)
1930 unsigned int offset;
1932 unw_rec_list *ptr = alloc_record (preds_sprel);
1933 ptr->r.record.p.spoff = offset / 4;
1934 return ptr;
1937 static unw_rec_list *
1938 output_fr_mem (mask)
1939 unsigned int mask;
1941 unw_rec_list *ptr = alloc_record (fr_mem);
1942 ptr->r.record.p.rmask = mask;
1943 return ptr;
1946 static unw_rec_list *
1947 output_frgr_mem (gr_mask, fr_mask)
1948 unsigned int gr_mask;
1949 unsigned int fr_mask;
1951 unw_rec_list *ptr = alloc_record (frgr_mem);
1952 ptr->r.record.p.grmask = gr_mask;
1953 ptr->r.record.p.frmask = fr_mask;
1954 return ptr;
1957 static unw_rec_list *
1958 output_gr_gr (mask, reg)
1959 unsigned int mask;
1960 unsigned int reg;
1962 unw_rec_list *ptr = alloc_record (gr_gr);
1963 ptr->r.record.p.grmask = mask;
1964 ptr->r.record.p.gr = reg;
1965 return ptr;
1968 static unw_rec_list *
1969 output_gr_mem (mask)
1970 unsigned int mask;
1972 unw_rec_list *ptr = alloc_record (gr_mem);
1973 ptr->r.record.p.rmask = mask;
1974 return ptr;
1977 static unw_rec_list *
1978 output_br_mem (unsigned int mask)
1980 unw_rec_list *ptr = alloc_record (br_mem);
1981 ptr->r.record.p.brmask = mask;
1982 return ptr;
1985 static unw_rec_list *
1986 output_br_gr (save_mask, reg)
1987 unsigned int save_mask;
1988 unsigned int reg;
1990 unw_rec_list *ptr = alloc_record (br_gr);
1991 ptr->r.record.p.brmask = save_mask;
1992 ptr->r.record.p.gr = reg;
1993 return ptr;
1996 static unw_rec_list *
1997 output_spill_base (offset)
1998 unsigned int offset;
2000 unw_rec_list *ptr = alloc_record (spill_base);
2001 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2002 return ptr;
2005 static unw_rec_list *
2006 output_unat_when ()
2008 unw_rec_list *ptr = alloc_record (unat_when);
2009 return ptr;
2012 static unw_rec_list *
2013 output_unat_gr (gr)
2014 unsigned int gr;
2016 unw_rec_list *ptr = alloc_record (unat_gr);
2017 ptr->r.record.p.gr = gr;
2018 return ptr;
2021 static unw_rec_list *
2022 output_unat_psprel (offset)
2023 unsigned int offset;
2025 unw_rec_list *ptr = alloc_record (unat_psprel);
2026 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2027 return ptr;
2030 static unw_rec_list *
2031 output_unat_sprel (offset)
2032 unsigned int offset;
2034 unw_rec_list *ptr = alloc_record (unat_sprel);
2035 ptr->r.record.p.spoff = offset / 4;
2036 return ptr;
2039 static unw_rec_list *
2040 output_lc_when ()
2042 unw_rec_list *ptr = alloc_record (lc_when);
2043 return ptr;
2046 static unw_rec_list *
2047 output_lc_gr (gr)
2048 unsigned int gr;
2050 unw_rec_list *ptr = alloc_record (lc_gr);
2051 ptr->r.record.p.gr = gr;
2052 return ptr;
2055 static unw_rec_list *
2056 output_lc_psprel (offset)
2057 unsigned int offset;
2059 unw_rec_list *ptr = alloc_record (lc_psprel);
2060 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2061 return ptr;
2064 static unw_rec_list *
2065 output_lc_sprel (offset)
2066 unsigned int offset;
2068 unw_rec_list *ptr = alloc_record (lc_sprel);
2069 ptr->r.record.p.spoff = offset / 4;
2070 return ptr;
2073 static unw_rec_list *
2074 output_fpsr_when ()
2076 unw_rec_list *ptr = alloc_record (fpsr_when);
2077 return ptr;
2080 static unw_rec_list *
2081 output_fpsr_gr (gr)
2082 unsigned int gr;
2084 unw_rec_list *ptr = alloc_record (fpsr_gr);
2085 ptr->r.record.p.gr = gr;
2086 return ptr;
2089 static unw_rec_list *
2090 output_fpsr_psprel (offset)
2091 unsigned int offset;
2093 unw_rec_list *ptr = alloc_record (fpsr_psprel);
2094 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2095 return ptr;
2098 static unw_rec_list *
2099 output_fpsr_sprel (offset)
2100 unsigned int offset;
2102 unw_rec_list *ptr = alloc_record (fpsr_sprel);
2103 ptr->r.record.p.spoff = offset / 4;
2104 return ptr;
2107 static unw_rec_list *
2108 output_priunat_when_gr ()
2110 unw_rec_list *ptr = alloc_record (priunat_when_gr);
2111 return ptr;
2114 static unw_rec_list *
2115 output_priunat_when_mem ()
2117 unw_rec_list *ptr = alloc_record (priunat_when_mem);
2118 return ptr;
2121 static unw_rec_list *
2122 output_priunat_gr (gr)
2123 unsigned int gr;
2125 unw_rec_list *ptr = alloc_record (priunat_gr);
2126 ptr->r.record.p.gr = gr;
2127 return ptr;
2130 static unw_rec_list *
2131 output_priunat_psprel (offset)
2132 unsigned int offset;
2134 unw_rec_list *ptr = alloc_record (priunat_psprel);
2135 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2136 return ptr;
2139 static unw_rec_list *
2140 output_priunat_sprel (offset)
2141 unsigned int offset;
2143 unw_rec_list *ptr = alloc_record (priunat_sprel);
2144 ptr->r.record.p.spoff = offset / 4;
2145 return ptr;
2148 static unw_rec_list *
2149 output_bsp_when ()
2151 unw_rec_list *ptr = alloc_record (bsp_when);
2152 return ptr;
2155 static unw_rec_list *
2156 output_bsp_gr (gr)
2157 unsigned int gr;
2159 unw_rec_list *ptr = alloc_record (bsp_gr);
2160 ptr->r.record.p.gr = gr;
2161 return ptr;
2164 static unw_rec_list *
2165 output_bsp_psprel (offset)
2166 unsigned int offset;
2168 unw_rec_list *ptr = alloc_record (bsp_psprel);
2169 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2170 return ptr;
2173 static unw_rec_list *
2174 output_bsp_sprel (offset)
2175 unsigned int offset;
2177 unw_rec_list *ptr = alloc_record (bsp_sprel);
2178 ptr->r.record.p.spoff = offset / 4;
2179 return ptr;
2182 static unw_rec_list *
2183 output_bspstore_when ()
2185 unw_rec_list *ptr = alloc_record (bspstore_when);
2186 return ptr;
2189 static unw_rec_list *
2190 output_bspstore_gr (gr)
2191 unsigned int gr;
2193 unw_rec_list *ptr = alloc_record (bspstore_gr);
2194 ptr->r.record.p.gr = gr;
2195 return ptr;
2198 static unw_rec_list *
2199 output_bspstore_psprel (offset)
2200 unsigned int offset;
2202 unw_rec_list *ptr = alloc_record (bspstore_psprel);
2203 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2204 return ptr;
2207 static unw_rec_list *
2208 output_bspstore_sprel (offset)
2209 unsigned int offset;
2211 unw_rec_list *ptr = alloc_record (bspstore_sprel);
2212 ptr->r.record.p.spoff = offset / 4;
2213 return ptr;
2216 static unw_rec_list *
2217 output_rnat_when ()
2219 unw_rec_list *ptr = alloc_record (rnat_when);
2220 return ptr;
2223 static unw_rec_list *
2224 output_rnat_gr (gr)
2225 unsigned int gr;
2227 unw_rec_list *ptr = alloc_record (rnat_gr);
2228 ptr->r.record.p.gr = gr;
2229 return ptr;
2232 static unw_rec_list *
2233 output_rnat_psprel (offset)
2234 unsigned int offset;
2236 unw_rec_list *ptr = alloc_record (rnat_psprel);
2237 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2238 return ptr;
2241 static unw_rec_list *
2242 output_rnat_sprel (offset)
2243 unsigned int offset;
2245 unw_rec_list *ptr = alloc_record (rnat_sprel);
2246 ptr->r.record.p.spoff = offset / 4;
2247 return ptr;
2250 static unw_rec_list *
2251 output_unwabi (abi, context)
2252 unsigned long abi;
2253 unsigned long context;
2255 unw_rec_list *ptr = alloc_record (unwabi);
2256 ptr->r.record.p.abi = abi;
2257 ptr->r.record.p.context = context;
2258 return ptr;
2261 static unw_rec_list *
2262 output_epilogue (unsigned long ecount)
2264 unw_rec_list *ptr = alloc_record (epilogue);
2265 ptr->r.record.b.ecount = ecount;
2266 return ptr;
2269 static unw_rec_list *
2270 output_label_state (unsigned long label)
2272 unw_rec_list *ptr = alloc_record (label_state);
2273 ptr->r.record.b.label = label;
2274 return ptr;
2277 static unw_rec_list *
2278 output_copy_state (unsigned long label)
2280 unw_rec_list *ptr = alloc_record (copy_state);
2281 ptr->r.record.b.label = label;
2282 return ptr;
2285 static unw_rec_list *
2286 output_spill_psprel (ab, reg, offset)
2287 unsigned int ab;
2288 unsigned int reg;
2289 unsigned int offset;
2291 unw_rec_list *ptr = alloc_record (spill_psprel);
2292 ptr->r.record.x.ab = ab;
2293 ptr->r.record.x.reg = reg;
2294 ptr->r.record.x.pspoff = ENCODED_PSP_OFFSET (offset);
2295 return ptr;
2298 static unw_rec_list *
2299 output_spill_sprel (ab, reg, offset)
2300 unsigned int ab;
2301 unsigned int reg;
2302 unsigned int offset;
2304 unw_rec_list *ptr = alloc_record (spill_sprel);
2305 ptr->r.record.x.ab = ab;
2306 ptr->r.record.x.reg = reg;
2307 ptr->r.record.x.spoff = offset / 4;
2308 return ptr;
2311 static unw_rec_list *
2312 output_spill_psprel_p (ab, reg, offset, predicate)
2313 unsigned int ab;
2314 unsigned int reg;
2315 unsigned int offset;
2316 unsigned int predicate;
2318 unw_rec_list *ptr = alloc_record (spill_psprel_p);
2319 ptr->r.record.x.ab = ab;
2320 ptr->r.record.x.reg = reg;
2321 ptr->r.record.x.pspoff = ENCODED_PSP_OFFSET (offset);
2322 ptr->r.record.x.qp = predicate;
2323 return ptr;
2326 static unw_rec_list *
2327 output_spill_sprel_p (ab, reg, offset, predicate)
2328 unsigned int ab;
2329 unsigned int reg;
2330 unsigned int offset;
2331 unsigned int predicate;
2333 unw_rec_list *ptr = alloc_record (spill_sprel_p);
2334 ptr->r.record.x.ab = ab;
2335 ptr->r.record.x.reg = reg;
2336 ptr->r.record.x.spoff = offset / 4;
2337 ptr->r.record.x.qp = predicate;
2338 return ptr;
2341 static unw_rec_list *
2342 output_spill_reg (ab, reg, targ_reg, xy)
2343 unsigned int ab;
2344 unsigned int reg;
2345 unsigned int targ_reg;
2346 unsigned int xy;
2348 unw_rec_list *ptr = alloc_record (spill_reg);
2349 ptr->r.record.x.ab = ab;
2350 ptr->r.record.x.reg = reg;
2351 ptr->r.record.x.treg = targ_reg;
2352 ptr->r.record.x.xy = xy;
2353 return ptr;
2356 static unw_rec_list *
2357 output_spill_reg_p (ab, reg, targ_reg, xy, predicate)
2358 unsigned int ab;
2359 unsigned int reg;
2360 unsigned int targ_reg;
2361 unsigned int xy;
2362 unsigned int predicate;
2364 unw_rec_list *ptr = alloc_record (spill_reg_p);
2365 ptr->r.record.x.ab = ab;
2366 ptr->r.record.x.reg = reg;
2367 ptr->r.record.x.treg = targ_reg;
2368 ptr->r.record.x.xy = xy;
2369 ptr->r.record.x.qp = predicate;
2370 return ptr;
2373 /* Given a unw_rec_list process the correct format with the
2374 specified function. */
2376 static void
2377 process_one_record (ptr, f)
2378 unw_rec_list *ptr;
2379 vbyte_func f;
2381 unsigned long fr_mask, gr_mask;
2383 switch (ptr->r.type)
2385 /* This is a dummy record that takes up no space in the output. */
2386 case endp:
2387 break;
2389 case gr_mem:
2390 case fr_mem:
2391 case br_mem:
2392 case frgr_mem:
2393 /* These are taken care of by prologue/prologue_gr. */
2394 break;
2396 case prologue_gr:
2397 case prologue:
2398 if (ptr->r.type == prologue_gr)
2399 output_R2_format (f, ptr->r.record.r.grmask,
2400 ptr->r.record.r.grsave, ptr->r.record.r.rlen);
2401 else
2402 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2404 /* Output descriptor(s) for union of register spills (if any). */
2405 gr_mask = ptr->r.record.r.mask.gr_mem;
2406 fr_mask = ptr->r.record.r.mask.fr_mem;
2407 if (fr_mask)
2409 if ((fr_mask & ~0xfUL) == 0)
2410 output_P6_format (f, fr_mem, fr_mask);
2411 else
2413 output_P5_format (f, gr_mask, fr_mask);
2414 gr_mask = 0;
2417 if (gr_mask)
2418 output_P6_format (f, gr_mem, gr_mask);
2419 if (ptr->r.record.r.mask.br_mem)
2420 output_P1_format (f, ptr->r.record.r.mask.br_mem);
2422 /* output imask descriptor if necessary: */
2423 if (ptr->r.record.r.mask.i)
2424 output_P4_format (f, ptr->r.record.r.mask.i,
2425 ptr->r.record.r.imask_size);
2426 break;
2428 case body:
2429 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2430 break;
2431 case mem_stack_f:
2432 case mem_stack_v:
2433 output_P7_format (f, ptr->r.type, ptr->r.record.p.t,
2434 ptr->r.record.p.size);
2435 break;
2436 case psp_gr:
2437 case rp_gr:
2438 case pfs_gr:
2439 case preds_gr:
2440 case unat_gr:
2441 case lc_gr:
2442 case fpsr_gr:
2443 case priunat_gr:
2444 case bsp_gr:
2445 case bspstore_gr:
2446 case rnat_gr:
2447 output_P3_format (f, ptr->r.type, ptr->r.record.p.gr);
2448 break;
2449 case rp_br:
2450 output_P3_format (f, rp_br, ptr->r.record.p.br);
2451 break;
2452 case psp_sprel:
2453 output_P7_format (f, psp_sprel, ptr->r.record.p.spoff, 0);
2454 break;
2455 case rp_when:
2456 case pfs_when:
2457 case preds_when:
2458 case unat_when:
2459 case lc_when:
2460 case fpsr_when:
2461 output_P7_format (f, ptr->r.type, ptr->r.record.p.t, 0);
2462 break;
2463 case rp_psprel:
2464 case pfs_psprel:
2465 case preds_psprel:
2466 case unat_psprel:
2467 case lc_psprel:
2468 case fpsr_psprel:
2469 case spill_base:
2470 output_P7_format (f, ptr->r.type, ptr->r.record.p.pspoff, 0);
2471 break;
2472 case rp_sprel:
2473 case pfs_sprel:
2474 case preds_sprel:
2475 case unat_sprel:
2476 case lc_sprel:
2477 case fpsr_sprel:
2478 case priunat_sprel:
2479 case bsp_sprel:
2480 case bspstore_sprel:
2481 case rnat_sprel:
2482 output_P8_format (f, ptr->r.type, ptr->r.record.p.spoff);
2483 break;
2484 case gr_gr:
2485 output_P9_format (f, ptr->r.record.p.grmask, ptr->r.record.p.gr);
2486 break;
2487 case br_gr:
2488 output_P2_format (f, ptr->r.record.p.brmask, ptr->r.record.p.gr);
2489 break;
2490 case spill_mask:
2491 as_bad ("spill_mask record unimplemented.");
2492 break;
2493 case priunat_when_gr:
2494 case priunat_when_mem:
2495 case bsp_when:
2496 case bspstore_when:
2497 case rnat_when:
2498 output_P8_format (f, ptr->r.type, ptr->r.record.p.t);
2499 break;
2500 case priunat_psprel:
2501 case bsp_psprel:
2502 case bspstore_psprel:
2503 case rnat_psprel:
2504 output_P8_format (f, ptr->r.type, ptr->r.record.p.pspoff);
2505 break;
2506 case unwabi:
2507 output_P10_format (f, ptr->r.record.p.abi, ptr->r.record.p.context);
2508 break;
2509 case epilogue:
2510 output_B3_format (f, ptr->r.record.b.ecount, ptr->r.record.b.t);
2511 break;
2512 case label_state:
2513 case copy_state:
2514 output_B4_format (f, ptr->r.type, ptr->r.record.b.label);
2515 break;
2516 case spill_psprel:
2517 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2518 ptr->r.record.x.reg, ptr->r.record.x.t,
2519 ptr->r.record.x.pspoff);
2520 break;
2521 case spill_sprel:
2522 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2523 ptr->r.record.x.reg, ptr->r.record.x.t,
2524 ptr->r.record.x.spoff);
2525 break;
2526 case spill_reg:
2527 output_X2_format (f, ptr->r.record.x.ab, ptr->r.record.x.reg,
2528 ptr->r.record.x.xy >> 1, ptr->r.record.x.xy,
2529 ptr->r.record.x.treg, ptr->r.record.x.t);
2530 break;
2531 case spill_psprel_p:
2532 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2533 ptr->r.record.x.ab, ptr->r.record.x.reg,
2534 ptr->r.record.x.t, ptr->r.record.x.pspoff);
2535 break;
2536 case spill_sprel_p:
2537 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2538 ptr->r.record.x.ab, ptr->r.record.x.reg,
2539 ptr->r.record.x.t, ptr->r.record.x.spoff);
2540 break;
2541 case spill_reg_p:
2542 output_X4_format (f, ptr->r.record.x.qp, ptr->r.record.x.ab,
2543 ptr->r.record.x.reg, ptr->r.record.x.xy >> 1,
2544 ptr->r.record.x.xy, ptr->r.record.x.treg,
2545 ptr->r.record.x.t);
2546 break;
2547 default:
2548 as_bad ("record_type_not_valid");
2549 break;
2553 /* Given a unw_rec_list list, process all the records with
2554 the specified function. */
2555 static void
2556 process_unw_records (list, f)
2557 unw_rec_list *list;
2558 vbyte_func f;
2560 unw_rec_list *ptr;
2561 for (ptr = list; ptr; ptr = ptr->next)
2562 process_one_record (ptr, f);
2565 /* Determine the size of a record list in bytes. */
2566 static int
2567 calc_record_size (list)
2568 unw_rec_list *list;
2570 vbyte_count = 0;
2571 process_unw_records (list, count_output);
2572 return vbyte_count;
2575 /* Update IMASK bitmask to reflect the fact that one or more registers
2576 of type TYPE are saved starting at instruction with index T. If N
2577 bits are set in REGMASK, it is assumed that instructions T through
2578 T+N-1 save these registers.
2580 TYPE values:
2581 0: no save
2582 1: instruction saves next fp reg
2583 2: instruction saves next general reg
2584 3: instruction saves next branch reg */
2585 static void
2586 set_imask (region, regmask, t, type)
2587 unw_rec_list *region;
2588 unsigned long regmask;
2589 unsigned long t;
2590 unsigned int type;
2592 unsigned char *imask;
2593 unsigned long imask_size;
2594 unsigned int i;
2595 int pos;
2597 imask = region->r.record.r.mask.i;
2598 imask_size = region->r.record.r.imask_size;
2599 if (!imask)
2601 imask_size = (region->r.record.r.rlen * 2 + 7) / 8 + 1;
2602 imask = xmalloc (imask_size);
2603 memset (imask, 0, imask_size);
2605 region->r.record.r.imask_size = imask_size;
2606 region->r.record.r.mask.i = imask;
2609 i = (t / 4) + 1;
2610 pos = 2 * (3 - t % 4);
2611 while (regmask)
2613 if (i >= imask_size)
2615 as_bad ("Ignoring attempt to spill beyond end of region");
2616 return;
2619 imask[i] |= (type & 0x3) << pos;
2621 regmask &= (regmask - 1);
2622 pos -= 2;
2623 if (pos < 0)
2625 pos = 0;
2626 ++i;
2631 /* Return the number of instruction slots from FIRST_ADDR to SLOT_ADDR.
2632 SLOT_FRAG is the frag containing SLOT_ADDR, and FIRST_FRAG is the frag
2633 containing FIRST_ADDR. If BEFORE_RELAX, then we use worst-case estimates
2634 for frag sizes. */
2636 unsigned long
2637 slot_index (slot_addr, slot_frag, first_addr, first_frag, before_relax)
2638 unsigned long slot_addr;
2639 fragS *slot_frag;
2640 unsigned long first_addr;
2641 fragS *first_frag;
2642 int before_relax;
2644 unsigned long index = 0;
2646 /* First time we are called, the initial address and frag are invalid. */
2647 if (first_addr == 0)
2648 return 0;
2650 /* If the two addresses are in different frags, then we need to add in
2651 the remaining size of this frag, and then the entire size of intermediate
2652 frags. */
2653 while (slot_frag != first_frag)
2655 unsigned long start_addr = (unsigned long) &first_frag->fr_literal;
2657 if (! before_relax)
2659 /* We can get the final addresses only during and after
2660 relaxation. */
2661 if (first_frag->fr_next && first_frag->fr_next->fr_address)
2662 index += 3 * ((first_frag->fr_next->fr_address
2663 - first_frag->fr_address
2664 - first_frag->fr_fix) >> 4);
2666 else
2667 /* We don't know what the final addresses will be. We try our
2668 best to estimate. */
2669 switch (first_frag->fr_type)
2671 default:
2672 break;
2674 case rs_space:
2675 as_fatal ("only constant space allocation is supported");
2676 break;
2678 case rs_align:
2679 case rs_align_code:
2680 case rs_align_test:
2681 /* Take alignment into account. Assume the worst case
2682 before relaxation. */
2683 index += 3 * ((1 << first_frag->fr_offset) >> 4);
2684 break;
2686 case rs_org:
2687 if (first_frag->fr_symbol)
2689 as_fatal ("only constant offsets are supported");
2690 break;
2692 case rs_fill:
2693 index += 3 * (first_frag->fr_offset >> 4);
2694 break;
2697 /* Add in the full size of the frag converted to instruction slots. */
2698 index += 3 * (first_frag->fr_fix >> 4);
2699 /* Subtract away the initial part before first_addr. */
2700 index -= (3 * ((first_addr >> 4) - (start_addr >> 4))
2701 + ((first_addr & 0x3) - (start_addr & 0x3)));
2703 /* Move to the beginning of the next frag. */
2704 first_frag = first_frag->fr_next;
2705 first_addr = (unsigned long) &first_frag->fr_literal;
2708 /* Add in the used part of the last frag. */
2709 index += (3 * ((slot_addr >> 4) - (first_addr >> 4))
2710 + ((slot_addr & 0x3) - (first_addr & 0x3)));
2711 return index;
2714 /* Optimize unwind record directives. */
2716 static unw_rec_list *
2717 optimize_unw_records (list)
2718 unw_rec_list *list;
2720 if (!list)
2721 return NULL;
2723 /* If the only unwind record is ".prologue" or ".prologue" followed
2724 by ".body", then we can optimize the unwind directives away. */
2725 if (list->r.type == prologue
2726 && (list->next->r.type == endp
2727 || (list->next->r.type == body && list->next->next->r.type == endp)))
2728 return NULL;
2730 return list;
2733 /* Given a complete record list, process any records which have
2734 unresolved fields, (ie length counts for a prologue). After
2735 this has been run, all necessary information should be available
2736 within each record to generate an image. */
2738 static void
2739 fixup_unw_records (list, before_relax)
2740 unw_rec_list *list;
2741 int before_relax;
2743 unw_rec_list *ptr, *region = 0;
2744 unsigned long first_addr = 0, rlen = 0, t;
2745 fragS *first_frag = 0;
2747 for (ptr = list; ptr; ptr = ptr->next)
2749 if (ptr->slot_number == SLOT_NUM_NOT_SET)
2750 as_bad (" Insn slot not set in unwind record.");
2751 t = slot_index (ptr->slot_number, ptr->slot_frag,
2752 first_addr, first_frag, before_relax);
2753 switch (ptr->r.type)
2755 case prologue:
2756 case prologue_gr:
2757 case body:
2759 unw_rec_list *last;
2760 int size;
2761 unsigned long last_addr = 0;
2762 fragS *last_frag = NULL;
2764 first_addr = ptr->slot_number;
2765 first_frag = ptr->slot_frag;
2766 /* Find either the next body/prologue start, or the end of
2767 the function, and determine the size of the region. */
2768 for (last = ptr->next; last != NULL; last = last->next)
2769 if (last->r.type == prologue || last->r.type == prologue_gr
2770 || last->r.type == body || last->r.type == endp)
2772 last_addr = last->slot_number;
2773 last_frag = last->slot_frag;
2774 break;
2776 size = slot_index (last_addr, last_frag, first_addr, first_frag,
2777 before_relax);
2778 rlen = ptr->r.record.r.rlen = size;
2779 if (ptr->r.type == body)
2780 /* End of region. */
2781 region = 0;
2782 else
2783 region = ptr;
2784 break;
2786 case epilogue:
2787 if (t < rlen)
2788 ptr->r.record.b.t = rlen - 1 - t;
2789 else
2790 /* This happens when a memory-stack-less procedure uses a
2791 ".restore sp" directive at the end of a region to pop
2792 the frame state. */
2793 ptr->r.record.b.t = 0;
2794 break;
2796 case mem_stack_f:
2797 case mem_stack_v:
2798 case rp_when:
2799 case pfs_when:
2800 case preds_when:
2801 case unat_when:
2802 case lc_when:
2803 case fpsr_when:
2804 case priunat_when_gr:
2805 case priunat_when_mem:
2806 case bsp_when:
2807 case bspstore_when:
2808 case rnat_when:
2809 ptr->r.record.p.t = t;
2810 break;
2812 case spill_reg:
2813 case spill_sprel:
2814 case spill_psprel:
2815 case spill_reg_p:
2816 case spill_sprel_p:
2817 case spill_psprel_p:
2818 ptr->r.record.x.t = t;
2819 break;
2821 case frgr_mem:
2822 if (!region)
2824 as_bad ("frgr_mem record before region record!");
2825 return;
2827 region->r.record.r.mask.fr_mem |= ptr->r.record.p.frmask;
2828 region->r.record.r.mask.gr_mem |= ptr->r.record.p.grmask;
2829 set_imask (region, ptr->r.record.p.frmask, t, 1);
2830 set_imask (region, ptr->r.record.p.grmask, t, 2);
2831 break;
2832 case fr_mem:
2833 if (!region)
2835 as_bad ("fr_mem record before region record!");
2836 return;
2838 region->r.record.r.mask.fr_mem |= ptr->r.record.p.rmask;
2839 set_imask (region, ptr->r.record.p.rmask, t, 1);
2840 break;
2841 case gr_mem:
2842 if (!region)
2844 as_bad ("gr_mem record before region record!");
2845 return;
2847 region->r.record.r.mask.gr_mem |= ptr->r.record.p.rmask;
2848 set_imask (region, ptr->r.record.p.rmask, t, 2);
2849 break;
2850 case br_mem:
2851 if (!region)
2853 as_bad ("br_mem record before region record!");
2854 return;
2856 region->r.record.r.mask.br_mem |= ptr->r.record.p.brmask;
2857 set_imask (region, ptr->r.record.p.brmask, t, 3);
2858 break;
2860 case gr_gr:
2861 if (!region)
2863 as_bad ("gr_gr record before region record!");
2864 return;
2866 set_imask (region, ptr->r.record.p.grmask, t, 2);
2867 break;
2868 case br_gr:
2869 if (!region)
2871 as_bad ("br_gr record before region record!");
2872 return;
2874 set_imask (region, ptr->r.record.p.brmask, t, 3);
2875 break;
2877 default:
2878 break;
2883 /* Estimate the size of a frag before relaxing. We only have one type of frag
2884 to handle here, which is the unwind info frag. */
2887 ia64_estimate_size_before_relax (fragS *frag,
2888 asection *segtype ATTRIBUTE_UNUSED)
2890 unw_rec_list *list;
2891 int len, size, pad;
2893 /* ??? This code is identical to the first part of ia64_convert_frag. */
2894 list = (unw_rec_list *) frag->fr_opcode;
2895 fixup_unw_records (list, 0);
2897 len = calc_record_size (list);
2898 /* pad to pointer-size boundary. */
2899 pad = len % md.pointer_size;
2900 if (pad != 0)
2901 len += md.pointer_size - pad;
2902 /* Add 8 for the header. */
2903 size = len + 8;
2904 /* Add a pointer for the personality offset. */
2905 if (frag->fr_offset)
2906 size += md.pointer_size;
2908 /* fr_var carries the max_chars that we created the fragment with.
2909 We must, of course, have allocated enough memory earlier. */
2910 assert (frag->fr_var >= size);
2912 return frag->fr_fix + size;
2915 /* This function converts a rs_machine_dependent variant frag into a
2916 normal fill frag with the unwind image from the the record list. */
2917 void
2918 ia64_convert_frag (fragS *frag)
2920 unw_rec_list *list;
2921 int len, size, pad;
2922 valueT flag_value;
2924 /* ??? This code is identical to ia64_estimate_size_before_relax. */
2925 list = (unw_rec_list *) frag->fr_opcode;
2926 fixup_unw_records (list, 0);
2928 len = calc_record_size (list);
2929 /* pad to pointer-size boundary. */
2930 pad = len % md.pointer_size;
2931 if (pad != 0)
2932 len += md.pointer_size - pad;
2933 /* Add 8 for the header. */
2934 size = len + 8;
2935 /* Add a pointer for the personality offset. */
2936 if (frag->fr_offset)
2937 size += md.pointer_size;
2939 /* fr_var carries the max_chars that we created the fragment with.
2940 We must, of course, have allocated enough memory earlier. */
2941 assert (frag->fr_var >= size);
2943 /* Initialize the header area. fr_offset is initialized with
2944 unwind.personality_routine. */
2945 if (frag->fr_offset)
2947 if (md.flags & EF_IA_64_ABI64)
2948 flag_value = (bfd_vma) 3 << 32;
2949 else
2950 /* 32-bit unwind info block. */
2951 flag_value = (bfd_vma) 0x1003 << 32;
2953 else
2954 flag_value = 0;
2956 md_number_to_chars (frag->fr_literal,
2957 (((bfd_vma) 1 << 48) /* Version. */
2958 | flag_value /* U & E handler flags. */
2959 | (len / md.pointer_size)), /* Length. */
2962 /* Skip the header. */
2963 vbyte_mem_ptr = frag->fr_literal + 8;
2964 process_unw_records (list, output_vbyte_mem);
2966 /* Fill the padding bytes with zeros. */
2967 if (pad != 0)
2968 md_number_to_chars (frag->fr_literal + len + 8 - md.pointer_size + pad, 0,
2969 md.pointer_size - pad);
2971 frag->fr_fix += size;
2972 frag->fr_type = rs_fill;
2973 frag->fr_var = 0;
2974 frag->fr_offset = 0;
2977 static int
2978 convert_expr_to_ab_reg (e, ab, regp)
2979 expressionS *e;
2980 unsigned int *ab;
2981 unsigned int *regp;
2983 unsigned int reg;
2985 if (e->X_op != O_register)
2986 return 0;
2988 reg = e->X_add_number;
2989 if (reg >= (REG_GR + 4) && reg <= (REG_GR + 7))
2991 *ab = 0;
2992 *regp = reg - REG_GR;
2994 else if ((reg >= (REG_FR + 2) && reg <= (REG_FR + 5))
2995 || (reg >= (REG_FR + 16) && reg <= (REG_FR + 31)))
2997 *ab = 1;
2998 *regp = reg - REG_FR;
3000 else if (reg >= (REG_BR + 1) && reg <= (REG_BR + 5))
3002 *ab = 2;
3003 *regp = reg - REG_BR;
3005 else
3007 *ab = 3;
3008 switch (reg)
3010 case REG_PR: *regp = 0; break;
3011 case REG_PSP: *regp = 1; break;
3012 case REG_PRIUNAT: *regp = 2; break;
3013 case REG_BR + 0: *regp = 3; break;
3014 case REG_AR + AR_BSP: *regp = 4; break;
3015 case REG_AR + AR_BSPSTORE: *regp = 5; break;
3016 case REG_AR + AR_RNAT: *regp = 6; break;
3017 case REG_AR + AR_UNAT: *regp = 7; break;
3018 case REG_AR + AR_FPSR: *regp = 8; break;
3019 case REG_AR + AR_PFS: *regp = 9; break;
3020 case REG_AR + AR_LC: *regp = 10; break;
3022 default:
3023 return 0;
3026 return 1;
3029 static int
3030 convert_expr_to_xy_reg (e, xy, regp)
3031 expressionS *e;
3032 unsigned int *xy;
3033 unsigned int *regp;
3035 unsigned int reg;
3037 if (e->X_op != O_register)
3038 return 0;
3040 reg = e->X_add_number;
3042 if (/* reg >= REG_GR && */ reg <= (REG_GR + 127))
3044 *xy = 0;
3045 *regp = reg - REG_GR;
3047 else if (reg >= REG_FR && reg <= (REG_FR + 127))
3049 *xy = 1;
3050 *regp = reg - REG_FR;
3052 else if (reg >= REG_BR && reg <= (REG_BR + 7))
3054 *xy = 2;
3055 *regp = reg - REG_BR;
3057 else
3058 return -1;
3059 return 1;
3062 static void
3063 dot_align (int arg)
3065 /* The current frag is an alignment frag. */
3066 align_frag = frag_now;
3067 s_align_bytes (arg);
3070 static void
3071 dot_radix (dummy)
3072 int dummy ATTRIBUTE_UNUSED;
3074 int radix;
3076 SKIP_WHITESPACE ();
3077 radix = *input_line_pointer++;
3079 if (radix != 'C' && !is_end_of_line[(unsigned char) radix])
3081 as_bad ("Radix `%c' unsupported", *input_line_pointer);
3082 ignore_rest_of_line ();
3083 return;
3087 /* Helper function for .loc directives. If the assembler is not generating
3088 line number info, then we need to remember which instructions have a .loc
3089 directive, and only call dwarf2_gen_line_info for those instructions. */
3091 static void
3092 dot_loc (int x)
3094 CURR_SLOT.loc_directive_seen = 1;
3095 dwarf2_directive_loc (x);
3098 /* .sbss, .bss etc. are macros that expand into ".section SECNAME". */
3099 static void
3100 dot_special_section (which)
3101 int which;
3103 set_section ((char *) special_section_name[which]);
3106 /* Return -1 for warning and 0 for error. */
3108 static int
3109 unwind_diagnostic (const char * region, const char *directive)
3111 if (md.unwind_check == unwind_check_warning)
3113 as_warn (".%s outside of %s", directive, region);
3114 return -1;
3116 else
3118 as_bad (".%s outside of %s", directive, region);
3119 ignore_rest_of_line ();
3120 return 0;
3124 /* Return 1 if a directive is in a procedure, -1 if a directive isn't in
3125 a procedure but the unwind directive check is set to warning, 0 if
3126 a directive isn't in a procedure and the unwind directive check is set
3127 to error. */
3129 static int
3130 in_procedure (const char *directive)
3132 if (unwind.proc_start
3133 && (!unwind.saved_text_seg || strcmp (directive, "endp") == 0))
3134 return 1;
3135 return unwind_diagnostic ("procedure", directive);
3138 /* Return 1 if a directive is in a prologue, -1 if a directive isn't in
3139 a prologue but the unwind directive check is set to warning, 0 if
3140 a directive isn't in a prologue and the unwind directive check is set
3141 to error. */
3143 static int
3144 in_prologue (const char *directive)
3146 int in = in_procedure (directive);
3147 if (in)
3149 /* We are in a procedure. Check if we are in a prologue. */
3150 if (unwind.prologue)
3151 return 1;
3152 /* We only want to issue one message. */
3153 if (in == 1)
3154 return unwind_diagnostic ("prologue", directive);
3155 else
3156 return -1;
3158 return 0;
3161 /* Return 1 if a directive is in a body, -1 if a directive isn't in
3162 a body but the unwind directive check is set to warning, 0 if
3163 a directive isn't in a body and the unwind directive check is set
3164 to error. */
3166 static int
3167 in_body (const char *directive)
3169 int in = in_procedure (directive);
3170 if (in)
3172 /* We are in a procedure. Check if we are in a body. */
3173 if (unwind.body)
3174 return 1;
3175 /* We only want to issue one message. */
3176 if (in == 1)
3177 return unwind_diagnostic ("body region", directive);
3178 else
3179 return -1;
3181 return 0;
3184 static void
3185 add_unwind_entry (ptr)
3186 unw_rec_list *ptr;
3188 if (unwind.tail)
3189 unwind.tail->next = ptr;
3190 else
3191 unwind.list = ptr;
3192 unwind.tail = ptr;
3194 /* The current entry can in fact be a chain of unwind entries. */
3195 if (unwind.current_entry == NULL)
3196 unwind.current_entry = ptr;
3199 static void
3200 dot_fframe (dummy)
3201 int dummy ATTRIBUTE_UNUSED;
3203 expressionS e;
3205 if (!in_prologue ("fframe"))
3206 return;
3208 parse_operand (&e);
3210 if (e.X_op != O_constant)
3211 as_bad ("Operand to .fframe must be a constant");
3212 else
3213 add_unwind_entry (output_mem_stack_f (e.X_add_number));
3216 static void
3217 dot_vframe (dummy)
3218 int dummy ATTRIBUTE_UNUSED;
3220 expressionS e;
3221 unsigned reg;
3223 if (!in_prologue ("vframe"))
3224 return;
3226 parse_operand (&e);
3227 reg = e.X_add_number - REG_GR;
3228 if (e.X_op == O_register && reg < 128)
3230 add_unwind_entry (output_mem_stack_v ());
3231 if (! (unwind.prologue_mask & 2))
3232 add_unwind_entry (output_psp_gr (reg));
3234 else
3235 as_bad ("First operand to .vframe must be a general register");
3238 static void
3239 dot_vframesp (dummy)
3240 int dummy ATTRIBUTE_UNUSED;
3242 expressionS e;
3244 if (!in_prologue ("vframesp"))
3245 return;
3247 parse_operand (&e);
3248 if (e.X_op == O_constant)
3250 add_unwind_entry (output_mem_stack_v ());
3251 add_unwind_entry (output_psp_sprel (e.X_add_number));
3253 else
3254 as_bad ("Operand to .vframesp must be a constant (sp-relative offset)");
3257 static void
3258 dot_vframepsp (dummy)
3259 int dummy ATTRIBUTE_UNUSED;
3261 expressionS e;
3263 if (!in_prologue ("vframepsp"))
3264 return;
3266 parse_operand (&e);
3267 if (e.X_op == O_constant)
3269 add_unwind_entry (output_mem_stack_v ());
3270 add_unwind_entry (output_psp_sprel (e.X_add_number));
3272 else
3273 as_bad ("Operand to .vframepsp must be a constant (psp-relative offset)");
3276 static void
3277 dot_save (dummy)
3278 int dummy ATTRIBUTE_UNUSED;
3280 expressionS e1, e2;
3281 int sep;
3282 int reg1, reg2;
3284 if (!in_prologue ("save"))
3285 return;
3287 sep = parse_operand (&e1);
3288 if (sep != ',')
3289 as_bad ("No second operand to .save");
3290 sep = parse_operand (&e2);
3292 reg1 = e1.X_add_number;
3293 reg2 = e2.X_add_number - REG_GR;
3295 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
3296 if (e1.X_op == O_register)
3298 if (e2.X_op == O_register && reg2 >= 0 && reg2 < 128)
3300 switch (reg1)
3302 case REG_AR + AR_BSP:
3303 add_unwind_entry (output_bsp_when ());
3304 add_unwind_entry (output_bsp_gr (reg2));
3305 break;
3306 case REG_AR + AR_BSPSTORE:
3307 add_unwind_entry (output_bspstore_when ());
3308 add_unwind_entry (output_bspstore_gr (reg2));
3309 break;
3310 case REG_AR + AR_RNAT:
3311 add_unwind_entry (output_rnat_when ());
3312 add_unwind_entry (output_rnat_gr (reg2));
3313 break;
3314 case REG_AR + AR_UNAT:
3315 add_unwind_entry (output_unat_when ());
3316 add_unwind_entry (output_unat_gr (reg2));
3317 break;
3318 case REG_AR + AR_FPSR:
3319 add_unwind_entry (output_fpsr_when ());
3320 add_unwind_entry (output_fpsr_gr (reg2));
3321 break;
3322 case REG_AR + AR_PFS:
3323 add_unwind_entry (output_pfs_when ());
3324 if (! (unwind.prologue_mask & 4))
3325 add_unwind_entry (output_pfs_gr (reg2));
3326 break;
3327 case REG_AR + AR_LC:
3328 add_unwind_entry (output_lc_when ());
3329 add_unwind_entry (output_lc_gr (reg2));
3330 break;
3331 case REG_BR:
3332 add_unwind_entry (output_rp_when ());
3333 if (! (unwind.prologue_mask & 8))
3334 add_unwind_entry (output_rp_gr (reg2));
3335 break;
3336 case REG_PR:
3337 add_unwind_entry (output_preds_when ());
3338 if (! (unwind.prologue_mask & 1))
3339 add_unwind_entry (output_preds_gr (reg2));
3340 break;
3341 case REG_PRIUNAT:
3342 add_unwind_entry (output_priunat_when_gr ());
3343 add_unwind_entry (output_priunat_gr (reg2));
3344 break;
3345 default:
3346 as_bad ("First operand not a valid register");
3349 else
3350 as_bad (" Second operand not a valid register");
3352 else
3353 as_bad ("First operand not a register");
3356 static void
3357 dot_restore (dummy)
3358 int dummy ATTRIBUTE_UNUSED;
3360 expressionS e1, e2;
3361 unsigned long ecount; /* # of _additional_ regions to pop */
3362 int sep;
3364 if (!in_body ("restore"))
3365 return;
3367 sep = parse_operand (&e1);
3368 if (e1.X_op != O_register || e1.X_add_number != REG_GR + 12)
3370 as_bad ("First operand to .restore must be stack pointer (sp)");
3371 return;
3374 if (sep == ',')
3376 parse_operand (&e2);
3377 if (e2.X_op != O_constant || e2.X_add_number < 0)
3379 as_bad ("Second operand to .restore must be a constant >= 0");
3380 return;
3382 ecount = e2.X_add_number;
3384 else
3385 ecount = unwind.prologue_count - 1;
3387 if (ecount >= unwind.prologue_count)
3389 as_bad ("Epilogue count of %lu exceeds number of nested prologues (%u)",
3390 ecount + 1, unwind.prologue_count);
3391 return;
3394 add_unwind_entry (output_epilogue (ecount));
3396 if (ecount < unwind.prologue_count)
3397 unwind.prologue_count -= ecount + 1;
3398 else
3399 unwind.prologue_count = 0;
3402 static void
3403 dot_restorereg (dummy)
3404 int dummy ATTRIBUTE_UNUSED;
3406 unsigned int ab, reg;
3407 expressionS e;
3409 if (!in_procedure ("restorereg"))
3410 return;
3412 parse_operand (&e);
3414 if (!convert_expr_to_ab_reg (&e, &ab, &reg))
3416 as_bad ("First operand to .restorereg must be a preserved register");
3417 return;
3419 add_unwind_entry (output_spill_reg (ab, reg, 0, 0));
3422 static void
3423 dot_restorereg_p (dummy)
3424 int dummy ATTRIBUTE_UNUSED;
3426 unsigned int qp, ab, reg;
3427 expressionS e1, e2;
3428 int sep;
3430 if (!in_procedure ("restorereg.p"))
3431 return;
3433 sep = parse_operand (&e1);
3434 if (sep != ',')
3436 as_bad ("No second operand to .restorereg.p");
3437 return;
3440 parse_operand (&e2);
3442 qp = e1.X_add_number - REG_P;
3443 if (e1.X_op != O_register || qp > 63)
3445 as_bad ("First operand to .restorereg.p must be a predicate");
3446 return;
3449 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3451 as_bad ("Second operand to .restorereg.p must be a preserved register");
3452 return;
3454 add_unwind_entry (output_spill_reg_p (ab, reg, 0, 0, qp));
3457 static char *special_linkonce_name[] =
3459 ".gnu.linkonce.ia64unw.", ".gnu.linkonce.ia64unwi."
3462 static void
3463 start_unwind_section (const segT text_seg, int sec_index, int linkonce_empty)
3466 Use a slightly ugly scheme to derive the unwind section names from
3467 the text section name:
3469 text sect. unwind table sect.
3470 name: name: comments:
3471 ---------- ----------------- --------------------------------
3472 .text .IA_64.unwind
3473 .text.foo .IA_64.unwind.text.foo
3474 .foo .IA_64.unwind.foo
3475 .gnu.linkonce.t.foo
3476 .gnu.linkonce.ia64unw.foo
3477 _info .IA_64.unwind_info gas issues error message (ditto)
3478 _infoFOO .IA_64.unwind_infoFOO gas issues error message (ditto)
3480 This mapping is done so that:
3482 (a) An object file with unwind info only in .text will use
3483 unwind section names .IA_64.unwind and .IA_64.unwind_info.
3484 This follows the letter of the ABI and also ensures backwards
3485 compatibility with older toolchains.
3487 (b) An object file with unwind info in multiple text sections
3488 will use separate unwind sections for each text section.
3489 This allows us to properly set the "sh_info" and "sh_link"
3490 fields in SHT_IA_64_UNWIND as required by the ABI and also
3491 lets GNU ld support programs with multiple segments
3492 containing unwind info (as might be the case for certain
3493 embedded applications).
3495 (c) An error is issued if there would be a name clash.
3498 const char *text_name, *sec_text_name;
3499 char *sec_name;
3500 const char *prefix = special_section_name [sec_index];
3501 const char *suffix;
3502 size_t prefix_len, suffix_len, sec_name_len;
3504 sec_text_name = segment_name (text_seg);
3505 text_name = sec_text_name;
3506 if (strncmp (text_name, "_info", 5) == 0)
3508 as_bad ("Illegal section name `%s' (causes unwind section name clash)",
3509 text_name);
3510 ignore_rest_of_line ();
3511 return;
3513 if (strcmp (text_name, ".text") == 0)
3514 text_name = "";
3516 /* Build the unwind section name by appending the (possibly stripped)
3517 text section name to the unwind prefix. */
3518 suffix = text_name;
3519 if (strncmp (text_name, ".gnu.linkonce.t.",
3520 sizeof (".gnu.linkonce.t.") - 1) == 0)
3522 prefix = special_linkonce_name [sec_index - SPECIAL_SECTION_UNWIND];
3523 suffix += sizeof (".gnu.linkonce.t.") - 1;
3525 else if (linkonce_empty)
3526 return;
3528 prefix_len = strlen (prefix);
3529 suffix_len = strlen (suffix);
3530 sec_name_len = prefix_len + suffix_len;
3531 sec_name = alloca (sec_name_len + 1);
3532 memcpy (sec_name, prefix, prefix_len);
3533 memcpy (sec_name + prefix_len, suffix, suffix_len);
3534 sec_name [sec_name_len] = '\0';
3536 /* Handle COMDAT group. */
3537 if (suffix == text_name && (text_seg->flags & SEC_LINK_ONCE) != 0)
3539 char *section;
3540 size_t len, group_name_len;
3541 const char *group_name = elf_group_name (text_seg);
3543 if (group_name == NULL)
3545 as_bad ("Group section `%s' has no group signature",
3546 sec_text_name);
3547 ignore_rest_of_line ();
3548 return;
3550 /* We have to construct a fake section directive. */
3551 group_name_len = strlen (group_name);
3552 len = (sec_name_len
3553 + 16 /* ,"aG",@progbits, */
3554 + group_name_len /* ,group_name */
3555 + 7); /* ,comdat */
3557 section = alloca (len + 1);
3558 memcpy (section, sec_name, sec_name_len);
3559 memcpy (section + sec_name_len, ",\"aG\",@progbits,", 16);
3560 memcpy (section + sec_name_len + 16, group_name, group_name_len);
3561 memcpy (section + len - 7, ",comdat", 7);
3562 section [len] = '\0';
3563 set_section (section);
3565 else
3567 set_section (sec_name);
3568 bfd_set_section_flags (stdoutput, now_seg,
3569 SEC_LOAD | SEC_ALLOC | SEC_READONLY);
3572 elf_linked_to_section (now_seg) = text_seg;
3575 static void
3576 generate_unwind_image (const segT text_seg)
3578 int size, pad;
3579 unw_rec_list *list;
3581 /* Mark the end of the unwind info, so that we can compute the size of the
3582 last unwind region. */
3583 add_unwind_entry (output_endp ());
3585 /* Force out pending instructions, to make sure all unwind records have
3586 a valid slot_number field. */
3587 ia64_flush_insns ();
3589 /* Generate the unwind record. */
3590 list = optimize_unw_records (unwind.list);
3591 fixup_unw_records (list, 1);
3592 size = calc_record_size (list);
3594 if (size > 0 || unwind.force_unwind_entry)
3596 unwind.force_unwind_entry = 0;
3597 /* pad to pointer-size boundary. */
3598 pad = size % md.pointer_size;
3599 if (pad != 0)
3600 size += md.pointer_size - pad;
3601 /* Add 8 for the header. */
3602 size += 8;
3603 /* Add a pointer for the personality offset. */
3604 if (unwind.personality_routine)
3605 size += md.pointer_size;
3608 /* If there are unwind records, switch sections, and output the info. */
3609 if (size != 0)
3611 expressionS exp;
3612 bfd_reloc_code_real_type reloc;
3614 start_unwind_section (text_seg, SPECIAL_SECTION_UNWIND_INFO, 0);
3616 /* Make sure the section has 4 byte alignment for ILP32 and
3617 8 byte alignment for LP64. */
3618 frag_align (md.pointer_size_shift, 0, 0);
3619 record_alignment (now_seg, md.pointer_size_shift);
3621 /* Set expression which points to start of unwind descriptor area. */
3622 unwind.info = expr_build_dot ();
3624 frag_var (rs_machine_dependent, size, size, 0, 0,
3625 (offsetT) (long) unwind.personality_routine,
3626 (char *) list);
3628 /* Add the personality address to the image. */
3629 if (unwind.personality_routine != 0)
3631 exp.X_op = O_symbol;
3632 exp.X_add_symbol = unwind.personality_routine;
3633 exp.X_add_number = 0;
3635 if (md.flags & EF_IA_64_BE)
3637 if (md.flags & EF_IA_64_ABI64)
3638 reloc = BFD_RELOC_IA64_LTOFF_FPTR64MSB;
3639 else
3640 reloc = BFD_RELOC_IA64_LTOFF_FPTR32MSB;
3642 else
3644 if (md.flags & EF_IA_64_ABI64)
3645 reloc = BFD_RELOC_IA64_LTOFF_FPTR64LSB;
3646 else
3647 reloc = BFD_RELOC_IA64_LTOFF_FPTR32LSB;
3650 fix_new_exp (frag_now, frag_now_fix () - md.pointer_size,
3651 md.pointer_size, &exp, 0, reloc);
3652 unwind.personality_routine = 0;
3655 else
3656 start_unwind_section (text_seg, SPECIAL_SECTION_UNWIND_INFO, 1);
3658 free_saved_prologue_counts ();
3659 unwind.list = unwind.tail = unwind.current_entry = NULL;
3662 static void
3663 dot_handlerdata (dummy)
3664 int dummy ATTRIBUTE_UNUSED;
3666 if (!in_procedure ("handlerdata"))
3667 return;
3668 unwind.force_unwind_entry = 1;
3670 /* Remember which segment we're in so we can switch back after .endp */
3671 unwind.saved_text_seg = now_seg;
3672 unwind.saved_text_subseg = now_subseg;
3674 /* Generate unwind info into unwind-info section and then leave that
3675 section as the currently active one so dataXX directives go into
3676 the language specific data area of the unwind info block. */
3677 generate_unwind_image (now_seg);
3678 demand_empty_rest_of_line ();
3681 static void
3682 dot_unwentry (dummy)
3683 int dummy ATTRIBUTE_UNUSED;
3685 if (!in_procedure ("unwentry"))
3686 return;
3687 unwind.force_unwind_entry = 1;
3688 demand_empty_rest_of_line ();
3691 static void
3692 dot_altrp (dummy)
3693 int dummy ATTRIBUTE_UNUSED;
3695 expressionS e;
3696 unsigned reg;
3698 if (!in_prologue ("altrp"))
3699 return;
3701 parse_operand (&e);
3702 reg = e.X_add_number - REG_BR;
3703 if (e.X_op == O_register && reg < 8)
3704 add_unwind_entry (output_rp_br (reg));
3705 else
3706 as_bad ("First operand not a valid branch register");
3709 static void
3710 dot_savemem (psprel)
3711 int psprel;
3713 expressionS e1, e2;
3714 int sep;
3715 int reg1, val;
3717 if (!in_prologue (psprel ? "savepsp" : "savesp"))
3718 return;
3720 sep = parse_operand (&e1);
3721 if (sep != ',')
3722 as_bad ("No second operand to .save%ssp", psprel ? "p" : "");
3723 sep = parse_operand (&e2);
3725 reg1 = e1.X_add_number;
3726 val = e2.X_add_number;
3728 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
3729 if (e1.X_op == O_register)
3731 if (e2.X_op == O_constant)
3733 switch (reg1)
3735 case REG_AR + AR_BSP:
3736 add_unwind_entry (output_bsp_when ());
3737 add_unwind_entry ((psprel
3738 ? output_bsp_psprel
3739 : output_bsp_sprel) (val));
3740 break;
3741 case REG_AR + AR_BSPSTORE:
3742 add_unwind_entry (output_bspstore_when ());
3743 add_unwind_entry ((psprel
3744 ? output_bspstore_psprel
3745 : output_bspstore_sprel) (val));
3746 break;
3747 case REG_AR + AR_RNAT:
3748 add_unwind_entry (output_rnat_when ());
3749 add_unwind_entry ((psprel
3750 ? output_rnat_psprel
3751 : output_rnat_sprel) (val));
3752 break;
3753 case REG_AR + AR_UNAT:
3754 add_unwind_entry (output_unat_when ());
3755 add_unwind_entry ((psprel
3756 ? output_unat_psprel
3757 : output_unat_sprel) (val));
3758 break;
3759 case REG_AR + AR_FPSR:
3760 add_unwind_entry (output_fpsr_when ());
3761 add_unwind_entry ((psprel
3762 ? output_fpsr_psprel
3763 : output_fpsr_sprel) (val));
3764 break;
3765 case REG_AR + AR_PFS:
3766 add_unwind_entry (output_pfs_when ());
3767 add_unwind_entry ((psprel
3768 ? output_pfs_psprel
3769 : output_pfs_sprel) (val));
3770 break;
3771 case REG_AR + AR_LC:
3772 add_unwind_entry (output_lc_when ());
3773 add_unwind_entry ((psprel
3774 ? output_lc_psprel
3775 : output_lc_sprel) (val));
3776 break;
3777 case REG_BR:
3778 add_unwind_entry (output_rp_when ());
3779 add_unwind_entry ((psprel
3780 ? output_rp_psprel
3781 : output_rp_sprel) (val));
3782 break;
3783 case REG_PR:
3784 add_unwind_entry (output_preds_when ());
3785 add_unwind_entry ((psprel
3786 ? output_preds_psprel
3787 : output_preds_sprel) (val));
3788 break;
3789 case REG_PRIUNAT:
3790 add_unwind_entry (output_priunat_when_mem ());
3791 add_unwind_entry ((psprel
3792 ? output_priunat_psprel
3793 : output_priunat_sprel) (val));
3794 break;
3795 default:
3796 as_bad ("First operand not a valid register");
3799 else
3800 as_bad (" Second operand not a valid constant");
3802 else
3803 as_bad ("First operand not a register");
3806 static void
3807 dot_saveg (dummy)
3808 int dummy ATTRIBUTE_UNUSED;
3810 expressionS e1, e2;
3811 int sep;
3813 if (!in_prologue ("save.g"))
3814 return;
3816 sep = parse_operand (&e1);
3817 if (sep == ',')
3818 parse_operand (&e2);
3820 if (e1.X_op != O_constant)
3821 as_bad ("First operand to .save.g must be a constant.");
3822 else
3824 int grmask = e1.X_add_number;
3825 if (sep != ',')
3826 add_unwind_entry (output_gr_mem (grmask));
3827 else
3829 int reg = e2.X_add_number - REG_GR;
3830 if (e2.X_op == O_register && reg >= 0 && reg < 128)
3831 add_unwind_entry (output_gr_gr (grmask, reg));
3832 else
3833 as_bad ("Second operand is an invalid register.");
3838 static void
3839 dot_savef (dummy)
3840 int dummy ATTRIBUTE_UNUSED;
3842 expressionS e1;
3843 int sep;
3845 if (!in_prologue ("save.f"))
3846 return;
3848 sep = parse_operand (&e1);
3850 if (e1.X_op != O_constant)
3851 as_bad ("Operand to .save.f must be a constant.");
3852 else
3853 add_unwind_entry (output_fr_mem (e1.X_add_number));
3856 static void
3857 dot_saveb (dummy)
3858 int dummy ATTRIBUTE_UNUSED;
3860 expressionS e1, e2;
3861 unsigned int reg;
3862 unsigned char sep;
3863 int brmask;
3865 if (!in_prologue ("save.b"))
3866 return;
3868 sep = parse_operand (&e1);
3869 if (e1.X_op != O_constant)
3871 as_bad ("First operand to .save.b must be a constant.");
3872 return;
3874 brmask = e1.X_add_number;
3876 if (sep == ',')
3878 sep = parse_operand (&e2);
3879 reg = e2.X_add_number - REG_GR;
3880 if (e2.X_op != O_register || reg > 127)
3882 as_bad ("Second operand to .save.b must be a general register.");
3883 return;
3885 add_unwind_entry (output_br_gr (brmask, e2.X_add_number));
3887 else
3888 add_unwind_entry (output_br_mem (brmask));
3890 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3891 demand_empty_rest_of_line ();
3894 static void
3895 dot_savegf (dummy)
3896 int dummy ATTRIBUTE_UNUSED;
3898 expressionS e1, e2;
3899 int sep;
3901 if (!in_prologue ("save.gf"))
3902 return;
3904 sep = parse_operand (&e1);
3905 if (sep == ',')
3906 parse_operand (&e2);
3908 if (e1.X_op != O_constant || sep != ',' || e2.X_op != O_constant)
3909 as_bad ("Both operands of .save.gf must be constants.");
3910 else
3912 int grmask = e1.X_add_number;
3913 int frmask = e2.X_add_number;
3914 add_unwind_entry (output_frgr_mem (grmask, frmask));
3918 static void
3919 dot_spill (dummy)
3920 int dummy ATTRIBUTE_UNUSED;
3922 expressionS e;
3923 unsigned char sep;
3925 if (!in_prologue ("spill"))
3926 return;
3928 sep = parse_operand (&e);
3929 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3930 demand_empty_rest_of_line ();
3932 if (e.X_op != O_constant)
3933 as_bad ("Operand to .spill must be a constant");
3934 else
3935 add_unwind_entry (output_spill_base (e.X_add_number));
3938 static void
3939 dot_spillreg (dummy)
3940 int dummy ATTRIBUTE_UNUSED;
3942 int sep;
3943 unsigned int ab, xy, reg, treg;
3944 expressionS e1, e2;
3946 if (!in_procedure ("spillreg"))
3947 return;
3949 sep = parse_operand (&e1);
3950 if (sep != ',')
3952 as_bad ("No second operand to .spillreg");
3953 return;
3956 parse_operand (&e2);
3958 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3960 as_bad ("First operand to .spillreg must be a preserved register");
3961 return;
3964 if (!convert_expr_to_xy_reg (&e2, &xy, &treg))
3966 as_bad ("Second operand to .spillreg must be a register");
3967 return;
3970 add_unwind_entry (output_spill_reg (ab, reg, treg, xy));
3973 static void
3974 dot_spillmem (psprel)
3975 int psprel;
3977 expressionS e1, e2;
3978 int sep;
3979 unsigned int ab, reg;
3981 if (!in_procedure ("spillmem"))
3982 return;
3984 sep = parse_operand (&e1);
3985 if (sep != ',')
3987 as_bad ("Second operand missing");
3988 return;
3991 parse_operand (&e2);
3993 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3995 as_bad ("First operand to .spill%s must be a preserved register",
3996 psprel ? "psp" : "sp");
3997 return;
4000 if (e2.X_op != O_constant)
4002 as_bad ("Second operand to .spill%s must be a constant",
4003 psprel ? "psp" : "sp");
4004 return;
4007 if (psprel)
4008 add_unwind_entry (output_spill_psprel (ab, reg, e2.X_add_number));
4009 else
4010 add_unwind_entry (output_spill_sprel (ab, reg, e2.X_add_number));
4013 static void
4014 dot_spillreg_p (dummy)
4015 int dummy ATTRIBUTE_UNUSED;
4017 int sep;
4018 unsigned int ab, xy, reg, treg;
4019 expressionS e1, e2, e3;
4020 unsigned int qp;
4022 if (!in_procedure ("spillreg.p"))
4023 return;
4025 sep = parse_operand (&e1);
4026 if (sep != ',')
4028 as_bad ("No second and third operand to .spillreg.p");
4029 return;
4032 sep = parse_operand (&e2);
4033 if (sep != ',')
4035 as_bad ("No third operand to .spillreg.p");
4036 return;
4039 parse_operand (&e3);
4041 qp = e1.X_add_number - REG_P;
4043 if (e1.X_op != O_register || qp > 63)
4045 as_bad ("First operand to .spillreg.p must be a predicate");
4046 return;
4049 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
4051 as_bad ("Second operand to .spillreg.p must be a preserved register");
4052 return;
4055 if (!convert_expr_to_xy_reg (&e3, &xy, &treg))
4057 as_bad ("Third operand to .spillreg.p must be a register");
4058 return;
4061 add_unwind_entry (output_spill_reg_p (ab, reg, treg, xy, qp));
4064 static void
4065 dot_spillmem_p (psprel)
4066 int psprel;
4068 expressionS e1, e2, e3;
4069 int sep;
4070 unsigned int ab, reg;
4071 unsigned int qp;
4073 if (!in_procedure ("spillmem.p"))
4074 return;
4076 sep = parse_operand (&e1);
4077 if (sep != ',')
4079 as_bad ("Second operand missing");
4080 return;
4083 parse_operand (&e2);
4084 if (sep != ',')
4086 as_bad ("Second operand missing");
4087 return;
4090 parse_operand (&e3);
4092 qp = e1.X_add_number - REG_P;
4093 if (e1.X_op != O_register || qp > 63)
4095 as_bad ("First operand to .spill%s_p must be a predicate",
4096 psprel ? "psp" : "sp");
4097 return;
4100 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
4102 as_bad ("Second operand to .spill%s_p must be a preserved register",
4103 psprel ? "psp" : "sp");
4104 return;
4107 if (e3.X_op != O_constant)
4109 as_bad ("Third operand to .spill%s_p must be a constant",
4110 psprel ? "psp" : "sp");
4111 return;
4114 if (psprel)
4115 add_unwind_entry (output_spill_psprel_p (ab, reg, e3.X_add_number, qp));
4116 else
4117 add_unwind_entry (output_spill_sprel_p (ab, reg, e3.X_add_number, qp));
4120 static unsigned int
4121 get_saved_prologue_count (lbl)
4122 unsigned long lbl;
4124 label_prologue_count *lpc = unwind.saved_prologue_counts;
4126 while (lpc != NULL && lpc->label_number != lbl)
4127 lpc = lpc->next;
4129 if (lpc != NULL)
4130 return lpc->prologue_count;
4132 as_bad ("Missing .label_state %ld", lbl);
4133 return 1;
4136 static void
4137 save_prologue_count (lbl, count)
4138 unsigned long lbl;
4139 unsigned int count;
4141 label_prologue_count *lpc = unwind.saved_prologue_counts;
4143 while (lpc != NULL && lpc->label_number != lbl)
4144 lpc = lpc->next;
4146 if (lpc != NULL)
4147 lpc->prologue_count = count;
4148 else
4150 label_prologue_count *new_lpc = xmalloc (sizeof (* new_lpc));
4152 new_lpc->next = unwind.saved_prologue_counts;
4153 new_lpc->label_number = lbl;
4154 new_lpc->prologue_count = count;
4155 unwind.saved_prologue_counts = new_lpc;
4159 static void
4160 free_saved_prologue_counts ()
4162 label_prologue_count *lpc = unwind.saved_prologue_counts;
4163 label_prologue_count *next;
4165 while (lpc != NULL)
4167 next = lpc->next;
4168 free (lpc);
4169 lpc = next;
4172 unwind.saved_prologue_counts = NULL;
4175 static void
4176 dot_label_state (dummy)
4177 int dummy ATTRIBUTE_UNUSED;
4179 expressionS e;
4181 if (!in_body ("label_state"))
4182 return;
4184 parse_operand (&e);
4185 if (e.X_op != O_constant)
4187 as_bad ("Operand to .label_state must be a constant");
4188 return;
4190 add_unwind_entry (output_label_state (e.X_add_number));
4191 save_prologue_count (e.X_add_number, unwind.prologue_count);
4194 static void
4195 dot_copy_state (dummy)
4196 int dummy ATTRIBUTE_UNUSED;
4198 expressionS e;
4200 if (!in_body ("copy_state"))
4201 return;
4203 parse_operand (&e);
4204 if (e.X_op != O_constant)
4206 as_bad ("Operand to .copy_state must be a constant");
4207 return;
4209 add_unwind_entry (output_copy_state (e.X_add_number));
4210 unwind.prologue_count = get_saved_prologue_count (e.X_add_number);
4213 static void
4214 dot_unwabi (dummy)
4215 int dummy ATTRIBUTE_UNUSED;
4217 expressionS e1, e2;
4218 unsigned char sep;
4220 if (!in_procedure ("unwabi"))
4221 return;
4223 sep = parse_operand (&e1);
4224 if (sep != ',')
4226 as_bad ("Second operand to .unwabi missing");
4227 return;
4229 sep = parse_operand (&e2);
4230 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
4231 demand_empty_rest_of_line ();
4233 if (e1.X_op != O_constant)
4235 as_bad ("First operand to .unwabi must be a constant");
4236 return;
4239 if (e2.X_op != O_constant)
4241 as_bad ("Second operand to .unwabi must be a constant");
4242 return;
4245 add_unwind_entry (output_unwabi (e1.X_add_number, e2.X_add_number));
4248 static void
4249 dot_personality (dummy)
4250 int dummy ATTRIBUTE_UNUSED;
4252 char *name, *p, c;
4253 if (!in_procedure ("personality"))
4254 return;
4255 SKIP_WHITESPACE ();
4256 name = input_line_pointer;
4257 c = get_symbol_end ();
4258 p = input_line_pointer;
4259 unwind.personality_routine = symbol_find_or_make (name);
4260 unwind.force_unwind_entry = 1;
4261 *p = c;
4262 SKIP_WHITESPACE ();
4263 demand_empty_rest_of_line ();
4266 static void
4267 dot_proc (dummy)
4268 int dummy ATTRIBUTE_UNUSED;
4270 char *name, *p, c;
4271 symbolS *sym;
4273 unwind.proc_start = 0;
4274 /* Parse names of main and alternate entry points and mark them as
4275 function symbols: */
4276 while (1)
4278 SKIP_WHITESPACE ();
4279 name = input_line_pointer;
4280 c = get_symbol_end ();
4281 p = input_line_pointer;
4282 if (!*name)
4283 as_bad ("Empty argument of .proc");
4284 else
4286 sym = symbol_find_or_make (name);
4287 if (S_IS_DEFINED (sym))
4288 as_bad ("`%s' was already defined", name);
4289 else if (unwind.proc_start == 0)
4291 unwind.proc_start = sym;
4293 symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
4295 *p = c;
4296 SKIP_WHITESPACE ();
4297 if (*input_line_pointer != ',')
4298 break;
4299 ++input_line_pointer;
4301 if (unwind.proc_start == 0)
4302 unwind.proc_start = expr_build_dot ();
4303 demand_empty_rest_of_line ();
4304 ia64_do_align (16);
4306 unwind.prologue = 0;
4307 unwind.prologue_count = 0;
4308 unwind.body = 0;
4309 unwind.insn = 0;
4310 unwind.list = unwind.tail = unwind.current_entry = NULL;
4311 unwind.personality_routine = 0;
4314 static void
4315 dot_body (dummy)
4316 int dummy ATTRIBUTE_UNUSED;
4318 if (!in_procedure ("body"))
4319 return;
4320 if (!unwind.prologue && !unwind.body && unwind.insn)
4321 as_warn ("Initial .body should precede any instructions");
4323 unwind.prologue = 0;
4324 unwind.prologue_mask = 0;
4325 unwind.body = 1;
4327 add_unwind_entry (output_body ());
4328 demand_empty_rest_of_line ();
4331 static void
4332 dot_prologue (dummy)
4333 int dummy ATTRIBUTE_UNUSED;
4335 unsigned char sep;
4336 int mask = 0, grsave = 0;
4338 if (!in_procedure ("prologue"))
4339 return;
4340 if (unwind.prologue)
4342 as_bad (".prologue within prologue");
4343 ignore_rest_of_line ();
4344 return;
4346 if (!unwind.body && unwind.insn)
4347 as_warn ("Initial .prologue should precede any instructions");
4349 if (!is_it_end_of_statement ())
4351 expressionS e1, e2;
4352 sep = parse_operand (&e1);
4353 if (sep != ',')
4354 as_bad ("No second operand to .prologue");
4355 sep = parse_operand (&e2);
4356 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
4357 demand_empty_rest_of_line ();
4359 if (e1.X_op == O_constant)
4361 mask = e1.X_add_number;
4363 if (e2.X_op == O_constant)
4364 grsave = e2.X_add_number;
4365 else if (e2.X_op == O_register
4366 && (grsave = e2.X_add_number - REG_GR) < 128)
4368 else
4369 as_bad ("Second operand not a constant or general register");
4371 add_unwind_entry (output_prologue_gr (mask, grsave));
4373 else
4374 as_bad ("First operand not a constant");
4376 else
4377 add_unwind_entry (output_prologue ());
4379 unwind.prologue = 1;
4380 unwind.prologue_mask = mask;
4381 unwind.body = 0;
4382 ++unwind.prologue_count;
4385 static void
4386 dot_endp (dummy)
4387 int dummy ATTRIBUTE_UNUSED;
4389 expressionS e;
4390 char *ptr;
4391 int bytes_per_address;
4392 long where;
4393 segT saved_seg;
4394 subsegT saved_subseg;
4395 char *name, *default_name, *p, c;
4396 symbolS *sym;
4397 int unwind_check = md.unwind_check;
4399 md.unwind_check = unwind_check_error;
4400 if (!in_procedure ("endp"))
4401 return;
4402 md.unwind_check = unwind_check;
4404 if (unwind.saved_text_seg)
4406 saved_seg = unwind.saved_text_seg;
4407 saved_subseg = unwind.saved_text_subseg;
4408 unwind.saved_text_seg = NULL;
4410 else
4412 saved_seg = now_seg;
4413 saved_subseg = now_subseg;
4416 insn_group_break (1, 0, 0);
4418 /* If there wasn't a .handlerdata, we haven't generated an image yet. */
4419 if (!unwind.info)
4420 generate_unwind_image (saved_seg);
4422 if (unwind.info || unwind.force_unwind_entry)
4424 symbolS *proc_end;
4426 subseg_set (md.last_text_seg, 0);
4427 proc_end = expr_build_dot ();
4429 start_unwind_section (saved_seg, SPECIAL_SECTION_UNWIND, 0);
4431 /* Make sure that section has 4 byte alignment for ILP32 and
4432 8 byte alignment for LP64. */
4433 record_alignment (now_seg, md.pointer_size_shift);
4435 /* Need space for 3 pointers for procedure start, procedure end,
4436 and unwind info. */
4437 ptr = frag_more (3 * md.pointer_size);
4438 where = frag_now_fix () - (3 * md.pointer_size);
4439 bytes_per_address = bfd_arch_bits_per_address (stdoutput) / 8;
4441 /* Issue the values of a) Proc Begin, b) Proc End, c) Unwind Record. */
4442 e.X_op = O_pseudo_fixup;
4443 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
4444 e.X_add_number = 0;
4445 e.X_add_symbol = unwind.proc_start;
4446 ia64_cons_fix_new (frag_now, where, bytes_per_address, &e);
4448 e.X_op = O_pseudo_fixup;
4449 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
4450 e.X_add_number = 0;
4451 e.X_add_symbol = proc_end;
4452 ia64_cons_fix_new (frag_now, where + bytes_per_address,
4453 bytes_per_address, &e);
4455 if (unwind.info)
4457 e.X_op = O_pseudo_fixup;
4458 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
4459 e.X_add_number = 0;
4460 e.X_add_symbol = unwind.info;
4461 ia64_cons_fix_new (frag_now, where + (bytes_per_address * 2),
4462 bytes_per_address, &e);
4464 else
4465 md_number_to_chars (ptr + (bytes_per_address * 2), 0,
4466 bytes_per_address);
4469 else
4470 start_unwind_section (saved_seg, SPECIAL_SECTION_UNWIND, 1);
4472 subseg_set (saved_seg, saved_subseg);
4474 if (unwind.proc_start)
4475 default_name = (char *) S_GET_NAME (unwind.proc_start);
4476 else
4477 default_name = NULL;
4479 /* Parse names of main and alternate entry points and set symbol sizes. */
4480 while (1)
4482 SKIP_WHITESPACE ();
4483 name = input_line_pointer;
4484 c = get_symbol_end ();
4485 p = input_line_pointer;
4486 if (!*name)
4488 if (md.unwind_check == unwind_check_warning)
4490 if (default_name)
4492 as_warn ("Empty argument of .endp. Use the default name `%s'",
4493 default_name);
4494 name = default_name;
4496 else
4497 as_warn ("Empty argument of .endp");
4499 else
4500 as_bad ("Empty argument of .endp");
4502 if (*name)
4504 sym = symbol_find (name);
4505 if (!sym
4506 && md.unwind_check == unwind_check_warning
4507 && default_name
4508 && default_name != name)
4510 /* We have a bad name. Try the default one if needed. */
4511 as_warn ("`%s' was not defined within procedure. Use the default name `%s'",
4512 name, default_name);
4513 name = default_name;
4514 sym = symbol_find (name);
4516 if (!sym || !S_IS_DEFINED (sym))
4517 as_bad ("`%s' was not defined within procedure", name);
4518 else if (unwind.proc_start
4519 && (symbol_get_bfdsym (sym)->flags & BSF_FUNCTION)
4520 && S_GET_SIZE (sym) == 0 && symbol_get_obj (sym)->size == NULL)
4522 fragS *fr = symbol_get_frag (unwind.proc_start);
4523 fragS *frag = symbol_get_frag (sym);
4525 /* Check whether the function label is at or beyond last
4526 .proc directive. */
4527 while (fr && fr != frag)
4528 fr = fr->fr_next;
4529 if (fr)
4531 if (frag == frag_now && SEG_NORMAL (now_seg))
4532 S_SET_SIZE (sym, frag_now_fix () - S_GET_VALUE (sym));
4533 else
4535 symbol_get_obj (sym)->size =
4536 (expressionS *) xmalloc (sizeof (expressionS));
4537 symbol_get_obj (sym)->size->X_op = O_subtract;
4538 symbol_get_obj (sym)->size->X_add_symbol
4539 = symbol_new (FAKE_LABEL_NAME, now_seg,
4540 frag_now_fix (), frag_now);
4541 symbol_get_obj (sym)->size->X_op_symbol = sym;
4542 symbol_get_obj (sym)->size->X_add_number = 0;
4547 *p = c;
4548 SKIP_WHITESPACE ();
4549 if (*input_line_pointer != ',')
4550 break;
4551 ++input_line_pointer;
4553 demand_empty_rest_of_line ();
4554 unwind.proc_start = unwind.info = 0;
4557 static void
4558 dot_template (template)
4559 int template;
4561 CURR_SLOT.user_template = template;
4564 static void
4565 dot_regstk (dummy)
4566 int dummy ATTRIBUTE_UNUSED;
4568 int ins, locs, outs, rots;
4570 if (is_it_end_of_statement ())
4571 ins = locs = outs = rots = 0;
4572 else
4574 ins = get_absolute_expression ();
4575 if (*input_line_pointer++ != ',')
4576 goto err;
4577 locs = get_absolute_expression ();
4578 if (*input_line_pointer++ != ',')
4579 goto err;
4580 outs = get_absolute_expression ();
4581 if (*input_line_pointer++ != ',')
4582 goto err;
4583 rots = get_absolute_expression ();
4585 set_regstack (ins, locs, outs, rots);
4586 return;
4588 err:
4589 as_bad ("Comma expected");
4590 ignore_rest_of_line ();
4593 static void
4594 dot_rot (type)
4595 int type;
4597 unsigned num_regs, num_alloced = 0;
4598 struct dynreg **drpp, *dr;
4599 int ch, base_reg = 0;
4600 char *name, *start;
4601 size_t len;
4603 switch (type)
4605 case DYNREG_GR: base_reg = REG_GR + 32; break;
4606 case DYNREG_FR: base_reg = REG_FR + 32; break;
4607 case DYNREG_PR: base_reg = REG_P + 16; break;
4608 default: break;
4611 /* First, remove existing names from hash table. */
4612 for (dr = md.dynreg[type]; dr && dr->num_regs; dr = dr->next)
4614 hash_delete (md.dynreg_hash, dr->name);
4615 /* FIXME: Free dr->name. */
4616 dr->num_regs = 0;
4619 drpp = &md.dynreg[type];
4620 while (1)
4622 start = input_line_pointer;
4623 ch = get_symbol_end ();
4624 len = strlen (ia64_canonicalize_symbol_name (start));
4625 *input_line_pointer = ch;
4627 SKIP_WHITESPACE ();
4628 if (*input_line_pointer != '[')
4630 as_bad ("Expected '['");
4631 goto err;
4633 ++input_line_pointer; /* skip '[' */
4635 num_regs = get_absolute_expression ();
4637 if (*input_line_pointer++ != ']')
4639 as_bad ("Expected ']'");
4640 goto err;
4642 SKIP_WHITESPACE ();
4644 num_alloced += num_regs;
4645 switch (type)
4647 case DYNREG_GR:
4648 if (num_alloced > md.rot.num_regs)
4650 as_bad ("Used more than the declared %d rotating registers",
4651 md.rot.num_regs);
4652 goto err;
4654 break;
4655 case DYNREG_FR:
4656 if (num_alloced > 96)
4658 as_bad ("Used more than the available 96 rotating registers");
4659 goto err;
4661 break;
4662 case DYNREG_PR:
4663 if (num_alloced > 48)
4665 as_bad ("Used more than the available 48 rotating registers");
4666 goto err;
4668 break;
4670 default:
4671 break;
4674 if (!*drpp)
4676 *drpp = obstack_alloc (&notes, sizeof (*dr));
4677 memset (*drpp, 0, sizeof (*dr));
4680 name = obstack_alloc (&notes, len + 1);
4681 memcpy (name, start, len);
4682 name[len] = '\0';
4684 dr = *drpp;
4685 dr->name = name;
4686 dr->num_regs = num_regs;
4687 dr->base = base_reg;
4688 drpp = &dr->next;
4689 base_reg += num_regs;
4691 if (hash_insert (md.dynreg_hash, name, dr))
4693 as_bad ("Attempt to redefine register set `%s'", name);
4694 obstack_free (&notes, name);
4695 goto err;
4698 if (*input_line_pointer != ',')
4699 break;
4700 ++input_line_pointer; /* skip comma */
4701 SKIP_WHITESPACE ();
4703 demand_empty_rest_of_line ();
4704 return;
4706 err:
4707 ignore_rest_of_line ();
4710 static void
4711 dot_byteorder (byteorder)
4712 int byteorder;
4714 segment_info_type *seginfo = seg_info (now_seg);
4716 if (byteorder == -1)
4718 if (seginfo->tc_segment_info_data.endian == 0)
4719 seginfo->tc_segment_info_data.endian = default_big_endian ? 1 : 2;
4720 byteorder = seginfo->tc_segment_info_data.endian == 1;
4722 else
4723 seginfo->tc_segment_info_data.endian = byteorder ? 1 : 2;
4725 if (target_big_endian != byteorder)
4727 target_big_endian = byteorder;
4728 if (target_big_endian)
4730 ia64_number_to_chars = number_to_chars_bigendian;
4731 ia64_float_to_chars = ia64_float_to_chars_bigendian;
4733 else
4735 ia64_number_to_chars = number_to_chars_littleendian;
4736 ia64_float_to_chars = ia64_float_to_chars_littleendian;
4741 static void
4742 dot_psr (dummy)
4743 int dummy ATTRIBUTE_UNUSED;
4745 char *option;
4746 int ch;
4748 while (1)
4750 option = input_line_pointer;
4751 ch = get_symbol_end ();
4752 if (strcmp (option, "lsb") == 0)
4753 md.flags &= ~EF_IA_64_BE;
4754 else if (strcmp (option, "msb") == 0)
4755 md.flags |= EF_IA_64_BE;
4756 else if (strcmp (option, "abi32") == 0)
4757 md.flags &= ~EF_IA_64_ABI64;
4758 else if (strcmp (option, "abi64") == 0)
4759 md.flags |= EF_IA_64_ABI64;
4760 else
4761 as_bad ("Unknown psr option `%s'", option);
4762 *input_line_pointer = ch;
4764 SKIP_WHITESPACE ();
4765 if (*input_line_pointer != ',')
4766 break;
4768 ++input_line_pointer;
4769 SKIP_WHITESPACE ();
4771 demand_empty_rest_of_line ();
4774 static void
4775 dot_ln (dummy)
4776 int dummy ATTRIBUTE_UNUSED;
4778 new_logical_line (0, get_absolute_expression ());
4779 demand_empty_rest_of_line ();
4782 static void
4783 cross_section (ref, cons, ua)
4784 int ref;
4785 void (*cons) PARAMS((int));
4786 int ua;
4788 char *start, *end;
4789 int saved_auto_align;
4790 unsigned int section_count;
4792 SKIP_WHITESPACE ();
4793 start = input_line_pointer;
4794 if (*start == '"')
4796 int len;
4797 char *name;
4799 name = demand_copy_C_string (&len);
4800 obstack_free(&notes, name);
4801 if (!name)
4803 ignore_rest_of_line ();
4804 return;
4807 else
4809 char c = get_symbol_end ();
4811 if (input_line_pointer == start)
4813 as_bad ("Missing section name");
4814 ignore_rest_of_line ();
4815 return;
4817 *input_line_pointer = c;
4819 end = input_line_pointer;
4820 SKIP_WHITESPACE ();
4821 if (*input_line_pointer != ',')
4823 as_bad ("Comma expected after section name");
4824 ignore_rest_of_line ();
4825 return;
4827 *end = '\0';
4828 end = input_line_pointer + 1; /* skip comma */
4829 input_line_pointer = start;
4830 md.keep_pending_output = 1;
4831 section_count = bfd_count_sections(stdoutput);
4832 obj_elf_section (0);
4833 if (section_count != bfd_count_sections(stdoutput))
4834 as_warn ("Creating sections with .xdataN/.xrealN/.xstringZ is deprecated.");
4835 input_line_pointer = end;
4836 saved_auto_align = md.auto_align;
4837 if (ua)
4838 md.auto_align = 0;
4839 (*cons) (ref);
4840 if (ua)
4841 md.auto_align = saved_auto_align;
4842 obj_elf_previous (0);
4843 md.keep_pending_output = 0;
4846 static void
4847 dot_xdata (size)
4848 int size;
4850 cross_section (size, cons, 0);
4853 /* Why doesn't float_cons() call md_cons_align() the way cons() does? */
4855 static void
4856 stmt_float_cons (kind)
4857 int kind;
4859 size_t alignment;
4861 switch (kind)
4863 case 'd':
4864 alignment = 8;
4865 break;
4867 case 'x':
4868 case 'X':
4869 alignment = 16;
4870 break;
4872 case 'f':
4873 default:
4874 alignment = 4;
4875 break;
4877 ia64_do_align (alignment);
4878 float_cons (kind);
4881 static void
4882 stmt_cons_ua (size)
4883 int size;
4885 int saved_auto_align = md.auto_align;
4887 md.auto_align = 0;
4888 cons (size);
4889 md.auto_align = saved_auto_align;
4892 static void
4893 dot_xfloat_cons (kind)
4894 int kind;
4896 cross_section (kind, stmt_float_cons, 0);
4899 static void
4900 dot_xstringer (zero)
4901 int zero;
4903 cross_section (zero, stringer, 0);
4906 static void
4907 dot_xdata_ua (size)
4908 int size;
4910 cross_section (size, cons, 1);
4913 static void
4914 dot_xfloat_cons_ua (kind)
4915 int kind;
4917 cross_section (kind, float_cons, 1);
4920 /* .reg.val <regname>,value */
4922 static void
4923 dot_reg_val (dummy)
4924 int dummy ATTRIBUTE_UNUSED;
4926 expressionS reg;
4928 expression (&reg);
4929 if (reg.X_op != O_register)
4931 as_bad (_("Register name expected"));
4932 ignore_rest_of_line ();
4934 else if (*input_line_pointer++ != ',')
4936 as_bad (_("Comma expected"));
4937 ignore_rest_of_line ();
4939 else
4941 valueT value = get_absolute_expression ();
4942 int regno = reg.X_add_number;
4943 if (regno <= REG_GR || regno > REG_GR + 127)
4944 as_warn (_("Register value annotation ignored"));
4945 else
4947 gr_values[regno - REG_GR].known = 1;
4948 gr_values[regno - REG_GR].value = value;
4949 gr_values[regno - REG_GR].path = md.path;
4952 demand_empty_rest_of_line ();
4956 .serialize.data
4957 .serialize.instruction
4959 static void
4960 dot_serialize (type)
4961 int type;
4963 insn_group_break (0, 0, 0);
4964 if (type)
4965 instruction_serialization ();
4966 else
4967 data_serialization ();
4968 insn_group_break (0, 0, 0);
4969 demand_empty_rest_of_line ();
4972 /* select dv checking mode
4973 .auto
4974 .explicit
4975 .default
4977 A stop is inserted when changing modes
4980 static void
4981 dot_dv_mode (type)
4982 int type;
4984 if (md.manual_bundling)
4985 as_warn (_("Directive invalid within a bundle"));
4987 if (type == 'E' || type == 'A')
4988 md.mode_explicitly_set = 0;
4989 else
4990 md.mode_explicitly_set = 1;
4992 md.detect_dv = 1;
4993 switch (type)
4995 case 'A':
4996 case 'a':
4997 if (md.explicit_mode)
4998 insn_group_break (1, 0, 0);
4999 md.explicit_mode = 0;
5000 break;
5001 case 'E':
5002 case 'e':
5003 if (!md.explicit_mode)
5004 insn_group_break (1, 0, 0);
5005 md.explicit_mode = 1;
5006 break;
5007 default:
5008 case 'd':
5009 if (md.explicit_mode != md.default_explicit_mode)
5010 insn_group_break (1, 0, 0);
5011 md.explicit_mode = md.default_explicit_mode;
5012 md.mode_explicitly_set = 0;
5013 break;
5017 static void
5018 print_prmask (mask)
5019 valueT mask;
5021 int regno;
5022 char *comma = "";
5023 for (regno = 0; regno < 64; regno++)
5025 if (mask & ((valueT) 1 << regno))
5027 fprintf (stderr, "%s p%d", comma, regno);
5028 comma = ",";
5034 .pred.rel.clear [p1 [,p2 [,...]]] (also .pred.rel "clear" or @clear)
5035 .pred.rel.imply p1, p2 (also .pred.rel "imply" or @imply)
5036 .pred.rel.mutex p1, p2 [,...] (also .pred.rel "mutex" or @mutex)
5037 .pred.safe_across_calls p1 [, p2 [,...]]
5040 static void
5041 dot_pred_rel (type)
5042 int type;
5044 valueT mask = 0;
5045 int count = 0;
5046 int p1 = -1, p2 = -1;
5048 if (type == 0)
5050 if (*input_line_pointer == '"')
5052 int len;
5053 char *form = demand_copy_C_string (&len);
5055 if (strcmp (form, "mutex") == 0)
5056 type = 'm';
5057 else if (strcmp (form, "clear") == 0)
5058 type = 'c';
5059 else if (strcmp (form, "imply") == 0)
5060 type = 'i';
5061 obstack_free (&notes, form);
5063 else if (*input_line_pointer == '@')
5065 char *form = ++input_line_pointer;
5066 char c = get_symbol_end();
5068 if (strcmp (form, "mutex") == 0)
5069 type = 'm';
5070 else if (strcmp (form, "clear") == 0)
5071 type = 'c';
5072 else if (strcmp (form, "imply") == 0)
5073 type = 'i';
5074 *input_line_pointer = c;
5076 else
5078 as_bad (_("Missing predicate relation type"));
5079 ignore_rest_of_line ();
5080 return;
5082 if (type == 0)
5084 as_bad (_("Unrecognized predicate relation type"));
5085 ignore_rest_of_line ();
5086 return;
5088 if (*input_line_pointer == ',')
5089 ++input_line_pointer;
5090 SKIP_WHITESPACE ();
5093 SKIP_WHITESPACE ();
5094 while (1)
5096 valueT bits = 1;
5097 int regno;
5098 expressionS pr, *pr1, *pr2;
5100 expression (&pr);
5101 if (pr.X_op == O_register
5102 && pr.X_add_number >= REG_P
5103 && pr.X_add_number <= REG_P + 63)
5105 regno = pr.X_add_number - REG_P;
5106 bits <<= regno;
5107 count++;
5108 if (p1 == -1)
5109 p1 = regno;
5110 else if (p2 == -1)
5111 p2 = regno;
5113 else if (type != 'i'
5114 && pr.X_op == O_subtract
5115 && (pr1 = symbol_get_value_expression (pr.X_add_symbol))
5116 && pr1->X_op == O_register
5117 && pr1->X_add_number >= REG_P
5118 && pr1->X_add_number <= REG_P + 63
5119 && (pr2 = symbol_get_value_expression (pr.X_op_symbol))
5120 && pr2->X_op == O_register
5121 && pr2->X_add_number >= REG_P
5122 && pr2->X_add_number <= REG_P + 63)
5124 /* It's a range. */
5125 int stop;
5127 regno = pr1->X_add_number - REG_P;
5128 stop = pr2->X_add_number - REG_P;
5129 if (regno >= stop)
5131 as_bad (_("Bad register range"));
5132 ignore_rest_of_line ();
5133 return;
5135 bits = ((bits << stop) << 1) - (bits << regno);
5136 count += stop - regno + 1;
5138 else
5140 as_bad (_("Predicate register expected"));
5141 ignore_rest_of_line ();
5142 return;
5144 if (mask & bits)
5145 as_warn (_("Duplicate predicate register ignored"));
5146 mask |= bits;
5147 if (*input_line_pointer != ',')
5148 break;
5149 ++input_line_pointer;
5150 SKIP_WHITESPACE ();
5153 switch (type)
5155 case 'c':
5156 if (count == 0)
5157 mask = ~(valueT) 0;
5158 clear_qp_mutex (mask);
5159 clear_qp_implies (mask, (valueT) 0);
5160 break;
5161 case 'i':
5162 if (count != 2 || p1 == -1 || p2 == -1)
5163 as_bad (_("Predicate source and target required"));
5164 else if (p1 == 0 || p2 == 0)
5165 as_bad (_("Use of p0 is not valid in this context"));
5166 else
5167 add_qp_imply (p1, p2);
5168 break;
5169 case 'm':
5170 if (count < 2)
5172 as_bad (_("At least two PR arguments expected"));
5173 break;
5175 else if (mask & 1)
5177 as_bad (_("Use of p0 is not valid in this context"));
5178 break;
5180 add_qp_mutex (mask);
5181 break;
5182 case 's':
5183 /* note that we don't override any existing relations */
5184 if (count == 0)
5186 as_bad (_("At least one PR argument expected"));
5187 break;
5189 if (md.debug_dv)
5191 fprintf (stderr, "Safe across calls: ");
5192 print_prmask (mask);
5193 fprintf (stderr, "\n");
5195 qp_safe_across_calls = mask;
5196 break;
5198 demand_empty_rest_of_line ();
5201 /* .entry label [, label [, ...]]
5202 Hint to DV code that the given labels are to be considered entry points.
5203 Otherwise, only global labels are considered entry points. */
5205 static void
5206 dot_entry (dummy)
5207 int dummy ATTRIBUTE_UNUSED;
5209 const char *err;
5210 char *name;
5211 int c;
5212 symbolS *symbolP;
5216 name = input_line_pointer;
5217 c = get_symbol_end ();
5218 symbolP = symbol_find_or_make (name);
5220 err = hash_insert (md.entry_hash, S_GET_NAME (symbolP), (PTR) symbolP);
5221 if (err)
5222 as_fatal (_("Inserting \"%s\" into entry hint table failed: %s"),
5223 name, err);
5225 *input_line_pointer = c;
5226 SKIP_WHITESPACE ();
5227 c = *input_line_pointer;
5228 if (c == ',')
5230 input_line_pointer++;
5231 SKIP_WHITESPACE ();
5232 if (*input_line_pointer == '\n')
5233 c = '\n';
5236 while (c == ',');
5238 demand_empty_rest_of_line ();
5241 /* .mem.offset offset, base
5242 "base" is used to distinguish between offsets from a different base. */
5244 static void
5245 dot_mem_offset (dummy)
5246 int dummy ATTRIBUTE_UNUSED;
5248 md.mem_offset.hint = 1;
5249 md.mem_offset.offset = get_absolute_expression ();
5250 if (*input_line_pointer != ',')
5252 as_bad (_("Comma expected"));
5253 ignore_rest_of_line ();
5254 return;
5256 ++input_line_pointer;
5257 md.mem_offset.base = get_absolute_expression ();
5258 demand_empty_rest_of_line ();
5261 /* ia64-specific pseudo-ops: */
5262 const pseudo_typeS md_pseudo_table[] =
5264 { "radix", dot_radix, 0 },
5265 { "lcomm", s_lcomm_bytes, 1 },
5266 { "loc", dot_loc, 0 },
5267 { "bss", dot_special_section, SPECIAL_SECTION_BSS },
5268 { "sbss", dot_special_section, SPECIAL_SECTION_SBSS },
5269 { "sdata", dot_special_section, SPECIAL_SECTION_SDATA },
5270 { "rodata", dot_special_section, SPECIAL_SECTION_RODATA },
5271 { "comment", dot_special_section, SPECIAL_SECTION_COMMENT },
5272 { "ia_64.unwind", dot_special_section, SPECIAL_SECTION_UNWIND },
5273 { "ia_64.unwind_info", dot_special_section, SPECIAL_SECTION_UNWIND_INFO },
5274 { "init_array", dot_special_section, SPECIAL_SECTION_INIT_ARRAY },
5275 { "fini_array", dot_special_section, SPECIAL_SECTION_FINI_ARRAY },
5276 { "proc", dot_proc, 0 },
5277 { "body", dot_body, 0 },
5278 { "prologue", dot_prologue, 0 },
5279 { "endp", dot_endp, 0 },
5281 { "fframe", dot_fframe, 0 },
5282 { "vframe", dot_vframe, 0 },
5283 { "vframesp", dot_vframesp, 0 },
5284 { "vframepsp", dot_vframepsp, 0 },
5285 { "save", dot_save, 0 },
5286 { "restore", dot_restore, 0 },
5287 { "restorereg", dot_restorereg, 0 },
5288 { "restorereg.p", dot_restorereg_p, 0 },
5289 { "handlerdata", dot_handlerdata, 0 },
5290 { "unwentry", dot_unwentry, 0 },
5291 { "altrp", dot_altrp, 0 },
5292 { "savesp", dot_savemem, 0 },
5293 { "savepsp", dot_savemem, 1 },
5294 { "save.g", dot_saveg, 0 },
5295 { "save.f", dot_savef, 0 },
5296 { "save.b", dot_saveb, 0 },
5297 { "save.gf", dot_savegf, 0 },
5298 { "spill", dot_spill, 0 },
5299 { "spillreg", dot_spillreg, 0 },
5300 { "spillsp", dot_spillmem, 0 },
5301 { "spillpsp", dot_spillmem, 1 },
5302 { "spillreg.p", dot_spillreg_p, 0 },
5303 { "spillsp.p", dot_spillmem_p, 0 },
5304 { "spillpsp.p", dot_spillmem_p, 1 },
5305 { "label_state", dot_label_state, 0 },
5306 { "copy_state", dot_copy_state, 0 },
5307 { "unwabi", dot_unwabi, 0 },
5308 { "personality", dot_personality, 0 },
5309 { "mii", dot_template, 0x0 },
5310 { "mli", dot_template, 0x2 }, /* old format, for compatibility */
5311 { "mlx", dot_template, 0x2 },
5312 { "mmi", dot_template, 0x4 },
5313 { "mfi", dot_template, 0x6 },
5314 { "mmf", dot_template, 0x7 },
5315 { "mib", dot_template, 0x8 },
5316 { "mbb", dot_template, 0x9 },
5317 { "bbb", dot_template, 0xb },
5318 { "mmb", dot_template, 0xc },
5319 { "mfb", dot_template, 0xe },
5320 { "align", dot_align, 0 },
5321 { "regstk", dot_regstk, 0 },
5322 { "rotr", dot_rot, DYNREG_GR },
5323 { "rotf", dot_rot, DYNREG_FR },
5324 { "rotp", dot_rot, DYNREG_PR },
5325 { "lsb", dot_byteorder, 0 },
5326 { "msb", dot_byteorder, 1 },
5327 { "psr", dot_psr, 0 },
5328 { "alias", dot_alias, 0 },
5329 { "secalias", dot_alias, 1 },
5330 { "ln", dot_ln, 0 }, /* source line info (for debugging) */
5332 { "xdata1", dot_xdata, 1 },
5333 { "xdata2", dot_xdata, 2 },
5334 { "xdata4", dot_xdata, 4 },
5335 { "xdata8", dot_xdata, 8 },
5336 { "xdata16", dot_xdata, 16 },
5337 { "xreal4", dot_xfloat_cons, 'f' },
5338 { "xreal8", dot_xfloat_cons, 'd' },
5339 { "xreal10", dot_xfloat_cons, 'x' },
5340 { "xreal16", dot_xfloat_cons, 'X' },
5341 { "xstring", dot_xstringer, 0 },
5342 { "xstringz", dot_xstringer, 1 },
5344 /* unaligned versions: */
5345 { "xdata2.ua", dot_xdata_ua, 2 },
5346 { "xdata4.ua", dot_xdata_ua, 4 },
5347 { "xdata8.ua", dot_xdata_ua, 8 },
5348 { "xdata16.ua", dot_xdata_ua, 16 },
5349 { "xreal4.ua", dot_xfloat_cons_ua, 'f' },
5350 { "xreal8.ua", dot_xfloat_cons_ua, 'd' },
5351 { "xreal10.ua", dot_xfloat_cons_ua, 'x' },
5352 { "xreal16.ua", dot_xfloat_cons_ua, 'X' },
5354 /* annotations/DV checking support */
5355 { "entry", dot_entry, 0 },
5356 { "mem.offset", dot_mem_offset, 0 },
5357 { "pred.rel", dot_pred_rel, 0 },
5358 { "pred.rel.clear", dot_pred_rel, 'c' },
5359 { "pred.rel.imply", dot_pred_rel, 'i' },
5360 { "pred.rel.mutex", dot_pred_rel, 'm' },
5361 { "pred.safe_across_calls", dot_pred_rel, 's' },
5362 { "reg.val", dot_reg_val, 0 },
5363 { "serialize.data", dot_serialize, 0 },
5364 { "serialize.instruction", dot_serialize, 1 },
5365 { "auto", dot_dv_mode, 'a' },
5366 { "explicit", dot_dv_mode, 'e' },
5367 { "default", dot_dv_mode, 'd' },
5369 /* ??? These are needed to make gas/testsuite/gas/elf/ehopt.s work.
5370 IA-64 aligns data allocation pseudo-ops by default, so we have to
5371 tell it that these ones are supposed to be unaligned. Long term,
5372 should rewrite so that only IA-64 specific data allocation pseudo-ops
5373 are aligned by default. */
5374 {"2byte", stmt_cons_ua, 2},
5375 {"4byte", stmt_cons_ua, 4},
5376 {"8byte", stmt_cons_ua, 8},
5378 { NULL, 0, 0 }
5381 static const struct pseudo_opcode
5383 const char *name;
5384 void (*handler) (int);
5385 int arg;
5387 pseudo_opcode[] =
5389 /* these are more like pseudo-ops, but don't start with a dot */
5390 { "data1", cons, 1 },
5391 { "data2", cons, 2 },
5392 { "data4", cons, 4 },
5393 { "data8", cons, 8 },
5394 { "data16", cons, 16 },
5395 { "real4", stmt_float_cons, 'f' },
5396 { "real8", stmt_float_cons, 'd' },
5397 { "real10", stmt_float_cons, 'x' },
5398 { "real16", stmt_float_cons, 'X' },
5399 { "string", stringer, 0 },
5400 { "stringz", stringer, 1 },
5402 /* unaligned versions: */
5403 { "data2.ua", stmt_cons_ua, 2 },
5404 { "data4.ua", stmt_cons_ua, 4 },
5405 { "data8.ua", stmt_cons_ua, 8 },
5406 { "data16.ua", stmt_cons_ua, 16 },
5407 { "real4.ua", float_cons, 'f' },
5408 { "real8.ua", float_cons, 'd' },
5409 { "real10.ua", float_cons, 'x' },
5410 { "real16.ua", float_cons, 'X' },
5413 /* Declare a register by creating a symbol for it and entering it in
5414 the symbol table. */
5416 static symbolS *
5417 declare_register (name, regnum)
5418 const char *name;
5419 int regnum;
5421 const char *err;
5422 symbolS *sym;
5424 sym = symbol_new (name, reg_section, regnum, &zero_address_frag);
5426 err = hash_insert (md.reg_hash, S_GET_NAME (sym), (PTR) sym);
5427 if (err)
5428 as_fatal ("Inserting \"%s\" into register table failed: %s",
5429 name, err);
5431 return sym;
5434 static void
5435 declare_register_set (prefix, num_regs, base_regnum)
5436 const char *prefix;
5437 int num_regs;
5438 int base_regnum;
5440 char name[8];
5441 int i;
5443 for (i = 0; i < num_regs; ++i)
5445 sprintf (name, "%s%u", prefix, i);
5446 declare_register (name, base_regnum + i);
5450 static unsigned int
5451 operand_width (opnd)
5452 enum ia64_opnd opnd;
5454 const struct ia64_operand *odesc = &elf64_ia64_operands[opnd];
5455 unsigned int bits = 0;
5456 int i;
5458 bits = 0;
5459 for (i = 0; i < NELEMS (odesc->field) && odesc->field[i].bits; ++i)
5460 bits += odesc->field[i].bits;
5462 return bits;
5465 static enum operand_match_result
5466 operand_match (idesc, index, e)
5467 const struct ia64_opcode *idesc;
5468 int index;
5469 expressionS *e;
5471 enum ia64_opnd opnd = idesc->operands[index];
5472 int bits, relocatable = 0;
5473 struct insn_fix *fix;
5474 bfd_signed_vma val;
5476 switch (opnd)
5478 /* constants: */
5480 case IA64_OPND_AR_CCV:
5481 if (e->X_op == O_register && e->X_add_number == REG_AR + 32)
5482 return OPERAND_MATCH;
5483 break;
5485 case IA64_OPND_AR_CSD:
5486 if (e->X_op == O_register && e->X_add_number == REG_AR + 25)
5487 return OPERAND_MATCH;
5488 break;
5490 case IA64_OPND_AR_PFS:
5491 if (e->X_op == O_register && e->X_add_number == REG_AR + 64)
5492 return OPERAND_MATCH;
5493 break;
5495 case IA64_OPND_GR0:
5496 if (e->X_op == O_register && e->X_add_number == REG_GR + 0)
5497 return OPERAND_MATCH;
5498 break;
5500 case IA64_OPND_IP:
5501 if (e->X_op == O_register && e->X_add_number == REG_IP)
5502 return OPERAND_MATCH;
5503 break;
5505 case IA64_OPND_PR:
5506 if (e->X_op == O_register && e->X_add_number == REG_PR)
5507 return OPERAND_MATCH;
5508 break;
5510 case IA64_OPND_PR_ROT:
5511 if (e->X_op == O_register && e->X_add_number == REG_PR_ROT)
5512 return OPERAND_MATCH;
5513 break;
5515 case IA64_OPND_PSR:
5516 if (e->X_op == O_register && e->X_add_number == REG_PSR)
5517 return OPERAND_MATCH;
5518 break;
5520 case IA64_OPND_PSR_L:
5521 if (e->X_op == O_register && e->X_add_number == REG_PSR_L)
5522 return OPERAND_MATCH;
5523 break;
5525 case IA64_OPND_PSR_UM:
5526 if (e->X_op == O_register && e->X_add_number == REG_PSR_UM)
5527 return OPERAND_MATCH;
5528 break;
5530 case IA64_OPND_C1:
5531 if (e->X_op == O_constant)
5533 if (e->X_add_number == 1)
5534 return OPERAND_MATCH;
5535 else
5536 return OPERAND_OUT_OF_RANGE;
5538 break;
5540 case IA64_OPND_C8:
5541 if (e->X_op == O_constant)
5543 if (e->X_add_number == 8)
5544 return OPERAND_MATCH;
5545 else
5546 return OPERAND_OUT_OF_RANGE;
5548 break;
5550 case IA64_OPND_C16:
5551 if (e->X_op == O_constant)
5553 if (e->X_add_number == 16)
5554 return OPERAND_MATCH;
5555 else
5556 return OPERAND_OUT_OF_RANGE;
5558 break;
5560 /* register operands: */
5562 case IA64_OPND_AR3:
5563 if (e->X_op == O_register && e->X_add_number >= REG_AR
5564 && e->X_add_number < REG_AR + 128)
5565 return OPERAND_MATCH;
5566 break;
5568 case IA64_OPND_B1:
5569 case IA64_OPND_B2:
5570 if (e->X_op == O_register && e->X_add_number >= REG_BR
5571 && e->X_add_number < REG_BR + 8)
5572 return OPERAND_MATCH;
5573 break;
5575 case IA64_OPND_CR3:
5576 if (e->X_op == O_register && e->X_add_number >= REG_CR
5577 && e->X_add_number < REG_CR + 128)
5578 return OPERAND_MATCH;
5579 break;
5581 case IA64_OPND_F1:
5582 case IA64_OPND_F2:
5583 case IA64_OPND_F3:
5584 case IA64_OPND_F4:
5585 if (e->X_op == O_register && e->X_add_number >= REG_FR
5586 && e->X_add_number < REG_FR + 128)
5587 return OPERAND_MATCH;
5588 break;
5590 case IA64_OPND_P1:
5591 case IA64_OPND_P2:
5592 if (e->X_op == O_register && e->X_add_number >= REG_P
5593 && e->X_add_number < REG_P + 64)
5594 return OPERAND_MATCH;
5595 break;
5597 case IA64_OPND_R1:
5598 case IA64_OPND_R2:
5599 case IA64_OPND_R3:
5600 if (e->X_op == O_register && e->X_add_number >= REG_GR
5601 && e->X_add_number < REG_GR + 128)
5602 return OPERAND_MATCH;
5603 break;
5605 case IA64_OPND_R3_2:
5606 if (e->X_op == O_register && e->X_add_number >= REG_GR)
5608 if (e->X_add_number < REG_GR + 4)
5609 return OPERAND_MATCH;
5610 else if (e->X_add_number < REG_GR + 128)
5611 return OPERAND_OUT_OF_RANGE;
5613 break;
5615 /* indirect operands: */
5616 case IA64_OPND_CPUID_R3:
5617 case IA64_OPND_DBR_R3:
5618 case IA64_OPND_DTR_R3:
5619 case IA64_OPND_ITR_R3:
5620 case IA64_OPND_IBR_R3:
5621 case IA64_OPND_MSR_R3:
5622 case IA64_OPND_PKR_R3:
5623 case IA64_OPND_PMC_R3:
5624 case IA64_OPND_PMD_R3:
5625 case IA64_OPND_RR_R3:
5626 if (e->X_op == O_index && e->X_op_symbol
5627 && (S_GET_VALUE (e->X_op_symbol) - IND_CPUID
5628 == opnd - IA64_OPND_CPUID_R3))
5629 return OPERAND_MATCH;
5630 break;
5632 case IA64_OPND_MR3:
5633 if (e->X_op == O_index && !e->X_op_symbol)
5634 return OPERAND_MATCH;
5635 break;
5637 /* immediate operands: */
5638 case IA64_OPND_CNT2a:
5639 case IA64_OPND_LEN4:
5640 case IA64_OPND_LEN6:
5641 bits = operand_width (idesc->operands[index]);
5642 if (e->X_op == O_constant)
5644 if ((bfd_vma) (e->X_add_number - 1) < ((bfd_vma) 1 << bits))
5645 return OPERAND_MATCH;
5646 else
5647 return OPERAND_OUT_OF_RANGE;
5649 break;
5651 case IA64_OPND_CNT2b:
5652 if (e->X_op == O_constant)
5654 if ((bfd_vma) (e->X_add_number - 1) < 3)
5655 return OPERAND_MATCH;
5656 else
5657 return OPERAND_OUT_OF_RANGE;
5659 break;
5661 case IA64_OPND_CNT2c:
5662 val = e->X_add_number;
5663 if (e->X_op == O_constant)
5665 if ((val == 0 || val == 7 || val == 15 || val == 16))
5666 return OPERAND_MATCH;
5667 else
5668 return OPERAND_OUT_OF_RANGE;
5670 break;
5672 case IA64_OPND_SOR:
5673 /* SOR must be an integer multiple of 8 */
5674 if (e->X_op == O_constant && e->X_add_number & 0x7)
5675 return OPERAND_OUT_OF_RANGE;
5676 case IA64_OPND_SOF:
5677 case IA64_OPND_SOL:
5678 if (e->X_op == O_constant)
5680 if ((bfd_vma) e->X_add_number <= 96)
5681 return OPERAND_MATCH;
5682 else
5683 return OPERAND_OUT_OF_RANGE;
5685 break;
5687 case IA64_OPND_IMMU62:
5688 if (e->X_op == O_constant)
5690 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << 62))
5691 return OPERAND_MATCH;
5692 else
5693 return OPERAND_OUT_OF_RANGE;
5695 else
5697 /* FIXME -- need 62-bit relocation type */
5698 as_bad (_("62-bit relocation not yet implemented"));
5700 break;
5702 case IA64_OPND_IMMU64:
5703 if (e->X_op == O_symbol || e->X_op == O_pseudo_fixup
5704 || e->X_op == O_subtract)
5706 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5707 fix->code = BFD_RELOC_IA64_IMM64;
5708 if (e->X_op != O_subtract)
5710 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5711 if (e->X_op == O_pseudo_fixup)
5712 e->X_op = O_symbol;
5715 fix->opnd = idesc->operands[index];
5716 fix->expr = *e;
5717 fix->is_pcrel = 0;
5718 ++CURR_SLOT.num_fixups;
5719 return OPERAND_MATCH;
5721 else if (e->X_op == O_constant)
5722 return OPERAND_MATCH;
5723 break;
5725 case IA64_OPND_CCNT5:
5726 case IA64_OPND_CNT5:
5727 case IA64_OPND_CNT6:
5728 case IA64_OPND_CPOS6a:
5729 case IA64_OPND_CPOS6b:
5730 case IA64_OPND_CPOS6c:
5731 case IA64_OPND_IMMU2:
5732 case IA64_OPND_IMMU7a:
5733 case IA64_OPND_IMMU7b:
5734 case IA64_OPND_IMMU21:
5735 case IA64_OPND_IMMU24:
5736 case IA64_OPND_MBTYPE4:
5737 case IA64_OPND_MHTYPE8:
5738 case IA64_OPND_POS6:
5739 bits = operand_width (idesc->operands[index]);
5740 if (e->X_op == O_constant)
5742 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
5743 return OPERAND_MATCH;
5744 else
5745 return OPERAND_OUT_OF_RANGE;
5747 break;
5749 case IA64_OPND_IMMU9:
5750 bits = operand_width (idesc->operands[index]);
5751 if (e->X_op == O_constant)
5753 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
5755 int lobits = e->X_add_number & 0x3;
5756 if (((bfd_vma) e->X_add_number & 0x3C) != 0 && lobits == 0)
5757 e->X_add_number |= (bfd_vma) 0x3;
5758 return OPERAND_MATCH;
5760 else
5761 return OPERAND_OUT_OF_RANGE;
5763 break;
5765 case IA64_OPND_IMM44:
5766 /* least 16 bits must be zero */
5767 if ((e->X_add_number & 0xffff) != 0)
5768 /* XXX technically, this is wrong: we should not be issuing warning
5769 messages until we're sure this instruction pattern is going to
5770 be used! */
5771 as_warn (_("lower 16 bits of mask ignored"));
5773 if (e->X_op == O_constant)
5775 if (((e->X_add_number >= 0
5776 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 44))
5777 || (e->X_add_number < 0
5778 && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 44))))
5780 /* sign-extend */
5781 if (e->X_add_number >= 0
5782 && (e->X_add_number & ((bfd_vma) 1 << 43)) != 0)
5784 e->X_add_number |= ~(((bfd_vma) 1 << 44) - 1);
5786 return OPERAND_MATCH;
5788 else
5789 return OPERAND_OUT_OF_RANGE;
5791 break;
5793 case IA64_OPND_IMM17:
5794 /* bit 0 is a don't care (pr0 is hardwired to 1) */
5795 if (e->X_op == O_constant)
5797 if (((e->X_add_number >= 0
5798 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 17))
5799 || (e->X_add_number < 0
5800 && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 17))))
5802 /* sign-extend */
5803 if (e->X_add_number >= 0
5804 && (e->X_add_number & ((bfd_vma) 1 << 16)) != 0)
5806 e->X_add_number |= ~(((bfd_vma) 1 << 17) - 1);
5808 return OPERAND_MATCH;
5810 else
5811 return OPERAND_OUT_OF_RANGE;
5813 break;
5815 case IA64_OPND_IMM14:
5816 case IA64_OPND_IMM22:
5817 relocatable = 1;
5818 case IA64_OPND_IMM1:
5819 case IA64_OPND_IMM8:
5820 case IA64_OPND_IMM8U4:
5821 case IA64_OPND_IMM8M1:
5822 case IA64_OPND_IMM8M1U4:
5823 case IA64_OPND_IMM8M1U8:
5824 case IA64_OPND_IMM9a:
5825 case IA64_OPND_IMM9b:
5826 bits = operand_width (idesc->operands[index]);
5827 if (relocatable && (e->X_op == O_symbol
5828 || e->X_op == O_subtract
5829 || e->X_op == O_pseudo_fixup))
5831 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5833 if (idesc->operands[index] == IA64_OPND_IMM14)
5834 fix->code = BFD_RELOC_IA64_IMM14;
5835 else
5836 fix->code = BFD_RELOC_IA64_IMM22;
5838 if (e->X_op != O_subtract)
5840 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5841 if (e->X_op == O_pseudo_fixup)
5842 e->X_op = O_symbol;
5845 fix->opnd = idesc->operands[index];
5846 fix->expr = *e;
5847 fix->is_pcrel = 0;
5848 ++CURR_SLOT.num_fixups;
5849 return OPERAND_MATCH;
5851 else if (e->X_op != O_constant
5852 && ! (e->X_op == O_big && opnd == IA64_OPND_IMM8M1U8))
5853 return OPERAND_MISMATCH;
5855 if (opnd == IA64_OPND_IMM8M1U4)
5857 /* Zero is not valid for unsigned compares that take an adjusted
5858 constant immediate range. */
5859 if (e->X_add_number == 0)
5860 return OPERAND_OUT_OF_RANGE;
5862 /* Sign-extend 32-bit unsigned numbers, so that the following range
5863 checks will work. */
5864 val = e->X_add_number;
5865 if (((val & (~(bfd_vma) 0 << 32)) == 0)
5866 && ((val & ((bfd_vma) 1 << 31)) != 0))
5867 val = ((val << 32) >> 32);
5869 /* Check for 0x100000000. This is valid because
5870 0x100000000-1 is the same as ((uint32_t) -1). */
5871 if (val == ((bfd_signed_vma) 1 << 32))
5872 return OPERAND_MATCH;
5874 val = val - 1;
5876 else if (opnd == IA64_OPND_IMM8M1U8)
5878 /* Zero is not valid for unsigned compares that take an adjusted
5879 constant immediate range. */
5880 if (e->X_add_number == 0)
5881 return OPERAND_OUT_OF_RANGE;
5883 /* Check for 0x10000000000000000. */
5884 if (e->X_op == O_big)
5886 if (generic_bignum[0] == 0
5887 && generic_bignum[1] == 0
5888 && generic_bignum[2] == 0
5889 && generic_bignum[3] == 0
5890 && generic_bignum[4] == 1)
5891 return OPERAND_MATCH;
5892 else
5893 return OPERAND_OUT_OF_RANGE;
5895 else
5896 val = e->X_add_number - 1;
5898 else if (opnd == IA64_OPND_IMM8M1)
5899 val = e->X_add_number - 1;
5900 else if (opnd == IA64_OPND_IMM8U4)
5902 /* Sign-extend 32-bit unsigned numbers, so that the following range
5903 checks will work. */
5904 val = e->X_add_number;
5905 if (((val & (~(bfd_vma) 0 << 32)) == 0)
5906 && ((val & ((bfd_vma) 1 << 31)) != 0))
5907 val = ((val << 32) >> 32);
5909 else
5910 val = e->X_add_number;
5912 if ((val >= 0 && (bfd_vma) val < ((bfd_vma) 1 << (bits - 1)))
5913 || (val < 0 && (bfd_vma) -val <= ((bfd_vma) 1 << (bits - 1))))
5914 return OPERAND_MATCH;
5915 else
5916 return OPERAND_OUT_OF_RANGE;
5918 case IA64_OPND_INC3:
5919 /* +/- 1, 4, 8, 16 */
5920 val = e->X_add_number;
5921 if (val < 0)
5922 val = -val;
5923 if (e->X_op == O_constant)
5925 if ((val == 1 || val == 4 || val == 8 || val == 16))
5926 return OPERAND_MATCH;
5927 else
5928 return OPERAND_OUT_OF_RANGE;
5930 break;
5932 case IA64_OPND_TGT25:
5933 case IA64_OPND_TGT25b:
5934 case IA64_OPND_TGT25c:
5935 case IA64_OPND_TGT64:
5936 if (e->X_op == O_symbol)
5938 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5939 if (opnd == IA64_OPND_TGT25)
5940 fix->code = BFD_RELOC_IA64_PCREL21F;
5941 else if (opnd == IA64_OPND_TGT25b)
5942 fix->code = BFD_RELOC_IA64_PCREL21M;
5943 else if (opnd == IA64_OPND_TGT25c)
5944 fix->code = BFD_RELOC_IA64_PCREL21B;
5945 else if (opnd == IA64_OPND_TGT64)
5946 fix->code = BFD_RELOC_IA64_PCREL60B;
5947 else
5948 abort ();
5950 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5951 fix->opnd = idesc->operands[index];
5952 fix->expr = *e;
5953 fix->is_pcrel = 1;
5954 ++CURR_SLOT.num_fixups;
5955 return OPERAND_MATCH;
5957 case IA64_OPND_TAG13:
5958 case IA64_OPND_TAG13b:
5959 switch (e->X_op)
5961 case O_constant:
5962 return OPERAND_MATCH;
5964 case O_symbol:
5965 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5966 /* There are no external relocs for TAG13/TAG13b fields, so we
5967 create a dummy reloc. This will not live past md_apply_fix3. */
5968 fix->code = BFD_RELOC_UNUSED;
5969 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5970 fix->opnd = idesc->operands[index];
5971 fix->expr = *e;
5972 fix->is_pcrel = 1;
5973 ++CURR_SLOT.num_fixups;
5974 return OPERAND_MATCH;
5976 default:
5977 break;
5979 break;
5981 case IA64_OPND_LDXMOV:
5982 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5983 fix->code = BFD_RELOC_IA64_LDXMOV;
5984 fix->opnd = idesc->operands[index];
5985 fix->expr = *e;
5986 fix->is_pcrel = 0;
5987 ++CURR_SLOT.num_fixups;
5988 return OPERAND_MATCH;
5990 default:
5991 break;
5993 return OPERAND_MISMATCH;
5996 static int
5997 parse_operand (e)
5998 expressionS *e;
6000 int sep = '\0';
6002 memset (e, 0, sizeof (*e));
6003 e->X_op = O_absent;
6004 SKIP_WHITESPACE ();
6005 if (*input_line_pointer != '}')
6006 expression (e);
6007 sep = *input_line_pointer++;
6009 if (sep == '}')
6011 if (!md.manual_bundling)
6012 as_warn ("Found '}' when manual bundling is off");
6013 else
6014 CURR_SLOT.manual_bundling_off = 1;
6015 md.manual_bundling = 0;
6016 sep = '\0';
6018 return sep;
6021 /* Returns the next entry in the opcode table that matches the one in
6022 IDESC, and frees the entry in IDESC. If no matching entry is
6023 found, NULL is returned instead. */
6025 static struct ia64_opcode *
6026 get_next_opcode (struct ia64_opcode *idesc)
6028 struct ia64_opcode *next = ia64_find_next_opcode (idesc);
6029 ia64_free_opcode (idesc);
6030 return next;
6033 /* Parse the operands for the opcode and find the opcode variant that
6034 matches the specified operands, or NULL if no match is possible. */
6036 static struct ia64_opcode *
6037 parse_operands (idesc)
6038 struct ia64_opcode *idesc;
6040 int i = 0, highest_unmatched_operand, num_operands = 0, num_outputs = 0;
6041 int error_pos, out_of_range_pos, curr_out_of_range_pos, sep = 0;
6042 int reg1, reg2;
6043 char reg_class;
6044 enum ia64_opnd expected_operand = IA64_OPND_NIL;
6045 enum operand_match_result result;
6046 char mnemonic[129];
6047 char *first_arg = 0, *end, *saved_input_pointer;
6048 unsigned int sof;
6050 assert (strlen (idesc->name) <= 128);
6052 strcpy (mnemonic, idesc->name);
6053 if (idesc->operands[2] == IA64_OPND_SOF
6054 || idesc->operands[1] == IA64_OPND_SOF)
6056 /* To make the common idiom "alloc loc?=ar.pfs,0,1,0,0" work, we
6057 can't parse the first operand until we have parsed the
6058 remaining operands of the "alloc" instruction. */
6059 SKIP_WHITESPACE ();
6060 first_arg = input_line_pointer;
6061 end = strchr (input_line_pointer, '=');
6062 if (!end)
6064 as_bad ("Expected separator `='");
6065 return 0;
6067 input_line_pointer = end + 1;
6068 ++i;
6069 ++num_outputs;
6072 for (; ; ++i)
6074 if (i < NELEMS (CURR_SLOT.opnd))
6076 sep = parse_operand (CURR_SLOT.opnd + i);
6077 if (CURR_SLOT.opnd[i].X_op == O_absent)
6078 break;
6080 else
6082 expressionS dummy;
6084 sep = parse_operand (&dummy);
6085 if (dummy.X_op == O_absent)
6086 break;
6089 ++num_operands;
6091 if (sep != '=' && sep != ',')
6092 break;
6094 if (sep == '=')
6096 if (num_outputs > 0)
6097 as_bad ("Duplicate equal sign (=) in instruction");
6098 else
6099 num_outputs = i + 1;
6102 if (sep != '\0')
6104 as_bad ("Illegal operand separator `%c'", sep);
6105 return 0;
6108 if (idesc->operands[2] == IA64_OPND_SOF
6109 || idesc->operands[1] == IA64_OPND_SOF)
6111 /* map alloc r1=ar.pfs,i,l,o,r to alloc r1=ar.pfs,(i+l+o),(i+l),r */
6112 know (strcmp (idesc->name, "alloc") == 0);
6113 i = (CURR_SLOT.opnd[1].X_op == O_register
6114 && CURR_SLOT.opnd[1].X_add_number == REG_AR + AR_PFS) ? 2 : 1;
6115 if (num_operands == i + 3 /* first_arg not included in this count! */
6116 && CURR_SLOT.opnd[i].X_op == O_constant
6117 && CURR_SLOT.opnd[i + 1].X_op == O_constant
6118 && CURR_SLOT.opnd[i + 2].X_op == O_constant
6119 && CURR_SLOT.opnd[i + 3].X_op == O_constant)
6121 sof = set_regstack (CURR_SLOT.opnd[i].X_add_number,
6122 CURR_SLOT.opnd[i + 1].X_add_number,
6123 CURR_SLOT.opnd[i + 2].X_add_number,
6124 CURR_SLOT.opnd[i + 3].X_add_number);
6126 /* now we can parse the first arg: */
6127 saved_input_pointer = input_line_pointer;
6128 input_line_pointer = first_arg;
6129 sep = parse_operand (CURR_SLOT.opnd + 0);
6130 if (sep != '=')
6131 --num_outputs; /* force error */
6132 input_line_pointer = saved_input_pointer;
6134 CURR_SLOT.opnd[i].X_add_number = sof;
6135 CURR_SLOT.opnd[i + 1].X_add_number
6136 = sof - CURR_SLOT.opnd[i + 2].X_add_number;
6137 CURR_SLOT.opnd[i + 2] = CURR_SLOT.opnd[i + 3];
6141 highest_unmatched_operand = -4;
6142 curr_out_of_range_pos = -1;
6143 error_pos = 0;
6144 for (; idesc; idesc = get_next_opcode (idesc))
6146 if (num_outputs != idesc->num_outputs)
6147 continue; /* mismatch in # of outputs */
6148 if (highest_unmatched_operand < 0)
6149 highest_unmatched_operand |= 1;
6150 if (num_operands > NELEMS (idesc->operands)
6151 || (num_operands < NELEMS (idesc->operands)
6152 && idesc->operands[num_operands])
6153 || (num_operands > 0 && !idesc->operands[num_operands - 1]))
6154 continue; /* mismatch in number of arguments */
6155 if (highest_unmatched_operand < 0)
6156 highest_unmatched_operand |= 2;
6158 CURR_SLOT.num_fixups = 0;
6160 /* Try to match all operands. If we see an out-of-range operand,
6161 then continue trying to match the rest of the operands, since if
6162 the rest match, then this idesc will give the best error message. */
6164 out_of_range_pos = -1;
6165 for (i = 0; i < num_operands && idesc->operands[i]; ++i)
6167 result = operand_match (idesc, i, CURR_SLOT.opnd + i);
6168 if (result != OPERAND_MATCH)
6170 if (result != OPERAND_OUT_OF_RANGE)
6171 break;
6172 if (out_of_range_pos < 0)
6173 /* remember position of the first out-of-range operand: */
6174 out_of_range_pos = i;
6178 /* If we did not match all operands, or if at least one operand was
6179 out-of-range, then this idesc does not match. Keep track of which
6180 idesc matched the most operands before failing. If we have two
6181 idescs that failed at the same position, and one had an out-of-range
6182 operand, then prefer the out-of-range operand. Thus if we have
6183 "add r0=0x1000000,r1" we get an error saying the constant is out
6184 of range instead of an error saying that the constant should have been
6185 a register. */
6187 if (i != num_operands || out_of_range_pos >= 0)
6189 if (i > highest_unmatched_operand
6190 || (i == highest_unmatched_operand
6191 && out_of_range_pos > curr_out_of_range_pos))
6193 highest_unmatched_operand = i;
6194 if (out_of_range_pos >= 0)
6196 expected_operand = idesc->operands[out_of_range_pos];
6197 error_pos = out_of_range_pos;
6199 else
6201 expected_operand = idesc->operands[i];
6202 error_pos = i;
6204 curr_out_of_range_pos = out_of_range_pos;
6206 continue;
6209 break;
6211 if (!idesc)
6213 if (expected_operand)
6214 as_bad ("Operand %u of `%s' should be %s",
6215 error_pos + 1, mnemonic,
6216 elf64_ia64_operands[expected_operand].desc);
6217 else if (highest_unmatched_operand < 0 && !(highest_unmatched_operand & 1))
6218 as_bad ("Wrong number of output operands");
6219 else if (highest_unmatched_operand < 0 && !(highest_unmatched_operand & 2))
6220 as_bad ("Wrong number of input operands");
6221 else
6222 as_bad ("Operand mismatch");
6223 return 0;
6226 /* Check that the instruction doesn't use
6227 - r0, f0, or f1 as output operands
6228 - the same predicate twice as output operands
6229 - r0 as address of a base update load or store
6230 - the same GR as output and address of a base update load
6231 - two even- or two odd-numbered FRs as output operands of a floating
6232 point parallel load.
6233 At most two (conflicting) output (or output-like) operands can exist,
6234 (floating point parallel loads have three outputs, but the base register,
6235 if updated, cannot conflict with the actual outputs). */
6236 reg2 = reg1 = -1;
6237 for (i = 0; i < num_operands; ++i)
6239 int regno = 0;
6241 reg_class = 0;
6242 switch (idesc->operands[i])
6244 case IA64_OPND_R1:
6245 case IA64_OPND_R2:
6246 case IA64_OPND_R3:
6247 if (i < num_outputs)
6249 if (CURR_SLOT.opnd[i].X_add_number == REG_GR)
6250 reg_class = 'r';
6251 else if (reg1 < 0)
6252 reg1 = CURR_SLOT.opnd[i].X_add_number;
6253 else if (reg2 < 0)
6254 reg2 = CURR_SLOT.opnd[i].X_add_number;
6256 break;
6257 case IA64_OPND_P1:
6258 case IA64_OPND_P2:
6259 if (i < num_outputs)
6261 if (reg1 < 0)
6262 reg1 = CURR_SLOT.opnd[i].X_add_number;
6263 else if (reg2 < 0)
6264 reg2 = CURR_SLOT.opnd[i].X_add_number;
6266 break;
6267 case IA64_OPND_F1:
6268 case IA64_OPND_F2:
6269 case IA64_OPND_F3:
6270 case IA64_OPND_F4:
6271 if (i < num_outputs)
6273 if (CURR_SLOT.opnd[i].X_add_number >= REG_FR
6274 && CURR_SLOT.opnd[i].X_add_number <= REG_FR + 1)
6276 reg_class = 'f';
6277 regno = CURR_SLOT.opnd[i].X_add_number - REG_FR;
6279 else if (reg1 < 0)
6280 reg1 = CURR_SLOT.opnd[i].X_add_number;
6281 else if (reg2 < 0)
6282 reg2 = CURR_SLOT.opnd[i].X_add_number;
6284 break;
6285 case IA64_OPND_MR3:
6286 if (idesc->flags & IA64_OPCODE_POSTINC)
6288 if (CURR_SLOT.opnd[i].X_add_number == REG_GR)
6289 reg_class = 'm';
6290 else if (reg1 < 0)
6291 reg1 = CURR_SLOT.opnd[i].X_add_number;
6292 else if (reg2 < 0)
6293 reg2 = CURR_SLOT.opnd[i].X_add_number;
6295 break;
6296 default:
6297 break;
6299 switch (reg_class)
6301 case 0:
6302 break;
6303 default:
6304 as_warn ("Invalid use of `%c%d' as output operand", reg_class, regno);
6305 break;
6306 case 'm':
6307 as_warn ("Invalid use of `r%d' as base update address operand", regno);
6308 break;
6311 if (reg1 == reg2)
6313 if (reg1 >= REG_GR && reg1 <= REG_GR + 127)
6315 reg1 -= REG_GR;
6316 reg_class = 'r';
6318 else if (reg1 >= REG_P && reg1 <= REG_P + 63)
6320 reg1 -= REG_P;
6321 reg_class = 'p';
6323 else if (reg1 >= REG_FR && reg1 <= REG_FR + 127)
6325 reg1 -= REG_FR;
6326 reg_class = 'f';
6328 else
6329 reg_class = 0;
6330 if (reg_class)
6331 as_warn ("Invalid duplicate use of `%c%d'", reg_class, reg1);
6333 else if (((reg1 >= REG_FR && reg1 <= REG_FR + 31
6334 && reg2 >= REG_FR && reg2 <= REG_FR + 31)
6335 || (reg1 >= REG_FR + 32 && reg1 <= REG_FR + 127
6336 && reg2 >= REG_FR + 32 && reg2 <= REG_FR + 127))
6337 && ! ((reg1 ^ reg2) & 1))
6338 as_warn ("Invalid simultaneous use of `f%d' and `f%d'",
6339 reg1 - REG_FR, reg2 - REG_FR);
6340 else if ((reg1 >= REG_FR && reg1 <= REG_FR + 31
6341 && reg2 >= REG_FR + 32 && reg2 <= REG_FR + 127)
6342 || (reg1 >= REG_FR + 32 && reg1 <= REG_FR + 127
6343 && reg2 >= REG_FR && reg2 <= REG_FR + 31))
6344 as_warn ("Dangerous simultaneous use of `f%d' and `f%d'",
6345 reg1 - REG_FR, reg2 - REG_FR);
6346 return idesc;
6349 static void
6350 build_insn (slot, insnp)
6351 struct slot *slot;
6352 bfd_vma *insnp;
6354 const struct ia64_operand *odesc, *o2desc;
6355 struct ia64_opcode *idesc = slot->idesc;
6356 bfd_vma insn;
6357 bfd_signed_vma val;
6358 const char *err;
6359 int i;
6361 insn = idesc->opcode | slot->qp_regno;
6363 for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; ++i)
6365 if (slot->opnd[i].X_op == O_register
6366 || slot->opnd[i].X_op == O_constant
6367 || slot->opnd[i].X_op == O_index)
6368 val = slot->opnd[i].X_add_number;
6369 else if (slot->opnd[i].X_op == O_big)
6371 /* This must be the value 0x10000000000000000. */
6372 assert (idesc->operands[i] == IA64_OPND_IMM8M1U8);
6373 val = 0;
6375 else
6376 val = 0;
6378 switch (idesc->operands[i])
6380 case IA64_OPND_IMMU64:
6381 *insnp++ = (val >> 22) & 0x1ffffffffffLL;
6382 insn |= (((val & 0x7f) << 13) | (((val >> 7) & 0x1ff) << 27)
6383 | (((val >> 16) & 0x1f) << 22) | (((val >> 21) & 0x1) << 21)
6384 | (((val >> 63) & 0x1) << 36));
6385 continue;
6387 case IA64_OPND_IMMU62:
6388 val &= 0x3fffffffffffffffULL;
6389 if (val != slot->opnd[i].X_add_number)
6390 as_warn (_("Value truncated to 62 bits"));
6391 *insnp++ = (val >> 21) & 0x1ffffffffffLL;
6392 insn |= (((val & 0xfffff) << 6) | (((val >> 20) & 0x1) << 36));
6393 continue;
6395 case IA64_OPND_TGT64:
6396 val >>= 4;
6397 *insnp++ = ((val >> 20) & 0x7fffffffffLL) << 2;
6398 insn |= ((((val >> 59) & 0x1) << 36)
6399 | (((val >> 0) & 0xfffff) << 13));
6400 continue;
6402 case IA64_OPND_AR3:
6403 val -= REG_AR;
6404 break;
6406 case IA64_OPND_B1:
6407 case IA64_OPND_B2:
6408 val -= REG_BR;
6409 break;
6411 case IA64_OPND_CR3:
6412 val -= REG_CR;
6413 break;
6415 case IA64_OPND_F1:
6416 case IA64_OPND_F2:
6417 case IA64_OPND_F3:
6418 case IA64_OPND_F4:
6419 val -= REG_FR;
6420 break;
6422 case IA64_OPND_P1:
6423 case IA64_OPND_P2:
6424 val -= REG_P;
6425 break;
6427 case IA64_OPND_R1:
6428 case IA64_OPND_R2:
6429 case IA64_OPND_R3:
6430 case IA64_OPND_R3_2:
6431 case IA64_OPND_CPUID_R3:
6432 case IA64_OPND_DBR_R3:
6433 case IA64_OPND_DTR_R3:
6434 case IA64_OPND_ITR_R3:
6435 case IA64_OPND_IBR_R3:
6436 case IA64_OPND_MR3:
6437 case IA64_OPND_MSR_R3:
6438 case IA64_OPND_PKR_R3:
6439 case IA64_OPND_PMC_R3:
6440 case IA64_OPND_PMD_R3:
6441 case IA64_OPND_RR_R3:
6442 val -= REG_GR;
6443 break;
6445 default:
6446 break;
6449 odesc = elf64_ia64_operands + idesc->operands[i];
6450 err = (*odesc->insert) (odesc, val, &insn);
6451 if (err)
6452 as_bad_where (slot->src_file, slot->src_line,
6453 "Bad operand value: %s", err);
6454 if (idesc->flags & IA64_OPCODE_PSEUDO)
6456 if ((idesc->flags & IA64_OPCODE_F2_EQ_F3)
6457 && odesc == elf64_ia64_operands + IA64_OPND_F3)
6459 o2desc = elf64_ia64_operands + IA64_OPND_F2;
6460 (*o2desc->insert) (o2desc, val, &insn);
6462 if ((idesc->flags & IA64_OPCODE_LEN_EQ_64MCNT)
6463 && (odesc == elf64_ia64_operands + IA64_OPND_CPOS6a
6464 || odesc == elf64_ia64_operands + IA64_OPND_POS6))
6466 o2desc = elf64_ia64_operands + IA64_OPND_LEN6;
6467 (*o2desc->insert) (o2desc, 64 - val, &insn);
6471 *insnp = insn;
6474 static void
6475 emit_one_bundle ()
6477 int manual_bundling_off = 0, manual_bundling = 0;
6478 enum ia64_unit required_unit, insn_unit = 0;
6479 enum ia64_insn_type type[3], insn_type;
6480 unsigned int template, orig_template;
6481 bfd_vma insn[3] = { -1, -1, -1 };
6482 struct ia64_opcode *idesc;
6483 int end_of_insn_group = 0, user_template = -1;
6484 int n, i, j, first, curr, last_slot;
6485 unw_rec_list *ptr, *last_ptr, *end_ptr;
6486 bfd_vma t0 = 0, t1 = 0;
6487 struct label_fix *lfix;
6488 struct insn_fix *ifix;
6489 char mnemonic[16];
6490 fixS *fix;
6491 char *f;
6492 int addr_mod;
6494 first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % NUM_SLOTS;
6495 know (first >= 0 & first < NUM_SLOTS);
6496 n = MIN (3, md.num_slots_in_use);
6498 /* Determine template: user user_template if specified, best match
6499 otherwise: */
6501 if (md.slot[first].user_template >= 0)
6502 user_template = template = md.slot[first].user_template;
6503 else
6505 /* Auto select appropriate template. */
6506 memset (type, 0, sizeof (type));
6507 curr = first;
6508 for (i = 0; i < n; ++i)
6510 if (md.slot[curr].label_fixups && i != 0)
6511 break;
6512 type[i] = md.slot[curr].idesc->type;
6513 curr = (curr + 1) % NUM_SLOTS;
6515 template = best_template[type[0]][type[1]][type[2]];
6518 /* initialize instructions with appropriate nops: */
6519 for (i = 0; i < 3; ++i)
6520 insn[i] = nop[ia64_templ_desc[template].exec_unit[i]];
6522 f = frag_more (16);
6524 /* Check to see if this bundle is at an offset that is a multiple of 16-bytes
6525 from the start of the frag. */
6526 addr_mod = frag_now_fix () & 15;
6527 if (frag_now->has_code && frag_now->insn_addr != addr_mod)
6528 as_bad (_("instruction address is not a multiple of 16"));
6529 frag_now->insn_addr = addr_mod;
6530 frag_now->has_code = 1;
6532 /* now fill in slots with as many insns as possible: */
6533 curr = first;
6534 idesc = md.slot[curr].idesc;
6535 end_of_insn_group = 0;
6536 last_slot = -1;
6537 for (i = 0; i < 3 && md.num_slots_in_use > 0; ++i)
6539 /* If we have unwind records, we may need to update some now. */
6540 ptr = md.slot[curr].unwind_record;
6541 if (ptr)
6543 /* Find the last prologue/body record in the list for the current
6544 insn, and set the slot number for all records up to that point.
6545 This needs to be done now, because prologue/body records refer to
6546 the current point, not the point after the instruction has been
6547 issued. This matters because there may have been nops emitted
6548 meanwhile. Any non-prologue non-body record followed by a
6549 prologue/body record must also refer to the current point. */
6550 last_ptr = NULL;
6551 end_ptr = md.slot[(curr + 1) % NUM_SLOTS].unwind_record;
6552 for (; ptr != end_ptr; ptr = ptr->next)
6553 if (ptr->r.type == prologue || ptr->r.type == prologue_gr
6554 || ptr->r.type == body)
6555 last_ptr = ptr;
6556 if (last_ptr)
6558 /* Make last_ptr point one after the last prologue/body
6559 record. */
6560 last_ptr = last_ptr->next;
6561 for (ptr = md.slot[curr].unwind_record; ptr != last_ptr;
6562 ptr = ptr->next)
6564 ptr->slot_number = (unsigned long) f + i;
6565 ptr->slot_frag = frag_now;
6567 /* Remove the initialized records, so that we won't accidentally
6568 update them again if we insert a nop and continue. */
6569 md.slot[curr].unwind_record = last_ptr;
6573 manual_bundling_off = md.slot[curr].manual_bundling_off;
6574 if (md.slot[curr].manual_bundling_on)
6576 if (curr == first)
6577 manual_bundling = 1;
6578 else
6579 break; /* Need to start a new bundle. */
6582 /* If this instruction specifies a template, then it must be the first
6583 instruction of a bundle. */
6584 if (curr != first && md.slot[curr].user_template >= 0)
6585 break;
6587 if (idesc->flags & IA64_OPCODE_SLOT2)
6589 if (manual_bundling && !manual_bundling_off)
6591 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6592 "`%s' must be last in bundle", idesc->name);
6593 if (i < 2)
6594 manual_bundling = -1; /* Suppress meaningless post-loop errors. */
6596 i = 2;
6598 if (idesc->flags & IA64_OPCODE_LAST)
6600 int required_slot;
6601 unsigned int required_template;
6603 /* If we need a stop bit after an M slot, our only choice is
6604 template 5 (M;;MI). If we need a stop bit after a B
6605 slot, our only choice is to place it at the end of the
6606 bundle, because the only available templates are MIB,
6607 MBB, BBB, MMB, and MFB. We don't handle anything other
6608 than M and B slots because these are the only kind of
6609 instructions that can have the IA64_OPCODE_LAST bit set. */
6610 required_template = template;
6611 switch (idesc->type)
6613 case IA64_TYPE_M:
6614 required_slot = 0;
6615 required_template = 5;
6616 break;
6618 case IA64_TYPE_B:
6619 required_slot = 2;
6620 break;
6622 default:
6623 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6624 "Internal error: don't know how to force %s to end"
6625 "of instruction group", idesc->name);
6626 required_slot = i;
6627 break;
6629 if (manual_bundling
6630 && (i > required_slot
6631 || (required_slot == 2 && !manual_bundling_off)
6632 || (user_template >= 0
6633 /* Changing from MMI to M;MI is OK. */
6634 && (template ^ required_template) > 1)))
6636 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6637 "`%s' must be last in instruction group",
6638 idesc->name);
6639 if (i < 2 && required_slot == 2 && !manual_bundling_off)
6640 manual_bundling = -1; /* Suppress meaningless post-loop errors. */
6642 if (required_slot < i)
6643 /* Can't fit this instruction. */
6644 break;
6646 i = required_slot;
6647 if (required_template != template)
6649 /* If we switch the template, we need to reset the NOPs
6650 after slot i. The slot-types of the instructions ahead
6651 of i never change, so we don't need to worry about
6652 changing NOPs in front of this slot. */
6653 for (j = i; j < 3; ++j)
6654 insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]];
6656 template = required_template;
6658 if (curr != first && md.slot[curr].label_fixups)
6660 if (manual_bundling)
6662 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6663 "Label must be first in a bundle");
6664 manual_bundling = -1; /* Suppress meaningless post-loop errors. */
6666 /* This insn must go into the first slot of a bundle. */
6667 break;
6670 if (end_of_insn_group && md.num_slots_in_use >= 1)
6672 /* We need an instruction group boundary in the middle of a
6673 bundle. See if we can switch to an other template with
6674 an appropriate boundary. */
6676 orig_template = template;
6677 if (i == 1 && (user_template == 4
6678 || (user_template < 0
6679 && (ia64_templ_desc[template].exec_unit[0]
6680 == IA64_UNIT_M))))
6682 template = 5;
6683 end_of_insn_group = 0;
6685 else if (i == 2 && (user_template == 0
6686 || (user_template < 0
6687 && (ia64_templ_desc[template].exec_unit[1]
6688 == IA64_UNIT_I)))
6689 /* This test makes sure we don't switch the template if
6690 the next instruction is one that needs to be first in
6691 an instruction group. Since all those instructions are
6692 in the M group, there is no way such an instruction can
6693 fit in this bundle even if we switch the template. The
6694 reason we have to check for this is that otherwise we
6695 may end up generating "MI;;I M.." which has the deadly
6696 effect that the second M instruction is no longer the
6697 first in the group! --davidm 99/12/16 */
6698 && (idesc->flags & IA64_OPCODE_FIRST) == 0)
6700 template = 1;
6701 end_of_insn_group = 0;
6703 else if (i == 1
6704 && user_template == 0
6705 && !(idesc->flags & IA64_OPCODE_FIRST))
6706 /* Use the next slot. */
6707 continue;
6708 else if (curr != first)
6709 /* can't fit this insn */
6710 break;
6712 if (template != orig_template)
6713 /* if we switch the template, we need to reset the NOPs
6714 after slot i. The slot-types of the instructions ahead
6715 of i never change, so we don't need to worry about
6716 changing NOPs in front of this slot. */
6717 for (j = i; j < 3; ++j)
6718 insn[j] = nop[ia64_templ_desc[template].exec_unit[j]];
6720 required_unit = ia64_templ_desc[template].exec_unit[i];
6722 /* resolve dynamic opcodes such as "break", "hint", and "nop": */
6723 if (idesc->type == IA64_TYPE_DYN)
6725 enum ia64_opnd opnd1, opnd2;
6727 if ((strcmp (idesc->name, "nop") == 0)
6728 || (strcmp (idesc->name, "break") == 0))
6729 insn_unit = required_unit;
6730 else if (strcmp (idesc->name, "hint") == 0)
6732 insn_unit = required_unit;
6733 if (required_unit == IA64_UNIT_B)
6735 switch (md.hint_b)
6737 case hint_b_ok:
6738 break;
6739 case hint_b_warning:
6740 as_warn ("hint in B unit may be treated as nop");
6741 break;
6742 case hint_b_error:
6743 /* When manual bundling is off and there is no
6744 user template, we choose a different unit so
6745 that hint won't go into the current slot. We
6746 will fill the current bundle with nops and
6747 try to put hint into the next bundle. */
6748 if (!manual_bundling && user_template < 0)
6749 insn_unit = IA64_UNIT_I;
6750 else
6751 as_bad ("hint in B unit can't be used");
6752 break;
6756 else if (strcmp (idesc->name, "chk.s") == 0
6757 || strcmp (idesc->name, "mov") == 0)
6759 insn_unit = IA64_UNIT_M;
6760 if (required_unit == IA64_UNIT_I
6761 || (required_unit == IA64_UNIT_F && template == 6))
6762 insn_unit = IA64_UNIT_I;
6764 else
6765 as_fatal ("emit_one_bundle: unexpected dynamic op");
6767 sprintf (mnemonic, "%s.%c", idesc->name, "?imbfxx"[insn_unit]);
6768 opnd1 = idesc->operands[0];
6769 opnd2 = idesc->operands[1];
6770 ia64_free_opcode (idesc);
6771 idesc = ia64_find_opcode (mnemonic);
6772 /* moves to/from ARs have collisions */
6773 if (opnd1 == IA64_OPND_AR3 || opnd2 == IA64_OPND_AR3)
6775 while (idesc != NULL
6776 && (idesc->operands[0] != opnd1
6777 || idesc->operands[1] != opnd2))
6778 idesc = get_next_opcode (idesc);
6780 md.slot[curr].idesc = idesc;
6782 else
6784 insn_type = idesc->type;
6785 insn_unit = IA64_UNIT_NIL;
6786 switch (insn_type)
6788 case IA64_TYPE_A:
6789 if (required_unit == IA64_UNIT_I || required_unit == IA64_UNIT_M)
6790 insn_unit = required_unit;
6791 break;
6792 case IA64_TYPE_X: insn_unit = IA64_UNIT_L; break;
6793 case IA64_TYPE_I: insn_unit = IA64_UNIT_I; break;
6794 case IA64_TYPE_M: insn_unit = IA64_UNIT_M; break;
6795 case IA64_TYPE_B: insn_unit = IA64_UNIT_B; break;
6796 case IA64_TYPE_F: insn_unit = IA64_UNIT_F; break;
6797 default: break;
6801 if (insn_unit != required_unit)
6802 continue; /* Try next slot. */
6804 if (debug_type == DEBUG_DWARF2 || md.slot[curr].loc_directive_seen)
6806 bfd_vma addr = frag_now->fr_address + frag_now_fix () - 16 + i;
6808 md.slot[curr].loc_directive_seen = 0;
6809 dwarf2_gen_line_info (addr, &md.slot[curr].debug_line);
6812 build_insn (md.slot + curr, insn + i);
6814 ptr = md.slot[curr].unwind_record;
6815 if (ptr)
6817 /* Set slot numbers for all remaining unwind records belonging to the
6818 current insn. There can not be any prologue/body unwind records
6819 here. */
6820 end_ptr = md.slot[(curr + 1) % NUM_SLOTS].unwind_record;
6821 for (; ptr != end_ptr; ptr = ptr->next)
6823 ptr->slot_number = (unsigned long) f + i;
6824 ptr->slot_frag = frag_now;
6826 md.slot[curr].unwind_record = NULL;
6829 if (required_unit == IA64_UNIT_L)
6831 know (i == 1);
6832 /* skip one slot for long/X-unit instructions */
6833 ++i;
6835 --md.num_slots_in_use;
6836 last_slot = i;
6838 /* now is a good time to fix up the labels for this insn: */
6839 for (lfix = md.slot[curr].label_fixups; lfix; lfix = lfix->next)
6841 S_SET_VALUE (lfix->sym, frag_now_fix () - 16);
6842 symbol_set_frag (lfix->sym, frag_now);
6844 /* and fix up the tags also. */
6845 for (lfix = md.slot[curr].tag_fixups; lfix; lfix = lfix->next)
6847 S_SET_VALUE (lfix->sym, frag_now_fix () - 16 + i);
6848 symbol_set_frag (lfix->sym, frag_now);
6851 for (j = 0; j < md.slot[curr].num_fixups; ++j)
6853 ifix = md.slot[curr].fixup + j;
6854 fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 8,
6855 &ifix->expr, ifix->is_pcrel, ifix->code);
6856 fix->tc_fix_data.opnd = ifix->opnd;
6857 fix->fx_plt = (fix->fx_r_type == BFD_RELOC_IA64_PLTOFF22);
6858 fix->fx_file = md.slot[curr].src_file;
6859 fix->fx_line = md.slot[curr].src_line;
6862 end_of_insn_group = md.slot[curr].end_of_insn_group;
6864 /* clear slot: */
6865 ia64_free_opcode (md.slot[curr].idesc);
6866 memset (md.slot + curr, 0, sizeof (md.slot[curr]));
6867 md.slot[curr].user_template = -1;
6869 if (manual_bundling_off)
6871 manual_bundling = 0;
6872 break;
6874 curr = (curr + 1) % NUM_SLOTS;
6875 idesc = md.slot[curr].idesc;
6877 if (manual_bundling > 0)
6879 if (md.num_slots_in_use > 0)
6881 if (last_slot >= 2)
6882 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6883 "`%s' does not fit into bundle", idesc->name);
6884 else if (last_slot < 0)
6886 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6887 "`%s' does not fit into %s template",
6888 idesc->name, ia64_templ_desc[template].name);
6889 /* Drop first insn so we don't livelock. */
6890 --md.num_slots_in_use;
6891 know (curr == first);
6892 ia64_free_opcode (md.slot[curr].idesc);
6893 memset (md.slot + curr, 0, sizeof (md.slot[curr]));
6894 md.slot[curr].user_template = -1;
6896 else
6898 const char *where;
6900 if (template == 2)
6901 where = "X slot";
6902 else if (last_slot == 0)
6903 where = "slots 2 or 3";
6904 else
6905 where = "slot 3";
6906 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6907 "`%s' can't go in %s of %s template",
6908 idesc->name, where, ia64_templ_desc[template].name);
6911 else
6912 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6913 "Missing '}' at end of file");
6915 know (md.num_slots_in_use < NUM_SLOTS);
6917 t0 = end_of_insn_group | (template << 1) | (insn[0] << 5) | (insn[1] << 46);
6918 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
6920 number_to_chars_littleendian (f + 0, t0, 8);
6921 number_to_chars_littleendian (f + 8, t1, 8);
6923 if (unwind.list)
6925 unwind.list->next_slot_number = (unsigned long) f + 16;
6926 unwind.list->next_slot_frag = frag_now;
6931 md_parse_option (c, arg)
6932 int c;
6933 char *arg;
6936 switch (c)
6938 /* Switches from the Intel assembler. */
6939 case 'm':
6940 if (strcmp (arg, "ilp64") == 0
6941 || strcmp (arg, "lp64") == 0
6942 || strcmp (arg, "p64") == 0)
6944 md.flags |= EF_IA_64_ABI64;
6946 else if (strcmp (arg, "ilp32") == 0)
6948 md.flags &= ~EF_IA_64_ABI64;
6950 else if (strcmp (arg, "le") == 0)
6952 md.flags &= ~EF_IA_64_BE;
6953 default_big_endian = 0;
6955 else if (strcmp (arg, "be") == 0)
6957 md.flags |= EF_IA_64_BE;
6958 default_big_endian = 1;
6960 else if (strncmp (arg, "unwind-check=", 13) == 0)
6962 arg += 13;
6963 if (strcmp (arg, "warning") == 0)
6964 md.unwind_check = unwind_check_warning;
6965 else if (strcmp (arg, "error") == 0)
6966 md.unwind_check = unwind_check_error;
6967 else
6968 return 0;
6970 else if (strncmp (arg, "hint.b=", 7) == 0)
6972 arg += 7;
6973 if (strcmp (arg, "ok") == 0)
6974 md.hint_b = hint_b_ok;
6975 else if (strcmp (arg, "warning") == 0)
6976 md.hint_b = hint_b_warning;
6977 else if (strcmp (arg, "error") == 0)
6978 md.hint_b = hint_b_error;
6979 else
6980 return 0;
6982 else if (strncmp (arg, "tune=", 5) == 0)
6984 arg += 5;
6985 if (strcmp (arg, "itanium1") == 0)
6986 md.tune = itanium1;
6987 else if (strcmp (arg, "itanium2") == 0)
6988 md.tune = itanium2;
6989 else
6990 return 0;
6992 else
6993 return 0;
6994 break;
6996 case 'N':
6997 if (strcmp (arg, "so") == 0)
6999 /* Suppress signon message. */
7001 else if (strcmp (arg, "pi") == 0)
7003 /* Reject privileged instructions. FIXME */
7005 else if (strcmp (arg, "us") == 0)
7007 /* Allow union of signed and unsigned range. FIXME */
7009 else if (strcmp (arg, "close_fcalls") == 0)
7011 /* Do not resolve global function calls. */
7013 else
7014 return 0;
7015 break;
7017 case 'C':
7018 /* temp[="prefix"] Insert temporary labels into the object file
7019 symbol table prefixed by "prefix".
7020 Default prefix is ":temp:".
7022 break;
7024 case 'a':
7025 /* indirect=<tgt> Assume unannotated indirect branches behavior
7026 according to <tgt> --
7027 exit: branch out from the current context (default)
7028 labels: all labels in context may be branch targets
7030 if (strncmp (arg, "indirect=", 9) != 0)
7031 return 0;
7032 break;
7034 case 'x':
7035 /* -X conflicts with an ignored option, use -x instead */
7036 md.detect_dv = 1;
7037 if (!arg || strcmp (arg, "explicit") == 0)
7039 /* set default mode to explicit */
7040 md.default_explicit_mode = 1;
7041 break;
7043 else if (strcmp (arg, "auto") == 0)
7045 md.default_explicit_mode = 0;
7047 else if (strcmp (arg, "none") == 0)
7049 md.detect_dv = 0;
7051 else if (strcmp (arg, "debug") == 0)
7053 md.debug_dv = 1;
7055 else if (strcmp (arg, "debugx") == 0)
7057 md.default_explicit_mode = 1;
7058 md.debug_dv = 1;
7060 else if (strcmp (arg, "debugn") == 0)
7062 md.debug_dv = 1;
7063 md.detect_dv = 0;
7065 else
7067 as_bad (_("Unrecognized option '-x%s'"), arg);
7069 break;
7071 case 'S':
7072 /* nops Print nops statistics. */
7073 break;
7075 /* GNU specific switches for gcc. */
7076 case OPTION_MCONSTANT_GP:
7077 md.flags |= EF_IA_64_CONS_GP;
7078 break;
7080 case OPTION_MAUTO_PIC:
7081 md.flags |= EF_IA_64_NOFUNCDESC_CONS_GP;
7082 break;
7084 default:
7085 return 0;
7088 return 1;
7091 void
7092 md_show_usage (stream)
7093 FILE *stream;
7095 fputs (_("\
7096 IA-64 options:\n\
7097 --mconstant-gp mark output file as using the constant-GP model\n\
7098 (sets ELF header flag EF_IA_64_CONS_GP)\n\
7099 --mauto-pic mark output file as using the constant-GP model\n\
7100 without function descriptors (sets ELF header flag\n\
7101 EF_IA_64_NOFUNCDESC_CONS_GP)\n\
7102 -milp32|-milp64|-mlp64|-mp64 select data model (default -mlp64)\n\
7103 -mle | -mbe select little- or big-endian byte order (default -mle)\n\
7104 -mtune=[itanium1|itanium2]\n\
7105 tune for a specific CPU (default -mtune=itanium2)\n\
7106 -munwind-check=[warning|error]\n\
7107 unwind directive check (default -munwind-check=warning)\n\
7108 -mhint.b=[ok|warning|error]\n\
7109 hint.b check (default -mhint.b=error)\n\
7110 -x | -xexplicit turn on dependency violation checking\n\
7111 -xauto automagically remove dependency violations (default)\n\
7112 -xnone turn off dependency violation checking\n\
7113 -xdebug debug dependency violation checker\n\
7114 -xdebugn debug dependency violation checker but turn off\n\
7115 dependency violation checking\n\
7116 -xdebugx debug dependency violation checker and turn on\n\
7117 dependency violation checking\n"),
7118 stream);
7121 void
7122 ia64_after_parse_args ()
7124 if (debug_type == DEBUG_STABS)
7125 as_fatal (_("--gstabs is not supported for ia64"));
7128 /* Return true if TYPE fits in TEMPL at SLOT. */
7130 static int
7131 match (int templ, int type, int slot)
7133 enum ia64_unit unit;
7134 int result;
7136 unit = ia64_templ_desc[templ].exec_unit[slot];
7137 switch (type)
7139 case IA64_TYPE_DYN: result = 1; break; /* for nop and break */
7140 case IA64_TYPE_A:
7141 result = (unit == IA64_UNIT_I || unit == IA64_UNIT_M);
7142 break;
7143 case IA64_TYPE_X: result = (unit == IA64_UNIT_L); break;
7144 case IA64_TYPE_I: result = (unit == IA64_UNIT_I); break;
7145 case IA64_TYPE_M: result = (unit == IA64_UNIT_M); break;
7146 case IA64_TYPE_B: result = (unit == IA64_UNIT_B); break;
7147 case IA64_TYPE_F: result = (unit == IA64_UNIT_F); break;
7148 default: result = 0; break;
7150 return result;
7153 /* Add a bit of extra goodness if a nop of type F or B would fit
7154 in TEMPL at SLOT. */
7156 static inline int
7157 extra_goodness (int templ, int slot)
7159 switch (md.tune)
7161 case itanium1:
7162 if (slot == 1 && match (templ, IA64_TYPE_F, slot))
7163 return 2;
7164 else if (slot == 2 && match (templ, IA64_TYPE_B, slot))
7165 return 1;
7166 else
7167 return 0;
7168 break;
7169 case itanium2:
7170 if (match (templ, IA64_TYPE_M, slot)
7171 || match (templ, IA64_TYPE_I, slot))
7172 /* Favor M- and I-unit NOPs. We definitely want to avoid
7173 F-unit and B-unit may cause split-issue or less-than-optimal
7174 branch-prediction. */
7175 return 2;
7176 else
7177 return 0;
7178 break;
7179 default:
7180 abort ();
7181 return 0;
7185 /* This function is called once, at assembler startup time. It sets
7186 up all the tables, etc. that the MD part of the assembler will need
7187 that can be determined before arguments are parsed. */
7188 void
7189 md_begin ()
7191 int i, j, k, t, total, ar_base, cr_base, goodness, best, regnum, ok;
7192 const char *err;
7193 char name[8];
7195 md.auto_align = 1;
7196 md.explicit_mode = md.default_explicit_mode;
7198 bfd_set_section_alignment (stdoutput, text_section, 4);
7200 /* Make sure function pointers get initialized. */
7201 target_big_endian = -1;
7202 dot_byteorder (default_big_endian);
7204 alias_hash = hash_new ();
7205 alias_name_hash = hash_new ();
7206 secalias_hash = hash_new ();
7207 secalias_name_hash = hash_new ();
7209 pseudo_func[FUNC_DTP_MODULE].u.sym =
7210 symbol_new (".<dtpmod>", undefined_section, FUNC_DTP_MODULE,
7211 &zero_address_frag);
7213 pseudo_func[FUNC_DTP_RELATIVE].u.sym =
7214 symbol_new (".<dtprel>", undefined_section, FUNC_DTP_RELATIVE,
7215 &zero_address_frag);
7217 pseudo_func[FUNC_FPTR_RELATIVE].u.sym =
7218 symbol_new (".<fptr>", undefined_section, FUNC_FPTR_RELATIVE,
7219 &zero_address_frag);
7221 pseudo_func[FUNC_GP_RELATIVE].u.sym =
7222 symbol_new (".<gprel>", undefined_section, FUNC_GP_RELATIVE,
7223 &zero_address_frag);
7225 pseudo_func[FUNC_LT_RELATIVE].u.sym =
7226 symbol_new (".<ltoff>", undefined_section, FUNC_LT_RELATIVE,
7227 &zero_address_frag);
7229 pseudo_func[FUNC_LT_RELATIVE_X].u.sym =
7230 symbol_new (".<ltoffx>", undefined_section, FUNC_LT_RELATIVE_X,
7231 &zero_address_frag);
7233 pseudo_func[FUNC_PC_RELATIVE].u.sym =
7234 symbol_new (".<pcrel>", undefined_section, FUNC_PC_RELATIVE,
7235 &zero_address_frag);
7237 pseudo_func[FUNC_PLT_RELATIVE].u.sym =
7238 symbol_new (".<pltoff>", undefined_section, FUNC_PLT_RELATIVE,
7239 &zero_address_frag);
7241 pseudo_func[FUNC_SEC_RELATIVE].u.sym =
7242 symbol_new (".<secrel>", undefined_section, FUNC_SEC_RELATIVE,
7243 &zero_address_frag);
7245 pseudo_func[FUNC_SEG_RELATIVE].u.sym =
7246 symbol_new (".<segrel>", undefined_section, FUNC_SEG_RELATIVE,
7247 &zero_address_frag);
7249 pseudo_func[FUNC_TP_RELATIVE].u.sym =
7250 symbol_new (".<tprel>", undefined_section, FUNC_TP_RELATIVE,
7251 &zero_address_frag);
7253 pseudo_func[FUNC_LTV_RELATIVE].u.sym =
7254 symbol_new (".<ltv>", undefined_section, FUNC_LTV_RELATIVE,
7255 &zero_address_frag);
7257 pseudo_func[FUNC_LT_FPTR_RELATIVE].u.sym =
7258 symbol_new (".<ltoff.fptr>", undefined_section, FUNC_LT_FPTR_RELATIVE,
7259 &zero_address_frag);
7261 pseudo_func[FUNC_LT_DTP_MODULE].u.sym =
7262 symbol_new (".<ltoff.dtpmod>", undefined_section, FUNC_LT_DTP_MODULE,
7263 &zero_address_frag);
7265 pseudo_func[FUNC_LT_DTP_RELATIVE].u.sym =
7266 symbol_new (".<ltoff.dptrel>", undefined_section, FUNC_LT_DTP_RELATIVE,
7267 &zero_address_frag);
7269 pseudo_func[FUNC_LT_TP_RELATIVE].u.sym =
7270 symbol_new (".<ltoff.tprel>", undefined_section, FUNC_LT_TP_RELATIVE,
7271 &zero_address_frag);
7273 pseudo_func[FUNC_IPLT_RELOC].u.sym =
7274 symbol_new (".<iplt>", undefined_section, FUNC_IPLT_RELOC,
7275 &zero_address_frag);
7277 if (md.tune != itanium1)
7279 /* Convert MFI NOPs bundles into MMI NOPs bundles. */
7280 le_nop[0] = 0x8;
7281 le_nop_stop[0] = 0x9;
7284 /* Compute the table of best templates. We compute goodness as a
7285 base 4 value, in which each match counts for 3. Match-failures
7286 result in NOPs and we use extra_goodness() to pick the execution
7287 units that are best suited for issuing the NOP. */
7288 for (i = 0; i < IA64_NUM_TYPES; ++i)
7289 for (j = 0; j < IA64_NUM_TYPES; ++j)
7290 for (k = 0; k < IA64_NUM_TYPES; ++k)
7292 best = 0;
7293 for (t = 0; t < NELEMS (ia64_templ_desc); ++t)
7295 goodness = 0;
7296 if (match (t, i, 0))
7298 if (match (t, j, 1))
7300 if (match (t, k, 2))
7301 goodness = 3 + 3 + 3;
7302 else
7303 goodness = 3 + 3 + extra_goodness (t, 2);
7305 else if (match (t, j, 2))
7306 goodness = 3 + 3 + extra_goodness (t, 1);
7307 else
7309 goodness = 3;
7310 goodness += extra_goodness (t, 1);
7311 goodness += extra_goodness (t, 2);
7314 else if (match (t, i, 1))
7316 if (match (t, j, 2))
7317 goodness = 3 + 3;
7318 else
7319 goodness = 3 + extra_goodness (t, 2);
7321 else if (match (t, i, 2))
7322 goodness = 3 + extra_goodness (t, 1);
7324 if (goodness > best)
7326 best = goodness;
7327 best_template[i][j][k] = t;
7332 for (i = 0; i < NUM_SLOTS; ++i)
7333 md.slot[i].user_template = -1;
7335 md.pseudo_hash = hash_new ();
7336 for (i = 0; i < NELEMS (pseudo_opcode); ++i)
7338 err = hash_insert (md.pseudo_hash, pseudo_opcode[i].name,
7339 (void *) (pseudo_opcode + i));
7340 if (err)
7341 as_fatal ("ia64.md_begin: can't hash `%s': %s",
7342 pseudo_opcode[i].name, err);
7345 md.reg_hash = hash_new ();
7346 md.dynreg_hash = hash_new ();
7347 md.const_hash = hash_new ();
7348 md.entry_hash = hash_new ();
7350 /* general registers: */
7352 total = 128;
7353 for (i = 0; i < total; ++i)
7355 sprintf (name, "r%d", i - REG_GR);
7356 md.regsym[i] = declare_register (name, i);
7359 /* floating point registers: */
7360 total += 128;
7361 for (; i < total; ++i)
7363 sprintf (name, "f%d", i - REG_FR);
7364 md.regsym[i] = declare_register (name, i);
7367 /* application registers: */
7368 total += 128;
7369 ar_base = i;
7370 for (; i < total; ++i)
7372 sprintf (name, "ar%d", i - REG_AR);
7373 md.regsym[i] = declare_register (name, i);
7376 /* control registers: */
7377 total += 128;
7378 cr_base = i;
7379 for (; i < total; ++i)
7381 sprintf (name, "cr%d", i - REG_CR);
7382 md.regsym[i] = declare_register (name, i);
7385 /* predicate registers: */
7386 total += 64;
7387 for (; i < total; ++i)
7389 sprintf (name, "p%d", i - REG_P);
7390 md.regsym[i] = declare_register (name, i);
7393 /* branch registers: */
7394 total += 8;
7395 for (; i < total; ++i)
7397 sprintf (name, "b%d", i - REG_BR);
7398 md.regsym[i] = declare_register (name, i);
7401 md.regsym[REG_IP] = declare_register ("ip", REG_IP);
7402 md.regsym[REG_CFM] = declare_register ("cfm", REG_CFM);
7403 md.regsym[REG_PR] = declare_register ("pr", REG_PR);
7404 md.regsym[REG_PR_ROT] = declare_register ("pr.rot", REG_PR_ROT);
7405 md.regsym[REG_PSR] = declare_register ("psr", REG_PSR);
7406 md.regsym[REG_PSR_L] = declare_register ("psr.l", REG_PSR_L);
7407 md.regsym[REG_PSR_UM] = declare_register ("psr.um", REG_PSR_UM);
7409 for (i = 0; i < NELEMS (indirect_reg); ++i)
7411 regnum = indirect_reg[i].regnum;
7412 md.regsym[regnum] = declare_register (indirect_reg[i].name, regnum);
7415 /* define synonyms for application registers: */
7416 for (i = REG_AR; i < REG_AR + NELEMS (ar); ++i)
7417 md.regsym[i] = declare_register (ar[i - REG_AR].name,
7418 REG_AR + ar[i - REG_AR].regnum);
7420 /* define synonyms for control registers: */
7421 for (i = REG_CR; i < REG_CR + NELEMS (cr); ++i)
7422 md.regsym[i] = declare_register (cr[i - REG_CR].name,
7423 REG_CR + cr[i - REG_CR].regnum);
7425 declare_register ("gp", REG_GR + 1);
7426 declare_register ("sp", REG_GR + 12);
7427 declare_register ("rp", REG_BR + 0);
7429 /* pseudo-registers used to specify unwind info: */
7430 declare_register ("psp", REG_PSP);
7432 declare_register_set ("ret", 4, REG_GR + 8);
7433 declare_register_set ("farg", 8, REG_FR + 8);
7434 declare_register_set ("fret", 8, REG_FR + 8);
7436 for (i = 0; i < NELEMS (const_bits); ++i)
7438 err = hash_insert (md.const_hash, const_bits[i].name,
7439 (PTR) (const_bits + i));
7440 if (err)
7441 as_fatal ("Inserting \"%s\" into constant hash table failed: %s",
7442 name, err);
7445 /* Set the architecture and machine depending on defaults and command line
7446 options. */
7447 if (md.flags & EF_IA_64_ABI64)
7448 ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf64);
7449 else
7450 ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf32);
7452 if (! ok)
7453 as_warn (_("Could not set architecture and machine"));
7455 /* Set the pointer size and pointer shift size depending on md.flags */
7457 if (md.flags & EF_IA_64_ABI64)
7459 md.pointer_size = 8; /* pointers are 8 bytes */
7460 md.pointer_size_shift = 3; /* alignment is 8 bytes = 2^2 */
7462 else
7464 md.pointer_size = 4; /* pointers are 4 bytes */
7465 md.pointer_size_shift = 2; /* alignment is 4 bytes = 2^2 */
7468 md.mem_offset.hint = 0;
7469 md.path = 0;
7470 md.maxpaths = 0;
7471 md.entry_labels = NULL;
7474 /* Set the default options in md. Cannot do this in md_begin because
7475 that is called after md_parse_option which is where we set the
7476 options in md based on command line options. */
7478 void
7479 ia64_init (argc, argv)
7480 int argc ATTRIBUTE_UNUSED;
7481 char **argv ATTRIBUTE_UNUSED;
7483 md.flags = MD_FLAGS_DEFAULT;
7484 md.detect_dv = 1;
7485 /* FIXME: We should change it to unwind_check_error someday. */
7486 md.unwind_check = unwind_check_warning;
7487 md.hint_b = hint_b_error;
7488 md.tune = itanium2;
7491 /* Return a string for the target object file format. */
7493 const char *
7494 ia64_target_format ()
7496 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
7498 if (md.flags & EF_IA_64_BE)
7500 if (md.flags & EF_IA_64_ABI64)
7501 #if defined(TE_AIX50)
7502 return "elf64-ia64-aix-big";
7503 #elif defined(TE_HPUX)
7504 return "elf64-ia64-hpux-big";
7505 #else
7506 return "elf64-ia64-big";
7507 #endif
7508 else
7509 #if defined(TE_AIX50)
7510 return "elf32-ia64-aix-big";
7511 #elif defined(TE_HPUX)
7512 return "elf32-ia64-hpux-big";
7513 #else
7514 return "elf32-ia64-big";
7515 #endif
7517 else
7519 if (md.flags & EF_IA_64_ABI64)
7520 #ifdef TE_AIX50
7521 return "elf64-ia64-aix-little";
7522 #else
7523 return "elf64-ia64-little";
7524 #endif
7525 else
7526 #ifdef TE_AIX50
7527 return "elf32-ia64-aix-little";
7528 #else
7529 return "elf32-ia64-little";
7530 #endif
7533 else
7534 return "unknown-format";
7537 void
7538 ia64_end_of_source ()
7540 /* terminate insn group upon reaching end of file: */
7541 insn_group_break (1, 0, 0);
7543 /* emits slots we haven't written yet: */
7544 ia64_flush_insns ();
7546 bfd_set_private_flags (stdoutput, md.flags);
7548 md.mem_offset.hint = 0;
7551 void
7552 ia64_start_line ()
7554 if (md.qp.X_op == O_register)
7555 as_bad ("qualifying predicate not followed by instruction");
7556 md.qp.X_op = O_absent;
7558 if (ignore_input ())
7559 return;
7561 if (input_line_pointer[0] == ';' && input_line_pointer[-1] == ';')
7563 if (md.detect_dv && !md.explicit_mode)
7565 static int warned;
7567 if (!warned)
7569 warned = 1;
7570 as_warn (_("Explicit stops are ignored in auto mode"));
7573 else
7574 insn_group_break (1, 0, 0);
7578 /* This is a hook for ia64_frob_label, so that it can distinguish tags from
7579 labels. */
7580 static int defining_tag = 0;
7583 ia64_unrecognized_line (ch)
7584 int ch;
7586 switch (ch)
7588 case '(':
7589 expression (&md.qp);
7590 if (*input_line_pointer++ != ')')
7592 as_bad ("Expected ')'");
7593 return 0;
7595 if (md.qp.X_op != O_register)
7597 as_bad ("Qualifying predicate expected");
7598 return 0;
7600 if (md.qp.X_add_number < REG_P || md.qp.X_add_number >= REG_P + 64)
7602 as_bad ("Predicate register expected");
7603 return 0;
7605 return 1;
7607 case '{':
7608 if (md.manual_bundling)
7609 as_warn ("Found '{' when manual bundling is already turned on");
7610 else
7611 CURR_SLOT.manual_bundling_on = 1;
7612 md.manual_bundling = 1;
7614 /* Bundling is only acceptable in explicit mode
7615 or when in default automatic mode. */
7616 if (md.detect_dv && !md.explicit_mode)
7618 if (!md.mode_explicitly_set
7619 && !md.default_explicit_mode)
7620 dot_dv_mode ('E');
7621 else
7622 as_warn (_("Found '{' after explicit switch to automatic mode"));
7624 return 1;
7626 case '}':
7627 if (!md.manual_bundling)
7628 as_warn ("Found '}' when manual bundling is off");
7629 else
7630 PREV_SLOT.manual_bundling_off = 1;
7631 md.manual_bundling = 0;
7633 /* switch back to automatic mode, if applicable */
7634 if (md.detect_dv
7635 && md.explicit_mode
7636 && !md.mode_explicitly_set
7637 && !md.default_explicit_mode)
7638 dot_dv_mode ('A');
7640 /* Allow '{' to follow on the same line. We also allow ";;", but that
7641 happens automatically because ';' is an end of line marker. */
7642 SKIP_WHITESPACE ();
7643 if (input_line_pointer[0] == '{')
7645 input_line_pointer++;
7646 return ia64_unrecognized_line ('{');
7649 demand_empty_rest_of_line ();
7650 return 1;
7652 case '[':
7654 char *s;
7655 char c;
7656 symbolS *tag;
7657 int temp;
7659 if (md.qp.X_op == O_register)
7661 as_bad ("Tag must come before qualifying predicate.");
7662 return 0;
7665 /* This implements just enough of read_a_source_file in read.c to
7666 recognize labels. */
7667 if (is_name_beginner (*input_line_pointer))
7669 s = input_line_pointer;
7670 c = get_symbol_end ();
7672 else if (LOCAL_LABELS_FB
7673 && ISDIGIT (*input_line_pointer))
7675 temp = 0;
7676 while (ISDIGIT (*input_line_pointer))
7677 temp = (temp * 10) + *input_line_pointer++ - '0';
7678 fb_label_instance_inc (temp);
7679 s = fb_label_name (temp, 0);
7680 c = *input_line_pointer;
7682 else
7684 s = NULL;
7685 c = '\0';
7687 if (c != ':')
7689 /* Put ':' back for error messages' sake. */
7690 *input_line_pointer++ = ':';
7691 as_bad ("Expected ':'");
7692 return 0;
7695 defining_tag = 1;
7696 tag = colon (s);
7697 defining_tag = 0;
7698 /* Put ':' back for error messages' sake. */
7699 *input_line_pointer++ = ':';
7700 if (*input_line_pointer++ != ']')
7702 as_bad ("Expected ']'");
7703 return 0;
7705 if (! tag)
7707 as_bad ("Tag name expected");
7708 return 0;
7710 return 1;
7713 default:
7714 break;
7717 /* Not a valid line. */
7718 return 0;
7721 void
7722 ia64_frob_label (sym)
7723 struct symbol *sym;
7725 struct label_fix *fix;
7727 /* Tags need special handling since they are not bundle breaks like
7728 labels. */
7729 if (defining_tag)
7731 fix = obstack_alloc (&notes, sizeof (*fix));
7732 fix->sym = sym;
7733 fix->next = CURR_SLOT.tag_fixups;
7734 CURR_SLOT.tag_fixups = fix;
7736 return;
7739 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
7741 md.last_text_seg = now_seg;
7742 fix = obstack_alloc (&notes, sizeof (*fix));
7743 fix->sym = sym;
7744 fix->next = CURR_SLOT.label_fixups;
7745 CURR_SLOT.label_fixups = fix;
7747 /* Keep track of how many code entry points we've seen. */
7748 if (md.path == md.maxpaths)
7750 md.maxpaths += 20;
7751 md.entry_labels = (const char **)
7752 xrealloc ((void *) md.entry_labels,
7753 md.maxpaths * sizeof (char *));
7755 md.entry_labels[md.path++] = S_GET_NAME (sym);
7759 #ifdef TE_HPUX
7760 /* The HP-UX linker will give unresolved symbol errors for symbols
7761 that are declared but unused. This routine removes declared,
7762 unused symbols from an object. */
7764 ia64_frob_symbol (sym)
7765 struct symbol *sym;
7767 if ((S_GET_SEGMENT (sym) == &bfd_und_section && ! symbol_used_p (sym) &&
7768 ELF_ST_VISIBILITY (S_GET_OTHER (sym)) == STV_DEFAULT)
7769 || (S_GET_SEGMENT (sym) == &bfd_abs_section
7770 && ! S_IS_EXTERNAL (sym)))
7771 return 1;
7772 return 0;
7774 #endif
7776 void
7777 ia64_flush_pending_output ()
7779 if (!md.keep_pending_output
7780 && bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
7782 /* ??? This causes many unnecessary stop bits to be emitted.
7783 Unfortunately, it isn't clear if it is safe to remove this. */
7784 insn_group_break (1, 0, 0);
7785 ia64_flush_insns ();
7789 /* Do ia64-specific expression optimization. All that's done here is
7790 to transform index expressions that are either due to the indexing
7791 of rotating registers or due to the indexing of indirect register
7792 sets. */
7794 ia64_optimize_expr (l, op, r)
7795 expressionS *l;
7796 operatorT op;
7797 expressionS *r;
7799 unsigned num_regs;
7801 if (op == O_index)
7803 if (l->X_op == O_register && r->X_op == O_constant)
7805 num_regs = (l->X_add_number >> 16);
7806 if ((unsigned) r->X_add_number >= num_regs)
7808 if (!num_regs)
7809 as_bad ("No current frame");
7810 else
7811 as_bad ("Index out of range 0..%u", num_regs - 1);
7812 r->X_add_number = 0;
7814 l->X_add_number = (l->X_add_number & 0xffff) + r->X_add_number;
7815 return 1;
7817 else if (l->X_op == O_register && r->X_op == O_register)
7819 if (l->X_add_number < IND_CPUID || l->X_add_number > IND_RR
7820 || l->X_add_number == IND_MEM)
7822 as_bad ("Indirect register set name expected");
7823 l->X_add_number = IND_CPUID;
7825 l->X_op = O_index;
7826 l->X_op_symbol = md.regsym[l->X_add_number];
7827 l->X_add_number = r->X_add_number;
7828 return 1;
7831 return 0;
7835 ia64_parse_name (name, e, nextcharP)
7836 char *name;
7837 expressionS *e;
7838 char *nextcharP;
7840 struct const_desc *cdesc;
7841 struct dynreg *dr = 0;
7842 unsigned int idx;
7843 struct symbol *sym;
7844 char *end;
7846 if (*name == '@')
7848 enum pseudo_type pseudo_type = PSEUDO_FUNC_NONE;
7850 /* Find what relocation pseudo-function we're dealing with. */
7851 for (idx = 0; idx < NELEMS (pseudo_func); ++idx)
7852 if (pseudo_func[idx].name
7853 && pseudo_func[idx].name[0] == name[1]
7854 && strcmp (pseudo_func[idx].name + 1, name + 2) == 0)
7856 pseudo_type = pseudo_func[idx].type;
7857 break;
7859 switch (pseudo_type)
7861 case PSEUDO_FUNC_RELOC:
7862 end = input_line_pointer;
7863 if (*nextcharP != '(')
7865 as_bad ("Expected '('");
7866 break;
7868 /* Skip '('. */
7869 ++input_line_pointer;
7870 expression (e);
7871 if (*input_line_pointer != ')')
7873 as_bad ("Missing ')'");
7874 goto done;
7876 /* Skip ')'. */
7877 ++input_line_pointer;
7878 if (e->X_op != O_symbol)
7880 if (e->X_op != O_pseudo_fixup)
7882 as_bad ("Not a symbolic expression");
7883 goto done;
7885 if (idx != FUNC_LT_RELATIVE)
7887 as_bad ("Illegal combination of relocation functions");
7888 goto done;
7890 switch (S_GET_VALUE (e->X_op_symbol))
7892 case FUNC_FPTR_RELATIVE:
7893 idx = FUNC_LT_FPTR_RELATIVE; break;
7894 case FUNC_DTP_MODULE:
7895 idx = FUNC_LT_DTP_MODULE; break;
7896 case FUNC_DTP_RELATIVE:
7897 idx = FUNC_LT_DTP_RELATIVE; break;
7898 case FUNC_TP_RELATIVE:
7899 idx = FUNC_LT_TP_RELATIVE; break;
7900 default:
7901 as_bad ("Illegal combination of relocation functions");
7902 goto done;
7905 /* Make sure gas doesn't get rid of local symbols that are used
7906 in relocs. */
7907 e->X_op = O_pseudo_fixup;
7908 e->X_op_symbol = pseudo_func[idx].u.sym;
7909 done:
7910 *nextcharP = *input_line_pointer;
7911 break;
7913 case PSEUDO_FUNC_CONST:
7914 e->X_op = O_constant;
7915 e->X_add_number = pseudo_func[idx].u.ival;
7916 break;
7918 case PSEUDO_FUNC_REG:
7919 e->X_op = O_register;
7920 e->X_add_number = pseudo_func[idx].u.ival;
7921 break;
7923 default:
7924 return 0;
7926 return 1;
7929 /* first see if NAME is a known register name: */
7930 sym = hash_find (md.reg_hash, name);
7931 if (sym)
7933 e->X_op = O_register;
7934 e->X_add_number = S_GET_VALUE (sym);
7935 return 1;
7938 cdesc = hash_find (md.const_hash, name);
7939 if (cdesc)
7941 e->X_op = O_constant;
7942 e->X_add_number = cdesc->value;
7943 return 1;
7946 /* check for inN, locN, or outN: */
7947 idx = 0;
7948 switch (name[0])
7950 case 'i':
7951 if (name[1] == 'n' && ISDIGIT (name[2]))
7953 dr = &md.in;
7954 idx = 2;
7956 break;
7958 case 'l':
7959 if (name[1] == 'o' && name[2] == 'c' && ISDIGIT (name[3]))
7961 dr = &md.loc;
7962 idx = 3;
7964 break;
7966 case 'o':
7967 if (name[1] == 'u' && name[2] == 't' && ISDIGIT (name[3]))
7969 dr = &md.out;
7970 idx = 3;
7972 break;
7974 default:
7975 break;
7978 /* Ignore register numbers with leading zeroes, except zero itself. */
7979 if (dr && (name[idx] != '0' || name[idx + 1] == '\0'))
7981 unsigned long regnum;
7983 /* The name is inN, locN, or outN; parse the register number. */
7984 regnum = strtoul (name + idx, &end, 10);
7985 if (end > name + idx && *end == '\0' && regnum < 96)
7987 if (regnum >= dr->num_regs)
7989 if (!dr->num_regs)
7990 as_bad ("No current frame");
7991 else
7992 as_bad ("Register number out of range 0..%u",
7993 dr->num_regs - 1);
7994 regnum = 0;
7996 e->X_op = O_register;
7997 e->X_add_number = dr->base + regnum;
7998 return 1;
8002 end = alloca (strlen (name) + 1);
8003 strcpy (end, name);
8004 name = ia64_canonicalize_symbol_name (end);
8005 if ((dr = hash_find (md.dynreg_hash, name)))
8007 /* We've got ourselves the name of a rotating register set.
8008 Store the base register number in the low 16 bits of
8009 X_add_number and the size of the register set in the top 16
8010 bits. */
8011 e->X_op = O_register;
8012 e->X_add_number = dr->base | (dr->num_regs << 16);
8013 return 1;
8015 return 0;
8018 /* Remove the '#' suffix that indicates a symbol as opposed to a register. */
8020 char *
8021 ia64_canonicalize_symbol_name (name)
8022 char *name;
8024 size_t len = strlen (name), full = len;
8026 while (len > 0 && name[len - 1] == '#')
8027 --len;
8028 if (len <= 0)
8030 if (full > 0)
8031 as_bad ("Standalone `#' is illegal");
8032 else
8033 as_bad ("Zero-length symbol is illegal");
8035 else if (len < full - 1)
8036 as_warn ("Redundant `#' suffix operators");
8037 name[len] = '\0';
8038 return name;
8041 /* Return true if idesc is a conditional branch instruction. This excludes
8042 the modulo scheduled branches, and br.ia. Mod-sched branches are excluded
8043 because they always read/write resources regardless of the value of the
8044 qualifying predicate. br.ia must always use p0, and hence is always
8045 taken. Thus this function returns true for branches which can fall
8046 through, and which use no resources if they do fall through. */
8048 static int
8049 is_conditional_branch (idesc)
8050 struct ia64_opcode *idesc;
8052 /* br is a conditional branch. Everything that starts with br. except
8053 br.ia, br.c{loop,top,exit}, and br.w{top,exit} is a conditional branch.
8054 Everything that starts with brl is a conditional branch. */
8055 return (idesc->name[0] == 'b' && idesc->name[1] == 'r'
8056 && (idesc->name[2] == '\0'
8057 || (idesc->name[2] == '.' && idesc->name[3] != 'i'
8058 && idesc->name[3] != 'c' && idesc->name[3] != 'w')
8059 || idesc->name[2] == 'l'
8060 /* br.cond, br.call, br.clr */
8061 || (idesc->name[2] == '.' && idesc->name[3] == 'c'
8062 && (idesc->name[4] == 'a' || idesc->name[4] == 'o'
8063 || (idesc->name[4] == 'l' && idesc->name[5] == 'r')))));
8066 /* Return whether the given opcode is a taken branch. If there's any doubt,
8067 returns zero. */
8069 static int
8070 is_taken_branch (idesc)
8071 struct ia64_opcode *idesc;
8073 return ((is_conditional_branch (idesc) && CURR_SLOT.qp_regno == 0)
8074 || strncmp (idesc->name, "br.ia", 5) == 0);
8077 /* Return whether the given opcode is an interruption or rfi. If there's any
8078 doubt, returns zero. */
8080 static int
8081 is_interruption_or_rfi (idesc)
8082 struct ia64_opcode *idesc;
8084 if (strcmp (idesc->name, "rfi") == 0)
8085 return 1;
8086 return 0;
8089 /* Returns the index of the given dependency in the opcode's list of chks, or
8090 -1 if there is no dependency. */
8092 static int
8093 depends_on (depind, idesc)
8094 int depind;
8095 struct ia64_opcode *idesc;
8097 int i;
8098 const struct ia64_opcode_dependency *dep = idesc->dependencies;
8099 for (i = 0; i < dep->nchks; i++)
8101 if (depind == DEP (dep->chks[i]))
8102 return i;
8104 return -1;
8107 /* Determine a set of specific resources used for a particular resource
8108 class. Returns the number of specific resources identified For those
8109 cases which are not determinable statically, the resource returned is
8110 marked nonspecific.
8112 Meanings of value in 'NOTE':
8113 1) only read/write when the register number is explicitly encoded in the
8114 insn.
8115 2) only read CFM when accessing a rotating GR, FR, or PR. mov pr only
8116 accesses CFM when qualifying predicate is in the rotating region.
8117 3) general register value is used to specify an indirect register; not
8118 determinable statically.
8119 4) only read the given resource when bits 7:0 of the indirect index
8120 register value does not match the register number of the resource; not
8121 determinable statically.
8122 5) all rules are implementation specific.
8123 6) only when both the index specified by the reader and the index specified
8124 by the writer have the same value in bits 63:61; not determinable
8125 statically.
8126 7) only access the specified resource when the corresponding mask bit is
8128 8) PSR.dfh is only read when these insns reference FR32-127. PSR.dfl is
8129 only read when these insns reference FR2-31
8130 9) PSR.mfl is only written when these insns write FR2-31. PSR.mfh is only
8131 written when these insns write FR32-127
8132 10) The PSR.bn bit is only accessed when one of GR16-31 is specified in the
8133 instruction
8134 11) The target predicates are written independently of PR[qp], but source
8135 registers are only read if PR[qp] is true. Since the state of PR[qp]
8136 cannot statically be determined, all source registers are marked used.
8137 12) This insn only reads the specified predicate register when that
8138 register is the PR[qp].
8139 13) This reference to ld-c only applies to teh GR whose value is loaded
8140 with data returned from memory, not the post-incremented address register.
8141 14) The RSE resource includes the implementation-specific RSE internal
8142 state resources. At least one (and possibly more) of these resources are
8143 read by each instruction listed in IC:rse-readers. At least one (and
8144 possibly more) of these resources are written by each insn listed in
8145 IC:rse-writers.
8146 15+16) Represents reserved instructions, which the assembler does not
8147 generate.
8149 Memory resources (i.e. locations in memory) are *not* marked or tracked by
8150 this code; there are no dependency violations based on memory access.
8153 #define MAX_SPECS 256
8154 #define DV_CHK 1
8155 #define DV_REG 0
8157 static int
8158 specify_resource (dep, idesc, type, specs, note, path)
8159 const struct ia64_dependency *dep;
8160 struct ia64_opcode *idesc;
8161 int type; /* is this a DV chk or a DV reg? */
8162 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
8163 int note; /* resource note for this insn's usage */
8164 int path; /* which execution path to examine */
8166 int count = 0;
8167 int i;
8168 int rsrc_write = 0;
8169 struct rsrc tmpl;
8171 if (dep->mode == IA64_DV_WAW
8172 || (dep->mode == IA64_DV_RAW && type == DV_REG)
8173 || (dep->mode == IA64_DV_WAR && type == DV_CHK))
8174 rsrc_write = 1;
8176 /* template for any resources we identify */
8177 tmpl.dependency = dep;
8178 tmpl.note = note;
8179 tmpl.insn_srlz = tmpl.data_srlz = 0;
8180 tmpl.qp_regno = CURR_SLOT.qp_regno;
8181 tmpl.link_to_qp_branch = 1;
8182 tmpl.mem_offset.hint = 0;
8183 tmpl.specific = 1;
8184 tmpl.index = -1;
8185 tmpl.cmp_type = CMP_NONE;
8187 #define UNHANDLED \
8188 as_warn (_("Unhandled dependency %s for %s (%s), note %d"), \
8189 dep->name, idesc->name, (rsrc_write?"write":"read"), note)
8190 #define KNOWN(REG) (gr_values[REG].known && gr_values[REG].path >= path)
8192 /* we don't need to track these */
8193 if (dep->semantics == IA64_DVS_NONE)
8194 return 0;
8196 switch (dep->specifier)
8198 case IA64_RS_AR_K:
8199 if (note == 1)
8201 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8203 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8204 if (regno >= 0 && regno <= 7)
8206 specs[count] = tmpl;
8207 specs[count++].index = regno;
8211 else if (note == 0)
8213 for (i = 0; i < 8; i++)
8215 specs[count] = tmpl;
8216 specs[count++].index = i;
8219 else
8221 UNHANDLED;
8223 break;
8225 case IA64_RS_AR_UNAT:
8226 /* This is a mov =AR or mov AR= instruction. */
8227 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8229 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8230 if (regno == AR_UNAT)
8232 specs[count++] = tmpl;
8235 else
8237 /* This is a spill/fill, or other instruction that modifies the
8238 unat register. */
8240 /* Unless we can determine the specific bits used, mark the whole
8241 thing; bits 8:3 of the memory address indicate the bit used in
8242 UNAT. The .mem.offset hint may be used to eliminate a small
8243 subset of conflicts. */
8244 specs[count] = tmpl;
8245 if (md.mem_offset.hint)
8247 if (md.debug_dv)
8248 fprintf (stderr, " Using hint for spill/fill\n");
8249 /* The index isn't actually used, just set it to something
8250 approximating the bit index. */
8251 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
8252 specs[count].mem_offset.hint = 1;
8253 specs[count].mem_offset.offset = md.mem_offset.offset;
8254 specs[count++].mem_offset.base = md.mem_offset.base;
8256 else
8258 specs[count++].specific = 0;
8261 break;
8263 case IA64_RS_AR:
8264 if (note == 1)
8266 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8268 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8269 if ((regno >= 8 && regno <= 15)
8270 || (regno >= 20 && regno <= 23)
8271 || (regno >= 31 && regno <= 39)
8272 || (regno >= 41 && regno <= 47)
8273 || (regno >= 67 && regno <= 111))
8275 specs[count] = tmpl;
8276 specs[count++].index = regno;
8280 else
8282 UNHANDLED;
8284 break;
8286 case IA64_RS_ARb:
8287 if (note == 1)
8289 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8291 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8292 if ((regno >= 48 && regno <= 63)
8293 || (regno >= 112 && regno <= 127))
8295 specs[count] = tmpl;
8296 specs[count++].index = regno;
8300 else if (note == 0)
8302 for (i = 48; i < 64; i++)
8304 specs[count] = tmpl;
8305 specs[count++].index = i;
8307 for (i = 112; i < 128; i++)
8309 specs[count] = tmpl;
8310 specs[count++].index = i;
8313 else
8315 UNHANDLED;
8317 break;
8319 case IA64_RS_BR:
8320 if (note != 1)
8322 UNHANDLED;
8324 else
8326 if (rsrc_write)
8328 for (i = 0; i < idesc->num_outputs; i++)
8329 if (idesc->operands[i] == IA64_OPND_B1
8330 || idesc->operands[i] == IA64_OPND_B2)
8332 specs[count] = tmpl;
8333 specs[count++].index =
8334 CURR_SLOT.opnd[i].X_add_number - REG_BR;
8337 else
8339 for (i = idesc->num_outputs; i < NELEMS (idesc->operands); i++)
8340 if (idesc->operands[i] == IA64_OPND_B1
8341 || idesc->operands[i] == IA64_OPND_B2)
8343 specs[count] = tmpl;
8344 specs[count++].index =
8345 CURR_SLOT.opnd[i].X_add_number - REG_BR;
8349 break;
8351 case IA64_RS_CPUID: /* four or more registers */
8352 if (note == 3)
8354 if (idesc->operands[!rsrc_write] == IA64_OPND_CPUID_R3)
8356 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8357 if (regno >= 0 && regno < NELEMS (gr_values)
8358 && KNOWN (regno))
8360 specs[count] = tmpl;
8361 specs[count++].index = gr_values[regno].value & 0xFF;
8363 else
8365 specs[count] = tmpl;
8366 specs[count++].specific = 0;
8370 else
8372 UNHANDLED;
8374 break;
8376 case IA64_RS_DBR: /* four or more registers */
8377 if (note == 3)
8379 if (idesc->operands[!rsrc_write] == IA64_OPND_DBR_R3)
8381 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8382 if (regno >= 0 && regno < NELEMS (gr_values)
8383 && KNOWN (regno))
8385 specs[count] = tmpl;
8386 specs[count++].index = gr_values[regno].value & 0xFF;
8388 else
8390 specs[count] = tmpl;
8391 specs[count++].specific = 0;
8395 else if (note == 0 && !rsrc_write)
8397 specs[count] = tmpl;
8398 specs[count++].specific = 0;
8400 else
8402 UNHANDLED;
8404 break;
8406 case IA64_RS_IBR: /* four or more registers */
8407 if (note == 3)
8409 if (idesc->operands[!rsrc_write] == IA64_OPND_IBR_R3)
8411 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8412 if (regno >= 0 && regno < NELEMS (gr_values)
8413 && KNOWN (regno))
8415 specs[count] = tmpl;
8416 specs[count++].index = gr_values[regno].value & 0xFF;
8418 else
8420 specs[count] = tmpl;
8421 specs[count++].specific = 0;
8425 else
8427 UNHANDLED;
8429 break;
8431 case IA64_RS_MSR:
8432 if (note == 5)
8434 /* These are implementation specific. Force all references to
8435 conflict with all other references. */
8436 specs[count] = tmpl;
8437 specs[count++].specific = 0;
8439 else
8441 UNHANDLED;
8443 break;
8445 case IA64_RS_PKR: /* 16 or more registers */
8446 if (note == 3 || note == 4)
8448 if (idesc->operands[!rsrc_write] == IA64_OPND_PKR_R3)
8450 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8451 if (regno >= 0 && regno < NELEMS (gr_values)
8452 && KNOWN (regno))
8454 if (note == 3)
8456 specs[count] = tmpl;
8457 specs[count++].index = gr_values[regno].value & 0xFF;
8459 else
8460 for (i = 0; i < NELEMS (gr_values); i++)
8462 /* Uses all registers *except* the one in R3. */
8463 if ((unsigned)i != (gr_values[regno].value & 0xFF))
8465 specs[count] = tmpl;
8466 specs[count++].index = i;
8470 else
8472 specs[count] = tmpl;
8473 specs[count++].specific = 0;
8477 else if (note == 0)
8479 /* probe et al. */
8480 specs[count] = tmpl;
8481 specs[count++].specific = 0;
8483 break;
8485 case IA64_RS_PMC: /* four or more registers */
8486 if (note == 3)
8488 if (idesc->operands[!rsrc_write] == IA64_OPND_PMC_R3
8489 || (!rsrc_write && idesc->operands[1] == IA64_OPND_PMD_R3))
8492 int index = ((idesc->operands[1] == IA64_OPND_R3 && !rsrc_write)
8493 ? 1 : !rsrc_write);
8494 int regno = CURR_SLOT.opnd[index].X_add_number - REG_GR;
8495 if (regno >= 0 && regno < NELEMS (gr_values)
8496 && KNOWN (regno))
8498 specs[count] = tmpl;
8499 specs[count++].index = gr_values[regno].value & 0xFF;
8501 else
8503 specs[count] = tmpl;
8504 specs[count++].specific = 0;
8508 else
8510 UNHANDLED;
8512 break;
8514 case IA64_RS_PMD: /* four or more registers */
8515 if (note == 3)
8517 if (idesc->operands[!rsrc_write] == IA64_OPND_PMD_R3)
8519 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8520 if (regno >= 0 && regno < NELEMS (gr_values)
8521 && KNOWN (regno))
8523 specs[count] = tmpl;
8524 specs[count++].index = gr_values[regno].value & 0xFF;
8526 else
8528 specs[count] = tmpl;
8529 specs[count++].specific = 0;
8533 else
8535 UNHANDLED;
8537 break;
8539 case IA64_RS_RR: /* eight registers */
8540 if (note == 6)
8542 if (idesc->operands[!rsrc_write] == IA64_OPND_RR_R3)
8544 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8545 if (regno >= 0 && regno < NELEMS (gr_values)
8546 && KNOWN (regno))
8548 specs[count] = tmpl;
8549 specs[count++].index = (gr_values[regno].value >> 61) & 0x7;
8551 else
8553 specs[count] = tmpl;
8554 specs[count++].specific = 0;
8558 else if (note == 0 && !rsrc_write)
8560 specs[count] = tmpl;
8561 specs[count++].specific = 0;
8563 else
8565 UNHANDLED;
8567 break;
8569 case IA64_RS_CR_IRR:
8570 if (note == 0)
8572 /* handle mov-from-CR-IVR; it's a read that writes CR[IRR] */
8573 int regno = CURR_SLOT.opnd[1].X_add_number - REG_CR;
8574 if (rsrc_write
8575 && idesc->operands[1] == IA64_OPND_CR3
8576 && regno == CR_IVR)
8578 for (i = 0; i < 4; i++)
8580 specs[count] = tmpl;
8581 specs[count++].index = CR_IRR0 + i;
8585 else if (note == 1)
8587 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8588 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
8589 && regno >= CR_IRR0
8590 && regno <= CR_IRR3)
8592 specs[count] = tmpl;
8593 specs[count++].index = regno;
8596 else
8598 UNHANDLED;
8600 break;
8602 case IA64_RS_CR_LRR:
8603 if (note != 1)
8605 UNHANDLED;
8607 else
8609 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8610 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
8611 && (regno == CR_LRR0 || regno == CR_LRR1))
8613 specs[count] = tmpl;
8614 specs[count++].index = regno;
8617 break;
8619 case IA64_RS_CR:
8620 if (note == 1)
8622 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
8624 specs[count] = tmpl;
8625 specs[count++].index =
8626 CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8629 else
8631 UNHANDLED;
8633 break;
8635 case IA64_RS_FR:
8636 case IA64_RS_FRb:
8637 if (note != 1)
8639 UNHANDLED;
8641 else if (rsrc_write)
8643 if (dep->specifier == IA64_RS_FRb
8644 && idesc->operands[0] == IA64_OPND_F1)
8646 specs[count] = tmpl;
8647 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_FR;
8650 else
8652 for (i = idesc->num_outputs; i < NELEMS (idesc->operands); i++)
8654 if (idesc->operands[i] == IA64_OPND_F2
8655 || idesc->operands[i] == IA64_OPND_F3
8656 || idesc->operands[i] == IA64_OPND_F4)
8658 specs[count] = tmpl;
8659 specs[count++].index =
8660 CURR_SLOT.opnd[i].X_add_number - REG_FR;
8664 break;
8666 case IA64_RS_GR:
8667 if (note == 13)
8669 /* This reference applies only to the GR whose value is loaded with
8670 data returned from memory. */
8671 specs[count] = tmpl;
8672 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_GR;
8674 else if (note == 1)
8676 if (rsrc_write)
8678 for (i = 0; i < idesc->num_outputs; i++)
8679 if (idesc->operands[i] == IA64_OPND_R1
8680 || idesc->operands[i] == IA64_OPND_R2
8681 || idesc->operands[i] == IA64_OPND_R3)
8683 specs[count] = tmpl;
8684 specs[count++].index =
8685 CURR_SLOT.opnd[i].X_add_number - REG_GR;
8687 if (idesc->flags & IA64_OPCODE_POSTINC)
8688 for (i = 0; i < NELEMS (idesc->operands); i++)
8689 if (idesc->operands[i] == IA64_OPND_MR3)
8691 specs[count] = tmpl;
8692 specs[count++].index =
8693 CURR_SLOT.opnd[i].X_add_number - REG_GR;
8696 else
8698 /* Look for anything that reads a GR. */
8699 for (i = 0; i < NELEMS (idesc->operands); i++)
8701 if (idesc->operands[i] == IA64_OPND_MR3
8702 || idesc->operands[i] == IA64_OPND_CPUID_R3
8703 || idesc->operands[i] == IA64_OPND_DBR_R3
8704 || idesc->operands[i] == IA64_OPND_IBR_R3
8705 || idesc->operands[i] == IA64_OPND_MSR_R3
8706 || idesc->operands[i] == IA64_OPND_PKR_R3
8707 || idesc->operands[i] == IA64_OPND_PMC_R3
8708 || idesc->operands[i] == IA64_OPND_PMD_R3
8709 || idesc->operands[i] == IA64_OPND_RR_R3
8710 || ((i >= idesc->num_outputs)
8711 && (idesc->operands[i] == IA64_OPND_R1
8712 || idesc->operands[i] == IA64_OPND_R2
8713 || idesc->operands[i] == IA64_OPND_R3
8714 /* addl source register. */
8715 || idesc->operands[i] == IA64_OPND_R3_2)))
8717 specs[count] = tmpl;
8718 specs[count++].index =
8719 CURR_SLOT.opnd[i].X_add_number - REG_GR;
8724 else
8726 UNHANDLED;
8728 break;
8730 /* This is the same as IA64_RS_PRr, except that the register range is
8731 from 1 - 15, and there are no rotating register reads/writes here. */
8732 case IA64_RS_PR:
8733 if (note == 0)
8735 for (i = 1; i < 16; i++)
8737 specs[count] = tmpl;
8738 specs[count++].index = i;
8741 else if (note == 7)
8743 valueT mask = 0;
8744 /* Mark only those registers indicated by the mask. */
8745 if (rsrc_write)
8747 mask = CURR_SLOT.opnd[2].X_add_number;
8748 for (i = 1; i < 16; i++)
8749 if (mask & ((valueT) 1 << i))
8751 specs[count] = tmpl;
8752 specs[count++].index = i;
8755 else
8757 UNHANDLED;
8760 else if (note == 11) /* note 11 implies note 1 as well */
8762 if (rsrc_write)
8764 for (i = 0; i < idesc->num_outputs; i++)
8766 if (idesc->operands[i] == IA64_OPND_P1
8767 || idesc->operands[i] == IA64_OPND_P2)
8769 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
8770 if (regno >= 1 && regno < 16)
8772 specs[count] = tmpl;
8773 specs[count++].index = regno;
8778 else
8780 UNHANDLED;
8783 else if (note == 12)
8785 if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16)
8787 specs[count] = tmpl;
8788 specs[count++].index = CURR_SLOT.qp_regno;
8791 else if (note == 1)
8793 if (rsrc_write)
8795 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
8796 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
8797 int or_andcm = strstr (idesc->name, "or.andcm") != NULL;
8798 int and_orcm = strstr (idesc->name, "and.orcm") != NULL;
8800 if ((idesc->operands[0] == IA64_OPND_P1
8801 || idesc->operands[0] == IA64_OPND_P2)
8802 && p1 >= 1 && p1 < 16)
8804 specs[count] = tmpl;
8805 specs[count].cmp_type =
8806 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
8807 specs[count++].index = p1;
8809 if ((idesc->operands[1] == IA64_OPND_P1
8810 || idesc->operands[1] == IA64_OPND_P2)
8811 && p2 >= 1 && p2 < 16)
8813 specs[count] = tmpl;
8814 specs[count].cmp_type =
8815 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
8816 specs[count++].index = p2;
8819 else
8821 if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16)
8823 specs[count] = tmpl;
8824 specs[count++].index = CURR_SLOT.qp_regno;
8826 if (idesc->operands[1] == IA64_OPND_PR)
8828 for (i = 1; i < 16; i++)
8830 specs[count] = tmpl;
8831 specs[count++].index = i;
8836 else
8838 UNHANDLED;
8840 break;
8842 /* This is the general case for PRs. IA64_RS_PR and IA64_RS_PR63 are
8843 simplified cases of this. */
8844 case IA64_RS_PRr:
8845 if (note == 0)
8847 for (i = 16; i < 63; i++)
8849 specs[count] = tmpl;
8850 specs[count++].index = i;
8853 else if (note == 7)
8855 valueT mask = 0;
8856 /* Mark only those registers indicated by the mask. */
8857 if (rsrc_write
8858 && idesc->operands[0] == IA64_OPND_PR)
8860 mask = CURR_SLOT.opnd[2].X_add_number;
8861 if (mask & ((valueT) 1 << 16))
8862 for (i = 16; i < 63; i++)
8864 specs[count] = tmpl;
8865 specs[count++].index = i;
8868 else if (rsrc_write
8869 && idesc->operands[0] == IA64_OPND_PR_ROT)
8871 for (i = 16; i < 63; i++)
8873 specs[count] = tmpl;
8874 specs[count++].index = i;
8877 else
8879 UNHANDLED;
8882 else if (note == 11) /* note 11 implies note 1 as well */
8884 if (rsrc_write)
8886 for (i = 0; i < idesc->num_outputs; i++)
8888 if (idesc->operands[i] == IA64_OPND_P1
8889 || idesc->operands[i] == IA64_OPND_P2)
8891 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
8892 if (regno >= 16 && regno < 63)
8894 specs[count] = tmpl;
8895 specs[count++].index = regno;
8900 else
8902 UNHANDLED;
8905 else if (note == 12)
8907 if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63)
8909 specs[count] = tmpl;
8910 specs[count++].index = CURR_SLOT.qp_regno;
8913 else if (note == 1)
8915 if (rsrc_write)
8917 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
8918 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
8919 int or_andcm = strstr (idesc->name, "or.andcm") != NULL;
8920 int and_orcm = strstr (idesc->name, "and.orcm") != NULL;
8922 if ((idesc->operands[0] == IA64_OPND_P1
8923 || idesc->operands[0] == IA64_OPND_P2)
8924 && p1 >= 16 && p1 < 63)
8926 specs[count] = tmpl;
8927 specs[count].cmp_type =
8928 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
8929 specs[count++].index = p1;
8931 if ((idesc->operands[1] == IA64_OPND_P1
8932 || idesc->operands[1] == IA64_OPND_P2)
8933 && p2 >= 16 && p2 < 63)
8935 specs[count] = tmpl;
8936 specs[count].cmp_type =
8937 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
8938 specs[count++].index = p2;
8941 else
8943 if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63)
8945 specs[count] = tmpl;
8946 specs[count++].index = CURR_SLOT.qp_regno;
8948 if (idesc->operands[1] == IA64_OPND_PR)
8950 for (i = 16; i < 63; i++)
8952 specs[count] = tmpl;
8953 specs[count++].index = i;
8958 else
8960 UNHANDLED;
8962 break;
8964 case IA64_RS_PSR:
8965 /* Verify that the instruction is using the PSR bit indicated in
8966 dep->regindex. */
8967 if (note == 0)
8969 if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_UM)
8971 if (dep->regindex < 6)
8973 specs[count++] = tmpl;
8976 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR)
8978 if (dep->regindex < 32
8979 || dep->regindex == 35
8980 || dep->regindex == 36
8981 || (!rsrc_write && dep->regindex == PSR_CPL))
8983 specs[count++] = tmpl;
8986 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_L)
8988 if (dep->regindex < 32
8989 || dep->regindex == 35
8990 || dep->regindex == 36
8991 || (rsrc_write && dep->regindex == PSR_CPL))
8993 specs[count++] = tmpl;
8996 else
8998 /* Several PSR bits have very specific dependencies. */
8999 switch (dep->regindex)
9001 default:
9002 specs[count++] = tmpl;
9003 break;
9004 case PSR_IC:
9005 if (rsrc_write)
9007 specs[count++] = tmpl;
9009 else
9011 /* Only certain CR accesses use PSR.ic */
9012 if (idesc->operands[0] == IA64_OPND_CR3
9013 || idesc->operands[1] == IA64_OPND_CR3)
9015 int index =
9016 ((idesc->operands[0] == IA64_OPND_CR3)
9017 ? 0 : 1);
9018 int regno =
9019 CURR_SLOT.opnd[index].X_add_number - REG_CR;
9021 switch (regno)
9023 default:
9024 break;
9025 case CR_ITIR:
9026 case CR_IFS:
9027 case CR_IIM:
9028 case CR_IIP:
9029 case CR_IPSR:
9030 case CR_ISR:
9031 case CR_IFA:
9032 case CR_IHA:
9033 case CR_IIPA:
9034 specs[count++] = tmpl;
9035 break;
9039 break;
9040 case PSR_CPL:
9041 if (rsrc_write)
9043 specs[count++] = tmpl;
9045 else
9047 /* Only some AR accesses use cpl */
9048 if (idesc->operands[0] == IA64_OPND_AR3
9049 || idesc->operands[1] == IA64_OPND_AR3)
9051 int index =
9052 ((idesc->operands[0] == IA64_OPND_AR3)
9053 ? 0 : 1);
9054 int regno =
9055 CURR_SLOT.opnd[index].X_add_number - REG_AR;
9057 if (regno == AR_ITC
9058 || (index == 0
9059 && (regno == AR_ITC
9060 || regno == AR_RSC
9061 || (regno >= AR_K0
9062 && regno <= AR_K7))))
9064 specs[count++] = tmpl;
9067 else
9069 specs[count++] = tmpl;
9071 break;
9076 else if (note == 7)
9078 valueT mask = 0;
9079 if (idesc->operands[0] == IA64_OPND_IMMU24)
9081 mask = CURR_SLOT.opnd[0].X_add_number;
9083 else
9085 UNHANDLED;
9087 if (mask & ((valueT) 1 << dep->regindex))
9089 specs[count++] = tmpl;
9092 else if (note == 8)
9094 int min = dep->regindex == PSR_DFL ? 2 : 32;
9095 int max = dep->regindex == PSR_DFL ? 31 : 127;
9096 /* dfh is read on FR32-127; dfl is read on FR2-31 */
9097 for (i = 0; i < NELEMS (idesc->operands); i++)
9099 if (idesc->operands[i] == IA64_OPND_F1
9100 || idesc->operands[i] == IA64_OPND_F2
9101 || idesc->operands[i] == IA64_OPND_F3
9102 || idesc->operands[i] == IA64_OPND_F4)
9104 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
9105 if (reg >= min && reg <= max)
9107 specs[count++] = tmpl;
9112 else if (note == 9)
9114 int min = dep->regindex == PSR_MFL ? 2 : 32;
9115 int max = dep->regindex == PSR_MFL ? 31 : 127;
9116 /* mfh is read on writes to FR32-127; mfl is read on writes to
9117 FR2-31 */
9118 for (i = 0; i < idesc->num_outputs; i++)
9120 if (idesc->operands[i] == IA64_OPND_F1)
9122 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
9123 if (reg >= min && reg <= max)
9125 specs[count++] = tmpl;
9130 else if (note == 10)
9132 for (i = 0; i < NELEMS (idesc->operands); i++)
9134 if (idesc->operands[i] == IA64_OPND_R1
9135 || idesc->operands[i] == IA64_OPND_R2
9136 || idesc->operands[i] == IA64_OPND_R3)
9138 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9139 if (regno >= 16 && regno <= 31)
9141 specs[count++] = tmpl;
9146 else
9148 UNHANDLED;
9150 break;
9152 case IA64_RS_AR_FPSR:
9153 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
9155 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
9156 if (regno == AR_FPSR)
9158 specs[count++] = tmpl;
9161 else
9163 specs[count++] = tmpl;
9165 break;
9167 case IA64_RS_ARX:
9168 /* Handle all AR[REG] resources */
9169 if (note == 0 || note == 1)
9171 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
9172 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3
9173 && regno == dep->regindex)
9175 specs[count++] = tmpl;
9177 /* other AR[REG] resources may be affected by AR accesses */
9178 else if (idesc->operands[0] == IA64_OPND_AR3)
9180 /* AR[] writes */
9181 regno = CURR_SLOT.opnd[0].X_add_number - REG_AR;
9182 switch (dep->regindex)
9184 default:
9185 break;
9186 case AR_BSP:
9187 case AR_RNAT:
9188 if (regno == AR_BSPSTORE)
9190 specs[count++] = tmpl;
9192 case AR_RSC:
9193 if (!rsrc_write &&
9194 (regno == AR_BSPSTORE
9195 || regno == AR_RNAT))
9197 specs[count++] = tmpl;
9199 break;
9202 else if (idesc->operands[1] == IA64_OPND_AR3)
9204 /* AR[] reads */
9205 regno = CURR_SLOT.opnd[1].X_add_number - REG_AR;
9206 switch (dep->regindex)
9208 default:
9209 break;
9210 case AR_RSC:
9211 if (regno == AR_BSPSTORE || regno == AR_RNAT)
9213 specs[count++] = tmpl;
9215 break;
9218 else
9220 specs[count++] = tmpl;
9223 else
9225 UNHANDLED;
9227 break;
9229 case IA64_RS_CRX:
9230 /* Handle all CR[REG] resources */
9231 if (note == 0 || note == 1)
9233 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
9235 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
9236 if (regno == dep->regindex)
9238 specs[count++] = tmpl;
9240 else if (!rsrc_write)
9242 /* Reads from CR[IVR] affect other resources. */
9243 if (regno == CR_IVR)
9245 if ((dep->regindex >= CR_IRR0
9246 && dep->regindex <= CR_IRR3)
9247 || dep->regindex == CR_TPR)
9249 specs[count++] = tmpl;
9254 else
9256 specs[count++] = tmpl;
9259 else
9261 UNHANDLED;
9263 break;
9265 case IA64_RS_INSERVICE:
9266 /* look for write of EOI (67) or read of IVR (65) */
9267 if ((idesc->operands[0] == IA64_OPND_CR3
9268 && CURR_SLOT.opnd[0].X_add_number - REG_CR == CR_EOI)
9269 || (idesc->operands[1] == IA64_OPND_CR3
9270 && CURR_SLOT.opnd[1].X_add_number - REG_CR == CR_IVR))
9272 specs[count++] = tmpl;
9274 break;
9276 case IA64_RS_GR0:
9277 if (note == 1)
9279 specs[count++] = tmpl;
9281 else
9283 UNHANDLED;
9285 break;
9287 case IA64_RS_CFM:
9288 if (note != 2)
9290 specs[count++] = tmpl;
9292 else
9294 /* Check if any of the registers accessed are in the rotating region.
9295 mov to/from pr accesses CFM only when qp_regno is in the rotating
9296 region */
9297 for (i = 0; i < NELEMS (idesc->operands); i++)
9299 if (idesc->operands[i] == IA64_OPND_R1
9300 || idesc->operands[i] == IA64_OPND_R2
9301 || idesc->operands[i] == IA64_OPND_R3)
9303 int num = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9304 /* Assumes that md.rot.num_regs is always valid */
9305 if (md.rot.num_regs > 0
9306 && num > 31
9307 && num < 31 + md.rot.num_regs)
9309 specs[count] = tmpl;
9310 specs[count++].specific = 0;
9313 else if (idesc->operands[i] == IA64_OPND_F1
9314 || idesc->operands[i] == IA64_OPND_F2
9315 || idesc->operands[i] == IA64_OPND_F3
9316 || idesc->operands[i] == IA64_OPND_F4)
9318 int num = CURR_SLOT.opnd[i].X_add_number - REG_FR;
9319 if (num > 31)
9321 specs[count] = tmpl;
9322 specs[count++].specific = 0;
9325 else if (idesc->operands[i] == IA64_OPND_P1
9326 || idesc->operands[i] == IA64_OPND_P2)
9328 int num = CURR_SLOT.opnd[i].X_add_number - REG_P;
9329 if (num > 15)
9331 specs[count] = tmpl;
9332 specs[count++].specific = 0;
9336 if (CURR_SLOT.qp_regno > 15)
9338 specs[count] = tmpl;
9339 specs[count++].specific = 0;
9342 break;
9344 /* This is the same as IA64_RS_PRr, except simplified to account for
9345 the fact that there is only one register. */
9346 case IA64_RS_PR63:
9347 if (note == 0)
9349 specs[count++] = tmpl;
9351 else if (note == 7)
9353 valueT mask = 0;
9354 if (idesc->operands[2] == IA64_OPND_IMM17)
9355 mask = CURR_SLOT.opnd[2].X_add_number;
9356 if (mask & ((valueT) 1 << 63))
9357 specs[count++] = tmpl;
9359 else if (note == 11)
9361 if ((idesc->operands[0] == IA64_OPND_P1
9362 && CURR_SLOT.opnd[0].X_add_number - REG_P == 63)
9363 || (idesc->operands[1] == IA64_OPND_P2
9364 && CURR_SLOT.opnd[1].X_add_number - REG_P == 63))
9366 specs[count++] = tmpl;
9369 else if (note == 12)
9371 if (CURR_SLOT.qp_regno == 63)
9373 specs[count++] = tmpl;
9376 else if (note == 1)
9378 if (rsrc_write)
9380 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
9381 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
9382 int or_andcm = strstr (idesc->name, "or.andcm") != NULL;
9383 int and_orcm = strstr (idesc->name, "and.orcm") != NULL;
9385 if (p1 == 63
9386 && (idesc->operands[0] == IA64_OPND_P1
9387 || idesc->operands[0] == IA64_OPND_P2))
9389 specs[count] = tmpl;
9390 specs[count++].cmp_type =
9391 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
9393 if (p2 == 63
9394 && (idesc->operands[1] == IA64_OPND_P1
9395 || idesc->operands[1] == IA64_OPND_P2))
9397 specs[count] = tmpl;
9398 specs[count++].cmp_type =
9399 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
9402 else
9404 if (CURR_SLOT.qp_regno == 63)
9406 specs[count++] = tmpl;
9410 else
9412 UNHANDLED;
9414 break;
9416 case IA64_RS_RSE:
9417 /* FIXME we can identify some individual RSE written resources, but RSE
9418 read resources have not yet been completely identified, so for now
9419 treat RSE as a single resource */
9420 if (strncmp (idesc->name, "mov", 3) == 0)
9422 if (rsrc_write)
9424 if (idesc->operands[0] == IA64_OPND_AR3
9425 && CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE)
9427 specs[count++] = tmpl;
9430 else
9432 if (idesc->operands[0] == IA64_OPND_AR3)
9434 if (CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE
9435 || CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_RNAT)
9437 specs[count++] = tmpl;
9440 else if (idesc->operands[1] == IA64_OPND_AR3)
9442 if (CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSP
9443 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSPSTORE
9444 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_RNAT)
9446 specs[count++] = tmpl;
9451 else
9453 specs[count++] = tmpl;
9455 break;
9457 case IA64_RS_ANY:
9458 /* FIXME -- do any of these need to be non-specific? */
9459 specs[count++] = tmpl;
9460 break;
9462 default:
9463 as_bad (_("Unrecognized dependency specifier %d\n"), dep->specifier);
9464 break;
9467 return count;
9470 /* Clear branch flags on marked resources. This breaks the link between the
9471 QP of the marking instruction and a subsequent branch on the same QP. */
9473 static void
9474 clear_qp_branch_flag (mask)
9475 valueT mask;
9477 int i;
9478 for (i = 0; i < regdepslen; i++)
9480 valueT bit = ((valueT) 1 << regdeps[i].qp_regno);
9481 if ((bit & mask) != 0)
9483 regdeps[i].link_to_qp_branch = 0;
9488 /* MASK contains 2 and only 2 PRs which are mutually exclusive. Remove
9489 any mutexes which contain one of the PRs and create new ones when
9490 needed. */
9492 static int
9493 update_qp_mutex (valueT mask)
9495 int i;
9496 int add = 0;
9498 i = 0;
9499 while (i < qp_mutexeslen)
9501 if ((qp_mutexes[i].prmask & mask) != 0)
9503 /* If it destroys and creates the same mutex, do nothing. */
9504 if (qp_mutexes[i].prmask == mask
9505 && qp_mutexes[i].path == md.path)
9507 i++;
9508 add = -1;
9510 else
9512 int keep = 0;
9514 if (md.debug_dv)
9516 fprintf (stderr, " Clearing mutex relation");
9517 print_prmask (qp_mutexes[i].prmask);
9518 fprintf (stderr, "\n");
9521 /* Deal with the old mutex with more than 3+ PRs only if
9522 the new mutex on the same execution path with it.
9524 FIXME: The 3+ mutex support is incomplete.
9525 dot_pred_rel () may be a better place to fix it. */
9526 if (qp_mutexes[i].path == md.path)
9528 /* If it is a proper subset of the mutex, create a
9529 new mutex. */
9530 if (add == 0
9531 && (qp_mutexes[i].prmask & mask) == mask)
9532 add = 1;
9534 qp_mutexes[i].prmask &= ~mask;
9535 if (qp_mutexes[i].prmask & (qp_mutexes[i].prmask - 1))
9537 /* Modify the mutex if there are more than one
9538 PR left. */
9539 keep = 1;
9540 i++;
9544 if (keep == 0)
9545 /* Remove the mutex. */
9546 qp_mutexes[i] = qp_mutexes[--qp_mutexeslen];
9549 else
9550 ++i;
9553 if (add == 1)
9554 add_qp_mutex (mask);
9556 return add;
9559 /* Remove any mutexes which contain any of the PRs indicated in the mask.
9561 Any changes to a PR clears the mutex relations which include that PR. */
9563 static void
9564 clear_qp_mutex (mask)
9565 valueT mask;
9567 int i;
9569 i = 0;
9570 while (i < qp_mutexeslen)
9572 if ((qp_mutexes[i].prmask & mask) != 0)
9574 if (md.debug_dv)
9576 fprintf (stderr, " Clearing mutex relation");
9577 print_prmask (qp_mutexes[i].prmask);
9578 fprintf (stderr, "\n");
9580 qp_mutexes[i] = qp_mutexes[--qp_mutexeslen];
9582 else
9583 ++i;
9587 /* Clear implies relations which contain PRs in the given masks.
9588 P1_MASK indicates the source of the implies relation, while P2_MASK
9589 indicates the implied PR. */
9591 static void
9592 clear_qp_implies (p1_mask, p2_mask)
9593 valueT p1_mask;
9594 valueT p2_mask;
9596 int i;
9598 i = 0;
9599 while (i < qp_implieslen)
9601 if ((((valueT) 1 << qp_implies[i].p1) & p1_mask) != 0
9602 || (((valueT) 1 << qp_implies[i].p2) & p2_mask) != 0)
9604 if (md.debug_dv)
9605 fprintf (stderr, "Clearing implied relation PR%d->PR%d\n",
9606 qp_implies[i].p1, qp_implies[i].p2);
9607 qp_implies[i] = qp_implies[--qp_implieslen];
9609 else
9610 ++i;
9614 /* Add the PRs specified to the list of implied relations. */
9616 static void
9617 add_qp_imply (p1, p2)
9618 int p1, p2;
9620 valueT mask;
9621 valueT bit;
9622 int i;
9624 /* p0 is not meaningful here. */
9625 if (p1 == 0 || p2 == 0)
9626 abort ();
9628 if (p1 == p2)
9629 return;
9631 /* If it exists already, ignore it. */
9632 for (i = 0; i < qp_implieslen; i++)
9634 if (qp_implies[i].p1 == p1
9635 && qp_implies[i].p2 == p2
9636 && qp_implies[i].path == md.path
9637 && !qp_implies[i].p2_branched)
9638 return;
9641 if (qp_implieslen == qp_impliestotlen)
9643 qp_impliestotlen += 20;
9644 qp_implies = (struct qp_imply *)
9645 xrealloc ((void *) qp_implies,
9646 qp_impliestotlen * sizeof (struct qp_imply));
9648 if (md.debug_dv)
9649 fprintf (stderr, " Registering PR%d implies PR%d\n", p1, p2);
9650 qp_implies[qp_implieslen].p1 = p1;
9651 qp_implies[qp_implieslen].p2 = p2;
9652 qp_implies[qp_implieslen].path = md.path;
9653 qp_implies[qp_implieslen++].p2_branched = 0;
9655 /* Add in the implied transitive relations; for everything that p2 implies,
9656 make p1 imply that, too; for everything that implies p1, make it imply p2
9657 as well. */
9658 for (i = 0; i < qp_implieslen; i++)
9660 if (qp_implies[i].p1 == p2)
9661 add_qp_imply (p1, qp_implies[i].p2);
9662 if (qp_implies[i].p2 == p1)
9663 add_qp_imply (qp_implies[i].p1, p2);
9665 /* Add in mutex relations implied by this implies relation; for each mutex
9666 relation containing p2, duplicate it and replace p2 with p1. */
9667 bit = (valueT) 1 << p1;
9668 mask = (valueT) 1 << p2;
9669 for (i = 0; i < qp_mutexeslen; i++)
9671 if (qp_mutexes[i].prmask & mask)
9672 add_qp_mutex ((qp_mutexes[i].prmask & ~mask) | bit);
9676 /* Add the PRs specified in the mask to the mutex list; this means that only
9677 one of the PRs can be true at any time. PR0 should never be included in
9678 the mask. */
9680 static void
9681 add_qp_mutex (mask)
9682 valueT mask;
9684 if (mask & 0x1)
9685 abort ();
9687 if (qp_mutexeslen == qp_mutexestotlen)
9689 qp_mutexestotlen += 20;
9690 qp_mutexes = (struct qpmutex *)
9691 xrealloc ((void *) qp_mutexes,
9692 qp_mutexestotlen * sizeof (struct qpmutex));
9694 if (md.debug_dv)
9696 fprintf (stderr, " Registering mutex on");
9697 print_prmask (mask);
9698 fprintf (stderr, "\n");
9700 qp_mutexes[qp_mutexeslen].path = md.path;
9701 qp_mutexes[qp_mutexeslen++].prmask = mask;
9704 static int
9705 has_suffix_p (name, suffix)
9706 const char *name;
9707 const char *suffix;
9709 size_t namelen = strlen (name);
9710 size_t sufflen = strlen (suffix);
9712 if (namelen <= sufflen)
9713 return 0;
9714 return strcmp (name + namelen - sufflen, suffix) == 0;
9717 static void
9718 clear_register_values ()
9720 int i;
9721 if (md.debug_dv)
9722 fprintf (stderr, " Clearing register values\n");
9723 for (i = 1; i < NELEMS (gr_values); i++)
9724 gr_values[i].known = 0;
9727 /* Keep track of register values/changes which affect DV tracking.
9729 optimization note: should add a flag to classes of insns where otherwise we
9730 have to examine a group of strings to identify them. */
9732 static void
9733 note_register_values (idesc)
9734 struct ia64_opcode *idesc;
9736 valueT qp_changemask = 0;
9737 int i;
9739 /* Invalidate values for registers being written to. */
9740 for (i = 0; i < idesc->num_outputs; i++)
9742 if (idesc->operands[i] == IA64_OPND_R1
9743 || idesc->operands[i] == IA64_OPND_R2
9744 || idesc->operands[i] == IA64_OPND_R3)
9746 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9747 if (regno > 0 && regno < NELEMS (gr_values))
9748 gr_values[regno].known = 0;
9750 else if (idesc->operands[i] == IA64_OPND_R3_2)
9752 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9753 if (regno > 0 && regno < 4)
9754 gr_values[regno].known = 0;
9756 else if (idesc->operands[i] == IA64_OPND_P1
9757 || idesc->operands[i] == IA64_OPND_P2)
9759 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
9760 qp_changemask |= (valueT) 1 << regno;
9762 else if (idesc->operands[i] == IA64_OPND_PR)
9764 if (idesc->operands[2] & (valueT) 0x10000)
9765 qp_changemask = ~(valueT) 0x1FFFF | idesc->operands[2];
9766 else
9767 qp_changemask = idesc->operands[2];
9768 break;
9770 else if (idesc->operands[i] == IA64_OPND_PR_ROT)
9772 if (idesc->operands[1] & ((valueT) 1 << 43))
9773 qp_changemask = -((valueT) 1 << 44) | idesc->operands[1];
9774 else
9775 qp_changemask = idesc->operands[1];
9776 qp_changemask &= ~(valueT) 0xFFFF;
9777 break;
9781 /* Always clear qp branch flags on any PR change. */
9782 /* FIXME there may be exceptions for certain compares. */
9783 clear_qp_branch_flag (qp_changemask);
9785 /* Invalidate rotating registers on insns which affect RRBs in CFM. */
9786 if (idesc->flags & IA64_OPCODE_MOD_RRBS)
9788 qp_changemask |= ~(valueT) 0xFFFF;
9789 if (strcmp (idesc->name, "clrrrb.pr") != 0)
9791 for (i = 32; i < 32 + md.rot.num_regs; i++)
9792 gr_values[i].known = 0;
9794 clear_qp_mutex (qp_changemask);
9795 clear_qp_implies (qp_changemask, qp_changemask);
9797 /* After a call, all register values are undefined, except those marked
9798 as "safe". */
9799 else if (strncmp (idesc->name, "br.call", 6) == 0
9800 || strncmp (idesc->name, "brl.call", 7) == 0)
9802 /* FIXME keep GR values which are marked as "safe_across_calls" */
9803 clear_register_values ();
9804 clear_qp_mutex (~qp_safe_across_calls);
9805 clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls);
9806 clear_qp_branch_flag (~qp_safe_across_calls);
9808 else if (is_interruption_or_rfi (idesc)
9809 || is_taken_branch (idesc))
9811 clear_register_values ();
9812 clear_qp_mutex (~(valueT) 0);
9813 clear_qp_implies (~(valueT) 0, ~(valueT) 0);
9815 /* Look for mutex and implies relations. */
9816 else if ((idesc->operands[0] == IA64_OPND_P1
9817 || idesc->operands[0] == IA64_OPND_P2)
9818 && (idesc->operands[1] == IA64_OPND_P1
9819 || idesc->operands[1] == IA64_OPND_P2))
9821 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
9822 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
9823 valueT p1mask = (p1 != 0) ? (valueT) 1 << p1 : 0;
9824 valueT p2mask = (p2 != 0) ? (valueT) 1 << p2 : 0;
9826 /* If both PRs are PR0, we can't really do anything. */
9827 if (p1 == 0 && p2 == 0)
9829 if (md.debug_dv)
9830 fprintf (stderr, " Ignoring PRs due to inclusion of p0\n");
9832 /* In general, clear mutexes and implies which include P1 or P2,
9833 with the following exceptions. */
9834 else if (has_suffix_p (idesc->name, ".or.andcm")
9835 || has_suffix_p (idesc->name, ".and.orcm"))
9837 clear_qp_implies (p2mask, p1mask);
9839 else if (has_suffix_p (idesc->name, ".andcm")
9840 || has_suffix_p (idesc->name, ".and"))
9842 clear_qp_implies (0, p1mask | p2mask);
9844 else if (has_suffix_p (idesc->name, ".orcm")
9845 || has_suffix_p (idesc->name, ".or"))
9847 clear_qp_mutex (p1mask | p2mask);
9848 clear_qp_implies (p1mask | p2mask, 0);
9850 else
9852 int added = 0;
9854 clear_qp_implies (p1mask | p2mask, p1mask | p2mask);
9856 /* If one of the PRs is PR0, we call clear_qp_mutex. */
9857 if (p1 == 0 || p2 == 0)
9858 clear_qp_mutex (p1mask | p2mask);
9859 else
9860 added = update_qp_mutex (p1mask | p2mask);
9862 if (CURR_SLOT.qp_regno == 0
9863 || has_suffix_p (idesc->name, ".unc"))
9865 if (added == 0 && p1 && p2)
9866 add_qp_mutex (p1mask | p2mask);
9867 if (CURR_SLOT.qp_regno != 0)
9869 if (p1)
9870 add_qp_imply (p1, CURR_SLOT.qp_regno);
9871 if (p2)
9872 add_qp_imply (p2, CURR_SLOT.qp_regno);
9877 /* Look for mov imm insns into GRs. */
9878 else if (idesc->operands[0] == IA64_OPND_R1
9879 && (idesc->operands[1] == IA64_OPND_IMM22
9880 || idesc->operands[1] == IA64_OPND_IMMU64)
9881 && CURR_SLOT.opnd[1].X_op == O_constant
9882 && (strcmp (idesc->name, "mov") == 0
9883 || strcmp (idesc->name, "movl") == 0))
9885 int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR;
9886 if (regno > 0 && regno < NELEMS (gr_values))
9888 gr_values[regno].known = 1;
9889 gr_values[regno].value = CURR_SLOT.opnd[1].X_add_number;
9890 gr_values[regno].path = md.path;
9891 if (md.debug_dv)
9893 fprintf (stderr, " Know gr%d = ", regno);
9894 fprintf_vma (stderr, gr_values[regno].value);
9895 fputs ("\n", stderr);
9899 /* Look for dep.z imm insns. */
9900 else if (idesc->operands[0] == IA64_OPND_R1
9901 && idesc->operands[1] == IA64_OPND_IMM8
9902 && strcmp (idesc->name, "dep.z") == 0)
9904 int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR;
9905 if (regno > 0 && regno < NELEMS (gr_values))
9907 valueT value = CURR_SLOT.opnd[1].X_add_number;
9909 if (CURR_SLOT.opnd[3].X_add_number < 64)
9910 value &= ((valueT)1 << CURR_SLOT.opnd[3].X_add_number) - 1;
9911 value <<= CURR_SLOT.opnd[2].X_add_number;
9912 gr_values[regno].known = 1;
9913 gr_values[regno].value = value;
9914 gr_values[regno].path = md.path;
9915 if (md.debug_dv)
9917 fprintf (stderr, " Know gr%d = ", regno);
9918 fprintf_vma (stderr, gr_values[regno].value);
9919 fputs ("\n", stderr);
9923 else
9925 clear_qp_mutex (qp_changemask);
9926 clear_qp_implies (qp_changemask, qp_changemask);
9930 /* Return whether the given predicate registers are currently mutex. */
9932 static int
9933 qp_mutex (p1, p2, path)
9934 int p1;
9935 int p2;
9936 int path;
9938 int i;
9939 valueT mask;
9941 if (p1 != p2)
9943 mask = ((valueT) 1 << p1) | (valueT) 1 << p2;
9944 for (i = 0; i < qp_mutexeslen; i++)
9946 if (qp_mutexes[i].path >= path
9947 && (qp_mutexes[i].prmask & mask) == mask)
9948 return 1;
9951 return 0;
9954 /* Return whether the given resource is in the given insn's list of chks
9955 Return 1 if the conflict is absolutely determined, 2 if it's a potential
9956 conflict. */
9958 static int
9959 resources_match (rs, idesc, note, qp_regno, path)
9960 struct rsrc *rs;
9961 struct ia64_opcode *idesc;
9962 int note;
9963 int qp_regno;
9964 int path;
9966 struct rsrc specs[MAX_SPECS];
9967 int count;
9969 /* If the marked resource's qp_regno and the given qp_regno are mutex,
9970 we don't need to check. One exception is note 11, which indicates that
9971 target predicates are written regardless of PR[qp]. */
9972 if (qp_mutex (rs->qp_regno, qp_regno, path)
9973 && note != 11)
9974 return 0;
9976 count = specify_resource (rs->dependency, idesc, DV_CHK, specs, note, path);
9977 while (count-- > 0)
9979 /* UNAT checking is a bit more specific than other resources */
9980 if (rs->dependency->specifier == IA64_RS_AR_UNAT
9981 && specs[count].mem_offset.hint
9982 && rs->mem_offset.hint)
9984 if (rs->mem_offset.base == specs[count].mem_offset.base)
9986 if (((rs->mem_offset.offset >> 3) & 0x3F) ==
9987 ((specs[count].mem_offset.offset >> 3) & 0x3F))
9988 return 1;
9989 else
9990 continue;
9994 /* Skip apparent PR write conflicts where both writes are an AND or both
9995 writes are an OR. */
9996 if (rs->dependency->specifier == IA64_RS_PR
9997 || rs->dependency->specifier == IA64_RS_PRr
9998 || rs->dependency->specifier == IA64_RS_PR63)
10000 if (specs[count].cmp_type != CMP_NONE
10001 && specs[count].cmp_type == rs->cmp_type)
10003 if (md.debug_dv)
10004 fprintf (stderr, " %s on parallel compare allowed (PR%d)\n",
10005 dv_mode[rs->dependency->mode],
10006 rs->dependency->specifier != IA64_RS_PR63 ?
10007 specs[count].index : 63);
10008 continue;
10010 if (md.debug_dv)
10011 fprintf (stderr,
10012 " %s on parallel compare conflict %s vs %s on PR%d\n",
10013 dv_mode[rs->dependency->mode],
10014 dv_cmp_type[rs->cmp_type],
10015 dv_cmp_type[specs[count].cmp_type],
10016 rs->dependency->specifier != IA64_RS_PR63 ?
10017 specs[count].index : 63);
10021 /* If either resource is not specific, conservatively assume a conflict
10023 if (!specs[count].specific || !rs->specific)
10024 return 2;
10025 else if (specs[count].index == rs->index)
10026 return 1;
10029 return 0;
10032 /* Indicate an instruction group break; if INSERT_STOP is non-zero, then
10033 insert a stop to create the break. Update all resource dependencies
10034 appropriately. If QP_REGNO is non-zero, only apply the break to resources
10035 which use the same QP_REGNO and have the link_to_qp_branch flag set.
10036 If SAVE_CURRENT is non-zero, don't affect resources marked by the current
10037 instruction. */
10039 static void
10040 insn_group_break (insert_stop, qp_regno, save_current)
10041 int insert_stop;
10042 int qp_regno;
10043 int save_current;
10045 int i;
10047 if (insert_stop && md.num_slots_in_use > 0)
10048 PREV_SLOT.end_of_insn_group = 1;
10050 if (md.debug_dv)
10052 fprintf (stderr, " Insn group break%s",
10053 (insert_stop ? " (w/stop)" : ""));
10054 if (qp_regno != 0)
10055 fprintf (stderr, " effective for QP=%d", qp_regno);
10056 fprintf (stderr, "\n");
10059 i = 0;
10060 while (i < regdepslen)
10062 const struct ia64_dependency *dep = regdeps[i].dependency;
10064 if (qp_regno != 0
10065 && regdeps[i].qp_regno != qp_regno)
10067 ++i;
10068 continue;
10071 if (save_current
10072 && CURR_SLOT.src_file == regdeps[i].file
10073 && CURR_SLOT.src_line == regdeps[i].line)
10075 ++i;
10076 continue;
10079 /* clear dependencies which are automatically cleared by a stop, or
10080 those that have reached the appropriate state of insn serialization */
10081 if (dep->semantics == IA64_DVS_IMPLIED
10082 || dep->semantics == IA64_DVS_IMPLIEDF
10083 || regdeps[i].insn_srlz == STATE_SRLZ)
10085 print_dependency ("Removing", i);
10086 regdeps[i] = regdeps[--regdepslen];
10088 else
10090 if (dep->semantics == IA64_DVS_DATA
10091 || dep->semantics == IA64_DVS_INSTR
10092 || dep->semantics == IA64_DVS_SPECIFIC)
10094 if (regdeps[i].insn_srlz == STATE_NONE)
10095 regdeps[i].insn_srlz = STATE_STOP;
10096 if (regdeps[i].data_srlz == STATE_NONE)
10097 regdeps[i].data_srlz = STATE_STOP;
10099 ++i;
10104 /* Add the given resource usage spec to the list of active dependencies. */
10106 static void
10107 mark_resource (idesc, dep, spec, depind, path)
10108 struct ia64_opcode *idesc ATTRIBUTE_UNUSED;
10109 const struct ia64_dependency *dep ATTRIBUTE_UNUSED;
10110 struct rsrc *spec;
10111 int depind;
10112 int path;
10114 if (regdepslen == regdepstotlen)
10116 regdepstotlen += 20;
10117 regdeps = (struct rsrc *)
10118 xrealloc ((void *) regdeps,
10119 regdepstotlen * sizeof (struct rsrc));
10122 regdeps[regdepslen] = *spec;
10123 regdeps[regdepslen].depind = depind;
10124 regdeps[regdepslen].path = path;
10125 regdeps[regdepslen].file = CURR_SLOT.src_file;
10126 regdeps[regdepslen].line = CURR_SLOT.src_line;
10128 print_dependency ("Adding", regdepslen);
10130 ++regdepslen;
10133 static void
10134 print_dependency (action, depind)
10135 const char *action;
10136 int depind;
10138 if (md.debug_dv)
10140 fprintf (stderr, " %s %s '%s'",
10141 action, dv_mode[(regdeps[depind].dependency)->mode],
10142 (regdeps[depind].dependency)->name);
10143 if (regdeps[depind].specific && regdeps[depind].index >= 0)
10144 fprintf (stderr, " (%d)", regdeps[depind].index);
10145 if (regdeps[depind].mem_offset.hint)
10147 fputs (" ", stderr);
10148 fprintf_vma (stderr, regdeps[depind].mem_offset.base);
10149 fputs ("+", stderr);
10150 fprintf_vma (stderr, regdeps[depind].mem_offset.offset);
10152 fprintf (stderr, "\n");
10156 static void
10157 instruction_serialization ()
10159 int i;
10160 if (md.debug_dv)
10161 fprintf (stderr, " Instruction serialization\n");
10162 for (i = 0; i < regdepslen; i++)
10163 if (regdeps[i].insn_srlz == STATE_STOP)
10164 regdeps[i].insn_srlz = STATE_SRLZ;
10167 static void
10168 data_serialization ()
10170 int i = 0;
10171 if (md.debug_dv)
10172 fprintf (stderr, " Data serialization\n");
10173 while (i < regdepslen)
10175 if (regdeps[i].data_srlz == STATE_STOP
10176 /* Note: as of 991210, all "other" dependencies are cleared by a
10177 data serialization. This might change with new tables */
10178 || (regdeps[i].dependency)->semantics == IA64_DVS_OTHER)
10180 print_dependency ("Removing", i);
10181 regdeps[i] = regdeps[--regdepslen];
10183 else
10184 ++i;
10188 /* Insert stops and serializations as needed to avoid DVs. */
10190 static void
10191 remove_marked_resource (rs)
10192 struct rsrc *rs;
10194 switch (rs->dependency->semantics)
10196 case IA64_DVS_SPECIFIC:
10197 if (md.debug_dv)
10198 fprintf (stderr, "Implementation-specific, assume worst case...\n");
10199 /* ...fall through... */
10200 case IA64_DVS_INSTR:
10201 if (md.debug_dv)
10202 fprintf (stderr, "Inserting instr serialization\n");
10203 if (rs->insn_srlz < STATE_STOP)
10204 insn_group_break (1, 0, 0);
10205 if (rs->insn_srlz < STATE_SRLZ)
10207 struct slot oldslot = CURR_SLOT;
10208 /* Manually jam a srlz.i insn into the stream */
10209 memset (&CURR_SLOT, 0, sizeof (CURR_SLOT));
10210 CURR_SLOT.user_template = -1;
10211 CURR_SLOT.idesc = ia64_find_opcode ("srlz.i");
10212 instruction_serialization ();
10213 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
10214 if (++md.num_slots_in_use >= NUM_SLOTS)
10215 emit_one_bundle ();
10216 CURR_SLOT = oldslot;
10218 insn_group_break (1, 0, 0);
10219 break;
10220 case IA64_DVS_OTHER: /* as of rev2 (991220) of the DV tables, all
10221 "other" types of DV are eliminated
10222 by a data serialization */
10223 case IA64_DVS_DATA:
10224 if (md.debug_dv)
10225 fprintf (stderr, "Inserting data serialization\n");
10226 if (rs->data_srlz < STATE_STOP)
10227 insn_group_break (1, 0, 0);
10229 struct slot oldslot = CURR_SLOT;
10230 /* Manually jam a srlz.d insn into the stream */
10231 memset (&CURR_SLOT, 0, sizeof (CURR_SLOT));
10232 CURR_SLOT.user_template = -1;
10233 CURR_SLOT.idesc = ia64_find_opcode ("srlz.d");
10234 data_serialization ();
10235 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
10236 if (++md.num_slots_in_use >= NUM_SLOTS)
10237 emit_one_bundle ();
10238 CURR_SLOT = oldslot;
10240 break;
10241 case IA64_DVS_IMPLIED:
10242 case IA64_DVS_IMPLIEDF:
10243 if (md.debug_dv)
10244 fprintf (stderr, "Inserting stop\n");
10245 insn_group_break (1, 0, 0);
10246 break;
10247 default:
10248 break;
10252 /* Check the resources used by the given opcode against the current dependency
10253 list.
10255 The check is run once for each execution path encountered. In this case,
10256 a unique execution path is the sequence of instructions following a code
10257 entry point, e.g. the following has three execution paths, one starting
10258 at L0, one at L1, and one at L2.
10260 L0: nop
10261 L1: add
10262 L2: add
10263 br.ret
10266 static void
10267 check_dependencies (idesc)
10268 struct ia64_opcode *idesc;
10270 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
10271 int path;
10272 int i;
10274 /* Note that the number of marked resources may change within the
10275 loop if in auto mode. */
10276 i = 0;
10277 while (i < regdepslen)
10279 struct rsrc *rs = &regdeps[i];
10280 const struct ia64_dependency *dep = rs->dependency;
10281 int chkind;
10282 int note;
10283 int start_over = 0;
10285 if (dep->semantics == IA64_DVS_NONE
10286 || (chkind = depends_on (rs->depind, idesc)) == -1)
10288 ++i;
10289 continue;
10292 note = NOTE (opdeps->chks[chkind]);
10294 /* Check this resource against each execution path seen thus far. */
10295 for (path = 0; path <= md.path; path++)
10297 int matchtype;
10299 /* If the dependency wasn't on the path being checked, ignore it. */
10300 if (rs->path < path)
10301 continue;
10303 /* If the QP for this insn implies a QP which has branched, don't
10304 bother checking. Ed. NOTE: I don't think this check is terribly
10305 useful; what's the point of generating code which will only be
10306 reached if its QP is zero?
10307 This code was specifically inserted to handle the following code,
10308 based on notes from Intel's DV checking code, where p1 implies p2.
10310 mov r4 = 2
10311 (p2) br.cond L
10312 (p1) mov r4 = 7
10314 if (CURR_SLOT.qp_regno != 0)
10316 int skip = 0;
10317 int implies;
10318 for (implies = 0; implies < qp_implieslen; implies++)
10320 if (qp_implies[implies].path >= path
10321 && qp_implies[implies].p1 == CURR_SLOT.qp_regno
10322 && qp_implies[implies].p2_branched)
10324 skip = 1;
10325 break;
10328 if (skip)
10329 continue;
10332 if ((matchtype = resources_match (rs, idesc, note,
10333 CURR_SLOT.qp_regno, path)) != 0)
10335 char msg[1024];
10336 char pathmsg[256] = "";
10337 char indexmsg[256] = "";
10338 int certain = (matchtype == 1 && CURR_SLOT.qp_regno == 0);
10340 if (path != 0)
10341 sprintf (pathmsg, " when entry is at label '%s'",
10342 md.entry_labels[path - 1]);
10343 if (matchtype == 1 && rs->index >= 0)
10344 sprintf (indexmsg, ", specific resource number is %d",
10345 rs->index);
10346 sprintf (msg, "Use of '%s' %s %s dependency '%s' (%s)%s%s",
10347 idesc->name,
10348 (certain ? "violates" : "may violate"),
10349 dv_mode[dep->mode], dep->name,
10350 dv_sem[dep->semantics],
10351 pathmsg, indexmsg);
10353 if (md.explicit_mode)
10355 as_warn ("%s", msg);
10356 if (path < md.path)
10357 as_warn (_("Only the first path encountering the conflict "
10358 "is reported"));
10359 as_warn_where (rs->file, rs->line,
10360 _("This is the location of the "
10361 "conflicting usage"));
10362 /* Don't bother checking other paths, to avoid duplicating
10363 the same warning */
10364 break;
10366 else
10368 if (md.debug_dv)
10369 fprintf (stderr, "%s @ %s:%d\n", msg, rs->file, rs->line);
10371 remove_marked_resource (rs);
10373 /* since the set of dependencies has changed, start over */
10374 /* FIXME -- since we're removing dvs as we go, we
10375 probably don't really need to start over... */
10376 start_over = 1;
10377 break;
10381 if (start_over)
10382 i = 0;
10383 else
10384 ++i;
10388 /* Register new dependencies based on the given opcode. */
10390 static void
10391 mark_resources (idesc)
10392 struct ia64_opcode *idesc;
10394 int i;
10395 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
10396 int add_only_qp_reads = 0;
10398 /* A conditional branch only uses its resources if it is taken; if it is
10399 taken, we stop following that path. The other branch types effectively
10400 *always* write their resources. If it's not taken, register only QP
10401 reads. */
10402 if (is_conditional_branch (idesc) || is_interruption_or_rfi (idesc))
10404 add_only_qp_reads = 1;
10407 if (md.debug_dv)
10408 fprintf (stderr, "Registering '%s' resource usage\n", idesc->name);
10410 for (i = 0; i < opdeps->nregs; i++)
10412 const struct ia64_dependency *dep;
10413 struct rsrc specs[MAX_SPECS];
10414 int note;
10415 int path;
10416 int count;
10418 dep = ia64_find_dependency (opdeps->regs[i]);
10419 note = NOTE (opdeps->regs[i]);
10421 if (add_only_qp_reads
10422 && !(dep->mode == IA64_DV_WAR
10423 && (dep->specifier == IA64_RS_PR
10424 || dep->specifier == IA64_RS_PRr
10425 || dep->specifier == IA64_RS_PR63)))
10426 continue;
10428 count = specify_resource (dep, idesc, DV_REG, specs, note, md.path);
10430 while (count-- > 0)
10432 mark_resource (idesc, dep, &specs[count],
10433 DEP (opdeps->regs[i]), md.path);
10436 /* The execution path may affect register values, which may in turn
10437 affect which indirect-access resources are accessed. */
10438 switch (dep->specifier)
10440 default:
10441 break;
10442 case IA64_RS_CPUID:
10443 case IA64_RS_DBR:
10444 case IA64_RS_IBR:
10445 case IA64_RS_MSR:
10446 case IA64_RS_PKR:
10447 case IA64_RS_PMC:
10448 case IA64_RS_PMD:
10449 case IA64_RS_RR:
10450 for (path = 0; path < md.path; path++)
10452 count = specify_resource (dep, idesc, DV_REG, specs, note, path);
10453 while (count-- > 0)
10454 mark_resource (idesc, dep, &specs[count],
10455 DEP (opdeps->regs[i]), path);
10457 break;
10462 /* Remove dependencies when they no longer apply. */
10464 static void
10465 update_dependencies (idesc)
10466 struct ia64_opcode *idesc;
10468 int i;
10470 if (strcmp (idesc->name, "srlz.i") == 0)
10472 instruction_serialization ();
10474 else if (strcmp (idesc->name, "srlz.d") == 0)
10476 data_serialization ();
10478 else if (is_interruption_or_rfi (idesc)
10479 || is_taken_branch (idesc))
10481 /* Although technically the taken branch doesn't clear dependencies
10482 which require a srlz.[id], we don't follow the branch; the next
10483 instruction is assumed to start with a clean slate. */
10484 regdepslen = 0;
10485 md.path = 0;
10487 else if (is_conditional_branch (idesc)
10488 && CURR_SLOT.qp_regno != 0)
10490 int is_call = strstr (idesc->name, ".call") != NULL;
10492 for (i = 0; i < qp_implieslen; i++)
10494 /* If the conditional branch's predicate is implied by the predicate
10495 in an existing dependency, remove that dependency. */
10496 if (qp_implies[i].p2 == CURR_SLOT.qp_regno)
10498 int depind = 0;
10499 /* Note that this implied predicate takes a branch so that if
10500 a later insn generates a DV but its predicate implies this
10501 one, we can avoid the false DV warning. */
10502 qp_implies[i].p2_branched = 1;
10503 while (depind < regdepslen)
10505 if (regdeps[depind].qp_regno == qp_implies[i].p1)
10507 print_dependency ("Removing", depind);
10508 regdeps[depind] = regdeps[--regdepslen];
10510 else
10511 ++depind;
10515 /* Any marked resources which have this same predicate should be
10516 cleared, provided that the QP hasn't been modified between the
10517 marking instruction and the branch. */
10518 if (is_call)
10520 insn_group_break (0, CURR_SLOT.qp_regno, 1);
10522 else
10524 i = 0;
10525 while (i < regdepslen)
10527 if (regdeps[i].qp_regno == CURR_SLOT.qp_regno
10528 && regdeps[i].link_to_qp_branch
10529 && (regdeps[i].file != CURR_SLOT.src_file
10530 || regdeps[i].line != CURR_SLOT.src_line))
10532 /* Treat like a taken branch */
10533 print_dependency ("Removing", i);
10534 regdeps[i] = regdeps[--regdepslen];
10536 else
10537 ++i;
10543 /* Examine the current instruction for dependency violations. */
10545 static int
10546 check_dv (idesc)
10547 struct ia64_opcode *idesc;
10549 if (md.debug_dv)
10551 fprintf (stderr, "Checking %s for violations (line %d, %d/%d)\n",
10552 idesc->name, CURR_SLOT.src_line,
10553 idesc->dependencies->nchks,
10554 idesc->dependencies->nregs);
10557 /* Look through the list of currently marked resources; if the current
10558 instruction has the dependency in its chks list which uses that resource,
10559 check against the specific resources used. */
10560 check_dependencies (idesc);
10562 /* Look up the instruction's regdeps (RAW writes, WAW writes, and WAR reads),
10563 then add them to the list of marked resources. */
10564 mark_resources (idesc);
10566 /* There are several types of dependency semantics, and each has its own
10567 requirements for being cleared
10569 Instruction serialization (insns separated by interruption, rfi, or
10570 writer + srlz.i + reader, all in separate groups) clears DVS_INSTR.
10572 Data serialization (instruction serialization, or writer + srlz.d +
10573 reader, where writer and srlz.d are in separate groups) clears
10574 DVS_DATA. (This also clears DVS_OTHER, but that is not guaranteed to
10575 always be the case).
10577 Instruction group break (groups separated by stop, taken branch,
10578 interruption or rfi) clears DVS_IMPLIED and DVS_IMPLIEDF.
10580 update_dependencies (idesc);
10582 /* Sometimes, knowing a register value allows us to avoid giving a false DV
10583 warning. Keep track of as many as possible that are useful. */
10584 note_register_values (idesc);
10586 /* We don't need or want this anymore. */
10587 md.mem_offset.hint = 0;
10589 return 0;
10592 /* Translate one line of assembly. Pseudo ops and labels do not show
10593 here. */
10594 void
10595 md_assemble (str)
10596 char *str;
10598 char *saved_input_line_pointer, *mnemonic;
10599 const struct pseudo_opcode *pdesc;
10600 struct ia64_opcode *idesc;
10601 unsigned char qp_regno;
10602 unsigned int flags;
10603 int ch;
10605 saved_input_line_pointer = input_line_pointer;
10606 input_line_pointer = str;
10608 /* extract the opcode (mnemonic): */
10610 mnemonic = input_line_pointer;
10611 ch = get_symbol_end ();
10612 pdesc = (struct pseudo_opcode *) hash_find (md.pseudo_hash, mnemonic);
10613 if (pdesc)
10615 *input_line_pointer = ch;
10616 (*pdesc->handler) (pdesc->arg);
10617 goto done;
10620 /* Find the instruction descriptor matching the arguments. */
10622 idesc = ia64_find_opcode (mnemonic);
10623 *input_line_pointer = ch;
10624 if (!idesc)
10626 as_bad ("Unknown opcode `%s'", mnemonic);
10627 goto done;
10630 idesc = parse_operands (idesc);
10631 if (!idesc)
10632 goto done;
10634 /* Handle the dynamic ops we can handle now: */
10635 if (idesc->type == IA64_TYPE_DYN)
10637 if (strcmp (idesc->name, "add") == 0)
10639 if (CURR_SLOT.opnd[2].X_op == O_register
10640 && CURR_SLOT.opnd[2].X_add_number < 4)
10641 mnemonic = "addl";
10642 else
10643 mnemonic = "adds";
10644 ia64_free_opcode (idesc);
10645 idesc = ia64_find_opcode (mnemonic);
10647 else if (strcmp (idesc->name, "mov") == 0)
10649 enum ia64_opnd opnd1, opnd2;
10650 int rop;
10652 opnd1 = idesc->operands[0];
10653 opnd2 = idesc->operands[1];
10654 if (opnd1 == IA64_OPND_AR3)
10655 rop = 0;
10656 else if (opnd2 == IA64_OPND_AR3)
10657 rop = 1;
10658 else
10659 abort ();
10660 if (CURR_SLOT.opnd[rop].X_op == O_register)
10662 if (ar_is_only_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number))
10663 mnemonic = "mov.i";
10664 else if (ar_is_only_in_memory_unit (CURR_SLOT.opnd[rop].X_add_number))
10665 mnemonic = "mov.m";
10666 else
10667 rop = -1;
10669 else
10670 abort ();
10671 if (rop >= 0)
10673 ia64_free_opcode (idesc);
10674 idesc = ia64_find_opcode (mnemonic);
10675 while (idesc != NULL
10676 && (idesc->operands[0] != opnd1
10677 || idesc->operands[1] != opnd2))
10678 idesc = get_next_opcode (idesc);
10682 else if (strcmp (idesc->name, "mov.i") == 0
10683 || strcmp (idesc->name, "mov.m") == 0)
10685 enum ia64_opnd opnd1, opnd2;
10686 int rop;
10688 opnd1 = idesc->operands[0];
10689 opnd2 = idesc->operands[1];
10690 if (opnd1 == IA64_OPND_AR3)
10691 rop = 0;
10692 else if (opnd2 == IA64_OPND_AR3)
10693 rop = 1;
10694 else
10695 abort ();
10696 if (CURR_SLOT.opnd[rop].X_op == O_register)
10698 char unit = 'a';
10699 if (ar_is_only_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number))
10700 unit = 'i';
10701 else if (ar_is_only_in_memory_unit (CURR_SLOT.opnd[rop].X_add_number))
10702 unit = 'm';
10703 if (unit != 'a' && unit != idesc->name [4])
10704 as_bad ("AR %d cannot be accessed by %c-unit",
10705 (int) (CURR_SLOT.opnd[rop].X_add_number - REG_AR),
10706 TOUPPER (unit));
10709 else if (strcmp (idesc->name, "hint.b") == 0)
10711 switch (md.hint_b)
10713 case hint_b_ok:
10714 break;
10715 case hint_b_warning:
10716 as_warn ("hint.b may be treated as nop");
10717 break;
10718 case hint_b_error:
10719 as_bad ("hint.b shouldn't be used");
10720 break;
10724 qp_regno = 0;
10725 if (md.qp.X_op == O_register)
10727 qp_regno = md.qp.X_add_number - REG_P;
10728 md.qp.X_op = O_absent;
10731 flags = idesc->flags;
10733 if ((flags & IA64_OPCODE_FIRST) != 0)
10735 /* The alignment frag has to end with a stop bit only if the
10736 next instruction after the alignment directive has to be
10737 the first instruction in an instruction group. */
10738 if (align_frag)
10740 while (align_frag->fr_type != rs_align_code)
10742 align_frag = align_frag->fr_next;
10743 if (!align_frag)
10744 break;
10746 /* align_frag can be NULL if there are directives in
10747 between. */
10748 if (align_frag && align_frag->fr_next == frag_now)
10749 align_frag->tc_frag_data = 1;
10752 insn_group_break (1, 0, 0);
10754 align_frag = NULL;
10756 if ((flags & IA64_OPCODE_NO_PRED) != 0 && qp_regno != 0)
10758 as_bad ("`%s' cannot be predicated", idesc->name);
10759 goto done;
10762 /* Build the instruction. */
10763 CURR_SLOT.qp_regno = qp_regno;
10764 CURR_SLOT.idesc = idesc;
10765 as_where (&CURR_SLOT.src_file, &CURR_SLOT.src_line);
10766 dwarf2_where (&CURR_SLOT.debug_line);
10768 /* Add unwind entry, if there is one. */
10769 if (unwind.current_entry)
10771 CURR_SLOT.unwind_record = unwind.current_entry;
10772 unwind.current_entry = NULL;
10774 if (unwind.proc_start && S_IS_DEFINED (unwind.proc_start))
10775 unwind.insn = 1;
10777 /* Check for dependency violations. */
10778 if (md.detect_dv)
10779 check_dv (idesc);
10781 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
10782 if (++md.num_slots_in_use >= NUM_SLOTS)
10783 emit_one_bundle ();
10785 if ((flags & IA64_OPCODE_LAST) != 0)
10786 insn_group_break (1, 0, 0);
10788 md.last_text_seg = now_seg;
10790 done:
10791 input_line_pointer = saved_input_line_pointer;
10794 /* Called when symbol NAME cannot be found in the symbol table.
10795 Should be used for dynamic valued symbols only. */
10797 symbolS *
10798 md_undefined_symbol (name)
10799 char *name ATTRIBUTE_UNUSED;
10801 return 0;
10804 /* Called for any expression that can not be recognized. When the
10805 function is called, `input_line_pointer' will point to the start of
10806 the expression. */
10808 void
10809 md_operand (e)
10810 expressionS *e;
10812 switch (*input_line_pointer)
10814 case '[':
10815 ++input_line_pointer;
10816 expression (e);
10817 if (*input_line_pointer != ']')
10819 as_bad ("Closing bracket missing");
10820 goto err;
10822 else
10824 if (e->X_op != O_register)
10825 as_bad ("Register expected as index");
10827 ++input_line_pointer;
10828 e->X_op = O_index;
10830 break;
10832 default:
10833 break;
10835 return;
10837 err:
10838 ignore_rest_of_line ();
10841 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
10842 a section symbol plus some offset. For relocs involving @fptr(),
10843 directives we don't want such adjustments since we need to have the
10844 original symbol's name in the reloc. */
10846 ia64_fix_adjustable (fix)
10847 fixS *fix;
10849 /* Prevent all adjustments to global symbols */
10850 if (S_IS_EXTERN (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy))
10851 return 0;
10853 switch (fix->fx_r_type)
10855 case BFD_RELOC_IA64_FPTR64I:
10856 case BFD_RELOC_IA64_FPTR32MSB:
10857 case BFD_RELOC_IA64_FPTR32LSB:
10858 case BFD_RELOC_IA64_FPTR64MSB:
10859 case BFD_RELOC_IA64_FPTR64LSB:
10860 case BFD_RELOC_IA64_LTOFF_FPTR22:
10861 case BFD_RELOC_IA64_LTOFF_FPTR64I:
10862 return 0;
10863 default:
10864 break;
10867 return 1;
10871 ia64_force_relocation (fix)
10872 fixS *fix;
10874 switch (fix->fx_r_type)
10876 case BFD_RELOC_IA64_FPTR64I:
10877 case BFD_RELOC_IA64_FPTR32MSB:
10878 case BFD_RELOC_IA64_FPTR32LSB:
10879 case BFD_RELOC_IA64_FPTR64MSB:
10880 case BFD_RELOC_IA64_FPTR64LSB:
10882 case BFD_RELOC_IA64_LTOFF22:
10883 case BFD_RELOC_IA64_LTOFF64I:
10884 case BFD_RELOC_IA64_LTOFF_FPTR22:
10885 case BFD_RELOC_IA64_LTOFF_FPTR64I:
10886 case BFD_RELOC_IA64_PLTOFF22:
10887 case BFD_RELOC_IA64_PLTOFF64I:
10888 case BFD_RELOC_IA64_PLTOFF64MSB:
10889 case BFD_RELOC_IA64_PLTOFF64LSB:
10891 case BFD_RELOC_IA64_LTOFF22X:
10892 case BFD_RELOC_IA64_LDXMOV:
10893 return 1;
10895 default:
10896 break;
10899 return generic_force_reloc (fix);
10902 /* Decide from what point a pc-relative relocation is relative to,
10903 relative to the pc-relative fixup. Er, relatively speaking. */
10904 long
10905 ia64_pcrel_from_section (fix, sec)
10906 fixS *fix;
10907 segT sec;
10909 unsigned long off = fix->fx_frag->fr_address + fix->fx_where;
10911 if (bfd_get_section_flags (stdoutput, sec) & SEC_CODE)
10912 off &= ~0xfUL;
10914 return off;
10918 /* Used to emit section-relative relocs for the dwarf2 debug data. */
10919 void
10920 ia64_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
10922 expressionS expr;
10924 expr.X_op = O_pseudo_fixup;
10925 expr.X_op_symbol = pseudo_func[FUNC_SEC_RELATIVE].u.sym;
10926 expr.X_add_number = 0;
10927 expr.X_add_symbol = symbol;
10928 emit_expr (&expr, size);
10931 /* This is called whenever some data item (not an instruction) needs a
10932 fixup. We pick the right reloc code depending on the byteorder
10933 currently in effect. */
10934 void
10935 ia64_cons_fix_new (f, where, nbytes, exp)
10936 fragS *f;
10937 int where;
10938 int nbytes;
10939 expressionS *exp;
10941 bfd_reloc_code_real_type code;
10942 fixS *fix;
10944 switch (nbytes)
10946 /* There are no reloc for 8 and 16 bit quantities, but we allow
10947 them here since they will work fine as long as the expression
10948 is fully defined at the end of the pass over the source file. */
10949 case 1: code = BFD_RELOC_8; break;
10950 case 2: code = BFD_RELOC_16; break;
10951 case 4:
10952 if (target_big_endian)
10953 code = BFD_RELOC_IA64_DIR32MSB;
10954 else
10955 code = BFD_RELOC_IA64_DIR32LSB;
10956 break;
10958 case 8:
10959 /* In 32-bit mode, data8 could mean function descriptors too. */
10960 if (exp->X_op == O_pseudo_fixup
10961 && exp->X_op_symbol
10962 && S_GET_VALUE (exp->X_op_symbol) == FUNC_IPLT_RELOC
10963 && !(md.flags & EF_IA_64_ABI64))
10965 if (target_big_endian)
10966 code = BFD_RELOC_IA64_IPLTMSB;
10967 else
10968 code = BFD_RELOC_IA64_IPLTLSB;
10969 exp->X_op = O_symbol;
10970 break;
10972 else
10974 if (target_big_endian)
10975 code = BFD_RELOC_IA64_DIR64MSB;
10976 else
10977 code = BFD_RELOC_IA64_DIR64LSB;
10978 break;
10981 case 16:
10982 if (exp->X_op == O_pseudo_fixup
10983 && exp->X_op_symbol
10984 && S_GET_VALUE (exp->X_op_symbol) == FUNC_IPLT_RELOC)
10986 if (target_big_endian)
10987 code = BFD_RELOC_IA64_IPLTMSB;
10988 else
10989 code = BFD_RELOC_IA64_IPLTLSB;
10990 exp->X_op = O_symbol;
10991 break;
10993 /* FALLTHRU */
10995 default:
10996 as_bad ("Unsupported fixup size %d", nbytes);
10997 ignore_rest_of_line ();
10998 return;
11001 if (exp->X_op == O_pseudo_fixup)
11003 exp->X_op = O_symbol;
11004 code = ia64_gen_real_reloc_type (exp->X_op_symbol, code);
11005 /* ??? If code unchanged, unsupported. */
11008 fix = fix_new_exp (f, where, nbytes, exp, 0, code);
11009 /* We need to store the byte order in effect in case we're going
11010 to fix an 8 or 16 bit relocation (for which there no real
11011 relocs available). See md_apply_fix3(). */
11012 fix->tc_fix_data.bigendian = target_big_endian;
11015 /* Return the actual relocation we wish to associate with the pseudo
11016 reloc described by SYM and R_TYPE. SYM should be one of the
11017 symbols in the pseudo_func array, or NULL. */
11019 static bfd_reloc_code_real_type
11020 ia64_gen_real_reloc_type (sym, r_type)
11021 struct symbol *sym;
11022 bfd_reloc_code_real_type r_type;
11024 bfd_reloc_code_real_type new = 0;
11025 const char *type = NULL, *suffix = "";
11027 if (sym == NULL)
11029 return r_type;
11032 switch (S_GET_VALUE (sym))
11034 case FUNC_FPTR_RELATIVE:
11035 switch (r_type)
11037 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_FPTR64I; break;
11038 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_FPTR32MSB; break;
11039 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_FPTR32LSB; break;
11040 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_FPTR64MSB; break;
11041 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_FPTR64LSB; break;
11042 default: type = "FPTR"; break;
11044 break;
11046 case FUNC_GP_RELATIVE:
11047 switch (r_type)
11049 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_GPREL22; break;
11050 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_GPREL64I; break;
11051 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_GPREL32MSB; break;
11052 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_GPREL32LSB; break;
11053 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_GPREL64MSB; break;
11054 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_GPREL64LSB; break;
11055 default: type = "GPREL"; break;
11057 break;
11059 case FUNC_LT_RELATIVE:
11060 switch (r_type)
11062 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22; break;
11063 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_LTOFF64I; break;
11064 default: type = "LTOFF"; break;
11066 break;
11068 case FUNC_LT_RELATIVE_X:
11069 switch (r_type)
11071 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22X; break;
11072 default: type = "LTOFF"; suffix = "X"; break;
11074 break;
11076 case FUNC_PC_RELATIVE:
11077 switch (r_type)
11079 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PCREL22; break;
11080 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PCREL64I; break;
11081 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_PCREL32MSB; break;
11082 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_PCREL32LSB; break;
11083 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PCREL64MSB; break;
11084 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PCREL64LSB; break;
11085 default: type = "PCREL"; break;
11087 break;
11089 case FUNC_PLT_RELATIVE:
11090 switch (r_type)
11092 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PLTOFF22; break;
11093 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PLTOFF64I; break;
11094 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PLTOFF64MSB;break;
11095 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PLTOFF64LSB;break;
11096 default: type = "PLTOFF"; break;
11098 break;
11100 case FUNC_SEC_RELATIVE:
11101 switch (r_type)
11103 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SECREL32MSB;break;
11104 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SECREL32LSB;break;
11105 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SECREL64MSB;break;
11106 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SECREL64LSB;break;
11107 default: type = "SECREL"; break;
11109 break;
11111 case FUNC_SEG_RELATIVE:
11112 switch (r_type)
11114 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SEGREL32MSB;break;
11115 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SEGREL32LSB;break;
11116 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SEGREL64MSB;break;
11117 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SEGREL64LSB;break;
11118 default: type = "SEGREL"; break;
11120 break;
11122 case FUNC_LTV_RELATIVE:
11123 switch (r_type)
11125 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_LTV32MSB; break;
11126 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_LTV32LSB; break;
11127 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_LTV64MSB; break;
11128 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_LTV64LSB; break;
11129 default: type = "LTV"; break;
11131 break;
11133 case FUNC_LT_FPTR_RELATIVE:
11134 switch (r_type)
11136 case BFD_RELOC_IA64_IMM22:
11137 new = BFD_RELOC_IA64_LTOFF_FPTR22; break;
11138 case BFD_RELOC_IA64_IMM64:
11139 new = BFD_RELOC_IA64_LTOFF_FPTR64I; break;
11140 case BFD_RELOC_IA64_DIR32MSB:
11141 new = BFD_RELOC_IA64_LTOFF_FPTR32MSB; break;
11142 case BFD_RELOC_IA64_DIR32LSB:
11143 new = BFD_RELOC_IA64_LTOFF_FPTR32LSB; break;
11144 case BFD_RELOC_IA64_DIR64MSB:
11145 new = BFD_RELOC_IA64_LTOFF_FPTR64MSB; break;
11146 case BFD_RELOC_IA64_DIR64LSB:
11147 new = BFD_RELOC_IA64_LTOFF_FPTR64LSB; break;
11148 default:
11149 type = "LTOFF_FPTR"; break;
11151 break;
11153 case FUNC_TP_RELATIVE:
11154 switch (r_type)
11156 case BFD_RELOC_IA64_IMM14: new = BFD_RELOC_IA64_TPREL14; break;
11157 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_TPREL22; break;
11158 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_TPREL64I; break;
11159 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_TPREL64MSB; break;
11160 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_TPREL64LSB; break;
11161 default: type = "TPREL"; break;
11163 break;
11165 case FUNC_LT_TP_RELATIVE:
11166 switch (r_type)
11168 case BFD_RELOC_IA64_IMM22:
11169 new = BFD_RELOC_IA64_LTOFF_TPREL22; break;
11170 default:
11171 type = "LTOFF_TPREL"; break;
11173 break;
11175 case FUNC_DTP_MODULE:
11176 switch (r_type)
11178 case BFD_RELOC_IA64_DIR64MSB:
11179 new = BFD_RELOC_IA64_DTPMOD64MSB; break;
11180 case BFD_RELOC_IA64_DIR64LSB:
11181 new = BFD_RELOC_IA64_DTPMOD64LSB; break;
11182 default:
11183 type = "DTPMOD"; break;
11185 break;
11187 case FUNC_LT_DTP_MODULE:
11188 switch (r_type)
11190 case BFD_RELOC_IA64_IMM22:
11191 new = BFD_RELOC_IA64_LTOFF_DTPMOD22; break;
11192 default:
11193 type = "LTOFF_DTPMOD"; break;
11195 break;
11197 case FUNC_DTP_RELATIVE:
11198 switch (r_type)
11200 case BFD_RELOC_IA64_DIR32MSB:
11201 new = BFD_RELOC_IA64_DTPREL32MSB; break;
11202 case BFD_RELOC_IA64_DIR32LSB:
11203 new = BFD_RELOC_IA64_DTPREL32LSB; break;
11204 case BFD_RELOC_IA64_DIR64MSB:
11205 new = BFD_RELOC_IA64_DTPREL64MSB; break;
11206 case BFD_RELOC_IA64_DIR64LSB:
11207 new = BFD_RELOC_IA64_DTPREL64LSB; break;
11208 case BFD_RELOC_IA64_IMM14:
11209 new = BFD_RELOC_IA64_DTPREL14; break;
11210 case BFD_RELOC_IA64_IMM22:
11211 new = BFD_RELOC_IA64_DTPREL22; break;
11212 case BFD_RELOC_IA64_IMM64:
11213 new = BFD_RELOC_IA64_DTPREL64I; break;
11214 default:
11215 type = "DTPREL"; break;
11217 break;
11219 case FUNC_LT_DTP_RELATIVE:
11220 switch (r_type)
11222 case BFD_RELOC_IA64_IMM22:
11223 new = BFD_RELOC_IA64_LTOFF_DTPREL22; break;
11224 default:
11225 type = "LTOFF_DTPREL"; break;
11227 break;
11229 case FUNC_IPLT_RELOC:
11230 switch (r_type)
11232 case BFD_RELOC_IA64_IPLTMSB: return r_type;
11233 case BFD_RELOC_IA64_IPLTLSB: return r_type;
11234 default: type = "IPLT"; break;
11236 break;
11238 default:
11239 abort ();
11242 if (new)
11243 return new;
11244 else
11246 int width;
11248 if (!type)
11249 abort ();
11250 switch (r_type)
11252 case BFD_RELOC_IA64_DIR32MSB: width = 32; suffix = "MSB"; break;
11253 case BFD_RELOC_IA64_DIR32LSB: width = 32; suffix = "LSB"; break;
11254 case BFD_RELOC_IA64_DIR64MSB: width = 64; suffix = "MSB"; break;
11255 case BFD_RELOC_IA64_DIR64LSB: width = 64; suffix = "LSB"; break;
11256 case BFD_RELOC_IA64_IMM14: width = 14; break;
11257 case BFD_RELOC_IA64_IMM22: width = 22; break;
11258 case BFD_RELOC_IA64_IMM64: width = 64; suffix = "I"; break;
11259 default: abort ();
11262 /* This should be an error, but since previously there wasn't any
11263 diagnostic here, dont't make it fail because of this for now. */
11264 as_warn ("Cannot express %s%d%s relocation", type, width, suffix);
11265 return r_type;
11269 /* Here is where generate the appropriate reloc for pseudo relocation
11270 functions. */
11271 void
11272 ia64_validate_fix (fix)
11273 fixS *fix;
11275 switch (fix->fx_r_type)
11277 case BFD_RELOC_IA64_FPTR64I:
11278 case BFD_RELOC_IA64_FPTR32MSB:
11279 case BFD_RELOC_IA64_FPTR64LSB:
11280 case BFD_RELOC_IA64_LTOFF_FPTR22:
11281 case BFD_RELOC_IA64_LTOFF_FPTR64I:
11282 if (fix->fx_offset != 0)
11283 as_bad_where (fix->fx_file, fix->fx_line,
11284 "No addend allowed in @fptr() relocation");
11285 break;
11286 default:
11287 break;
11291 static void
11292 fix_insn (fix, odesc, value)
11293 fixS *fix;
11294 const struct ia64_operand *odesc;
11295 valueT value;
11297 bfd_vma insn[3], t0, t1, control_bits;
11298 const char *err;
11299 char *fixpos;
11300 long slot;
11302 slot = fix->fx_where & 0x3;
11303 fixpos = fix->fx_frag->fr_literal + (fix->fx_where - slot);
11305 /* Bundles are always in little-endian byte order */
11306 t0 = bfd_getl64 (fixpos);
11307 t1 = bfd_getl64 (fixpos + 8);
11308 control_bits = t0 & 0x1f;
11309 insn[0] = (t0 >> 5) & 0x1ffffffffffLL;
11310 insn[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18);
11311 insn[2] = (t1 >> 23) & 0x1ffffffffffLL;
11313 err = NULL;
11314 if (odesc - elf64_ia64_operands == IA64_OPND_IMMU64)
11316 insn[1] = (value >> 22) & 0x1ffffffffffLL;
11317 insn[2] |= (((value & 0x7f) << 13)
11318 | (((value >> 7) & 0x1ff) << 27)
11319 | (((value >> 16) & 0x1f) << 22)
11320 | (((value >> 21) & 0x1) << 21)
11321 | (((value >> 63) & 0x1) << 36));
11323 else if (odesc - elf64_ia64_operands == IA64_OPND_IMMU62)
11325 if (value & ~0x3fffffffffffffffULL)
11326 err = "integer operand out of range";
11327 insn[1] = (value >> 21) & 0x1ffffffffffLL;
11328 insn[2] |= (((value & 0xfffff) << 6) | (((value >> 20) & 0x1) << 36));
11330 else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64)
11332 value >>= 4;
11333 insn[1] = ((value >> 20) & 0x7fffffffffLL) << 2;
11334 insn[2] |= ((((value >> 59) & 0x1) << 36)
11335 | (((value >> 0) & 0xfffff) << 13));
11337 else
11338 err = (*odesc->insert) (odesc, value, insn + slot);
11340 if (err)
11341 as_bad_where (fix->fx_file, fix->fx_line, err);
11343 t0 = control_bits | (insn[0] << 5) | (insn[1] << 46);
11344 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
11345 number_to_chars_littleendian (fixpos + 0, t0, 8);
11346 number_to_chars_littleendian (fixpos + 8, t1, 8);
11349 /* Attempt to simplify or even eliminate a fixup. The return value is
11350 ignored; perhaps it was once meaningful, but now it is historical.
11351 To indicate that a fixup has been eliminated, set FIXP->FX_DONE.
11353 If fixp->fx_addsy is non-NULL, we'll have to generate a reloc entry
11354 (if possible). */
11356 void
11357 md_apply_fix3 (fix, valP, seg)
11358 fixS *fix;
11359 valueT *valP;
11360 segT seg ATTRIBUTE_UNUSED;
11362 char *fixpos;
11363 valueT value = *valP;
11365 fixpos = fix->fx_frag->fr_literal + fix->fx_where;
11367 if (fix->fx_pcrel)
11369 switch (fix->fx_r_type)
11371 case BFD_RELOC_IA64_PCREL21B: break;
11372 case BFD_RELOC_IA64_PCREL21BI: break;
11373 case BFD_RELOC_IA64_PCREL21F: break;
11374 case BFD_RELOC_IA64_PCREL21M: break;
11375 case BFD_RELOC_IA64_PCREL60B: break;
11376 case BFD_RELOC_IA64_PCREL22: break;
11377 case BFD_RELOC_IA64_PCREL64I: break;
11378 case BFD_RELOC_IA64_PCREL32MSB: break;
11379 case BFD_RELOC_IA64_PCREL32LSB: break;
11380 case BFD_RELOC_IA64_PCREL64MSB: break;
11381 case BFD_RELOC_IA64_PCREL64LSB: break;
11382 default:
11383 fix->fx_r_type = ia64_gen_real_reloc_type (pseudo_func[FUNC_PC_RELATIVE].u.sym,
11384 fix->fx_r_type);
11385 break;
11388 if (fix->fx_addsy)
11390 switch (fix->fx_r_type)
11392 case BFD_RELOC_UNUSED:
11393 /* This must be a TAG13 or TAG13b operand. There are no external
11394 relocs defined for them, so we must give an error. */
11395 as_bad_where (fix->fx_file, fix->fx_line,
11396 "%s must have a constant value",
11397 elf64_ia64_operands[fix->tc_fix_data.opnd].desc);
11398 fix->fx_done = 1;
11399 return;
11401 case BFD_RELOC_IA64_TPREL14:
11402 case BFD_RELOC_IA64_TPREL22:
11403 case BFD_RELOC_IA64_TPREL64I:
11404 case BFD_RELOC_IA64_LTOFF_TPREL22:
11405 case BFD_RELOC_IA64_LTOFF_DTPMOD22:
11406 case BFD_RELOC_IA64_DTPREL14:
11407 case BFD_RELOC_IA64_DTPREL22:
11408 case BFD_RELOC_IA64_DTPREL64I:
11409 case BFD_RELOC_IA64_LTOFF_DTPREL22:
11410 S_SET_THREAD_LOCAL (fix->fx_addsy);
11411 break;
11413 default:
11414 break;
11417 else if (fix->tc_fix_data.opnd == IA64_OPND_NIL)
11419 if (fix->tc_fix_data.bigendian)
11420 number_to_chars_bigendian (fixpos, value, fix->fx_size);
11421 else
11422 number_to_chars_littleendian (fixpos, value, fix->fx_size);
11423 fix->fx_done = 1;
11425 else
11427 fix_insn (fix, elf64_ia64_operands + fix->tc_fix_data.opnd, value);
11428 fix->fx_done = 1;
11432 /* Generate the BFD reloc to be stuck in the object file from the
11433 fixup used internally in the assembler. */
11435 arelent *
11436 tc_gen_reloc (sec, fixp)
11437 asection *sec ATTRIBUTE_UNUSED;
11438 fixS *fixp;
11440 arelent *reloc;
11442 reloc = xmalloc (sizeof (*reloc));
11443 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
11444 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
11445 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
11446 reloc->addend = fixp->fx_offset;
11447 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
11449 if (!reloc->howto)
11451 as_bad_where (fixp->fx_file, fixp->fx_line,
11452 "Cannot represent %s relocation in object file",
11453 bfd_get_reloc_code_name (fixp->fx_r_type));
11455 return reloc;
11458 /* Turn a string in input_line_pointer into a floating point constant
11459 of type TYPE, and store the appropriate bytes in *LIT. The number
11460 of LITTLENUMS emitted is stored in *SIZE. An error message is
11461 returned, or NULL on OK. */
11463 #define MAX_LITTLENUMS 5
11465 char *
11466 md_atof (type, lit, size)
11467 int type;
11468 char *lit;
11469 int *size;
11471 LITTLENUM_TYPE words[MAX_LITTLENUMS];
11472 char *t;
11473 int prec;
11475 switch (type)
11477 /* IEEE floats */
11478 case 'f':
11479 case 'F':
11480 case 's':
11481 case 'S':
11482 prec = 2;
11483 break;
11485 case 'd':
11486 case 'D':
11487 case 'r':
11488 case 'R':
11489 prec = 4;
11490 break;
11492 case 'x':
11493 case 'X':
11494 case 'p':
11495 case 'P':
11496 prec = 5;
11497 break;
11499 default:
11500 *size = 0;
11501 return "Bad call to MD_ATOF()";
11503 t = atof_ieee (input_line_pointer, type, words);
11504 if (t)
11505 input_line_pointer = t;
11507 (*ia64_float_to_chars) (lit, words, prec);
11509 if (type == 'X')
11511 /* It is 10 byte floating point with 6 byte padding. */
11512 memset (&lit [10], 0, 6);
11513 *size = 8 * sizeof (LITTLENUM_TYPE);
11515 else
11516 *size = prec * sizeof (LITTLENUM_TYPE);
11518 return 0;
11521 /* Handle ia64 specific semantics of the align directive. */
11523 void
11524 ia64_md_do_align (n, fill, len, max)
11525 int n ATTRIBUTE_UNUSED;
11526 const char *fill ATTRIBUTE_UNUSED;
11527 int len ATTRIBUTE_UNUSED;
11528 int max ATTRIBUTE_UNUSED;
11530 if (subseg_text_p (now_seg))
11531 ia64_flush_insns ();
11534 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
11535 of an rs_align_code fragment. */
11537 void
11538 ia64_handle_align (fragp)
11539 fragS *fragp;
11541 int bytes;
11542 char *p;
11543 const unsigned char *nop;
11545 if (fragp->fr_type != rs_align_code)
11546 return;
11548 /* Check if this frag has to end with a stop bit. */
11549 nop = fragp->tc_frag_data ? le_nop_stop : le_nop;
11551 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
11552 p = fragp->fr_literal + fragp->fr_fix;
11554 /* If no paddings are needed, we check if we need a stop bit. */
11555 if (!bytes && fragp->tc_frag_data)
11557 if (fragp->fr_fix < 16)
11558 #if 1
11559 /* FIXME: It won't work with
11560 .align 16
11561 alloc r32=ar.pfs,1,2,4,0
11564 #else
11565 as_bad_where (fragp->fr_file, fragp->fr_line,
11566 _("Can't add stop bit to mark end of instruction group"));
11567 #endif
11568 else
11569 /* Bundles are always in little-endian byte order. Make sure
11570 the previous bundle has the stop bit. */
11571 *(p - 16) |= 1;
11574 /* Make sure we are on a 16-byte boundary, in case someone has been
11575 putting data into a text section. */
11576 if (bytes & 15)
11578 int fix = bytes & 15;
11579 memset (p, 0, fix);
11580 p += fix;
11581 bytes -= fix;
11582 fragp->fr_fix += fix;
11585 /* Instruction bundles are always little-endian. */
11586 memcpy (p, nop, 16);
11587 fragp->fr_var = 16;
11590 static void
11591 ia64_float_to_chars_bigendian (char *lit, LITTLENUM_TYPE *words,
11592 int prec)
11594 while (prec--)
11596 number_to_chars_bigendian (lit, (long) (*words++),
11597 sizeof (LITTLENUM_TYPE));
11598 lit += sizeof (LITTLENUM_TYPE);
11602 static void
11603 ia64_float_to_chars_littleendian (char *lit, LITTLENUM_TYPE *words,
11604 int prec)
11606 while (prec--)
11608 number_to_chars_littleendian (lit, (long) (words[prec]),
11609 sizeof (LITTLENUM_TYPE));
11610 lit += sizeof (LITTLENUM_TYPE);
11614 void
11615 ia64_elf_section_change_hook (void)
11617 if (elf_section_type (now_seg) == SHT_IA_64_UNWIND
11618 && elf_linked_to_section (now_seg) == NULL)
11619 elf_linked_to_section (now_seg) = text_section;
11620 dot_byteorder (-1);
11623 /* Check if a label should be made global. */
11624 void
11625 ia64_check_label (symbolS *label)
11627 if (*input_line_pointer == ':')
11629 S_SET_EXTERNAL (label);
11630 input_line_pointer++;
11634 /* Used to remember where .alias and .secalias directives are seen. We
11635 will rename symbol and section names when we are about to output
11636 the relocatable file. */
11637 struct alias
11639 char *file; /* The file where the directive is seen. */
11640 unsigned int line; /* The line number the directive is at. */
11641 const char *name; /* The orignale name of the symbol. */
11644 /* Called for .alias and .secalias directives. If SECTION is 1, it is
11645 .secalias. Otherwise, it is .alias. */
11646 static void
11647 dot_alias (int section)
11649 char *name, *alias;
11650 char delim;
11651 char *end_name;
11652 int len;
11653 const char *error_string;
11654 struct alias *h;
11655 const char *a;
11656 struct hash_control *ahash, *nhash;
11657 const char *kind;
11659 name = input_line_pointer;
11660 delim = get_symbol_end ();
11661 end_name = input_line_pointer;
11662 *end_name = delim;
11664 if (name == end_name)
11666 as_bad (_("expected symbol name"));
11667 discard_rest_of_line ();
11668 return;
11671 SKIP_WHITESPACE ();
11673 if (*input_line_pointer != ',')
11675 *end_name = 0;
11676 as_bad (_("expected comma after \"%s\""), name);
11677 *end_name = delim;
11678 ignore_rest_of_line ();
11679 return;
11682 input_line_pointer++;
11683 *end_name = 0;
11684 ia64_canonicalize_symbol_name (name);
11686 /* We call demand_copy_C_string to check if alias string is valid.
11687 There should be a closing `"' and no `\0' in the string. */
11688 alias = demand_copy_C_string (&len);
11689 if (alias == NULL)
11691 ignore_rest_of_line ();
11692 return;
11695 /* Make a copy of name string. */
11696 len = strlen (name) + 1;
11697 obstack_grow (&notes, name, len);
11698 name = obstack_finish (&notes);
11700 if (section)
11702 kind = "section";
11703 ahash = secalias_hash;
11704 nhash = secalias_name_hash;
11706 else
11708 kind = "symbol";
11709 ahash = alias_hash;
11710 nhash = alias_name_hash;
11713 /* Check if alias has been used before. */
11714 h = (struct alias *) hash_find (ahash, alias);
11715 if (h)
11717 if (strcmp (h->name, name))
11718 as_bad (_("`%s' is already the alias of %s `%s'"),
11719 alias, kind, h->name);
11720 goto out;
11723 /* Check if name already has an alias. */
11724 a = (const char *) hash_find (nhash, name);
11725 if (a)
11727 if (strcmp (a, alias))
11728 as_bad (_("%s `%s' already has an alias `%s'"), kind, name, a);
11729 goto out;
11732 h = (struct alias *) xmalloc (sizeof (struct alias));
11733 as_where (&h->file, &h->line);
11734 h->name = name;
11736 error_string = hash_jam (ahash, alias, (PTR) h);
11737 if (error_string)
11739 as_fatal (_("inserting \"%s\" into %s alias hash table failed: %s"),
11740 alias, kind, error_string);
11741 goto out;
11744 error_string = hash_jam (nhash, name, (PTR) alias);
11745 if (error_string)
11747 as_fatal (_("inserting \"%s\" into %s name hash table failed: %s"),
11748 alias, kind, error_string);
11749 out:
11750 obstack_free (&notes, name);
11751 obstack_free (&notes, alias);
11754 demand_empty_rest_of_line ();
11757 /* It renames the original symbol name to its alias. */
11758 static void
11759 do_alias (const char *alias, PTR value)
11761 struct alias *h = (struct alias *) value;
11762 symbolS *sym = symbol_find (h->name);
11764 if (sym == NULL)
11765 as_warn_where (h->file, h->line,
11766 _("symbol `%s' aliased to `%s' is not used"),
11767 h->name, alias);
11768 else
11769 S_SET_NAME (sym, (char *) alias);
11772 /* Called from write_object_file. */
11773 void
11774 ia64_adjust_symtab (void)
11776 hash_traverse (alias_hash, do_alias);
11779 /* It renames the original section name to its alias. */
11780 static void
11781 do_secalias (const char *alias, PTR value)
11783 struct alias *h = (struct alias *) value;
11784 segT sec = bfd_get_section_by_name (stdoutput, h->name);
11786 if (sec == NULL)
11787 as_warn_where (h->file, h->line,
11788 _("section `%s' aliased to `%s' is not used"),
11789 h->name, alias);
11790 else
11791 sec->name = alias;
11794 /* Called from write_object_file. */
11795 void
11796 ia64_frob_file (void)
11798 hash_traverse (secalias_hash, do_secalias);