Improve gas error messages for invalid instructions.
[binutils.git] / gas / config / tc-ia64.c
blob517d96c37167015054699dede229b355e9c53972
1 /* tc-ia64.c -- Assembler for the HP/Intel IA-64 architecture.
2 Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5 This file is part of GAS, the GNU Assembler.
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 TODO:
25 - optional operands
26 - directives:
27 .alias
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 "dwarf2dbg.h"
47 #include "subsegs.h"
49 #include "opcode/ia64.h"
51 #include "elf/ia64.h"
53 #define NELEMS(a) ((int) (sizeof (a)/sizeof ((a)[0])))
54 #define MIN(a,b) ((a) < (b) ? (a) : (b))
56 #define NUM_SLOTS 4
57 #define PREV_SLOT md.slot[(md.curr_slot + NUM_SLOTS - 1) % NUM_SLOTS]
58 #define CURR_SLOT md.slot[md.curr_slot]
60 #define O_pseudo_fixup (O_max + 1)
62 enum special_section
64 SPECIAL_SECTION_BSS = 0,
65 SPECIAL_SECTION_SBSS,
66 SPECIAL_SECTION_SDATA,
67 SPECIAL_SECTION_RODATA,
68 SPECIAL_SECTION_COMMENT,
69 SPECIAL_SECTION_UNWIND,
70 SPECIAL_SECTION_UNWIND_INFO
73 enum reloc_func
75 FUNC_FPTR_RELATIVE,
76 FUNC_GP_RELATIVE,
77 FUNC_LT_RELATIVE,
78 FUNC_PC_RELATIVE,
79 FUNC_PLT_RELATIVE,
80 FUNC_SEC_RELATIVE,
81 FUNC_SEG_RELATIVE,
82 FUNC_LTV_RELATIVE,
83 FUNC_LT_FPTR_RELATIVE,
86 enum reg_symbol
88 REG_GR = 0,
89 REG_FR = (REG_GR + 128),
90 REG_AR = (REG_FR + 128),
91 REG_CR = (REG_AR + 128),
92 REG_P = (REG_CR + 128),
93 REG_BR = (REG_P + 64),
94 REG_IP = (REG_BR + 8),
95 REG_CFM,
96 REG_PR,
97 REG_PR_ROT,
98 REG_PSR,
99 REG_PSR_L,
100 REG_PSR_UM,
101 /* The following are pseudo-registers for use by gas only. */
102 IND_CPUID,
103 IND_DBR,
104 IND_DTR,
105 IND_ITR,
106 IND_IBR,
107 IND_MEM,
108 IND_MSR,
109 IND_PKR,
110 IND_PMC,
111 IND_PMD,
112 IND_RR,
113 /* The following pseudo-registers are used for unwind directives only: */
114 REG_PSP,
115 REG_PRIUNAT,
116 REG_NUM
119 enum dynreg_type
121 DYNREG_GR = 0, /* dynamic general purpose register */
122 DYNREG_FR, /* dynamic floating point register */
123 DYNREG_PR, /* dynamic predicate register */
124 DYNREG_NUM_TYPES
127 enum operand_match_result
129 OPERAND_MATCH,
130 OPERAND_OUT_OF_RANGE,
131 OPERAND_MISMATCH
134 /* On the ia64, we can't know the address of a text label until the
135 instructions are packed into a bundle. To handle this, we keep
136 track of the list of labels that appear in front of each
137 instruction. */
138 struct label_fix
140 struct label_fix *next;
141 struct symbol *sym;
144 extern int target_big_endian;
146 /* Characters which always start a comment. */
147 const char comment_chars[] = "";
149 /* Characters which start a comment at the beginning of a line. */
150 const char line_comment_chars[] = "#";
152 /* Characters which may be used to separate multiple commands on a
153 single line. */
154 const char line_separator_chars[] = ";";
156 /* Characters which are used to indicate an exponent in a floating
157 point number. */
158 const char EXP_CHARS[] = "eE";
160 /* Characters which mean that a number is a floating point constant,
161 as in 0d1.0. */
162 const char FLT_CHARS[] = "rRsSfFdDxXpP";
164 /* ia64-specific option processing: */
166 const char *md_shortopts = "m:N:x::";
168 struct option md_longopts[] =
170 #define OPTION_MCONSTANT_GP (OPTION_MD_BASE + 1)
171 {"mconstant-gp", no_argument, NULL, OPTION_MCONSTANT_GP},
172 #define OPTION_MAUTO_PIC (OPTION_MD_BASE + 2)
173 {"mauto-pic", no_argument, NULL, OPTION_MAUTO_PIC}
176 size_t md_longopts_size = sizeof (md_longopts);
178 static struct
180 struct hash_control *pseudo_hash; /* pseudo opcode hash table */
181 struct hash_control *reg_hash; /* register name hash table */
182 struct hash_control *dynreg_hash; /* dynamic register hash table */
183 struct hash_control *const_hash; /* constant hash table */
184 struct hash_control *entry_hash; /* code entry hint hash table */
186 symbolS *regsym[REG_NUM];
188 /* If X_op is != O_absent, the registername for the instruction's
189 qualifying predicate. If NULL, p0 is assumed for instructions
190 that are predicatable. */
191 expressionS qp;
193 unsigned int
194 manual_bundling : 1,
195 debug_dv: 1,
196 detect_dv: 1,
197 explicit_mode : 1, /* which mode we're in */
198 default_explicit_mode : 1, /* which mode is the default */
199 mode_explicitly_set : 1, /* was the current mode explicitly set? */
200 auto_align : 1;
202 /* Each bundle consists of up to three instructions. We keep
203 track of four most recent instructions so we can correctly set
204 the end_of_insn_group for the last instruction in a bundle. */
205 int curr_slot;
206 int num_slots_in_use;
207 struct slot
209 unsigned int
210 end_of_insn_group : 1,
211 manual_bundling_on : 1,
212 manual_bundling_off : 1;
213 signed char user_template; /* user-selected template, if any */
214 unsigned char qp_regno; /* qualifying predicate */
215 /* This duplicates a good fraction of "struct fix" but we
216 can't use a "struct fix" instead since we can't call
217 fix_new_exp() until we know the address of the instruction. */
218 int num_fixups;
219 struct insn_fix
221 bfd_reloc_code_real_type code;
222 enum ia64_opnd opnd; /* type of operand in need of fix */
223 unsigned int is_pcrel : 1; /* is operand pc-relative? */
224 expressionS expr; /* the value to be inserted */
226 fixup[2]; /* at most two fixups per insn */
227 struct ia64_opcode *idesc;
228 struct label_fix *label_fixups;
229 struct label_fix *tag_fixups;
230 struct unw_rec_list *unwind_record; /* Unwind directive. */
231 expressionS opnd[6];
232 char *src_file;
233 unsigned int src_line;
234 struct dwarf2_line_info debug_line;
236 slot[NUM_SLOTS];
238 segT last_text_seg;
240 struct dynreg
242 struct dynreg *next; /* next dynamic register */
243 const char *name;
244 unsigned short base; /* the base register number */
245 unsigned short num_regs; /* # of registers in this set */
247 *dynreg[DYNREG_NUM_TYPES], in, loc, out, rot;
249 flagword flags; /* ELF-header flags */
251 struct mem_offset {
252 unsigned hint:1; /* is this hint currently valid? */
253 bfd_vma offset; /* mem.offset offset */
254 bfd_vma base; /* mem.offset base */
255 } mem_offset;
257 int path; /* number of alt. entry points seen */
258 const char **entry_labels; /* labels of all alternate paths in
259 the current DV-checking block. */
260 int maxpaths; /* size currently allocated for
261 entry_labels */
262 /* Support for hardware errata workarounds. */
264 /* Record data about the last three insn groups. */
265 struct group
267 /* B-step workaround.
268 For each predicate register, this is set if the corresponding insn
269 group conditionally sets this register with one of the affected
270 instructions. */
271 int p_reg_set[64];
272 /* B-step workaround.
273 For each general register, this is set if the corresponding insn
274 a) is conditional one one of the predicate registers for which
275 P_REG_SET is 1 in the corresponding entry of the previous group,
276 b) sets this general register with one of the affected
277 instructions. */
278 int g_reg_set_conditionally[128];
279 } last_groups[3];
280 int group_idx;
284 /* application registers: */
286 #define AR_K0 0
287 #define AR_K7 7
288 #define AR_RSC 16
289 #define AR_BSP 17
290 #define AR_BSPSTORE 18
291 #define AR_RNAT 19
292 #define AR_UNAT 36
293 #define AR_FPSR 40
294 #define AR_ITC 44
295 #define AR_PFS 64
296 #define AR_LC 65
298 static const struct
300 const char *name;
301 int regnum;
303 ar[] =
305 {"ar.k0", 0}, {"ar.k1", 1}, {"ar.k2", 2}, {"ar.k3", 3},
306 {"ar.k4", 4}, {"ar.k5", 5}, {"ar.k6", 6}, {"ar.k7", 7},
307 {"ar.rsc", 16}, {"ar.bsp", 17},
308 {"ar.bspstore", 18}, {"ar.rnat", 19},
309 {"ar.fcr", 21}, {"ar.eflag", 24},
310 {"ar.csd", 25}, {"ar.ssd", 26},
311 {"ar.cflg", 27}, {"ar.fsr", 28},
312 {"ar.fir", 29}, {"ar.fdr", 30},
313 {"ar.ccv", 32}, {"ar.unat", 36},
314 {"ar.fpsr", 40}, {"ar.itc", 44},
315 {"ar.pfs", 64}, {"ar.lc", 65},
316 {"ar.ec", 66},
319 #define CR_IPSR 16
320 #define CR_ISR 17
321 #define CR_IIP 19
322 #define CR_IFA 20
323 #define CR_ITIR 21
324 #define CR_IIPA 22
325 #define CR_IFS 23
326 #define CR_IIM 24
327 #define CR_IHA 25
328 #define CR_IVR 65
329 #define CR_TPR 66
330 #define CR_EOI 67
331 #define CR_IRR0 68
332 #define CR_IRR3 71
333 #define CR_LRR0 80
334 #define CR_LRR1 81
336 /* control registers: */
337 static const struct
339 const char *name;
340 int regnum;
342 cr[] =
344 {"cr.dcr", 0},
345 {"cr.itm", 1},
346 {"cr.iva", 2},
347 {"cr.pta", 8},
348 {"cr.gpta", 9},
349 {"cr.ipsr", 16},
350 {"cr.isr", 17},
351 {"cr.iip", 19},
352 {"cr.ifa", 20},
353 {"cr.itir", 21},
354 {"cr.iipa", 22},
355 {"cr.ifs", 23},
356 {"cr.iim", 24},
357 {"cr.iha", 25},
358 {"cr.lid", 64},
359 {"cr.ivr", 65},
360 {"cr.tpr", 66},
361 {"cr.eoi", 67},
362 {"cr.irr0", 68},
363 {"cr.irr1", 69},
364 {"cr.irr2", 70},
365 {"cr.irr3", 71},
366 {"cr.itv", 72},
367 {"cr.pmv", 73},
368 {"cr.cmcv", 74},
369 {"cr.lrr0", 80},
370 {"cr.lrr1", 81}
373 #define PSR_MFL 4
374 #define PSR_IC 13
375 #define PSR_DFL 18
376 #define PSR_CPL 32
378 static const struct const_desc
380 const char *name;
381 valueT value;
383 const_bits[] =
385 /* PSR constant masks: */
387 /* 0: reserved */
388 {"psr.be", ((valueT) 1) << 1},
389 {"psr.up", ((valueT) 1) << 2},
390 {"psr.ac", ((valueT) 1) << 3},
391 {"psr.mfl", ((valueT) 1) << 4},
392 {"psr.mfh", ((valueT) 1) << 5},
393 /* 6-12: reserved */
394 {"psr.ic", ((valueT) 1) << 13},
395 {"psr.i", ((valueT) 1) << 14},
396 {"psr.pk", ((valueT) 1) << 15},
397 /* 16: reserved */
398 {"psr.dt", ((valueT) 1) << 17},
399 {"psr.dfl", ((valueT) 1) << 18},
400 {"psr.dfh", ((valueT) 1) << 19},
401 {"psr.sp", ((valueT) 1) << 20},
402 {"psr.pp", ((valueT) 1) << 21},
403 {"psr.di", ((valueT) 1) << 22},
404 {"psr.si", ((valueT) 1) << 23},
405 {"psr.db", ((valueT) 1) << 24},
406 {"psr.lp", ((valueT) 1) << 25},
407 {"psr.tb", ((valueT) 1) << 26},
408 {"psr.rt", ((valueT) 1) << 27},
409 /* 28-31: reserved */
410 /* 32-33: cpl (current privilege level) */
411 {"psr.is", ((valueT) 1) << 34},
412 {"psr.mc", ((valueT) 1) << 35},
413 {"psr.it", ((valueT) 1) << 36},
414 {"psr.id", ((valueT) 1) << 37},
415 {"psr.da", ((valueT) 1) << 38},
416 {"psr.dd", ((valueT) 1) << 39},
417 {"psr.ss", ((valueT) 1) << 40},
418 /* 41-42: ri (restart instruction) */
419 {"psr.ed", ((valueT) 1) << 43},
420 {"psr.bn", ((valueT) 1) << 44},
423 /* indirect register-sets/memory: */
425 static const struct
427 const char *name;
428 int regnum;
430 indirect_reg[] =
432 { "CPUID", IND_CPUID },
433 { "cpuid", IND_CPUID },
434 { "dbr", IND_DBR },
435 { "dtr", IND_DTR },
436 { "itr", IND_ITR },
437 { "ibr", IND_IBR },
438 { "msr", IND_MSR },
439 { "pkr", IND_PKR },
440 { "pmc", IND_PMC },
441 { "pmd", IND_PMD },
442 { "rr", IND_RR },
445 /* Pseudo functions used to indicate relocation types (these functions
446 start with an at sign (@). */
447 static struct
449 const char *name;
450 enum pseudo_type
452 PSEUDO_FUNC_NONE,
453 PSEUDO_FUNC_RELOC,
454 PSEUDO_FUNC_CONST,
455 PSEUDO_FUNC_REG,
456 PSEUDO_FUNC_FLOAT
458 type;
459 union
461 unsigned long ival;
462 symbolS *sym;
466 pseudo_func[] =
468 /* reloc pseudo functions (these must come first!): */
469 { "fptr", PSEUDO_FUNC_RELOC, { 0 } },
470 { "gprel", PSEUDO_FUNC_RELOC, { 0 } },
471 { "ltoff", PSEUDO_FUNC_RELOC, { 0 } },
472 { "pcrel", PSEUDO_FUNC_RELOC, { 0 } },
473 { "pltoff", PSEUDO_FUNC_RELOC, { 0 } },
474 { "secrel", PSEUDO_FUNC_RELOC, { 0 } },
475 { "segrel", PSEUDO_FUNC_RELOC, { 0 } },
476 { "ltv", PSEUDO_FUNC_RELOC, { 0 } },
477 { "", 0, { 0 } }, /* placeholder for FUNC_LT_FPTR_RELATIVE */
479 /* mbtype4 constants: */
480 { "alt", PSEUDO_FUNC_CONST, { 0xa } },
481 { "brcst", PSEUDO_FUNC_CONST, { 0x0 } },
482 { "mix", PSEUDO_FUNC_CONST, { 0x8 } },
483 { "rev", PSEUDO_FUNC_CONST, { 0xb } },
484 { "shuf", PSEUDO_FUNC_CONST, { 0x9 } },
486 /* fclass constants: */
487 { "nat", PSEUDO_FUNC_CONST, { 0x100 } },
488 { "qnan", PSEUDO_FUNC_CONST, { 0x080 } },
489 { "snan", PSEUDO_FUNC_CONST, { 0x040 } },
490 { "pos", PSEUDO_FUNC_CONST, { 0x001 } },
491 { "neg", PSEUDO_FUNC_CONST, { 0x002 } },
492 { "zero", PSEUDO_FUNC_CONST, { 0x004 } },
493 { "unorm", PSEUDO_FUNC_CONST, { 0x008 } },
494 { "norm", PSEUDO_FUNC_CONST, { 0x010 } },
495 { "inf", PSEUDO_FUNC_CONST, { 0x020 } },
497 { "natval", PSEUDO_FUNC_CONST, { 0x100 } }, /* old usage */
499 /* unwind-related constants: */
500 { "svr4", PSEUDO_FUNC_CONST, { 0 } },
501 { "hpux", PSEUDO_FUNC_CONST, { 1 } },
502 { "nt", PSEUDO_FUNC_CONST, { 2 } },
504 /* unwind-related registers: */
505 { "priunat",PSEUDO_FUNC_REG, { REG_PRIUNAT } }
508 /* 41-bit nop opcodes (one per unit): */
509 static const bfd_vma nop[IA64_NUM_UNITS] =
511 0x0000000000LL, /* NIL => break 0 */
512 0x0008000000LL, /* I-unit nop */
513 0x0008000000LL, /* M-unit nop */
514 0x4000000000LL, /* B-unit nop */
515 0x0008000000LL, /* F-unit nop */
516 0x0008000000LL, /* L-"unit" nop */
517 0x0008000000LL, /* X-unit nop */
520 /* Can't be `const' as it's passed to input routines (which have the
521 habit of setting temporary sentinels. */
522 static char special_section_name[][20] =
524 {".bss"}, {".sbss"}, {".sdata"}, {".rodata"}, {".comment"},
525 {".IA_64.unwind"}, {".IA_64.unwind_info"}
528 /* The best template for a particular sequence of up to three
529 instructions: */
530 #define N IA64_NUM_TYPES
531 static unsigned char best_template[N][N][N];
532 #undef N
534 /* Resource dependencies currently in effect */
535 static struct rsrc {
536 int depind; /* dependency index */
537 const struct ia64_dependency *dependency; /* actual dependency */
538 unsigned specific:1, /* is this a specific bit/regno? */
539 link_to_qp_branch:1; /* will a branch on the same QP clear it?*/
540 int index; /* specific regno/bit within dependency */
541 int note; /* optional qualifying note (0 if none) */
542 #define STATE_NONE 0
543 #define STATE_STOP 1
544 #define STATE_SRLZ 2
545 int insn_srlz; /* current insn serialization state */
546 int data_srlz; /* current data serialization state */
547 int qp_regno; /* qualifying predicate for this usage */
548 char *file; /* what file marked this dependency */
549 unsigned int line; /* what line marked this dependency */
550 struct mem_offset mem_offset; /* optional memory offset hint */
551 enum { CMP_NONE, CMP_OR, CMP_AND } cmp_type; /* OR or AND compare? */
552 int path; /* corresponding code entry index */
553 } *regdeps = NULL;
554 static int regdepslen = 0;
555 static int regdepstotlen = 0;
556 static const char *dv_mode[] = { "RAW", "WAW", "WAR" };
557 static const char *dv_sem[] = { "none", "implied", "impliedf",
558 "data", "instr", "specific", "stop", "other" };
559 static const char *dv_cmp_type[] = { "none", "OR", "AND" };
561 /* Current state of PR mutexation */
562 static struct qpmutex {
563 valueT prmask;
564 int path;
565 } *qp_mutexes = NULL; /* QP mutex bitmasks */
566 static int qp_mutexeslen = 0;
567 static int qp_mutexestotlen = 0;
568 static valueT qp_safe_across_calls = 0;
570 /* Current state of PR implications */
571 static struct qp_imply {
572 unsigned p1:6;
573 unsigned p2:6;
574 unsigned p2_branched:1;
575 int path;
576 } *qp_implies = NULL;
577 static int qp_implieslen = 0;
578 static int qp_impliestotlen = 0;
580 /* Keep track of static GR values so that indirect register usage can
581 sometimes be tracked. */
582 static struct gr {
583 unsigned known:1;
584 int path;
585 valueT value;
586 } gr_values[128] = {{ 1, 0, 0 }};
588 /* These are the routines required to output the various types of
589 unwind records. */
591 /* A slot_number is a frag address plus the slot index (0-2). We use the
592 frag address here so that if there is a section switch in the middle of
593 a function, then instructions emitted to a different section are not
594 counted. Since there may be more than one frag for a function, this
595 means we also need to keep track of which frag this address belongs to
596 so we can compute inter-frag distances. This also nicely solves the
597 problem with nops emitted for align directives, which can't easily be
598 counted, but can easily be derived from frag sizes. */
600 typedef struct unw_rec_list {
601 unwind_record r;
602 unsigned long slot_number;
603 fragS *slot_frag;
604 struct unw_rec_list *next;
605 } unw_rec_list;
607 #define SLOT_NUM_NOT_SET (unsigned)-1
609 static struct
611 unsigned long next_slot_number;
612 fragS *next_slot_frag;
614 /* Maintain a list of unwind entries for the current function. */
615 unw_rec_list *list;
616 unw_rec_list *tail;
618 /* Any unwind entires that should be attached to the current slot
619 that an insn is being constructed for. */
620 unw_rec_list *current_entry;
622 /* These are used to create the unwind table entry for this function. */
623 symbolS *proc_start;
624 symbolS *proc_end;
625 symbolS *info; /* pointer to unwind info */
626 symbolS *personality_routine;
627 segT saved_text_seg;
628 subsegT saved_text_subseg;
629 unsigned int force_unwind_entry : 1; /* force generation of unwind entry? */
631 /* TRUE if processing unwind directives in a prologue region. */
632 int prologue;
633 int prologue_mask;
634 unsigned int prologue_count; /* number of .prologues seen so far */
635 } unwind;
637 typedef void (*vbyte_func) PARAMS ((int, char *, char *));
639 /* Forward delarations: */
640 static int ar_is_in_integer_unit PARAMS ((int regnum));
641 static void set_section PARAMS ((char *name));
642 static unsigned int set_regstack PARAMS ((unsigned int, unsigned int,
643 unsigned int, unsigned int));
644 static void dot_radix PARAMS ((int));
645 static void dot_special_section PARAMS ((int));
646 static void dot_proc PARAMS ((int));
647 static void dot_fframe PARAMS ((int));
648 static void dot_vframe PARAMS ((int));
649 static void dot_vframesp PARAMS ((int));
650 static void dot_vframepsp PARAMS ((int));
651 static void dot_save PARAMS ((int));
652 static void dot_restore PARAMS ((int));
653 static void dot_restorereg PARAMS ((int));
654 static void dot_restorereg_p PARAMS ((int));
655 static void dot_handlerdata PARAMS ((int));
656 static void dot_unwentry PARAMS ((int));
657 static void dot_altrp PARAMS ((int));
658 static void dot_savemem PARAMS ((int));
659 static void dot_saveg PARAMS ((int));
660 static void dot_savef PARAMS ((int));
661 static void dot_saveb PARAMS ((int));
662 static void dot_savegf PARAMS ((int));
663 static void dot_spill PARAMS ((int));
664 static void dot_spillreg PARAMS ((int));
665 static void dot_spillmem PARAMS ((int));
666 static void dot_spillreg_p PARAMS ((int));
667 static void dot_spillmem_p PARAMS ((int));
668 static void dot_label_state PARAMS ((int));
669 static void dot_copy_state PARAMS ((int));
670 static void dot_unwabi PARAMS ((int));
671 static void dot_personality PARAMS ((int));
672 static void dot_body PARAMS ((int));
673 static void dot_prologue PARAMS ((int));
674 static void dot_endp PARAMS ((int));
675 static void dot_template PARAMS ((int));
676 static void dot_regstk PARAMS ((int));
677 static void dot_rot PARAMS ((int));
678 static void dot_byteorder PARAMS ((int));
679 static void dot_psr PARAMS ((int));
680 static void dot_alias PARAMS ((int));
681 static void dot_ln PARAMS ((int));
682 static char *parse_section_name PARAMS ((void));
683 static void dot_xdata PARAMS ((int));
684 static void stmt_float_cons PARAMS ((int));
685 static void stmt_cons_ua PARAMS ((int));
686 static void dot_xfloat_cons PARAMS ((int));
687 static void dot_xstringer PARAMS ((int));
688 static void dot_xdata_ua PARAMS ((int));
689 static void dot_xfloat_cons_ua PARAMS ((int));
690 static void print_prmask PARAMS ((valueT mask));
691 static void dot_pred_rel PARAMS ((int));
692 static void dot_reg_val PARAMS ((int));
693 static void dot_dv_mode PARAMS ((int));
694 static void dot_entry PARAMS ((int));
695 static void dot_mem_offset PARAMS ((int));
696 static void add_unwind_entry PARAMS((unw_rec_list *ptr));
697 static symbolS *declare_register PARAMS ((const char *name, int regnum));
698 static void declare_register_set PARAMS ((const char *, int, int));
699 static unsigned int operand_width PARAMS ((enum ia64_opnd));
700 static enum operand_match_result operand_match PARAMS ((const struct ia64_opcode *idesc,
701 int index,
702 expressionS *e));
703 static int parse_operand PARAMS ((expressionS *e));
704 static struct ia64_opcode * parse_operands PARAMS ((struct ia64_opcode *));
705 static void build_insn PARAMS ((struct slot *, bfd_vma *));
706 static void emit_one_bundle PARAMS ((void));
707 static void fix_insn PARAMS ((fixS *, const struct ia64_operand *, valueT));
708 static bfd_reloc_code_real_type ia64_gen_real_reloc_type PARAMS ((struct symbol *sym,
709 bfd_reloc_code_real_type r_type));
710 static void insn_group_break PARAMS ((int, int, int));
711 static void mark_resource PARAMS ((struct ia64_opcode *, const struct ia64_dependency *,
712 struct rsrc *, int depind, int path));
713 static void add_qp_mutex PARAMS((valueT mask));
714 static void add_qp_imply PARAMS((int p1, int p2));
715 static void clear_qp_branch_flag PARAMS((valueT mask));
716 static void clear_qp_mutex PARAMS((valueT mask));
717 static void clear_qp_implies PARAMS((valueT p1_mask, valueT p2_mask));
718 static void clear_register_values PARAMS ((void));
719 static void print_dependency PARAMS ((const char *action, int depind));
720 static void instruction_serialization PARAMS ((void));
721 static void data_serialization PARAMS ((void));
722 static void remove_marked_resource PARAMS ((struct rsrc *));
723 static int is_conditional_branch PARAMS ((struct ia64_opcode *));
724 static int is_taken_branch PARAMS ((struct ia64_opcode *));
725 static int is_interruption_or_rfi PARAMS ((struct ia64_opcode *));
726 static int depends_on PARAMS ((int, struct ia64_opcode *));
727 static int specify_resource PARAMS ((const struct ia64_dependency *,
728 struct ia64_opcode *, int, struct rsrc [], int, int));
729 static int check_dv PARAMS((struct ia64_opcode *idesc));
730 static void check_dependencies PARAMS((struct ia64_opcode *));
731 static void mark_resources PARAMS((struct ia64_opcode *));
732 static void update_dependencies PARAMS((struct ia64_opcode *));
733 static void note_register_values PARAMS((struct ia64_opcode *));
734 static int qp_mutex PARAMS ((int, int, int));
735 static int resources_match PARAMS ((struct rsrc *, struct ia64_opcode *, int, int, int));
736 static void output_vbyte_mem PARAMS ((int, char *, char *));
737 static void count_output PARAMS ((int, char *, char *));
738 static void output_R1_format PARAMS ((vbyte_func, unw_record_type, int));
739 static void output_R2_format PARAMS ((vbyte_func, int, int, unsigned long));
740 static void output_R3_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
741 static void output_P1_format PARAMS ((vbyte_func, int));
742 static void output_P2_format PARAMS ((vbyte_func, int, int));
743 static void output_P3_format PARAMS ((vbyte_func, unw_record_type, int));
744 static void output_P4_format PARAMS ((vbyte_func, unsigned char *, unsigned long));
745 static void output_P5_format PARAMS ((vbyte_func, int, unsigned long));
746 static void output_P6_format PARAMS ((vbyte_func, unw_record_type, int));
747 static void output_P7_format PARAMS ((vbyte_func, unw_record_type, unsigned long, unsigned long));
748 static void output_P8_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
749 static void output_P9_format PARAMS ((vbyte_func, int, int));
750 static void output_P10_format PARAMS ((vbyte_func, int, int));
751 static void output_B1_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
752 static void output_B2_format PARAMS ((vbyte_func, unsigned long, unsigned long));
753 static void output_B3_format PARAMS ((vbyte_func, unsigned long, unsigned long));
754 static void output_B4_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
755 static char format_ab_reg PARAMS ((int, int));
756 static void output_X1_format PARAMS ((vbyte_func, unw_record_type, int, int, unsigned long,
757 unsigned long));
758 static void output_X2_format PARAMS ((vbyte_func, int, int, int, int, int, unsigned long));
759 static void output_X3_format PARAMS ((vbyte_func, unw_record_type, int, int, int, unsigned long,
760 unsigned long));
761 static void output_X4_format PARAMS ((vbyte_func, int, int, int, int, int, int, unsigned long));
762 static void free_list_records PARAMS ((unw_rec_list *));
763 static unw_rec_list *output_prologue PARAMS ((void));
764 static unw_rec_list *output_prologue_gr PARAMS ((unsigned int, unsigned int));
765 static unw_rec_list *output_body PARAMS ((void));
766 static unw_rec_list *output_mem_stack_f PARAMS ((unsigned int));
767 static unw_rec_list *output_mem_stack_v PARAMS ((void));
768 static unw_rec_list *output_psp_gr PARAMS ((unsigned int));
769 static unw_rec_list *output_psp_sprel PARAMS ((unsigned int));
770 static unw_rec_list *output_rp_when PARAMS ((void));
771 static unw_rec_list *output_rp_gr PARAMS ((unsigned int));
772 static unw_rec_list *output_rp_br PARAMS ((unsigned int));
773 static unw_rec_list *output_rp_psprel PARAMS ((unsigned int));
774 static unw_rec_list *output_rp_sprel PARAMS ((unsigned int));
775 static unw_rec_list *output_pfs_when PARAMS ((void));
776 static unw_rec_list *output_pfs_gr PARAMS ((unsigned int));
777 static unw_rec_list *output_pfs_psprel PARAMS ((unsigned int));
778 static unw_rec_list *output_pfs_sprel PARAMS ((unsigned int));
779 static unw_rec_list *output_preds_when PARAMS ((void));
780 static unw_rec_list *output_preds_gr PARAMS ((unsigned int));
781 static unw_rec_list *output_preds_psprel PARAMS ((unsigned int));
782 static unw_rec_list *output_preds_sprel PARAMS ((unsigned int));
783 static unw_rec_list *output_fr_mem PARAMS ((unsigned int));
784 static unw_rec_list *output_frgr_mem PARAMS ((unsigned int, unsigned int));
785 static unw_rec_list *output_gr_gr PARAMS ((unsigned int, unsigned int));
786 static unw_rec_list *output_gr_mem PARAMS ((unsigned int));
787 static unw_rec_list *output_br_mem PARAMS ((unsigned int));
788 static unw_rec_list *output_br_gr PARAMS ((unsigned int, unsigned int));
789 static unw_rec_list *output_spill_base PARAMS ((unsigned int));
790 static unw_rec_list *output_unat_when PARAMS ((void));
791 static unw_rec_list *output_unat_gr PARAMS ((unsigned int));
792 static unw_rec_list *output_unat_psprel PARAMS ((unsigned int));
793 static unw_rec_list *output_unat_sprel PARAMS ((unsigned int));
794 static unw_rec_list *output_lc_when PARAMS ((void));
795 static unw_rec_list *output_lc_gr PARAMS ((unsigned int));
796 static unw_rec_list *output_lc_psprel PARAMS ((unsigned int));
797 static unw_rec_list *output_lc_sprel PARAMS ((unsigned int));
798 static unw_rec_list *output_fpsr_when PARAMS ((void));
799 static unw_rec_list *output_fpsr_gr PARAMS ((unsigned int));
800 static unw_rec_list *output_fpsr_psprel PARAMS ((unsigned int));
801 static unw_rec_list *output_fpsr_sprel PARAMS ((unsigned int));
802 static unw_rec_list *output_priunat_when_gr PARAMS ((void));
803 static unw_rec_list *output_priunat_when_mem PARAMS ((void));
804 static unw_rec_list *output_priunat_gr PARAMS ((unsigned int));
805 static unw_rec_list *output_priunat_psprel PARAMS ((unsigned int));
806 static unw_rec_list *output_priunat_sprel PARAMS ((unsigned int));
807 static unw_rec_list *output_bsp_when PARAMS ((void));
808 static unw_rec_list *output_bsp_gr PARAMS ((unsigned int));
809 static unw_rec_list *output_bsp_psprel PARAMS ((unsigned int));
810 static unw_rec_list *output_bsp_sprel PARAMS ((unsigned int));
811 static unw_rec_list *output_bspstore_when PARAMS ((void));
812 static unw_rec_list *output_bspstore_gr PARAMS ((unsigned int));
813 static unw_rec_list *output_bspstore_psprel PARAMS ((unsigned int));
814 static unw_rec_list *output_bspstore_sprel PARAMS ((unsigned int));
815 static unw_rec_list *output_rnat_when PARAMS ((void));
816 static unw_rec_list *output_rnat_gr PARAMS ((unsigned int));
817 static unw_rec_list *output_rnat_psprel PARAMS ((unsigned int));
818 static unw_rec_list *output_rnat_sprel PARAMS ((unsigned int));
819 static unw_rec_list *output_unwabi PARAMS ((unsigned long, unsigned long));
820 static unw_rec_list *output_epilogue PARAMS ((unsigned long));
821 static unw_rec_list *output_label_state PARAMS ((unsigned long));
822 static unw_rec_list *output_copy_state PARAMS ((unsigned long));
823 static unw_rec_list *output_spill_psprel PARAMS ((unsigned int, unsigned int, unsigned int));
824 static unw_rec_list *output_spill_sprel PARAMS ((unsigned int, unsigned int, unsigned int));
825 static unw_rec_list *output_spill_psprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
826 unsigned int));
827 static unw_rec_list *output_spill_sprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
828 unsigned int));
829 static unw_rec_list *output_spill_reg PARAMS ((unsigned int, unsigned int, unsigned int,
830 unsigned int));
831 static unw_rec_list *output_spill_reg_p PARAMS ((unsigned int, unsigned int, unsigned int,
832 unsigned int, unsigned int));
833 static void process_one_record PARAMS ((unw_rec_list *, vbyte_func));
834 static void process_unw_records PARAMS ((unw_rec_list *, vbyte_func));
835 static int calc_record_size PARAMS ((unw_rec_list *));
836 static void set_imask PARAMS ((unw_rec_list *, unsigned long, unsigned long, unsigned int));
837 static int count_bits PARAMS ((unsigned long));
838 static unsigned long slot_index PARAMS ((unsigned long, fragS *,
839 unsigned long, fragS *));
840 static unw_rec_list *optimize_unw_records PARAMS ((unw_rec_list *));
841 static void fixup_unw_records PARAMS ((unw_rec_list *));
842 static int output_unw_records PARAMS ((unw_rec_list *, void **));
843 static int convert_expr_to_ab_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
844 static int convert_expr_to_xy_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
845 static int generate_unwind_image PARAMS ((const char *));
847 /* Build the unwind section name by appending the (possibly stripped)
848 text section NAME to the unwind PREFIX. The resulting string
849 pointer is assigned to RESULT. The string is allocated on the
850 stack, so this must be a macro... */
851 #define make_unw_section_name(special, text_name, result) \
853 char *_prefix = special_section_name[special]; \
854 size_t _prefix_len = strlen (_prefix), _text_len = strlen (text_name); \
855 char *_result = alloca (_prefix_len + _text_len + 1); \
856 memcpy(_result, _prefix, _prefix_len); \
857 memcpy(_result + _prefix_len, text_name, _text_len); \
858 _result[_prefix_len + _text_len] = '\0'; \
859 result = _result; \
861 while (0)
863 /* Determine if application register REGNUM resides in the integer
864 unit (as opposed to the memory unit). */
865 static int
866 ar_is_in_integer_unit (reg)
867 int reg;
869 reg -= REG_AR;
871 return (reg == 64 /* pfs */
872 || reg == 65 /* lc */
873 || reg == 66 /* ec */
874 /* ??? ias accepts and puts these in the integer unit. */
875 || (reg >= 112 && reg <= 127));
878 /* Switch to section NAME and create section if necessary. It's
879 rather ugly that we have to manipulate input_line_pointer but I
880 don't see any other way to accomplish the same thing without
881 changing obj-elf.c (which may be the Right Thing, in the end). */
882 static void
883 set_section (name)
884 char *name;
886 char *saved_input_line_pointer;
888 saved_input_line_pointer = input_line_pointer;
889 input_line_pointer = name;
890 obj_elf_section (0);
891 input_line_pointer = saved_input_line_pointer;
894 /* Map SHF_IA_64_SHORT to SEC_SMALL_DATA. */
896 flagword
897 ia64_elf_section_flags (flags, attr, type)
898 flagword flags;
899 int attr, type ATTRIBUTE_UNUSED;
901 if (attr & SHF_IA_64_SHORT)
902 flags |= SEC_SMALL_DATA;
903 return flags;
907 ia64_elf_section_type (str, len)
908 const char *str;
909 size_t len;
911 len = sizeof (ELF_STRING_ia64_unwind_info) - 1;
912 if (strncmp (str, ELF_STRING_ia64_unwind_info, len) == 0)
913 return SHT_PROGBITS;
915 len = sizeof (ELF_STRING_ia64_unwind) - 1;
916 if (strncmp (str, ELF_STRING_ia64_unwind, len) == 0)
917 return SHT_IA_64_UNWIND;
919 return -1;
922 static unsigned int
923 set_regstack (ins, locs, outs, rots)
924 unsigned int ins, locs, outs, rots;
926 /* Size of frame. */
927 unsigned int sof;
929 sof = ins + locs + outs;
930 if (sof > 96)
932 as_bad ("Size of frame exceeds maximum of 96 registers");
933 return 0;
935 if (rots > sof)
937 as_warn ("Size of rotating registers exceeds frame size");
938 return 0;
940 md.in.base = REG_GR + 32;
941 md.loc.base = md.in.base + ins;
942 md.out.base = md.loc.base + locs;
944 md.in.num_regs = ins;
945 md.loc.num_regs = locs;
946 md.out.num_regs = outs;
947 md.rot.num_regs = rots;
948 return sof;
951 void
952 ia64_flush_insns ()
954 struct label_fix *lfix;
955 segT saved_seg;
956 subsegT saved_subseg;
957 unw_rec_list *ptr;
959 if (!md.last_text_seg)
960 return;
962 saved_seg = now_seg;
963 saved_subseg = now_subseg;
965 subseg_set (md.last_text_seg, 0);
967 while (md.num_slots_in_use > 0)
968 emit_one_bundle (); /* force out queued instructions */
970 /* In case there are labels following the last instruction, resolve
971 those now: */
972 for (lfix = CURR_SLOT.label_fixups; lfix; lfix = lfix->next)
974 S_SET_VALUE (lfix->sym, frag_now_fix ());
975 symbol_set_frag (lfix->sym, frag_now);
977 CURR_SLOT.label_fixups = 0;
978 for (lfix = CURR_SLOT.tag_fixups; lfix; lfix = lfix->next)
980 S_SET_VALUE (lfix->sym, frag_now_fix ());
981 symbol_set_frag (lfix->sym, frag_now);
983 CURR_SLOT.tag_fixups = 0;
985 /* In case there are unwind directives following the last instruction,
986 resolve those now. We only handle body and prologue directives here.
987 Give an error for others. */
988 for (ptr = unwind.current_entry; ptr; ptr = ptr->next)
990 if (ptr->r.type == prologue || ptr->r.type == prologue_gr
991 || ptr->r.type == body)
993 ptr->slot_number = (unsigned long) frag_more (0);
994 ptr->slot_frag = frag_now;
996 else
997 as_bad (_("Unwind directive not followed by an instruction."));
999 unwind.current_entry = NULL;
1001 subseg_set (saved_seg, saved_subseg);
1003 if (md.qp.X_op == O_register)
1004 as_bad ("qualifying predicate not followed by instruction");
1007 void
1008 ia64_do_align (nbytes)
1009 int nbytes;
1011 char *saved_input_line_pointer = input_line_pointer;
1013 input_line_pointer = "";
1014 s_align_bytes (nbytes);
1015 input_line_pointer = saved_input_line_pointer;
1018 void
1019 ia64_cons_align (nbytes)
1020 int nbytes;
1022 if (md.auto_align)
1024 char *saved_input_line_pointer = input_line_pointer;
1025 input_line_pointer = "";
1026 s_align_bytes (nbytes);
1027 input_line_pointer = saved_input_line_pointer;
1031 /* Output COUNT bytes to a memory location. */
1032 static unsigned char *vbyte_mem_ptr = NULL;
1034 void
1035 output_vbyte_mem (count, ptr, comment)
1036 int count;
1037 char *ptr;
1038 char *comment ATTRIBUTE_UNUSED;
1040 int x;
1041 if (vbyte_mem_ptr == NULL)
1042 abort ();
1044 if (count == 0)
1045 return;
1046 for (x = 0; x < count; x++)
1047 *(vbyte_mem_ptr++) = ptr[x];
1050 /* Count the number of bytes required for records. */
1051 static int vbyte_count = 0;
1052 void
1053 count_output (count, ptr, comment)
1054 int count;
1055 char *ptr ATTRIBUTE_UNUSED;
1056 char *comment ATTRIBUTE_UNUSED;
1058 vbyte_count += count;
1061 static void
1062 output_R1_format (f, rtype, rlen)
1063 vbyte_func f;
1064 unw_record_type rtype;
1065 int rlen;
1067 int r = 0;
1068 char byte;
1069 if (rlen > 0x1f)
1071 output_R3_format (f, rtype, rlen);
1072 return;
1075 if (rtype == body)
1076 r = 1;
1077 else if (rtype != prologue)
1078 as_bad ("record type is not valid");
1080 byte = UNW_R1 | (r << 5) | (rlen & 0x1f);
1081 (*f) (1, &byte, NULL);
1084 static void
1085 output_R2_format (f, mask, grsave, rlen)
1086 vbyte_func f;
1087 int mask, grsave;
1088 unsigned long rlen;
1090 char bytes[20];
1091 int count = 2;
1092 mask = (mask & 0x0f);
1093 grsave = (grsave & 0x7f);
1095 bytes[0] = (UNW_R2 | (mask >> 1));
1096 bytes[1] = (((mask & 0x01) << 7) | grsave);
1097 count += output_leb128 (bytes + 2, rlen, 0);
1098 (*f) (count, bytes, NULL);
1101 static void
1102 output_R3_format (f, rtype, rlen)
1103 vbyte_func f;
1104 unw_record_type rtype;
1105 unsigned long rlen;
1107 int r = 0, count;
1108 char bytes[20];
1109 if (rlen <= 0x1f)
1111 output_R1_format (f, rtype, rlen);
1112 return;
1115 if (rtype == body)
1116 r = 1;
1117 else if (rtype != prologue)
1118 as_bad ("record type is not valid");
1119 bytes[0] = (UNW_R3 | r);
1120 count = output_leb128 (bytes + 1, rlen, 0);
1121 (*f) (count + 1, bytes, NULL);
1124 static void
1125 output_P1_format (f, brmask)
1126 vbyte_func f;
1127 int brmask;
1129 char byte;
1130 byte = UNW_P1 | (brmask & 0x1f);
1131 (*f) (1, &byte, NULL);
1134 static void
1135 output_P2_format (f, brmask, gr)
1136 vbyte_func f;
1137 int brmask;
1138 int gr;
1140 char bytes[2];
1141 brmask = (brmask & 0x1f);
1142 bytes[0] = UNW_P2 | (brmask >> 1);
1143 bytes[1] = (((brmask & 1) << 7) | gr);
1144 (*f) (2, bytes, NULL);
1147 static void
1148 output_P3_format (f, rtype, reg)
1149 vbyte_func f;
1150 unw_record_type rtype;
1151 int reg;
1153 char bytes[2];
1154 int r = 0;
1155 reg = (reg & 0x7f);
1156 switch (rtype)
1158 case psp_gr:
1159 r = 0;
1160 break;
1161 case rp_gr:
1162 r = 1;
1163 break;
1164 case pfs_gr:
1165 r = 2;
1166 break;
1167 case preds_gr:
1168 r = 3;
1169 break;
1170 case unat_gr:
1171 r = 4;
1172 break;
1173 case lc_gr:
1174 r = 5;
1175 break;
1176 case rp_br:
1177 r = 6;
1178 break;
1179 case rnat_gr:
1180 r = 7;
1181 break;
1182 case bsp_gr:
1183 r = 8;
1184 break;
1185 case bspstore_gr:
1186 r = 9;
1187 break;
1188 case fpsr_gr:
1189 r = 10;
1190 break;
1191 case priunat_gr:
1192 r = 11;
1193 break;
1194 default:
1195 as_bad ("Invalid record type for P3 format.");
1197 bytes[0] = (UNW_P3 | (r >> 1));
1198 bytes[1] = (((r & 1) << 7) | reg);
1199 (*f) (2, bytes, NULL);
1202 static void
1203 output_P4_format (f, imask, imask_size)
1204 vbyte_func f;
1205 unsigned char *imask;
1206 unsigned long imask_size;
1208 imask[0] = UNW_P4;
1209 (*f) (imask_size, imask, NULL);
1212 static void
1213 output_P5_format (f, grmask, frmask)
1214 vbyte_func f;
1215 int grmask;
1216 unsigned long frmask;
1218 char bytes[4];
1219 grmask = (grmask & 0x0f);
1221 bytes[0] = UNW_P5;
1222 bytes[1] = ((grmask << 4) | ((frmask & 0x000f0000) >> 16));
1223 bytes[2] = ((frmask & 0x0000ff00) >> 8);
1224 bytes[3] = (frmask & 0x000000ff);
1225 (*f) (4, bytes, NULL);
1228 static void
1229 output_P6_format (f, rtype, rmask)
1230 vbyte_func f;
1231 unw_record_type rtype;
1232 int rmask;
1234 char byte;
1235 int r = 0;
1237 if (rtype == gr_mem)
1238 r = 1;
1239 else if (rtype != fr_mem)
1240 as_bad ("Invalid record type for format P6");
1241 byte = (UNW_P6 | (r << 4) | (rmask & 0x0f));
1242 (*f) (1, &byte, NULL);
1245 static void
1246 output_P7_format (f, rtype, w1, w2)
1247 vbyte_func f;
1248 unw_record_type rtype;
1249 unsigned long w1;
1250 unsigned long w2;
1252 char bytes[20];
1253 int count = 1;
1254 int r = 0;
1255 count += output_leb128 (bytes + 1, w1, 0);
1256 switch (rtype)
1258 case mem_stack_f:
1259 r = 0;
1260 count += output_leb128 (bytes + count, w2 >> 4, 0);
1261 break;
1262 case mem_stack_v:
1263 r = 1;
1264 break;
1265 case spill_base:
1266 r = 2;
1267 break;
1268 case psp_sprel:
1269 r = 3;
1270 break;
1271 case rp_when:
1272 r = 4;
1273 break;
1274 case rp_psprel:
1275 r = 5;
1276 break;
1277 case pfs_when:
1278 r = 6;
1279 break;
1280 case pfs_psprel:
1281 r = 7;
1282 break;
1283 case preds_when:
1284 r = 8;
1285 break;
1286 case preds_psprel:
1287 r = 9;
1288 break;
1289 case lc_when:
1290 r = 10;
1291 break;
1292 case lc_psprel:
1293 r = 11;
1294 break;
1295 case unat_when:
1296 r = 12;
1297 break;
1298 case unat_psprel:
1299 r = 13;
1300 break;
1301 case fpsr_when:
1302 r = 14;
1303 break;
1304 case fpsr_psprel:
1305 r = 15;
1306 break;
1307 default:
1308 break;
1310 bytes[0] = (UNW_P7 | r);
1311 (*f) (count, bytes, NULL);
1314 static void
1315 output_P8_format (f, rtype, t)
1316 vbyte_func f;
1317 unw_record_type rtype;
1318 unsigned long t;
1320 char bytes[20];
1321 int r = 0;
1322 int count = 2;
1323 bytes[0] = UNW_P8;
1324 switch (rtype)
1326 case rp_sprel:
1327 r = 1;
1328 break;
1329 case pfs_sprel:
1330 r = 2;
1331 break;
1332 case preds_sprel:
1333 r = 3;
1334 break;
1335 case lc_sprel:
1336 r = 4;
1337 break;
1338 case unat_sprel:
1339 r = 5;
1340 break;
1341 case fpsr_sprel:
1342 r = 6;
1343 break;
1344 case bsp_when:
1345 r = 7;
1346 break;
1347 case bsp_psprel:
1348 r = 8;
1349 break;
1350 case bsp_sprel:
1351 r = 9;
1352 break;
1353 case bspstore_when:
1354 r = 10;
1355 break;
1356 case bspstore_psprel:
1357 r = 11;
1358 break;
1359 case bspstore_sprel:
1360 r = 12;
1361 break;
1362 case rnat_when:
1363 r = 13;
1364 break;
1365 case rnat_psprel:
1366 r = 14;
1367 break;
1368 case rnat_sprel:
1369 r = 15;
1370 break;
1371 case priunat_when_gr:
1372 r = 16;
1373 break;
1374 case priunat_psprel:
1375 r = 17;
1376 break;
1377 case priunat_sprel:
1378 r = 18;
1379 break;
1380 case priunat_when_mem:
1381 r = 19;
1382 break;
1383 default:
1384 break;
1386 bytes[1] = r;
1387 count += output_leb128 (bytes + 2, t, 0);
1388 (*f) (count, bytes, NULL);
1391 static void
1392 output_P9_format (f, grmask, gr)
1393 vbyte_func f;
1394 int grmask;
1395 int gr;
1397 char bytes[3];
1398 bytes[0] = UNW_P9;
1399 bytes[1] = (grmask & 0x0f);
1400 bytes[2] = (gr & 0x7f);
1401 (*f) (3, bytes, NULL);
1404 static void
1405 output_P10_format (f, abi, context)
1406 vbyte_func f;
1407 int abi;
1408 int context;
1410 char bytes[3];
1411 bytes[0] = UNW_P10;
1412 bytes[1] = (abi & 0xff);
1413 bytes[2] = (context & 0xff);
1414 (*f) (3, bytes, NULL);
1417 static void
1418 output_B1_format (f, rtype, label)
1419 vbyte_func f;
1420 unw_record_type rtype;
1421 unsigned long label;
1423 char byte;
1424 int r = 0;
1425 if (label > 0x1f)
1427 output_B4_format (f, rtype, label);
1428 return;
1430 if (rtype == copy_state)
1431 r = 1;
1432 else if (rtype != label_state)
1433 as_bad ("Invalid record type for format B1");
1435 byte = (UNW_B1 | (r << 5) | (label & 0x1f));
1436 (*f) (1, &byte, NULL);
1439 static void
1440 output_B2_format (f, ecount, t)
1441 vbyte_func f;
1442 unsigned long ecount;
1443 unsigned long t;
1445 char bytes[20];
1446 int count = 1;
1447 if (ecount > 0x1f)
1449 output_B3_format (f, ecount, t);
1450 return;
1452 bytes[0] = (UNW_B2 | (ecount & 0x1f));
1453 count += output_leb128 (bytes + 1, t, 0);
1454 (*f) (count, bytes, NULL);
1457 static void
1458 output_B3_format (f, ecount, t)
1459 vbyte_func f;
1460 unsigned long ecount;
1461 unsigned long t;
1463 char bytes[20];
1464 int count = 1;
1465 if (ecount <= 0x1f)
1467 output_B2_format (f, ecount, t);
1468 return;
1470 bytes[0] = UNW_B3;
1471 count += output_leb128 (bytes + 1, t, 0);
1472 count += output_leb128 (bytes + count, ecount, 0);
1473 (*f) (count, bytes, NULL);
1476 static void
1477 output_B4_format (f, rtype, label)
1478 vbyte_func f;
1479 unw_record_type rtype;
1480 unsigned long label;
1482 char bytes[20];
1483 int r = 0;
1484 int count = 1;
1485 if (label <= 0x1f)
1487 output_B1_format (f, rtype, label);
1488 return;
1491 if (rtype == copy_state)
1492 r = 1;
1493 else if (rtype != label_state)
1494 as_bad ("Invalid record type for format B1");
1496 bytes[0] = (UNW_B4 | (r << 3));
1497 count += output_leb128 (bytes + 1, label, 0);
1498 (*f) (count, bytes, NULL);
1501 static char
1502 format_ab_reg (ab, reg)
1503 int ab;
1504 int reg;
1506 int ret;
1507 ab = (ab & 3);
1508 reg = (reg & 0x1f);
1509 ret = (ab << 5) | reg;
1510 return ret;
1513 static void
1514 output_X1_format (f, rtype, ab, reg, t, w1)
1515 vbyte_func f;
1516 unw_record_type rtype;
1517 int ab, reg;
1518 unsigned long t;
1519 unsigned long w1;
1521 char bytes[20];
1522 int r = 0;
1523 int count = 2;
1524 bytes[0] = UNW_X1;
1526 if (rtype == spill_sprel)
1527 r = 1;
1528 else if (rtype != spill_psprel)
1529 as_bad ("Invalid record type for format X1");
1530 bytes[1] = ((r << 7) | format_ab_reg (ab, reg));
1531 count += output_leb128 (bytes + 2, t, 0);
1532 count += output_leb128 (bytes + count, w1, 0);
1533 (*f) (count, bytes, NULL);
1536 static void
1537 output_X2_format (f, ab, reg, x, y, treg, t)
1538 vbyte_func f;
1539 int ab, reg;
1540 int x, y, treg;
1541 unsigned long t;
1543 char bytes[20];
1544 int count = 3;
1545 bytes[0] = UNW_X2;
1546 bytes[1] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1547 bytes[2] = (((y & 1) << 7) | (treg & 0x7f));
1548 count += output_leb128 (bytes + 3, t, 0);
1549 (*f) (count, bytes, NULL);
1552 static void
1553 output_X3_format (f, rtype, qp, ab, reg, t, w1)
1554 vbyte_func f;
1555 unw_record_type rtype;
1556 int qp;
1557 int ab, reg;
1558 unsigned long t;
1559 unsigned long w1;
1561 char bytes[20];
1562 int r = 0;
1563 int count = 3;
1564 bytes[0] = UNW_X3;
1566 if (rtype == spill_sprel_p)
1567 r = 1;
1568 else if (rtype != spill_psprel_p)
1569 as_bad ("Invalid record type for format X3");
1570 bytes[1] = ((r << 7) | (qp & 0x3f));
1571 bytes[2] = format_ab_reg (ab, reg);
1572 count += output_leb128 (bytes + 3, t, 0);
1573 count += output_leb128 (bytes + count, w1, 0);
1574 (*f) (count, bytes, NULL);
1577 static void
1578 output_X4_format (f, qp, ab, reg, x, y, treg, t)
1579 vbyte_func f;
1580 int qp;
1581 int ab, reg;
1582 int x, y, treg;
1583 unsigned long t;
1585 char bytes[20];
1586 int count = 4;
1587 bytes[0] = UNW_X4;
1588 bytes[1] = (qp & 0x3f);
1589 bytes[2] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1590 bytes[3] = (((y & 1) << 7) | (treg & 0x7f));
1591 count += output_leb128 (bytes + 4, t, 0);
1592 (*f) (count, bytes, NULL);
1595 /* This function allocates a record list structure, and initializes fields. */
1597 static unw_rec_list *
1598 alloc_record (unw_record_type t)
1600 unw_rec_list *ptr;
1601 ptr = xmalloc (sizeof (*ptr));
1602 ptr->next = NULL;
1603 ptr->slot_number = SLOT_NUM_NOT_SET;
1604 ptr->r.type = t;
1605 return ptr;
1608 /* This function frees an entire list of record structures. */
1610 void
1611 free_list_records (unw_rec_list *first)
1613 unw_rec_list *ptr;
1614 for (ptr = first; ptr != NULL;)
1616 unw_rec_list *tmp = ptr;
1618 if ((tmp->r.type == prologue || tmp->r.type == prologue_gr)
1619 && tmp->r.record.r.mask.i)
1620 free (tmp->r.record.r.mask.i);
1622 ptr = ptr->next;
1623 free (tmp);
1627 static unw_rec_list *
1628 output_prologue ()
1630 unw_rec_list *ptr = alloc_record (prologue);
1631 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1632 return ptr;
1635 static unw_rec_list *
1636 output_prologue_gr (saved_mask, reg)
1637 unsigned int saved_mask;
1638 unsigned int reg;
1640 unw_rec_list *ptr = alloc_record (prologue_gr);
1641 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1642 ptr->r.record.r.grmask = saved_mask;
1643 ptr->r.record.r.grsave = reg;
1644 return ptr;
1647 static unw_rec_list *
1648 output_body ()
1650 unw_rec_list *ptr = alloc_record (body);
1651 return ptr;
1654 static unw_rec_list *
1655 output_mem_stack_f (size)
1656 unsigned int size;
1658 unw_rec_list *ptr = alloc_record (mem_stack_f);
1659 ptr->r.record.p.size = size;
1660 return ptr;
1663 static unw_rec_list *
1664 output_mem_stack_v ()
1666 unw_rec_list *ptr = alloc_record (mem_stack_v);
1667 return ptr;
1670 static unw_rec_list *
1671 output_psp_gr (gr)
1672 unsigned int gr;
1674 unw_rec_list *ptr = alloc_record (psp_gr);
1675 ptr->r.record.p.gr = gr;
1676 return ptr;
1679 static unw_rec_list *
1680 output_psp_sprel (offset)
1681 unsigned int offset;
1683 unw_rec_list *ptr = alloc_record (psp_sprel);
1684 ptr->r.record.p.spoff = offset / 4;
1685 return ptr;
1688 static unw_rec_list *
1689 output_rp_when ()
1691 unw_rec_list *ptr = alloc_record (rp_when);
1692 return ptr;
1695 static unw_rec_list *
1696 output_rp_gr (gr)
1697 unsigned int gr;
1699 unw_rec_list *ptr = alloc_record (rp_gr);
1700 ptr->r.record.p.gr = gr;
1701 return ptr;
1704 static unw_rec_list *
1705 output_rp_br (br)
1706 unsigned int br;
1708 unw_rec_list *ptr = alloc_record (rp_br);
1709 ptr->r.record.p.br = br;
1710 return ptr;
1713 static unw_rec_list *
1714 output_rp_psprel (offset)
1715 unsigned int offset;
1717 unw_rec_list *ptr = alloc_record (rp_psprel);
1718 ptr->r.record.p.pspoff = offset / 4;
1719 return ptr;
1722 static unw_rec_list *
1723 output_rp_sprel (offset)
1724 unsigned int offset;
1726 unw_rec_list *ptr = alloc_record (rp_sprel);
1727 ptr->r.record.p.spoff = offset / 4;
1728 return ptr;
1731 static unw_rec_list *
1732 output_pfs_when ()
1734 unw_rec_list *ptr = alloc_record (pfs_when);
1735 return ptr;
1738 static unw_rec_list *
1739 output_pfs_gr (gr)
1740 unsigned int gr;
1742 unw_rec_list *ptr = alloc_record (pfs_gr);
1743 ptr->r.record.p.gr = gr;
1744 return ptr;
1747 static unw_rec_list *
1748 output_pfs_psprel (offset)
1749 unsigned int offset;
1751 unw_rec_list *ptr = alloc_record (pfs_psprel);
1752 ptr->r.record.p.pspoff = offset / 4;
1753 return ptr;
1756 static unw_rec_list *
1757 output_pfs_sprel (offset)
1758 unsigned int offset;
1760 unw_rec_list *ptr = alloc_record (pfs_sprel);
1761 ptr->r.record.p.spoff = offset / 4;
1762 return ptr;
1765 static unw_rec_list *
1766 output_preds_when ()
1768 unw_rec_list *ptr = alloc_record (preds_when);
1769 return ptr;
1772 static unw_rec_list *
1773 output_preds_gr (gr)
1774 unsigned int gr;
1776 unw_rec_list *ptr = alloc_record (preds_gr);
1777 ptr->r.record.p.gr = gr;
1778 return ptr;
1781 static unw_rec_list *
1782 output_preds_psprel (offset)
1783 unsigned int offset;
1785 unw_rec_list *ptr = alloc_record (preds_psprel);
1786 ptr->r.record.p.pspoff = offset / 4;
1787 return ptr;
1790 static unw_rec_list *
1791 output_preds_sprel (offset)
1792 unsigned int offset;
1794 unw_rec_list *ptr = alloc_record (preds_sprel);
1795 ptr->r.record.p.spoff = offset / 4;
1796 return ptr;
1799 static unw_rec_list *
1800 output_fr_mem (mask)
1801 unsigned int mask;
1803 unw_rec_list *ptr = alloc_record (fr_mem);
1804 ptr->r.record.p.rmask = mask;
1805 return ptr;
1808 static unw_rec_list *
1809 output_frgr_mem (gr_mask, fr_mask)
1810 unsigned int gr_mask;
1811 unsigned int fr_mask;
1813 unw_rec_list *ptr = alloc_record (frgr_mem);
1814 ptr->r.record.p.grmask = gr_mask;
1815 ptr->r.record.p.frmask = fr_mask;
1816 return ptr;
1819 static unw_rec_list *
1820 output_gr_gr (mask, reg)
1821 unsigned int mask;
1822 unsigned int reg;
1824 unw_rec_list *ptr = alloc_record (gr_gr);
1825 ptr->r.record.p.grmask = mask;
1826 ptr->r.record.p.gr = reg;
1827 return ptr;
1830 static unw_rec_list *
1831 output_gr_mem (mask)
1832 unsigned int mask;
1834 unw_rec_list *ptr = alloc_record (gr_mem);
1835 ptr->r.record.p.rmask = mask;
1836 return ptr;
1839 static unw_rec_list *
1840 output_br_mem (unsigned int mask)
1842 unw_rec_list *ptr = alloc_record (br_mem);
1843 ptr->r.record.p.brmask = mask;
1844 return ptr;
1847 static unw_rec_list *
1848 output_br_gr (save_mask, reg)
1849 unsigned int save_mask;
1850 unsigned int reg;
1852 unw_rec_list *ptr = alloc_record (br_gr);
1853 ptr->r.record.p.brmask = save_mask;
1854 ptr->r.record.p.gr = reg;
1855 return ptr;
1858 static unw_rec_list *
1859 output_spill_base (offset)
1860 unsigned int offset;
1862 unw_rec_list *ptr = alloc_record (spill_base);
1863 ptr->r.record.p.pspoff = offset / 4;
1864 return ptr;
1867 static unw_rec_list *
1868 output_unat_when ()
1870 unw_rec_list *ptr = alloc_record (unat_when);
1871 return ptr;
1874 static unw_rec_list *
1875 output_unat_gr (gr)
1876 unsigned int gr;
1878 unw_rec_list *ptr = alloc_record (unat_gr);
1879 ptr->r.record.p.gr = gr;
1880 return ptr;
1883 static unw_rec_list *
1884 output_unat_psprel (offset)
1885 unsigned int offset;
1887 unw_rec_list *ptr = alloc_record (unat_psprel);
1888 ptr->r.record.p.pspoff = offset / 4;
1889 return ptr;
1892 static unw_rec_list *
1893 output_unat_sprel (offset)
1894 unsigned int offset;
1896 unw_rec_list *ptr = alloc_record (unat_sprel);
1897 ptr->r.record.p.spoff = offset / 4;
1898 return ptr;
1901 static unw_rec_list *
1902 output_lc_when ()
1904 unw_rec_list *ptr = alloc_record (lc_when);
1905 return ptr;
1908 static unw_rec_list *
1909 output_lc_gr (gr)
1910 unsigned int gr;
1912 unw_rec_list *ptr = alloc_record (lc_gr);
1913 ptr->r.record.p.gr = gr;
1914 return ptr;
1917 static unw_rec_list *
1918 output_lc_psprel (offset)
1919 unsigned int offset;
1921 unw_rec_list *ptr = alloc_record (lc_psprel);
1922 ptr->r.record.p.pspoff = offset / 4;
1923 return ptr;
1926 static unw_rec_list *
1927 output_lc_sprel (offset)
1928 unsigned int offset;
1930 unw_rec_list *ptr = alloc_record (lc_sprel);
1931 ptr->r.record.p.spoff = offset / 4;
1932 return ptr;
1935 static unw_rec_list *
1936 output_fpsr_when ()
1938 unw_rec_list *ptr = alloc_record (fpsr_when);
1939 return ptr;
1942 static unw_rec_list *
1943 output_fpsr_gr (gr)
1944 unsigned int gr;
1946 unw_rec_list *ptr = alloc_record (fpsr_gr);
1947 ptr->r.record.p.gr = gr;
1948 return ptr;
1951 static unw_rec_list *
1952 output_fpsr_psprel (offset)
1953 unsigned int offset;
1955 unw_rec_list *ptr = alloc_record (fpsr_psprel);
1956 ptr->r.record.p.pspoff = offset / 4;
1957 return ptr;
1960 static unw_rec_list *
1961 output_fpsr_sprel (offset)
1962 unsigned int offset;
1964 unw_rec_list *ptr = alloc_record (fpsr_sprel);
1965 ptr->r.record.p.spoff = offset / 4;
1966 return ptr;
1969 static unw_rec_list *
1970 output_priunat_when_gr ()
1972 unw_rec_list *ptr = alloc_record (priunat_when_gr);
1973 return ptr;
1976 static unw_rec_list *
1977 output_priunat_when_mem ()
1979 unw_rec_list *ptr = alloc_record (priunat_when_mem);
1980 return ptr;
1983 static unw_rec_list *
1984 output_priunat_gr (gr)
1985 unsigned int gr;
1987 unw_rec_list *ptr = alloc_record (priunat_gr);
1988 ptr->r.record.p.gr = gr;
1989 return ptr;
1992 static unw_rec_list *
1993 output_priunat_psprel (offset)
1994 unsigned int offset;
1996 unw_rec_list *ptr = alloc_record (priunat_psprel);
1997 ptr->r.record.p.pspoff = offset / 4;
1998 return ptr;
2001 static unw_rec_list *
2002 output_priunat_sprel (offset)
2003 unsigned int offset;
2005 unw_rec_list *ptr = alloc_record (priunat_sprel);
2006 ptr->r.record.p.spoff = offset / 4;
2007 return ptr;
2010 static unw_rec_list *
2011 output_bsp_when ()
2013 unw_rec_list *ptr = alloc_record (bsp_when);
2014 return ptr;
2017 static unw_rec_list *
2018 output_bsp_gr (gr)
2019 unsigned int gr;
2021 unw_rec_list *ptr = alloc_record (bsp_gr);
2022 ptr->r.record.p.gr = gr;
2023 return ptr;
2026 static unw_rec_list *
2027 output_bsp_psprel (offset)
2028 unsigned int offset;
2030 unw_rec_list *ptr = alloc_record (bsp_psprel);
2031 ptr->r.record.p.pspoff = offset / 4;
2032 return ptr;
2035 static unw_rec_list *
2036 output_bsp_sprel (offset)
2037 unsigned int offset;
2039 unw_rec_list *ptr = alloc_record (bsp_sprel);
2040 ptr->r.record.p.spoff = offset / 4;
2041 return ptr;
2044 static unw_rec_list *
2045 output_bspstore_when ()
2047 unw_rec_list *ptr = alloc_record (bspstore_when);
2048 return ptr;
2051 static unw_rec_list *
2052 output_bspstore_gr (gr)
2053 unsigned int gr;
2055 unw_rec_list *ptr = alloc_record (bspstore_gr);
2056 ptr->r.record.p.gr = gr;
2057 return ptr;
2060 static unw_rec_list *
2061 output_bspstore_psprel (offset)
2062 unsigned int offset;
2064 unw_rec_list *ptr = alloc_record (bspstore_psprel);
2065 ptr->r.record.p.pspoff = offset / 4;
2066 return ptr;
2069 static unw_rec_list *
2070 output_bspstore_sprel (offset)
2071 unsigned int offset;
2073 unw_rec_list *ptr = alloc_record (bspstore_sprel);
2074 ptr->r.record.p.spoff = offset / 4;
2075 return ptr;
2078 static unw_rec_list *
2079 output_rnat_when ()
2081 unw_rec_list *ptr = alloc_record (rnat_when);
2082 return ptr;
2085 static unw_rec_list *
2086 output_rnat_gr (gr)
2087 unsigned int gr;
2089 unw_rec_list *ptr = alloc_record (rnat_gr);
2090 ptr->r.record.p.gr = gr;
2091 return ptr;
2094 static unw_rec_list *
2095 output_rnat_psprel (offset)
2096 unsigned int offset;
2098 unw_rec_list *ptr = alloc_record (rnat_psprel);
2099 ptr->r.record.p.pspoff = offset / 4;
2100 return ptr;
2103 static unw_rec_list *
2104 output_rnat_sprel (offset)
2105 unsigned int offset;
2107 unw_rec_list *ptr = alloc_record (rnat_sprel);
2108 ptr->r.record.p.spoff = offset / 4;
2109 return ptr;
2112 static unw_rec_list *
2113 output_unwabi (abi, context)
2114 unsigned long abi;
2115 unsigned long context;
2117 unw_rec_list *ptr = alloc_record (unwabi);
2118 ptr->r.record.p.abi = abi;
2119 ptr->r.record.p.context = context;
2120 return ptr;
2123 static unw_rec_list *
2124 output_epilogue (unsigned long ecount)
2126 unw_rec_list *ptr = alloc_record (epilogue);
2127 ptr->r.record.b.ecount = ecount;
2128 return ptr;
2131 static unw_rec_list *
2132 output_label_state (unsigned long label)
2134 unw_rec_list *ptr = alloc_record (label_state);
2135 ptr->r.record.b.label = label;
2136 return ptr;
2139 static unw_rec_list *
2140 output_copy_state (unsigned long label)
2142 unw_rec_list *ptr = alloc_record (copy_state);
2143 ptr->r.record.b.label = label;
2144 return ptr;
2147 static unw_rec_list *
2148 output_spill_psprel (ab, reg, offset)
2149 unsigned int ab;
2150 unsigned int reg;
2151 unsigned int offset;
2153 unw_rec_list *ptr = alloc_record (spill_psprel);
2154 ptr->r.record.x.ab = ab;
2155 ptr->r.record.x.reg = reg;
2156 ptr->r.record.x.pspoff = offset / 4;
2157 return ptr;
2160 static unw_rec_list *
2161 output_spill_sprel (ab, reg, offset)
2162 unsigned int ab;
2163 unsigned int reg;
2164 unsigned int offset;
2166 unw_rec_list *ptr = alloc_record (spill_sprel);
2167 ptr->r.record.x.ab = ab;
2168 ptr->r.record.x.reg = reg;
2169 ptr->r.record.x.spoff = offset / 4;
2170 return ptr;
2173 static unw_rec_list *
2174 output_spill_psprel_p (ab, reg, offset, predicate)
2175 unsigned int ab;
2176 unsigned int reg;
2177 unsigned int offset;
2178 unsigned int predicate;
2180 unw_rec_list *ptr = alloc_record (spill_psprel_p);
2181 ptr->r.record.x.ab = ab;
2182 ptr->r.record.x.reg = reg;
2183 ptr->r.record.x.pspoff = offset / 4;
2184 ptr->r.record.x.qp = predicate;
2185 return ptr;
2188 static unw_rec_list *
2189 output_spill_sprel_p (ab, reg, offset, predicate)
2190 unsigned int ab;
2191 unsigned int reg;
2192 unsigned int offset;
2193 unsigned int predicate;
2195 unw_rec_list *ptr = alloc_record (spill_sprel_p);
2196 ptr->r.record.x.ab = ab;
2197 ptr->r.record.x.reg = reg;
2198 ptr->r.record.x.spoff = offset / 4;
2199 ptr->r.record.x.qp = predicate;
2200 return ptr;
2203 static unw_rec_list *
2204 output_spill_reg (ab, reg, targ_reg, xy)
2205 unsigned int ab;
2206 unsigned int reg;
2207 unsigned int targ_reg;
2208 unsigned int xy;
2210 unw_rec_list *ptr = alloc_record (spill_reg);
2211 ptr->r.record.x.ab = ab;
2212 ptr->r.record.x.reg = reg;
2213 ptr->r.record.x.treg = targ_reg;
2214 ptr->r.record.x.xy = xy;
2215 return ptr;
2218 static unw_rec_list *
2219 output_spill_reg_p (ab, reg, targ_reg, xy, predicate)
2220 unsigned int ab;
2221 unsigned int reg;
2222 unsigned int targ_reg;
2223 unsigned int xy;
2224 unsigned int predicate;
2226 unw_rec_list *ptr = alloc_record (spill_reg_p);
2227 ptr->r.record.x.ab = ab;
2228 ptr->r.record.x.reg = reg;
2229 ptr->r.record.x.treg = targ_reg;
2230 ptr->r.record.x.xy = xy;
2231 ptr->r.record.x.qp = predicate;
2232 return ptr;
2235 /* Given a unw_rec_list process the correct format with the
2236 specified function. */
2238 static void
2239 process_one_record (ptr, f)
2240 unw_rec_list *ptr;
2241 vbyte_func f;
2243 unsigned long fr_mask, gr_mask;
2245 switch (ptr->r.type)
2247 case gr_mem:
2248 case fr_mem:
2249 case br_mem:
2250 case frgr_mem:
2251 /* These are taken care of by prologue/prologue_gr. */
2252 break;
2254 case prologue_gr:
2255 case prologue:
2256 if (ptr->r.type == prologue_gr)
2257 output_R2_format (f, ptr->r.record.r.grmask,
2258 ptr->r.record.r.grsave, ptr->r.record.r.rlen);
2259 else
2260 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2262 /* Output descriptor(s) for union of register spills (if any). */
2263 gr_mask = ptr->r.record.r.mask.gr_mem;
2264 fr_mask = ptr->r.record.r.mask.fr_mem;
2265 if (fr_mask)
2267 if ((fr_mask & ~0xfUL) == 0)
2268 output_P6_format (f, fr_mem, fr_mask);
2269 else
2271 output_P5_format (f, gr_mask, fr_mask);
2272 gr_mask = 0;
2275 if (gr_mask)
2276 output_P6_format (f, gr_mem, gr_mask);
2277 if (ptr->r.record.r.mask.br_mem)
2278 output_P1_format (f, ptr->r.record.r.mask.br_mem);
2280 /* output imask descriptor if necessary: */
2281 if (ptr->r.record.r.mask.i)
2282 output_P4_format (f, ptr->r.record.r.mask.i,
2283 ptr->r.record.r.imask_size);
2284 break;
2286 case body:
2287 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2288 break;
2289 case mem_stack_f:
2290 case mem_stack_v:
2291 output_P7_format (f, ptr->r.type, ptr->r.record.p.t,
2292 ptr->r.record.p.size);
2293 break;
2294 case psp_gr:
2295 case rp_gr:
2296 case pfs_gr:
2297 case preds_gr:
2298 case unat_gr:
2299 case lc_gr:
2300 case fpsr_gr:
2301 case priunat_gr:
2302 case bsp_gr:
2303 case bspstore_gr:
2304 case rnat_gr:
2305 output_P3_format (f, ptr->r.type, ptr->r.record.p.gr);
2306 break;
2307 case rp_br:
2308 output_P3_format (f, rp_br, ptr->r.record.p.br);
2309 break;
2310 case psp_sprel:
2311 output_P7_format (f, psp_sprel, ptr->r.record.p.spoff, 0);
2312 break;
2313 case rp_when:
2314 case pfs_when:
2315 case preds_when:
2316 case unat_when:
2317 case lc_when:
2318 case fpsr_when:
2319 output_P7_format (f, ptr->r.type, ptr->r.record.p.t, 0);
2320 break;
2321 case rp_psprel:
2322 case pfs_psprel:
2323 case preds_psprel:
2324 case unat_psprel:
2325 case lc_psprel:
2326 case fpsr_psprel:
2327 case spill_base:
2328 output_P7_format (f, ptr->r.type, ptr->r.record.p.pspoff, 0);
2329 break;
2330 case rp_sprel:
2331 case pfs_sprel:
2332 case preds_sprel:
2333 case unat_sprel:
2334 case lc_sprel:
2335 case fpsr_sprel:
2336 case priunat_sprel:
2337 case bsp_sprel:
2338 case bspstore_sprel:
2339 case rnat_sprel:
2340 output_P8_format (f, ptr->r.type, ptr->r.record.p.spoff);
2341 break;
2342 case gr_gr:
2343 output_P9_format (f, ptr->r.record.p.grmask, ptr->r.record.p.gr);
2344 break;
2345 case br_gr:
2346 output_P2_format (f, ptr->r.record.p.brmask, ptr->r.record.p.gr);
2347 break;
2348 case spill_mask:
2349 as_bad ("spill_mask record unimplemented.");
2350 break;
2351 case priunat_when_gr:
2352 case priunat_when_mem:
2353 case bsp_when:
2354 case bspstore_when:
2355 case rnat_when:
2356 output_P8_format (f, ptr->r.type, ptr->r.record.p.t);
2357 break;
2358 case priunat_psprel:
2359 case bsp_psprel:
2360 case bspstore_psprel:
2361 case rnat_psprel:
2362 output_P8_format (f, ptr->r.type, ptr->r.record.p.pspoff);
2363 break;
2364 case unwabi:
2365 output_P10_format (f, ptr->r.record.p.abi, ptr->r.record.p.context);
2366 break;
2367 case epilogue:
2368 output_B3_format (f, ptr->r.record.b.ecount, ptr->r.record.b.t);
2369 break;
2370 case label_state:
2371 case copy_state:
2372 output_B4_format (f, ptr->r.type, ptr->r.record.b.label);
2373 break;
2374 case spill_psprel:
2375 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2376 ptr->r.record.x.reg, ptr->r.record.x.t,
2377 ptr->r.record.x.pspoff);
2378 break;
2379 case spill_sprel:
2380 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2381 ptr->r.record.x.reg, ptr->r.record.x.t,
2382 ptr->r.record.x.spoff);
2383 break;
2384 case spill_reg:
2385 output_X2_format (f, ptr->r.record.x.ab, ptr->r.record.x.reg,
2386 ptr->r.record.x.xy >> 1, ptr->r.record.x.xy,
2387 ptr->r.record.x.treg, ptr->r.record.x.t);
2388 break;
2389 case spill_psprel_p:
2390 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2391 ptr->r.record.x.ab, ptr->r.record.x.reg,
2392 ptr->r.record.x.t, ptr->r.record.x.pspoff);
2393 break;
2394 case spill_sprel_p:
2395 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2396 ptr->r.record.x.ab, ptr->r.record.x.reg,
2397 ptr->r.record.x.t, ptr->r.record.x.spoff);
2398 break;
2399 case spill_reg_p:
2400 output_X4_format (f, ptr->r.record.x.qp, ptr->r.record.x.ab,
2401 ptr->r.record.x.reg, ptr->r.record.x.xy >> 1,
2402 ptr->r.record.x.xy, ptr->r.record.x.treg,
2403 ptr->r.record.x.t);
2404 break;
2405 default:
2406 as_bad ("record_type_not_valid");
2407 break;
2411 /* Given a unw_rec_list list, process all the records with
2412 the specified function. */
2413 static void
2414 process_unw_records (list, f)
2415 unw_rec_list *list;
2416 vbyte_func f;
2418 unw_rec_list *ptr;
2419 for (ptr = list; ptr; ptr = ptr->next)
2420 process_one_record (ptr, f);
2423 /* Determine the size of a record list in bytes. */
2424 static int
2425 calc_record_size (list)
2426 unw_rec_list *list;
2428 vbyte_count = 0;
2429 process_unw_records (list, count_output);
2430 return vbyte_count;
2433 /* Update IMASK bitmask to reflect the fact that one or more registers
2434 of type TYPE are saved starting at instruction with index T. If N
2435 bits are set in REGMASK, it is assumed that instructions T through
2436 T+N-1 save these registers.
2438 TYPE values:
2439 0: no save
2440 1: instruction saves next fp reg
2441 2: instruction saves next general reg
2442 3: instruction saves next branch reg */
2443 static void
2444 set_imask (region, regmask, t, type)
2445 unw_rec_list *region;
2446 unsigned long regmask;
2447 unsigned long t;
2448 unsigned int type;
2450 unsigned char *imask;
2451 unsigned long imask_size;
2452 unsigned int i;
2453 int pos;
2455 imask = region->r.record.r.mask.i;
2456 imask_size = region->r.record.r.imask_size;
2457 if (!imask)
2459 imask_size = (region->r.record.r.rlen * 2 + 7) / 8 + 1;
2460 imask = xmalloc (imask_size);
2461 memset (imask, 0, imask_size);
2463 region->r.record.r.imask_size = imask_size;
2464 region->r.record.r.mask.i = imask;
2467 i = (t / 4) + 1;
2468 pos = 2 * (3 - t % 4);
2469 while (regmask)
2471 if (i >= imask_size)
2473 as_bad ("Ignoring attempt to spill beyond end of region");
2474 return;
2477 imask[i] |= (type & 0x3) << pos;
2479 regmask &= (regmask - 1);
2480 pos -= 2;
2481 if (pos < 0)
2483 pos = 0;
2484 ++i;
2489 static int
2490 count_bits (unsigned long mask)
2492 int n = 0;
2494 while (mask)
2496 mask &= mask - 1;
2497 ++n;
2499 return n;
2502 /* Return the number of instruction slots from FIRST_ADDR to SLOT_ADDR.
2503 SLOT_FRAG is the frag containing SLOT_ADDR, and FIRST_FRAG is the frag
2504 containing FIRST_ADDR. */
2506 unsigned long
2507 slot_index (slot_addr, slot_frag, first_addr, first_frag)
2508 unsigned long slot_addr;
2509 fragS *slot_frag;
2510 unsigned long first_addr;
2511 fragS *first_frag;
2513 unsigned long index = 0;
2515 /* First time we are called, the initial address and frag are invalid. */
2516 if (first_addr == 0)
2517 return 0;
2519 /* If the two addresses are in different frags, then we need to add in
2520 the remaining size of this frag, and then the entire size of intermediate
2521 frags. */
2522 while (slot_frag != first_frag)
2524 unsigned long start_addr = (unsigned long) &first_frag->fr_literal;
2526 /* Add in the full size of the frag converted to instruction slots. */
2527 index += 3 * (first_frag->fr_fix >> 4);
2528 /* Subtract away the initial part before first_addr. */
2529 index -= (3 * ((first_addr >> 4) - (start_addr >> 4))
2530 + ((first_addr & 0x3) - (start_addr & 0x3)));
2532 /* Move to the beginning of the next frag. */
2533 first_frag = first_frag->fr_next;
2534 first_addr = (unsigned long) &first_frag->fr_literal;
2537 /* Add in the used part of the last frag. */
2538 index += (3 * ((slot_addr >> 4) - (first_addr >> 4))
2539 + ((slot_addr & 0x3) - (first_addr & 0x3)));
2540 return index;
2543 /* Optimize unwind record directives. */
2545 static unw_rec_list *
2546 optimize_unw_records (list)
2547 unw_rec_list *list;
2549 if (!list)
2550 return NULL;
2552 /* If the only unwind record is ".prologue" or ".prologue" followed
2553 by ".body", then we can optimize the unwind directives away. */
2554 if (list->r.type == prologue
2555 && (list->next == NULL
2556 || (list->next->r.type == body && list->next->next == NULL)))
2557 return NULL;
2559 return list;
2562 /* Given a complete record list, process any records which have
2563 unresolved fields, (ie length counts for a prologue). After
2564 this has been run, all neccessary information should be available
2565 within each record to generate an image. */
2567 static void
2568 fixup_unw_records (list)
2569 unw_rec_list *list;
2571 unw_rec_list *ptr, *region = 0;
2572 unsigned long first_addr = 0, rlen = 0, t;
2573 fragS *first_frag = 0;
2575 for (ptr = list; ptr; ptr = ptr->next)
2577 if (ptr->slot_number == SLOT_NUM_NOT_SET)
2578 as_bad (" Insn slot not set in unwind record.");
2579 t = slot_index (ptr->slot_number, ptr->slot_frag,
2580 first_addr, first_frag);
2581 switch (ptr->r.type)
2583 case prologue:
2584 case prologue_gr:
2585 case body:
2587 unw_rec_list *last;
2588 int size, dir_len = 0;
2589 unsigned long last_addr;
2590 fragS *last_frag;
2592 first_addr = ptr->slot_number;
2593 first_frag = ptr->slot_frag;
2594 ptr->slot_number = 0;
2595 /* Find either the next body/prologue start, or the end of
2596 the list, and determine the size of the region. */
2597 last_addr = unwind.next_slot_number;
2598 last_frag = unwind.next_slot_frag;
2599 for (last = ptr->next; last != NULL; last = last->next)
2600 if (last->r.type == prologue || last->r.type == prologue_gr
2601 || last->r.type == body)
2603 last_addr = last->slot_number;
2604 last_frag = last->slot_frag;
2605 break;
2607 else if (!last->next)
2609 /* In the absence of an explicit .body directive,
2610 the prologue ends after the last instruction
2611 covered by an unwind directive. */
2612 if (ptr->r.type != body)
2614 last_addr = last->slot_number;
2615 last_frag = last->slot_frag;
2616 switch (last->r.type)
2618 case frgr_mem:
2619 dir_len = (count_bits (last->r.record.p.frmask)
2620 + count_bits (last->r.record.p.grmask));
2621 break;
2622 case fr_mem:
2623 case gr_mem:
2624 dir_len += count_bits (last->r.record.p.rmask);
2625 break;
2626 case br_mem:
2627 case br_gr:
2628 dir_len += count_bits (last->r.record.p.brmask);
2629 break;
2630 case gr_gr:
2631 dir_len += count_bits (last->r.record.p.grmask);
2632 break;
2633 default:
2634 dir_len = 1;
2635 break;
2638 break;
2640 size = (slot_index (last_addr, last_frag, first_addr, first_frag)
2641 + dir_len);
2642 rlen = ptr->r.record.r.rlen = size;
2643 region = ptr;
2644 break;
2646 case epilogue:
2647 ptr->r.record.b.t = rlen - 1 - t;
2648 break;
2650 case mem_stack_f:
2651 case mem_stack_v:
2652 case rp_when:
2653 case pfs_when:
2654 case preds_when:
2655 case unat_when:
2656 case lc_when:
2657 case fpsr_when:
2658 case priunat_when_gr:
2659 case priunat_when_mem:
2660 case bsp_when:
2661 case bspstore_when:
2662 case rnat_when:
2663 ptr->r.record.p.t = t;
2664 break;
2666 case spill_reg:
2667 case spill_sprel:
2668 case spill_psprel:
2669 case spill_reg_p:
2670 case spill_sprel_p:
2671 case spill_psprel_p:
2672 ptr->r.record.x.t = t;
2673 break;
2675 case frgr_mem:
2676 if (!region)
2678 as_bad ("frgr_mem record before region record!\n");
2679 return;
2681 region->r.record.r.mask.fr_mem |= ptr->r.record.p.frmask;
2682 region->r.record.r.mask.gr_mem |= ptr->r.record.p.grmask;
2683 set_imask (region, ptr->r.record.p.frmask, t, 1);
2684 set_imask (region, ptr->r.record.p.grmask, t, 2);
2685 break;
2686 case fr_mem:
2687 if (!region)
2689 as_bad ("fr_mem record before region record!\n");
2690 return;
2692 region->r.record.r.mask.fr_mem |= ptr->r.record.p.rmask;
2693 set_imask (region, ptr->r.record.p.rmask, t, 1);
2694 break;
2695 case gr_mem:
2696 if (!region)
2698 as_bad ("gr_mem record before region record!\n");
2699 return;
2701 region->r.record.r.mask.gr_mem |= ptr->r.record.p.rmask;
2702 set_imask (region, ptr->r.record.p.rmask, t, 2);
2703 break;
2704 case br_mem:
2705 if (!region)
2707 as_bad ("br_mem record before region record!\n");
2708 return;
2710 region->r.record.r.mask.br_mem |= ptr->r.record.p.brmask;
2711 set_imask (region, ptr->r.record.p.brmask, t, 3);
2712 break;
2714 case gr_gr:
2715 if (!region)
2717 as_bad ("gr_gr record before region record!\n");
2718 return;
2720 set_imask (region, ptr->r.record.p.grmask, t, 2);
2721 break;
2722 case br_gr:
2723 if (!region)
2725 as_bad ("br_gr record before region record!\n");
2726 return;
2728 set_imask (region, ptr->r.record.p.brmask, t, 3);
2729 break;
2731 default:
2732 break;
2737 /* Generate an unwind image from a record list. Returns the number of
2738 bytes in the resulting image. The memory image itselof is returned
2739 in the 'ptr' parameter. */
2740 static int
2741 output_unw_records (list, ptr)
2742 unw_rec_list *list;
2743 void **ptr;
2745 int size, x, extra = 0;
2746 unsigned char *mem;
2748 *ptr = NULL;
2750 list = optimize_unw_records (list);
2751 fixup_unw_records (list);
2752 size = calc_record_size (list);
2754 /* pad to 8 byte boundry. */
2755 x = size % 8;
2756 if (x != 0)
2757 extra = 8 - x;
2759 if (size > 0 || unwind.force_unwind_entry)
2761 unwind.force_unwind_entry = 0;
2763 /* Add 8 for the header + 8 more bytes for the personality offset. */
2764 mem = xmalloc (size + extra + 16);
2766 vbyte_mem_ptr = mem + 8;
2767 /* Clear the padding area and personality. */
2768 memset (mem + 8 + size, 0 , extra + 8);
2769 /* Initialize the header area. */
2770 md_number_to_chars (mem,
2771 (((bfd_vma) 1 << 48) /* version */
2772 | (unwind.personality_routine
2773 ? ((bfd_vma) 3 << 32) /* U & E handler flags */
2774 : 0)
2775 | ((size + extra) / 8)), /* length (dwords) */
2778 process_unw_records (list, output_vbyte_mem);
2780 *ptr = mem;
2782 size += extra + 16;
2784 return size;
2787 static int
2788 convert_expr_to_ab_reg (e, ab, regp)
2789 expressionS *e;
2790 unsigned int *ab;
2791 unsigned int *regp;
2793 unsigned int reg;
2795 if (e->X_op != O_register)
2796 return 0;
2798 reg = e->X_add_number;
2799 if (reg >= (REG_GR + 4) && reg <= (REG_GR + 7))
2801 *ab = 0;
2802 *regp = reg - REG_GR;
2804 else if ((reg >= (REG_FR + 2) && reg <= (REG_FR + 5))
2805 || (reg >= (REG_FR + 16) && reg <= (REG_FR + 31)))
2807 *ab = 1;
2808 *regp = reg - REG_FR;
2810 else if (reg >= (REG_BR + 1) && reg <= (REG_BR + 5))
2812 *ab = 2;
2813 *regp = reg - REG_BR;
2815 else
2817 *ab = 3;
2818 switch (reg)
2820 case REG_PR: *regp = 0; break;
2821 case REG_PSP: *regp = 1; break;
2822 case REG_PRIUNAT: *regp = 2; break;
2823 case REG_BR + 0: *regp = 3; break;
2824 case REG_AR + AR_BSP: *regp = 4; break;
2825 case REG_AR + AR_BSPSTORE: *regp = 5; break;
2826 case REG_AR + AR_RNAT: *regp = 6; break;
2827 case REG_AR + AR_UNAT: *regp = 7; break;
2828 case REG_AR + AR_FPSR: *regp = 8; break;
2829 case REG_AR + AR_PFS: *regp = 9; break;
2830 case REG_AR + AR_LC: *regp = 10; break;
2832 default:
2833 return 0;
2836 return 1;
2839 static int
2840 convert_expr_to_xy_reg (e, xy, regp)
2841 expressionS *e;
2842 unsigned int *xy;
2843 unsigned int *regp;
2845 unsigned int reg;
2847 if (e->X_op != O_register)
2848 return 0;
2850 reg = e->X_add_number;
2852 if (/* reg >= REG_GR && */ reg <= (REG_GR + 127))
2854 *xy = 0;
2855 *regp = reg - REG_GR;
2857 else if (reg >= REG_FR && reg <= (REG_FR + 127))
2859 *xy = 1;
2860 *regp = reg - REG_FR;
2862 else if (reg >= REG_BR && reg <= (REG_BR + 7))
2864 *xy = 2;
2865 *regp = reg - REG_BR;
2867 else
2868 return -1;
2869 return 1;
2872 static void
2873 dot_radix (dummy)
2874 int dummy ATTRIBUTE_UNUSED;
2876 int radix;
2878 SKIP_WHITESPACE ();
2879 radix = *input_line_pointer++;
2881 if (radix != 'C' && !is_end_of_line[(unsigned char) radix])
2883 as_bad ("Radix `%c' unsupported", *input_line_pointer);
2884 ignore_rest_of_line ();
2885 return;
2889 /* .sbss, .bss etc. are macros that expand into ".section SECNAME". */
2890 static void
2891 dot_special_section (which)
2892 int which;
2894 set_section ((char *) special_section_name[which]);
2897 static void
2898 add_unwind_entry (ptr)
2899 unw_rec_list *ptr;
2901 if (unwind.tail)
2902 unwind.tail->next = ptr;
2903 else
2904 unwind.list = ptr;
2905 unwind.tail = ptr;
2907 /* The current entry can in fact be a chain of unwind entries. */
2908 if (unwind.current_entry == NULL)
2909 unwind.current_entry = ptr;
2912 static void
2913 dot_fframe (dummy)
2914 int dummy ATTRIBUTE_UNUSED;
2916 expressionS e;
2918 parse_operand (&e);
2920 if (e.X_op != O_constant)
2921 as_bad ("Operand to .fframe must be a constant");
2922 else
2923 add_unwind_entry (output_mem_stack_f (e.X_add_number));
2926 static void
2927 dot_vframe (dummy)
2928 int dummy ATTRIBUTE_UNUSED;
2930 expressionS e;
2931 unsigned reg;
2933 parse_operand (&e);
2934 reg = e.X_add_number - REG_GR;
2935 if (e.X_op == O_register && reg < 128)
2937 add_unwind_entry (output_mem_stack_v ());
2938 if (! (unwind.prologue_mask & 2))
2939 add_unwind_entry (output_psp_gr (reg));
2941 else
2942 as_bad ("First operand to .vframe must be a general register");
2945 static void
2946 dot_vframesp (dummy)
2947 int dummy ATTRIBUTE_UNUSED;
2949 expressionS e;
2951 parse_operand (&e);
2952 if (e.X_op == O_constant)
2954 add_unwind_entry (output_mem_stack_v ());
2955 add_unwind_entry (output_psp_sprel (e.X_add_number));
2957 else
2958 as_bad ("First operand to .vframesp must be a general register");
2961 static void
2962 dot_vframepsp (dummy)
2963 int dummy ATTRIBUTE_UNUSED;
2965 expressionS e;
2967 parse_operand (&e);
2968 if (e.X_op == O_constant)
2970 add_unwind_entry (output_mem_stack_v ());
2971 add_unwind_entry (output_psp_sprel (e.X_add_number));
2973 else
2974 as_bad ("First operand to .vframepsp must be a general register");
2977 static void
2978 dot_save (dummy)
2979 int dummy ATTRIBUTE_UNUSED;
2981 expressionS e1, e2;
2982 int sep;
2983 int reg1, reg2;
2985 sep = parse_operand (&e1);
2986 if (sep != ',')
2987 as_bad ("No second operand to .save");
2988 sep = parse_operand (&e2);
2990 reg1 = e1.X_add_number;
2991 reg2 = e2.X_add_number - REG_GR;
2993 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
2994 if (e1.X_op == O_register)
2996 if (e2.X_op == O_register && reg2 >= 0 && reg2 < 128)
2998 switch (reg1)
3000 case REG_AR + AR_BSP:
3001 add_unwind_entry (output_bsp_when ());
3002 add_unwind_entry (output_bsp_gr (reg2));
3003 break;
3004 case REG_AR + AR_BSPSTORE:
3005 add_unwind_entry (output_bspstore_when ());
3006 add_unwind_entry (output_bspstore_gr (reg2));
3007 break;
3008 case REG_AR + AR_RNAT:
3009 add_unwind_entry (output_rnat_when ());
3010 add_unwind_entry (output_rnat_gr (reg2));
3011 break;
3012 case REG_AR + AR_UNAT:
3013 add_unwind_entry (output_unat_when ());
3014 add_unwind_entry (output_unat_gr (reg2));
3015 break;
3016 case REG_AR + AR_FPSR:
3017 add_unwind_entry (output_fpsr_when ());
3018 add_unwind_entry (output_fpsr_gr (reg2));
3019 break;
3020 case REG_AR + AR_PFS:
3021 add_unwind_entry (output_pfs_when ());
3022 if (! (unwind.prologue_mask & 4))
3023 add_unwind_entry (output_pfs_gr (reg2));
3024 break;
3025 case REG_AR + AR_LC:
3026 add_unwind_entry (output_lc_when ());
3027 add_unwind_entry (output_lc_gr (reg2));
3028 break;
3029 case REG_BR:
3030 add_unwind_entry (output_rp_when ());
3031 if (! (unwind.prologue_mask & 8))
3032 add_unwind_entry (output_rp_gr (reg2));
3033 break;
3034 case REG_PR:
3035 add_unwind_entry (output_preds_when ());
3036 if (! (unwind.prologue_mask & 1))
3037 add_unwind_entry (output_preds_gr (reg2));
3038 break;
3039 case REG_PRIUNAT:
3040 add_unwind_entry (output_priunat_when_gr ());
3041 add_unwind_entry (output_priunat_gr (reg2));
3042 break;
3043 default:
3044 as_bad ("First operand not a valid register");
3047 else
3048 as_bad (" Second operand not a valid register");
3050 else
3051 as_bad ("First operand not a register");
3054 static void
3055 dot_restore (dummy)
3056 int dummy ATTRIBUTE_UNUSED;
3058 expressionS e1, e2;
3059 unsigned long ecount; /* # of _additional_ regions to pop */
3060 int sep;
3062 sep = parse_operand (&e1);
3063 if (e1.X_op != O_register || e1.X_add_number != REG_GR + 12)
3065 as_bad ("First operand to .restore must be stack pointer (sp)");
3066 return;
3069 if (sep == ',')
3071 parse_operand (&e2);
3072 if (e2.X_op != O_constant || e2.X_add_number < 0)
3074 as_bad ("Second operand to .restore must be a constant >= 0");
3075 return;
3077 ecount = e2.X_add_number;
3079 else
3080 ecount = unwind.prologue_count - 1;
3081 add_unwind_entry (output_epilogue (ecount));
3083 if (ecount < unwind.prologue_count)
3084 unwind.prologue_count -= ecount + 1;
3085 else
3086 unwind.prologue_count = 0;
3089 static void
3090 dot_restorereg (dummy)
3091 int dummy ATTRIBUTE_UNUSED;
3093 unsigned int ab, reg;
3094 expressionS e;
3096 parse_operand (&e);
3098 if (!convert_expr_to_ab_reg (&e, &ab, &reg))
3100 as_bad ("First operand to .restorereg must be a preserved register");
3101 return;
3103 add_unwind_entry (output_spill_reg (ab, reg, 0, 0));
3106 static void
3107 dot_restorereg_p (dummy)
3108 int dummy ATTRIBUTE_UNUSED;
3110 unsigned int qp, ab, reg;
3111 expressionS e1, e2;
3112 int sep;
3114 sep = parse_operand (&e1);
3115 if (sep != ',')
3117 as_bad ("No second operand to .restorereg.p");
3118 return;
3121 parse_operand (&e2);
3123 qp = e1.X_add_number - REG_P;
3124 if (e1.X_op != O_register || qp > 63)
3126 as_bad ("First operand to .restorereg.p must be a predicate");
3127 return;
3130 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3132 as_bad ("Second operand to .restorereg.p must be a preserved register");
3133 return;
3135 add_unwind_entry (output_spill_reg_p (ab, reg, 0, 0, qp));
3138 static int
3139 generate_unwind_image (text_name)
3140 const char *text_name;
3142 int size;
3143 unsigned char *unw_rec;
3145 /* Force out pending instructions, to make sure all unwind records have
3146 a valid slot_number field. */
3147 ia64_flush_insns ();
3149 /* Generate the unwind record. */
3150 size = output_unw_records (unwind.list, (void **) &unw_rec);
3151 if (size % 8 != 0)
3152 as_bad ("Unwind record is not a multiple of 8 bytes.");
3154 /* If there are unwind records, switch sections, and output the info. */
3155 if (size != 0)
3157 unsigned char *where;
3158 char *sec_name;
3159 expressionS exp;
3161 make_unw_section_name (SPECIAL_SECTION_UNWIND_INFO, text_name, sec_name);
3162 set_section (sec_name);
3163 bfd_set_section_flags (stdoutput, now_seg,
3164 SEC_LOAD | SEC_ALLOC | SEC_READONLY);
3166 /* Make sure the section has 8 byte alignment. */
3167 record_alignment (now_seg, 3);
3169 /* Set expression which points to start of unwind descriptor area. */
3170 unwind.info = expr_build_dot ();
3172 where = (unsigned char *) frag_more (size);
3174 /* Issue a label for this address, and keep track of it to put it
3175 in the unwind section. */
3177 /* Copy the information from the unwind record into this section. The
3178 data is already in the correct byte order. */
3179 memcpy (where, unw_rec, size);
3181 /* Add the personality address to the image. */
3182 if (unwind.personality_routine != 0)
3184 exp.X_op = O_symbol;
3185 exp.X_add_symbol = unwind.personality_routine;
3186 exp.X_add_number = 0;
3187 fix_new_exp (frag_now, frag_now_fix () - 8, 8,
3188 &exp, 0, BFD_RELOC_IA64_LTOFF_FPTR64LSB);
3189 unwind.personality_routine = 0;
3193 free_list_records (unwind.list);
3194 unwind.list = unwind.tail = unwind.current_entry = NULL;
3196 return size;
3199 static void
3200 dot_handlerdata (dummy)
3201 int dummy ATTRIBUTE_UNUSED;
3203 const char *text_name = segment_name (now_seg);
3205 /* If text section name starts with ".text" (which it should),
3206 strip this prefix off. */
3207 if (strcmp (text_name, ".text") == 0)
3208 text_name = "";
3210 unwind.force_unwind_entry = 1;
3212 /* Remember which segment we're in so we can switch back after .endp */
3213 unwind.saved_text_seg = now_seg;
3214 unwind.saved_text_subseg = now_subseg;
3216 /* Generate unwind info into unwind-info section and then leave that
3217 section as the currently active one so dataXX directives go into
3218 the language specific data area of the unwind info block. */
3219 generate_unwind_image (text_name);
3220 demand_empty_rest_of_line ();
3223 static void
3224 dot_unwentry (dummy)
3225 int dummy ATTRIBUTE_UNUSED;
3227 unwind.force_unwind_entry = 1;
3228 demand_empty_rest_of_line ();
3231 static void
3232 dot_altrp (dummy)
3233 int dummy ATTRIBUTE_UNUSED;
3235 expressionS e;
3236 unsigned reg;
3238 parse_operand (&e);
3239 reg = e.X_add_number - REG_BR;
3240 if (e.X_op == O_register && reg < 8)
3241 add_unwind_entry (output_rp_br (reg));
3242 else
3243 as_bad ("First operand not a valid branch register");
3246 static void
3247 dot_savemem (psprel)
3248 int psprel;
3250 expressionS e1, e2;
3251 int sep;
3252 int reg1, val;
3254 sep = parse_operand (&e1);
3255 if (sep != ',')
3256 as_bad ("No second operand to .save%ssp", psprel ? "p" : "");
3257 sep = parse_operand (&e2);
3259 reg1 = e1.X_add_number;
3260 val = e2.X_add_number;
3262 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
3263 if (e1.X_op == O_register)
3265 if (e2.X_op == O_constant)
3267 switch (reg1)
3269 case REG_AR + AR_BSP:
3270 add_unwind_entry (output_bsp_when ());
3271 add_unwind_entry ((psprel
3272 ? output_bsp_psprel
3273 : output_bsp_sprel) (val));
3274 break;
3275 case REG_AR + AR_BSPSTORE:
3276 add_unwind_entry (output_bspstore_when ());
3277 add_unwind_entry ((psprel
3278 ? output_bspstore_psprel
3279 : output_bspstore_sprel) (val));
3280 break;
3281 case REG_AR + AR_RNAT:
3282 add_unwind_entry (output_rnat_when ());
3283 add_unwind_entry ((psprel
3284 ? output_rnat_psprel
3285 : output_rnat_sprel) (val));
3286 break;
3287 case REG_AR + AR_UNAT:
3288 add_unwind_entry (output_unat_when ());
3289 add_unwind_entry ((psprel
3290 ? output_unat_psprel
3291 : output_unat_sprel) (val));
3292 break;
3293 case REG_AR + AR_FPSR:
3294 add_unwind_entry (output_fpsr_when ());
3295 add_unwind_entry ((psprel
3296 ? output_fpsr_psprel
3297 : output_fpsr_sprel) (val));
3298 break;
3299 case REG_AR + AR_PFS:
3300 add_unwind_entry (output_pfs_when ());
3301 add_unwind_entry ((psprel
3302 ? output_pfs_psprel
3303 : output_pfs_sprel) (val));
3304 break;
3305 case REG_AR + AR_LC:
3306 add_unwind_entry (output_lc_when ());
3307 add_unwind_entry ((psprel
3308 ? output_lc_psprel
3309 : output_lc_sprel) (val));
3310 break;
3311 case REG_BR:
3312 add_unwind_entry (output_rp_when ());
3313 add_unwind_entry ((psprel
3314 ? output_rp_psprel
3315 : output_rp_sprel) (val));
3316 break;
3317 case REG_PR:
3318 add_unwind_entry (output_preds_when ());
3319 add_unwind_entry ((psprel
3320 ? output_preds_psprel
3321 : output_preds_sprel) (val));
3322 break;
3323 case REG_PRIUNAT:
3324 add_unwind_entry (output_priunat_when_mem ());
3325 add_unwind_entry ((psprel
3326 ? output_priunat_psprel
3327 : output_priunat_sprel) (val));
3328 break;
3329 default:
3330 as_bad ("First operand not a valid register");
3333 else
3334 as_bad (" Second operand not a valid constant");
3336 else
3337 as_bad ("First operand not a register");
3340 static void
3341 dot_saveg (dummy)
3342 int dummy ATTRIBUTE_UNUSED;
3344 expressionS e1, e2;
3345 int sep;
3346 sep = parse_operand (&e1);
3347 if (sep == ',')
3348 parse_operand (&e2);
3350 if (e1.X_op != O_constant)
3351 as_bad ("First operand to .save.g must be a constant.");
3352 else
3354 int grmask = e1.X_add_number;
3355 if (sep != ',')
3356 add_unwind_entry (output_gr_mem (grmask));
3357 else
3359 int reg = e2.X_add_number - REG_GR;
3360 if (e2.X_op == O_register && reg >= 0 && reg < 128)
3361 add_unwind_entry (output_gr_gr (grmask, reg));
3362 else
3363 as_bad ("Second operand is an invalid register.");
3368 static void
3369 dot_savef (dummy)
3370 int dummy ATTRIBUTE_UNUSED;
3372 expressionS e1;
3373 int sep;
3374 sep = parse_operand (&e1);
3376 if (e1.X_op != O_constant)
3377 as_bad ("Operand to .save.f must be a constant.");
3378 else
3379 add_unwind_entry (output_fr_mem (e1.X_add_number));
3382 static void
3383 dot_saveb (dummy)
3384 int dummy ATTRIBUTE_UNUSED;
3386 expressionS e1, e2;
3387 unsigned int reg;
3388 unsigned char sep;
3389 int brmask;
3391 sep = parse_operand (&e1);
3392 if (e1.X_op != O_constant)
3394 as_bad ("First operand to .save.b must be a constant.");
3395 return;
3397 brmask = e1.X_add_number;
3399 if (sep == ',')
3401 sep = parse_operand (&e2);
3402 reg = e2.X_add_number - REG_GR;
3403 if (e2.X_op != O_register || reg > 127)
3405 as_bad ("Second operand to .save.b must be a general register.");
3406 return;
3408 add_unwind_entry (output_br_gr (brmask, e2.X_add_number));
3410 else
3411 add_unwind_entry (output_br_mem (brmask));
3413 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3414 ignore_rest_of_line ();
3417 static void
3418 dot_savegf (dummy)
3419 int dummy ATTRIBUTE_UNUSED;
3421 expressionS e1, e2;
3422 int sep;
3423 sep = parse_operand (&e1);
3424 if (sep == ',')
3425 parse_operand (&e2);
3427 if (e1.X_op != O_constant || sep != ',' || e2.X_op != O_constant)
3428 as_bad ("Both operands of .save.gf must be constants.");
3429 else
3431 int grmask = e1.X_add_number;
3432 int frmask = e2.X_add_number;
3433 add_unwind_entry (output_frgr_mem (grmask, frmask));
3437 static void
3438 dot_spill (dummy)
3439 int dummy ATTRIBUTE_UNUSED;
3441 expressionS e;
3442 unsigned char sep;
3444 sep = parse_operand (&e);
3445 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3446 ignore_rest_of_line ();
3448 if (e.X_op != O_constant)
3449 as_bad ("Operand to .spill must be a constant");
3450 else
3451 add_unwind_entry (output_spill_base (e.X_add_number));
3454 static void
3455 dot_spillreg (dummy)
3456 int dummy ATTRIBUTE_UNUSED;
3458 int sep, ab, xy, reg, treg;
3459 expressionS e1, e2;
3461 sep = parse_operand (&e1);
3462 if (sep != ',')
3464 as_bad ("No second operand to .spillreg");
3465 return;
3468 parse_operand (&e2);
3470 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3472 as_bad ("First operand to .spillreg must be a preserved register");
3473 return;
3476 if (!convert_expr_to_xy_reg (&e2, &xy, &treg))
3478 as_bad ("Second operand to .spillreg must be a register");
3479 return;
3482 add_unwind_entry (output_spill_reg (ab, reg, treg, xy));
3485 static void
3486 dot_spillmem (psprel)
3487 int psprel;
3489 expressionS e1, e2;
3490 int sep, ab, reg;
3492 sep = parse_operand (&e1);
3493 if (sep != ',')
3495 as_bad ("Second operand missing");
3496 return;
3499 parse_operand (&e2);
3501 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3503 as_bad ("First operand to .spill%s must be a preserved register",
3504 psprel ? "psp" : "sp");
3505 return;
3508 if (e2.X_op != O_constant)
3510 as_bad ("Second operand to .spill%s must be a constant",
3511 psprel ? "psp" : "sp");
3512 return;
3515 if (psprel)
3516 add_unwind_entry (output_spill_psprel (ab, reg, e2.X_add_number));
3517 else
3518 add_unwind_entry (output_spill_sprel (ab, reg, e2.X_add_number));
3521 static void
3522 dot_spillreg_p (dummy)
3523 int dummy ATTRIBUTE_UNUSED;
3525 int sep, ab, xy, reg, treg;
3526 expressionS e1, e2, e3;
3527 unsigned int qp;
3529 sep = parse_operand (&e1);
3530 if (sep != ',')
3532 as_bad ("No second and third operand to .spillreg.p");
3533 return;
3536 sep = parse_operand (&e2);
3537 if (sep != ',')
3539 as_bad ("No third operand to .spillreg.p");
3540 return;
3543 parse_operand (&e3);
3545 qp = e1.X_add_number - REG_P;
3547 if (e1.X_op != O_register || qp > 63)
3549 as_bad ("First operand to .spillreg.p must be a predicate");
3550 return;
3553 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3555 as_bad ("Second operand to .spillreg.p must be a preserved register");
3556 return;
3559 if (!convert_expr_to_xy_reg (&e3, &xy, &treg))
3561 as_bad ("Third operand to .spillreg.p must be a register");
3562 return;
3565 add_unwind_entry (output_spill_reg_p (ab, reg, treg, xy, qp));
3568 static void
3569 dot_spillmem_p (psprel)
3570 int psprel;
3572 expressionS e1, e2, e3;
3573 int sep, ab, reg;
3574 unsigned int qp;
3576 sep = parse_operand (&e1);
3577 if (sep != ',')
3579 as_bad ("Second operand missing");
3580 return;
3583 parse_operand (&e2);
3584 if (sep != ',')
3586 as_bad ("Second operand missing");
3587 return;
3590 parse_operand (&e3);
3592 qp = e1.X_add_number - REG_P;
3593 if (e1.X_op != O_register || qp > 63)
3595 as_bad ("First operand to .spill%s_p must be a predicate",
3596 psprel ? "psp" : "sp");
3597 return;
3600 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3602 as_bad ("Second operand to .spill%s_p must be a preserved register",
3603 psprel ? "psp" : "sp");
3604 return;
3607 if (e3.X_op != O_constant)
3609 as_bad ("Third operand to .spill%s_p must be a constant",
3610 psprel ? "psp" : "sp");
3611 return;
3614 if (psprel)
3615 add_unwind_entry (output_spill_psprel_p (qp, ab, reg, e3.X_add_number));
3616 else
3617 add_unwind_entry (output_spill_sprel_p (qp, ab, reg, e3.X_add_number));
3620 static void
3621 dot_label_state (dummy)
3622 int dummy ATTRIBUTE_UNUSED;
3624 expressionS e;
3626 parse_operand (&e);
3627 if (e.X_op != O_constant)
3629 as_bad ("Operand to .label_state must be a constant");
3630 return;
3632 add_unwind_entry (output_label_state (e.X_add_number));
3635 static void
3636 dot_copy_state (dummy)
3637 int dummy ATTRIBUTE_UNUSED;
3639 expressionS e;
3641 parse_operand (&e);
3642 if (e.X_op != O_constant)
3644 as_bad ("Operand to .copy_state must be a constant");
3645 return;
3647 add_unwind_entry (output_copy_state (e.X_add_number));
3650 static void
3651 dot_unwabi (dummy)
3652 int dummy ATTRIBUTE_UNUSED;
3654 expressionS e1, e2;
3655 unsigned char sep;
3657 sep = parse_operand (&e1);
3658 if (sep != ',')
3660 as_bad ("Second operand to .unwabi missing");
3661 return;
3663 sep = parse_operand (&e2);
3664 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3665 ignore_rest_of_line ();
3667 if (e1.X_op != O_constant)
3669 as_bad ("First operand to .unwabi must be a constant");
3670 return;
3673 if (e2.X_op != O_constant)
3675 as_bad ("Second operand to .unwabi must be a constant");
3676 return;
3679 add_unwind_entry (output_unwabi (e1.X_add_number, e2.X_add_number));
3682 static void
3683 dot_personality (dummy)
3684 int dummy ATTRIBUTE_UNUSED;
3686 char *name, *p, c;
3687 SKIP_WHITESPACE ();
3688 name = input_line_pointer;
3689 c = get_symbol_end ();
3690 p = input_line_pointer;
3691 unwind.personality_routine = symbol_find_or_make (name);
3692 unwind.force_unwind_entry = 1;
3693 *p = c;
3694 SKIP_WHITESPACE ();
3695 demand_empty_rest_of_line ();
3698 static void
3699 dot_proc (dummy)
3700 int dummy ATTRIBUTE_UNUSED;
3702 char *name, *p, c;
3703 symbolS *sym;
3705 unwind.proc_start = expr_build_dot ();
3706 /* Parse names of main and alternate entry points and mark them as
3707 function symbols: */
3708 while (1)
3710 SKIP_WHITESPACE ();
3711 name = input_line_pointer;
3712 c = get_symbol_end ();
3713 p = input_line_pointer;
3714 sym = symbol_find_or_make (name);
3715 if (unwind.proc_start == 0)
3717 unwind.proc_start = sym;
3719 symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
3720 *p = c;
3721 SKIP_WHITESPACE ();
3722 if (*input_line_pointer != ',')
3723 break;
3724 ++input_line_pointer;
3726 demand_empty_rest_of_line ();
3727 ia64_do_align (16);
3729 unwind.prologue_count = 0;
3730 unwind.list = unwind.tail = unwind.current_entry = NULL;
3731 unwind.personality_routine = 0;
3734 static void
3735 dot_body (dummy)
3736 int dummy ATTRIBUTE_UNUSED;
3738 unwind.prologue = 0;
3739 unwind.prologue_mask = 0;
3741 add_unwind_entry (output_body ());
3742 demand_empty_rest_of_line ();
3745 static void
3746 dot_prologue (dummy)
3747 int dummy ATTRIBUTE_UNUSED;
3749 unsigned char sep;
3750 int mask = 0, grsave = 0;
3752 if (!is_it_end_of_statement ())
3754 expressionS e1, e2;
3755 sep = parse_operand (&e1);
3756 if (sep != ',')
3757 as_bad ("No second operand to .prologue");
3758 sep = parse_operand (&e2);
3759 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3760 ignore_rest_of_line ();
3762 if (e1.X_op == O_constant)
3764 mask = e1.X_add_number;
3766 if (e2.X_op == O_constant)
3767 grsave = e2.X_add_number;
3768 else if (e2.X_op == O_register
3769 && (grsave = e2.X_add_number - REG_GR) < 128)
3771 else
3772 as_bad ("Second operand not a constant or general register");
3774 add_unwind_entry (output_prologue_gr (mask, grsave));
3776 else
3777 as_bad ("First operand not a constant");
3779 else
3780 add_unwind_entry (output_prologue ());
3782 unwind.prologue = 1;
3783 unwind.prologue_mask = mask;
3784 ++unwind.prologue_count;
3787 static void
3788 dot_endp (dummy)
3789 int dummy ATTRIBUTE_UNUSED;
3791 expressionS e;
3792 unsigned char *ptr;
3793 int bytes_per_address;
3794 long where;
3795 segT saved_seg;
3796 subsegT saved_subseg;
3797 const char *sec_name, *text_name;
3799 if (unwind.saved_text_seg)
3801 saved_seg = unwind.saved_text_seg;
3802 saved_subseg = unwind.saved_text_subseg;
3803 unwind.saved_text_seg = NULL;
3805 else
3807 saved_seg = now_seg;
3808 saved_subseg = now_subseg;
3812 Use a slightly ugly scheme to derive the unwind section names from
3813 the text section name:
3815 text sect. unwind table sect.
3816 name: name: comments:
3817 ---------- ----------------- --------------------------------
3818 .text .IA_64.unwind
3819 .text.foo .IA_64.unwind.text.foo
3820 .foo .IA_64.unwind.foo
3821 _info .IA_64.unwind_info gas issues error message (ditto)
3822 _infoFOO .IA_64.unwind_infoFOO gas issues error message (ditto)
3824 This mapping is done so that:
3826 (a) An object file with unwind info only in .text will use
3827 unwind section names .IA_64.unwind and .IA_64.unwind_info.
3828 This follows the letter of the ABI and also ensures backwards
3829 compatibility with older toolchains.
3831 (b) An object file with unwind info in multiple text sections
3832 will use separate unwind sections for each text section.
3833 This allows us to properly set the "sh_info" and "sh_link"
3834 fields in SHT_IA_64_UNWIND as required by the ABI and also
3835 lets GNU ld support programs with multiple segments
3836 containing unwind info (as might be the case for certain
3837 embedded applications).
3839 (c) An error is issued if there would be a name clash.
3841 text_name = segment_name (saved_seg);
3842 if (strncmp (text_name, "_info", 5) == 0)
3844 as_bad ("Illegal section name `%s' (causes unwind section name clash)",
3845 text_name);
3846 ignore_rest_of_line ();
3847 return;
3849 if (strcmp (text_name, ".text") == 0)
3850 text_name = "";
3852 expression (&e);
3853 demand_empty_rest_of_line ();
3855 insn_group_break (1, 0, 0);
3857 /* If there wasn't a .handlerdata, we haven't generated an image yet. */
3858 if (!unwind.info)
3859 generate_unwind_image (text_name);
3861 if (unwind.info || unwind.force_unwind_entry)
3863 subseg_set (md.last_text_seg, 0);
3864 unwind.proc_end = expr_build_dot ();
3866 make_unw_section_name (SPECIAL_SECTION_UNWIND, text_name, sec_name);
3867 set_section ((char *) sec_name);
3868 bfd_set_section_flags (stdoutput, now_seg,
3869 SEC_LOAD | SEC_ALLOC | SEC_READONLY);
3871 /* Make sure the section has 8 byte alignment. */
3872 record_alignment (now_seg, 3);
3874 ptr = frag_more (24);
3875 where = frag_now_fix () - 24;
3876 bytes_per_address = bfd_arch_bits_per_address (stdoutput) / 8;
3878 /* Issue the values of a) Proc Begin, b) Proc End, c) Unwind Record. */
3879 e.X_op = O_pseudo_fixup;
3880 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
3881 e.X_add_number = 0;
3882 e.X_add_symbol = unwind.proc_start;
3883 ia64_cons_fix_new (frag_now, where, bytes_per_address, &e);
3885 e.X_op = O_pseudo_fixup;
3886 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
3887 e.X_add_number = 0;
3888 e.X_add_symbol = unwind.proc_end;
3889 ia64_cons_fix_new (frag_now, where + bytes_per_address,
3890 bytes_per_address, &e);
3892 if (unwind.info)
3894 e.X_op = O_pseudo_fixup;
3895 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
3896 e.X_add_number = 0;
3897 e.X_add_symbol = unwind.info;
3898 ia64_cons_fix_new (frag_now, where + (bytes_per_address * 2),
3899 bytes_per_address, &e);
3901 else
3902 md_number_to_chars (ptr + (bytes_per_address * 2), 0,
3903 bytes_per_address);
3906 subseg_set (saved_seg, saved_subseg);
3907 unwind.proc_start = unwind.proc_end = unwind.info = 0;
3910 static void
3911 dot_template (template)
3912 int template;
3914 CURR_SLOT.user_template = template;
3917 static void
3918 dot_regstk (dummy)
3919 int dummy ATTRIBUTE_UNUSED;
3921 int ins, locs, outs, rots;
3923 if (is_it_end_of_statement ())
3924 ins = locs = outs = rots = 0;
3925 else
3927 ins = get_absolute_expression ();
3928 if (*input_line_pointer++ != ',')
3929 goto err;
3930 locs = get_absolute_expression ();
3931 if (*input_line_pointer++ != ',')
3932 goto err;
3933 outs = get_absolute_expression ();
3934 if (*input_line_pointer++ != ',')
3935 goto err;
3936 rots = get_absolute_expression ();
3938 set_regstack (ins, locs, outs, rots);
3939 return;
3941 err:
3942 as_bad ("Comma expected");
3943 ignore_rest_of_line ();
3946 static void
3947 dot_rot (type)
3948 int type;
3950 unsigned num_regs, num_alloced = 0;
3951 struct dynreg **drpp, *dr;
3952 int ch, base_reg = 0;
3953 char *name, *start;
3954 size_t len;
3956 switch (type)
3958 case DYNREG_GR: base_reg = REG_GR + 32; break;
3959 case DYNREG_FR: base_reg = REG_FR + 32; break;
3960 case DYNREG_PR: base_reg = REG_P + 16; break;
3961 default: break;
3964 /* First, remove existing names from hash table. */
3965 for (dr = md.dynreg[type]; dr && dr->num_regs; dr = dr->next)
3967 hash_delete (md.dynreg_hash, dr->name);
3968 dr->num_regs = 0;
3971 drpp = &md.dynreg[type];
3972 while (1)
3974 start = input_line_pointer;
3975 ch = get_symbol_end ();
3976 *input_line_pointer = ch;
3977 len = (input_line_pointer - start);
3979 SKIP_WHITESPACE ();
3980 if (*input_line_pointer != '[')
3982 as_bad ("Expected '['");
3983 goto err;
3985 ++input_line_pointer; /* skip '[' */
3987 num_regs = get_absolute_expression ();
3989 if (*input_line_pointer++ != ']')
3991 as_bad ("Expected ']'");
3992 goto err;
3994 SKIP_WHITESPACE ();
3996 num_alloced += num_regs;
3997 switch (type)
3999 case DYNREG_GR:
4000 if (num_alloced > md.rot.num_regs)
4002 as_bad ("Used more than the declared %d rotating registers",
4003 md.rot.num_regs);
4004 goto err;
4006 break;
4007 case DYNREG_FR:
4008 if (num_alloced > 96)
4010 as_bad ("Used more than the available 96 rotating registers");
4011 goto err;
4013 break;
4014 case DYNREG_PR:
4015 if (num_alloced > 48)
4017 as_bad ("Used more than the available 48 rotating registers");
4018 goto err;
4020 break;
4022 default:
4023 break;
4026 name = obstack_alloc (&notes, len + 1);
4027 memcpy (name, start, len);
4028 name[len] = '\0';
4030 if (!*drpp)
4032 *drpp = obstack_alloc (&notes, sizeof (*dr));
4033 memset (*drpp, 0, sizeof (*dr));
4036 dr = *drpp;
4037 dr->name = name;
4038 dr->num_regs = num_regs;
4039 dr->base = base_reg;
4040 drpp = &dr->next;
4041 base_reg += num_regs;
4043 if (hash_insert (md.dynreg_hash, name, dr))
4045 as_bad ("Attempt to redefine register set `%s'", name);
4046 goto err;
4049 if (*input_line_pointer != ',')
4050 break;
4051 ++input_line_pointer; /* skip comma */
4052 SKIP_WHITESPACE ();
4054 demand_empty_rest_of_line ();
4055 return;
4057 err:
4058 ignore_rest_of_line ();
4061 static void
4062 dot_byteorder (byteorder)
4063 int byteorder;
4065 target_big_endian = byteorder;
4068 static void
4069 dot_psr (dummy)
4070 int dummy ATTRIBUTE_UNUSED;
4072 char *option;
4073 int ch;
4075 while (1)
4077 option = input_line_pointer;
4078 ch = get_symbol_end ();
4079 if (strcmp (option, "lsb") == 0)
4080 md.flags &= ~EF_IA_64_BE;
4081 else if (strcmp (option, "msb") == 0)
4082 md.flags |= EF_IA_64_BE;
4083 else if (strcmp (option, "abi32") == 0)
4084 md.flags &= ~EF_IA_64_ABI64;
4085 else if (strcmp (option, "abi64") == 0)
4086 md.flags |= EF_IA_64_ABI64;
4087 else
4088 as_bad ("Unknown psr option `%s'", option);
4089 *input_line_pointer = ch;
4091 SKIP_WHITESPACE ();
4092 if (*input_line_pointer != ',')
4093 break;
4095 ++input_line_pointer;
4096 SKIP_WHITESPACE ();
4098 demand_empty_rest_of_line ();
4101 static void
4102 dot_alias (dummy)
4103 int dummy ATTRIBUTE_UNUSED;
4105 as_bad (".alias not implemented yet");
4108 static void
4109 dot_ln (dummy)
4110 int dummy ATTRIBUTE_UNUSED;
4112 new_logical_line (0, get_absolute_expression ());
4113 demand_empty_rest_of_line ();
4116 static char *
4117 parse_section_name ()
4119 char *name;
4120 int len;
4122 SKIP_WHITESPACE ();
4123 if (*input_line_pointer != '"')
4125 as_bad ("Missing section name");
4126 ignore_rest_of_line ();
4127 return 0;
4129 name = demand_copy_C_string (&len);
4130 if (!name)
4132 ignore_rest_of_line ();
4133 return 0;
4135 SKIP_WHITESPACE ();
4136 if (*input_line_pointer != ',')
4138 as_bad ("Comma expected after section name");
4139 ignore_rest_of_line ();
4140 return 0;
4142 ++input_line_pointer; /* skip comma */
4143 return name;
4146 static void
4147 dot_xdata (size)
4148 int size;
4150 char *name = parse_section_name ();
4151 if (!name)
4152 return;
4154 set_section (name);
4155 cons (size);
4156 obj_elf_previous (0);
4159 /* Why doesn't float_cons() call md_cons_align() the way cons() does? */
4161 static void
4162 stmt_float_cons (kind)
4163 int kind;
4165 size_t size;
4167 switch (kind)
4169 case 'd': size = 8; break;
4170 case 'x': size = 10; break;
4172 case 'f':
4173 default:
4174 size = 4;
4175 break;
4177 ia64_do_align (size);
4178 float_cons (kind);
4181 static void
4182 stmt_cons_ua (size)
4183 int size;
4185 int saved_auto_align = md.auto_align;
4187 md.auto_align = 0;
4188 cons (size);
4189 md.auto_align = saved_auto_align;
4192 static void
4193 dot_xfloat_cons (kind)
4194 int kind;
4196 char *name = parse_section_name ();
4197 if (!name)
4198 return;
4200 set_section (name);
4201 stmt_float_cons (kind);
4202 obj_elf_previous (0);
4205 static void
4206 dot_xstringer (zero)
4207 int zero;
4209 char *name = parse_section_name ();
4210 if (!name)
4211 return;
4213 set_section (name);
4214 stringer (zero);
4215 obj_elf_previous (0);
4218 static void
4219 dot_xdata_ua (size)
4220 int size;
4222 int saved_auto_align = md.auto_align;
4223 char *name = parse_section_name ();
4224 if (!name)
4225 return;
4227 set_section (name);
4228 md.auto_align = 0;
4229 cons (size);
4230 md.auto_align = saved_auto_align;
4231 obj_elf_previous (0);
4234 static void
4235 dot_xfloat_cons_ua (kind)
4236 int kind;
4238 int saved_auto_align = md.auto_align;
4239 char *name = parse_section_name ();
4240 if (!name)
4241 return;
4243 set_section (name);
4244 md.auto_align = 0;
4245 stmt_float_cons (kind);
4246 md.auto_align = saved_auto_align;
4247 obj_elf_previous (0);
4250 /* .reg.val <regname>,value */
4252 static void
4253 dot_reg_val (dummy)
4254 int dummy ATTRIBUTE_UNUSED;
4256 expressionS reg;
4258 expression (&reg);
4259 if (reg.X_op != O_register)
4261 as_bad (_("Register name expected"));
4262 ignore_rest_of_line ();
4264 else if (*input_line_pointer++ != ',')
4266 as_bad (_("Comma expected"));
4267 ignore_rest_of_line ();
4269 else
4271 valueT value = get_absolute_expression ();
4272 int regno = reg.X_add_number;
4273 if (regno < REG_GR || regno > REG_GR + 128)
4274 as_warn (_("Register value annotation ignored"));
4275 else
4277 gr_values[regno - REG_GR].known = 1;
4278 gr_values[regno - REG_GR].value = value;
4279 gr_values[regno - REG_GR].path = md.path;
4282 demand_empty_rest_of_line ();
4285 /* select dv checking mode
4286 .auto
4287 .explicit
4288 .default
4290 A stop is inserted when changing modes
4293 static void
4294 dot_dv_mode (type)
4295 int type;
4297 if (md.manual_bundling)
4298 as_warn (_("Directive invalid within a bundle"));
4300 if (type == 'E' || type == 'A')
4301 md.mode_explicitly_set = 0;
4302 else
4303 md.mode_explicitly_set = 1;
4305 md.detect_dv = 1;
4306 switch (type)
4308 case 'A':
4309 case 'a':
4310 if (md.explicit_mode)
4311 insn_group_break (1, 0, 0);
4312 md.explicit_mode = 0;
4313 break;
4314 case 'E':
4315 case 'e':
4316 if (!md.explicit_mode)
4317 insn_group_break (1, 0, 0);
4318 md.explicit_mode = 1;
4319 break;
4320 default:
4321 case 'd':
4322 if (md.explicit_mode != md.default_explicit_mode)
4323 insn_group_break (1, 0, 0);
4324 md.explicit_mode = md.default_explicit_mode;
4325 md.mode_explicitly_set = 0;
4326 break;
4330 static void
4331 print_prmask (mask)
4332 valueT mask;
4334 int regno;
4335 char *comma = "";
4336 for (regno = 0; regno < 64; regno++)
4338 if (mask & ((valueT) 1 << regno))
4340 fprintf (stderr, "%s p%d", comma, regno);
4341 comma = ",";
4347 .pred.rel.clear [p1 [,p2 [,...]]] (also .pred.rel "clear")
4348 .pred.rel.imply p1, p2 (also .pred.rel "imply")
4349 .pred.rel.mutex p1, p2 [,...] (also .pred.rel "mutex")
4350 .pred.safe_across_calls p1 [, p2 [,...]]
4353 static void
4354 dot_pred_rel (type)
4355 int type;
4357 valueT mask = 0;
4358 int count = 0;
4359 int p1 = -1, p2 = -1;
4361 if (type == 0)
4363 if (*input_line_pointer != '"')
4365 as_bad (_("Missing predicate relation type"));
4366 ignore_rest_of_line ();
4367 return;
4369 else
4371 int len;
4372 char *form = demand_copy_C_string (&len);
4373 if (strcmp (form, "mutex") == 0)
4374 type = 'm';
4375 else if (strcmp (form, "clear") == 0)
4376 type = 'c';
4377 else if (strcmp (form, "imply") == 0)
4378 type = 'i';
4379 else
4381 as_bad (_("Unrecognized predicate relation type"));
4382 ignore_rest_of_line ();
4383 return;
4386 if (*input_line_pointer == ',')
4387 ++input_line_pointer;
4388 SKIP_WHITESPACE ();
4391 SKIP_WHITESPACE ();
4392 while (1)
4394 valueT bit = 1;
4395 int regno;
4397 if (toupper (*input_line_pointer) != 'P'
4398 || (regno = atoi (++input_line_pointer)) < 0
4399 || regno > 63)
4401 as_bad (_("Predicate register expected"));
4402 ignore_rest_of_line ();
4403 return;
4405 while (isdigit (*input_line_pointer))
4406 ++input_line_pointer;
4407 if (p1 == -1)
4408 p1 = regno;
4409 else if (p2 == -1)
4410 p2 = regno;
4411 bit <<= regno;
4412 if (mask & bit)
4413 as_warn (_("Duplicate predicate register ignored"));
4414 mask |= bit;
4415 count++;
4416 /* See if it's a range. */
4417 if (*input_line_pointer == '-')
4419 valueT stop = 1;
4420 ++input_line_pointer;
4422 if (toupper (*input_line_pointer) != 'P'
4423 || (regno = atoi (++input_line_pointer)) < 0
4424 || regno > 63)
4426 as_bad (_("Predicate register expected"));
4427 ignore_rest_of_line ();
4428 return;
4430 while (isdigit (*input_line_pointer))
4431 ++input_line_pointer;
4432 stop <<= regno;
4433 if (bit >= stop)
4435 as_bad (_("Bad register range"));
4436 ignore_rest_of_line ();
4437 return;
4439 while (bit < stop)
4441 bit <<= 1;
4442 mask |= bit;
4443 count++;
4445 SKIP_WHITESPACE ();
4447 if (*input_line_pointer != ',')
4448 break;
4449 ++input_line_pointer;
4450 SKIP_WHITESPACE ();
4453 switch (type)
4455 case 'c':
4456 if (count == 0)
4457 mask = ~(valueT) 0;
4458 clear_qp_mutex (mask);
4459 clear_qp_implies (mask, (valueT) 0);
4460 break;
4461 case 'i':
4462 if (count != 2 || p1 == -1 || p2 == -1)
4463 as_bad (_("Predicate source and target required"));
4464 else if (p1 == 0 || p2 == 0)
4465 as_bad (_("Use of p0 is not valid in this context"));
4466 else
4467 add_qp_imply (p1, p2);
4468 break;
4469 case 'm':
4470 if (count < 2)
4472 as_bad (_("At least two PR arguments expected"));
4473 break;
4475 else if (mask & 1)
4477 as_bad (_("Use of p0 is not valid in this context"));
4478 break;
4480 add_qp_mutex (mask);
4481 break;
4482 case 's':
4483 /* note that we don't override any existing relations */
4484 if (count == 0)
4486 as_bad (_("At least one PR argument expected"));
4487 break;
4489 if (md.debug_dv)
4491 fprintf (stderr, "Safe across calls: ");
4492 print_prmask (mask);
4493 fprintf (stderr, "\n");
4495 qp_safe_across_calls = mask;
4496 break;
4498 demand_empty_rest_of_line ();
4501 /* .entry label [, label [, ...]]
4502 Hint to DV code that the given labels are to be considered entry points.
4503 Otherwise, only global labels are considered entry points. */
4505 static void
4506 dot_entry (dummy)
4507 int dummy ATTRIBUTE_UNUSED;
4509 const char *err;
4510 char *name;
4511 int c;
4512 symbolS *symbolP;
4516 name = input_line_pointer;
4517 c = get_symbol_end ();
4518 symbolP = symbol_find_or_make (name);
4520 err = hash_insert (md.entry_hash, S_GET_NAME (symbolP), (PTR) symbolP);
4521 if (err)
4522 as_fatal (_("Inserting \"%s\" into entry hint table failed: %s"),
4523 name, err);
4525 *input_line_pointer = c;
4526 SKIP_WHITESPACE ();
4527 c = *input_line_pointer;
4528 if (c == ',')
4530 input_line_pointer++;
4531 SKIP_WHITESPACE ();
4532 if (*input_line_pointer == '\n')
4533 c = '\n';
4536 while (c == ',');
4538 demand_empty_rest_of_line ();
4541 /* .mem.offset offset, base
4542 "base" is used to distinguish between offsets from a different base. */
4544 static void
4545 dot_mem_offset (dummy)
4546 int dummy ATTRIBUTE_UNUSED;
4548 md.mem_offset.hint = 1;
4549 md.mem_offset.offset = get_absolute_expression ();
4550 if (*input_line_pointer != ',')
4552 as_bad (_("Comma expected"));
4553 ignore_rest_of_line ();
4554 return;
4556 ++input_line_pointer;
4557 md.mem_offset.base = get_absolute_expression ();
4558 demand_empty_rest_of_line ();
4561 /* ia64-specific pseudo-ops: */
4562 const pseudo_typeS md_pseudo_table[] =
4564 { "radix", dot_radix, 0 },
4565 { "lcomm", s_lcomm_bytes, 1 },
4566 { "bss", dot_special_section, SPECIAL_SECTION_BSS },
4567 { "sbss", dot_special_section, SPECIAL_SECTION_SBSS },
4568 { "sdata", dot_special_section, SPECIAL_SECTION_SDATA },
4569 { "rodata", dot_special_section, SPECIAL_SECTION_RODATA },
4570 { "comment", dot_special_section, SPECIAL_SECTION_COMMENT },
4571 { "ia_64.unwind", dot_special_section, SPECIAL_SECTION_UNWIND },
4572 { "ia_64.unwind_info", dot_special_section, SPECIAL_SECTION_UNWIND_INFO },
4573 { "proc", dot_proc, 0 },
4574 { "body", dot_body, 0 },
4575 { "prologue", dot_prologue, 0 },
4576 { "endp", dot_endp, 0 },
4577 { "file", dwarf2_directive_file, 0 },
4578 { "loc", dwarf2_directive_loc, 0 },
4580 { "fframe", dot_fframe, 0 },
4581 { "vframe", dot_vframe, 0 },
4582 { "vframesp", dot_vframesp, 0 },
4583 { "vframepsp", dot_vframepsp, 0 },
4584 { "save", dot_save, 0 },
4585 { "restore", dot_restore, 0 },
4586 { "restorereg", dot_restorereg, 0 },
4587 { "restorereg.p", dot_restorereg_p, 0 },
4588 { "handlerdata", dot_handlerdata, 0 },
4589 { "unwentry", dot_unwentry, 0 },
4590 { "altrp", dot_altrp, 0 },
4591 { "savesp", dot_savemem, 0 },
4592 { "savepsp", dot_savemem, 1 },
4593 { "save.g", dot_saveg, 0 },
4594 { "save.f", dot_savef, 0 },
4595 { "save.b", dot_saveb, 0 },
4596 { "save.gf", dot_savegf, 0 },
4597 { "spill", dot_spill, 0 },
4598 { "spillreg", dot_spillreg, 0 },
4599 { "spillsp", dot_spillmem, 0 },
4600 { "spillpsp", dot_spillmem, 1 },
4601 { "spillreg.p", dot_spillreg_p, 0 },
4602 { "spillsp.p", dot_spillmem_p, 0 },
4603 { "spillpsp.p", dot_spillmem_p, 1 },
4604 { "label_state", dot_label_state, 0 },
4605 { "copy_state", dot_copy_state, 0 },
4606 { "unwabi", dot_unwabi, 0 },
4607 { "personality", dot_personality, 0 },
4608 #if 0
4609 { "estate", dot_estate, 0 },
4610 #endif
4611 { "mii", dot_template, 0x0 },
4612 { "mli", dot_template, 0x2 }, /* old format, for compatibility */
4613 { "mlx", dot_template, 0x2 },
4614 { "mmi", dot_template, 0x4 },
4615 { "mfi", dot_template, 0x6 },
4616 { "mmf", dot_template, 0x7 },
4617 { "mib", dot_template, 0x8 },
4618 { "mbb", dot_template, 0x9 },
4619 { "bbb", dot_template, 0xb },
4620 { "mmb", dot_template, 0xc },
4621 { "mfb", dot_template, 0xe },
4622 #if 0
4623 { "lb", dot_scope, 0 },
4624 { "le", dot_scope, 1 },
4625 #endif
4626 { "align", s_align_bytes, 0 },
4627 { "regstk", dot_regstk, 0 },
4628 { "rotr", dot_rot, DYNREG_GR },
4629 { "rotf", dot_rot, DYNREG_FR },
4630 { "rotp", dot_rot, DYNREG_PR },
4631 { "lsb", dot_byteorder, 0 },
4632 { "msb", dot_byteorder, 1 },
4633 { "psr", dot_psr, 0 },
4634 { "alias", dot_alias, 0 },
4635 { "ln", dot_ln, 0 }, /* source line info (for debugging) */
4637 { "xdata1", dot_xdata, 1 },
4638 { "xdata2", dot_xdata, 2 },
4639 { "xdata4", dot_xdata, 4 },
4640 { "xdata8", dot_xdata, 8 },
4641 { "xreal4", dot_xfloat_cons, 'f' },
4642 { "xreal8", dot_xfloat_cons, 'd' },
4643 { "xreal10", dot_xfloat_cons, 'x' },
4644 { "xstring", dot_xstringer, 0 },
4645 { "xstringz", dot_xstringer, 1 },
4647 /* unaligned versions: */
4648 { "xdata2.ua", dot_xdata_ua, 2 },
4649 { "xdata4.ua", dot_xdata_ua, 4 },
4650 { "xdata8.ua", dot_xdata_ua, 8 },
4651 { "xreal4.ua", dot_xfloat_cons_ua, 'f' },
4652 { "xreal8.ua", dot_xfloat_cons_ua, 'd' },
4653 { "xreal10.ua", dot_xfloat_cons_ua, 'x' },
4655 /* annotations/DV checking support */
4656 { "entry", dot_entry, 0 },
4657 { "mem.offset", dot_mem_offset, 0 },
4658 { "pred.rel", dot_pred_rel, 0 },
4659 { "pred.rel.clear", dot_pred_rel, 'c' },
4660 { "pred.rel.imply", dot_pred_rel, 'i' },
4661 { "pred.rel.mutex", dot_pred_rel, 'm' },
4662 { "pred.safe_across_calls", dot_pred_rel, 's' },
4663 { "reg.val", dot_reg_val, 0 },
4664 { "auto", dot_dv_mode, 'a' },
4665 { "explicit", dot_dv_mode, 'e' },
4666 { "default", dot_dv_mode, 'd' },
4668 { NULL, 0, 0 }
4671 static const struct pseudo_opcode
4673 const char *name;
4674 void (*handler) (int);
4675 int arg;
4677 pseudo_opcode[] =
4679 /* these are more like pseudo-ops, but don't start with a dot */
4680 { "data1", cons, 1 },
4681 { "data2", cons, 2 },
4682 { "data4", cons, 4 },
4683 { "data8", cons, 8 },
4684 { "real4", stmt_float_cons, 'f' },
4685 { "real8", stmt_float_cons, 'd' },
4686 { "real10", stmt_float_cons, 'x' },
4687 { "string", stringer, 0 },
4688 { "stringz", stringer, 1 },
4690 /* unaligned versions: */
4691 { "data2.ua", stmt_cons_ua, 2 },
4692 { "data4.ua", stmt_cons_ua, 4 },
4693 { "data8.ua", stmt_cons_ua, 8 },
4694 { "real4.ua", float_cons, 'f' },
4695 { "real8.ua", float_cons, 'd' },
4696 { "real10.ua", float_cons, 'x' },
4699 /* Declare a register by creating a symbol for it and entering it in
4700 the symbol table. */
4702 static symbolS *
4703 declare_register (name, regnum)
4704 const char *name;
4705 int regnum;
4707 const char *err;
4708 symbolS *sym;
4710 sym = symbol_new (name, reg_section, regnum, &zero_address_frag);
4712 err = hash_insert (md.reg_hash, S_GET_NAME (sym), (PTR) sym);
4713 if (err)
4714 as_fatal ("Inserting \"%s\" into register table failed: %s",
4715 name, err);
4717 return sym;
4720 static void
4721 declare_register_set (prefix, num_regs, base_regnum)
4722 const char *prefix;
4723 int num_regs;
4724 int base_regnum;
4726 char name[8];
4727 int i;
4729 for (i = 0; i < num_regs; ++i)
4731 sprintf (name, "%s%u", prefix, i);
4732 declare_register (name, base_regnum + i);
4736 static unsigned int
4737 operand_width (opnd)
4738 enum ia64_opnd opnd;
4740 const struct ia64_operand *odesc = &elf64_ia64_operands[opnd];
4741 unsigned int bits = 0;
4742 int i;
4744 bits = 0;
4745 for (i = 0; i < NELEMS (odesc->field) && odesc->field[i].bits; ++i)
4746 bits += odesc->field[i].bits;
4748 return bits;
4751 static enum operand_match_result
4752 operand_match (idesc, index, e)
4753 const struct ia64_opcode *idesc;
4754 int index;
4755 expressionS *e;
4757 enum ia64_opnd opnd = idesc->operands[index];
4758 int bits, relocatable = 0;
4759 struct insn_fix *fix;
4760 bfd_signed_vma val;
4762 switch (opnd)
4764 /* constants: */
4766 case IA64_OPND_AR_CCV:
4767 if (e->X_op == O_register && e->X_add_number == REG_AR + 32)
4768 return OPERAND_MATCH;
4769 break;
4771 case IA64_OPND_AR_PFS:
4772 if (e->X_op == O_register && e->X_add_number == REG_AR + 64)
4773 return OPERAND_MATCH;
4774 break;
4776 case IA64_OPND_GR0:
4777 if (e->X_op == O_register && e->X_add_number == REG_GR + 0)
4778 return OPERAND_MATCH;
4779 break;
4781 case IA64_OPND_IP:
4782 if (e->X_op == O_register && e->X_add_number == REG_IP)
4783 return OPERAND_MATCH;
4784 break;
4786 case IA64_OPND_PR:
4787 if (e->X_op == O_register && e->X_add_number == REG_PR)
4788 return OPERAND_MATCH;
4789 break;
4791 case IA64_OPND_PR_ROT:
4792 if (e->X_op == O_register && e->X_add_number == REG_PR_ROT)
4793 return OPERAND_MATCH;
4794 break;
4796 case IA64_OPND_PSR:
4797 if (e->X_op == O_register && e->X_add_number == REG_PSR)
4798 return OPERAND_MATCH;
4799 break;
4801 case IA64_OPND_PSR_L:
4802 if (e->X_op == O_register && e->X_add_number == REG_PSR_L)
4803 return OPERAND_MATCH;
4804 break;
4806 case IA64_OPND_PSR_UM:
4807 if (e->X_op == O_register && e->X_add_number == REG_PSR_UM)
4808 return OPERAND_MATCH;
4809 break;
4811 case IA64_OPND_C1:
4812 if (e->X_op == O_constant)
4814 if (e->X_add_number == 1)
4815 return OPERAND_MATCH;
4816 else
4817 return OPERAND_OUT_OF_RANGE;
4819 break;
4821 case IA64_OPND_C8:
4822 if (e->X_op == O_constant)
4824 if (e->X_add_number == 8)
4825 return OPERAND_MATCH;
4826 else
4827 return OPERAND_OUT_OF_RANGE;
4829 break;
4831 case IA64_OPND_C16:
4832 if (e->X_op == O_constant)
4834 if (e->X_add_number == 16)
4835 return OPERAND_MATCH;
4836 else
4837 return OPERAND_OUT_OF_RANGE;
4839 break;
4841 /* register operands: */
4843 case IA64_OPND_AR3:
4844 if (e->X_op == O_register && e->X_add_number >= REG_AR
4845 && e->X_add_number < REG_AR + 128)
4846 return OPERAND_MATCH;
4847 break;
4849 case IA64_OPND_B1:
4850 case IA64_OPND_B2:
4851 if (e->X_op == O_register && e->X_add_number >= REG_BR
4852 && e->X_add_number < REG_BR + 8)
4853 return OPERAND_MATCH;
4854 break;
4856 case IA64_OPND_CR3:
4857 if (e->X_op == O_register && e->X_add_number >= REG_CR
4858 && e->X_add_number < REG_CR + 128)
4859 return OPERAND_MATCH;
4860 break;
4862 case IA64_OPND_F1:
4863 case IA64_OPND_F2:
4864 case IA64_OPND_F3:
4865 case IA64_OPND_F4:
4866 if (e->X_op == O_register && e->X_add_number >= REG_FR
4867 && e->X_add_number < REG_FR + 128)
4868 return OPERAND_MATCH;
4869 break;
4871 case IA64_OPND_P1:
4872 case IA64_OPND_P2:
4873 if (e->X_op == O_register && e->X_add_number >= REG_P
4874 && e->X_add_number < REG_P + 64)
4875 return OPERAND_MATCH;
4876 break;
4878 case IA64_OPND_R1:
4879 case IA64_OPND_R2:
4880 case IA64_OPND_R3:
4881 if (e->X_op == O_register && e->X_add_number >= REG_GR
4882 && e->X_add_number < REG_GR + 128)
4883 return OPERAND_MATCH;
4884 break;
4886 case IA64_OPND_R3_2:
4887 if (e->X_op == O_register && e->X_add_number >= REG_GR)
4889 if (e->X_add_number < REG_GR + 4)
4890 return OPERAND_MATCH;
4891 else if (e->X_add_number < REG_GR + 128)
4892 return OPERAND_OUT_OF_RANGE;
4894 break;
4896 /* indirect operands: */
4897 case IA64_OPND_CPUID_R3:
4898 case IA64_OPND_DBR_R3:
4899 case IA64_OPND_DTR_R3:
4900 case IA64_OPND_ITR_R3:
4901 case IA64_OPND_IBR_R3:
4902 case IA64_OPND_MSR_R3:
4903 case IA64_OPND_PKR_R3:
4904 case IA64_OPND_PMC_R3:
4905 case IA64_OPND_PMD_R3:
4906 case IA64_OPND_RR_R3:
4907 if (e->X_op == O_index && e->X_op_symbol
4908 && (S_GET_VALUE (e->X_op_symbol) - IND_CPUID
4909 == opnd - IA64_OPND_CPUID_R3))
4910 return OPERAND_MATCH;
4911 break;
4913 case IA64_OPND_MR3:
4914 if (e->X_op == O_index && !e->X_op_symbol)
4915 return OPERAND_MATCH;
4916 break;
4918 /* immediate operands: */
4919 case IA64_OPND_CNT2a:
4920 case IA64_OPND_LEN4:
4921 case IA64_OPND_LEN6:
4922 bits = operand_width (idesc->operands[index]);
4923 if (e->X_op == O_constant)
4925 if ((bfd_vma) (e->X_add_number - 1) < ((bfd_vma) 1 << bits))
4926 return OPERAND_MATCH;
4927 else
4928 return OPERAND_OUT_OF_RANGE;
4930 break;
4932 case IA64_OPND_CNT2b:
4933 if (e->X_op == O_constant)
4935 if ((bfd_vma) (e->X_add_number - 1) < 3)
4936 return OPERAND_MATCH;
4937 else
4938 return OPERAND_OUT_OF_RANGE;
4940 break;
4942 case IA64_OPND_CNT2c:
4943 val = e->X_add_number;
4944 if (e->X_op == O_constant)
4946 if ((val == 0 || val == 7 || val == 15 || val == 16))
4947 return OPERAND_MATCH;
4948 else
4949 return OPERAND_OUT_OF_RANGE;
4951 break;
4953 case IA64_OPND_SOR:
4954 /* SOR must be an integer multiple of 8 */
4955 if (e->X_op == O_constant && e->X_add_number & 0x7)
4956 return OPERAND_OUT_OF_RANGE;
4957 case IA64_OPND_SOF:
4958 case IA64_OPND_SOL:
4959 if (e->X_op == O_constant)
4961 if ((bfd_vma) e->X_add_number <= 96)
4962 return OPERAND_MATCH;
4963 else
4964 return OPERAND_OUT_OF_RANGE;
4966 break;
4968 case IA64_OPND_IMMU62:
4969 if (e->X_op == O_constant)
4971 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << 62))
4972 return OPERAND_MATCH;
4973 else
4974 return OPERAND_OUT_OF_RANGE;
4976 else
4978 /* FIXME -- need 62-bit relocation type */
4979 as_bad (_("62-bit relocation not yet implemented"));
4981 break;
4983 case IA64_OPND_IMMU64:
4984 if (e->X_op == O_symbol || e->X_op == O_pseudo_fixup
4985 || e->X_op == O_subtract)
4987 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
4988 fix->code = BFD_RELOC_IA64_IMM64;
4989 if (e->X_op != O_subtract)
4991 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
4992 if (e->X_op == O_pseudo_fixup)
4993 e->X_op = O_symbol;
4996 fix->opnd = idesc->operands[index];
4997 fix->expr = *e;
4998 fix->is_pcrel = 0;
4999 ++CURR_SLOT.num_fixups;
5000 return OPERAND_MATCH;
5002 else if (e->X_op == O_constant)
5003 return OPERAND_MATCH;
5004 break;
5006 case IA64_OPND_CCNT5:
5007 case IA64_OPND_CNT5:
5008 case IA64_OPND_CNT6:
5009 case IA64_OPND_CPOS6a:
5010 case IA64_OPND_CPOS6b:
5011 case IA64_OPND_CPOS6c:
5012 case IA64_OPND_IMMU2:
5013 case IA64_OPND_IMMU7a:
5014 case IA64_OPND_IMMU7b:
5015 case IA64_OPND_IMMU21:
5016 case IA64_OPND_IMMU24:
5017 case IA64_OPND_MBTYPE4:
5018 case IA64_OPND_MHTYPE8:
5019 case IA64_OPND_POS6:
5020 bits = operand_width (idesc->operands[index]);
5021 if (e->X_op == O_constant)
5023 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
5024 return OPERAND_MATCH;
5025 else
5026 return OPERAND_OUT_OF_RANGE;
5028 break;
5030 case IA64_OPND_IMMU9:
5031 bits = operand_width (idesc->operands[index]);
5032 if (e->X_op == O_constant)
5034 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
5036 int lobits = e->X_add_number & 0x3;
5037 if (((bfd_vma) e->X_add_number & 0x3C) != 0 && lobits == 0)
5038 e->X_add_number |= (bfd_vma) 0x3;
5039 return OPERAND_MATCH;
5041 else
5042 return OPERAND_OUT_OF_RANGE;
5044 break;
5046 case IA64_OPND_IMM44:
5047 /* least 16 bits must be zero */
5048 if ((e->X_add_number & 0xffff) != 0)
5049 /* XXX technically, this is wrong: we should not be issuing warning
5050 messages until we're sure this instruction pattern is going to
5051 be used! */
5052 as_warn (_("lower 16 bits of mask ignored"));
5054 if (e->X_op == O_constant)
5056 if (((e->X_add_number >= 0
5057 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 44))
5058 || (e->X_add_number < 0
5059 && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 44))))
5061 /* sign-extend */
5062 if (e->X_add_number >= 0
5063 && (e->X_add_number & ((bfd_vma) 1 << 43)) != 0)
5065 e->X_add_number |= ~(((bfd_vma) 1 << 44) - 1);
5067 return OPERAND_MATCH;
5069 else
5070 return OPERAND_OUT_OF_RANGE;
5072 break;
5074 case IA64_OPND_IMM17:
5075 /* bit 0 is a don't care (pr0 is hardwired to 1) */
5076 if (e->X_op == O_constant)
5078 if (((e->X_add_number >= 0
5079 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 17))
5080 || (e->X_add_number < 0
5081 && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 17))))
5083 /* sign-extend */
5084 if (e->X_add_number >= 0
5085 && (e->X_add_number & ((bfd_vma) 1 << 16)) != 0)
5087 e->X_add_number |= ~(((bfd_vma) 1 << 17) - 1);
5089 return OPERAND_MATCH;
5091 else
5092 return OPERAND_OUT_OF_RANGE;
5094 break;
5096 case IA64_OPND_IMM14:
5097 case IA64_OPND_IMM22:
5098 relocatable = 1;
5099 case IA64_OPND_IMM1:
5100 case IA64_OPND_IMM8:
5101 case IA64_OPND_IMM8U4:
5102 case IA64_OPND_IMM8M1:
5103 case IA64_OPND_IMM8M1U4:
5104 case IA64_OPND_IMM8M1U8:
5105 case IA64_OPND_IMM9a:
5106 case IA64_OPND_IMM9b:
5107 bits = operand_width (idesc->operands[index]);
5108 if (relocatable && (e->X_op == O_symbol
5109 || e->X_op == O_subtract
5110 || e->X_op == O_pseudo_fixup))
5112 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5114 if (idesc->operands[index] == IA64_OPND_IMM14)
5115 fix->code = BFD_RELOC_IA64_IMM14;
5116 else
5117 fix->code = BFD_RELOC_IA64_IMM22;
5119 if (e->X_op != O_subtract)
5121 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5122 if (e->X_op == O_pseudo_fixup)
5123 e->X_op = O_symbol;
5126 fix->opnd = idesc->operands[index];
5127 fix->expr = *e;
5128 fix->is_pcrel = 0;
5129 ++CURR_SLOT.num_fixups;
5130 return OPERAND_MATCH;
5132 else if (e->X_op != O_constant
5133 && ! (e->X_op == O_big && opnd == IA64_OPND_IMM8M1U8))
5134 return OPERAND_MISMATCH;
5136 if (opnd == IA64_OPND_IMM8M1U4)
5138 /* Zero is not valid for unsigned compares that take an adjusted
5139 constant immediate range. */
5140 if (e->X_add_number == 0)
5141 return OPERAND_OUT_OF_RANGE;
5143 /* Sign-extend 32-bit unsigned numbers, so that the following range
5144 checks will work. */
5145 val = e->X_add_number;
5146 if (((val & (~(bfd_vma) 0 << 32)) == 0)
5147 && ((val & ((bfd_vma) 1 << 31)) != 0))
5148 val = ((val << 32) >> 32);
5150 /* Check for 0x100000000. This is valid because
5151 0x100000000-1 is the same as ((uint32_t) -1). */
5152 if (val == ((bfd_signed_vma) 1 << 32))
5153 return OPERAND_MATCH;
5155 val = val - 1;
5157 else if (opnd == IA64_OPND_IMM8M1U8)
5159 /* Zero is not valid for unsigned compares that take an adjusted
5160 constant immediate range. */
5161 if (e->X_add_number == 0)
5162 return OPERAND_OUT_OF_RANGE;
5164 /* Check for 0x10000000000000000. */
5165 if (e->X_op == O_big)
5167 if (generic_bignum[0] == 0
5168 && generic_bignum[1] == 0
5169 && generic_bignum[2] == 0
5170 && generic_bignum[3] == 0
5171 && generic_bignum[4] == 1)
5172 return OPERAND_MATCH;
5173 else
5174 return OPERAND_OUT_OF_RANGE;
5176 else
5177 val = e->X_add_number - 1;
5179 else if (opnd == IA64_OPND_IMM8M1)
5180 val = e->X_add_number - 1;
5181 else if (opnd == IA64_OPND_IMM8U4)
5183 /* Sign-extend 32-bit unsigned numbers, so that the following range
5184 checks will work. */
5185 val = e->X_add_number;
5186 if (((val & (~(bfd_vma) 0 << 32)) == 0)
5187 && ((val & ((bfd_vma) 1 << 31)) != 0))
5188 val = ((val << 32) >> 32);
5190 else
5191 val = e->X_add_number;
5193 if ((val >= 0 && (bfd_vma) val < ((bfd_vma) 1 << (bits - 1)))
5194 || (val < 0 && (bfd_vma) -val <= ((bfd_vma) 1 << (bits - 1))))
5195 return OPERAND_MATCH;
5196 else
5197 return OPERAND_OUT_OF_RANGE;
5199 case IA64_OPND_INC3:
5200 /* +/- 1, 4, 8, 16 */
5201 val = e->X_add_number;
5202 if (val < 0)
5203 val = -val;
5204 if (e->X_op == O_constant)
5206 if ((val == 1 || val == 4 || val == 8 || val == 16))
5207 return OPERAND_MATCH;
5208 else
5209 return OPERAND_OUT_OF_RANGE;
5211 break;
5213 case IA64_OPND_TGT25:
5214 case IA64_OPND_TGT25b:
5215 case IA64_OPND_TGT25c:
5216 case IA64_OPND_TGT64:
5217 if (e->X_op == O_symbol)
5219 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5220 if (opnd == IA64_OPND_TGT25)
5221 fix->code = BFD_RELOC_IA64_PCREL21F;
5222 else if (opnd == IA64_OPND_TGT25b)
5223 fix->code = BFD_RELOC_IA64_PCREL21M;
5224 else if (opnd == IA64_OPND_TGT25c)
5225 fix->code = BFD_RELOC_IA64_PCREL21B;
5226 else if (opnd == IA64_OPND_TGT64)
5227 fix->code = BFD_RELOC_IA64_PCREL60B;
5228 else
5229 abort ();
5231 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5232 fix->opnd = idesc->operands[index];
5233 fix->expr = *e;
5234 fix->is_pcrel = 1;
5235 ++CURR_SLOT.num_fixups;
5236 return OPERAND_MATCH;
5238 case IA64_OPND_TAG13:
5239 case IA64_OPND_TAG13b:
5240 switch (e->X_op)
5242 case O_constant:
5243 return OPERAND_MATCH;
5245 case O_symbol:
5246 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5247 /* There are no external relocs for TAG13/TAG13b fields, so we
5248 create a dummy reloc. This will not live past md_apply_fix3. */
5249 fix->code = BFD_RELOC_UNUSED;
5250 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5251 fix->opnd = idesc->operands[index];
5252 fix->expr = *e;
5253 fix->is_pcrel = 1;
5254 ++CURR_SLOT.num_fixups;
5255 return OPERAND_MATCH;
5257 default:
5258 break;
5260 break;
5262 default:
5263 break;
5265 return OPERAND_MISMATCH;
5268 static int
5269 parse_operand (e)
5270 expressionS *e;
5272 int sep = '\0';
5274 memset (e, 0, sizeof (*e));
5275 e->X_op = O_absent;
5276 SKIP_WHITESPACE ();
5277 if (*input_line_pointer != '}')
5278 expression (e);
5279 sep = *input_line_pointer++;
5281 if (sep == '}')
5283 if (!md.manual_bundling)
5284 as_warn ("Found '}' when manual bundling is off");
5285 else
5286 CURR_SLOT.manual_bundling_off = 1;
5287 md.manual_bundling = 0;
5288 sep = '\0';
5290 return sep;
5293 /* Returns the next entry in the opcode table that matches the one in
5294 IDESC, and frees the entry in IDESC. If no matching entry is
5295 found, NULL is returned instead. */
5297 static struct ia64_opcode *
5298 get_next_opcode (struct ia64_opcode *idesc)
5300 struct ia64_opcode *next = ia64_find_next_opcode (idesc);
5301 ia64_free_opcode (idesc);
5302 return next;
5305 /* Parse the operands for the opcode and find the opcode variant that
5306 matches the specified operands, or NULL if no match is possible. */
5308 static struct ia64_opcode *
5309 parse_operands (idesc)
5310 struct ia64_opcode *idesc;
5312 int i = 0, highest_unmatched_operand, num_operands = 0, num_outputs = 0;
5313 int error_pos, out_of_range_pos, curr_out_of_range_pos, sep = 0;
5314 enum ia64_opnd expected_operand = IA64_OPND_NIL;
5315 enum operand_match_result result;
5316 char mnemonic[129];
5317 char *first_arg = 0, *end, *saved_input_pointer;
5318 unsigned int sof;
5320 assert (strlen (idesc->name) <= 128);
5322 strcpy (mnemonic, idesc->name);
5323 if (idesc->operands[2] == IA64_OPND_SOF)
5325 /* To make the common idiom "alloc loc?=ar.pfs,0,1,0,0" work, we
5326 can't parse the first operand until we have parsed the
5327 remaining operands of the "alloc" instruction. */
5328 SKIP_WHITESPACE ();
5329 first_arg = input_line_pointer;
5330 end = strchr (input_line_pointer, '=');
5331 if (!end)
5333 as_bad ("Expected separator `='");
5334 return 0;
5336 input_line_pointer = end + 1;
5337 ++i;
5338 ++num_outputs;
5341 for (; i < NELEMS (CURR_SLOT.opnd); ++i)
5343 sep = parse_operand (CURR_SLOT.opnd + i);
5344 if (CURR_SLOT.opnd[i].X_op == O_absent)
5345 break;
5347 ++num_operands;
5349 if (sep != '=' && sep != ',')
5350 break;
5352 if (sep == '=')
5354 if (num_outputs > 0)
5355 as_bad ("Duplicate equal sign (=) in instruction");
5356 else
5357 num_outputs = i + 1;
5360 if (sep != '\0')
5362 as_bad ("Illegal operand separator `%c'", sep);
5363 return 0;
5366 if (idesc->operands[2] == IA64_OPND_SOF)
5368 /* map alloc r1=ar.pfs,i,l,o,r to alloc r1=ar.pfs,(i+l+o),(i+l),r */
5369 know (strcmp (idesc->name, "alloc") == 0);
5370 if (num_operands == 5 /* first_arg not included in this count! */
5371 && CURR_SLOT.opnd[2].X_op == O_constant
5372 && CURR_SLOT.opnd[3].X_op == O_constant
5373 && CURR_SLOT.opnd[4].X_op == O_constant
5374 && CURR_SLOT.opnd[5].X_op == O_constant)
5376 sof = set_regstack (CURR_SLOT.opnd[2].X_add_number,
5377 CURR_SLOT.opnd[3].X_add_number,
5378 CURR_SLOT.opnd[4].X_add_number,
5379 CURR_SLOT.opnd[5].X_add_number);
5381 /* now we can parse the first arg: */
5382 saved_input_pointer = input_line_pointer;
5383 input_line_pointer = first_arg;
5384 sep = parse_operand (CURR_SLOT.opnd + 0);
5385 if (sep != '=')
5386 --num_outputs; /* force error */
5387 input_line_pointer = saved_input_pointer;
5389 CURR_SLOT.opnd[2].X_add_number = sof;
5390 CURR_SLOT.opnd[3].X_add_number
5391 = sof - CURR_SLOT.opnd[4].X_add_number;
5392 CURR_SLOT.opnd[4] = CURR_SLOT.opnd[5];
5396 highest_unmatched_operand = 0;
5397 curr_out_of_range_pos = -1;
5398 error_pos = 0;
5399 expected_operand = idesc->operands[0];
5400 for (; idesc; idesc = get_next_opcode (idesc))
5402 if (num_outputs != idesc->num_outputs)
5403 continue; /* mismatch in # of outputs */
5405 CURR_SLOT.num_fixups = 0;
5407 /* Try to match all operands. If we see an out-of-range operand,
5408 then continue trying to match the rest of the operands, since if
5409 the rest match, then this idesc will give the best error message. */
5411 out_of_range_pos = -1;
5412 for (i = 0; i < num_operands && idesc->operands[i]; ++i)
5414 result = operand_match (idesc, i, CURR_SLOT.opnd + i);
5415 if (result != OPERAND_MATCH)
5417 if (result != OPERAND_OUT_OF_RANGE)
5418 break;
5419 if (out_of_range_pos < 0)
5420 /* remember position of the first out-of-range operand: */
5421 out_of_range_pos = i;
5425 /* If we did not match all operands, or if at least one operand was
5426 out-of-range, then this idesc does not match. Keep track of which
5427 idesc matched the most operands before failing. If we have two
5428 idescs that failed at the same position, and one had an out-of-range
5429 operand, then prefer the out-of-range operand. Thus if we have
5430 "add r0=0x1000000,r1" we get an error saying the constant is out
5431 of range instead of an error saying that the constant should have been
5432 a register. */
5434 if (i != num_operands || out_of_range_pos >= 0)
5436 if (i > highest_unmatched_operand
5437 || (i == highest_unmatched_operand
5438 && out_of_range_pos > curr_out_of_range_pos))
5440 highest_unmatched_operand = i;
5441 if (out_of_range_pos >= 0)
5443 expected_operand = idesc->operands[out_of_range_pos];
5444 error_pos = out_of_range_pos;
5446 else
5448 expected_operand = idesc->operands[i];
5449 error_pos = i;
5451 curr_out_of_range_pos = out_of_range_pos;
5453 continue;
5456 if (num_operands < NELEMS (idesc->operands)
5457 && idesc->operands[num_operands])
5458 continue; /* mismatch in number of arguments */
5460 break;
5462 if (!idesc)
5464 if (expected_operand)
5465 as_bad ("Operand %u of `%s' should be %s",
5466 error_pos + 1, mnemonic,
5467 elf64_ia64_operands[expected_operand].desc);
5468 else
5469 as_bad ("Operand mismatch");
5470 return 0;
5472 return idesc;
5475 /* Keep track of state necessary to determine whether a NOP is necessary
5476 to avoid an erratum in A and B step Itanium chips, and return 1 if we
5477 detect a case where additional NOPs may be necessary. */
5478 static int
5479 errata_nop_necessary_p (slot, insn_unit)
5480 struct slot *slot;
5481 enum ia64_unit insn_unit;
5483 int i;
5484 struct group *this_group = md.last_groups + md.group_idx;
5485 struct group *prev_group = md.last_groups + (md.group_idx + 2) % 3;
5486 struct ia64_opcode *idesc = slot->idesc;
5488 /* Test whether this could be the first insn in a problematic sequence. */
5489 if (insn_unit == IA64_UNIT_F)
5491 for (i = 0; i < idesc->num_outputs; i++)
5492 if (idesc->operands[i] == IA64_OPND_P1
5493 || idesc->operands[i] == IA64_OPND_P2)
5495 int regno = slot->opnd[i].X_add_number - REG_P;
5496 /* Ignore invalid operands; they generate errors elsewhere. */
5497 if (regno >= 64)
5498 return 0;
5499 this_group->p_reg_set[regno] = 1;
5503 /* Test whether this could be the second insn in a problematic sequence. */
5504 if (insn_unit == IA64_UNIT_M && slot->qp_regno > 0
5505 && prev_group->p_reg_set[slot->qp_regno])
5507 for (i = 0; i < idesc->num_outputs; i++)
5508 if (idesc->operands[i] == IA64_OPND_R1
5509 || idesc->operands[i] == IA64_OPND_R2
5510 || idesc->operands[i] == IA64_OPND_R3)
5512 int regno = slot->opnd[i].X_add_number - REG_GR;
5513 /* Ignore invalid operands; they generate errors elsewhere. */
5514 if (regno >= 128)
5515 return 0;
5516 if (strncmp (idesc->name, "add", 3) != 0
5517 && strncmp (idesc->name, "sub", 3) != 0
5518 && strncmp (idesc->name, "shladd", 6) != 0
5519 && (idesc->flags & IA64_OPCODE_POSTINC) == 0)
5520 this_group->g_reg_set_conditionally[regno] = 1;
5524 /* Test whether this could be the third insn in a problematic sequence. */
5525 for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; i++)
5527 if (/* For fc, ptc, ptr, tak, thash, tpa, ttag, probe, ptr, ptc. */
5528 idesc->operands[i] == IA64_OPND_R3
5529 /* For mov indirect. */
5530 || idesc->operands[i] == IA64_OPND_RR_R3
5531 || idesc->operands[i] == IA64_OPND_DBR_R3
5532 || idesc->operands[i] == IA64_OPND_IBR_R3
5533 || idesc->operands[i] == IA64_OPND_PKR_R3
5534 || idesc->operands[i] == IA64_OPND_PMC_R3
5535 || idesc->operands[i] == IA64_OPND_PMD_R3
5536 || idesc->operands[i] == IA64_OPND_MSR_R3
5537 || idesc->operands[i] == IA64_OPND_CPUID_R3
5538 /* For itr. */
5539 || idesc->operands[i] == IA64_OPND_ITR_R3
5540 || idesc->operands[i] == IA64_OPND_DTR_R3
5541 /* Normal memory addresses (load, store, xchg, cmpxchg, etc.). */
5542 || idesc->operands[i] == IA64_OPND_MR3)
5544 int regno = slot->opnd[i].X_add_number - REG_GR;
5545 /* Ignore invalid operands; they generate errors elsewhere. */
5546 if (regno >= 128)
5547 return 0;
5548 if (idesc->operands[i] == IA64_OPND_R3)
5550 if (strcmp (idesc->name, "fc") != 0
5551 && strcmp (idesc->name, "tak") != 0
5552 && strcmp (idesc->name, "thash") != 0
5553 && strcmp (idesc->name, "tpa") != 0
5554 && strcmp (idesc->name, "ttag") != 0
5555 && strncmp (idesc->name, "ptr", 3) != 0
5556 && strncmp (idesc->name, "ptc", 3) != 0
5557 && strncmp (idesc->name, "probe", 5) != 0)
5558 return 0;
5560 if (prev_group->g_reg_set_conditionally[regno])
5561 return 1;
5564 return 0;
5567 static void
5568 build_insn (slot, insnp)
5569 struct slot *slot;
5570 bfd_vma *insnp;
5572 const struct ia64_operand *odesc, *o2desc;
5573 struct ia64_opcode *idesc = slot->idesc;
5574 bfd_signed_vma insn, val;
5575 const char *err;
5576 int i;
5578 insn = idesc->opcode | slot->qp_regno;
5580 for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; ++i)
5582 if (slot->opnd[i].X_op == O_register
5583 || slot->opnd[i].X_op == O_constant
5584 || slot->opnd[i].X_op == O_index)
5585 val = slot->opnd[i].X_add_number;
5586 else if (slot->opnd[i].X_op == O_big)
5588 /* This must be the value 0x10000000000000000. */
5589 assert (idesc->operands[i] == IA64_OPND_IMM8M1U8);
5590 val = 0;
5592 else
5593 val = 0;
5595 switch (idesc->operands[i])
5597 case IA64_OPND_IMMU64:
5598 *insnp++ = (val >> 22) & 0x1ffffffffffLL;
5599 insn |= (((val & 0x7f) << 13) | (((val >> 7) & 0x1ff) << 27)
5600 | (((val >> 16) & 0x1f) << 22) | (((val >> 21) & 0x1) << 21)
5601 | (((val >> 63) & 0x1) << 36));
5602 continue;
5604 case IA64_OPND_IMMU62:
5605 val &= 0x3fffffffffffffffULL;
5606 if (val != slot->opnd[i].X_add_number)
5607 as_warn (_("Value truncated to 62 bits"));
5608 *insnp++ = (val >> 21) & 0x1ffffffffffLL;
5609 insn |= (((val & 0xfffff) << 6) | (((val >> 20) & 0x1) << 36));
5610 continue;
5612 case IA64_OPND_TGT64:
5613 val >>= 4;
5614 *insnp++ = ((val >> 20) & 0x7fffffffffLL) << 2;
5615 insn |= ((((val >> 59) & 0x1) << 36)
5616 | (((val >> 0) & 0xfffff) << 13));
5617 continue;
5619 case IA64_OPND_AR3:
5620 val -= REG_AR;
5621 break;
5623 case IA64_OPND_B1:
5624 case IA64_OPND_B2:
5625 val -= REG_BR;
5626 break;
5628 case IA64_OPND_CR3:
5629 val -= REG_CR;
5630 break;
5632 case IA64_OPND_F1:
5633 case IA64_OPND_F2:
5634 case IA64_OPND_F3:
5635 case IA64_OPND_F4:
5636 val -= REG_FR;
5637 break;
5639 case IA64_OPND_P1:
5640 case IA64_OPND_P2:
5641 val -= REG_P;
5642 break;
5644 case IA64_OPND_R1:
5645 case IA64_OPND_R2:
5646 case IA64_OPND_R3:
5647 case IA64_OPND_R3_2:
5648 case IA64_OPND_CPUID_R3:
5649 case IA64_OPND_DBR_R3:
5650 case IA64_OPND_DTR_R3:
5651 case IA64_OPND_ITR_R3:
5652 case IA64_OPND_IBR_R3:
5653 case IA64_OPND_MR3:
5654 case IA64_OPND_MSR_R3:
5655 case IA64_OPND_PKR_R3:
5656 case IA64_OPND_PMC_R3:
5657 case IA64_OPND_PMD_R3:
5658 case IA64_OPND_RR_R3:
5659 val -= REG_GR;
5660 break;
5662 default:
5663 break;
5666 odesc = elf64_ia64_operands + idesc->operands[i];
5667 err = (*odesc->insert) (odesc, val, &insn);
5668 if (err)
5669 as_bad_where (slot->src_file, slot->src_line,
5670 "Bad operand value: %s", err);
5671 if (idesc->flags & IA64_OPCODE_PSEUDO)
5673 if ((idesc->flags & IA64_OPCODE_F2_EQ_F3)
5674 && odesc == elf64_ia64_operands + IA64_OPND_F3)
5676 o2desc = elf64_ia64_operands + IA64_OPND_F2;
5677 (*o2desc->insert) (o2desc, val, &insn);
5679 if ((idesc->flags & IA64_OPCODE_LEN_EQ_64MCNT)
5680 && (odesc == elf64_ia64_operands + IA64_OPND_CPOS6a
5681 || odesc == elf64_ia64_operands + IA64_OPND_POS6))
5683 o2desc = elf64_ia64_operands + IA64_OPND_LEN6;
5684 (*o2desc->insert) (o2desc, 64 - val, &insn);
5688 *insnp = insn;
5691 static void
5692 emit_one_bundle ()
5694 unsigned int manual_bundling_on = 0, manual_bundling_off = 0;
5695 unsigned int manual_bundling = 0;
5696 enum ia64_unit required_unit, insn_unit = 0;
5697 enum ia64_insn_type type[3], insn_type;
5698 unsigned int template, orig_template;
5699 bfd_vma insn[3] = { -1, -1, -1 };
5700 struct ia64_opcode *idesc;
5701 int end_of_insn_group = 0, user_template = -1;
5702 int n, i, j, first, curr;
5703 unw_rec_list *ptr;
5704 bfd_vma t0 = 0, t1 = 0;
5705 struct label_fix *lfix;
5706 struct insn_fix *ifix;
5707 char mnemonic[16];
5708 fixS *fix;
5709 char *f;
5711 first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % NUM_SLOTS;
5712 know (first >= 0 & first < NUM_SLOTS);
5713 n = MIN (3, md.num_slots_in_use);
5715 /* Determine template: user user_template if specified, best match
5716 otherwise: */
5718 if (md.slot[first].user_template >= 0)
5719 user_template = template = md.slot[first].user_template;
5720 else
5722 /* Auto select appropriate template. */
5723 memset (type, 0, sizeof (type));
5724 curr = first;
5725 for (i = 0; i < n; ++i)
5727 if (md.slot[curr].label_fixups && i != 0)
5728 break;
5729 type[i] = md.slot[curr].idesc->type;
5730 curr = (curr + 1) % NUM_SLOTS;
5732 template = best_template[type[0]][type[1]][type[2]];
5735 /* initialize instructions with appropriate nops: */
5736 for (i = 0; i < 3; ++i)
5737 insn[i] = nop[ia64_templ_desc[template].exec_unit[i]];
5739 f = frag_more (16);
5741 /* now fill in slots with as many insns as possible: */
5742 curr = first;
5743 idesc = md.slot[curr].idesc;
5744 end_of_insn_group = 0;
5745 for (i = 0; i < 3 && md.num_slots_in_use > 0; ++i)
5747 /* Set the slot number for prologue/body records now as those
5748 refer to the current point, not the point after the
5749 instruction has been issued: */
5750 /* Don't try to delete prologue/body records here, as that will cause
5751 them to also be deleted from the master list of unwind records. */
5752 for (ptr = md.slot[curr].unwind_record; ptr; ptr = ptr->next)
5753 if (ptr->r.type == prologue || ptr->r.type == prologue_gr
5754 || ptr->r.type == body)
5756 ptr->slot_number = (unsigned long) f + i;
5757 ptr->slot_frag = frag_now;
5760 if (idesc->flags & IA64_OPCODE_SLOT2)
5762 if (manual_bundling && i != 2)
5763 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5764 "`%s' must be last in bundle", idesc->name);
5765 else
5766 i = 2;
5768 if (idesc->flags & IA64_OPCODE_LAST)
5770 int required_slot;
5771 unsigned int required_template;
5773 /* If we need a stop bit after an M slot, our only choice is
5774 template 5 (M;;MI). If we need a stop bit after a B
5775 slot, our only choice is to place it at the end of the
5776 bundle, because the only available templates are MIB,
5777 MBB, BBB, MMB, and MFB. We don't handle anything other
5778 than M and B slots because these are the only kind of
5779 instructions that can have the IA64_OPCODE_LAST bit set. */
5780 required_template = template;
5781 switch (idesc->type)
5783 case IA64_TYPE_M:
5784 required_slot = 0;
5785 required_template = 5;
5786 break;
5788 case IA64_TYPE_B:
5789 required_slot = 2;
5790 break;
5792 default:
5793 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5794 "Internal error: don't know how to force %s to end"
5795 "of instruction group", idesc->name);
5796 required_slot = i;
5797 break;
5799 if (manual_bundling && i != required_slot)
5800 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5801 "`%s' must be last in instruction group",
5802 idesc->name);
5803 if (required_slot < i)
5804 /* Can't fit this instruction. */
5805 break;
5807 i = required_slot;
5808 if (required_template != template)
5810 /* If we switch the template, we need to reset the NOPs
5811 after slot i. The slot-types of the instructions ahead
5812 of i never change, so we don't need to worry about
5813 changing NOPs in front of this slot. */
5814 for (j = i; j < 3; ++j)
5815 insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]];
5817 template = required_template;
5819 if (curr != first && md.slot[curr].label_fixups)
5821 if (manual_bundling_on)
5822 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5823 "Label must be first in a bundle");
5824 /* This insn must go into the first slot of a bundle. */
5825 break;
5828 manual_bundling_on = md.slot[curr].manual_bundling_on;
5829 manual_bundling_off = md.slot[curr].manual_bundling_off;
5831 if (manual_bundling_on)
5833 if (curr == first)
5834 manual_bundling = 1;
5835 else
5836 break; /* need to start a new bundle */
5839 if (end_of_insn_group && md.num_slots_in_use >= 1)
5841 /* We need an instruction group boundary in the middle of a
5842 bundle. See if we can switch to an other template with
5843 an appropriate boundary. */
5845 orig_template = template;
5846 if (i == 1 && (user_template == 4
5847 || (user_template < 0
5848 && (ia64_templ_desc[template].exec_unit[0]
5849 == IA64_UNIT_M))))
5851 template = 5;
5852 end_of_insn_group = 0;
5854 else if (i == 2 && (user_template == 0
5855 || (user_template < 0
5856 && (ia64_templ_desc[template].exec_unit[1]
5857 == IA64_UNIT_I)))
5858 /* This test makes sure we don't switch the template if
5859 the next instruction is one that needs to be first in
5860 an instruction group. Since all those instructions are
5861 in the M group, there is no way such an instruction can
5862 fit in this bundle even if we switch the template. The
5863 reason we have to check for this is that otherwise we
5864 may end up generating "MI;;I M.." which has the deadly
5865 effect that the second M instruction is no longer the
5866 first in the bundle! --davidm 99/12/16 */
5867 && (idesc->flags & IA64_OPCODE_FIRST) == 0)
5869 template = 1;
5870 end_of_insn_group = 0;
5872 else if (curr != first)
5873 /* can't fit this insn */
5874 break;
5876 if (template != orig_template)
5877 /* if we switch the template, we need to reset the NOPs
5878 after slot i. The slot-types of the instructions ahead
5879 of i never change, so we don't need to worry about
5880 changing NOPs in front of this slot. */
5881 for (j = i; j < 3; ++j)
5882 insn[j] = nop[ia64_templ_desc[template].exec_unit[j]];
5884 required_unit = ia64_templ_desc[template].exec_unit[i];
5886 /* resolve dynamic opcodes such as "break" and "nop": */
5887 if (idesc->type == IA64_TYPE_DYN)
5889 if ((strcmp (idesc->name, "nop") == 0)
5890 || (strcmp (idesc->name, "break") == 0))
5891 insn_unit = required_unit;
5892 else if (strcmp (idesc->name, "chk.s") == 0)
5894 insn_unit = IA64_UNIT_M;
5895 if (required_unit == IA64_UNIT_I)
5896 insn_unit = IA64_UNIT_I;
5898 else
5899 as_fatal ("emit_one_bundle: unexpected dynamic op");
5901 sprintf (mnemonic, "%s.%c", idesc->name, "?imbf??"[insn_unit]);
5902 ia64_free_opcode (idesc);
5903 md.slot[curr].idesc = idesc = ia64_find_opcode (mnemonic);
5904 #if 0
5905 know (!idesc->next); /* no resolved dynamic ops have collisions */
5906 #endif
5908 else
5910 insn_type = idesc->type;
5911 insn_unit = IA64_UNIT_NIL;
5912 switch (insn_type)
5914 case IA64_TYPE_A:
5915 if (required_unit == IA64_UNIT_I || required_unit == IA64_UNIT_M)
5916 insn_unit = required_unit;
5917 break;
5918 case IA64_TYPE_X: insn_unit = IA64_UNIT_L; break;
5919 case IA64_TYPE_I: insn_unit = IA64_UNIT_I; break;
5920 case IA64_TYPE_M: insn_unit = IA64_UNIT_M; break;
5921 case IA64_TYPE_B: insn_unit = IA64_UNIT_B; break;
5922 case IA64_TYPE_F: insn_unit = IA64_UNIT_F; break;
5923 default: break;
5927 if (insn_unit != required_unit)
5929 if (required_unit == IA64_UNIT_L
5930 && insn_unit == IA64_UNIT_I
5931 && !(idesc->flags & IA64_OPCODE_X_IN_MLX))
5933 /* we got ourselves an MLX template but the current
5934 instruction isn't an X-unit, or an I-unit instruction
5935 that can go into the X slot of an MLX template. Duh. */
5936 if (md.num_slots_in_use >= NUM_SLOTS)
5938 as_bad_where (md.slot[curr].src_file,
5939 md.slot[curr].src_line,
5940 "`%s' can't go in X slot of "
5941 "MLX template", idesc->name);
5942 /* drop this insn so we don't livelock: */
5943 --md.num_slots_in_use;
5945 break;
5947 continue; /* try next slot */
5951 bfd_vma addr;
5953 addr = frag_now->fr_address + frag_now_fix () - 16 + i;
5954 dwarf2_gen_line_info (addr, &md.slot[curr].debug_line);
5957 if (errata_nop_necessary_p (md.slot + curr, insn_unit))
5958 as_warn (_("Additional NOP may be necessary to workaround Itanium processor A/B step errata"));
5960 build_insn (md.slot + curr, insn + i);
5962 /* Set slot counts for non prologue/body unwind records. */
5963 for (ptr = md.slot[curr].unwind_record; ptr; ptr = ptr->next)
5964 if (ptr->r.type != prologue && ptr->r.type != prologue_gr
5965 && ptr->r.type != body)
5967 ptr->slot_number = (unsigned long) f + i;
5968 ptr->slot_frag = frag_now;
5970 md.slot[curr].unwind_record = NULL;
5972 if (required_unit == IA64_UNIT_L)
5974 know (i == 1);
5975 /* skip one slot for long/X-unit instructions */
5976 ++i;
5978 --md.num_slots_in_use;
5980 /* now is a good time to fix up the labels for this insn: */
5981 for (lfix = md.slot[curr].label_fixups; lfix; lfix = lfix->next)
5983 S_SET_VALUE (lfix->sym, frag_now_fix () - 16);
5984 symbol_set_frag (lfix->sym, frag_now);
5986 /* and fix up the tags also. */
5987 for (lfix = md.slot[curr].tag_fixups; lfix; lfix = lfix->next)
5989 S_SET_VALUE (lfix->sym, frag_now_fix () - 16 + i);
5990 symbol_set_frag (lfix->sym, frag_now);
5993 for (j = 0; j < md.slot[curr].num_fixups; ++j)
5995 ifix = md.slot[curr].fixup + j;
5996 fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 8,
5997 &ifix->expr, ifix->is_pcrel, ifix->code);
5998 fix->tc_fix_data.opnd = ifix->opnd;
5999 fix->fx_plt = (fix->fx_r_type == BFD_RELOC_IA64_PLTOFF22);
6000 fix->fx_file = md.slot[curr].src_file;
6001 fix->fx_line = md.slot[curr].src_line;
6004 end_of_insn_group = md.slot[curr].end_of_insn_group;
6006 if (end_of_insn_group)
6008 md.group_idx = (md.group_idx + 1) % 3;
6009 memset (md.last_groups + md.group_idx, 0, sizeof md.last_groups[0]);
6012 /* clear slot: */
6013 ia64_free_opcode (md.slot[curr].idesc);
6014 memset (md.slot + curr, 0, sizeof (md.slot[curr]));
6015 md.slot[curr].user_template = -1;
6017 if (manual_bundling_off)
6019 manual_bundling = 0;
6020 break;
6022 curr = (curr + 1) % NUM_SLOTS;
6023 idesc = md.slot[curr].idesc;
6025 if (manual_bundling)
6027 if (md.num_slots_in_use > 0)
6028 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6029 "`%s' does not fit into %s template",
6030 idesc->name, ia64_templ_desc[template].name);
6031 else
6032 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6033 "Missing '}' at end of file");
6035 know (md.num_slots_in_use < NUM_SLOTS);
6037 t0 = end_of_insn_group | (template << 1) | (insn[0] << 5) | (insn[1] << 46);
6038 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
6040 number_to_chars_littleendian (f + 0, t0, 8);
6041 number_to_chars_littleendian (f + 8, t1, 8);
6043 unwind.next_slot_number = (unsigned long) f + 16;
6044 unwind.next_slot_frag = frag_now;
6048 md_parse_option (c, arg)
6049 int c;
6050 char *arg;
6052 switch (c)
6054 /* Switches from the Intel assembler. */
6055 case 'm':
6056 if (strcmp (arg, "ilp64") == 0
6057 || strcmp (arg, "lp64") == 0
6058 || strcmp (arg, "p64") == 0)
6060 md.flags |= EF_IA_64_ABI64;
6062 else if (strcmp (arg, "ilp32") == 0)
6064 md.flags &= ~EF_IA_64_ABI64;
6066 else if (strcmp (arg, "le") == 0)
6068 md.flags &= ~EF_IA_64_BE;
6070 else if (strcmp (arg, "be") == 0)
6072 md.flags |= EF_IA_64_BE;
6074 else
6075 return 0;
6076 break;
6078 case 'N':
6079 if (strcmp (arg, "so") == 0)
6081 /* Suppress signon message. */
6083 else if (strcmp (arg, "pi") == 0)
6085 /* Reject privileged instructions. FIXME */
6087 else if (strcmp (arg, "us") == 0)
6089 /* Allow union of signed and unsigned range. FIXME */
6091 else if (strcmp (arg, "close_fcalls") == 0)
6093 /* Do not resolve global function calls. */
6095 else
6096 return 0;
6097 break;
6099 case 'C':
6100 /* temp[="prefix"] Insert temporary labels into the object file
6101 symbol table prefixed by "prefix".
6102 Default prefix is ":temp:".
6104 break;
6106 case 'a':
6107 /* indirect=<tgt> Assume unannotated indirect branches behavior
6108 according to <tgt> --
6109 exit: branch out from the current context (default)
6110 labels: all labels in context may be branch targets
6112 if (strncmp (arg, "indirect=", 9) != 0)
6113 return 0;
6114 break;
6116 case 'x':
6117 /* -X conflicts with an ignored option, use -x instead */
6118 md.detect_dv = 1;
6119 if (!arg || strcmp (arg, "explicit") == 0)
6121 /* set default mode to explicit */
6122 md.default_explicit_mode = 1;
6123 break;
6125 else if (strcmp (arg, "auto") == 0)
6127 md.default_explicit_mode = 0;
6129 else if (strcmp (arg, "debug") == 0)
6131 md.debug_dv = 1;
6133 else if (strcmp (arg, "debugx") == 0)
6135 md.default_explicit_mode = 1;
6136 md.debug_dv = 1;
6138 else
6140 as_bad (_("Unrecognized option '-x%s'"), arg);
6142 break;
6144 case 'S':
6145 /* nops Print nops statistics. */
6146 break;
6148 /* GNU specific switches for gcc. */
6149 case OPTION_MCONSTANT_GP:
6150 md.flags |= EF_IA_64_CONS_GP;
6151 break;
6153 case OPTION_MAUTO_PIC:
6154 md.flags |= EF_IA_64_NOFUNCDESC_CONS_GP;
6155 break;
6157 default:
6158 return 0;
6161 return 1;
6164 void
6165 md_show_usage (stream)
6166 FILE *stream;
6168 fputs (_("\
6169 IA-64 options:\n\
6170 -milp32|-milp64|-mlp64|-mp64 select data model (default -mlp64)\n\
6171 -mle | -mbe select little- or big-endian byte order (default -mle)\n\
6172 -x | -xexplicit turn on dependency violation checking (default)\n\
6173 -xauto automagically remove dependency violations\n\
6174 -xdebug debug dependency violation checker\n"),
6175 stream);
6178 /* Return true if TYPE fits in TEMPL at SLOT. */
6180 static int
6181 match (int templ, int type, int slot)
6183 enum ia64_unit unit;
6184 int result;
6186 unit = ia64_templ_desc[templ].exec_unit[slot];
6187 switch (type)
6189 case IA64_TYPE_DYN: result = 1; break; /* for nop and break */
6190 case IA64_TYPE_A:
6191 result = (unit == IA64_UNIT_I || unit == IA64_UNIT_M);
6192 break;
6193 case IA64_TYPE_X: result = (unit == IA64_UNIT_L); break;
6194 case IA64_TYPE_I: result = (unit == IA64_UNIT_I); break;
6195 case IA64_TYPE_M: result = (unit == IA64_UNIT_M); break;
6196 case IA64_TYPE_B: result = (unit == IA64_UNIT_B); break;
6197 case IA64_TYPE_F: result = (unit == IA64_UNIT_F); break;
6198 default: result = 0; break;
6200 return result;
6203 /* Add a bit of extra goodness if a nop of type F or B would fit
6204 in TEMPL at SLOT. */
6206 static inline int
6207 extra_goodness (int templ, int slot)
6209 if (slot == 1 && match (templ, IA64_TYPE_F, slot))
6210 return 2;
6211 if (slot == 2 && match (templ, IA64_TYPE_B, slot))
6212 return 1;
6213 return 0;
6216 /* This function is called once, at assembler startup time. It sets
6217 up all the tables, etc. that the MD part of the assembler will need
6218 that can be determined before arguments are parsed. */
6219 void
6220 md_begin ()
6222 int i, j, k, t, total, ar_base, cr_base, goodness, best, regnum, ok;
6223 const char *err;
6224 char name[8];
6226 md.auto_align = 1;
6227 md.explicit_mode = md.default_explicit_mode;
6229 bfd_set_section_alignment (stdoutput, text_section, 4);
6231 target_big_endian = TARGET_BYTES_BIG_ENDIAN;
6232 pseudo_func[FUNC_FPTR_RELATIVE].u.sym =
6233 symbol_new (".<fptr>", undefined_section, FUNC_FPTR_RELATIVE,
6234 &zero_address_frag);
6236 pseudo_func[FUNC_GP_RELATIVE].u.sym =
6237 symbol_new (".<gprel>", undefined_section, FUNC_GP_RELATIVE,
6238 &zero_address_frag);
6240 pseudo_func[FUNC_LT_RELATIVE].u.sym =
6241 symbol_new (".<ltoff>", undefined_section, FUNC_LT_RELATIVE,
6242 &zero_address_frag);
6244 pseudo_func[FUNC_PC_RELATIVE].u.sym =
6245 symbol_new (".<pcrel>", undefined_section, FUNC_PC_RELATIVE,
6246 &zero_address_frag);
6248 pseudo_func[FUNC_PLT_RELATIVE].u.sym =
6249 symbol_new (".<pltoff>", undefined_section, FUNC_PLT_RELATIVE,
6250 &zero_address_frag);
6252 pseudo_func[FUNC_SEC_RELATIVE].u.sym =
6253 symbol_new (".<secrel>", undefined_section, FUNC_SEC_RELATIVE,
6254 &zero_address_frag);
6256 pseudo_func[FUNC_SEG_RELATIVE].u.sym =
6257 symbol_new (".<segrel>", undefined_section, FUNC_SEG_RELATIVE,
6258 &zero_address_frag);
6260 pseudo_func[FUNC_LTV_RELATIVE].u.sym =
6261 symbol_new (".<ltv>", undefined_section, FUNC_LTV_RELATIVE,
6262 &zero_address_frag);
6264 pseudo_func[FUNC_LT_FPTR_RELATIVE].u.sym =
6265 symbol_new (".<ltoff.fptr>", undefined_section, FUNC_LT_FPTR_RELATIVE,
6266 &zero_address_frag);
6268 /* Compute the table of best templates. We compute goodness as a
6269 base 4 value, in which each match counts for 3, each F counts
6270 for 2, each B counts for 1. This should maximize the number of
6271 F and B nops in the chosen bundles, which is good because these
6272 pipelines are least likely to be overcommitted. */
6273 for (i = 0; i < IA64_NUM_TYPES; ++i)
6274 for (j = 0; j < IA64_NUM_TYPES; ++j)
6275 for (k = 0; k < IA64_NUM_TYPES; ++k)
6277 best = 0;
6278 for (t = 0; t < NELEMS (ia64_templ_desc); ++t)
6280 goodness = 0;
6281 if (match (t, i, 0))
6283 if (match (t, j, 1))
6285 if (match (t, k, 2))
6286 goodness = 3 + 3 + 3;
6287 else
6288 goodness = 3 + 3 + extra_goodness (t, 2);
6290 else if (match (t, j, 2))
6291 goodness = 3 + 3 + extra_goodness (t, 1);
6292 else
6294 goodness = 3;
6295 goodness += extra_goodness (t, 1);
6296 goodness += extra_goodness (t, 2);
6299 else if (match (t, i, 1))
6301 if (match (t, j, 2))
6302 goodness = 3 + 3;
6303 else
6304 goodness = 3 + extra_goodness (t, 2);
6306 else if (match (t, i, 2))
6307 goodness = 3 + extra_goodness (t, 1);
6309 if (goodness > best)
6311 best = goodness;
6312 best_template[i][j][k] = t;
6317 for (i = 0; i < NUM_SLOTS; ++i)
6318 md.slot[i].user_template = -1;
6320 md.pseudo_hash = hash_new ();
6321 for (i = 0; i < NELEMS (pseudo_opcode); ++i)
6323 err = hash_insert (md.pseudo_hash, pseudo_opcode[i].name,
6324 (void *) (pseudo_opcode + i));
6325 if (err)
6326 as_fatal ("ia64.md_begin: can't hash `%s': %s",
6327 pseudo_opcode[i].name, err);
6330 md.reg_hash = hash_new ();
6331 md.dynreg_hash = hash_new ();
6332 md.const_hash = hash_new ();
6333 md.entry_hash = hash_new ();
6335 /* general registers: */
6337 total = 128;
6338 for (i = 0; i < total; ++i)
6340 sprintf (name, "r%d", i - REG_GR);
6341 md.regsym[i] = declare_register (name, i);
6344 /* floating point registers: */
6345 total += 128;
6346 for (; i < total; ++i)
6348 sprintf (name, "f%d", i - REG_FR);
6349 md.regsym[i] = declare_register (name, i);
6352 /* application registers: */
6353 total += 128;
6354 ar_base = i;
6355 for (; i < total; ++i)
6357 sprintf (name, "ar%d", i - REG_AR);
6358 md.regsym[i] = declare_register (name, i);
6361 /* control registers: */
6362 total += 128;
6363 cr_base = i;
6364 for (; i < total; ++i)
6366 sprintf (name, "cr%d", i - REG_CR);
6367 md.regsym[i] = declare_register (name, i);
6370 /* predicate registers: */
6371 total += 64;
6372 for (; i < total; ++i)
6374 sprintf (name, "p%d", i - REG_P);
6375 md.regsym[i] = declare_register (name, i);
6378 /* branch registers: */
6379 total += 8;
6380 for (; i < total; ++i)
6382 sprintf (name, "b%d", i - REG_BR);
6383 md.regsym[i] = declare_register (name, i);
6386 md.regsym[REG_IP] = declare_register ("ip", REG_IP);
6387 md.regsym[REG_CFM] = declare_register ("cfm", REG_CFM);
6388 md.regsym[REG_PR] = declare_register ("pr", REG_PR);
6389 md.regsym[REG_PR_ROT] = declare_register ("pr.rot", REG_PR_ROT);
6390 md.regsym[REG_PSR] = declare_register ("psr", REG_PSR);
6391 md.regsym[REG_PSR_L] = declare_register ("psr.l", REG_PSR_L);
6392 md.regsym[REG_PSR_UM] = declare_register ("psr.um", REG_PSR_UM);
6394 for (i = 0; i < NELEMS (indirect_reg); ++i)
6396 regnum = indirect_reg[i].regnum;
6397 md.regsym[regnum] = declare_register (indirect_reg[i].name, regnum);
6400 /* define synonyms for application registers: */
6401 for (i = REG_AR; i < REG_AR + NELEMS (ar); ++i)
6402 md.regsym[i] = declare_register (ar[i - REG_AR].name,
6403 REG_AR + ar[i - REG_AR].regnum);
6405 /* define synonyms for control registers: */
6406 for (i = REG_CR; i < REG_CR + NELEMS (cr); ++i)
6407 md.regsym[i] = declare_register (cr[i - REG_CR].name,
6408 REG_CR + cr[i - REG_CR].regnum);
6410 declare_register ("gp", REG_GR + 1);
6411 declare_register ("sp", REG_GR + 12);
6412 declare_register ("rp", REG_BR + 0);
6414 /* pseudo-registers used to specify unwind info: */
6415 declare_register ("psp", REG_PSP);
6417 declare_register_set ("ret", 4, REG_GR + 8);
6418 declare_register_set ("farg", 8, REG_FR + 8);
6419 declare_register_set ("fret", 8, REG_FR + 8);
6421 for (i = 0; i < NELEMS (const_bits); ++i)
6423 err = hash_insert (md.const_hash, const_bits[i].name,
6424 (PTR) (const_bits + i));
6425 if (err)
6426 as_fatal ("Inserting \"%s\" into constant hash table failed: %s",
6427 name, err);
6430 /* Set the architecture and machine depending on defaults and command line
6431 options. */
6432 if (md.flags & EF_IA_64_ABI64)
6433 ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf64);
6434 else
6435 ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf32);
6437 if (! ok)
6438 as_warn (_("Could not set architecture and machine"));
6440 md.mem_offset.hint = 0;
6441 md.path = 0;
6442 md.maxpaths = 0;
6443 md.entry_labels = NULL;
6446 /* Set the elf type to 64 bit ABI by default. Cannot do this in md_begin
6447 because that is called after md_parse_option which is where we do the
6448 dynamic changing of md.flags based on -mlp64 or -milp32. Also, set the
6449 default endianness. */
6451 void
6452 ia64_init (argc, argv)
6453 int argc ATTRIBUTE_UNUSED;
6454 char **argv ATTRIBUTE_UNUSED;
6456 md.flags = EF_IA_64_ABI64;
6457 if (TARGET_BYTES_BIG_ENDIAN)
6458 md.flags |= EF_IA_64_BE;
6461 /* Return a string for the target object file format. */
6463 const char *
6464 ia64_target_format ()
6466 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
6468 if (md.flags & EF_IA_64_BE)
6470 if (md.flags & EF_IA_64_ABI64)
6471 return "elf64-ia64-big";
6472 else
6473 return "elf32-ia64-big";
6475 else
6477 if (md.flags & EF_IA_64_ABI64)
6478 return "elf64-ia64-little";
6479 else
6480 return "elf32-ia64-little";
6483 else
6484 return "unknown-format";
6487 void
6488 ia64_end_of_source ()
6490 /* terminate insn group upon reaching end of file: */
6491 insn_group_break (1, 0, 0);
6493 /* emits slots we haven't written yet: */
6494 ia64_flush_insns ();
6496 bfd_set_private_flags (stdoutput, md.flags);
6498 md.mem_offset.hint = 0;
6501 void
6502 ia64_start_line ()
6504 if (md.qp.X_op == O_register)
6505 as_bad ("qualifying predicate not followed by instruction");
6506 md.qp.X_op = O_absent;
6508 if (ignore_input ())
6509 return;
6511 if (input_line_pointer[0] == ';' && input_line_pointer[-1] == ';')
6513 if (md.detect_dv && !md.explicit_mode)
6514 as_warn (_("Explicit stops are ignored in auto mode"));
6515 else
6516 insn_group_break (1, 0, 0);
6520 /* This is a hook for ia64_frob_label, so that it can distinguish tags from
6521 labels. */
6522 static int defining_tag = 0;
6525 ia64_unrecognized_line (ch)
6526 int ch;
6528 switch (ch)
6530 case '(':
6531 expression (&md.qp);
6532 if (*input_line_pointer++ != ')')
6534 as_bad ("Expected ')'");
6535 return 0;
6537 if (md.qp.X_op != O_register)
6539 as_bad ("Qualifying predicate expected");
6540 return 0;
6542 if (md.qp.X_add_number < REG_P || md.qp.X_add_number >= REG_P + 64)
6544 as_bad ("Predicate register expected");
6545 return 0;
6547 return 1;
6549 case '{':
6550 if (md.manual_bundling)
6551 as_warn ("Found '{' when manual bundling is already turned on");
6552 else
6553 CURR_SLOT.manual_bundling_on = 1;
6554 md.manual_bundling = 1;
6556 /* Bundling is only acceptable in explicit mode
6557 or when in default automatic mode. */
6558 if (md.detect_dv && !md.explicit_mode)
6560 if (!md.mode_explicitly_set
6561 && !md.default_explicit_mode)
6562 dot_dv_mode ('E');
6563 else
6564 as_warn (_("Found '{' after explicit switch to automatic mode"));
6566 return 1;
6568 case '}':
6569 if (!md.manual_bundling)
6570 as_warn ("Found '}' when manual bundling is off");
6571 else
6572 PREV_SLOT.manual_bundling_off = 1;
6573 md.manual_bundling = 0;
6575 /* switch back to automatic mode, if applicable */
6576 if (md.detect_dv
6577 && md.explicit_mode
6578 && !md.mode_explicitly_set
6579 && !md.default_explicit_mode)
6580 dot_dv_mode ('A');
6582 /* Allow '{' to follow on the same line. We also allow ";;", but that
6583 happens automatically because ';' is an end of line marker. */
6584 SKIP_WHITESPACE ();
6585 if (input_line_pointer[0] == '{')
6587 input_line_pointer++;
6588 return ia64_unrecognized_line ('{');
6591 demand_empty_rest_of_line ();
6592 return 1;
6594 case '[':
6596 char *s;
6597 char c;
6598 symbolS *tag;
6600 if (md.qp.X_op == O_register)
6602 as_bad ("Tag must come before qualifying predicate.");
6603 return 0;
6605 s = input_line_pointer;
6606 c = get_symbol_end ();
6607 if (c != ':')
6609 /* Put ':' back for error messages' sake. */
6610 *input_line_pointer++ = ':';
6611 as_bad ("Expected ':'");
6612 return 0;
6614 defining_tag = 1;
6615 tag = colon (s);
6616 defining_tag = 0;
6617 /* Put ':' back for error messages' sake. */
6618 *input_line_pointer++ = ':';
6619 if (*input_line_pointer++ != ']')
6621 as_bad ("Expected ']'");
6622 return 0;
6624 if (! tag)
6626 as_bad ("Tag name expected");
6627 return 0;
6629 return 1;
6632 default:
6633 break;
6636 /* Not a valid line. */
6637 return 0;
6640 void
6641 ia64_frob_label (sym)
6642 struct symbol *sym;
6644 struct label_fix *fix;
6646 /* Tags need special handling since they are not bundle breaks like
6647 labels. */
6648 if (defining_tag)
6650 fix = obstack_alloc (&notes, sizeof (*fix));
6651 fix->sym = sym;
6652 fix->next = CURR_SLOT.tag_fixups;
6653 CURR_SLOT.tag_fixups = fix;
6655 return;
6658 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
6660 md.last_text_seg = now_seg;
6661 fix = obstack_alloc (&notes, sizeof (*fix));
6662 fix->sym = sym;
6663 fix->next = CURR_SLOT.label_fixups;
6664 CURR_SLOT.label_fixups = fix;
6666 /* Keep track of how many code entry points we've seen. */
6667 if (md.path == md.maxpaths)
6669 md.maxpaths += 20;
6670 md.entry_labels = (const char **)
6671 xrealloc ((void *) md.entry_labels,
6672 md.maxpaths * sizeof (char *));
6674 md.entry_labels[md.path++] = S_GET_NAME (sym);
6678 void
6679 ia64_flush_pending_output ()
6681 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
6683 /* ??? This causes many unnecessary stop bits to be emitted.
6684 Unfortunately, it isn't clear if it is safe to remove this. */
6685 insn_group_break (1, 0, 0);
6686 ia64_flush_insns ();
6690 /* Do ia64-specific expression optimization. All that's done here is
6691 to transform index expressions that are either due to the indexing
6692 of rotating registers or due to the indexing of indirect register
6693 sets. */
6695 ia64_optimize_expr (l, op, r)
6696 expressionS *l;
6697 operatorT op;
6698 expressionS *r;
6700 unsigned num_regs;
6702 if (op == O_index)
6704 if (l->X_op == O_register && r->X_op == O_constant)
6706 num_regs = (l->X_add_number >> 16);
6707 if ((unsigned) r->X_add_number >= num_regs)
6709 if (!num_regs)
6710 as_bad ("No current frame");
6711 else
6712 as_bad ("Index out of range 0..%u", num_regs - 1);
6713 r->X_add_number = 0;
6715 l->X_add_number = (l->X_add_number & 0xffff) + r->X_add_number;
6716 return 1;
6718 else if (l->X_op == O_register && r->X_op == O_register)
6720 if (l->X_add_number < IND_CPUID || l->X_add_number > IND_RR
6721 || l->X_add_number == IND_MEM)
6723 as_bad ("Indirect register set name expected");
6724 l->X_add_number = IND_CPUID;
6726 l->X_op = O_index;
6727 l->X_op_symbol = md.regsym[l->X_add_number];
6728 l->X_add_number = r->X_add_number;
6729 return 1;
6732 return 0;
6736 ia64_parse_name (name, e)
6737 char *name;
6738 expressionS *e;
6740 struct const_desc *cdesc;
6741 struct dynreg *dr = 0;
6742 unsigned int regnum;
6743 struct symbol *sym;
6744 char *end;
6746 /* first see if NAME is a known register name: */
6747 sym = hash_find (md.reg_hash, name);
6748 if (sym)
6750 e->X_op = O_register;
6751 e->X_add_number = S_GET_VALUE (sym);
6752 return 1;
6755 cdesc = hash_find (md.const_hash, name);
6756 if (cdesc)
6758 e->X_op = O_constant;
6759 e->X_add_number = cdesc->value;
6760 return 1;
6763 /* check for inN, locN, or outN: */
6764 switch (name[0])
6766 case 'i':
6767 if (name[1] == 'n' && isdigit (name[2]))
6769 dr = &md.in;
6770 name += 2;
6772 break;
6774 case 'l':
6775 if (name[1] == 'o' && name[2] == 'c' && isdigit (name[3]))
6777 dr = &md.loc;
6778 name += 3;
6780 break;
6782 case 'o':
6783 if (name[1] == 'u' && name[2] == 't' && isdigit (name[3]))
6785 dr = &md.out;
6786 name += 3;
6788 break;
6790 default:
6791 break;
6794 if (dr)
6796 /* The name is inN, locN, or outN; parse the register number. */
6797 regnum = strtoul (name, &end, 10);
6798 if (end > name && *end == '\0')
6800 if ((unsigned) regnum >= dr->num_regs)
6802 if (!dr->num_regs)
6803 as_bad ("No current frame");
6804 else
6805 as_bad ("Register number out of range 0..%u",
6806 dr->num_regs - 1);
6807 regnum = 0;
6809 e->X_op = O_register;
6810 e->X_add_number = dr->base + regnum;
6811 return 1;
6815 if ((dr = hash_find (md.dynreg_hash, name)))
6817 /* We've got ourselves the name of a rotating register set.
6818 Store the base register number in the low 16 bits of
6819 X_add_number and the size of the register set in the top 16
6820 bits. */
6821 e->X_op = O_register;
6822 e->X_add_number = dr->base | (dr->num_regs << 16);
6823 return 1;
6825 return 0;
6828 /* Remove the '#' suffix that indicates a symbol as opposed to a register. */
6830 char *
6831 ia64_canonicalize_symbol_name (name)
6832 char *name;
6834 size_t len = strlen (name);
6835 if (len > 1 && name[len - 1] == '#')
6836 name[len - 1] = '\0';
6837 return name;
6840 static int
6841 is_conditional_branch (idesc)
6842 struct ia64_opcode *idesc;
6844 return (strncmp (idesc->name, "br", 2) == 0
6845 && (strcmp (idesc->name, "br") == 0
6846 || strncmp (idesc->name, "br.cond", 7) == 0
6847 || strncmp (idesc->name, "br.call", 7) == 0
6848 || strncmp (idesc->name, "br.ret", 6) == 0
6849 || strcmp (idesc->name, "brl") == 0
6850 || strncmp (idesc->name, "brl.cond", 7) == 0
6851 || strncmp (idesc->name, "brl.call", 7) == 0
6852 || strncmp (idesc->name, "brl.ret", 6) == 0));
6855 /* Return whether the given opcode is a taken branch. If there's any doubt,
6856 returns zero. */
6858 static int
6859 is_taken_branch (idesc)
6860 struct ia64_opcode *idesc;
6862 return ((is_conditional_branch (idesc) && CURR_SLOT.qp_regno == 0)
6863 || strncmp (idesc->name, "br.ia", 5) == 0);
6866 /* Return whether the given opcode is an interruption or rfi. If there's any
6867 doubt, returns zero. */
6869 static int
6870 is_interruption_or_rfi (idesc)
6871 struct ia64_opcode *idesc;
6873 if (strcmp (idesc->name, "rfi") == 0)
6874 return 1;
6875 return 0;
6878 /* Returns the index of the given dependency in the opcode's list of chks, or
6879 -1 if there is no dependency. */
6881 static int
6882 depends_on (depind, idesc)
6883 int depind;
6884 struct ia64_opcode *idesc;
6886 int i;
6887 const struct ia64_opcode_dependency *dep = idesc->dependencies;
6888 for (i = 0; i < dep->nchks; i++)
6890 if (depind == DEP (dep->chks[i]))
6891 return i;
6893 return -1;
6896 /* Determine a set of specific resources used for a particular resource
6897 class. Returns the number of specific resources identified For those
6898 cases which are not determinable statically, the resource returned is
6899 marked nonspecific.
6901 Meanings of value in 'NOTE':
6902 1) only read/write when the register number is explicitly encoded in the
6903 insn.
6904 2) only read CFM when accessing a rotating GR, FR, or PR. mov pr only
6905 accesses CFM when qualifying predicate is in the rotating region.
6906 3) general register value is used to specify an indirect register; not
6907 determinable statically.
6908 4) only read the given resource when bits 7:0 of the indirect index
6909 register value does not match the register number of the resource; not
6910 determinable statically.
6911 5) all rules are implementation specific.
6912 6) only when both the index specified by the reader and the index specified
6913 by the writer have the same value in bits 63:61; not determinable
6914 statically.
6915 7) only access the specified resource when the corresponding mask bit is
6917 8) PSR.dfh is only read when these insns reference FR32-127. PSR.dfl is
6918 only read when these insns reference FR2-31
6919 9) PSR.mfl is only written when these insns write FR2-31. PSR.mfh is only
6920 written when these insns write FR32-127
6921 10) The PSR.bn bit is only accessed when one of GR16-31 is specified in the
6922 instruction
6923 11) The target predicates are written independently of PR[qp], but source
6924 registers are only read if PR[qp] is true. Since the state of PR[qp]
6925 cannot statically be determined, all source registers are marked used.
6926 12) This insn only reads the specified predicate register when that
6927 register is the PR[qp].
6928 13) This reference to ld-c only applies to teh GR whose value is loaded
6929 with data returned from memory, not the post-incremented address register.
6930 14) The RSE resource includes the implementation-specific RSE internal
6931 state resources. At least one (and possibly more) of these resources are
6932 read by each instruction listed in IC:rse-readers. At least one (and
6933 possibly more) of these resources are written by each insn listed in
6934 IC:rse-writers.
6935 15+16) Represents reserved instructions, which the assembler does not
6936 generate.
6938 Memory resources (i.e. locations in memory) are *not* marked or tracked by
6939 this code; there are no dependency violations based on memory access.
6942 #define MAX_SPECS 256
6943 #define DV_CHK 1
6944 #define DV_REG 0
6946 static int
6947 specify_resource (dep, idesc, type, specs, note, path)
6948 const struct ia64_dependency *dep;
6949 struct ia64_opcode *idesc;
6950 int type; /* is this a DV chk or a DV reg? */
6951 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
6952 int note; /* resource note for this insn's usage */
6953 int path; /* which execution path to examine */
6955 int count = 0;
6956 int i;
6957 int rsrc_write = 0;
6958 struct rsrc tmpl;
6960 if (dep->mode == IA64_DV_WAW
6961 || (dep->mode == IA64_DV_RAW && type == DV_REG)
6962 || (dep->mode == IA64_DV_WAR && type == DV_CHK))
6963 rsrc_write = 1;
6965 /* template for any resources we identify */
6966 tmpl.dependency = dep;
6967 tmpl.note = note;
6968 tmpl.insn_srlz = tmpl.data_srlz = 0;
6969 tmpl.qp_regno = CURR_SLOT.qp_regno;
6970 tmpl.link_to_qp_branch = 1;
6971 tmpl.mem_offset.hint = 0;
6972 tmpl.specific = 1;
6973 tmpl.index = 0;
6974 tmpl.cmp_type = CMP_NONE;
6976 #define UNHANDLED \
6977 as_warn (_("Unhandled dependency %s for %s (%s), note %d"), \
6978 dep->name, idesc->name, (rsrc_write?"write":"read"), note)
6979 #define KNOWN(REG) (gr_values[REG].known && gr_values[REG].path >= path)
6981 /* we don't need to track these */
6982 if (dep->semantics == IA64_DVS_NONE)
6983 return 0;
6985 switch (dep->specifier)
6987 case IA64_RS_AR_K:
6988 if (note == 1)
6990 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
6992 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
6993 if (regno >= 0 && regno <= 7)
6995 specs[count] = tmpl;
6996 specs[count++].index = regno;
7000 else if (note == 0)
7002 for (i = 0; i < 8; i++)
7004 specs[count] = tmpl;
7005 specs[count++].index = i;
7008 else
7010 UNHANDLED;
7012 break;
7014 case IA64_RS_AR_UNAT:
7015 /* This is a mov =AR or mov AR= instruction. */
7016 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
7018 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7019 if (regno == AR_UNAT)
7021 specs[count++] = tmpl;
7024 else
7026 /* This is a spill/fill, or other instruction that modifies the
7027 unat register. */
7029 /* Unless we can determine the specific bits used, mark the whole
7030 thing; bits 8:3 of the memory address indicate the bit used in
7031 UNAT. The .mem.offset hint may be used to eliminate a small
7032 subset of conflicts. */
7033 specs[count] = tmpl;
7034 if (md.mem_offset.hint)
7036 if (md.debug_dv)
7037 fprintf (stderr, " Using hint for spill/fill\n");
7038 /* The index isn't actually used, just set it to something
7039 approximating the bit index. */
7040 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
7041 specs[count].mem_offset.hint = 1;
7042 specs[count].mem_offset.offset = md.mem_offset.offset;
7043 specs[count++].mem_offset.base = md.mem_offset.base;
7045 else
7047 specs[count++].specific = 0;
7050 break;
7052 case IA64_RS_AR:
7053 if (note == 1)
7055 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
7057 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7058 if ((regno >= 8 && regno <= 15)
7059 || (regno >= 20 && regno <= 23)
7060 || (regno >= 31 && regno <= 39)
7061 || (regno >= 41 && regno <= 47)
7062 || (regno >= 67 && regno <= 111))
7064 specs[count] = tmpl;
7065 specs[count++].index = regno;
7069 else
7071 UNHANDLED;
7073 break;
7075 case IA64_RS_ARb:
7076 if (note == 1)
7078 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
7080 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7081 if ((regno >= 48 && regno <= 63)
7082 || (regno >= 112 && regno <= 127))
7084 specs[count] = tmpl;
7085 specs[count++].index = regno;
7089 else if (note == 0)
7091 for (i = 48; i < 64; i++)
7093 specs[count] = tmpl;
7094 specs[count++].index = i;
7096 for (i = 112; i < 128; i++)
7098 specs[count] = tmpl;
7099 specs[count++].index = i;
7102 else
7104 UNHANDLED;
7106 break;
7108 case IA64_RS_BR:
7109 if (note != 1)
7111 UNHANDLED;
7113 else
7115 if (rsrc_write)
7117 for (i = 0; i < idesc->num_outputs; i++)
7118 if (idesc->operands[i] == IA64_OPND_B1
7119 || idesc->operands[i] == IA64_OPND_B2)
7121 specs[count] = tmpl;
7122 specs[count++].index =
7123 CURR_SLOT.opnd[i].X_add_number - REG_BR;
7126 else
7128 for (i = idesc->num_outputs;i < NELEMS (idesc->operands); i++)
7129 if (idesc->operands[i] == IA64_OPND_B1
7130 || idesc->operands[i] == IA64_OPND_B2)
7132 specs[count] = tmpl;
7133 specs[count++].index =
7134 CURR_SLOT.opnd[i].X_add_number - REG_BR;
7138 break;
7140 case IA64_RS_CPUID: /* four or more registers */
7141 if (note == 3)
7143 if (idesc->operands[!rsrc_write] == IA64_OPND_CPUID_R3)
7145 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
7146 if (regno >= 0 && regno < NELEMS (gr_values)
7147 && KNOWN (regno))
7149 specs[count] = tmpl;
7150 specs[count++].index = gr_values[regno].value & 0xFF;
7152 else
7154 specs[count] = tmpl;
7155 specs[count++].specific = 0;
7159 else
7161 UNHANDLED;
7163 break;
7165 case IA64_RS_DBR: /* four or more registers */
7166 if (note == 3)
7168 if (idesc->operands[!rsrc_write] == IA64_OPND_DBR_R3)
7170 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
7171 if (regno >= 0 && regno < NELEMS (gr_values)
7172 && KNOWN (regno))
7174 specs[count] = tmpl;
7175 specs[count++].index = gr_values[regno].value & 0xFF;
7177 else
7179 specs[count] = tmpl;
7180 specs[count++].specific = 0;
7184 else if (note == 0 && !rsrc_write)
7186 specs[count] = tmpl;
7187 specs[count++].specific = 0;
7189 else
7191 UNHANDLED;
7193 break;
7195 case IA64_RS_IBR: /* four or more registers */
7196 if (note == 3)
7198 if (idesc->operands[!rsrc_write] == IA64_OPND_IBR_R3)
7200 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
7201 if (regno >= 0 && regno < NELEMS (gr_values)
7202 && KNOWN (regno))
7204 specs[count] = tmpl;
7205 specs[count++].index = gr_values[regno].value & 0xFF;
7207 else
7209 specs[count] = tmpl;
7210 specs[count++].specific = 0;
7214 else
7216 UNHANDLED;
7218 break;
7220 case IA64_RS_MSR:
7221 if (note == 5)
7223 /* These are implementation specific. Force all references to
7224 conflict with all other references. */
7225 specs[count] = tmpl;
7226 specs[count++].specific = 0;
7228 else
7230 UNHANDLED;
7232 break;
7234 case IA64_RS_PKR: /* 16 or more registers */
7235 if (note == 3 || note == 4)
7237 if (idesc->operands[!rsrc_write] == IA64_OPND_PKR_R3)
7239 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
7240 if (regno >= 0 && regno < NELEMS (gr_values)
7241 && KNOWN (regno))
7243 if (note == 3)
7245 specs[count] = tmpl;
7246 specs[count++].index = gr_values[regno].value & 0xFF;
7248 else
7249 for (i = 0; i < NELEMS (gr_values); i++)
7251 /* Uses all registers *except* the one in R3. */
7252 if ((unsigned)i != (gr_values[regno].value & 0xFF))
7254 specs[count] = tmpl;
7255 specs[count++].index = i;
7259 else
7261 specs[count] = tmpl;
7262 specs[count++].specific = 0;
7266 else if (note == 0)
7268 /* probe et al. */
7269 specs[count] = tmpl;
7270 specs[count++].specific = 0;
7272 break;
7274 case IA64_RS_PMC: /* four or more registers */
7275 if (note == 3)
7277 if (idesc->operands[!rsrc_write] == IA64_OPND_PMC_R3
7278 || (!rsrc_write && idesc->operands[1] == IA64_OPND_PMD_R3))
7281 int index = ((idesc->operands[1] == IA64_OPND_R3 && !rsrc_write)
7282 ? 1 : !rsrc_write);
7283 int regno = CURR_SLOT.opnd[index].X_add_number - REG_GR;
7284 if (regno >= 0 && regno < NELEMS (gr_values)
7285 && KNOWN (regno))
7287 specs[count] = tmpl;
7288 specs[count++].index = gr_values[regno].value & 0xFF;
7290 else
7292 specs[count] = tmpl;
7293 specs[count++].specific = 0;
7297 else
7299 UNHANDLED;
7301 break;
7303 case IA64_RS_PMD: /* four or more registers */
7304 if (note == 3)
7306 if (idesc->operands[!rsrc_write] == IA64_OPND_PMD_R3)
7308 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
7309 if (regno >= 0 && regno < NELEMS (gr_values)
7310 && KNOWN (regno))
7312 specs[count] = tmpl;
7313 specs[count++].index = gr_values[regno].value & 0xFF;
7315 else
7317 specs[count] = tmpl;
7318 specs[count++].specific = 0;
7322 else
7324 UNHANDLED;
7326 break;
7328 case IA64_RS_RR: /* eight registers */
7329 if (note == 6)
7331 if (idesc->operands[!rsrc_write] == IA64_OPND_RR_R3)
7333 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
7334 if (regno >= 0 && regno < NELEMS (gr_values)
7335 && KNOWN (regno))
7337 specs[count] = tmpl;
7338 specs[count++].index = (gr_values[regno].value >> 61) & 0x7;
7340 else
7342 specs[count] = tmpl;
7343 specs[count++].specific = 0;
7347 else if (note == 0 && !rsrc_write)
7349 specs[count] = tmpl;
7350 specs[count++].specific = 0;
7352 else
7354 UNHANDLED;
7356 break;
7358 case IA64_RS_CR_IRR:
7359 if (note == 0)
7361 /* handle mov-from-CR-IVR; it's a read that writes CR[IRR] */
7362 int regno = CURR_SLOT.opnd[1].X_add_number - REG_CR;
7363 if (rsrc_write
7364 && idesc->operands[1] == IA64_OPND_CR3
7365 && regno == CR_IVR)
7367 for (i = 0; i < 4; i++)
7369 specs[count] = tmpl;
7370 specs[count++].index = CR_IRR0 + i;
7374 else if (note == 1)
7376 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
7377 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
7378 && regno >= CR_IRR0
7379 && regno <= CR_IRR3)
7381 specs[count] = tmpl;
7382 specs[count++].index = regno;
7385 else
7387 UNHANDLED;
7389 break;
7391 case IA64_RS_CR_LRR:
7392 if (note != 1)
7394 UNHANDLED;
7396 else
7398 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
7399 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
7400 && (regno == CR_LRR0 || regno == CR_LRR1))
7402 specs[count] = tmpl;
7403 specs[count++].index = regno;
7406 break;
7408 case IA64_RS_CR:
7409 if (note == 1)
7411 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
7413 specs[count] = tmpl;
7414 specs[count++].index =
7415 CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
7418 else
7420 UNHANDLED;
7422 break;
7424 case IA64_RS_FR:
7425 case IA64_RS_FRb:
7426 if (note != 1)
7428 UNHANDLED;
7430 else if (rsrc_write)
7432 if (dep->specifier == IA64_RS_FRb
7433 && idesc->operands[0] == IA64_OPND_F1)
7435 specs[count] = tmpl;
7436 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_FR;
7439 else
7441 for (i = idesc->num_outputs; i < NELEMS (idesc->operands); i++)
7443 if (idesc->operands[i] == IA64_OPND_F2
7444 || idesc->operands[i] == IA64_OPND_F3
7445 || idesc->operands[i] == IA64_OPND_F4)
7447 specs[count] = tmpl;
7448 specs[count++].index =
7449 CURR_SLOT.opnd[i].X_add_number - REG_FR;
7453 break;
7455 case IA64_RS_GR:
7456 if (note == 13)
7458 /* This reference applies only to the GR whose value is loaded with
7459 data returned from memory. */
7460 specs[count] = tmpl;
7461 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_GR;
7463 else if (note == 1)
7465 if (rsrc_write)
7467 for (i = 0; i < idesc->num_outputs; i++)
7468 if (idesc->operands[i] == IA64_OPND_R1
7469 || idesc->operands[i] == IA64_OPND_R2
7470 || idesc->operands[i] == IA64_OPND_R3)
7472 specs[count] = tmpl;
7473 specs[count++].index =
7474 CURR_SLOT.opnd[i].X_add_number - REG_GR;
7476 if (idesc->flags & IA64_OPCODE_POSTINC)
7477 for (i = 0; i < NELEMS (idesc->operands); i++)
7478 if (idesc->operands[i] == IA64_OPND_MR3)
7480 specs[count] = tmpl;
7481 specs[count++].index =
7482 CURR_SLOT.opnd[i].X_add_number - REG_GR;
7485 else
7487 /* Look for anything that reads a GR. */
7488 for (i = 0; i < NELEMS (idesc->operands); i++)
7490 if (idesc->operands[i] == IA64_OPND_MR3
7491 || idesc->operands[i] == IA64_OPND_CPUID_R3
7492 || idesc->operands[i] == IA64_OPND_DBR_R3
7493 || idesc->operands[i] == IA64_OPND_IBR_R3
7494 || idesc->operands[i] == IA64_OPND_MSR_R3
7495 || idesc->operands[i] == IA64_OPND_PKR_R3
7496 || idesc->operands[i] == IA64_OPND_PMC_R3
7497 || idesc->operands[i] == IA64_OPND_PMD_R3
7498 || idesc->operands[i] == IA64_OPND_RR_R3
7499 || ((i >= idesc->num_outputs)
7500 && (idesc->operands[i] == IA64_OPND_R1
7501 || idesc->operands[i] == IA64_OPND_R2
7502 || idesc->operands[i] == IA64_OPND_R3
7503 /* addl source register. */
7504 || idesc->operands[i] == IA64_OPND_R3_2)))
7506 specs[count] = tmpl;
7507 specs[count++].index =
7508 CURR_SLOT.opnd[i].X_add_number - REG_GR;
7513 else
7515 UNHANDLED;
7517 break;
7519 /* This is the same as IA64_RS_PRr, except that the register range is
7520 from 1 - 15, and there are no rotating register reads/writes here. */
7521 case IA64_RS_PR:
7522 if (note == 0)
7524 for (i = 1; i < 16; i++)
7526 specs[count] = tmpl;
7527 specs[count++].index = i;
7530 else if (note == 7)
7532 valueT mask = 0;
7533 /* Mark only those registers indicated by the mask. */
7534 if (rsrc_write)
7536 mask = CURR_SLOT.opnd[2].X_add_number;
7537 for (i = 1; i < 16; i++)
7538 if (mask & ((valueT) 1 << i))
7540 specs[count] = tmpl;
7541 specs[count++].index = i;
7544 else
7546 UNHANDLED;
7549 else if (note == 11) /* note 11 implies note 1 as well */
7551 if (rsrc_write)
7553 for (i = 0; i < idesc->num_outputs; i++)
7555 if (idesc->operands[i] == IA64_OPND_P1
7556 || idesc->operands[i] == IA64_OPND_P2)
7558 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
7559 if (regno >= 1 && regno < 16)
7561 specs[count] = tmpl;
7562 specs[count++].index = regno;
7567 else
7569 UNHANDLED;
7572 else if (note == 12)
7574 if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16)
7576 specs[count] = tmpl;
7577 specs[count++].index = CURR_SLOT.qp_regno;
7580 else if (note == 1)
7582 if (rsrc_write)
7584 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
7585 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
7586 int or_andcm = strstr(idesc->name, "or.andcm") != NULL;
7587 int and_orcm = strstr(idesc->name, "and.orcm") != NULL;
7589 if ((idesc->operands[0] == IA64_OPND_P1
7590 || idesc->operands[0] == IA64_OPND_P2)
7591 && p1 >= 1 && p1 < 16)
7593 specs[count] = tmpl;
7594 specs[count].cmp_type =
7595 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
7596 specs[count++].index = p1;
7598 if ((idesc->operands[1] == IA64_OPND_P1
7599 || idesc->operands[1] == IA64_OPND_P2)
7600 && p2 >= 1 && p2 < 16)
7602 specs[count] = tmpl;
7603 specs[count].cmp_type =
7604 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
7605 specs[count++].index = p2;
7608 else
7610 if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16)
7612 specs[count] = tmpl;
7613 specs[count++].index = CURR_SLOT.qp_regno;
7615 if (idesc->operands[1] == IA64_OPND_PR)
7617 for (i = 1; i < 16; i++)
7619 specs[count] = tmpl;
7620 specs[count++].index = i;
7625 else
7627 UNHANDLED;
7629 break;
7631 /* This is the general case for PRs. IA64_RS_PR and IA64_RS_PR63 are
7632 simplified cases of this. */
7633 case IA64_RS_PRr:
7634 if (note == 0)
7636 for (i = 16; i < 63; i++)
7638 specs[count] = tmpl;
7639 specs[count++].index = i;
7642 else if (note == 7)
7644 valueT mask = 0;
7645 /* Mark only those registers indicated by the mask. */
7646 if (rsrc_write
7647 && idesc->operands[0] == IA64_OPND_PR)
7649 mask = CURR_SLOT.opnd[2].X_add_number;
7650 if (mask & ((valueT) 1<<16))
7651 for (i = 16; i < 63; i++)
7653 specs[count] = tmpl;
7654 specs[count++].index = i;
7657 else if (rsrc_write
7658 && idesc->operands[0] == IA64_OPND_PR_ROT)
7660 for (i = 16; i < 63; i++)
7662 specs[count] = tmpl;
7663 specs[count++].index = i;
7666 else
7668 UNHANDLED;
7671 else if (note == 11) /* note 11 implies note 1 as well */
7673 if (rsrc_write)
7675 for (i = 0; i < idesc->num_outputs; i++)
7677 if (idesc->operands[i] == IA64_OPND_P1
7678 || idesc->operands[i] == IA64_OPND_P2)
7680 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
7681 if (regno >= 16 && regno < 63)
7683 specs[count] = tmpl;
7684 specs[count++].index = regno;
7689 else
7691 UNHANDLED;
7694 else if (note == 12)
7696 if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63)
7698 specs[count] = tmpl;
7699 specs[count++].index = CURR_SLOT.qp_regno;
7702 else if (note == 1)
7704 if (rsrc_write)
7706 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
7707 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
7708 int or_andcm = strstr(idesc->name, "or.andcm") != NULL;
7709 int and_orcm = strstr(idesc->name, "and.orcm") != NULL;
7711 if ((idesc->operands[0] == IA64_OPND_P1
7712 || idesc->operands[0] == IA64_OPND_P2)
7713 && p1 >= 16 && p1 < 63)
7715 specs[count] = tmpl;
7716 specs[count].cmp_type =
7717 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
7718 specs[count++].index = p1;
7720 if ((idesc->operands[1] == IA64_OPND_P1
7721 || idesc->operands[1] == IA64_OPND_P2)
7722 && p2 >= 16 && p2 < 63)
7724 specs[count] = tmpl;
7725 specs[count].cmp_type =
7726 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
7727 specs[count++].index = p2;
7730 else
7732 if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63)
7734 specs[count] = tmpl;
7735 specs[count++].index = CURR_SLOT.qp_regno;
7737 if (idesc->operands[1] == IA64_OPND_PR)
7739 for (i = 16; i < 63; i++)
7741 specs[count] = tmpl;
7742 specs[count++].index = i;
7747 else
7749 UNHANDLED;
7751 break;
7753 case IA64_RS_PSR:
7754 /* Verify that the instruction is using the PSR bit indicated in
7755 dep->regindex. */
7756 if (note == 0)
7758 if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_UM)
7760 if (dep->regindex < 6)
7762 specs[count++] = tmpl;
7765 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR)
7767 if (dep->regindex < 32
7768 || dep->regindex == 35
7769 || dep->regindex == 36
7770 || (!rsrc_write && dep->regindex == PSR_CPL))
7772 specs[count++] = tmpl;
7775 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_L)
7777 if (dep->regindex < 32
7778 || dep->regindex == 35
7779 || dep->regindex == 36
7780 || (rsrc_write && dep->regindex == PSR_CPL))
7782 specs[count++] = tmpl;
7785 else
7787 /* Several PSR bits have very specific dependencies. */
7788 switch (dep->regindex)
7790 default:
7791 specs[count++] = tmpl;
7792 break;
7793 case PSR_IC:
7794 if (rsrc_write)
7796 specs[count++] = tmpl;
7798 else
7800 /* Only certain CR accesses use PSR.ic */
7801 if (idesc->operands[0] == IA64_OPND_CR3
7802 || idesc->operands[1] == IA64_OPND_CR3)
7804 int index =
7805 ((idesc->operands[0] == IA64_OPND_CR3)
7806 ? 0 : 1);
7807 int regno =
7808 CURR_SLOT.opnd[index].X_add_number - REG_CR;
7810 switch (regno)
7812 default:
7813 break;
7814 case CR_ITIR:
7815 case CR_IFS:
7816 case CR_IIM:
7817 case CR_IIP:
7818 case CR_IPSR:
7819 case CR_ISR:
7820 case CR_IFA:
7821 case CR_IHA:
7822 case CR_IIPA:
7823 specs[count++] = tmpl;
7824 break;
7828 break;
7829 case PSR_CPL:
7830 if (rsrc_write)
7832 specs[count++] = tmpl;
7834 else
7836 /* Only some AR accesses use cpl */
7837 if (idesc->operands[0] == IA64_OPND_AR3
7838 || idesc->operands[1] == IA64_OPND_AR3)
7840 int index =
7841 ((idesc->operands[0] == IA64_OPND_AR3)
7842 ? 0 : 1);
7843 int regno =
7844 CURR_SLOT.opnd[index].X_add_number - REG_AR;
7846 if (regno == AR_ITC
7847 || (index == 0
7848 && (regno == AR_ITC
7849 || regno == AR_RSC
7850 || (regno >= AR_K0
7851 && regno <= AR_K7))))
7853 specs[count++] = tmpl;
7856 else
7858 specs[count++] = tmpl;
7860 break;
7865 else if (note == 7)
7867 valueT mask = 0;
7868 if (idesc->operands[0] == IA64_OPND_IMMU24)
7870 mask = CURR_SLOT.opnd[0].X_add_number;
7872 else
7874 UNHANDLED;
7876 if (mask & ((valueT) 1 << dep->regindex))
7878 specs[count++] = tmpl;
7881 else if (note == 8)
7883 int min = dep->regindex == PSR_DFL ? 2 : 32;
7884 int max = dep->regindex == PSR_DFL ? 31 : 127;
7885 /* dfh is read on FR32-127; dfl is read on FR2-31 */
7886 for (i = 0; i < NELEMS (idesc->operands); i++)
7888 if (idesc->operands[i] == IA64_OPND_F1
7889 || idesc->operands[i] == IA64_OPND_F2
7890 || idesc->operands[i] == IA64_OPND_F3
7891 || idesc->operands[i] == IA64_OPND_F4)
7893 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
7894 if (reg >= min && reg <= max)
7896 specs[count++] = tmpl;
7901 else if (note == 9)
7903 int min = dep->regindex == PSR_MFL ? 2 : 32;
7904 int max = dep->regindex == PSR_MFL ? 31 : 127;
7905 /* mfh is read on writes to FR32-127; mfl is read on writes to
7906 FR2-31 */
7907 for (i = 0; i < idesc->num_outputs; i++)
7909 if (idesc->operands[i] == IA64_OPND_F1)
7911 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
7912 if (reg >= min && reg <= max)
7914 specs[count++] = tmpl;
7919 else if (note == 10)
7921 for (i = 0; i < NELEMS (idesc->operands); i++)
7923 if (idesc->operands[i] == IA64_OPND_R1
7924 || idesc->operands[i] == IA64_OPND_R2
7925 || idesc->operands[i] == IA64_OPND_R3)
7927 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
7928 if (regno >= 16 && regno <= 31)
7930 specs[count++] = tmpl;
7935 else
7937 UNHANDLED;
7939 break;
7941 case IA64_RS_AR_FPSR:
7942 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
7944 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7945 if (regno == AR_FPSR)
7947 specs[count++] = tmpl;
7950 else
7952 specs[count++] = tmpl;
7954 break;
7956 case IA64_RS_ARX:
7957 /* Handle all AR[REG] resources */
7958 if (note == 0 || note == 1)
7960 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7961 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3
7962 && regno == dep->regindex)
7964 specs[count++] = tmpl;
7966 /* other AR[REG] resources may be affected by AR accesses */
7967 else if (idesc->operands[0] == IA64_OPND_AR3)
7969 /* AR[] writes */
7970 regno = CURR_SLOT.opnd[0].X_add_number - REG_AR;
7971 switch (dep->regindex)
7973 default:
7974 break;
7975 case AR_BSP:
7976 case AR_RNAT:
7977 if (regno == AR_BSPSTORE)
7979 specs[count++] = tmpl;
7981 case AR_RSC:
7982 if (!rsrc_write &&
7983 (regno == AR_BSPSTORE
7984 || regno == AR_RNAT))
7986 specs[count++] = tmpl;
7988 break;
7991 else if (idesc->operands[1] == IA64_OPND_AR3)
7993 /* AR[] reads */
7994 regno = CURR_SLOT.opnd[1].X_add_number - REG_AR;
7995 switch (dep->regindex)
7997 default:
7998 break;
7999 case AR_RSC:
8000 if (regno == AR_BSPSTORE || regno == AR_RNAT)
8002 specs[count++] = tmpl;
8004 break;
8007 else
8009 specs[count++] = tmpl;
8012 else
8014 UNHANDLED;
8016 break;
8018 case IA64_RS_CRX:
8019 /* Handle all CR[REG] resources */
8020 if (note == 0 || note == 1)
8022 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
8024 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8025 if (regno == dep->regindex)
8027 specs[count++] = tmpl;
8029 else if (!rsrc_write)
8031 /* Reads from CR[IVR] affect other resources. */
8032 if (regno == CR_IVR)
8034 if ((dep->regindex >= CR_IRR0
8035 && dep->regindex <= CR_IRR3)
8036 || dep->regindex == CR_TPR)
8038 specs[count++] = tmpl;
8043 else
8045 specs[count++] = tmpl;
8048 else
8050 UNHANDLED;
8052 break;
8054 case IA64_RS_INSERVICE:
8055 /* look for write of EOI (67) or read of IVR (65) */
8056 if ((idesc->operands[0] == IA64_OPND_CR3
8057 && CURR_SLOT.opnd[0].X_add_number - REG_CR == CR_EOI)
8058 || (idesc->operands[1] == IA64_OPND_CR3
8059 && CURR_SLOT.opnd[1].X_add_number - REG_CR == CR_IVR))
8061 specs[count++] = tmpl;
8063 break;
8065 case IA64_RS_GR0:
8066 if (note == 1)
8068 specs[count++] = tmpl;
8070 else
8072 UNHANDLED;
8074 break;
8076 case IA64_RS_CFM:
8077 if (note != 2)
8079 specs[count++] = tmpl;
8081 else
8083 /* Check if any of the registers accessed are in the rotating region.
8084 mov to/from pr accesses CFM only when qp_regno is in the rotating
8085 region */
8086 for (i = 0; i < NELEMS (idesc->operands); i++)
8088 if (idesc->operands[i] == IA64_OPND_R1
8089 || idesc->operands[i] == IA64_OPND_R2
8090 || idesc->operands[i] == IA64_OPND_R3)
8092 int num = CURR_SLOT.opnd[i].X_add_number - REG_GR;
8093 /* Assumes that md.rot.num_regs is always valid */
8094 if (md.rot.num_regs > 0
8095 && num > 31
8096 && num < 31 + md.rot.num_regs)
8098 specs[count] = tmpl;
8099 specs[count++].specific = 0;
8102 else if (idesc->operands[i] == IA64_OPND_F1
8103 || idesc->operands[i] == IA64_OPND_F2
8104 || idesc->operands[i] == IA64_OPND_F3
8105 || idesc->operands[i] == IA64_OPND_F4)
8107 int num = CURR_SLOT.opnd[i].X_add_number - REG_FR;
8108 if (num > 31)
8110 specs[count] = tmpl;
8111 specs[count++].specific = 0;
8114 else if (idesc->operands[i] == IA64_OPND_P1
8115 || idesc->operands[i] == IA64_OPND_P2)
8117 int num = CURR_SLOT.opnd[i].X_add_number - REG_P;
8118 if (num > 15)
8120 specs[count] = tmpl;
8121 specs[count++].specific = 0;
8125 if (CURR_SLOT.qp_regno > 15)
8127 specs[count] = tmpl;
8128 specs[count++].specific = 0;
8131 break;
8133 /* This is the same as IA64_RS_PRr, except simplified to account for
8134 the fact that there is only one register. */
8135 case IA64_RS_PR63:
8136 if (note == 0)
8138 specs[count++] = tmpl;
8140 else if (note == 7)
8142 valueT mask = 0;
8143 if (idesc->operands[2] == IA64_OPND_IMM17)
8144 mask = CURR_SLOT.opnd[2].X_add_number;
8145 if (mask & ((valueT) 1 << 63))
8146 specs[count++] = tmpl;
8148 else if (note == 11)
8150 if ((idesc->operands[0] == IA64_OPND_P1
8151 && CURR_SLOT.opnd[0].X_add_number - REG_P == 63)
8152 || (idesc->operands[1] == IA64_OPND_P2
8153 && CURR_SLOT.opnd[1].X_add_number - REG_P == 63))
8155 specs[count++] = tmpl;
8158 else if (note == 12)
8160 if (CURR_SLOT.qp_regno == 63)
8162 specs[count++] = tmpl;
8165 else if (note == 1)
8167 if (rsrc_write)
8169 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
8170 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
8171 int or_andcm = strstr(idesc->name, "or.andcm") != NULL;
8172 int and_orcm = strstr(idesc->name, "and.orcm") != NULL;
8174 if (p1 == 63
8175 && (idesc->operands[0] == IA64_OPND_P1
8176 || idesc->operands[0] == IA64_OPND_P2))
8178 specs[count] = tmpl;
8179 specs[count++].cmp_type =
8180 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
8182 if (p2 == 63
8183 && (idesc->operands[1] == IA64_OPND_P1
8184 || idesc->operands[1] == IA64_OPND_P2))
8186 specs[count] = tmpl;
8187 specs[count++].cmp_type =
8188 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
8191 else
8193 if (CURR_SLOT.qp_regno == 63)
8195 specs[count++] = tmpl;
8199 else
8201 UNHANDLED;
8203 break;
8205 case IA64_RS_RSE:
8206 /* FIXME we can identify some individual RSE written resources, but RSE
8207 read resources have not yet been completely identified, so for now
8208 treat RSE as a single resource */
8209 if (strncmp (idesc->name, "mov", 3) == 0)
8211 if (rsrc_write)
8213 if (idesc->operands[0] == IA64_OPND_AR3
8214 && CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE)
8216 specs[count] = tmpl;
8217 specs[count++].index = 0; /* IA64_RSE_BSPLOAD/RNATBITINDEX */
8220 else
8222 if (idesc->operands[0] == IA64_OPND_AR3)
8224 if (CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE
8225 || CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_RNAT)
8227 specs[count++] = tmpl;
8230 else if (idesc->operands[1] == IA64_OPND_AR3)
8232 if (CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSP
8233 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSPSTORE
8234 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_RNAT)
8236 specs[count++] = tmpl;
8241 else
8243 specs[count++] = tmpl;
8245 break;
8247 case IA64_RS_ANY:
8248 /* FIXME -- do any of these need to be non-specific? */
8249 specs[count++] = tmpl;
8250 break;
8252 default:
8253 as_bad (_("Unrecognized dependency specifier %d\n"), dep->specifier);
8254 break;
8257 return count;
8260 /* Clear branch flags on marked resources. This breaks the link between the
8261 QP of the marking instruction and a subsequent branch on the same QP. */
8263 static void
8264 clear_qp_branch_flag (mask)
8265 valueT mask;
8267 int i;
8268 for (i = 0; i < regdepslen; i++)
8270 valueT bit = ((valueT) 1 << regdeps[i].qp_regno);
8271 if ((bit & mask) != 0)
8273 regdeps[i].link_to_qp_branch = 0;
8278 /* Remove any mutexes which contain any of the PRs indicated in the mask.
8280 Any changes to a PR clears the mutex relations which include that PR. */
8282 static void
8283 clear_qp_mutex (mask)
8284 valueT mask;
8286 int i;
8288 i = 0;
8289 while (i < qp_mutexeslen)
8291 if ((qp_mutexes[i].prmask & mask) != 0)
8293 if (md.debug_dv)
8295 fprintf (stderr, " Clearing mutex relation");
8296 print_prmask (qp_mutexes[i].prmask);
8297 fprintf (stderr, "\n");
8299 qp_mutexes[i] = qp_mutexes[--qp_mutexeslen];
8301 else
8302 ++i;
8306 /* Clear implies relations which contain PRs in the given masks.
8307 P1_MASK indicates the source of the implies relation, while P2_MASK
8308 indicates the implied PR. */
8310 static void
8311 clear_qp_implies (p1_mask, p2_mask)
8312 valueT p1_mask;
8313 valueT p2_mask;
8315 int i;
8317 i = 0;
8318 while (i < qp_implieslen)
8320 if ((((valueT) 1 << qp_implies[i].p1) & p1_mask) != 0
8321 || (((valueT) 1 << qp_implies[i].p2) & p2_mask) != 0)
8323 if (md.debug_dv)
8324 fprintf (stderr, "Clearing implied relation PR%d->PR%d\n",
8325 qp_implies[i].p1, qp_implies[i].p2);
8326 qp_implies[i] = qp_implies[--qp_implieslen];
8328 else
8329 ++i;
8333 /* Add the PRs specified to the list of implied relations. */
8335 static void
8336 add_qp_imply (p1, p2)
8337 int p1, p2;
8339 valueT mask;
8340 valueT bit;
8341 int i;
8343 /* p0 is not meaningful here. */
8344 if (p1 == 0 || p2 == 0)
8345 abort ();
8347 if (p1 == p2)
8348 return;
8350 /* If it exists already, ignore it. */
8351 for (i = 0; i < qp_implieslen; i++)
8353 if (qp_implies[i].p1 == p1
8354 && qp_implies[i].p2 == p2
8355 && qp_implies[i].path == md.path
8356 && !qp_implies[i].p2_branched)
8357 return;
8360 if (qp_implieslen == qp_impliestotlen)
8362 qp_impliestotlen += 20;
8363 qp_implies = (struct qp_imply *)
8364 xrealloc ((void *) qp_implies,
8365 qp_impliestotlen * sizeof (struct qp_imply));
8367 if (md.debug_dv)
8368 fprintf (stderr, " Registering PR%d implies PR%d\n", p1, p2);
8369 qp_implies[qp_implieslen].p1 = p1;
8370 qp_implies[qp_implieslen].p2 = p2;
8371 qp_implies[qp_implieslen].path = md.path;
8372 qp_implies[qp_implieslen++].p2_branched = 0;
8374 /* Add in the implied transitive relations; for everything that p2 implies,
8375 make p1 imply that, too; for everything that implies p1, make it imply p2
8376 as well. */
8377 for (i = 0; i < qp_implieslen; i++)
8379 if (qp_implies[i].p1 == p2)
8380 add_qp_imply (p1, qp_implies[i].p2);
8381 if (qp_implies[i].p2 == p1)
8382 add_qp_imply (qp_implies[i].p1, p2);
8384 /* Add in mutex relations implied by this implies relation; for each mutex
8385 relation containing p2, duplicate it and replace p2 with p1. */
8386 bit = (valueT) 1 << p1;
8387 mask = (valueT) 1 << p2;
8388 for (i = 0; i < qp_mutexeslen; i++)
8390 if (qp_mutexes[i].prmask & mask)
8391 add_qp_mutex ((qp_mutexes[i].prmask & ~mask) | bit);
8395 /* Add the PRs specified in the mask to the mutex list; this means that only
8396 one of the PRs can be true at any time. PR0 should never be included in
8397 the mask. */
8399 static void
8400 add_qp_mutex (mask)
8401 valueT mask;
8403 if (mask & 0x1)
8404 abort ();
8406 if (qp_mutexeslen == qp_mutexestotlen)
8408 qp_mutexestotlen += 20;
8409 qp_mutexes = (struct qpmutex *)
8410 xrealloc ((void *) qp_mutexes,
8411 qp_mutexestotlen * sizeof (struct qpmutex));
8413 if (md.debug_dv)
8415 fprintf (stderr, " Registering mutex on");
8416 print_prmask (mask);
8417 fprintf (stderr, "\n");
8419 qp_mutexes[qp_mutexeslen].path = md.path;
8420 qp_mutexes[qp_mutexeslen++].prmask = mask;
8423 static void
8424 clear_register_values ()
8426 int i;
8427 if (md.debug_dv)
8428 fprintf (stderr, " Clearing register values\n");
8429 for (i = 1; i < NELEMS (gr_values); i++)
8430 gr_values[i].known = 0;
8433 /* Keep track of register values/changes which affect DV tracking.
8435 optimization note: should add a flag to classes of insns where otherwise we
8436 have to examine a group of strings to identify them. */
8438 static void
8439 note_register_values (idesc)
8440 struct ia64_opcode *idesc;
8442 valueT qp_changemask = 0;
8443 int i;
8445 /* Invalidate values for registers being written to. */
8446 for (i = 0; i < idesc->num_outputs; i++)
8448 if (idesc->operands[i] == IA64_OPND_R1
8449 || idesc->operands[i] == IA64_OPND_R2
8450 || idesc->operands[i] == IA64_OPND_R3)
8452 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
8453 if (regno > 0 && regno < NELEMS (gr_values))
8454 gr_values[regno].known = 0;
8456 else if (idesc->operands[i] == IA64_OPND_R3_2)
8458 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
8459 if (regno > 0 && regno < 4)
8460 gr_values[regno].known = 0;
8462 else if (idesc->operands[i] == IA64_OPND_P1
8463 || idesc->operands[i] == IA64_OPND_P2)
8465 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
8466 qp_changemask |= (valueT) 1 << regno;
8468 else if (idesc->operands[i] == IA64_OPND_PR)
8470 if (idesc->operands[2] & (valueT) 0x10000)
8471 qp_changemask = ~(valueT) 0x1FFFF | idesc->operands[2];
8472 else
8473 qp_changemask = idesc->operands[2];
8474 break;
8476 else if (idesc->operands[i] == IA64_OPND_PR_ROT)
8478 if (idesc->operands[1] & ((valueT) 1 << 43))
8479 qp_changemask = ~(valueT) 0xFFFFFFFFFFF | idesc->operands[1];
8480 else
8481 qp_changemask = idesc->operands[1];
8482 qp_changemask &= ~(valueT) 0xFFFF;
8483 break;
8487 /* Always clear qp branch flags on any PR change. */
8488 /* FIXME there may be exceptions for certain compares. */
8489 clear_qp_branch_flag (qp_changemask);
8491 /* Invalidate rotating registers on insns which affect RRBs in CFM. */
8492 if (idesc->flags & IA64_OPCODE_MOD_RRBS)
8494 qp_changemask |= ~(valueT) 0xFFFF;
8495 if (strcmp (idesc->name, "clrrrb.pr") != 0)
8497 for (i = 32; i < 32 + md.rot.num_regs; i++)
8498 gr_values[i].known = 0;
8500 clear_qp_mutex (qp_changemask);
8501 clear_qp_implies (qp_changemask, qp_changemask);
8503 /* After a call, all register values are undefined, except those marked
8504 as "safe". */
8505 else if (strncmp (idesc->name, "br.call", 6) == 0
8506 || strncmp (idesc->name, "brl.call", 7) == 0)
8508 /* FIXME keep GR values which are marked as "safe_across_calls" */
8509 clear_register_values ();
8510 clear_qp_mutex (~qp_safe_across_calls);
8511 clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls);
8512 clear_qp_branch_flag (~qp_safe_across_calls);
8514 else if (is_interruption_or_rfi (idesc)
8515 || is_taken_branch (idesc))
8517 clear_register_values ();
8518 clear_qp_mutex (~(valueT) 0);
8519 clear_qp_implies (~(valueT) 0, ~(valueT) 0);
8521 /* Look for mutex and implies relations. */
8522 else if ((idesc->operands[0] == IA64_OPND_P1
8523 || idesc->operands[0] == IA64_OPND_P2)
8524 && (idesc->operands[1] == IA64_OPND_P1
8525 || idesc->operands[1] == IA64_OPND_P2))
8527 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
8528 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
8529 valueT p1mask = (valueT) 1 << p1;
8530 valueT p2mask = (valueT) 1 << p2;
8532 /* If one of the PRs is PR0, we can't really do anything. */
8533 if (p1 == 0 || p2 == 0)
8535 if (md.debug_dv)
8536 fprintf (stderr, " Ignoring PRs due to inclusion of p0\n");
8538 /* In general, clear mutexes and implies which include P1 or P2,
8539 with the following exceptions. */
8540 else if (strstr (idesc->name, ".or.andcm") != NULL)
8542 add_qp_mutex (p1mask | p2mask);
8543 clear_qp_implies (p2mask, p1mask);
8545 else if (strstr (idesc->name, ".and.orcm") != NULL)
8547 add_qp_mutex (p1mask | p2mask);
8548 clear_qp_implies (p1mask, p2mask);
8550 else if (strstr (idesc->name, ".and") != NULL)
8552 clear_qp_implies (0, p1mask | p2mask);
8554 else if (strstr (idesc->name, ".or") != NULL)
8556 clear_qp_mutex (p1mask | p2mask);
8557 clear_qp_implies (p1mask | p2mask, 0);
8559 else
8561 clear_qp_implies (p1mask | p2mask, p1mask | p2mask);
8562 if (strstr (idesc->name, ".unc") != NULL)
8564 add_qp_mutex (p1mask | p2mask);
8565 if (CURR_SLOT.qp_regno != 0)
8567 add_qp_imply (CURR_SLOT.opnd[0].X_add_number - REG_P,
8568 CURR_SLOT.qp_regno);
8569 add_qp_imply (CURR_SLOT.opnd[1].X_add_number - REG_P,
8570 CURR_SLOT.qp_regno);
8573 else if (CURR_SLOT.qp_regno == 0)
8575 add_qp_mutex (p1mask | p2mask);
8577 else
8579 clear_qp_mutex (p1mask | p2mask);
8583 /* Look for mov imm insns into GRs. */
8584 else if (idesc->operands[0] == IA64_OPND_R1
8585 && (idesc->operands[1] == IA64_OPND_IMM22
8586 || idesc->operands[1] == IA64_OPND_IMMU64)
8587 && (strcmp (idesc->name, "mov") == 0
8588 || strcmp (idesc->name, "movl") == 0))
8590 int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR;
8591 if (regno > 0 && regno < NELEMS (gr_values))
8593 gr_values[regno].known = 1;
8594 gr_values[regno].value = CURR_SLOT.opnd[1].X_add_number;
8595 gr_values[regno].path = md.path;
8596 if (md.debug_dv)
8598 fprintf (stderr, " Know gr%d = ", regno);
8599 fprintf_vma (stderr, gr_values[regno].value);
8600 fputs ("\n", stderr);
8604 else
8606 clear_qp_mutex (qp_changemask);
8607 clear_qp_implies (qp_changemask, qp_changemask);
8611 /* Return whether the given predicate registers are currently mutex. */
8613 static int
8614 qp_mutex (p1, p2, path)
8615 int p1;
8616 int p2;
8617 int path;
8619 int i;
8620 valueT mask;
8622 if (p1 != p2)
8624 mask = ((valueT) 1 << p1) | (valueT) 1 << p2;
8625 for (i = 0; i < qp_mutexeslen; i++)
8627 if (qp_mutexes[i].path >= path
8628 && (qp_mutexes[i].prmask & mask) == mask)
8629 return 1;
8632 return 0;
8635 /* Return whether the given resource is in the given insn's list of chks
8636 Return 1 if the conflict is absolutely determined, 2 if it's a potential
8637 conflict. */
8639 static int
8640 resources_match (rs, idesc, note, qp_regno, path)
8641 struct rsrc *rs;
8642 struct ia64_opcode *idesc;
8643 int note;
8644 int qp_regno;
8645 int path;
8647 struct rsrc specs[MAX_SPECS];
8648 int count;
8650 /* If the marked resource's qp_regno and the given qp_regno are mutex,
8651 we don't need to check. One exception is note 11, which indicates that
8652 target predicates are written regardless of PR[qp]. */
8653 if (qp_mutex (rs->qp_regno, qp_regno, path)
8654 && note != 11)
8655 return 0;
8657 count = specify_resource (rs->dependency, idesc, DV_CHK, specs, note, path);
8658 while (count-- > 0)
8660 /* UNAT checking is a bit more specific than other resources */
8661 if (rs->dependency->specifier == IA64_RS_AR_UNAT
8662 && specs[count].mem_offset.hint
8663 && rs->mem_offset.hint)
8665 if (rs->mem_offset.base == specs[count].mem_offset.base)
8667 if (((rs->mem_offset.offset >> 3) & 0x3F) ==
8668 ((specs[count].mem_offset.offset >> 3) & 0x3F))
8669 return 1;
8670 else
8671 continue;
8675 /* Skip apparent PR write conflicts where both writes are an AND or both
8676 writes are an OR. */
8677 if (rs->dependency->specifier == IA64_RS_PR
8678 || rs->dependency->specifier == IA64_RS_PRr
8679 || rs->dependency->specifier == IA64_RS_PR63)
8681 if (specs[count].cmp_type != CMP_NONE
8682 && specs[count].cmp_type == rs->cmp_type)
8684 if (md.debug_dv)
8685 fprintf (stderr, " %s on parallel compare allowed (PR%d)\n",
8686 dv_mode[rs->dependency->mode],
8687 rs->dependency->specifier != IA64_RS_PR63 ?
8688 specs[count].index : 63);
8689 continue;
8691 if (md.debug_dv)
8692 fprintf (stderr,
8693 " %s on parallel compare conflict %s vs %s on PR%d\n",
8694 dv_mode[rs->dependency->mode],
8695 dv_cmp_type[rs->cmp_type],
8696 dv_cmp_type[specs[count].cmp_type],
8697 rs->dependency->specifier != IA64_RS_PR63 ?
8698 specs[count].index : 63);
8702 /* If either resource is not specific, conservatively assume a conflict
8704 if (!specs[count].specific || !rs->specific)
8705 return 2;
8706 else if (specs[count].index == rs->index)
8707 return 1;
8709 #if 0
8710 if (md.debug_dv)
8711 fprintf (stderr, " No %s conflicts\n", rs->dependency->name);
8712 #endif
8714 return 0;
8717 /* Indicate an instruction group break; if INSERT_STOP is non-zero, then
8718 insert a stop to create the break. Update all resource dependencies
8719 appropriately. If QP_REGNO is non-zero, only apply the break to resources
8720 which use the same QP_REGNO and have the link_to_qp_branch flag set.
8721 If SAVE_CURRENT is non-zero, don't affect resources marked by the current
8722 instruction. */
8724 static void
8725 insn_group_break (insert_stop, qp_regno, save_current)
8726 int insert_stop;
8727 int qp_regno;
8728 int save_current;
8730 int i;
8732 if (insert_stop && md.num_slots_in_use > 0)
8733 PREV_SLOT.end_of_insn_group = 1;
8735 if (md.debug_dv)
8737 fprintf (stderr, " Insn group break%s",
8738 (insert_stop ? " (w/stop)" : ""));
8739 if (qp_regno != 0)
8740 fprintf (stderr, " effective for QP=%d", qp_regno);
8741 fprintf (stderr, "\n");
8744 i = 0;
8745 while (i < regdepslen)
8747 const struct ia64_dependency *dep = regdeps[i].dependency;
8749 if (qp_regno != 0
8750 && regdeps[i].qp_regno != qp_regno)
8752 ++i;
8753 continue;
8756 if (save_current
8757 && CURR_SLOT.src_file == regdeps[i].file
8758 && CURR_SLOT.src_line == regdeps[i].line)
8760 ++i;
8761 continue;
8764 /* clear dependencies which are automatically cleared by a stop, or
8765 those that have reached the appropriate state of insn serialization */
8766 if (dep->semantics == IA64_DVS_IMPLIED
8767 || dep->semantics == IA64_DVS_IMPLIEDF
8768 || regdeps[i].insn_srlz == STATE_SRLZ)
8770 print_dependency ("Removing", i);
8771 regdeps[i] = regdeps[--regdepslen];
8773 else
8775 if (dep->semantics == IA64_DVS_DATA
8776 || dep->semantics == IA64_DVS_INSTR
8777 || dep->semantics == IA64_DVS_SPECIFIC)
8779 if (regdeps[i].insn_srlz == STATE_NONE)
8780 regdeps[i].insn_srlz = STATE_STOP;
8781 if (regdeps[i].data_srlz == STATE_NONE)
8782 regdeps[i].data_srlz = STATE_STOP;
8784 ++i;
8789 /* Add the given resource usage spec to the list of active dependencies. */
8791 static void
8792 mark_resource (idesc, dep, spec, depind, path)
8793 struct ia64_opcode *idesc ATTRIBUTE_UNUSED;
8794 const struct ia64_dependency *dep ATTRIBUTE_UNUSED;
8795 struct rsrc *spec;
8796 int depind;
8797 int path;
8799 if (regdepslen == regdepstotlen)
8801 regdepstotlen += 20;
8802 regdeps = (struct rsrc *)
8803 xrealloc ((void *) regdeps,
8804 regdepstotlen * sizeof (struct rsrc));
8807 regdeps[regdepslen] = *spec;
8808 regdeps[regdepslen].depind = depind;
8809 regdeps[regdepslen].path = path;
8810 regdeps[regdepslen].file = CURR_SLOT.src_file;
8811 regdeps[regdepslen].line = CURR_SLOT.src_line;
8813 print_dependency ("Adding", regdepslen);
8815 ++regdepslen;
8818 static void
8819 print_dependency (action, depind)
8820 const char *action;
8821 int depind;
8823 if (md.debug_dv)
8825 fprintf (stderr, " %s %s '%s'",
8826 action, dv_mode[(regdeps[depind].dependency)->mode],
8827 (regdeps[depind].dependency)->name);
8828 if (regdeps[depind].specific && regdeps[depind].index != 0)
8829 fprintf (stderr, " (%d)", regdeps[depind].index);
8830 if (regdeps[depind].mem_offset.hint)
8832 fputs (" ", stderr);
8833 fprintf_vma (stderr, regdeps[depind].mem_offset.base);
8834 fputs ("+", stderr);
8835 fprintf_vma (stderr, regdeps[depind].mem_offset.offset);
8837 fprintf (stderr, "\n");
8841 static void
8842 instruction_serialization ()
8844 int i;
8845 if (md.debug_dv)
8846 fprintf (stderr, " Instruction serialization\n");
8847 for (i = 0; i < regdepslen; i++)
8848 if (regdeps[i].insn_srlz == STATE_STOP)
8849 regdeps[i].insn_srlz = STATE_SRLZ;
8852 static void
8853 data_serialization ()
8855 int i = 0;
8856 if (md.debug_dv)
8857 fprintf (stderr, " Data serialization\n");
8858 while (i < regdepslen)
8860 if (regdeps[i].data_srlz == STATE_STOP
8861 /* Note: as of 991210, all "other" dependencies are cleared by a
8862 data serialization. This might change with new tables */
8863 || (regdeps[i].dependency)->semantics == IA64_DVS_OTHER)
8865 print_dependency ("Removing", i);
8866 regdeps[i] = regdeps[--regdepslen];
8868 else
8869 ++i;
8873 /* Insert stops and serializations as needed to avoid DVs. */
8875 static void
8876 remove_marked_resource (rs)
8877 struct rsrc *rs;
8879 switch (rs->dependency->semantics)
8881 case IA64_DVS_SPECIFIC:
8882 if (md.debug_dv)
8883 fprintf (stderr, "Implementation-specific, assume worst case...\n");
8884 /* ...fall through... */
8885 case IA64_DVS_INSTR:
8886 if (md.debug_dv)
8887 fprintf (stderr, "Inserting instr serialization\n");
8888 if (rs->insn_srlz < STATE_STOP)
8889 insn_group_break (1, 0, 0);
8890 if (rs->insn_srlz < STATE_SRLZ)
8892 int oldqp = CURR_SLOT.qp_regno;
8893 struct ia64_opcode *oldidesc = CURR_SLOT.idesc;
8894 /* Manually jam a srlz.i insn into the stream */
8895 CURR_SLOT.qp_regno = 0;
8896 CURR_SLOT.idesc = ia64_find_opcode ("srlz.i");
8897 instruction_serialization ();
8898 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
8899 if (++md.num_slots_in_use >= NUM_SLOTS)
8900 emit_one_bundle ();
8901 CURR_SLOT.qp_regno = oldqp;
8902 CURR_SLOT.idesc = oldidesc;
8904 insn_group_break (1, 0, 0);
8905 break;
8906 case IA64_DVS_OTHER: /* as of rev2 (991220) of the DV tables, all
8907 "other" types of DV are eliminated
8908 by a data serialization */
8909 case IA64_DVS_DATA:
8910 if (md.debug_dv)
8911 fprintf (stderr, "Inserting data serialization\n");
8912 if (rs->data_srlz < STATE_STOP)
8913 insn_group_break (1, 0, 0);
8915 int oldqp = CURR_SLOT.qp_regno;
8916 struct ia64_opcode *oldidesc = CURR_SLOT.idesc;
8917 /* Manually jam a srlz.d insn into the stream */
8918 CURR_SLOT.qp_regno = 0;
8919 CURR_SLOT.idesc = ia64_find_opcode ("srlz.d");
8920 data_serialization ();
8921 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
8922 if (++md.num_slots_in_use >= NUM_SLOTS)
8923 emit_one_bundle ();
8924 CURR_SLOT.qp_regno = oldqp;
8925 CURR_SLOT.idesc = oldidesc;
8927 break;
8928 case IA64_DVS_IMPLIED:
8929 case IA64_DVS_IMPLIEDF:
8930 if (md.debug_dv)
8931 fprintf (stderr, "Inserting stop\n");
8932 insn_group_break (1, 0, 0);
8933 break;
8934 default:
8935 break;
8939 /* Check the resources used by the given opcode against the current dependency
8940 list.
8942 The check is run once for each execution path encountered. In this case,
8943 a unique execution path is the sequence of instructions following a code
8944 entry point, e.g. the following has three execution paths, one starting
8945 at L0, one at L1, and one at L2.
8947 L0: nop
8948 L1: add
8949 L2: add
8950 br.ret
8953 static void
8954 check_dependencies (idesc)
8955 struct ia64_opcode *idesc;
8957 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
8958 int path;
8959 int i;
8961 /* Note that the number of marked resources may change within the
8962 loop if in auto mode. */
8963 i = 0;
8964 while (i < regdepslen)
8966 struct rsrc *rs = &regdeps[i];
8967 const struct ia64_dependency *dep = rs->dependency;
8968 int chkind;
8969 int note;
8970 int start_over = 0;
8972 if (dep->semantics == IA64_DVS_NONE
8973 || (chkind = depends_on (rs->depind, idesc)) == -1)
8975 ++i;
8976 continue;
8979 note = NOTE (opdeps->chks[chkind]);
8981 /* Check this resource against each execution path seen thus far. */
8982 for (path = 0; path <= md.path; path++)
8984 int matchtype;
8986 /* If the dependency wasn't on the path being checked, ignore it. */
8987 if (rs->path < path)
8988 continue;
8990 /* If the QP for this insn implies a QP which has branched, don't
8991 bother checking. Ed. NOTE: I don't think this check is terribly
8992 useful; what's the point of generating code which will only be
8993 reached if its QP is zero?
8994 This code was specifically inserted to handle the following code,
8995 based on notes from Intel's DV checking code, where p1 implies p2.
8997 mov r4 = 2
8998 (p2) br.cond L
8999 (p1) mov r4 = 7
9001 if (CURR_SLOT.qp_regno != 0)
9003 int skip = 0;
9004 int implies;
9005 for (implies = 0; implies < qp_implieslen; implies++)
9007 if (qp_implies[implies].path >= path
9008 && qp_implies[implies].p1 == CURR_SLOT.qp_regno
9009 && qp_implies[implies].p2_branched)
9011 skip = 1;
9012 break;
9015 if (skip)
9016 continue;
9019 if ((matchtype = resources_match (rs, idesc, note,
9020 CURR_SLOT.qp_regno, path)) != 0)
9022 char msg[1024];
9023 char pathmsg[256] = "";
9024 char indexmsg[256] = "";
9025 int certain = (matchtype == 1 && CURR_SLOT.qp_regno == 0);
9027 if (path != 0)
9028 sprintf (pathmsg, " when entry is at label '%s'",
9029 md.entry_labels[path - 1]);
9030 if (rs->specific && rs->index != 0)
9031 sprintf (indexmsg, ", specific resource number is %d",
9032 rs->index);
9033 sprintf (msg, "Use of '%s' %s %s dependency '%s' (%s)%s%s",
9034 idesc->name,
9035 (certain ? "violates" : "may violate"),
9036 dv_mode[dep->mode], dep->name,
9037 dv_sem[dep->semantics],
9038 pathmsg, indexmsg);
9040 if (md.explicit_mode)
9042 as_warn ("%s", msg);
9043 if (path < md.path)
9044 as_warn (_("Only the first path encountering the conflict "
9045 "is reported"));
9046 as_warn_where (rs->file, rs->line,
9047 _("This is the location of the "
9048 "conflicting usage"));
9049 /* Don't bother checking other paths, to avoid duplicating
9050 the same warning */
9051 break;
9053 else
9055 if (md.debug_dv)
9056 fprintf (stderr, "%s @ %s:%d\n", msg, rs->file, rs->line);
9058 remove_marked_resource (rs);
9060 /* since the set of dependencies has changed, start over */
9061 /* FIXME -- since we're removing dvs as we go, we
9062 probably don't really need to start over... */
9063 start_over = 1;
9064 break;
9068 if (start_over)
9069 i = 0;
9070 else
9071 ++i;
9075 /* Register new dependencies based on the given opcode. */
9077 static void
9078 mark_resources (idesc)
9079 struct ia64_opcode *idesc;
9081 int i;
9082 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
9083 int add_only_qp_reads = 0;
9085 /* A conditional branch only uses its resources if it is taken; if it is
9086 taken, we stop following that path. The other branch types effectively
9087 *always* write their resources. If it's not taken, register only QP
9088 reads. */
9089 if (is_conditional_branch (idesc) || is_interruption_or_rfi (idesc))
9091 add_only_qp_reads = 1;
9094 if (md.debug_dv)
9095 fprintf (stderr, "Registering '%s' resource usage\n", idesc->name);
9097 for (i = 0; i < opdeps->nregs; i++)
9099 const struct ia64_dependency *dep;
9100 struct rsrc specs[MAX_SPECS];
9101 int note;
9102 int path;
9103 int count;
9105 dep = ia64_find_dependency (opdeps->regs[i]);
9106 note = NOTE (opdeps->regs[i]);
9108 if (add_only_qp_reads
9109 && !(dep->mode == IA64_DV_WAR
9110 && (dep->specifier == IA64_RS_PR
9111 || dep->specifier == IA64_RS_PRr
9112 || dep->specifier == IA64_RS_PR63)))
9113 continue;
9115 count = specify_resource (dep, idesc, DV_REG, specs, note, md.path);
9117 #if 0
9118 if (md.debug_dv && !count)
9119 fprintf (stderr, " No %s %s usage found (path %d)\n",
9120 dv_mode[dep->mode], dep->name, md.path);
9121 #endif
9123 while (count-- > 0)
9125 mark_resource (idesc, dep, &specs[count],
9126 DEP (opdeps->regs[i]), md.path);
9129 /* The execution path may affect register values, which may in turn
9130 affect which indirect-access resources are accessed. */
9131 switch (dep->specifier)
9133 default:
9134 break;
9135 case IA64_RS_CPUID:
9136 case IA64_RS_DBR:
9137 case IA64_RS_IBR:
9138 case IA64_RS_MSR:
9139 case IA64_RS_PKR:
9140 case IA64_RS_PMC:
9141 case IA64_RS_PMD:
9142 case IA64_RS_RR:
9143 for (path = 0; path < md.path; path++)
9145 count = specify_resource (dep, idesc, DV_REG, specs, note, path);
9146 while (count-- > 0)
9147 mark_resource (idesc, dep, &specs[count],
9148 DEP (opdeps->regs[i]), path);
9150 break;
9155 /* Remove dependencies when they no longer apply. */
9157 static void
9158 update_dependencies (idesc)
9159 struct ia64_opcode *idesc;
9161 int i;
9163 if (strcmp (idesc->name, "srlz.i") == 0)
9165 instruction_serialization ();
9167 else if (strcmp (idesc->name, "srlz.d") == 0)
9169 data_serialization ();
9171 else if (is_interruption_or_rfi (idesc)
9172 || is_taken_branch (idesc))
9174 /* Although technically the taken branch doesn't clear dependencies
9175 which require a srlz.[id], we don't follow the branch; the next
9176 instruction is assumed to start with a clean slate. */
9177 regdepslen = 0;
9178 md.path = 0;
9180 else if (is_conditional_branch (idesc)
9181 && CURR_SLOT.qp_regno != 0)
9183 int is_call = strstr (idesc->name, ".call") != NULL;
9185 for (i = 0; i < qp_implieslen; i++)
9187 /* If the conditional branch's predicate is implied by the predicate
9188 in an existing dependency, remove that dependency. */
9189 if (qp_implies[i].p2 == CURR_SLOT.qp_regno)
9191 int depind = 0;
9192 /* Note that this implied predicate takes a branch so that if
9193 a later insn generates a DV but its predicate implies this
9194 one, we can avoid the false DV warning. */
9195 qp_implies[i].p2_branched = 1;
9196 while (depind < regdepslen)
9198 if (regdeps[depind].qp_regno == qp_implies[i].p1)
9200 print_dependency ("Removing", depind);
9201 regdeps[depind] = regdeps[--regdepslen];
9203 else
9204 ++depind;
9208 /* Any marked resources which have this same predicate should be
9209 cleared, provided that the QP hasn't been modified between the
9210 marking instruction and the branch. */
9211 if (is_call)
9213 insn_group_break (0, CURR_SLOT.qp_regno, 1);
9215 else
9217 i = 0;
9218 while (i < regdepslen)
9220 if (regdeps[i].qp_regno == CURR_SLOT.qp_regno
9221 && regdeps[i].link_to_qp_branch
9222 && (regdeps[i].file != CURR_SLOT.src_file
9223 || regdeps[i].line != CURR_SLOT.src_line))
9225 /* Treat like a taken branch */
9226 print_dependency ("Removing", i);
9227 regdeps[i] = regdeps[--regdepslen];
9229 else
9230 ++i;
9236 /* Examine the current instruction for dependency violations. */
9238 static int
9239 check_dv (idesc)
9240 struct ia64_opcode *idesc;
9242 if (md.debug_dv)
9244 fprintf (stderr, "Checking %s for violations (line %d, %d/%d)\n",
9245 idesc->name, CURR_SLOT.src_line,
9246 idesc->dependencies->nchks,
9247 idesc->dependencies->nregs);
9250 /* Look through the list of currently marked resources; if the current
9251 instruction has the dependency in its chks list which uses that resource,
9252 check against the specific resources used. */
9253 check_dependencies (idesc);
9255 /* Look up the instruction's regdeps (RAW writes, WAW writes, and WAR reads),
9256 then add them to the list of marked resources. */
9257 mark_resources (idesc);
9259 /* There are several types of dependency semantics, and each has its own
9260 requirements for being cleared
9262 Instruction serialization (insns separated by interruption, rfi, or
9263 writer + srlz.i + reader, all in separate groups) clears DVS_INSTR.
9265 Data serialization (instruction serialization, or writer + srlz.d +
9266 reader, where writer and srlz.d are in separate groups) clears
9267 DVS_DATA. (This also clears DVS_OTHER, but that is not guaranteed to
9268 always be the case).
9270 Instruction group break (groups separated by stop, taken branch,
9271 interruption or rfi) clears DVS_IMPLIED and DVS_IMPLIEDF.
9273 update_dependencies (idesc);
9275 /* Sometimes, knowing a register value allows us to avoid giving a false DV
9276 warning. Keep track of as many as possible that are useful. */
9277 note_register_values (idesc);
9279 /* We don't need or want this anymore. */
9280 md.mem_offset.hint = 0;
9282 return 0;
9285 /* Translate one line of assembly. Pseudo ops and labels do not show
9286 here. */
9287 void
9288 md_assemble (str)
9289 char *str;
9291 char *saved_input_line_pointer, *mnemonic;
9292 const struct pseudo_opcode *pdesc;
9293 struct ia64_opcode *idesc;
9294 unsigned char qp_regno;
9295 unsigned int flags;
9296 int ch;
9298 saved_input_line_pointer = input_line_pointer;
9299 input_line_pointer = str;
9301 /* extract the opcode (mnemonic): */
9303 mnemonic = input_line_pointer;
9304 ch = get_symbol_end ();
9305 pdesc = (struct pseudo_opcode *) hash_find (md.pseudo_hash, mnemonic);
9306 if (pdesc)
9308 *input_line_pointer = ch;
9309 (*pdesc->handler) (pdesc->arg);
9310 goto done;
9313 /* Find the instruction descriptor matching the arguments. */
9315 idesc = ia64_find_opcode (mnemonic);
9316 *input_line_pointer = ch;
9317 if (!idesc)
9319 as_bad ("Unknown opcode `%s'", mnemonic);
9320 goto done;
9323 idesc = parse_operands (idesc);
9324 if (!idesc)
9325 goto done;
9327 /* Handle the dynamic ops we can handle now: */
9328 if (idesc->type == IA64_TYPE_DYN)
9330 if (strcmp (idesc->name, "add") == 0)
9332 if (CURR_SLOT.opnd[2].X_op == O_register
9333 && CURR_SLOT.opnd[2].X_add_number < 4)
9334 mnemonic = "addl";
9335 else
9336 mnemonic = "adds";
9337 ia64_free_opcode (idesc);
9338 idesc = ia64_find_opcode (mnemonic);
9339 #if 0
9340 know (!idesc->next);
9341 #endif
9343 else if (strcmp (idesc->name, "mov") == 0)
9345 enum ia64_opnd opnd1, opnd2;
9346 int rop;
9348 opnd1 = idesc->operands[0];
9349 opnd2 = idesc->operands[1];
9350 if (opnd1 == IA64_OPND_AR3)
9351 rop = 0;
9352 else if (opnd2 == IA64_OPND_AR3)
9353 rop = 1;
9354 else
9355 abort ();
9356 if (CURR_SLOT.opnd[rop].X_op == O_register
9357 && ar_is_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number))
9358 mnemonic = "mov.i";
9359 else
9360 mnemonic = "mov.m";
9361 ia64_free_opcode (idesc);
9362 idesc = ia64_find_opcode (mnemonic);
9363 while (idesc != NULL
9364 && (idesc->operands[0] != opnd1
9365 || idesc->operands[1] != opnd2))
9366 idesc = get_next_opcode (idesc);
9370 qp_regno = 0;
9371 if (md.qp.X_op == O_register)
9373 qp_regno = md.qp.X_add_number - REG_P;
9374 md.qp.X_op = O_absent;
9377 flags = idesc->flags;
9379 if ((flags & IA64_OPCODE_FIRST) != 0)
9380 insn_group_break (1, 0, 0);
9382 if ((flags & IA64_OPCODE_NO_PRED) != 0 && qp_regno != 0)
9384 as_bad ("`%s' cannot be predicated", idesc->name);
9385 goto done;
9388 /* Build the instruction. */
9389 CURR_SLOT.qp_regno = qp_regno;
9390 CURR_SLOT.idesc = idesc;
9391 as_where (&CURR_SLOT.src_file, &CURR_SLOT.src_line);
9392 dwarf2_where (&CURR_SLOT.debug_line);
9394 /* Add unwind entry, if there is one. */
9395 if (unwind.current_entry)
9397 CURR_SLOT.unwind_record = unwind.current_entry;
9398 unwind.current_entry = NULL;
9401 /* Check for dependency violations. */
9402 if (md.detect_dv)
9403 check_dv (idesc);
9405 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
9406 if (++md.num_slots_in_use >= NUM_SLOTS)
9407 emit_one_bundle ();
9409 if ((flags & IA64_OPCODE_LAST) != 0)
9410 insn_group_break (1, 0, 0);
9412 md.last_text_seg = now_seg;
9414 done:
9415 input_line_pointer = saved_input_line_pointer;
9418 /* Called when symbol NAME cannot be found in the symbol table.
9419 Should be used for dynamic valued symbols only. */
9421 symbolS *
9422 md_undefined_symbol (name)
9423 char *name ATTRIBUTE_UNUSED;
9425 return 0;
9428 /* Called for any expression that can not be recognized. When the
9429 function is called, `input_line_pointer' will point to the start of
9430 the expression. */
9432 void
9433 md_operand (e)
9434 expressionS *e;
9436 enum pseudo_type pseudo_type;
9437 const char *name;
9438 size_t len;
9439 int ch, i;
9441 switch (*input_line_pointer)
9443 case '@':
9444 /* Find what relocation pseudo-function we're dealing with. */
9445 pseudo_type = 0;
9446 ch = *++input_line_pointer;
9447 for (i = 0; i < NELEMS (pseudo_func); ++i)
9448 if (pseudo_func[i].name && pseudo_func[i].name[0] == ch)
9450 len = strlen (pseudo_func[i].name);
9451 if (strncmp (pseudo_func[i].name + 1,
9452 input_line_pointer + 1, len - 1) == 0
9453 && !is_part_of_name (input_line_pointer[len]))
9455 input_line_pointer += len;
9456 pseudo_type = pseudo_func[i].type;
9457 break;
9460 switch (pseudo_type)
9462 case PSEUDO_FUNC_RELOC:
9463 SKIP_WHITESPACE ();
9464 if (*input_line_pointer != '(')
9466 as_bad ("Expected '('");
9467 goto err;
9469 /* Skip '('. */
9470 ++input_line_pointer;
9471 expression (e);
9472 if (*input_line_pointer++ != ')')
9474 as_bad ("Missing ')'");
9475 goto err;
9477 if (e->X_op != O_symbol)
9479 if (e->X_op != O_pseudo_fixup)
9481 as_bad ("Not a symbolic expression");
9482 goto err;
9484 if (S_GET_VALUE (e->X_op_symbol) == FUNC_FPTR_RELATIVE
9485 && i == FUNC_LT_RELATIVE)
9486 i = FUNC_LT_FPTR_RELATIVE;
9487 else
9489 as_bad ("Illegal combination of relocation functions");
9490 goto err;
9493 /* Make sure gas doesn't get rid of local symbols that are used
9494 in relocs. */
9495 e->X_op = O_pseudo_fixup;
9496 e->X_op_symbol = pseudo_func[i].u.sym;
9497 break;
9499 case PSEUDO_FUNC_CONST:
9500 e->X_op = O_constant;
9501 e->X_add_number = pseudo_func[i].u.ival;
9502 break;
9504 case PSEUDO_FUNC_REG:
9505 e->X_op = O_register;
9506 e->X_add_number = pseudo_func[i].u.ival;
9507 break;
9509 default:
9510 name = input_line_pointer - 1;
9511 get_symbol_end ();
9512 as_bad ("Unknown pseudo function `%s'", name);
9513 goto err;
9515 break;
9517 case '[':
9518 ++input_line_pointer;
9519 expression (e);
9520 if (*input_line_pointer != ']')
9522 as_bad ("Closing bracket misssing");
9523 goto err;
9525 else
9527 if (e->X_op != O_register)
9528 as_bad ("Register expected as index");
9530 ++input_line_pointer;
9531 e->X_op = O_index;
9533 break;
9535 default:
9536 break;
9538 return;
9540 err:
9541 ignore_rest_of_line ();
9544 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
9545 a section symbol plus some offset. For relocs involving @fptr(),
9546 directives we don't want such adjustments since we need to have the
9547 original symbol's name in the reloc. */
9549 ia64_fix_adjustable (fix)
9550 fixS *fix;
9552 /* Prevent all adjustments to global symbols */
9553 if (S_IS_EXTERN (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy))
9554 return 0;
9556 switch (fix->fx_r_type)
9558 case BFD_RELOC_IA64_FPTR64I:
9559 case BFD_RELOC_IA64_FPTR32MSB:
9560 case BFD_RELOC_IA64_FPTR32LSB:
9561 case BFD_RELOC_IA64_FPTR64MSB:
9562 case BFD_RELOC_IA64_FPTR64LSB:
9563 case BFD_RELOC_IA64_LTOFF_FPTR22:
9564 case BFD_RELOC_IA64_LTOFF_FPTR64I:
9565 return 0;
9566 default:
9567 break;
9570 return 1;
9574 ia64_force_relocation (fix)
9575 fixS *fix;
9577 switch (fix->fx_r_type)
9579 case BFD_RELOC_IA64_FPTR64I:
9580 case BFD_RELOC_IA64_FPTR32MSB:
9581 case BFD_RELOC_IA64_FPTR32LSB:
9582 case BFD_RELOC_IA64_FPTR64MSB:
9583 case BFD_RELOC_IA64_FPTR64LSB:
9585 case BFD_RELOC_IA64_LTOFF22:
9586 case BFD_RELOC_IA64_LTOFF64I:
9587 case BFD_RELOC_IA64_LTOFF_FPTR22:
9588 case BFD_RELOC_IA64_LTOFF_FPTR64I:
9589 case BFD_RELOC_IA64_PLTOFF22:
9590 case BFD_RELOC_IA64_PLTOFF64I:
9591 case BFD_RELOC_IA64_PLTOFF64MSB:
9592 case BFD_RELOC_IA64_PLTOFF64LSB:
9593 return 1;
9595 default:
9596 return 0;
9598 return 0;
9601 /* Decide from what point a pc-relative relocation is relative to,
9602 relative to the pc-relative fixup. Er, relatively speaking. */
9603 long
9604 ia64_pcrel_from_section (fix, sec)
9605 fixS *fix;
9606 segT sec;
9608 unsigned long off = fix->fx_frag->fr_address + fix->fx_where;
9610 if (bfd_get_section_flags (stdoutput, sec) & SEC_CODE)
9611 off &= ~0xfUL;
9613 return off;
9616 /* This is called whenever some data item (not an instruction) needs a
9617 fixup. We pick the right reloc code depending on the byteorder
9618 currently in effect. */
9619 void
9620 ia64_cons_fix_new (f, where, nbytes, exp)
9621 fragS *f;
9622 int where;
9623 int nbytes;
9624 expressionS *exp;
9626 bfd_reloc_code_real_type code;
9627 fixS *fix;
9629 switch (nbytes)
9631 /* There are no reloc for 8 and 16 bit quantities, but we allow
9632 them here since they will work fine as long as the expression
9633 is fully defined at the end of the pass over the source file. */
9634 case 1: code = BFD_RELOC_8; break;
9635 case 2: code = BFD_RELOC_16; break;
9636 case 4:
9637 if (target_big_endian)
9638 code = BFD_RELOC_IA64_DIR32MSB;
9639 else
9640 code = BFD_RELOC_IA64_DIR32LSB;
9641 break;
9643 case 8:
9644 if (target_big_endian)
9645 code = BFD_RELOC_IA64_DIR64MSB;
9646 else
9647 code = BFD_RELOC_IA64_DIR64LSB;
9648 break;
9650 default:
9651 as_bad ("Unsupported fixup size %d", nbytes);
9652 ignore_rest_of_line ();
9653 return;
9655 if (exp->X_op == O_pseudo_fixup)
9657 /* ??? */
9658 exp->X_op = O_symbol;
9659 code = ia64_gen_real_reloc_type (exp->X_op_symbol, code);
9661 fix = fix_new_exp (f, where, nbytes, exp, 0, code);
9662 /* We need to store the byte order in effect in case we're going
9663 to fix an 8 or 16 bit relocation (for which there no real
9664 relocs available). See md_apply_fix(). */
9665 fix->tc_fix_data.bigendian = target_big_endian;
9668 /* Return the actual relocation we wish to associate with the pseudo
9669 reloc described by SYM and R_TYPE. SYM should be one of the
9670 symbols in the pseudo_func array, or NULL. */
9672 static bfd_reloc_code_real_type
9673 ia64_gen_real_reloc_type (sym, r_type)
9674 struct symbol *sym;
9675 bfd_reloc_code_real_type r_type;
9677 bfd_reloc_code_real_type new = 0;
9679 if (sym == NULL)
9681 return r_type;
9684 switch (S_GET_VALUE (sym))
9686 case FUNC_FPTR_RELATIVE:
9687 switch (r_type)
9689 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_FPTR64I; break;
9690 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_FPTR32MSB; break;
9691 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_FPTR32LSB; break;
9692 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_FPTR64MSB; break;
9693 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_FPTR64LSB; break;
9694 default: break;
9696 break;
9698 case FUNC_GP_RELATIVE:
9699 switch (r_type)
9701 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_GPREL22; break;
9702 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_GPREL64I; break;
9703 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_GPREL32MSB; break;
9704 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_GPREL32LSB; break;
9705 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_GPREL64MSB; break;
9706 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_GPREL64LSB; break;
9707 default: break;
9709 break;
9711 case FUNC_LT_RELATIVE:
9712 switch (r_type)
9714 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22; break;
9715 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_LTOFF64I; break;
9716 default: break;
9718 break;
9720 case FUNC_PC_RELATIVE:
9721 switch (r_type)
9723 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PCREL22; break;
9724 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PCREL64I; break;
9725 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_PCREL32MSB; break;
9726 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_PCREL32LSB; break;
9727 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PCREL64MSB; break;
9728 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PCREL64LSB; break;
9729 default: break;
9731 break;
9733 case FUNC_PLT_RELATIVE:
9734 switch (r_type)
9736 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PLTOFF22; break;
9737 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PLTOFF64I; break;
9738 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PLTOFF64MSB;break;
9739 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PLTOFF64LSB;break;
9740 default: break;
9742 break;
9744 case FUNC_SEC_RELATIVE:
9745 switch (r_type)
9747 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SECREL32MSB;break;
9748 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SECREL32LSB;break;
9749 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SECREL64MSB;break;
9750 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SECREL64LSB;break;
9751 default: break;
9753 break;
9755 case FUNC_SEG_RELATIVE:
9756 switch (r_type)
9758 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SEGREL32MSB;break;
9759 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SEGREL32LSB;break;
9760 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SEGREL64MSB;break;
9761 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SEGREL64LSB;break;
9762 default: break;
9764 break;
9766 case FUNC_LTV_RELATIVE:
9767 switch (r_type)
9769 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_LTV32MSB; break;
9770 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_LTV32LSB; break;
9771 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_LTV64MSB; break;
9772 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_LTV64LSB; break;
9773 default: break;
9775 break;
9777 case FUNC_LT_FPTR_RELATIVE:
9778 switch (r_type)
9780 case BFD_RELOC_IA64_IMM22:
9781 new = BFD_RELOC_IA64_LTOFF_FPTR22; break;
9782 case BFD_RELOC_IA64_IMM64:
9783 new = BFD_RELOC_IA64_LTOFF_FPTR64I; break;
9784 default:
9785 break;
9787 break;
9788 default:
9789 abort ();
9791 /* Hmmmm. Should this ever occur? */
9792 if (new)
9793 return new;
9794 else
9795 return r_type;
9798 /* Here is where generate the appropriate reloc for pseudo relocation
9799 functions. */
9800 void
9801 ia64_validate_fix (fix)
9802 fixS *fix;
9804 switch (fix->fx_r_type)
9806 case BFD_RELOC_IA64_FPTR64I:
9807 case BFD_RELOC_IA64_FPTR32MSB:
9808 case BFD_RELOC_IA64_FPTR64LSB:
9809 case BFD_RELOC_IA64_LTOFF_FPTR22:
9810 case BFD_RELOC_IA64_LTOFF_FPTR64I:
9811 if (fix->fx_offset != 0)
9812 as_bad_where (fix->fx_file, fix->fx_line,
9813 "No addend allowed in @fptr() relocation");
9814 break;
9815 default:
9816 break;
9819 return;
9822 static void
9823 fix_insn (fix, odesc, value)
9824 fixS *fix;
9825 const struct ia64_operand *odesc;
9826 valueT value;
9828 bfd_vma insn[3], t0, t1, control_bits;
9829 const char *err;
9830 char *fixpos;
9831 long slot;
9833 slot = fix->fx_where & 0x3;
9834 fixpos = fix->fx_frag->fr_literal + (fix->fx_where - slot);
9836 /* Bundles are always in little-endian byte order */
9837 t0 = bfd_getl64 (fixpos);
9838 t1 = bfd_getl64 (fixpos + 8);
9839 control_bits = t0 & 0x1f;
9840 insn[0] = (t0 >> 5) & 0x1ffffffffffLL;
9841 insn[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18);
9842 insn[2] = (t1 >> 23) & 0x1ffffffffffLL;
9844 err = NULL;
9845 if (odesc - elf64_ia64_operands == IA64_OPND_IMMU64)
9847 insn[1] = (value >> 22) & 0x1ffffffffffLL;
9848 insn[2] |= (((value & 0x7f) << 13)
9849 | (((value >> 7) & 0x1ff) << 27)
9850 | (((value >> 16) & 0x1f) << 22)
9851 | (((value >> 21) & 0x1) << 21)
9852 | (((value >> 63) & 0x1) << 36));
9854 else if (odesc - elf64_ia64_operands == IA64_OPND_IMMU62)
9856 if (value & ~0x3fffffffffffffffULL)
9857 err = "integer operand out of range";
9858 insn[1] = (value >> 21) & 0x1ffffffffffLL;
9859 insn[2] |= (((value & 0xfffff) << 6) | (((value >> 20) & 0x1) << 36));
9861 else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64)
9863 value >>= 4;
9864 insn[1] = ((value >> 20) & 0x7fffffffffLL) << 2;
9865 insn[2] |= ((((value >> 59) & 0x1) << 36)
9866 | (((value >> 0) & 0xfffff) << 13));
9868 else
9869 err = (*odesc->insert) (odesc, value, insn + slot);
9871 if (err)
9872 as_bad_where (fix->fx_file, fix->fx_line, err);
9874 t0 = control_bits | (insn[0] << 5) | (insn[1] << 46);
9875 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
9876 number_to_chars_littleendian (fixpos + 0, t0, 8);
9877 number_to_chars_littleendian (fixpos + 8, t1, 8);
9880 /* Attempt to simplify or even eliminate a fixup. The return value is
9881 ignored; perhaps it was once meaningful, but now it is historical.
9882 To indicate that a fixup has been eliminated, set FIXP->FX_DONE.
9884 If fixp->fx_addsy is non-NULL, we'll have to generate a reloc entry
9885 (if possible). */
9887 md_apply_fix3 (fix, valuep, seg)
9888 fixS *fix;
9889 valueT *valuep;
9890 segT seg ATTRIBUTE_UNUSED;
9892 char *fixpos;
9893 valueT value = *valuep;
9894 int adjust = 0;
9896 fixpos = fix->fx_frag->fr_literal + fix->fx_where;
9898 if (fix->fx_pcrel)
9900 switch (fix->fx_r_type)
9902 case BFD_RELOC_IA64_DIR32MSB:
9903 fix->fx_r_type = BFD_RELOC_IA64_PCREL32MSB;
9904 adjust = 1;
9905 break;
9907 case BFD_RELOC_IA64_DIR32LSB:
9908 fix->fx_r_type = BFD_RELOC_IA64_PCREL32LSB;
9909 adjust = 1;
9910 break;
9912 case BFD_RELOC_IA64_DIR64MSB:
9913 fix->fx_r_type = BFD_RELOC_IA64_PCREL64MSB;
9914 adjust = 1;
9915 break;
9917 case BFD_RELOC_IA64_DIR64LSB:
9918 fix->fx_r_type = BFD_RELOC_IA64_PCREL64LSB;
9919 adjust = 1;
9920 break;
9922 default:
9923 break;
9926 if (fix->fx_addsy)
9928 if (fix->fx_r_type == (int) BFD_RELOC_UNUSED)
9930 /* This must be a TAG13 or TAG13b operand. There are no external
9931 relocs defined for them, so we must give an error. */
9932 as_bad_where (fix->fx_file, fix->fx_line,
9933 "%s must have a constant value",
9934 elf64_ia64_operands[fix->tc_fix_data.opnd].desc);
9935 fix->fx_done = 1;
9936 return 1;
9939 /* ??? This is a hack copied from tc-i386.c to make PCREL relocs
9940 work. There should be a better way to handle this. */
9941 if (adjust)
9942 fix->fx_offset += fix->fx_where + fix->fx_frag->fr_address;
9944 else if (fix->tc_fix_data.opnd == IA64_OPND_NIL)
9946 if (fix->tc_fix_data.bigendian)
9947 number_to_chars_bigendian (fixpos, value, fix->fx_size);
9948 else
9949 number_to_chars_littleendian (fixpos, value, fix->fx_size);
9950 fix->fx_done = 1;
9951 return 1;
9953 else
9955 fix_insn (fix, elf64_ia64_operands + fix->tc_fix_data.opnd, value);
9956 fix->fx_done = 1;
9957 return 1;
9959 return 1;
9962 /* Generate the BFD reloc to be stuck in the object file from the
9963 fixup used internally in the assembler. */
9965 arelent *
9966 tc_gen_reloc (sec, fixp)
9967 asection *sec ATTRIBUTE_UNUSED;
9968 fixS *fixp;
9970 arelent *reloc;
9972 reloc = xmalloc (sizeof (*reloc));
9973 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
9974 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
9975 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
9976 reloc->addend = fixp->fx_offset;
9977 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
9979 if (!reloc->howto)
9981 as_bad_where (fixp->fx_file, fixp->fx_line,
9982 "Cannot represent %s relocation in object file",
9983 bfd_get_reloc_code_name (fixp->fx_r_type));
9985 return reloc;
9988 /* Turn a string in input_line_pointer into a floating point constant
9989 of type TYPE, and store the appropriate bytes in *LIT. The number
9990 of LITTLENUMS emitted is stored in *SIZE. An error message is
9991 returned, or NULL on OK. */
9993 #define MAX_LITTLENUMS 5
9995 char *
9996 md_atof (type, lit, size)
9997 int type;
9998 char *lit;
9999 int *size;
10001 LITTLENUM_TYPE words[MAX_LITTLENUMS];
10002 LITTLENUM_TYPE *word;
10003 char *t;
10004 int prec;
10006 switch (type)
10008 /* IEEE floats */
10009 case 'f':
10010 case 'F':
10011 case 's':
10012 case 'S':
10013 prec = 2;
10014 break;
10016 case 'd':
10017 case 'D':
10018 case 'r':
10019 case 'R':
10020 prec = 4;
10021 break;
10023 case 'x':
10024 case 'X':
10025 case 'p':
10026 case 'P':
10027 prec = 5;
10028 break;
10030 default:
10031 *size = 0;
10032 return "Bad call to MD_ATOF()";
10034 t = atof_ieee (input_line_pointer, type, words);
10035 if (t)
10036 input_line_pointer = t;
10037 *size = prec * sizeof (LITTLENUM_TYPE);
10039 for (word = words + prec - 1; prec--;)
10041 md_number_to_chars (lit, (long) (*word--), sizeof (LITTLENUM_TYPE));
10042 lit += sizeof (LITTLENUM_TYPE);
10044 return 0;
10047 /* Round up a section's size to the appropriate boundary. */
10048 valueT
10049 md_section_align (seg, size)
10050 segT seg;
10051 valueT size;
10053 int align = bfd_get_section_alignment (stdoutput, seg);
10054 valueT mask = ((valueT) 1 << align) - 1;
10056 return (size + mask) & ~mask;
10059 /* Handle ia64 specific semantics of the align directive. */
10061 void
10062 ia64_md_do_align (n, fill, len, max)
10063 int n ATTRIBUTE_UNUSED;
10064 const char *fill ATTRIBUTE_UNUSED;
10065 int len ATTRIBUTE_UNUSED;
10066 int max ATTRIBUTE_UNUSED;
10068 if (subseg_text_p (now_seg))
10069 ia64_flush_insns ();
10072 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
10073 of an rs_align_code fragment. */
10075 void
10076 ia64_handle_align (fragp)
10077 fragS *fragp;
10079 /* Use mfi bundle of nops with no stop bits. */
10080 static const unsigned char be_nop[]
10081 = { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
10082 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c};
10083 static const unsigned char le_nop[]
10084 = { 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
10085 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00};
10087 int bytes;
10088 char *p;
10090 if (fragp->fr_type != rs_align_code)
10091 return;
10093 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
10094 p = fragp->fr_literal + fragp->fr_fix;
10096 /* Make sure we are on a 16-byte boundary, in case someone has been
10097 putting data into a text section. */
10098 if (bytes & 15)
10100 int fix = bytes & 15;
10101 memset (p, 0, fix);
10102 p += fix;
10103 bytes -= fix;
10104 fragp->fr_fix += fix;
10107 memcpy (p, (target_big_endian ? be_nop : le_nop), 16);
10108 fragp->fr_var = 16;