Fix memory leaks for IA-64 opcode idescs.
[deliverable/binutils-gdb.git] / gas / config / tc-ia64.c
1 /* tc-ia64.c -- Assembler for the HP/Intel IA-64 architecture.
2 Copyright (C) 1998, 1999, 2000 Free Software Foundation.
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4
5 This file is part of GAS, the GNU Assembler.
6
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.
11
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.
16
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. */
21
22 /*
23 TODO:
24
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)
42
43 */
44
45 #include "as.h"
46 #include "dwarf2dbg.h"
47 #include "subsegs.h"
48
49 #include "opcode/ia64.h"
50
51 #include "elf/ia64.h"
52
53 #define NELEMS(a) ((int) (sizeof (a)/sizeof ((a)[0])))
54 #define MIN(a,b) ((a) < (b) ? (a) : (b))
55
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]
59
60 #define O_pseudo_fixup (O_max + 1)
61
62 enum special_section
63 {
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
71 };
72
73 enum reloc_func
74 {
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,
84 };
85
86 enum reg_symbol
87 {
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
117 };
118
119 enum dynreg_type
120 {
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
125 };
126
127 /* On the ia64, we can't know the address of a text label until the
128 instructions are packed into a bundle. To handle this, we keep
129 track of the list of labels that appear in front of each
130 instruction. */
131 struct label_fix
132 {
133 struct label_fix *next;
134 struct symbol *sym;
135 };
136
137 extern int target_big_endian;
138
139 /* Characters which always start a comment. */
140 const char comment_chars[] = "";
141
142 /* Characters which start a comment at the beginning of a line. */
143 const char line_comment_chars[] = "#";
144
145 /* Characters which may be used to separate multiple commands on a
146 single line. */
147 const char line_separator_chars[] = ";";
148
149 /* Characters which are used to indicate an exponent in a floating
150 point number. */
151 const char EXP_CHARS[] = "eE";
152
153 /* Characters which mean that a number is a floating point constant,
154 as in 0d1.0. */
155 const char FLT_CHARS[] = "rRsSfFdDxXpP";
156
157 /* ia64-specific option processing: */
158
159 const char *md_shortopts = "M:N:x::";
160
161 struct option md_longopts[] =
162 {
163 { NULL, no_argument, NULL, 0}
164 };
165
166 size_t md_longopts_size = sizeof (md_longopts);
167
168 static struct
169 {
170 struct hash_control *pseudo_hash; /* pseudo opcode hash table */
171 struct hash_control *reg_hash; /* register name hash table */
172 struct hash_control *dynreg_hash; /* dynamic register hash table */
173 struct hash_control *const_hash; /* constant hash table */
174 struct hash_control *entry_hash; /* code entry hint hash table */
175
176 symbolS *regsym[REG_NUM];
177
178 /* If X_op is != O_absent, the registername for the instruction's
179 qualifying predicate. If NULL, p0 is assumed for instructions
180 that are predicatable. */
181 expressionS qp;
182
183 unsigned int
184 manual_bundling : 1,
185 debug_dv: 1,
186 detect_dv: 1,
187 explicit_mode : 1, /* which mode we're in */
188 default_explicit_mode : 1, /* which mode is the default */
189 mode_explicitly_set : 1, /* was the current mode explicitly set? */
190 auto_align : 1;
191
192 /* Each bundle consists of up to three instructions. We keep
193 track of four most recent instructions so we can correctly set
194 the end_of_insn_group for the last instruction in a bundle. */
195 int curr_slot;
196 int num_slots_in_use;
197 struct slot
198 {
199 unsigned int
200 end_of_insn_group : 1,
201 manual_bundling_on : 1,
202 manual_bundling_off : 1;
203 signed char user_template; /* user-selected template, if any */
204 unsigned char qp_regno; /* qualifying predicate */
205 /* This duplicates a good fraction of "struct fix" but we
206 can't use a "struct fix" instead since we can't call
207 fix_new_exp() until we know the address of the instruction. */
208 int num_fixups;
209 struct insn_fix
210 {
211 bfd_reloc_code_real_type code;
212 enum ia64_opnd opnd; /* type of operand in need of fix */
213 unsigned int is_pcrel : 1; /* is operand pc-relative? */
214 expressionS expr; /* the value to be inserted */
215 }
216 fixup[2]; /* at most two fixups per insn */
217 struct ia64_opcode *idesc;
218 struct label_fix *label_fixups;
219 struct unw_rec_list *unwind_record; /* Unwind directive. */
220 expressionS opnd[6];
221 char *src_file;
222 unsigned int src_line;
223 struct dwarf2_line_info debug_line;
224 }
225 slot[NUM_SLOTS];
226
227 segT last_text_seg;
228
229 struct dynreg
230 {
231 struct dynreg *next; /* next dynamic register */
232 const char *name;
233 unsigned short base; /* the base register number */
234 unsigned short num_regs; /* # of registers in this set */
235 }
236 *dynreg[DYNREG_NUM_TYPES], in, loc, out, rot;
237
238 flagword flags; /* ELF-header flags */
239
240 struct mem_offset {
241 unsigned hint:1; /* is this hint currently valid? */
242 bfd_vma offset; /* mem.offset offset */
243 bfd_vma base; /* mem.offset base */
244 } mem_offset;
245
246 int path; /* number of alt. entry points seen */
247 const char **entry_labels; /* labels of all alternate paths in
248 the current DV-checking block. */
249 int maxpaths; /* size currently allocated for
250 entry_labels */
251 }
252 md;
253
254 /* application registers: */
255
256 #define AR_K0 0
257 #define AR_K7 7
258 #define AR_RSC 16
259 #define AR_BSP 17
260 #define AR_BSPSTORE 18
261 #define AR_RNAT 19
262 #define AR_UNAT 36
263 #define AR_FPSR 40
264 #define AR_ITC 44
265 #define AR_PFS 64
266 #define AR_LC 65
267
268 static const struct
269 {
270 const char *name;
271 int regnum;
272 }
273 ar[] =
274 {
275 {"ar.k0", 0}, {"ar.k1", 1}, {"ar.k2", 2}, {"ar.k3", 3},
276 {"ar.k4", 4}, {"ar.k5", 5}, {"ar.k6", 6}, {"ar.k7", 7},
277 {"ar.rsc", 16}, {"ar.bsp", 17},
278 {"ar.bspstore", 18}, {"ar.rnat", 19},
279 {"ar.fcr", 21}, {"ar.eflag", 24},
280 {"ar.csd", 25}, {"ar.ssd", 26},
281 {"ar.cflg", 27}, {"ar.fsr", 28},
282 {"ar.fir", 29}, {"ar.fdr", 30},
283 {"ar.ccv", 32}, {"ar.unat", 36},
284 {"ar.fpsr", 40}, {"ar.itc", 44},
285 {"ar.pfs", 64}, {"ar.lc", 65},
286 {"ar.ec", 66},
287 };
288
289 #define CR_IPSR 16
290 #define CR_ISR 17
291 #define CR_IIP 19
292 #define CR_IFA 20
293 #define CR_ITIR 21
294 #define CR_IIPA 22
295 #define CR_IFS 23
296 #define CR_IIM 24
297 #define CR_IHA 25
298 #define CR_IVR 65
299 #define CR_TPR 66
300 #define CR_EOI 67
301 #define CR_IRR0 68
302 #define CR_IRR3 71
303 #define CR_LRR0 80
304 #define CR_LRR1 81
305
306 /* control registers: */
307 static const struct
308 {
309 const char *name;
310 int regnum;
311 }
312 cr[] =
313 {
314 {"cr.dcr", 0},
315 {"cr.itm", 1},
316 {"cr.iva", 2},
317 {"cr.pta", 8},
318 {"cr.gpta", 9},
319 {"cr.ipsr", 16},
320 {"cr.isr", 17},
321 {"cr.iip", 19},
322 {"cr.ifa", 20},
323 {"cr.itir", 21},
324 {"cr.iipa", 22},
325 {"cr.ifs", 23},
326 {"cr.iim", 24},
327 {"cr.iha", 25},
328 {"cr.lid", 64},
329 {"cr.ivr", 65},
330 {"cr.tpr", 66},
331 {"cr.eoi", 67},
332 {"cr.irr0", 68},
333 {"cr.irr1", 69},
334 {"cr.irr2", 70},
335 {"cr.irr3", 71},
336 {"cr.itv", 72},
337 {"cr.pmv", 73},
338 {"cr.cmcv", 74},
339 {"cr.lrr0", 80},
340 {"cr.lrr1", 81}
341 };
342
343 #define PSR_MFL 4
344 #define PSR_IC 13
345 #define PSR_DFL 18
346 #define PSR_CPL 32
347
348 static const struct const_desc
349 {
350 const char *name;
351 valueT value;
352 }
353 const_bits[] =
354 {
355 /* PSR constant masks: */
356
357 /* 0: reserved */
358 {"psr.be", ((valueT) 1) << 1},
359 {"psr.up", ((valueT) 1) << 2},
360 {"psr.ac", ((valueT) 1) << 3},
361 {"psr.mfl", ((valueT) 1) << 4},
362 {"psr.mfh", ((valueT) 1) << 5},
363 /* 6-12: reserved */
364 {"psr.ic", ((valueT) 1) << 13},
365 {"psr.i", ((valueT) 1) << 14},
366 {"psr.pk", ((valueT) 1) << 15},
367 /* 16: reserved */
368 {"psr.dt", ((valueT) 1) << 17},
369 {"psr.dfl", ((valueT) 1) << 18},
370 {"psr.dfh", ((valueT) 1) << 19},
371 {"psr.sp", ((valueT) 1) << 20},
372 {"psr.pp", ((valueT) 1) << 21},
373 {"psr.di", ((valueT) 1) << 22},
374 {"psr.si", ((valueT) 1) << 23},
375 {"psr.db", ((valueT) 1) << 24},
376 {"psr.lp", ((valueT) 1) << 25},
377 {"psr.tb", ((valueT) 1) << 26},
378 {"psr.rt", ((valueT) 1) << 27},
379 /* 28-31: reserved */
380 /* 32-33: cpl (current privilege level) */
381 {"psr.is", ((valueT) 1) << 34},
382 {"psr.mc", ((valueT) 1) << 35},
383 {"psr.it", ((valueT) 1) << 36},
384 {"psr.id", ((valueT) 1) << 37},
385 {"psr.da", ((valueT) 1) << 38},
386 {"psr.dd", ((valueT) 1) << 39},
387 {"psr.ss", ((valueT) 1) << 40},
388 /* 41-42: ri (restart instruction) */
389 {"psr.ed", ((valueT) 1) << 43},
390 {"psr.bn", ((valueT) 1) << 44},
391 };
392
393 /* indirect register-sets/memory: */
394
395 static const struct
396 {
397 const char *name;
398 int regnum;
399 }
400 indirect_reg[] =
401 {
402 { "CPUID", IND_CPUID },
403 { "cpuid", IND_CPUID },
404 { "dbr", IND_DBR },
405 { "dtr", IND_DTR },
406 { "itr", IND_ITR },
407 { "ibr", IND_IBR },
408 { "msr", IND_MSR },
409 { "pkr", IND_PKR },
410 { "pmc", IND_PMC },
411 { "pmd", IND_PMD },
412 { "rr", IND_RR },
413 };
414
415 /* Pseudo functions used to indicate relocation types (these functions
416 start with an at sign (@). */
417 static struct
418 {
419 const char *name;
420 enum pseudo_type
421 {
422 PSEUDO_FUNC_NONE,
423 PSEUDO_FUNC_RELOC,
424 PSEUDO_FUNC_CONST,
425 PSEUDO_FUNC_REG,
426 PSEUDO_FUNC_FLOAT
427 }
428 type;
429 union
430 {
431 unsigned long ival;
432 symbolS *sym;
433 }
434 u;
435 }
436 pseudo_func[] =
437 {
438 /* reloc pseudo functions (these must come first!): */
439 { "fptr", PSEUDO_FUNC_RELOC },
440 { "gprel", PSEUDO_FUNC_RELOC },
441 { "ltoff", PSEUDO_FUNC_RELOC },
442 { "pcrel", PSEUDO_FUNC_RELOC },
443 { "pltoff", PSEUDO_FUNC_RELOC },
444 { "secrel", PSEUDO_FUNC_RELOC },
445 { "segrel", PSEUDO_FUNC_RELOC },
446 { "ltv", PSEUDO_FUNC_RELOC },
447 { 0, }, /* placeholder for FUNC_LT_FPTR_RELATIVE */
448
449 /* mbtype4 constants: */
450 { "alt", PSEUDO_FUNC_CONST, { 0xa } },
451 { "brcst", PSEUDO_FUNC_CONST, { 0x0 } },
452 { "mix", PSEUDO_FUNC_CONST, { 0x8 } },
453 { "rev", PSEUDO_FUNC_CONST, { 0xb } },
454 { "shuf", PSEUDO_FUNC_CONST, { 0x9 } },
455
456 /* fclass constants: */
457 { "nat", PSEUDO_FUNC_CONST, { 0x100 } },
458 { "qnan", PSEUDO_FUNC_CONST, { 0x080 } },
459 { "snan", PSEUDO_FUNC_CONST, { 0x040 } },
460 { "pos", PSEUDO_FUNC_CONST, { 0x001 } },
461 { "neg", PSEUDO_FUNC_CONST, { 0x002 } },
462 { "zero", PSEUDO_FUNC_CONST, { 0x004 } },
463 { "unorm", PSEUDO_FUNC_CONST, { 0x008 } },
464 { "norm", PSEUDO_FUNC_CONST, { 0x010 } },
465 { "inf", PSEUDO_FUNC_CONST, { 0x020 } },
466
467 { "natval", PSEUDO_FUNC_CONST, { 0x100 } }, /* old usage */
468
469 /* unwind-related constants: */
470 { "svr4", PSEUDO_FUNC_CONST, { 0 } },
471 { "hpux", PSEUDO_FUNC_CONST, { 1 } },
472 { "nt", PSEUDO_FUNC_CONST, { 2 } },
473
474 /* unwind-related registers: */
475 { "priunat",PSEUDO_FUNC_REG, { REG_PRIUNAT } }
476 };
477
478 /* 41-bit nop opcodes (one per unit): */
479 static const bfd_vma nop[IA64_NUM_UNITS] =
480 {
481 0x0000000000LL, /* NIL => break 0 */
482 0x0008000000LL, /* I-unit nop */
483 0x0008000000LL, /* M-unit nop */
484 0x4000000000LL, /* B-unit nop */
485 0x0008000000LL, /* F-unit nop */
486 0x0008000000LL, /* L-"unit" nop */
487 0x0008000000LL, /* X-unit nop */
488 };
489
490 /* Can't be `const' as it's passed to input routines (which have the
491 habit of setting temporary sentinels. */
492 static char special_section_name[][20] =
493 {
494 {".bss"}, {".sbss"}, {".sdata"}, {".rodata"}, {".comment"},
495 {".IA_64.unwind"}, {".IA_64.unwind_info"}
496 };
497
498 /* The best template for a particular sequence of up to three
499 instructions: */
500 #define N IA64_NUM_TYPES
501 static unsigned char best_template[N][N][N];
502 #undef N
503
504 /* Resource dependencies currently in effect */
505 static struct rsrc {
506 int depind; /* dependency index */
507 const struct ia64_dependency *dependency; /* actual dependency */
508 unsigned specific:1, /* is this a specific bit/regno? */
509 link_to_qp_branch:1; /* will a branch on the same QP clear it?*/
510 int index; /* specific regno/bit within dependency */
511 int note; /* optional qualifying note (0 if none) */
512 #define STATE_NONE 0
513 #define STATE_STOP 1
514 #define STATE_SRLZ 2
515 int insn_srlz; /* current insn serialization state */
516 int data_srlz; /* current data serialization state */
517 int qp_regno; /* qualifying predicate for this usage */
518 char *file; /* what file marked this dependency */
519 int line; /* what line marked this dependency */
520 struct mem_offset mem_offset; /* optional memory offset hint */
521 int path; /* corresponding code entry index */
522 } *regdeps = NULL;
523 static int regdepslen = 0;
524 static int regdepstotlen = 0;
525 static const char *dv_mode[] = { "RAW", "WAW", "WAR" };
526 static const char *dv_sem[] = { "none", "implied", "impliedf",
527 "data", "instr", "specific", "other" };
528
529 /* Current state of PR mutexation */
530 static struct qpmutex {
531 valueT prmask;
532 int path;
533 } *qp_mutexes = NULL; /* QP mutex bitmasks */
534 static int qp_mutexeslen = 0;
535 static int qp_mutexestotlen = 0;
536 static valueT qp_safe_across_calls = 0;
537
538 /* Current state of PR implications */
539 static struct qp_imply {
540 unsigned p1:6;
541 unsigned p2:6;
542 unsigned p2_branched:1;
543 int path;
544 } *qp_implies = NULL;
545 static int qp_implieslen = 0;
546 static int qp_impliestotlen = 0;
547
548 /* Keep track of static GR values so that indirect register usage can
549 sometimes be tracked. */
550 static struct gr {
551 unsigned known:1;
552 int path;
553 valueT value;
554 } gr_values[128] = {{ 1, 0 }};
555
556 /* These are the routines required to output the various types of
557 unwind records. */
558
559 typedef struct unw_rec_list {
560 unwind_record r;
561 unsigned long slot_number;
562 struct unw_rec_list *next;
563 } unw_rec_list;
564
565 #define SLOT_NUM_NOT_SET -1
566
567 static struct
568 {
569 unsigned long next_slot_number;
570
571 /* Maintain a list of unwind entries for the current function. */
572 unw_rec_list *list;
573 unw_rec_list *tail;
574
575 /* Any unwind entires that should be attached to the current slot
576 that an insn is being constructed for. */
577 unw_rec_list *current_entry;
578
579 /* These are used to create the unwind table entry for this function. */
580 symbolS *proc_start;
581 symbolS *proc_end;
582 symbolS *info; /* pointer to unwind info */
583 symbolS *personality_routine;
584
585 /* TRUE if processing unwind directives in a prologue region. */
586 int prologue;
587 } unwind;
588
589 typedef void (*vbyte_func) PARAMS ((int, char *, char *));
590
591 /* Forward delarations: */
592 static int ar_is_in_integer_unit PARAMS ((int regnum));
593 static void set_section PARAMS ((char *name));
594 static unsigned int set_regstack PARAMS ((unsigned int, unsigned int,
595 unsigned int, unsigned int));
596 static void dot_radix PARAMS ((int));
597 static void dot_special_section PARAMS ((int));
598 static void dot_proc PARAMS ((int));
599 static void dot_fframe PARAMS ((int));
600 static void dot_vframe PARAMS ((int));
601 static void dot_vframesp PARAMS ((int));
602 static void dot_vframepsp PARAMS ((int));
603 static void dot_save PARAMS ((int));
604 static void dot_restore PARAMS ((int));
605 static void dot_restorereg PARAMS ((int));
606 static void dot_restorereg_p PARAMS ((int));
607 static void dot_handlerdata PARAMS ((int));
608 static void dot_unwentry PARAMS ((int));
609 static void dot_altrp PARAMS ((int));
610 static void dot_savemem PARAMS ((int));
611 static void dot_saveg PARAMS ((int));
612 static void dot_savef PARAMS ((int));
613 static void dot_saveb PARAMS ((int));
614 static void dot_savegf PARAMS ((int));
615 static void dot_spill PARAMS ((int));
616 static void dot_spillreg PARAMS ((int));
617 static void dot_spillmem PARAMS ((int));
618 static void dot_spillreg_p PARAMS ((int));
619 static void dot_spillmem_p PARAMS ((int));
620 static void dot_label_state PARAMS ((int));
621 static void dot_copy_state PARAMS ((int));
622 static void dot_unwabi PARAMS ((int));
623 static void dot_personality PARAMS ((int));
624 static void dot_body PARAMS ((int));
625 static void dot_prologue PARAMS ((int));
626 static void dot_endp PARAMS ((int));
627 static void dot_template PARAMS ((int));
628 static void dot_regstk PARAMS ((int));
629 static void dot_rot PARAMS ((int));
630 static void dot_byteorder PARAMS ((int));
631 static void dot_psr PARAMS ((int));
632 static void dot_alias PARAMS ((int));
633 static void dot_ln PARAMS ((int));
634 static char *parse_section_name PARAMS ((void));
635 static void dot_xdata PARAMS ((int));
636 static void stmt_float_cons PARAMS ((int));
637 static void stmt_cons_ua PARAMS ((int));
638 static void dot_xfloat_cons PARAMS ((int));
639 static void dot_xstringer PARAMS ((int));
640 static void dot_xdata_ua PARAMS ((int));
641 static void dot_xfloat_cons_ua PARAMS ((int));
642 static void print_prmask PARAMS ((valueT mask));
643 static void dot_pred_rel PARAMS ((int));
644 static void dot_reg_val PARAMS ((int));
645 static void dot_dv_mode PARAMS ((int));
646 static void dot_entry PARAMS ((int));
647 static void dot_mem_offset PARAMS ((int));
648 static void add_unwind_entry PARAMS((unw_rec_list *ptr));
649 static symbolS* declare_register PARAMS ((const char *name, int regnum));
650 static void declare_register_set PARAMS ((const char *, int, int));
651 static unsigned int operand_width PARAMS ((enum ia64_opnd));
652 static int operand_match PARAMS ((const struct ia64_opcode *idesc,
653 int index, expressionS *e));
654 static int parse_operand PARAMS ((expressionS *e));
655 static struct ia64_opcode * parse_operands PARAMS ((struct ia64_opcode *));
656 static void build_insn PARAMS ((struct slot *, bfd_vma *));
657 static void emit_one_bundle PARAMS ((void));
658 static void fix_insn PARAMS ((fixS *, const struct ia64_operand *, valueT));
659 static bfd_reloc_code_real_type ia64_gen_real_reloc_type PARAMS ((struct symbol *sym,
660 bfd_reloc_code_real_type r_type));
661 static void insn_group_break PARAMS ((int, int, int));
662 static void mark_resource PARAMS ((struct ia64_opcode *, const struct ia64_dependency *,
663 struct rsrc *, int depind, int path));
664 static void add_qp_mutex PARAMS((valueT mask));
665 static void add_qp_imply PARAMS((int p1, int p2));
666 static void clear_qp_branch_flag PARAMS((valueT mask));
667 static void clear_qp_mutex PARAMS((valueT mask));
668 static void clear_qp_implies PARAMS((valueT p1_mask, valueT p2_mask));
669 static void clear_register_values PARAMS ((void));
670 static void print_dependency PARAMS ((const char *action, int depind));
671 static void instruction_serialization PARAMS ((void));
672 static void data_serialization PARAMS ((void));
673 static void remove_marked_resource PARAMS ((struct rsrc *));
674 static int is_conditional_branch PARAMS ((struct ia64_opcode *));
675 static int is_taken_branch PARAMS ((struct ia64_opcode *));
676 static int is_interruption_or_rfi PARAMS ((struct ia64_opcode *));
677 static int depends_on PARAMS ((int, struct ia64_opcode *));
678 static int specify_resource PARAMS ((const struct ia64_dependency *,
679 struct ia64_opcode *, int, struct rsrc [], int, int));
680 static int check_dv PARAMS((struct ia64_opcode *idesc));
681 static void check_dependencies PARAMS((struct ia64_opcode *));
682 static void mark_resources PARAMS((struct ia64_opcode *));
683 static void update_dependencies PARAMS((struct ia64_opcode *));
684 static void note_register_values PARAMS((struct ia64_opcode *));
685 static int qp_mutex PARAMS ((int, int, int));
686 static int resources_match PARAMS ((struct rsrc *, struct ia64_opcode *, int, int, int));
687 static void output_vbyte_mem PARAMS ((int, char *, char *));
688 static void count_output PARAMS ((int, char *, char *));
689 static void output_R1_format PARAMS ((vbyte_func, unw_record_type, int));
690 static void output_R2_format PARAMS ((vbyte_func, int, int, unsigned long));
691 static void output_R3_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
692 static void output_P1_format PARAMS ((vbyte_func, int));
693 static void output_P2_format PARAMS ((vbyte_func, int, int));
694 static void output_P3_format PARAMS ((vbyte_func, unw_record_type, int));
695 static void output_P4_format PARAMS ((vbyte_func, unsigned char *, unsigned long));
696 static void output_P5_format PARAMS ((vbyte_func, int, unsigned long));
697 static void output_P6_format PARAMS ((vbyte_func, unw_record_type, int));
698 static void output_P7_format PARAMS ((vbyte_func, unw_record_type, unsigned long, unsigned long));
699 static void output_P8_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
700 static void output_P9_format PARAMS ((vbyte_func, int, int));
701 static void output_P10_format PARAMS ((vbyte_func, int, int));
702 static void output_B1_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
703 static void output_B2_format PARAMS ((vbyte_func, unsigned long, unsigned long));
704 static void output_B3_format PARAMS ((vbyte_func, unsigned long, unsigned long));
705 static void output_B4_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
706 static char format_ab_reg PARAMS ((int, int));
707 static void output_X1_format PARAMS ((vbyte_func, unw_record_type, int, int, unsigned long,
708 unsigned long));
709 static void output_X2_format PARAMS ((vbyte_func, int, int, int, int, int, unsigned long));
710 static void output_X3_format PARAMS ((vbyte_func, unw_record_type, int, int, int, unsigned long,
711 unsigned long));
712 static void output_X4_format PARAMS ((vbyte_func, int, int, int, int, int, int, unsigned long));
713 static void free_list_records PARAMS ((unw_rec_list *));
714 static unw_rec_list *output_prologue PARAMS ((void));
715 static unw_rec_list *output_prologue_gr PARAMS ((unsigned int, unsigned int));
716 static unw_rec_list *output_body PARAMS ((void));
717 static unw_rec_list *output_mem_stack_f PARAMS ((unsigned int));
718 static unw_rec_list *output_mem_stack_v PARAMS ((void));
719 static unw_rec_list *output_psp_gr PARAMS ((unsigned int));
720 static unw_rec_list *output_psp_sprel PARAMS ((unsigned int));
721 static unw_rec_list *output_rp_when PARAMS ((void));
722 static unw_rec_list *output_rp_gr PARAMS ((unsigned int));
723 static unw_rec_list *output_rp_br PARAMS ((unsigned int));
724 static unw_rec_list *output_rp_psprel PARAMS ((unsigned int));
725 static unw_rec_list *output_rp_sprel PARAMS ((unsigned int));
726 static unw_rec_list *output_pfs_when PARAMS ((void));
727 static unw_rec_list *output_pfs_gr PARAMS ((unsigned int));
728 static unw_rec_list *output_pfs_psprel PARAMS ((unsigned int));
729 static unw_rec_list *output_pfs_sprel PARAMS ((unsigned int));
730 static unw_rec_list *output_preds_when PARAMS ((void));
731 static unw_rec_list *output_preds_gr PARAMS ((unsigned int));
732 static unw_rec_list *output_preds_psprel PARAMS ((unsigned int));
733 static unw_rec_list *output_preds_sprel PARAMS ((unsigned int));
734 static unw_rec_list *output_fr_mem PARAMS ((unsigned int));
735 static unw_rec_list *output_frgr_mem PARAMS ((unsigned int, unsigned int));
736 static unw_rec_list *output_gr_gr PARAMS ((unsigned int, unsigned int));
737 static unw_rec_list *output_gr_mem PARAMS ((unsigned int));
738 static unw_rec_list *output_br_mem PARAMS ((unsigned int));
739 static unw_rec_list *output_br_gr PARAMS ((unsigned int, unsigned int));
740 static unw_rec_list *output_spill_base PARAMS ((unsigned int));
741 static unw_rec_list *output_unat_when PARAMS ((void));
742 static unw_rec_list *output_unat_gr PARAMS ((unsigned int));
743 static unw_rec_list *output_unat_psprel PARAMS ((unsigned int));
744 static unw_rec_list *output_unat_sprel PARAMS ((unsigned int));
745 static unw_rec_list *output_lc_when PARAMS ((void));
746 static unw_rec_list *output_lc_gr PARAMS ((unsigned int));
747 static unw_rec_list *output_lc_psprel PARAMS ((unsigned int));
748 static unw_rec_list *output_lc_sprel PARAMS ((unsigned int));
749 static unw_rec_list *output_fpsr_when PARAMS ((void));
750 static unw_rec_list *output_fpsr_gr PARAMS ((unsigned int));
751 static unw_rec_list *output_fpsr_psprel PARAMS ((unsigned int));
752 static unw_rec_list *output_fpsr_sprel PARAMS ((unsigned int));
753 static unw_rec_list *output_priunat_when_gr PARAMS ((void));
754 static unw_rec_list *output_priunat_when_mem PARAMS ((void));
755 static unw_rec_list *output_priunat_gr PARAMS ((unsigned int));
756 static unw_rec_list *output_priunat_psprel PARAMS ((unsigned int));
757 static unw_rec_list *output_priunat_sprel PARAMS ((unsigned int));
758 static unw_rec_list *output_bsp_when PARAMS ((void));
759 static unw_rec_list *output_bsp_gr PARAMS ((unsigned int));
760 static unw_rec_list *output_bsp_psprel PARAMS ((unsigned int));
761 static unw_rec_list *output_bsp_sprel PARAMS ((unsigned int));
762 static unw_rec_list *output_bspstore_when PARAMS ((void));
763 static unw_rec_list *output_bspstore_gr PARAMS ((unsigned int));
764 static unw_rec_list *output_bspstore_psprel PARAMS ((unsigned int));
765 static unw_rec_list *output_bspstore_sprel PARAMS ((unsigned int));
766 static unw_rec_list *output_rnat_when PARAMS ((void));
767 static unw_rec_list *output_rnat_gr PARAMS ((unsigned int));
768 static unw_rec_list *output_rnat_psprel PARAMS ((unsigned int));
769 static unw_rec_list *output_rnat_sprel PARAMS ((unsigned int));
770 static unw_rec_list *output_unwabi PARAMS ((unsigned long, unsigned long));
771 static unw_rec_list *output_epilogue PARAMS ((unsigned long));
772 static unw_rec_list *output_label_state PARAMS ((unsigned long));
773 static unw_rec_list *output_copy_state PARAMS ((unsigned long));
774 static unw_rec_list *output_spill_psprel PARAMS ((unsigned int, unsigned int, unsigned int));
775 static unw_rec_list *output_spill_sprel PARAMS ((unsigned int, unsigned int, unsigned int));
776 static unw_rec_list *output_spill_psprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
777 unsigned int));
778 static unw_rec_list *output_spill_sprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
779 unsigned int));
780 static unw_rec_list *output_spill_reg PARAMS ((unsigned int, unsigned int, unsigned int,
781 unsigned int));
782 static unw_rec_list *output_spill_reg_p PARAMS ((unsigned int, unsigned int, unsigned int,
783 unsigned int, unsigned int));
784 static void process_one_record PARAMS ((unw_rec_list *, vbyte_func));
785 static void process_unw_records PARAMS ((unw_rec_list *, vbyte_func));
786 static int calc_record_size PARAMS ((unw_rec_list *));
787 static void set_imask PARAMS ((unw_rec_list *, unsigned long, unsigned long, unsigned int));
788 static int count_bits PARAMS ((unsigned long));
789 static unsigned long slot_index PARAMS ((unsigned long, unsigned long));
790 static void fixup_unw_records PARAMS ((unw_rec_list *));
791 static int output_unw_records PARAMS ((unw_rec_list *, void **));
792 static int convert_expr_to_ab_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
793 static int convert_expr_to_xy_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
794 static int generate_unwind_image PARAMS ((void));
795
796 /* Determine if application register REGNUM resides in the integer
797 unit (as opposed to the memory unit). */
798 static int
799 ar_is_in_integer_unit (reg)
800 int reg;
801 {
802 reg -= REG_AR;
803
804 return (reg == 64 /* pfs */
805 || reg == 65 /* lc */
806 || reg == 66 /* ec */
807 /* ??? ias accepts and puts these in the integer unit. */
808 || (reg >= 112 && reg <= 127));
809 }
810
811 /* Switch to section NAME and create section if necessary. It's
812 rather ugly that we have to manipulate input_line_pointer but I
813 don't see any other way to accomplish the same thing without
814 changing obj-elf.c (which may be the Right Thing, in the end). */
815 static void
816 set_section (name)
817 char *name;
818 {
819 char *saved_input_line_pointer;
820
821 saved_input_line_pointer = input_line_pointer;
822 input_line_pointer = name;
823 obj_elf_section (0);
824 input_line_pointer = saved_input_line_pointer;
825 }
826
827 /* Map SHF_IA_64_SHORT to SEC_SMALL_DATA. */
828
829 flagword
830 ia64_elf_section_flags (flags, attr, type)
831 flagword flags;
832 int attr, type;
833 {
834 if (attr & SHF_IA_64_SHORT)
835 flags |= SEC_SMALL_DATA;
836 return flags;
837 }
838
839 static unsigned int
840 set_regstack (ins, locs, outs, rots)
841 unsigned int ins, locs, outs, rots;
842 {
843 unsigned int sof; /* size of frame */
844
845 sof = ins + locs + outs;
846 if (sof > 96)
847 {
848 as_bad ("Size of frame exceeds maximum of 96 registers");
849 return 0;
850 }
851 if (rots > sof)
852 {
853 as_warn ("Size of rotating registers exceeds frame size");
854 return 0;
855 }
856 md.in.base = REG_GR + 32;
857 md.loc.base = md.in.base + ins;
858 md.out.base = md.loc.base + locs;
859
860 md.in.num_regs = ins;
861 md.loc.num_regs = locs;
862 md.out.num_regs = outs;
863 md.rot.num_regs = rots;
864 return sof;
865 }
866
867 void
868 ia64_flush_insns ()
869 {
870 struct label_fix *lfix;
871 segT saved_seg;
872 subsegT saved_subseg;
873
874 if (!md.last_text_seg)
875 return;
876
877 saved_seg = now_seg;
878 saved_subseg = now_subseg;
879
880 subseg_set (md.last_text_seg, 0);
881
882 while (md.num_slots_in_use > 0)
883 emit_one_bundle (); /* force out queued instructions */
884
885 /* In case there are labels following the last instruction, resolve
886 those now: */
887 for (lfix = CURR_SLOT.label_fixups; lfix; lfix = lfix->next)
888 {
889 S_SET_VALUE (lfix->sym, frag_now_fix ());
890 symbol_set_frag (lfix->sym, frag_now);
891 }
892 CURR_SLOT.label_fixups = 0;
893
894 subseg_set (saved_seg, saved_subseg);
895 }
896
897 void
898 ia64_do_align (nbytes)
899 int nbytes;
900 {
901 char *saved_input_line_pointer = input_line_pointer;
902
903 input_line_pointer = "";
904 s_align_bytes (nbytes);
905 input_line_pointer = saved_input_line_pointer;
906 }
907
908 void
909 ia64_cons_align (nbytes)
910 int nbytes;
911 {
912 if (md.auto_align)
913 {
914 char *saved_input_line_pointer = input_line_pointer;
915 input_line_pointer = "";
916 s_align_bytes (nbytes);
917 input_line_pointer = saved_input_line_pointer;
918 }
919 }
920
921 /* Output COUNT bytes to a memory location. */
922 static unsigned char *vbyte_mem_ptr = NULL;
923
924 void
925 output_vbyte_mem (count, ptr, comment)
926 int count;
927 char *ptr;
928 char *comment;
929 {
930 int x;
931 if (vbyte_mem_ptr == NULL)
932 abort ();
933
934 if (count == 0)
935 return;
936 for (x = 0; x < count; x++)
937 *(vbyte_mem_ptr++) = ptr[x];
938 }
939
940 /* Count the number of bytes required for records. */
941 static int vbyte_count = 0;
942 void
943 count_output (count, ptr, comment)
944 int count;
945 char *ptr;
946 char *comment;
947 {
948 vbyte_count += count;
949 }
950
951 static void
952 output_R1_format (f, rtype, rlen)
953 vbyte_func f;
954 unw_record_type rtype;
955 int rlen;
956 {
957 int r = 0;
958 char byte;
959 if (rlen > 0x1f)
960 {
961 output_R3_format (f, rtype, rlen);
962 return;
963 }
964
965 if (rtype == body)
966 r = 1;
967 else if (rtype != prologue)
968 as_bad ("record type is not valid");
969
970 byte = UNW_R1 | (r << 5) | (rlen & 0x1f);
971 (*f) (1, &byte, NULL);
972 }
973
974 static void
975 output_R2_format (f, mask, grsave, rlen)
976 vbyte_func f;
977 int mask, grsave;
978 unsigned long rlen;
979 {
980 char bytes[20];
981 int count = 2;
982 mask = (mask & 0x0f);
983 grsave = (grsave & 0x7f);
984
985 bytes[0] = (UNW_R2 | (mask >> 1));
986 bytes[1] = (((mask & 0x01) << 7) | grsave);
987 count += output_leb128 (bytes + 2, rlen, 0);
988 (*f) (count, bytes, NULL);
989 }
990
991 static void
992 output_R3_format (f, rtype, rlen)
993 vbyte_func f;
994 unw_record_type rtype;
995 unsigned long rlen;
996 {
997 int r = 0, count;
998 char bytes[20];
999 if (rlen <= 0x1f)
1000 {
1001 output_R1_format (f, rtype, rlen);
1002 return;
1003 }
1004
1005 if (rtype == body)
1006 r = 1;
1007 else if (rtype != prologue)
1008 as_bad ("record type is not valid");
1009 bytes[0] = (UNW_R3 | r);
1010 count = output_leb128 (bytes + 1, rlen, 0);
1011 (*f) (count + 1, bytes, NULL);
1012 }
1013
1014 static void
1015 output_P1_format (f, brmask)
1016 vbyte_func f;
1017 int brmask;
1018 {
1019 char byte;
1020 byte = UNW_P1 | (brmask & 0x1f);
1021 (*f) (1, &byte, NULL);
1022 }
1023
1024 static void
1025 output_P2_format (f, brmask, gr)
1026 vbyte_func f;
1027 int brmask;
1028 int gr;
1029 {
1030 char bytes[2];
1031 brmask = (brmask & 0x1f);
1032 bytes[0] = UNW_P2 | (brmask >> 1);
1033 bytes[1] = (((brmask & 1) << 7) | gr);
1034 (*f) (2, bytes, NULL);
1035 }
1036
1037 static void
1038 output_P3_format (f, rtype, reg)
1039 vbyte_func f;
1040 unw_record_type rtype;
1041 int reg;
1042 {
1043 char bytes[2];
1044 int r = 0;
1045 reg = (reg & 0x7f);
1046 switch (rtype)
1047 {
1048 case psp_gr:
1049 r = 0;
1050 break;
1051 case rp_gr:
1052 r = 1;
1053 break;
1054 case pfs_gr:
1055 r = 2;
1056 break;
1057 case preds_gr:
1058 r = 3;
1059 break;
1060 case unat_gr:
1061 r = 4;
1062 break;
1063 case lc_gr:
1064 r = 5;
1065 break;
1066 case rp_br:
1067 r = 6;
1068 break;
1069 case rnat_gr:
1070 r = 7;
1071 break;
1072 case bsp_gr:
1073 r = 8;
1074 break;
1075 case bspstore_gr:
1076 r = 9;
1077 break;
1078 case fpsr_gr:
1079 r = 10;
1080 break;
1081 case priunat_gr:
1082 r = 11;
1083 break;
1084 default:
1085 as_bad ("Invalid record type for P3 format.");
1086 }
1087 bytes[0] = (UNW_P3 | (r >> 1));
1088 bytes[1] = (((r & 1) << 7) | reg);
1089 (*f) (2, bytes, NULL);
1090 }
1091
1092
1093 static void
1094 output_P4_format (f, imask, imask_size)
1095 vbyte_func f;
1096 unsigned char *imask;
1097 unsigned long imask_size;
1098 {
1099 imask[0] = UNW_P4;
1100 (*f) (imask_size, imask, NULL);
1101 }
1102
1103 static void
1104 output_P5_format (f, grmask, frmask)
1105 vbyte_func f;
1106 int grmask;
1107 unsigned long frmask;
1108 {
1109 char bytes[4];
1110 grmask = (grmask & 0x0f);
1111
1112 bytes[0] = UNW_P5;
1113 bytes[1] = ((grmask << 4) | ((frmask & 0x000f0000) >> 16));
1114 bytes[2] = ((frmask & 0x0000ff00) >> 8);
1115 bytes[3] = (frmask & 0x000000ff);
1116 (*f) (4, bytes, NULL);
1117 }
1118
1119 static void
1120 output_P6_format (f, rtype, rmask)
1121 vbyte_func f;
1122 unw_record_type rtype;
1123 int rmask;
1124 {
1125 char byte;
1126 int r = 0;
1127
1128 if (rtype == gr_mem)
1129 r = 1;
1130 else if (rtype != fr_mem)
1131 as_bad ("Invalid record type for format P6");
1132 byte = (UNW_P6 | (r << 4) | (rmask & 0x0f));
1133 (*f) (1, &byte, NULL);
1134 }
1135
1136 static void
1137 output_P7_format (f, rtype, w1, w2)
1138 vbyte_func f;
1139 unw_record_type rtype;
1140 unsigned long w1;
1141 unsigned long w2;
1142 {
1143 char bytes[20];
1144 int count = 1;
1145 int r = 0;
1146 count += output_leb128 (bytes + 1, w1, 0);
1147 switch (rtype)
1148 {
1149 case mem_stack_f:
1150 r = 0;
1151 count += output_leb128 (bytes + count, w2 >> 4, 0);
1152 break;
1153 case mem_stack_v:
1154 r = 1;
1155 break;
1156 case spill_base:
1157 r = 2;
1158 break;
1159 case psp_sprel:
1160 r = 3;
1161 break;
1162 case rp_when:
1163 r = 4;
1164 break;
1165 case rp_psprel:
1166 r = 5;
1167 break;
1168 case pfs_when:
1169 r = 6;
1170 break;
1171 case pfs_psprel:
1172 r = 7;
1173 break;
1174 case preds_when:
1175 r = 8;
1176 break;
1177 case preds_psprel:
1178 r = 9;
1179 break;
1180 case lc_when:
1181 r = 10;
1182 break;
1183 case lc_psprel:
1184 r = 11;
1185 break;
1186 case unat_when:
1187 r = 12;
1188 break;
1189 case unat_psprel:
1190 r = 13;
1191 break;
1192 case fpsr_when:
1193 r = 14;
1194 break;
1195 case fpsr_psprel:
1196 r = 15;
1197 break;
1198 default:
1199 break;
1200 }
1201 bytes[0] = (UNW_P7 | r);
1202 (*f) (count, bytes, NULL);
1203 }
1204
1205 static void
1206 output_P8_format (f, rtype, t)
1207 vbyte_func f;
1208 unw_record_type rtype;
1209 unsigned long t;
1210 {
1211 char bytes[20];
1212 int r = 0;
1213 int count = 2;
1214 bytes[0] = UNW_P8;
1215 switch (rtype)
1216 {
1217 case rp_sprel:
1218 r = 1;
1219 break;
1220 case pfs_sprel:
1221 r = 2;
1222 break;
1223 case preds_sprel:
1224 r = 3;
1225 break;
1226 case lc_sprel:
1227 r = 4;
1228 break;
1229 case unat_sprel:
1230 r = 5;
1231 break;
1232 case fpsr_sprel:
1233 r = 6;
1234 break;
1235 case bsp_when:
1236 r = 7;
1237 break;
1238 case bsp_psprel:
1239 r = 8;
1240 break;
1241 case bsp_sprel:
1242 r = 9;
1243 break;
1244 case bspstore_when:
1245 r = 10;
1246 break;
1247 case bspstore_psprel:
1248 r = 11;
1249 break;
1250 case bspstore_sprel:
1251 r = 12;
1252 break;
1253 case rnat_when:
1254 r = 13;
1255 break;
1256 case rnat_psprel:
1257 r = 14;
1258 break;
1259 case rnat_sprel:
1260 r = 15;
1261 break;
1262 case priunat_when_gr:
1263 r = 16;
1264 break;
1265 case priunat_psprel:
1266 r = 17;
1267 break;
1268 case priunat_sprel:
1269 r = 18;
1270 break;
1271 case priunat_when_mem:
1272 r = 19;
1273 break;
1274 default:
1275 break;
1276 }
1277 bytes[1] = r;
1278 count += output_leb128 (bytes + 2, t, 0);
1279 (*f) (count, bytes, NULL);
1280 }
1281
1282 static void
1283 output_P9_format (f, grmask, gr)
1284 vbyte_func f;
1285 int grmask;
1286 int gr;
1287 {
1288 char bytes[3];
1289 bytes[0] = UNW_P9;
1290 bytes[1] = (grmask & 0x0f);
1291 bytes[2] = (gr & 0x7f);
1292 (*f) (3, bytes, NULL);
1293 }
1294
1295 static void
1296 output_P10_format (f, abi, context)
1297 vbyte_func f;
1298 int abi;
1299 int context;
1300 {
1301 char bytes[3];
1302 bytes[0] = UNW_P10;
1303 bytes[1] = (abi & 0xff);
1304 bytes[2] = (context & 0xff);
1305 (*f) (3, bytes, NULL);
1306 }
1307
1308 static void
1309 output_B1_format (f, rtype, label)
1310 vbyte_func f;
1311 unw_record_type rtype;
1312 unsigned long label;
1313 {
1314 char byte;
1315 int r = 0;
1316 if (label > 0x1f)
1317 {
1318 output_B4_format (f, rtype, label);
1319 return;
1320 }
1321 if (rtype == copy_state)
1322 r = 1;
1323 else if (rtype != label_state)
1324 as_bad ("Invalid record type for format B1");
1325
1326 byte = (UNW_B1 | (r << 5) | (label & 0x1f));
1327 (*f) (1, &byte, NULL);
1328 }
1329
1330 static void
1331 output_B2_format (f, ecount, t)
1332 vbyte_func f;
1333 unsigned long ecount;
1334 unsigned long t;
1335 {
1336 char bytes[20];
1337 int count = 1;
1338 if (ecount > 0x1f)
1339 {
1340 output_B3_format (f, ecount, t);
1341 return;
1342 }
1343 bytes[0] = (UNW_B2 | (ecount & 0x1f));
1344 count += output_leb128 (bytes + 1, t, 0);
1345 (*f) (count, bytes, NULL);
1346 }
1347
1348 static void
1349 output_B3_format (f, ecount, t)
1350 vbyte_func f;
1351 unsigned long ecount;
1352 unsigned long t;
1353 {
1354 char bytes[20];
1355 int count = 1;
1356 if (ecount <= 0x1f)
1357 {
1358 output_B2_format (f, ecount, t);
1359 return;
1360 }
1361 bytes[0] = UNW_B3;
1362 count += output_leb128 (bytes + 1, t, 0);
1363 count += output_leb128 (bytes + count, ecount, 0);
1364 (*f) (count, bytes, NULL);
1365 }
1366
1367 static void
1368 output_B4_format (f, rtype, label)
1369 vbyte_func f;
1370 unw_record_type rtype;
1371 unsigned long label;
1372 {
1373 char bytes[20];
1374 int r = 0;
1375 int count = 1;
1376 if (label <= 0x1f)
1377 {
1378 output_B1_format (f, rtype, label);
1379 return;
1380 }
1381
1382 if (rtype == copy_state)
1383 r = 1;
1384 else if (rtype != label_state)
1385 as_bad ("Invalid record type for format B1");
1386
1387 bytes[0] = (UNW_B4 | (r << 3));
1388 count += output_leb128 (bytes + 1, label, 0);
1389 (*f) (count, bytes, NULL);
1390 }
1391
1392 static char
1393 format_ab_reg (ab, reg)
1394 int ab;
1395 int reg;
1396 {
1397 int ret;
1398 ab = (ab & 3);
1399 reg = (reg & 0x1f);
1400 ret = (ab << 5) | reg;
1401 return ret;
1402 }
1403
1404 static void
1405 output_X1_format (f, rtype, ab, reg, t, w1)
1406 vbyte_func f;
1407 unw_record_type rtype;
1408 int ab, reg;
1409 unsigned long t;
1410 unsigned long w1;
1411 {
1412 char bytes[20];
1413 int r = 0;
1414 int count = 2;
1415 bytes[0] = UNW_X1;
1416
1417 if (rtype == spill_sprel)
1418 r = 1;
1419 else if (rtype != spill_psprel)
1420 as_bad ("Invalid record type for format X1");
1421 bytes[1] = ((r << 7) | format_ab_reg (ab, reg));
1422 count += output_leb128 (bytes + 2, t, 0);
1423 count += output_leb128 (bytes + count, w1, 0);
1424 (*f) (count, bytes, NULL);
1425 }
1426
1427 static void
1428 output_X2_format (f, ab, reg, x, y, treg, t)
1429 vbyte_func f;
1430 int ab, reg;
1431 int x, y, treg;
1432 unsigned long t;
1433 {
1434 char bytes[20];
1435 int count = 3;
1436 bytes[0] = UNW_X2;
1437 bytes[1] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1438 bytes[2] = (((y & 1) << 7) | (treg & 0x7f));
1439 count += output_leb128 (bytes + 3, t, 0);
1440 (*f) (count, bytes, NULL);
1441 }
1442
1443 static void
1444 output_X3_format (f, rtype, qp, ab, reg, t, w1)
1445 vbyte_func f;
1446 unw_record_type rtype;
1447 int qp;
1448 int ab, reg;
1449 unsigned long t;
1450 unsigned long w1;
1451 {
1452 char bytes[20];
1453 int r = 0;
1454 int count = 3;
1455 bytes[0] = UNW_X3;
1456
1457 if (rtype == spill_sprel_p)
1458 r = 1;
1459 else if (rtype != spill_psprel_p)
1460 as_bad ("Invalid record type for format X3");
1461 bytes[1] = ((r << 7) | (qp & 0x3f));
1462 bytes[2] = format_ab_reg (ab, reg);
1463 count += output_leb128 (bytes + 3, t, 0);
1464 count += output_leb128 (bytes + count, w1, 0);
1465 (*f) (count, bytes, NULL);
1466 }
1467
1468 static void
1469 output_X4_format (f, qp, ab, reg, x, y, treg, t)
1470 vbyte_func f;
1471 int qp;
1472 int ab, reg;
1473 int x, y, treg;
1474 unsigned long t;
1475 {
1476 char bytes[20];
1477 int count = 4;
1478 bytes[0] = UNW_X4;
1479 bytes[1] = (qp & 0x3f);
1480 bytes[2] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1481 bytes[3] = (((y & 1) << 7) | (treg & 0x7f));
1482 count += output_leb128 (bytes + 4, t, 0);
1483 (*f) (count, bytes, NULL);
1484 }
1485
1486 /* This function allocates a record list structure, and initializes fields. */
1487 static unw_rec_list *
1488 alloc_record (unw_record_type t)
1489 {
1490 unw_rec_list *ptr;
1491 ptr = xmalloc (sizeof (*ptr));
1492 ptr->next = NULL;
1493 ptr->slot_number = SLOT_NUM_NOT_SET;
1494 ptr->r.type = t;
1495 return ptr;
1496 }
1497
1498 /* This function frees an entire list of record structures. */
1499 void
1500 free_list_records (unw_rec_list *first)
1501 {
1502 unw_rec_list *ptr;
1503 for (ptr = first; ptr != NULL; )
1504 {
1505 unw_rec_list *tmp = ptr;
1506
1507 if ((tmp->r.type == prologue || tmp->r.type == prologue_gr)
1508 && tmp->r.record.r.mask.i)
1509 free (tmp->r.record.r.mask.i);
1510
1511 ptr = ptr->next;
1512 free (tmp);
1513 }
1514 }
1515
1516 static unw_rec_list *
1517 output_prologue ()
1518 {
1519 unw_rec_list *ptr = alloc_record (prologue);
1520 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1521 return ptr;
1522 }
1523
1524 static unw_rec_list *
1525 output_prologue_gr (saved_mask, reg)
1526 unsigned int saved_mask;
1527 unsigned int reg;
1528 {
1529 unw_rec_list *ptr = alloc_record (prologue_gr);
1530 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1531 ptr->r.record.r.grmask = saved_mask;
1532 ptr->r.record.r.grsave = reg;
1533 return ptr;
1534 }
1535
1536 static unw_rec_list *
1537 output_body ()
1538 {
1539 unw_rec_list *ptr = alloc_record (body);
1540 return ptr;
1541 }
1542
1543 static unw_rec_list *
1544 output_mem_stack_f (size)
1545 unsigned int size;
1546 {
1547 unw_rec_list *ptr = alloc_record (mem_stack_f);
1548 ptr->r.record.p.size = size;
1549 return ptr;
1550 }
1551
1552 static unw_rec_list *
1553 output_mem_stack_v ()
1554 {
1555 unw_rec_list *ptr = alloc_record (mem_stack_v);
1556 return ptr;
1557 }
1558
1559 static unw_rec_list *
1560 output_psp_gr (gr)
1561 unsigned int gr;
1562 {
1563 unw_rec_list *ptr = alloc_record (psp_gr);
1564 ptr->r.record.p.gr = gr;
1565 return ptr;
1566 }
1567
1568 static unw_rec_list *
1569 output_psp_sprel (offset)
1570 unsigned int offset;
1571 {
1572 unw_rec_list *ptr = alloc_record (psp_sprel);
1573 ptr->r.record.p.spoff = offset/4;
1574 return ptr;
1575 }
1576
1577 static unw_rec_list *
1578 output_rp_when ()
1579 {
1580 unw_rec_list *ptr = alloc_record (rp_when);
1581 return ptr;
1582 }
1583
1584 static unw_rec_list *
1585 output_rp_gr (gr)
1586 unsigned int gr;
1587 {
1588 unw_rec_list *ptr = alloc_record (rp_gr);
1589 ptr->r.record.p.gr = gr;
1590 return ptr;
1591 }
1592
1593 static unw_rec_list *
1594 output_rp_br (br)
1595 unsigned int br;
1596 {
1597 unw_rec_list *ptr = alloc_record (rp_br);
1598 ptr->r.record.p.br = br;
1599 return ptr;
1600 }
1601
1602 static unw_rec_list *
1603 output_rp_psprel (offset)
1604 unsigned int offset;
1605 {
1606 unw_rec_list *ptr = alloc_record (rp_psprel);
1607 ptr->r.record.p.pspoff = offset/4;
1608 return ptr;
1609 }
1610
1611 static unw_rec_list *
1612 output_rp_sprel (offset)
1613 unsigned int offset;
1614 {
1615 unw_rec_list *ptr = alloc_record (rp_sprel);
1616 ptr->r.record.p.spoff = offset/4;
1617 return ptr;
1618 }
1619
1620 static unw_rec_list *
1621 output_pfs_when ()
1622 {
1623 unw_rec_list *ptr = alloc_record (pfs_when);
1624 return ptr;
1625 }
1626
1627 static unw_rec_list *
1628 output_pfs_gr (gr)
1629 unsigned int gr;
1630 {
1631 unw_rec_list *ptr = alloc_record (pfs_gr);
1632 ptr->r.record.p.gr = gr;
1633 return ptr;
1634 }
1635
1636 static unw_rec_list *
1637 output_pfs_psprel (offset)
1638 unsigned int offset;
1639 {
1640 unw_rec_list *ptr = alloc_record (pfs_psprel);
1641 ptr->r.record.p.pspoff = offset/4;
1642 return ptr;
1643 }
1644
1645 static unw_rec_list *
1646 output_pfs_sprel (offset)
1647 unsigned int offset;
1648 {
1649 unw_rec_list *ptr = alloc_record (pfs_sprel);
1650 ptr->r.record.p.spoff = offset/4;
1651 return ptr;
1652 }
1653
1654 static unw_rec_list *
1655 output_preds_when ()
1656 {
1657 unw_rec_list *ptr = alloc_record (preds_when);
1658 return ptr;
1659 }
1660
1661 static unw_rec_list *
1662 output_preds_gr (gr)
1663 unsigned int gr;
1664 {
1665 unw_rec_list *ptr = alloc_record (preds_gr);
1666 ptr->r.record.p.gr = gr;
1667 return ptr;
1668 }
1669
1670 static unw_rec_list *
1671 output_preds_psprel (offset)
1672 unsigned int offset;
1673 {
1674 unw_rec_list *ptr = alloc_record (preds_psprel);
1675 ptr->r.record.p.pspoff = offset/4;
1676 return ptr;
1677 }
1678
1679 static unw_rec_list *
1680 output_preds_sprel (offset)
1681 unsigned int offset;
1682 {
1683 unw_rec_list *ptr = alloc_record (preds_sprel);
1684 ptr->r.record.p.spoff = offset/4;
1685 return ptr;
1686 }
1687
1688 static unw_rec_list *
1689 output_fr_mem (mask)
1690 unsigned int mask;
1691 {
1692 unw_rec_list *ptr = alloc_record (fr_mem);
1693 ptr->r.record.p.rmask = mask;
1694 return ptr;
1695 }
1696
1697 static unw_rec_list *
1698 output_frgr_mem (gr_mask, fr_mask)
1699 unsigned int gr_mask;
1700 unsigned int fr_mask;
1701 {
1702 unw_rec_list *ptr = alloc_record (frgr_mem);
1703 ptr->r.record.p.grmask = gr_mask;
1704 ptr->r.record.p.frmask = fr_mask;
1705 return ptr;
1706 }
1707
1708 static unw_rec_list *
1709 output_gr_gr (mask, reg)
1710 unsigned int mask;
1711 unsigned int reg;
1712 {
1713 unw_rec_list *ptr = alloc_record (gr_gr);
1714 ptr->r.record.p.grmask = mask;
1715 ptr->r.record.p.gr = reg;
1716 return ptr;
1717 }
1718
1719 static unw_rec_list *
1720 output_gr_mem (mask)
1721 unsigned int mask;
1722 {
1723 unw_rec_list *ptr = alloc_record (gr_mem);
1724 ptr->r.record.p.rmask = mask;
1725 return ptr;
1726 }
1727
1728 static unw_rec_list *
1729 output_br_mem (unsigned int mask)
1730 {
1731 unw_rec_list *ptr = alloc_record (br_mem);
1732 ptr->r.record.p.brmask = mask;
1733 return ptr;
1734 }
1735
1736 static unw_rec_list *
1737 output_br_gr (save_mask, reg)
1738 unsigned int save_mask;
1739 unsigned int reg;
1740 {
1741 unw_rec_list *ptr = alloc_record (br_gr);
1742 ptr->r.record.p.brmask = save_mask;
1743 ptr->r.record.p.gr = reg;
1744 return ptr;
1745 }
1746
1747 static unw_rec_list *
1748 output_spill_base (offset)
1749 unsigned int offset;
1750 {
1751 unw_rec_list *ptr = alloc_record (spill_base);
1752 ptr->r.record.p.pspoff = offset/4;
1753 return ptr;
1754 }
1755
1756 static unw_rec_list *
1757 output_unat_when ()
1758 {
1759 unw_rec_list *ptr = alloc_record (unat_when);
1760 return ptr;
1761 }
1762
1763 static unw_rec_list *
1764 output_unat_gr (gr)
1765 unsigned int gr;
1766 {
1767 unw_rec_list *ptr = alloc_record (unat_gr);
1768 ptr->r.record.p.gr = gr;
1769 return ptr;
1770 }
1771
1772 static unw_rec_list *
1773 output_unat_psprel (offset)
1774 unsigned int offset;
1775 {
1776 unw_rec_list *ptr = alloc_record (unat_psprel);
1777 ptr->r.record.p.pspoff = offset/4;
1778 return ptr;
1779 }
1780
1781 static unw_rec_list *
1782 output_unat_sprel (offset)
1783 unsigned int offset;
1784 {
1785 unw_rec_list *ptr = alloc_record (unat_sprel);
1786 ptr->r.record.p.spoff = offset/4;
1787 return ptr;
1788 }
1789
1790 static unw_rec_list *
1791 output_lc_when ()
1792 {
1793 unw_rec_list *ptr = alloc_record (lc_when);
1794 return ptr;
1795 }
1796
1797 static unw_rec_list *
1798 output_lc_gr (gr)
1799 unsigned int gr;
1800 {
1801 unw_rec_list *ptr = alloc_record (lc_gr);
1802 ptr->r.record.p.gr = gr;
1803 return ptr;
1804 }
1805
1806 static unw_rec_list *
1807 output_lc_psprel (offset)
1808 unsigned int offset;
1809 {
1810 unw_rec_list *ptr = alloc_record (lc_psprel);
1811 ptr->r.record.p.pspoff = offset/4;
1812 return ptr;
1813 }
1814
1815 static unw_rec_list *
1816 output_lc_sprel (offset)
1817 unsigned int offset;
1818 {
1819 unw_rec_list *ptr = alloc_record (lc_sprel);
1820 ptr->r.record.p.spoff = offset/4;
1821 return ptr;
1822 }
1823
1824 static unw_rec_list *
1825 output_fpsr_when ()
1826 {
1827 unw_rec_list *ptr = alloc_record (fpsr_when);
1828 return ptr;
1829 }
1830
1831 static unw_rec_list *
1832 output_fpsr_gr (gr)
1833 unsigned int gr;
1834 {
1835 unw_rec_list *ptr = alloc_record (fpsr_gr);
1836 ptr->r.record.p.gr = gr;
1837 return ptr;
1838 }
1839
1840 static unw_rec_list *
1841 output_fpsr_psprel (offset)
1842 unsigned int offset;
1843 {
1844 unw_rec_list *ptr = alloc_record (fpsr_psprel);
1845 ptr->r.record.p.pspoff = offset/4;
1846 return ptr;
1847 }
1848
1849 static unw_rec_list *
1850 output_fpsr_sprel (offset)
1851 unsigned int offset;
1852 {
1853 unw_rec_list *ptr = alloc_record (fpsr_sprel);
1854 ptr->r.record.p.spoff = offset/4;
1855 return ptr;
1856 }
1857
1858 static unw_rec_list *
1859 output_priunat_when_gr ()
1860 {
1861 unw_rec_list *ptr = alloc_record (priunat_when_gr);
1862 return ptr;
1863 }
1864
1865 static unw_rec_list *
1866 output_priunat_when_mem ()
1867 {
1868 unw_rec_list *ptr = alloc_record (priunat_when_mem);
1869 return ptr;
1870 }
1871
1872 static unw_rec_list *
1873 output_priunat_gr (gr)
1874 unsigned int gr;
1875 {
1876 unw_rec_list *ptr = alloc_record (priunat_gr);
1877 ptr->r.record.p.gr = gr;
1878 return ptr;
1879 }
1880
1881 static unw_rec_list *
1882 output_priunat_psprel (offset)
1883 unsigned int offset;
1884 {
1885 unw_rec_list *ptr = alloc_record (priunat_psprel);
1886 ptr->r.record.p.pspoff = offset/4;
1887 return ptr;
1888 }
1889
1890 static unw_rec_list *
1891 output_priunat_sprel (offset)
1892 unsigned int offset;
1893 {
1894 unw_rec_list *ptr = alloc_record (priunat_sprel);
1895 ptr->r.record.p.spoff = offset/4;
1896 return ptr;
1897 }
1898
1899 static unw_rec_list *
1900 output_bsp_when ()
1901 {
1902 unw_rec_list *ptr = alloc_record (bsp_when);
1903 return ptr;
1904 }
1905
1906 static unw_rec_list *
1907 output_bsp_gr (gr)
1908 unsigned int gr;
1909 {
1910 unw_rec_list *ptr = alloc_record (bsp_gr);
1911 ptr->r.record.p.gr = gr;
1912 return ptr;
1913 }
1914
1915 static unw_rec_list *
1916 output_bsp_psprel (offset)
1917 unsigned int offset;
1918 {
1919 unw_rec_list *ptr = alloc_record (bsp_psprel);
1920 ptr->r.record.p.pspoff = offset/4;
1921 return ptr;
1922 }
1923
1924 static unw_rec_list *
1925 output_bsp_sprel (offset)
1926 unsigned int offset;
1927 {
1928 unw_rec_list *ptr = alloc_record (bsp_sprel);
1929 ptr->r.record.p.spoff = offset/4;
1930 return ptr;
1931 }
1932
1933 static unw_rec_list *
1934 output_bspstore_when ()
1935 {
1936 unw_rec_list *ptr = alloc_record (bspstore_when);
1937 return ptr;
1938 }
1939
1940 static unw_rec_list *
1941 output_bspstore_gr (gr)
1942 unsigned int gr;
1943 {
1944 unw_rec_list *ptr = alloc_record (bspstore_gr);
1945 ptr->r.record.p.gr = gr;
1946 return ptr;
1947 }
1948
1949 static unw_rec_list *
1950 output_bspstore_psprel (offset)
1951 unsigned int offset;
1952 {
1953 unw_rec_list *ptr = alloc_record (bspstore_psprel);
1954 ptr->r.record.p.pspoff = offset/4;
1955 return ptr;
1956 }
1957
1958 static unw_rec_list *
1959 output_bspstore_sprel (offset)
1960 unsigned int offset;
1961 {
1962 unw_rec_list *ptr = alloc_record (bspstore_sprel);
1963 ptr->r.record.p.spoff = offset/4;
1964 return ptr;
1965 }
1966
1967 static unw_rec_list *
1968 output_rnat_when ()
1969 {
1970 unw_rec_list *ptr = alloc_record (rnat_when);
1971 return ptr;
1972 }
1973
1974 static unw_rec_list *
1975 output_rnat_gr (gr)
1976 unsigned int gr;
1977 {
1978 unw_rec_list *ptr = alloc_record (rnat_gr);
1979 ptr->r.record.p.gr = gr;
1980 return ptr;
1981 }
1982
1983 static unw_rec_list *
1984 output_rnat_psprel (offset)
1985 unsigned int offset;
1986 {
1987 unw_rec_list *ptr = alloc_record (rnat_psprel);
1988 ptr->r.record.p.pspoff = offset/4;
1989 return ptr;
1990 }
1991
1992 static unw_rec_list *
1993 output_rnat_sprel (offset)
1994 unsigned int offset;
1995 {
1996 unw_rec_list *ptr = alloc_record (rnat_sprel);
1997 ptr->r.record.p.spoff = offset/4;
1998 return ptr;
1999 }
2000
2001 static unw_rec_list *
2002 output_unwabi (abi, context)
2003 unsigned long abi;
2004 unsigned long context;
2005 {
2006 unw_rec_list *ptr = alloc_record (unwabi);
2007 ptr->r.record.p.abi = abi;
2008 ptr->r.record.p.context = context;
2009 return ptr;
2010 }
2011
2012 static unw_rec_list *
2013 output_epilogue (unsigned long ecount)
2014 {
2015 unw_rec_list *ptr = alloc_record (epilogue);
2016 ptr->r.record.b.ecount = ecount;
2017 return ptr;
2018 }
2019
2020 static unw_rec_list *
2021 output_label_state (unsigned long label)
2022 {
2023 unw_rec_list *ptr = alloc_record (label_state);
2024 ptr->r.record.b.label = label;
2025 return ptr;
2026 }
2027
2028 static unw_rec_list *
2029 output_copy_state (unsigned long label)
2030 {
2031 unw_rec_list *ptr = alloc_record (copy_state);
2032 ptr->r.record.b.label = label;
2033 return ptr;
2034 }
2035
2036 static unw_rec_list *
2037 output_spill_psprel (ab, reg, offset)
2038 unsigned int ab;
2039 unsigned int reg;
2040 unsigned int offset;
2041 {
2042 unw_rec_list *ptr = alloc_record (spill_psprel);
2043 ptr->r.record.x.ab = ab;
2044 ptr->r.record.x.reg = reg;
2045 ptr->r.record.x.pspoff = offset/4;
2046 return ptr;
2047 }
2048
2049 static unw_rec_list *
2050 output_spill_sprel (ab, reg, offset)
2051 unsigned int ab;
2052 unsigned int reg;
2053 unsigned int offset;
2054 {
2055 unw_rec_list *ptr = alloc_record (spill_sprel);
2056 ptr->r.record.x.ab = ab;
2057 ptr->r.record.x.reg = reg;
2058 ptr->r.record.x.spoff = offset/4;
2059 return ptr;
2060 }
2061
2062 static unw_rec_list *
2063 output_spill_psprel_p (ab, reg, offset, predicate)
2064 unsigned int ab;
2065 unsigned int reg;
2066 unsigned int offset;
2067 unsigned int predicate;
2068 {
2069 unw_rec_list *ptr = alloc_record (spill_psprel_p);
2070 ptr->r.record.x.ab = ab;
2071 ptr->r.record.x.reg = reg;
2072 ptr->r.record.x.pspoff = offset/4;
2073 ptr->r.record.x.qp = predicate;
2074 return ptr;
2075 }
2076
2077 static unw_rec_list *
2078 output_spill_sprel_p (ab, reg, offset, predicate)
2079 unsigned int ab;
2080 unsigned int reg;
2081 unsigned int offset;
2082 unsigned int predicate;
2083 {
2084 unw_rec_list *ptr = alloc_record (spill_sprel_p);
2085 ptr->r.record.x.ab = ab;
2086 ptr->r.record.x.reg = reg;
2087 ptr->r.record.x.spoff = offset/4;
2088 ptr->r.record.x.qp = predicate;
2089 return ptr;
2090 }
2091
2092 static unw_rec_list *
2093 output_spill_reg (ab, reg, targ_reg, xy)
2094 unsigned int ab;
2095 unsigned int reg;
2096 unsigned int targ_reg;
2097 unsigned int xy;
2098 {
2099 unw_rec_list *ptr = alloc_record (spill_reg);
2100 ptr->r.record.x.ab = ab;
2101 ptr->r.record.x.reg = reg;
2102 ptr->r.record.x.treg = targ_reg;
2103 ptr->r.record.x.xy = xy;
2104 return ptr;
2105 }
2106
2107 static unw_rec_list *
2108 output_spill_reg_p (ab, reg, targ_reg, xy, predicate)
2109 unsigned int ab;
2110 unsigned int reg;
2111 unsigned int targ_reg;
2112 unsigned int xy;
2113 unsigned int predicate;
2114 {
2115 unw_rec_list *ptr = alloc_record (spill_reg_p);
2116 ptr->r.record.x.ab = ab;
2117 ptr->r.record.x.reg = reg;
2118 ptr->r.record.x.treg = targ_reg;
2119 ptr->r.record.x.xy = xy;
2120 ptr->r.record.x.qp = predicate;
2121 return ptr;
2122 }
2123
2124 /* Given a unw_rec_list process the correct format with the
2125 specified function. */
2126 static void
2127 process_one_record (ptr, f)
2128 unw_rec_list *ptr;
2129 vbyte_func f;
2130 {
2131 unsigned long fr_mask, gr_mask;
2132
2133 switch (ptr->r.type)
2134 {
2135 case gr_mem:
2136 case fr_mem:
2137 case br_mem:
2138 case frgr_mem:
2139 /* these are taken care of by prologue/prologue_gr */
2140 break;
2141
2142 case prologue_gr:
2143 case prologue:
2144 if (ptr->r.type == prologue_gr)
2145 output_R2_format (f, ptr->r.record.r.grmask,
2146 ptr->r.record.r.grsave, ptr->r.record.r.rlen);
2147 else
2148 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2149
2150 /* output descriptor(s) for union of register spills (if any): */
2151 gr_mask = ptr->r.record.r.mask.gr_mem;
2152 fr_mask = ptr->r.record.r.mask.fr_mem;
2153 if (fr_mask)
2154 {
2155 if ((fr_mask & ~0xfUL) == 0)
2156 output_P6_format (f, fr_mem, fr_mask);
2157 else
2158 {
2159 output_P5_format (f, gr_mask, fr_mask);
2160 gr_mask = 0;
2161 }
2162 }
2163 if (gr_mask)
2164 output_P6_format (f, gr_mem, gr_mask);
2165 if (ptr->r.record.r.mask.br_mem)
2166 output_P1_format (f, ptr->r.record.r.mask.br_mem);
2167
2168 /* output imask descriptor if necessary: */
2169 if (ptr->r.record.r.mask.i)
2170 output_P4_format (f, ptr->r.record.r.mask.i,
2171 ptr->r.record.r.imask_size);
2172 break;
2173
2174 case body:
2175 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2176 break;
2177 case mem_stack_f:
2178 case mem_stack_v:
2179 output_P7_format (f, ptr->r.type, ptr->r.record.p.t,
2180 ptr->r.record.p.size);
2181 break;
2182 case psp_gr:
2183 case rp_gr:
2184 case pfs_gr:
2185 case preds_gr:
2186 case unat_gr:
2187 case lc_gr:
2188 case fpsr_gr:
2189 case priunat_gr:
2190 case bsp_gr:
2191 case bspstore_gr:
2192 case rnat_gr:
2193 output_P3_format (f, ptr->r.type, ptr->r.record.p.gr);
2194 break;
2195 case rp_br:
2196 output_P3_format (f, rp_br, ptr->r.record.p.br);
2197 break;
2198 case psp_sprel:
2199 output_P7_format (f, psp_sprel, ptr->r.record.p.spoff, 0);
2200 break;
2201 case rp_when:
2202 case pfs_when:
2203 case preds_when:
2204 case unat_when:
2205 case lc_when:
2206 case fpsr_when:
2207 output_P7_format (f, ptr->r.type, ptr->r.record.p.t, 0);
2208 break;
2209 case rp_psprel:
2210 case pfs_psprel:
2211 case preds_psprel:
2212 case unat_psprel:
2213 case lc_psprel:
2214 case fpsr_psprel:
2215 case spill_base:
2216 output_P7_format (f, ptr->r.type, ptr->r.record.p.pspoff, 0);
2217 break;
2218 case rp_sprel:
2219 case pfs_sprel:
2220 case preds_sprel:
2221 case unat_sprel:
2222 case lc_sprel:
2223 case fpsr_sprel:
2224 case priunat_sprel:
2225 case bsp_sprel:
2226 case bspstore_sprel:
2227 case rnat_sprel:
2228 output_P8_format (f, ptr->r.type, ptr->r.record.p.spoff);
2229 break;
2230 case gr_gr:
2231 output_P9_format (f, ptr->r.record.p.grmask, ptr->r.record.p.gr);
2232 break;
2233 case br_gr:
2234 output_P2_format (f, ptr->r.record.p.brmask, ptr->r.record.p.gr);
2235 break;
2236 case spill_mask:
2237 as_bad ("spill_mask record unimplemented.");
2238 break;
2239 case priunat_when_gr:
2240 case priunat_when_mem:
2241 case bsp_when:
2242 case bspstore_when:
2243 case rnat_when:
2244 output_P8_format (f, ptr->r.type, ptr->r.record.p.t);
2245 break;
2246 case priunat_psprel:
2247 case bsp_psprel:
2248 case bspstore_psprel:
2249 case rnat_psprel:
2250 output_P8_format (f, ptr->r.type, ptr->r.record.p.pspoff);
2251 break;
2252 case unwabi:
2253 output_P10_format (f, ptr->r.record.p.abi, ptr->r.record.p.context);
2254 break;
2255 case epilogue:
2256 output_B3_format (f, ptr->r.record.b.ecount, ptr->r.record.b.t);
2257 break;
2258 case label_state:
2259 case copy_state:
2260 output_B4_format (f, ptr->r.type, ptr->r.record.b.label);
2261 break;
2262 case spill_psprel:
2263 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2264 ptr->r.record.x.reg, ptr->r.record.x.t,
2265 ptr->r.record.x.pspoff);
2266 break;
2267 case spill_sprel:
2268 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2269 ptr->r.record.x.reg, ptr->r.record.x.t,
2270 ptr->r.record.x.spoff);
2271 break;
2272 case spill_reg:
2273 output_X2_format (f, ptr->r.record.x.ab, ptr->r.record.x.reg,
2274 ptr->r.record.x.xy >> 1, ptr->r.record.x.xy,
2275 ptr->r.record.x.treg, ptr->r.record.x.t);
2276 break;
2277 case spill_psprel_p:
2278 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2279 ptr->r.record.x.ab, ptr->r.record.x.reg,
2280 ptr->r.record.x.t, ptr->r.record.x.pspoff);
2281 break;
2282 case spill_sprel_p:
2283 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2284 ptr->r.record.x.ab, ptr->r.record.x.reg,
2285 ptr->r.record.x.t, ptr->r.record.x.spoff);
2286 break;
2287 case spill_reg_p:
2288 output_X4_format (f, ptr->r.record.x.qp, ptr->r.record.x.ab,
2289 ptr->r.record.x.reg, ptr->r.record.x.xy >> 1,
2290 ptr->r.record.x.xy, ptr->r.record.x.treg,
2291 ptr->r.record.x.t);
2292 break;
2293 default:
2294 as_bad ("record_type_not_valid");
2295 break;
2296 }
2297 }
2298
2299 /* Given a unw_rec_list list, process all the records with
2300 the specified function. */
2301 static void
2302 process_unw_records (list, f)
2303 unw_rec_list *list;
2304 vbyte_func f;
2305 {
2306 unw_rec_list *ptr;
2307 for (ptr = list; ptr; ptr = ptr->next)
2308 process_one_record (ptr, f);
2309 }
2310
2311 /* Determine the size of a record list in bytes. */
2312 static int
2313 calc_record_size (list)
2314 unw_rec_list *list;
2315 {
2316 vbyte_count = 0;
2317 process_unw_records (list, count_output);
2318 return vbyte_count;
2319 }
2320
2321 /* Update IMASK bitmask to reflect the fact that one or more registers
2322 of type TYPE are saved starting at instruction with index T. If N
2323 bits are set in REGMASK, it is assumed that instructions T through
2324 T+N-1 save these registers.
2325
2326 TYPE values:
2327 0: no save
2328 1: instruction saves next fp reg
2329 2: instruction saves next general reg
2330 3: instruction saves next branch reg */
2331 static void
2332 set_imask (region, regmask, t, type)
2333 unw_rec_list *region;
2334 unsigned long regmask;
2335 unsigned long t;
2336 unsigned int type;
2337 {
2338 unsigned char *imask;
2339 unsigned long imask_size;
2340 unsigned int i;
2341 int pos;
2342
2343 imask = region->r.record.r.mask.i;
2344 imask_size = region->r.record.r.imask_size;
2345 if (!imask)
2346 {
2347 imask_size = (region->r.record.r.rlen*2 + 7)/8 + 1;
2348 imask = xmalloc (imask_size);
2349 memset (imask, 0, imask_size);
2350
2351 region->r.record.r.imask_size = imask_size;
2352 region->r.record.r.mask.i = imask;
2353 }
2354
2355 i = (t/4) + 1;
2356 pos = 2*(3 - t%4);
2357 while (regmask)
2358 {
2359 if (i >= imask_size)
2360 {
2361 as_bad ("Ignoring attempt to spill beyond end of region");
2362 return;
2363 }
2364
2365 imask[i] |= (type & 0x3) << pos;
2366
2367 regmask &= (regmask - 1);
2368 pos -= 2;
2369 if (pos < 0)
2370 {
2371 pos = 0;
2372 ++i;
2373 }
2374 }
2375 }
2376
2377 static int
2378 count_bits (unsigned long mask)
2379 {
2380 int n = 0;
2381
2382 while (mask)
2383 {
2384 mask &= mask - 1;
2385 ++n;
2386 }
2387 return n;
2388 }
2389
2390 unsigned long
2391 slot_index (unsigned long slot_addr, unsigned long first_addr)
2392 {
2393 return (3*((slot_addr >> 4) - (first_addr >> 4))
2394 + ((slot_addr & 0x3) - (first_addr & 0x3)));
2395 }
2396
2397 /* Given a complete record list, process any records which have
2398 unresolved fields, (ie length counts for a prologue). After
2399 this has been run, all neccessary information should be available
2400 within each record to generate an image. */
2401 static void
2402 fixup_unw_records (list)
2403 unw_rec_list *list;
2404 {
2405 unw_rec_list *ptr, *region = 0;
2406 unsigned long first_addr = 0, rlen = 0, t;
2407
2408 for (ptr = list; ptr; ptr = ptr->next)
2409 {
2410 if (ptr->slot_number == SLOT_NUM_NOT_SET)
2411 as_bad (" Insn slot not set in unwind record.");
2412 t = slot_index (ptr->slot_number, first_addr);
2413 switch (ptr->r.type)
2414 {
2415 case prologue:
2416 case prologue_gr:
2417 case body:
2418 {
2419 unw_rec_list *last;
2420 int size, dir_len = 0;
2421 unsigned long last_addr;
2422
2423 first_addr = ptr->slot_number;
2424 ptr->slot_number = 0;
2425 /* Find either the next body/prologue start, or the end of
2426 the list, and determine the size of the region. */
2427 last_addr = unwind.next_slot_number;
2428 for (last = ptr->next; last != NULL; last = last->next)
2429 if (last->r.type == prologue || last->r.type == prologue_gr
2430 || last->r.type == body)
2431 {
2432 last_addr = last->slot_number;
2433 break;
2434 }
2435 else if (!last->next)
2436 {
2437 /* In the absence of an explicit .body directive,
2438 the prologue ends after the last instruction
2439 covered by an unwind directive. */
2440 if (ptr->r.type != body)
2441 {
2442 last_addr = last->slot_number;
2443 switch (last->r.type)
2444 {
2445 case frgr_mem:
2446 dir_len = (count_bits (last->r.record.p.frmask)
2447 + count_bits (last->r.record.p.grmask));
2448 break;
2449 case fr_mem:
2450 case gr_mem:
2451 dir_len += count_bits (last->r.record.p.rmask);
2452 break;
2453 case br_mem:
2454 case br_gr:
2455 dir_len += count_bits (last->r.record.p.brmask);
2456 break;
2457 case gr_gr:
2458 dir_len += count_bits (last->r.record.p.grmask);
2459 break;
2460 default:
2461 dir_len = 1;
2462 break;
2463 }
2464 }
2465 break;
2466 }
2467 size = slot_index (last_addr, first_addr) + dir_len;
2468 rlen = ptr->r.record.r.rlen = size;
2469 region = ptr;
2470 break;
2471 }
2472 case epilogue:
2473 ptr->r.record.b.t = rlen - 1 - t;
2474 break;
2475
2476 case mem_stack_f:
2477 case mem_stack_v:
2478 case rp_when:
2479 case pfs_when:
2480 case preds_when:
2481 case unat_when:
2482 case lc_when:
2483 case fpsr_when:
2484 case priunat_when_gr:
2485 case priunat_when_mem:
2486 case bsp_when:
2487 case bspstore_when:
2488 case rnat_when:
2489 ptr->r.record.p.t = t;
2490 break;
2491
2492 case spill_reg:
2493 case spill_sprel:
2494 case spill_psprel:
2495 case spill_reg_p:
2496 case spill_sprel_p:
2497 case spill_psprel_p:
2498 ptr->r.record.x.t = t;
2499 break;
2500
2501 case frgr_mem:
2502 if (!region)
2503 {
2504 as_bad ("frgr_mem record before region record!\n");
2505 return;
2506 }
2507 region->r.record.r.mask.fr_mem |= ptr->r.record.p.frmask;
2508 region->r.record.r.mask.gr_mem |= ptr->r.record.p.grmask;
2509 set_imask (region, ptr->r.record.p.frmask, t, 1);
2510 set_imask (region, ptr->r.record.p.grmask, t, 2);
2511 break;
2512 case fr_mem:
2513 if (!region)
2514 {
2515 as_bad ("fr_mem record before region record!\n");
2516 return;
2517 }
2518 region->r.record.r.mask.fr_mem |= ptr->r.record.p.rmask;
2519 set_imask (region, ptr->r.record.p.rmask, t, 1);
2520 break;
2521 case gr_mem:
2522 if (!region)
2523 {
2524 as_bad ("gr_mem record before region record!\n");
2525 return;
2526 }
2527 region->r.record.r.mask.gr_mem |= ptr->r.record.p.rmask;
2528 set_imask (region, ptr->r.record.p.rmask, t, 2);
2529 break;
2530 case br_mem:
2531 if (!region)
2532 {
2533 as_bad ("br_mem record before region record!\n");
2534 return;
2535 }
2536 region->r.record.r.mask.br_mem |= ptr->r.record.p.brmask;
2537 set_imask (region, ptr->r.record.p.brmask, t, 3);
2538 break;
2539
2540 case gr_gr:
2541 if (!region)
2542 {
2543 as_bad ("gr_gr record before region record!\n");
2544 return;
2545 }
2546 set_imask (region, ptr->r.record.p.grmask, t, 2);
2547 break;
2548 case br_gr:
2549 if (!region)
2550 {
2551 as_bad ("br_gr record before region record!\n");
2552 return;
2553 }
2554 set_imask (region, ptr->r.record.p.brmask, t, 3);
2555 break;
2556
2557 default:
2558 break;
2559 }
2560 }
2561 }
2562
2563 /* Generate an unwind image from a record list. Returns the number of
2564 bytes in the resulting image. The memory image itselof is returned
2565 in the 'ptr' parameter. */
2566 static int
2567 output_unw_records (list, ptr)
2568 unw_rec_list *list;
2569 void **ptr;
2570 {
2571 int size, x, extra = 0;
2572 unsigned char *mem;
2573
2574 fixup_unw_records (list);
2575 size = calc_record_size (list);
2576
2577 /* pad to 8 byte boundry. */
2578 x = size % 8;
2579 if (x != 0)
2580 extra = 8 - x;
2581 /* Add 8 for the header + 8 more bytes for the personality offset. */
2582 mem = xmalloc (size + extra + 16);
2583
2584 vbyte_mem_ptr = mem + 8;
2585 /* Clear the padding area and personality. */
2586 memset (mem + 8 + size, 0 , extra + 8);
2587 /* Initialize the header area. */
2588 md_number_to_chars (mem, ( ((bfd_vma) 1 << 48) /* version */
2589 | ((bfd_vma) 3 << 32) /* U & E handler flags */
2590 | ((size + extra) / 8)), /* length (dwords) */
2591 8);
2592
2593 process_unw_records (list, output_vbyte_mem);
2594
2595 *ptr = mem;
2596 return size + extra + 16;
2597 }
2598
2599 static int
2600 convert_expr_to_ab_reg (e, ab, regp)
2601 expressionS *e;
2602 unsigned int *ab;
2603 unsigned int *regp;
2604 {
2605 unsigned int reg;
2606
2607 if (e->X_op != O_register)
2608 return 0;
2609
2610 reg = e->X_add_number;
2611 if (reg >= REG_GR + 4 && reg <= REG_GR + 7)
2612 {
2613 *ab = 0;
2614 *regp = reg - REG_GR;
2615 }
2616 else if ((reg >= REG_FR + 2 && reg <= REG_FR + 5)
2617 || (reg >= REG_FR + 16 && reg <= REG_FR + 31))
2618 {
2619 *ab = 1;
2620 *regp = reg - REG_FR;
2621 }
2622 else if (reg >= REG_BR + 1 && reg <= REG_BR + 5)
2623 {
2624 *ab = 2;
2625 *regp = reg - REG_BR;
2626 }
2627 else
2628 {
2629 *ab = 3;
2630 switch (reg)
2631 {
2632 case REG_PR: *regp = 0; break;
2633 case REG_PSP: *regp = 1; break;
2634 case REG_PRIUNAT: *regp = 2; break;
2635 case REG_BR + 0: *regp = 3; break;
2636 case REG_AR + AR_BSP: *regp = 4; break;
2637 case REG_AR + AR_BSPSTORE: *regp = 5; break;
2638 case REG_AR + AR_RNAT: *regp = 6; break;
2639 case REG_AR + AR_UNAT: *regp = 7; break;
2640 case REG_AR + AR_FPSR: *regp = 8; break;
2641 case REG_AR + AR_PFS: *regp = 9; break;
2642 case REG_AR + AR_LC: *regp = 10; break;
2643
2644 default:
2645 return 0;
2646 }
2647 }
2648 return 1;
2649 }
2650
2651 static int
2652 convert_expr_to_xy_reg (e, xy, regp)
2653 expressionS *e;
2654 unsigned int *xy;
2655 unsigned int *regp;
2656 {
2657 unsigned int reg;
2658
2659 if (e->X_op != O_register)
2660 return 0;
2661
2662 reg = e->X_add_number;
2663
2664 if (reg >= REG_GR && reg <= REG_GR + 127)
2665 {
2666 *xy = 0;
2667 *regp = reg - REG_GR;
2668 }
2669 else if (reg >= REG_FR && reg <= REG_FR + 127)
2670 {
2671 *xy = 1;
2672 *regp = reg - REG_FR;
2673 }
2674 else if (reg >= REG_BR && reg <= REG_BR + 7)
2675 {
2676 *xy = 2;
2677 *regp = reg - REG_BR;
2678 }
2679 else
2680 return -1;
2681 return 1;
2682 }
2683
2684 static void
2685 dot_radix (dummy)
2686 int dummy;
2687 {
2688 int radix;
2689
2690 SKIP_WHITESPACE ();
2691 radix = *input_line_pointer++;
2692
2693 if (radix != 'C' && !is_end_of_line[(unsigned char) radix])
2694 {
2695 as_bad ("Radix `%c' unsupported", *input_line_pointer);
2696 ignore_rest_of_line ();
2697 return;
2698 }
2699 }
2700
2701 /* .sbss, .bss etc. are macros that expand into ".section SECNAME". */
2702 static void
2703 dot_special_section (which)
2704 int which;
2705 {
2706 set_section ((char *) special_section_name[which]);
2707 }
2708
2709 static void
2710 add_unwind_entry (ptr)
2711 unw_rec_list *ptr;
2712 {
2713 if (unwind.tail)
2714 unwind.tail->next = ptr;
2715 else
2716 unwind.list = ptr;
2717 unwind.tail = ptr;
2718
2719 /* The current entry can in fact be a chain of unwind entries. */
2720 if (unwind.current_entry == NULL)
2721 unwind.current_entry = ptr;
2722 }
2723
2724 static void
2725 dot_fframe (dummy)
2726 int dummy;
2727 {
2728 expressionS e;
2729
2730 parse_operand (&e);
2731
2732 if (e.X_op != O_constant)
2733 as_bad ("Operand to .fframe must be a constant");
2734 else
2735 add_unwind_entry (output_mem_stack_f (e.X_add_number));
2736 }
2737
2738 static void
2739 dot_vframe (dummy)
2740 int dummy;
2741 {
2742 expressionS e;
2743 unsigned reg;
2744
2745 parse_operand (&e);
2746 reg = e.X_add_number - REG_GR;
2747 if (e.X_op == O_register && reg < 128)
2748 {
2749 add_unwind_entry (output_mem_stack_v ());
2750 add_unwind_entry (output_psp_gr (reg));
2751 }
2752 else
2753 as_bad ("First operand to .vframe must be a general register");
2754 }
2755
2756 static void
2757 dot_vframesp (dummy)
2758 int dummy;
2759 {
2760 expressionS e;
2761
2762 parse_operand (&e);
2763 if (e.X_op == O_constant)
2764 {
2765 add_unwind_entry (output_mem_stack_v ());
2766 add_unwind_entry (output_psp_sprel (e.X_add_number));
2767 }
2768 else
2769 as_bad ("First operand to .vframesp must be a general register");
2770 }
2771
2772 static void
2773 dot_vframepsp (dummy)
2774 int dummy;
2775 {
2776 expressionS e;
2777
2778 parse_operand (&e);
2779 if (e.X_op == O_constant)
2780 {
2781 add_unwind_entry (output_mem_stack_v ());
2782 add_unwind_entry (output_psp_sprel (e.X_add_number));
2783 }
2784 else
2785 as_bad ("First operand to .vframepsp must be a general register");
2786 }
2787
2788 static void
2789 dot_save (dummy)
2790 int dummy;
2791 {
2792 expressionS e1, e2;
2793 int sep;
2794 int reg1, reg2;
2795
2796 sep = parse_operand (&e1);
2797 if (sep != ',')
2798 as_bad ("No second operand to .save");
2799 sep = parse_operand (&e2);
2800
2801 reg1 = e1.X_add_number;
2802 reg2 = e2.X_add_number - REG_GR;
2803
2804 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
2805 if (e1.X_op == O_register)
2806 {
2807 if (e2.X_op == O_register && reg2 >=0 && reg2 < 128)
2808 {
2809 switch (reg1)
2810 {
2811 case REG_AR + AR_BSP:
2812 add_unwind_entry (output_bsp_when ());
2813 add_unwind_entry (output_bsp_gr (reg2));
2814 break;
2815 case REG_AR + AR_BSPSTORE:
2816 add_unwind_entry (output_bspstore_when ());
2817 add_unwind_entry (output_bspstore_gr (reg2));
2818 break;
2819 case REG_AR + AR_RNAT:
2820 add_unwind_entry (output_rnat_when ());
2821 add_unwind_entry (output_rnat_gr (reg2));
2822 break;
2823 case REG_AR+AR_UNAT:
2824 add_unwind_entry (output_unat_when ());
2825 add_unwind_entry (output_unat_gr (reg2));
2826 break;
2827 case REG_AR+AR_FPSR:
2828 add_unwind_entry (output_fpsr_when ());
2829 add_unwind_entry (output_fpsr_gr (reg2));
2830 break;
2831 case REG_AR+AR_PFS:
2832 add_unwind_entry (output_pfs_when ());
2833 add_unwind_entry (output_pfs_gr (reg2));
2834 break;
2835 case REG_AR+AR_LC:
2836 add_unwind_entry (output_lc_when ());
2837 add_unwind_entry (output_lc_gr (reg2));
2838 break;
2839 case REG_BR:
2840 add_unwind_entry (output_rp_when ());
2841 add_unwind_entry (output_rp_gr (reg2));
2842 break;
2843 case REG_PR:
2844 add_unwind_entry (output_preds_when ());
2845 add_unwind_entry (output_preds_gr (reg2));
2846 break;
2847 case REG_PRIUNAT:
2848 add_unwind_entry (output_priunat_when_gr ());
2849 add_unwind_entry (output_priunat_gr (reg2));
2850 break;
2851 default:
2852 as_bad ("First operand not a valid register");
2853 }
2854 }
2855 else
2856 as_bad (" Second operand not a valid register");
2857 }
2858 else
2859 as_bad ("First operand not a register");
2860 }
2861
2862 static void
2863 dot_restore (dummy)
2864 int dummy;
2865 {
2866 expressionS e1, e2;
2867 unsigned long ecount = 0;
2868 int sep;
2869
2870 sep = parse_operand (&e1);
2871 if (e1.X_op != O_register || e1.X_add_number != REG_GR + 12)
2872 {
2873 as_bad ("First operand to .restore must be stack pointer (sp)");
2874 return;
2875 }
2876
2877 if (sep == ',')
2878 {
2879 parse_operand (&e2);
2880 if (e1.X_op != O_constant)
2881 {
2882 as_bad ("Second operand to .restore must be constant");
2883 return;
2884 }
2885 ecount = e1.X_op;
2886 }
2887 add_unwind_entry (output_epilogue (ecount));
2888 }
2889
2890 static void
2891 dot_restorereg (dummy)
2892 int dummy;
2893 {
2894 unsigned int ab, reg;
2895 expressionS e;
2896
2897 parse_operand (&e);
2898
2899 if (!convert_expr_to_ab_reg (&e, &ab, &reg))
2900 {
2901 as_bad ("First operand to .restorereg must be a preserved register");
2902 return;
2903 }
2904 add_unwind_entry (output_spill_reg (ab, reg, 0, 0));
2905 }
2906
2907 static void
2908 dot_restorereg_p (dummy)
2909 int dummy;
2910 {
2911 unsigned int qp, ab, reg;
2912 expressionS e1, e2;
2913 int sep;
2914
2915 sep = parse_operand (&e1);
2916 if (sep != ',')
2917 {
2918 as_bad ("No second operand to .restorereg.p");
2919 return;
2920 }
2921
2922 parse_operand (&e2);
2923
2924 qp = e1.X_add_number - REG_P;
2925 if (e1.X_op != O_register || qp > 63)
2926 {
2927 as_bad ("First operand to .restorereg.p must be a predicate");
2928 return;
2929 }
2930
2931 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
2932 {
2933 as_bad ("Second operand to .restorereg.p must be a preserved register");
2934 return;
2935 }
2936 add_unwind_entry (output_spill_reg_p (ab, reg, 0, 0, qp));
2937 }
2938
2939 static int
2940 generate_unwind_image ()
2941 {
2942 int size;
2943 unsigned char *unw_rec;
2944
2945 /* Force out pending instructions, to make sure all unwind records have
2946 a valid slot_number field. */
2947 ia64_flush_insns ();
2948
2949 /* Generate the unwind record. */
2950 size = output_unw_records (unwind.list, (void **) &unw_rec);
2951 if (size % 8 != 0)
2952 as_bad ("Unwind record is not a multiple of 8 bytes.");
2953
2954 /* If there are unwind records, switch sections, and output the info. */
2955 if (size != 0)
2956 {
2957 unsigned char *where;
2958 expressionS exp;
2959 set_section ((char *) special_section_name[SPECIAL_SECTION_UNWIND_INFO]);
2960
2961 /* Set expression which points to start of unwind descriptor area. */
2962 unwind.info = expr_build_dot ();
2963
2964 where = (unsigned char *)frag_more (size);
2965
2966 /* Issue a label for this address, and keep track of it to put it
2967 in the unwind section. */
2968
2969 /* Copy the information from the unwind record into this section. The
2970 data is already in the correct byte order. */
2971 memcpy (where, unw_rec, size);
2972 /* Add the personality address to the image. */
2973 if (unwind.personality_routine != 0)
2974 {
2975 exp.X_op = O_symbol;
2976 exp.X_add_symbol = unwind.personality_routine;
2977 exp.X_add_number = 0;
2978 fix_new_exp (frag_now, frag_now_fix () - 8, 8,
2979 &exp, 0, BFD_RELOC_IA64_LTOFF_FPTR64LSB);
2980 unwind.personality_routine = 0;
2981 }
2982 obj_elf_previous (0);
2983 }
2984
2985 free_list_records (unwind.list);
2986 unwind.list = unwind.tail = unwind.current_entry = NULL;
2987
2988 return size;
2989 }
2990
2991 static void
2992 dot_handlerdata (dummy)
2993 int dummy;
2994 {
2995 generate_unwind_image ();
2996 demand_empty_rest_of_line ();
2997 }
2998
2999 static void
3000 dot_unwentry (dummy)
3001 int dummy;
3002 {
3003 demand_empty_rest_of_line ();
3004 }
3005
3006 static void
3007 dot_altrp (dummy)
3008 int dummy;
3009 {
3010 expressionS e;
3011 unsigned reg;
3012
3013 parse_operand (&e);
3014 reg = e.X_add_number - REG_BR;
3015 if (e.X_op == O_register && reg < 8)
3016 add_unwind_entry (output_rp_br (reg));
3017 else
3018 as_bad ("First operand not a valid branch register");
3019 }
3020
3021 static void
3022 dot_savemem (psprel)
3023 int psprel;
3024 {
3025 expressionS e1, e2;
3026 int sep;
3027 int reg1, val;
3028
3029 sep = parse_operand (&e1);
3030 if (sep != ',')
3031 as_bad ("No second operand to .save%ssp", psprel ? "p" : "");
3032 sep = parse_operand (&e2);
3033
3034 reg1 = e1.X_add_number;
3035 val = e2.X_add_number;
3036
3037 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
3038 if (e1.X_op == O_register)
3039 {
3040 if (e2.X_op == O_constant)
3041 {
3042 switch (reg1)
3043 {
3044 case REG_AR + AR_BSP:
3045 add_unwind_entry (output_bsp_when ());
3046 add_unwind_entry ((psprel
3047 ? output_bsp_psprel
3048 : output_bsp_sprel) (val));
3049 break;
3050 case REG_AR + AR_BSPSTORE:
3051 add_unwind_entry (output_bspstore_when ());
3052 add_unwind_entry ((psprel
3053 ? output_bspstore_psprel
3054 : output_bspstore_sprel) (val));
3055 break;
3056 case REG_AR + AR_RNAT:
3057 add_unwind_entry (output_rnat_when ());
3058 add_unwind_entry ((psprel
3059 ? output_rnat_psprel
3060 : output_rnat_sprel) (val));
3061 break;
3062 case REG_AR + AR_UNAT:
3063 add_unwind_entry (output_unat_when ());
3064 add_unwind_entry ((psprel
3065 ? output_unat_psprel
3066 : output_unat_sprel) (val));
3067 break;
3068 case REG_AR + AR_FPSR:
3069 add_unwind_entry (output_fpsr_when ());
3070 add_unwind_entry ((psprel
3071 ? output_fpsr_psprel
3072 : output_fpsr_sprel) (val));
3073 break;
3074 case REG_AR + AR_PFS:
3075 add_unwind_entry (output_pfs_when ());
3076 add_unwind_entry ((psprel
3077 ? output_pfs_psprel
3078 : output_pfs_sprel) (val));
3079 break;
3080 case REG_AR + AR_LC:
3081 add_unwind_entry (output_lc_when ());
3082 add_unwind_entry ((psprel
3083 ? output_lc_psprel
3084 : output_lc_sprel) (val));
3085 break;
3086 case REG_BR:
3087 add_unwind_entry (output_rp_when ());
3088 add_unwind_entry ((psprel
3089 ? output_rp_psprel
3090 : output_rp_sprel) (val));
3091 break;
3092 case REG_PR:
3093 add_unwind_entry (output_preds_when ());
3094 add_unwind_entry ((psprel
3095 ? output_preds_psprel
3096 : output_preds_sprel) (val));
3097 break;
3098 case REG_PRIUNAT:
3099 add_unwind_entry (output_priunat_when_mem ());
3100 add_unwind_entry ((psprel
3101 ? output_priunat_psprel
3102 : output_priunat_sprel) (val));
3103 break;
3104 default:
3105 as_bad ("First operand not a valid register");
3106 }
3107 }
3108 else
3109 as_bad (" Second operand not a valid constant");
3110 }
3111 else
3112 as_bad ("First operand not a register");
3113 }
3114
3115 static void
3116 dot_saveg (dummy)
3117 int dummy;
3118 {
3119 expressionS e1, e2;
3120 int sep;
3121 sep = parse_operand (&e1);
3122 if (sep == ',')
3123 parse_operand (&e2);
3124
3125 if (e1.X_op != O_constant)
3126 as_bad ("First operand to .save.g must be a constant.");
3127 else
3128 {
3129 int grmask = e1.X_add_number;
3130 if (sep != ',')
3131 add_unwind_entry (output_gr_mem (grmask));
3132 else
3133 {
3134 int reg = e2.X_add_number - REG_GR;
3135 if (e2.X_op == O_register && reg >=0 && reg < 128)
3136 add_unwind_entry (output_gr_gr (grmask, reg));
3137 else
3138 as_bad ("Second operand is an invalid register.");
3139 }
3140 }
3141 }
3142
3143 static void
3144 dot_savef (dummy)
3145 int dummy;
3146 {
3147 expressionS e1;
3148 int sep;
3149 sep = parse_operand (&e1);
3150
3151 if (e1.X_op != O_constant)
3152 as_bad ("Operand to .save.f must be a constant.");
3153 else
3154 add_unwind_entry (output_fr_mem (e1.X_add_number));
3155 }
3156
3157 static void
3158 dot_saveb (dummy)
3159 int dummy;
3160 {
3161 expressionS e1, e2;
3162 unsigned int reg;
3163 unsigned char sep;
3164 int brmask;
3165
3166 sep = parse_operand (&e1);
3167 if (e1.X_op != O_constant)
3168 {
3169 as_bad ("First operand to .save.b must be a constant.");
3170 return;
3171 }
3172 brmask = e1.X_add_number;
3173
3174 if (sep == ',')
3175 {
3176 sep = parse_operand (&e2);
3177 reg = e2.X_add_number - REG_GR;
3178 if (e2.X_op != O_register || reg > 127)
3179 {
3180 as_bad ("Second operand to .save.b must be a general register.");
3181 return;
3182 }
3183 add_unwind_entry (output_br_gr (brmask, e2.X_add_number));
3184 }
3185 else
3186 add_unwind_entry (output_br_mem (brmask));
3187
3188 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3189 ignore_rest_of_line ();
3190 }
3191
3192 static void
3193 dot_savegf (dummy)
3194 int dummy;
3195 {
3196 expressionS e1, e2;
3197 int sep;
3198 sep = parse_operand (&e1);
3199 if (sep == ',')
3200 parse_operand (&e2);
3201
3202 if (e1.X_op != O_constant || sep != ',' || e2.X_op != O_constant)
3203 as_bad ("Both operands of .save.gf must be constants.");
3204 else
3205 {
3206 int grmask = e1.X_add_number;
3207 int frmask = e2.X_add_number;
3208 add_unwind_entry (output_frgr_mem (grmask, frmask));
3209 }
3210 }
3211
3212 static void
3213 dot_spill (dummy)
3214 int dummy;
3215 {
3216 expressionS e;
3217 unsigned char sep;
3218
3219 sep = parse_operand (&e);
3220 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3221 ignore_rest_of_line ();
3222
3223 if (e.X_op != O_constant)
3224 as_bad ("Operand to .spill must be a constant");
3225 else
3226 add_unwind_entry (output_spill_base (e.X_add_number));
3227 }
3228
3229 static void
3230 dot_spillreg (dummy)
3231 int dummy;
3232 {
3233 int sep, ab, xy, reg, treg;
3234 expressionS e1, e2;
3235
3236 sep = parse_operand (&e1);
3237 if (sep != ',')
3238 {
3239 as_bad ("No second operand to .spillreg");
3240 return;
3241 }
3242
3243 parse_operand (&e2);
3244
3245 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3246 {
3247 as_bad ("First operand to .spillreg must be a preserved register");
3248 return;
3249 }
3250
3251 if (!convert_expr_to_xy_reg (&e2, &xy, &treg))
3252 {
3253 as_bad ("Second operand to .spillreg must be a register");
3254 return;
3255 }
3256
3257 add_unwind_entry (output_spill_reg (ab, reg, treg, xy));
3258 }
3259
3260 static void
3261 dot_spillmem (psprel)
3262 int psprel;
3263 {
3264 expressionS e1, e2;
3265 int sep, ab, reg;
3266
3267 sep = parse_operand (&e1);
3268 if (sep != ',')
3269 {
3270 as_bad ("Second operand missing");
3271 return;
3272 }
3273
3274 parse_operand (&e2);
3275
3276 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3277 {
3278 as_bad ("First operand to .spill%s must be a preserved register",
3279 psprel ? "psp" : "sp");
3280 return;
3281 }
3282
3283 if (e2.X_op != O_constant)
3284 {
3285 as_bad ("Second operand to .spill%s must be a constant",
3286 psprel ? "psp" : "sp");
3287 return;
3288 }
3289
3290 if (psprel)
3291 add_unwind_entry (output_spill_psprel (ab, reg, e2.X_add_number));
3292 else
3293 add_unwind_entry (output_spill_sprel (ab, reg, e2.X_add_number));
3294 }
3295
3296 static void
3297 dot_spillreg_p (dummy)
3298 int dummy;
3299 {
3300 int sep, ab, xy, reg, treg;
3301 expressionS e1, e2, e3;
3302 unsigned int qp;
3303
3304 sep = parse_operand (&e1);
3305 if (sep != ',')
3306 {
3307 as_bad ("No second and third operand to .spillreg.p");
3308 return;
3309 }
3310
3311 sep = parse_operand (&e2);
3312 if (sep != ',')
3313 {
3314 as_bad ("No third operand to .spillreg.p");
3315 return;
3316 }
3317
3318 parse_operand (&e3);
3319
3320 qp = e1.X_add_number - REG_P;
3321
3322 if (e1.X_op != O_register || qp > 63)
3323 {
3324 as_bad ("First operand to .spillreg.p must be a predicate");
3325 return;
3326 }
3327
3328 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3329 {
3330 as_bad ("Second operand to .spillreg.p must be a preserved register");
3331 return;
3332 }
3333
3334 if (!convert_expr_to_xy_reg (&e3, &xy, &treg))
3335 {
3336 as_bad ("Third operand to .spillreg.p must be a register");
3337 return;
3338 }
3339
3340 add_unwind_entry (output_spill_reg_p (ab, reg, treg, xy, qp));
3341 }
3342
3343 static void
3344 dot_spillmem_p (psprel)
3345 int psprel;
3346 {
3347 expressionS e1, e2, e3;
3348 int sep, ab, reg;
3349 unsigned int qp;
3350
3351 sep = parse_operand (&e1);
3352 if (sep != ',')
3353 {
3354 as_bad ("Second operand missing");
3355 return;
3356 }
3357
3358 parse_operand (&e2);
3359 if (sep != ',')
3360 {
3361 as_bad ("Second operand missing");
3362 return;
3363 }
3364
3365 parse_operand (&e3);
3366
3367 qp = e1.X_add_number - REG_P;
3368 if (e1.X_op != O_register || qp > 63)
3369 {
3370 as_bad ("First operand to .spill%s_p must be a predicate",
3371 psprel ? "psp" : "sp");
3372 return;
3373 }
3374
3375 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3376 {
3377 as_bad ("Second operand to .spill%s_p must be a preserved register",
3378 psprel ? "psp" : "sp");
3379 return;
3380 }
3381
3382 if (e3.X_op != O_constant)
3383 {
3384 as_bad ("Third operand to .spill%s_p must be a constant",
3385 psprel ? "psp" : "sp");
3386 return;
3387 }
3388
3389 if (psprel)
3390 add_unwind_entry (output_spill_psprel_p (qp, ab, reg, e3.X_add_number));
3391 else
3392 add_unwind_entry (output_spill_sprel_p (qp, ab, reg, e3.X_add_number));
3393 }
3394
3395 static void
3396 dot_label_state (dummy)
3397 int dummy;
3398 {
3399 expressionS e;
3400
3401 parse_operand (&e);
3402 if (e.X_op != O_constant)
3403 {
3404 as_bad ("Operand to .label_state must be a constant");
3405 return;
3406 }
3407 add_unwind_entry (output_label_state (e.X_add_number));
3408 }
3409
3410 static void
3411 dot_copy_state (dummy)
3412 int dummy;
3413 {
3414 expressionS e;
3415
3416 parse_operand (&e);
3417 if (e.X_op != O_constant)
3418 {
3419 as_bad ("Operand to .copy_state must be a constant");
3420 return;
3421 }
3422 add_unwind_entry (output_copy_state (e.X_add_number));
3423 }
3424
3425 static void
3426 dot_unwabi (dummy)
3427 int dummy;
3428 {
3429 expressionS e1, e2;
3430 unsigned char sep;
3431
3432 sep = parse_operand (&e1);
3433 if (sep != ',')
3434 {
3435 as_bad ("Second operand to .unwabi missing");
3436 return;
3437 }
3438 sep = parse_operand (&e2);
3439 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3440 ignore_rest_of_line ();
3441
3442 if (e1.X_op != O_constant)
3443 {
3444 as_bad ("First operand to .unwabi must be a constant");
3445 return;
3446 }
3447
3448 if (e2.X_op != O_constant)
3449 {
3450 as_bad ("Second operand to .unwabi must be a constant");
3451 return;
3452 }
3453
3454 add_unwind_entry (output_unwabi (e1.X_add_number, e2.X_add_number));
3455 }
3456
3457 static void
3458 dot_personality (dummy)
3459 int dummy;
3460 {
3461 char *name, *p, c;
3462 SKIP_WHITESPACE ();
3463 name = input_line_pointer;
3464 c = get_symbol_end ();
3465 p = input_line_pointer;
3466 unwind.personality_routine = symbol_find_or_make (name);
3467 *p = c;
3468 SKIP_WHITESPACE ();
3469 demand_empty_rest_of_line ();
3470 }
3471
3472 static void
3473 dot_proc (dummy)
3474 int dummy;
3475 {
3476 char *name, *p, c;
3477 symbolS *sym;
3478
3479 unwind.proc_start = expr_build_dot ();
3480 /* Parse names of main and alternate entry points and mark them as
3481 function symbols: */
3482 while (1)
3483 {
3484 SKIP_WHITESPACE ();
3485 name = input_line_pointer;
3486 c = get_symbol_end ();
3487 p = input_line_pointer;
3488 sym = symbol_find_or_make (name);
3489 if (unwind.proc_start == 0)
3490 {
3491 unwind.proc_start = sym;
3492 }
3493 symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
3494 *p = c;
3495 SKIP_WHITESPACE ();
3496 if (*input_line_pointer != ',')
3497 break;
3498 ++input_line_pointer;
3499 }
3500 demand_empty_rest_of_line ();
3501 ia64_do_align (16);
3502
3503 unwind.list = unwind.tail = unwind.current_entry = NULL;
3504 unwind.personality_routine = 0;
3505 }
3506
3507 static void
3508 dot_body (dummy)
3509 int dummy;
3510 {
3511 unwind.prologue = 0;
3512 add_unwind_entry (output_body ());
3513 demand_empty_rest_of_line ();
3514 }
3515
3516 static void
3517 dot_prologue (dummy)
3518 int dummy;
3519 {
3520 unsigned char sep;
3521
3522 unwind.prologue = 1;
3523 if (!is_it_end_of_statement ())
3524 {
3525 expressionS e1, e2;
3526 sep = parse_operand (&e1);
3527 if (sep != ',')
3528 as_bad ("No second operand to .prologue");
3529 sep = parse_operand (&e2);
3530 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3531 ignore_rest_of_line ();
3532
3533 if (e1.X_op == O_constant)
3534 {
3535 if (e2.X_op == O_constant)
3536 {
3537 int mask = e1.X_add_number;
3538 int reg = e2.X_add_number;
3539 add_unwind_entry (output_prologue_gr (mask, reg));
3540 }
3541 else
3542 as_bad ("Second operand not a constant");
3543 }
3544 else
3545 as_bad ("First operand not a constant");
3546 }
3547 else
3548 add_unwind_entry (output_prologue ());
3549 }
3550
3551 static void
3552 dot_endp (dummy)
3553 int dummy;
3554 {
3555 expressionS e;
3556 unsigned char *ptr;
3557 long where;
3558 segT saved_seg;
3559 subsegT saved_subseg;
3560
3561 saved_seg = now_seg;
3562 saved_subseg = now_subseg;
3563
3564 expression (&e);
3565 demand_empty_rest_of_line ();
3566
3567 insn_group_break (1, 0, 0);
3568
3569 /* If there was a .handlerdata, we haven't generated an image yet. */
3570 if (unwind.info == 0)
3571 {
3572 generate_unwind_image ();
3573 }
3574
3575 subseg_set (md.last_text_seg, 0);
3576 unwind.proc_end = expr_build_dot ();
3577
3578 set_section ((char *) special_section_name[SPECIAL_SECTION_UNWIND]);
3579 ptr = frag_more (24);
3580 where = frag_now_fix () - 24;
3581
3582 /* Issue the values of a) Proc Begin, b) Proc End, c) Unwind Record. */
3583 e.X_op = O_pseudo_fixup;
3584 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
3585 e.X_add_number = 0;
3586 e.X_add_symbol = unwind.proc_start;
3587 ia64_cons_fix_new (frag_now, where, 8, &e);
3588
3589 e.X_op = O_pseudo_fixup;
3590 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
3591 e.X_add_number = 0;
3592 e.X_add_symbol = unwind.proc_end;
3593 ia64_cons_fix_new (frag_now, where + 8, 8, &e);
3594
3595 if (unwind.info != 0)
3596 {
3597 e.X_op = O_pseudo_fixup;
3598 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
3599 e.X_add_number = 0;
3600 e.X_add_symbol = unwind.info;
3601 ia64_cons_fix_new (frag_now, where + 16, 8, &e);
3602 }
3603 else
3604 md_number_to_chars (ptr + 16, 0, 8);
3605
3606 subseg_set (saved_seg, saved_subseg);
3607 unwind.proc_start = unwind.proc_end = unwind.info = 0;
3608 }
3609
3610 static void
3611 dot_template (template)
3612 int template;
3613 {
3614 CURR_SLOT.user_template = template;
3615 }
3616
3617 static void
3618 dot_regstk (dummy)
3619 int dummy;
3620 {
3621 int ins, locs, outs, rots;
3622
3623 if (is_it_end_of_statement ())
3624 ins = locs = outs = rots = 0;
3625 else
3626 {
3627 ins = get_absolute_expression ();
3628 if (*input_line_pointer++ != ',')
3629 goto err;
3630 locs = get_absolute_expression ();
3631 if (*input_line_pointer++ != ',')
3632 goto err;
3633 outs = get_absolute_expression ();
3634 if (*input_line_pointer++ != ',')
3635 goto err;
3636 rots = get_absolute_expression ();
3637 }
3638 set_regstack (ins, locs, outs, rots);
3639 return;
3640
3641 err:
3642 as_bad ("Comma expected");
3643 ignore_rest_of_line ();
3644 }
3645
3646 static void
3647 dot_rot (type)
3648 int type;
3649 {
3650 unsigned num_regs, num_alloced = 0;
3651 struct dynreg **drpp, *dr;
3652 int ch, base_reg = 0;
3653 char *name, *start;
3654 size_t len;
3655
3656 switch (type)
3657 {
3658 case DYNREG_GR: base_reg = REG_GR + 32; break;
3659 case DYNREG_FR: base_reg = REG_FR + 32; break;
3660 case DYNREG_PR: base_reg = REG_P + 16; break;
3661 default: break;
3662 }
3663
3664 /* first, remove existing names from hash table: */
3665 for (dr = md.dynreg[type]; dr && dr->num_regs; dr = dr->next)
3666 {
3667 hash_delete (md.dynreg_hash, dr->name);
3668 dr->num_regs = 0;
3669 }
3670
3671 drpp = &md.dynreg[type];
3672 while (1)
3673 {
3674 start = input_line_pointer;
3675 ch = get_symbol_end ();
3676 *input_line_pointer = ch;
3677 len = (input_line_pointer - start);
3678
3679 SKIP_WHITESPACE ();
3680 if (*input_line_pointer != '[')
3681 {
3682 as_bad ("Expected '['");
3683 goto err;
3684 }
3685 ++input_line_pointer; /* skip '[' */
3686
3687 num_regs = get_absolute_expression ();
3688
3689 if (*input_line_pointer++ != ']')
3690 {
3691 as_bad ("Expected ']'");
3692 goto err;
3693 }
3694 SKIP_WHITESPACE ();
3695
3696 num_alloced += num_regs;
3697 switch (type)
3698 {
3699 case DYNREG_GR:
3700 if (num_alloced > md.rot.num_regs)
3701 {
3702 as_bad ("Used more than the declared %d rotating registers",
3703 md.rot.num_regs);
3704 goto err;
3705 }
3706 break;
3707 case DYNREG_FR:
3708 if (num_alloced > 96)
3709 {
3710 as_bad ("Used more than the available 96 rotating registers");
3711 goto err;
3712 }
3713 break;
3714 case DYNREG_PR:
3715 if (num_alloced > 48)
3716 {
3717 as_bad ("Used more than the available 48 rotating registers");
3718 goto err;
3719 }
3720 break;
3721
3722 default:
3723 break;
3724 }
3725
3726 name = obstack_alloc (&notes, len + 1);
3727 memcpy (name, start, len);
3728 name[len] = '\0';
3729
3730 if (!*drpp)
3731 {
3732 *drpp = obstack_alloc (&notes, sizeof (*dr));
3733 memset (*drpp, 0, sizeof (*dr));
3734 }
3735
3736 dr = *drpp;
3737 dr->name = name;
3738 dr->num_regs = num_regs;
3739 dr->base = base_reg;
3740 drpp = &dr->next;
3741 base_reg += num_regs;
3742
3743 if (hash_insert (md.dynreg_hash, name, dr))
3744 {
3745 as_bad ("Attempt to redefine register set `%s'", name);
3746 goto err;
3747 }
3748
3749 if (*input_line_pointer != ',')
3750 break;
3751 ++input_line_pointer; /* skip comma */
3752 SKIP_WHITESPACE ();
3753 }
3754 demand_empty_rest_of_line ();
3755 return;
3756
3757 err:
3758 ignore_rest_of_line ();
3759 }
3760
3761 static void
3762 dot_byteorder (byteorder)
3763 int byteorder;
3764 {
3765 target_big_endian = byteorder;
3766 }
3767
3768 static void
3769 dot_psr (dummy)
3770 int dummy;
3771 {
3772 char *option;
3773 int ch;
3774
3775 while (1)
3776 {
3777 option = input_line_pointer;
3778 ch = get_symbol_end ();
3779 if (strcmp (option, "lsb") == 0)
3780 md.flags &= ~EF_IA_64_BE;
3781 else if (strcmp (option, "msb") == 0)
3782 md.flags |= EF_IA_64_BE;
3783 else if (strcmp (option, "abi32") == 0)
3784 md.flags &= ~EF_IA_64_ABI64;
3785 else if (strcmp (option, "abi64") == 0)
3786 md.flags |= EF_IA_64_ABI64;
3787 else
3788 as_bad ("Unknown psr option `%s'", option);
3789 *input_line_pointer = ch;
3790
3791 SKIP_WHITESPACE ();
3792 if (*input_line_pointer != ',')
3793 break;
3794
3795 ++input_line_pointer;
3796 SKIP_WHITESPACE ();
3797 }
3798 demand_empty_rest_of_line ();
3799 }
3800
3801 static void
3802 dot_alias (dummy)
3803 int dummy;
3804 {
3805 as_bad (".alias not implemented yet");
3806 }
3807
3808 static void
3809 dot_ln (dummy)
3810 int dummy;
3811 {
3812 new_logical_line (0, get_absolute_expression ());
3813 demand_empty_rest_of_line ();
3814 }
3815
3816 static char*
3817 parse_section_name ()
3818 {
3819 char *name;
3820 int len;
3821
3822 SKIP_WHITESPACE ();
3823 if (*input_line_pointer != '"')
3824 {
3825 as_bad ("Missing section name");
3826 ignore_rest_of_line ();
3827 return 0;
3828 }
3829 name = demand_copy_C_string (&len);
3830 if (!name)
3831 {
3832 ignore_rest_of_line ();
3833 return 0;
3834 }
3835 SKIP_WHITESPACE ();
3836 if (*input_line_pointer != ',')
3837 {
3838 as_bad ("Comma expected after section name");
3839 ignore_rest_of_line ();
3840 return 0;
3841 }
3842 ++input_line_pointer; /* skip comma */
3843 return name;
3844 }
3845
3846 static void
3847 dot_xdata (size)
3848 int size;
3849 {
3850 char *name = parse_section_name ();
3851 if (!name)
3852 return;
3853
3854 set_section (name);
3855 cons (size);
3856 obj_elf_previous (0);
3857 }
3858
3859 /* Why doesn't float_cons() call md_cons_align() the way cons() does? */
3860 static void
3861 stmt_float_cons (kind)
3862 int kind;
3863 {
3864 size_t size;
3865
3866 switch (kind)
3867 {
3868 case 'd': size = 8; break;
3869 case 'x': size = 10; break;
3870
3871 case 'f':
3872 default:
3873 size = 4;
3874 break;
3875 }
3876 ia64_do_align (size);
3877 float_cons (kind);
3878 }
3879
3880 static void
3881 stmt_cons_ua (size)
3882 int size;
3883 {
3884 int saved_auto_align = md.auto_align;
3885
3886 md.auto_align = 0;
3887 cons (size);
3888 md.auto_align = saved_auto_align;
3889 }
3890
3891 static void
3892 dot_xfloat_cons (kind)
3893 int kind;
3894 {
3895 char *name = parse_section_name ();
3896 if (!name)
3897 return;
3898
3899 set_section (name);
3900 stmt_float_cons (kind);
3901 obj_elf_previous (0);
3902 }
3903
3904 static void
3905 dot_xstringer (zero)
3906 int zero;
3907 {
3908 char *name = parse_section_name ();
3909 if (!name)
3910 return;
3911
3912 set_section (name);
3913 stringer (zero);
3914 obj_elf_previous (0);
3915 }
3916
3917 static void
3918 dot_xdata_ua (size)
3919 int size;
3920 {
3921 int saved_auto_align = md.auto_align;
3922 char *name = parse_section_name ();
3923 if (!name)
3924 return;
3925
3926 set_section (name);
3927 md.auto_align = 0;
3928 cons (size);
3929 md.auto_align = saved_auto_align;
3930 obj_elf_previous (0);
3931 }
3932
3933 static void
3934 dot_xfloat_cons_ua (kind)
3935 int kind;
3936 {
3937 int saved_auto_align = md.auto_align;
3938 char *name = parse_section_name ();
3939 if (!name)
3940 return;
3941
3942 set_section (name);
3943 md.auto_align = 0;
3944 stmt_float_cons (kind);
3945 md.auto_align = saved_auto_align;
3946 obj_elf_previous (0);
3947 }
3948
3949 /* .reg.val <regname>,value */
3950 static void
3951 dot_reg_val (dummy)
3952 int dummy;
3953 {
3954 expressionS reg;
3955
3956 expression (&reg);
3957 if (reg.X_op != O_register)
3958 {
3959 as_bad (_("Register name expected"));
3960 ignore_rest_of_line ();
3961 }
3962 else if (*input_line_pointer++ != ',')
3963 {
3964 as_bad (_("Comma expected"));
3965 ignore_rest_of_line ();
3966 }
3967 else
3968 {
3969 valueT value = get_absolute_expression ();
3970 int regno = reg.X_add_number;
3971 if (regno < REG_GR || regno > REG_GR+128)
3972 as_warn (_("Register value annotation ignored"));
3973 else
3974 {
3975 gr_values[regno-REG_GR].known = 1;
3976 gr_values[regno-REG_GR].value = value;
3977 gr_values[regno-REG_GR].path = md.path;
3978 }
3979 }
3980 demand_empty_rest_of_line ();
3981 }
3982
3983 /* select dv checking mode
3984 .auto
3985 .explicit
3986 .default
3987
3988 A stop is inserted when changing modes
3989 */
3990 static void
3991 dot_dv_mode (type)
3992 int type;
3993 {
3994 if (md.manual_bundling)
3995 as_warn (_("Directive invalid within a bundle"));
3996
3997 if (type == 'E' || type == 'A')
3998 md.mode_explicitly_set = 0;
3999 else
4000 md.mode_explicitly_set = 1;
4001
4002 md.detect_dv = 1;
4003 switch (type)
4004 {
4005 case 'A':
4006 case 'a':
4007 if (md.explicit_mode)
4008 insn_group_break (1, 0, 0);
4009 md.explicit_mode = 0;
4010 break;
4011 case 'E':
4012 case 'e':
4013 if (!md.explicit_mode)
4014 insn_group_break (1, 0, 0);
4015 md.explicit_mode = 1;
4016 break;
4017 default:
4018 case 'd':
4019 if (md.explicit_mode != md.default_explicit_mode)
4020 insn_group_break (1, 0, 0);
4021 md.explicit_mode = md.default_explicit_mode;
4022 md.mode_explicitly_set = 0;
4023 break;
4024 }
4025 }
4026
4027 static void
4028 print_prmask (mask)
4029 valueT mask;
4030 {
4031 int regno;
4032 char *comma = "";
4033 for (regno = 0;regno < 64;regno++)
4034 {
4035 if (mask & ((valueT)1<<regno))
4036 {
4037 fprintf (stderr, "%s p%d", comma, regno);
4038 comma = ",";
4039 }
4040 }
4041 }
4042
4043 /*
4044 .pred.rel.clear [p1 [,p2 [,...]]] (also .pred.rel "clear")
4045 .pred.rel.imply p1, p2 (also .pred.rel "imply")
4046 .pred.rel.mutex p1, p2 [,...] (also .pred.rel "mutex")
4047 .pred.safe_across_calls p1 [, p2 [,...]]
4048 */
4049 static void
4050 dot_pred_rel (type)
4051 int type;
4052 {
4053 valueT mask = 0;
4054 int count = 0;
4055 int p1 = -1, p2 = -1;
4056
4057 if (type == 0)
4058 {
4059 if (*input_line_pointer != '"')
4060 {
4061 as_bad (_("Missing predicate relation type"));
4062 ignore_rest_of_line ();
4063 return;
4064 }
4065 else
4066 {
4067 int len;
4068 char *form = demand_copy_C_string (&len);
4069 if (strcmp (form, "mutex") == 0)
4070 type = 'm';
4071 else if (strcmp (form, "clear") == 0)
4072 type = 'c';
4073 else if (strcmp (form, "imply") == 0)
4074 type = 'i';
4075 else
4076 {
4077 as_bad (_("Unrecognized predicate relation type"));
4078 ignore_rest_of_line ();
4079 return;
4080 }
4081 }
4082 if (*input_line_pointer == ',')
4083 ++input_line_pointer;
4084 SKIP_WHITESPACE ();
4085 }
4086
4087 SKIP_WHITESPACE ();
4088 while (1)
4089 {
4090 valueT bit = 1;
4091 int regno;
4092
4093 if (toupper (*input_line_pointer) != 'P'
4094 || (regno = atoi (++input_line_pointer)) < 0
4095 || regno > 63)
4096 {
4097 as_bad (_("Predicate register expected"));
4098 ignore_rest_of_line ();
4099 return;
4100 }
4101 while (isdigit (*input_line_pointer))
4102 ++input_line_pointer;
4103 if (p1 == -1)
4104 p1 = regno;
4105 else if (p2 == -1)
4106 p2 = regno;
4107 bit <<= regno;
4108 if (mask & bit)
4109 as_warn (_("Duplicate predicate register ignored"));
4110 mask |= bit; count++;
4111 /* see if it's a range */
4112 if (*input_line_pointer == '-')
4113 {
4114 valueT stop = 1;
4115 ++input_line_pointer;
4116
4117 if (toupper (*input_line_pointer) != 'P'
4118 || (regno = atoi (++input_line_pointer)) < 0
4119 || regno > 63)
4120 {
4121 as_bad (_("Predicate register expected"));
4122 ignore_rest_of_line ();
4123 return;
4124 }
4125 while (isdigit (*input_line_pointer))
4126 ++input_line_pointer;
4127 stop <<= regno;
4128 if (bit >= stop)
4129 {
4130 as_bad (_("Bad register range"));
4131 ignore_rest_of_line ();
4132 return;
4133 }
4134 while (bit < stop)
4135 {
4136 bit <<= 1;
4137 mask |= bit; count++;
4138 }
4139 SKIP_WHITESPACE ();
4140 }
4141 if (*input_line_pointer != ',')
4142 break;
4143 ++input_line_pointer;
4144 SKIP_WHITESPACE ();
4145 }
4146
4147 switch (type)
4148 {
4149 case 'c':
4150 if (count == 0)
4151 mask = ~(valueT)0;
4152 clear_qp_mutex (mask);
4153 clear_qp_implies (mask, (valueT)0);
4154 break;
4155 case 'i':
4156 if (count != 2 || p1 == -1 || p2 == -1)
4157 as_bad (_("Predicate source and target required"));
4158 else if (p1 == 0 || p2 == 0)
4159 as_bad (_("Use of p0 is not valid in this context"));
4160 else
4161 add_qp_imply (p1, p2);
4162 break;
4163 case 'm':
4164 if (count < 2)
4165 {
4166 as_bad (_("At least two PR arguments expected"));
4167 break;
4168 }
4169 else if (mask & 1)
4170 {
4171 as_bad (_("Use of p0 is not valid in this context"));
4172 break;
4173 }
4174 add_qp_mutex (mask);
4175 break;
4176 case 's':
4177 /* note that we don't override any existing relations */
4178 if (count == 0)
4179 {
4180 as_bad (_("At least one PR argument expected"));
4181 break;
4182 }
4183 if (md.debug_dv)
4184 {
4185 fprintf (stderr, "Safe across calls: ");
4186 print_prmask (mask);
4187 fprintf (stderr, "\n");
4188 }
4189 qp_safe_across_calls = mask;
4190 break;
4191 }
4192 demand_empty_rest_of_line ();
4193 }
4194
4195 /* .entry label [, label [, ...]]
4196 Hint to DV code that the given labels are to be considered entry points.
4197 Otherwise, only global labels are considered entry points.
4198 */
4199 static void
4200 dot_entry (dummy)
4201 int dummy;
4202 {
4203 const char *err;
4204 char *name;
4205 int c;
4206 symbolS *symbolP;
4207
4208 do
4209 {
4210 name = input_line_pointer;
4211 c = get_symbol_end ();
4212 symbolP = symbol_find_or_make (name);
4213
4214 err = hash_insert (md.entry_hash, S_GET_NAME (symbolP), (PTR) symbolP);
4215 if (err)
4216 as_fatal (_("Inserting \"%s\" into entry hint table failed: %s"),
4217 name, err);
4218
4219 *input_line_pointer = c;
4220 SKIP_WHITESPACE ();
4221 c = *input_line_pointer;
4222 if (c == ',')
4223 {
4224 input_line_pointer++;
4225 SKIP_WHITESPACE ();
4226 if (*input_line_pointer == '\n')
4227 c = '\n';
4228 }
4229 }
4230 while (c == ',');
4231
4232 demand_empty_rest_of_line ();
4233 }
4234
4235 /* .mem.offset offset, base
4236 "base" is used to distinguish between offsets from a different base.
4237 */
4238 static void
4239 dot_mem_offset (dummy)
4240 int dummy;
4241 {
4242 md.mem_offset.hint = 1;
4243 md.mem_offset.offset = get_absolute_expression ();
4244 if (*input_line_pointer != ',')
4245 {
4246 as_bad (_("Comma expected"));
4247 ignore_rest_of_line ();
4248 return;
4249 }
4250 ++input_line_pointer;
4251 md.mem_offset.base = get_absolute_expression ();
4252 demand_empty_rest_of_line ();
4253 }
4254
4255 /* ia64-specific pseudo-ops: */
4256 const pseudo_typeS md_pseudo_table[] =
4257 {
4258 { "radix", dot_radix, 0 },
4259 { "lcomm", s_lcomm_bytes, 1 },
4260 { "bss", dot_special_section, SPECIAL_SECTION_BSS },
4261 { "sbss", dot_special_section, SPECIAL_SECTION_SBSS },
4262 { "sdata", dot_special_section, SPECIAL_SECTION_SDATA },
4263 { "rodata", dot_special_section, SPECIAL_SECTION_RODATA },
4264 { "comment", dot_special_section, SPECIAL_SECTION_COMMENT },
4265 { "ia_64.unwind", dot_special_section, SPECIAL_SECTION_UNWIND },
4266 { "ia_64.unwind_info", dot_special_section, SPECIAL_SECTION_UNWIND_INFO },
4267 { "proc", dot_proc, 0 },
4268 { "body", dot_body, 0 },
4269 { "prologue", dot_prologue, 0 },
4270 { "endp", dot_endp },
4271 { "file", dwarf2_directive_file },
4272 { "loc", dwarf2_directive_loc },
4273
4274 { "fframe", dot_fframe },
4275 { "vframe", dot_vframe },
4276 { "vframesp", dot_vframesp },
4277 { "vframepsp", dot_vframepsp },
4278 { "save", dot_save },
4279 { "restore", dot_restore },
4280 { "restorereg", dot_restorereg },
4281 { "restorereg.p", dot_restorereg_p },
4282 { "handlerdata", dot_handlerdata },
4283 { "unwentry", dot_unwentry },
4284 { "altrp", dot_altrp },
4285 { "savesp", dot_savemem, 0 },
4286 { "savepsp", dot_savemem, 1 },
4287 { "save.g", dot_saveg },
4288 { "save.f", dot_savef },
4289 { "save.b", dot_saveb },
4290 { "save.gf", dot_savegf },
4291 { "spill", dot_spill },
4292 { "spillreg", dot_spillreg },
4293 { "spillsp", dot_spillmem, 0 },
4294 { "spillpsp", dot_spillmem, 1 },
4295 { "spillreg.p", dot_spillreg_p },
4296 { "spillsp.p", dot_spillmem_p, 0 },
4297 { "spillpsp.p", dot_spillmem_p, 1 },
4298 { "label_state", dot_label_state },
4299 { "copy_state", dot_copy_state },
4300 { "unwabi", dot_unwabi },
4301 { "personality", dot_personality },
4302 #if 0
4303 { "estate", dot_estate },
4304 #endif
4305 { "mii", dot_template, 0x0 },
4306 { "mli", dot_template, 0x2 }, /* old format, for compatibility */
4307 { "mlx", dot_template, 0x2 },
4308 { "mmi", dot_template, 0x4 },
4309 { "mfi", dot_template, 0x6 },
4310 { "mmf", dot_template, 0x7 },
4311 { "mib", dot_template, 0x8 },
4312 { "mbb", dot_template, 0x9 },
4313 { "bbb", dot_template, 0xb },
4314 { "mmb", dot_template, 0xc },
4315 { "mfb", dot_template, 0xe },
4316 #if 0
4317 { "lb", dot_scope, 0 },
4318 { "le", dot_scope, 1 },
4319 #endif
4320 { "align", s_align_bytes, 0 },
4321 { "regstk", dot_regstk, 0 },
4322 { "rotr", dot_rot, DYNREG_GR },
4323 { "rotf", dot_rot, DYNREG_FR },
4324 { "rotp", dot_rot, DYNREG_PR },
4325 { "lsb", dot_byteorder, 0 },
4326 { "msb", dot_byteorder, 1 },
4327 { "psr", dot_psr, 0 },
4328 { "alias", dot_alias, 0 },
4329 { "ln", dot_ln, 0 }, /* source line info (for debugging) */
4330
4331 { "xdata1", dot_xdata, 1 },
4332 { "xdata2", dot_xdata, 2 },
4333 { "xdata4", dot_xdata, 4 },
4334 { "xdata8", dot_xdata, 8 },
4335 { "xreal4", dot_xfloat_cons, 'f' },
4336 { "xreal8", dot_xfloat_cons, 'd' },
4337 { "xreal10", dot_xfloat_cons, 'x' },
4338 { "xstring", dot_xstringer, 0 },
4339 { "xstringz", dot_xstringer, 1 },
4340
4341 /* unaligned versions: */
4342 { "xdata2.ua", dot_xdata_ua, 2 },
4343 { "xdata4.ua", dot_xdata_ua, 4 },
4344 { "xdata8.ua", dot_xdata_ua, 8 },
4345 { "xreal4.ua", dot_xfloat_cons_ua, 'f' },
4346 { "xreal8.ua", dot_xfloat_cons_ua, 'd' },
4347 { "xreal10.ua", dot_xfloat_cons_ua, 'x' },
4348
4349 /* annotations/DV checking support */
4350 { "entry", dot_entry, 0 },
4351 { "mem.offset", dot_mem_offset },
4352 { "pred.rel", dot_pred_rel, 0 },
4353 { "pred.rel.clear", dot_pred_rel, 'c' },
4354 { "pred.rel.imply", dot_pred_rel, 'i' },
4355 { "pred.rel.mutex", dot_pred_rel, 'm' },
4356 { "pred.safe_across_calls", dot_pred_rel, 's' },
4357 { "reg.val", dot_reg_val },
4358 { "auto", dot_dv_mode, 'a' },
4359 { "explicit", dot_dv_mode, 'e' },
4360 { "default", dot_dv_mode, 'd' },
4361
4362 { NULL, 0, 0 }
4363 };
4364
4365 static const struct pseudo_opcode
4366 {
4367 const char *name;
4368 void (*handler) (int);
4369 int arg;
4370 }
4371 pseudo_opcode[] =
4372 {
4373 /* these are more like pseudo-ops, but don't start with a dot */
4374 { "data1", cons, 1 },
4375 { "data2", cons, 2 },
4376 { "data4", cons, 4 },
4377 { "data8", cons, 8 },
4378 { "real4", stmt_float_cons, 'f' },
4379 { "real8", stmt_float_cons, 'd' },
4380 { "real10", stmt_float_cons, 'x' },
4381 { "string", stringer, 0 },
4382 { "stringz", stringer, 1 },
4383
4384 /* unaligned versions: */
4385 { "data2.ua", stmt_cons_ua, 2 },
4386 { "data4.ua", stmt_cons_ua, 4 },
4387 { "data8.ua", stmt_cons_ua, 8 },
4388 { "real4.ua", float_cons, 'f' },
4389 { "real8.ua", float_cons, 'd' },
4390 { "real10.ua", float_cons, 'x' },
4391 };
4392
4393 /* Declare a register by creating a symbol for it and entering it in
4394 the symbol table. */
4395 static symbolS*
4396 declare_register (name, regnum)
4397 const char *name;
4398 int regnum;
4399 {
4400 const char *err;
4401 symbolS *sym;
4402
4403 sym = symbol_new (name, reg_section, regnum, &zero_address_frag);
4404
4405 err = hash_insert (md.reg_hash, S_GET_NAME (sym), (PTR) sym);
4406 if (err)
4407 as_fatal ("Inserting \"%s\" into register table failed: %s",
4408 name, err);
4409
4410 return sym;
4411 }
4412
4413 static void
4414 declare_register_set (prefix, num_regs, base_regnum)
4415 const char *prefix;
4416 int num_regs;
4417 int base_regnum;
4418 {
4419 char name[8];
4420 int i;
4421
4422 for (i = 0; i < num_regs; ++i)
4423 {
4424 sprintf (name, "%s%u", prefix, i);
4425 declare_register (name, base_regnum + i);
4426 }
4427 }
4428
4429 static unsigned int
4430 operand_width (opnd)
4431 enum ia64_opnd opnd;
4432 {
4433 const struct ia64_operand *odesc = &elf64_ia64_operands[opnd];
4434 unsigned int bits = 0;
4435 int i;
4436
4437 bits = 0;
4438 for (i = 0; i < NELEMS (odesc->field) && odesc->field[i].bits; ++i)
4439 bits += odesc->field[i].bits;
4440
4441 return bits;
4442 }
4443
4444 static int
4445 operand_match (idesc, index, e)
4446 const struct ia64_opcode *idesc;
4447 int index;
4448 expressionS *e;
4449 {
4450 enum ia64_opnd opnd = idesc->operands[index];
4451 int bits, relocatable = 0;
4452 struct insn_fix *fix;
4453 bfd_signed_vma val;
4454
4455 switch (opnd)
4456 {
4457 /* constants: */
4458
4459 case IA64_OPND_AR_CCV:
4460 if (e->X_op == O_register && e->X_add_number == REG_AR + 32)
4461 return 1;
4462 break;
4463
4464 case IA64_OPND_AR_PFS:
4465 if (e->X_op == O_register && e->X_add_number == REG_AR + 64)
4466 return 1;
4467 break;
4468
4469 case IA64_OPND_GR0:
4470 if (e->X_op == O_register && e->X_add_number == REG_GR + 0)
4471 return 1;
4472 break;
4473
4474 case IA64_OPND_IP:
4475 if (e->X_op == O_register && e->X_add_number == REG_IP)
4476 return 1;
4477 break;
4478
4479 case IA64_OPND_PR:
4480 if (e->X_op == O_register && e->X_add_number == REG_PR)
4481 return 1;
4482 break;
4483
4484 case IA64_OPND_PR_ROT:
4485 if (e->X_op == O_register && e->X_add_number == REG_PR_ROT)
4486 return 1;
4487 break;
4488
4489 case IA64_OPND_PSR:
4490 if (e->X_op == O_register && e->X_add_number == REG_PSR)
4491 return 1;
4492 break;
4493
4494 case IA64_OPND_PSR_L:
4495 if (e->X_op == O_register && e->X_add_number == REG_PSR_L)
4496 return 1;
4497 break;
4498
4499 case IA64_OPND_PSR_UM:
4500 if (e->X_op == O_register && e->X_add_number == REG_PSR_UM)
4501 return 1;
4502 break;
4503
4504 case IA64_OPND_C1:
4505 if (e->X_op == O_constant && e->X_add_number == 1)
4506 return 1;
4507 break;
4508
4509 case IA64_OPND_C8:
4510 if (e->X_op == O_constant && e->X_add_number == 8)
4511 return 1;
4512 break;
4513
4514 case IA64_OPND_C16:
4515 if (e->X_op == O_constant && e->X_add_number == 16)
4516 return 1;
4517 break;
4518
4519 /* register operands: */
4520
4521 case IA64_OPND_AR3:
4522 if (e->X_op == O_register && e->X_add_number >= REG_AR
4523 && e->X_add_number < REG_AR + 128)
4524 return 1;
4525 break;
4526
4527 case IA64_OPND_B1:
4528 case IA64_OPND_B2:
4529 if (e->X_op == O_register && e->X_add_number >= REG_BR
4530 && e->X_add_number < REG_BR + 8)
4531 return 1;
4532 break;
4533
4534 case IA64_OPND_CR3:
4535 if (e->X_op == O_register && e->X_add_number >= REG_CR
4536 && e->X_add_number < REG_CR + 128)
4537 return 1;
4538 break;
4539
4540 case IA64_OPND_F1:
4541 case IA64_OPND_F2:
4542 case IA64_OPND_F3:
4543 case IA64_OPND_F4:
4544 if (e->X_op == O_register && e->X_add_number >= REG_FR
4545 && e->X_add_number < REG_FR + 128)
4546 return 1;
4547 break;
4548
4549 case IA64_OPND_P1:
4550 case IA64_OPND_P2:
4551 if (e->X_op == O_register && e->X_add_number >= REG_P
4552 && e->X_add_number < REG_P + 64)
4553 return 1;
4554 break;
4555
4556 case IA64_OPND_R1:
4557 case IA64_OPND_R2:
4558 case IA64_OPND_R3:
4559 if (e->X_op == O_register && e->X_add_number >= REG_GR
4560 && e->X_add_number < REG_GR + 128)
4561 return 1;
4562 break;
4563
4564 case IA64_OPND_R3_2:
4565 if (e->X_op == O_register && e->X_add_number >= REG_GR
4566 && e->X_add_number < REG_GR + 4)
4567 return 1;
4568 break;
4569
4570 /* indirect operands: */
4571 case IA64_OPND_CPUID_R3:
4572 case IA64_OPND_DBR_R3:
4573 case IA64_OPND_DTR_R3:
4574 case IA64_OPND_ITR_R3:
4575 case IA64_OPND_IBR_R3:
4576 case IA64_OPND_MSR_R3:
4577 case IA64_OPND_PKR_R3:
4578 case IA64_OPND_PMC_R3:
4579 case IA64_OPND_PMD_R3:
4580 case IA64_OPND_RR_R3:
4581 if (e->X_op == O_index && e->X_op_symbol
4582 && (S_GET_VALUE (e->X_op_symbol) - IND_CPUID
4583 == opnd - IA64_OPND_CPUID_R3))
4584 return 1;
4585 break;
4586
4587 case IA64_OPND_MR3:
4588 if (e->X_op == O_index && !e->X_op_symbol)
4589 return 1;
4590 break;
4591
4592 /* immediate operands: */
4593 case IA64_OPND_CNT2a:
4594 case IA64_OPND_LEN4:
4595 case IA64_OPND_LEN6:
4596 bits = operand_width (idesc->operands[index]);
4597 if (e->X_op == O_constant
4598 && (bfd_vma) (e->X_add_number - 1) < ((bfd_vma) 1 << bits))
4599 return 1;
4600 break;
4601
4602 case IA64_OPND_CNT2b:
4603 if (e->X_op == O_constant
4604 && (bfd_vma) (e->X_add_number - 1) < 3)
4605 return 1;
4606 break;
4607
4608 case IA64_OPND_CNT2c:
4609 val = e->X_add_number;
4610 if (e->X_op == O_constant
4611 && (val == 0 || val == 7 || val == 15 || val == 16))
4612 return 1;
4613 break;
4614
4615 case IA64_OPND_SOR:
4616 /* SOR must be an integer multiple of 8 */
4617 if (e->X_add_number & 0x7)
4618 break;
4619 case IA64_OPND_SOF:
4620 case IA64_OPND_SOL:
4621 if (e->X_op == O_constant &&
4622 (bfd_vma) e->X_add_number <= 96)
4623 return 1;
4624 break;
4625
4626 case IA64_OPND_IMMU62:
4627 if (e->X_op == O_constant)
4628 {
4629 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << 62))
4630 return 1;
4631 }
4632 else
4633 {
4634 /* FIXME -- need 62-bit relocation type */
4635 as_bad (_("62-bit relocation not yet implemented"));
4636 }
4637 break;
4638
4639 case IA64_OPND_IMMU64:
4640 if (e->X_op == O_symbol || e->X_op == O_pseudo_fixup
4641 || e->X_op == O_subtract)
4642 {
4643 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
4644 fix->code = BFD_RELOC_IA64_IMM64;
4645 if (e->X_op != O_subtract)
4646 {
4647 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
4648 if (e->X_op == O_pseudo_fixup)
4649 e->X_op = O_symbol;
4650 }
4651
4652 fix->opnd = idesc->operands[index];
4653 fix->expr = *e;
4654 fix->is_pcrel = 0;
4655 ++CURR_SLOT.num_fixups;
4656 return 1;
4657 }
4658 else if (e->X_op == O_constant)
4659 return 1;
4660 break;
4661
4662 case IA64_OPND_CCNT5:
4663 case IA64_OPND_CNT5:
4664 case IA64_OPND_CNT6:
4665 case IA64_OPND_CPOS6a:
4666 case IA64_OPND_CPOS6b:
4667 case IA64_OPND_CPOS6c:
4668 case IA64_OPND_IMMU2:
4669 case IA64_OPND_IMMU7a:
4670 case IA64_OPND_IMMU7b:
4671 case IA64_OPND_IMMU21:
4672 case IA64_OPND_IMMU24:
4673 case IA64_OPND_MBTYPE4:
4674 case IA64_OPND_MHTYPE8:
4675 case IA64_OPND_POS6:
4676 bits = operand_width (idesc->operands[index]);
4677 if (e->X_op == O_constant
4678 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
4679 return 1;
4680 break;
4681
4682 case IA64_OPND_IMMU9:
4683 bits = operand_width (idesc->operands[index]);
4684 if (e->X_op == O_constant
4685 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
4686 {
4687 int lobits = e->X_add_number & 0x3;
4688 if (((bfd_vma) e->X_add_number & 0x3C) != 0 && lobits == 0)
4689 e->X_add_number |= (bfd_vma)0x3;
4690 return 1;
4691 }
4692 break;
4693
4694 case IA64_OPND_IMM44:
4695 /* least 16 bits must be zero */
4696 if ((e->X_add_number & 0xffff) != 0)
4697 as_warn (_("lower 16 bits of mask ignored"));
4698
4699 if (e->X_op == O_constant
4700 && ((e->X_add_number >= 0
4701 && e->X_add_number < ((bfd_vma) 1 << 44))
4702 || (e->X_add_number < 0
4703 && -e->X_add_number <= ((bfd_vma) 1 << 44))))
4704 {
4705 /* sign-extend */
4706 if (e->X_add_number >= 0
4707 && (e->X_add_number & ((bfd_vma) 1 << 43)) != 0)
4708 {
4709 e->X_add_number |= ~(((bfd_vma) 1 << 44) - 1);
4710 }
4711 return 1;
4712 }
4713 break;
4714
4715 case IA64_OPND_IMM17:
4716 /* bit 0 is a don't care (pr0 is hardwired to 1) */
4717 if (e->X_op == O_constant
4718 && ((e->X_add_number >= 0
4719 && e->X_add_number < ((bfd_vma) 1 << 17))
4720 || (e->X_add_number < 0
4721 && -e->X_add_number <= ((bfd_vma) 1 << 17))))
4722 {
4723 /* sign-extend */
4724 if (e->X_add_number >= 0
4725 && (e->X_add_number & ((bfd_vma) 1 << 16)) != 0)
4726 {
4727 e->X_add_number |= ~(((bfd_vma)1 << 17) - 1);
4728 }
4729 return 1;
4730 }
4731 break;
4732
4733 case IA64_OPND_IMM14:
4734 case IA64_OPND_IMM22:
4735 relocatable = 1;
4736 case IA64_OPND_IMM1:
4737 case IA64_OPND_IMM8:
4738 case IA64_OPND_IMM8U4:
4739 case IA64_OPND_IMM8M1:
4740 case IA64_OPND_IMM8M1U4:
4741 case IA64_OPND_IMM8M1U8:
4742 case IA64_OPND_IMM9a:
4743 case IA64_OPND_IMM9b:
4744 bits = operand_width (idesc->operands[index]);
4745 if (relocatable && (e->X_op == O_symbol
4746 || e->X_op == O_subtract
4747 || e->X_op == O_pseudo_fixup))
4748 {
4749 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
4750
4751 if (idesc->operands[index] == IA64_OPND_IMM14)
4752 fix->code = BFD_RELOC_IA64_IMM14;
4753 else
4754 fix->code = BFD_RELOC_IA64_IMM22;
4755
4756 if (e->X_op != O_subtract)
4757 {
4758 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
4759 if (e->X_op == O_pseudo_fixup)
4760 e->X_op = O_symbol;
4761 }
4762
4763 fix->opnd = idesc->operands[index];
4764 fix->expr = *e;
4765 fix->is_pcrel = 0;
4766 ++CURR_SLOT.num_fixups;
4767 return 1;
4768 }
4769 else if (e->X_op != O_constant
4770 && ! (e->X_op == O_big && opnd == IA64_OPND_IMM8M1U8))
4771 return 0;
4772
4773 if (opnd == IA64_OPND_IMM8M1U4)
4774 {
4775 /* Zero is not valid for unsigned compares that take an adjusted
4776 constant immediate range. */
4777 if (e->X_add_number == 0)
4778 return 0;
4779
4780 /* Sign-extend 32-bit unsigned numbers, so that the following range
4781 checks will work. */
4782 val = e->X_add_number;
4783 if (((val & (~(bfd_vma)0 << 32)) == 0)
4784 && ((val & ((bfd_vma)1 << 31)) != 0))
4785 val = ((val << 32) >> 32);
4786
4787 /* Check for 0x100000000. This is valid because
4788 0x100000000-1 is the same as ((uint32_t) -1). */
4789 if (val == ((bfd_signed_vma) 1 << 32))
4790 return 1;
4791
4792 val = val - 1;
4793 }
4794 else if (opnd == IA64_OPND_IMM8M1U8)
4795 {
4796 /* Zero is not valid for unsigned compares that take an adjusted
4797 constant immediate range. */
4798 if (e->X_add_number == 0)
4799 return 0;
4800
4801 /* Check for 0x10000000000000000. */
4802 if (e->X_op == O_big)
4803 {
4804 if (generic_bignum[0] == 0
4805 && generic_bignum[1] == 0
4806 && generic_bignum[2] == 0
4807 && generic_bignum[3] == 0
4808 && generic_bignum[4] == 1)
4809 return 1;
4810 else
4811 return 0;
4812 }
4813 else
4814 val = e->X_add_number - 1;
4815 }
4816 else if (opnd == IA64_OPND_IMM8M1)
4817 val = e->X_add_number - 1;
4818 else if (opnd == IA64_OPND_IMM8U4)
4819 {
4820 /* Sign-extend 32-bit unsigned numbers, so that the following range
4821 checks will work. */
4822 val = e->X_add_number;
4823 if (((val & (~(bfd_vma)0 << 32)) == 0)
4824 && ((val & ((bfd_vma)1 << 31)) != 0))
4825 val = ((val << 32) >> 32);
4826 }
4827 else
4828 val = e->X_add_number;
4829
4830 if ((val >= 0 && val < ((bfd_vma) 1 << (bits - 1)))
4831 || (val < 0 && -val <= ((bfd_vma) 1 << (bits - 1))))
4832 return 1;
4833 break;
4834
4835 case IA64_OPND_INC3:
4836 /* +/- 1, 4, 8, 16 */
4837 val = e->X_add_number;
4838 if (val < 0)
4839 val = -val;
4840 if (e->X_op == O_constant
4841 && (val == 1 || val == 4 || val == 8 || val == 16))
4842 return 1;
4843 break;
4844
4845 case IA64_OPND_TGT25:
4846 case IA64_OPND_TGT25b:
4847 case IA64_OPND_TGT25c:
4848 case IA64_OPND_TGT64:
4849 if (e->X_op == O_symbol)
4850 {
4851 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
4852 if (opnd == IA64_OPND_TGT25)
4853 fix->code = BFD_RELOC_IA64_PCREL21F;
4854 else if (opnd == IA64_OPND_TGT25b)
4855 fix->code = BFD_RELOC_IA64_PCREL21M;
4856 else if (opnd == IA64_OPND_TGT25c)
4857 fix->code = BFD_RELOC_IA64_PCREL21B;
4858 else if (opnd == IA64_OPND_TGT64)
4859 fix->code = BFD_RELOC_IA64_PCREL60B;
4860 else
4861 abort ();
4862
4863 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
4864 fix->opnd = idesc->operands[index];
4865 fix->expr = *e;
4866 fix->is_pcrel = 1;
4867 ++CURR_SLOT.num_fixups;
4868 return 1;
4869 }
4870 case IA64_OPND_TAG13:
4871 case IA64_OPND_TAG13b:
4872 switch (e->X_op)
4873 {
4874 case O_constant:
4875 return 1;
4876
4877 case O_symbol:
4878 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
4879 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, 0);
4880 fix->opnd = idesc->operands[index];
4881 fix->expr = *e;
4882 fix->is_pcrel = 1;
4883 ++CURR_SLOT.num_fixups;
4884 return 1;
4885
4886 default:
4887 break;
4888 }
4889 break;
4890
4891 default:
4892 break;
4893 }
4894 return 0;
4895 }
4896
4897 static int
4898 parse_operand (e)
4899 expressionS *e;
4900 {
4901 int sep = '\0';
4902
4903 memset (e, 0, sizeof (*e));
4904 e->X_op = O_absent;
4905 SKIP_WHITESPACE ();
4906 if (*input_line_pointer != '}')
4907 expression (e);
4908 sep = *input_line_pointer++;
4909
4910 if (sep == '}')
4911 {
4912 if (!md.manual_bundling)
4913 as_warn ("Found '}' when manual bundling is off");
4914 else
4915 CURR_SLOT.manual_bundling_off = 1;
4916 md.manual_bundling = 0;
4917 sep = '\0';
4918 }
4919 return sep;
4920 }
4921
4922 /* Returns the next entry in the opcode table that matches the one in
4923 IDESC, and frees the entry in IDESC. If no matching entry is
4924 found, NULL is returned instead. */
4925
4926 static struct ia64_opcode *
4927 get_next_opcode (struct ia64_opcode *idesc)
4928 {
4929 struct ia64_opcode *next = ia64_find_next_opcode (idesc);
4930 ia64_free_opcode (idesc);
4931 return next;
4932 }
4933
4934 /* Parse the operands for the opcode and find the opcode variant that
4935 matches the specified operands, or NULL if no match is possible. */
4936 static struct ia64_opcode*
4937 parse_operands (idesc)
4938 struct ia64_opcode *idesc;
4939 {
4940 int i = 0, highest_unmatched_operand, num_operands = 0, num_outputs = 0;
4941 int sep = 0;
4942 enum ia64_opnd expected_operand = IA64_OPND_NIL;
4943 char mnemonic[129];
4944 char *first_arg = 0, *end, *saved_input_pointer;
4945 unsigned int sof;
4946
4947 assert (strlen (idesc->name) <= 128);
4948
4949 strcpy (mnemonic, idesc->name);
4950 if (idesc->operands[2] == IA64_OPND_SOF)
4951 {
4952 /* To make the common idiom "alloc loc?=ar.pfs,0,1,0,0" work, we
4953 can't parse the first operand until we have parsed the
4954 remaining operands of the "alloc" instruction. */
4955 SKIP_WHITESPACE ();
4956 first_arg = input_line_pointer;
4957 end = strchr (input_line_pointer, '=');
4958 if (!end)
4959 {
4960 as_bad ("Expected separator `='");
4961 return 0;
4962 }
4963 input_line_pointer = end + 1;
4964 ++i;
4965 ++num_outputs;
4966 }
4967
4968 for (; i < NELEMS (CURR_SLOT.opnd); ++i)
4969 {
4970 sep = parse_operand (CURR_SLOT.opnd + i);
4971 if (CURR_SLOT.opnd[i].X_op == O_absent)
4972 break;
4973
4974 ++num_operands;
4975
4976 if (sep != '=' && sep != ',')
4977 break;
4978
4979 if (sep == '=')
4980 {
4981 if (num_outputs > 0)
4982 as_bad ("Duplicate equal sign (=) in instruction");
4983 else
4984 num_outputs = i + 1;
4985 }
4986 }
4987 if (sep != '\0')
4988 {
4989 as_bad ("Illegal operand separator `%c'", sep);
4990 return 0;
4991 }
4992
4993 if (idesc->operands[2] == IA64_OPND_SOF)
4994 {
4995 /* map alloc r1=ar.pfs,i,l,o,r to alloc r1=ar.pfs,(i+l+o),(i+l),r */
4996 know (strcmp (idesc->name, "alloc") == 0);
4997 if (num_operands == 5 /* first_arg not included in this count! */
4998 && CURR_SLOT.opnd[2].X_op == O_constant
4999 && CURR_SLOT.opnd[3].X_op == O_constant
5000 && CURR_SLOT.opnd[4].X_op == O_constant
5001 && CURR_SLOT.opnd[5].X_op == O_constant)
5002 {
5003 sof = set_regstack (CURR_SLOT.opnd[2].X_add_number,
5004 CURR_SLOT.opnd[3].X_add_number,
5005 CURR_SLOT.opnd[4].X_add_number,
5006 CURR_SLOT.opnd[5].X_add_number);
5007
5008 /* now we can parse the first arg: */
5009 saved_input_pointer = input_line_pointer;
5010 input_line_pointer = first_arg;
5011 sep = parse_operand (CURR_SLOT.opnd + 0);
5012 if (sep != '=')
5013 --num_outputs; /* force error */
5014 input_line_pointer = saved_input_pointer;
5015
5016 CURR_SLOT.opnd[2].X_add_number = sof;
5017 CURR_SLOT.opnd[3].X_add_number
5018 = sof - CURR_SLOT.opnd[4].X_add_number;
5019 CURR_SLOT.opnd[4] = CURR_SLOT.opnd[5];
5020 }
5021 }
5022
5023 highest_unmatched_operand = 0;
5024 expected_operand = idesc->operands[0];
5025 for (; idesc; idesc = get_next_opcode (idesc))
5026 {
5027 if (num_outputs != idesc->num_outputs)
5028 continue; /* mismatch in # of outputs */
5029
5030 CURR_SLOT.num_fixups = 0;
5031 for (i = 0; i < num_operands && idesc->operands[i]; ++i)
5032 if (!operand_match (idesc, i, CURR_SLOT.opnd + i))
5033 break;
5034
5035 if (i != num_operands)
5036 {
5037 if (i > highest_unmatched_operand)
5038 {
5039 highest_unmatched_operand = i;
5040 expected_operand = idesc->operands[i];
5041 }
5042 continue;
5043 }
5044
5045 if (num_operands < NELEMS (idesc->operands)
5046 && idesc->operands[num_operands])
5047 continue; /* mismatch in number of arguments */
5048
5049 break;
5050 }
5051 if (!idesc)
5052 {
5053 if (expected_operand)
5054 as_bad ("Operand %u of `%s' should be %s",
5055 highest_unmatched_operand + 1, mnemonic,
5056 elf64_ia64_operands[expected_operand].desc);
5057 else
5058 as_bad ("Operand mismatch");
5059 return 0;
5060 }
5061 return idesc;
5062 }
5063
5064 static void
5065 build_insn (slot, insnp)
5066 struct slot *slot;
5067 bfd_vma *insnp;
5068 {
5069 const struct ia64_operand *odesc, *o2desc;
5070 struct ia64_opcode *idesc = slot->idesc;
5071 bfd_signed_vma insn, val;
5072 const char *err;
5073 int i;
5074
5075 insn = idesc->opcode | slot->qp_regno;
5076
5077 for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; ++i)
5078 {
5079 if (slot->opnd[i].X_op == O_register
5080 || slot->opnd[i].X_op == O_constant
5081 || slot->opnd[i].X_op == O_index)
5082 val = slot->opnd[i].X_add_number;
5083 else if (slot->opnd[i].X_op == O_big)
5084 {
5085 /* This must be the value 0x10000000000000000. */
5086 assert (idesc->operands[i] == IA64_OPND_IMM8M1U8);
5087 val = 0;
5088 }
5089 else
5090 val = 0;
5091
5092 switch (idesc->operands[i])
5093 {
5094 case IA64_OPND_IMMU64:
5095 *insnp++ = (val >> 22) & 0x1ffffffffffLL;
5096 insn |= (((val & 0x7f) << 13) | (((val >> 7) & 0x1ff) << 27)
5097 | (((val >> 16) & 0x1f) << 22) | (((val >> 21) & 0x1) << 21)
5098 | (((val >> 63) & 0x1) << 36));
5099 continue;
5100
5101 case IA64_OPND_IMMU62:
5102 val &= 0x3fffffffffffffffULL;
5103 if (val != slot->opnd[i].X_add_number)
5104 as_warn (_("Value truncated to 62 bits"));
5105 *insnp++ = (val >> 21) & 0x1ffffffffffLL;
5106 insn |= (((val & 0xfffff) << 6) | (((val >> 20) & 0x1) << 36));
5107 continue;
5108
5109 case IA64_OPND_TGT64:
5110 val >>= 4;
5111 *insnp++ = ((val >> 20) & 0x7fffffffffLL) << 2;
5112 insn |= ((((val >> 59) & 0x1) << 36)
5113 | (((val >> 0) & 0xfffff) << 13));
5114 continue;
5115
5116 case IA64_OPND_AR3:
5117 val -= REG_AR;
5118 break;
5119
5120 case IA64_OPND_B1:
5121 case IA64_OPND_B2:
5122 val -= REG_BR;
5123 break;
5124
5125 case IA64_OPND_CR3:
5126 val -= REG_CR;
5127 break;
5128
5129 case IA64_OPND_F1:
5130 case IA64_OPND_F2:
5131 case IA64_OPND_F3:
5132 case IA64_OPND_F4:
5133 val -= REG_FR;
5134 break;
5135
5136 case IA64_OPND_P1:
5137 case IA64_OPND_P2:
5138 val -= REG_P;
5139 break;
5140
5141 case IA64_OPND_R1:
5142 case IA64_OPND_R2:
5143 case IA64_OPND_R3:
5144 case IA64_OPND_R3_2:
5145 case IA64_OPND_CPUID_R3:
5146 case IA64_OPND_DBR_R3:
5147 case IA64_OPND_DTR_R3:
5148 case IA64_OPND_ITR_R3:
5149 case IA64_OPND_IBR_R3:
5150 case IA64_OPND_MR3:
5151 case IA64_OPND_MSR_R3:
5152 case IA64_OPND_PKR_R3:
5153 case IA64_OPND_PMC_R3:
5154 case IA64_OPND_PMD_R3:
5155 case IA64_OPND_RR_R3:
5156 val -= REG_GR;
5157 break;
5158
5159 default:
5160 break;
5161 }
5162
5163 odesc = elf64_ia64_operands + idesc->operands[i];
5164 err = (*odesc->insert) (odesc, val, &insn);
5165 if (err)
5166 as_bad_where (slot->src_file, slot->src_line,
5167 "Bad operand value: %s", err);
5168 if (idesc->flags & IA64_OPCODE_PSEUDO)
5169 {
5170 if ((idesc->flags & IA64_OPCODE_F2_EQ_F3)
5171 && odesc == elf64_ia64_operands + IA64_OPND_F3)
5172 {
5173 o2desc = elf64_ia64_operands + IA64_OPND_F2;
5174 (*o2desc->insert) (o2desc, val, &insn);
5175 }
5176 if ((idesc->flags & IA64_OPCODE_LEN_EQ_64MCNT)
5177 && (odesc == elf64_ia64_operands + IA64_OPND_CPOS6a
5178 || odesc == elf64_ia64_operands + IA64_OPND_POS6))
5179 {
5180 o2desc = elf64_ia64_operands + IA64_OPND_LEN6;
5181 (*o2desc->insert) (o2desc, 64 - val, &insn);
5182 }
5183 }
5184 }
5185 *insnp = insn;
5186 }
5187
5188 static void
5189 emit_one_bundle ()
5190 {
5191 unsigned int manual_bundling_on = 0, manual_bundling_off = 0;
5192 unsigned int manual_bundling = 0;
5193 enum ia64_unit required_unit, insn_unit = 0;
5194 enum ia64_insn_type type[3], insn_type;
5195 unsigned int template, orig_template;
5196 bfd_vma insn[3] = {-1, -1, -1};
5197 struct ia64_opcode *idesc;
5198 int end_of_insn_group = 0, user_template = -1;
5199 int n, i, j, first, curr;
5200 unw_rec_list *ptr, *prev;
5201 bfd_vma t0 = 0, t1 = 0;
5202 struct label_fix *lfix;
5203 struct insn_fix *ifix;
5204 char mnemonic[16];
5205 fixS *fix;
5206 char *f;
5207
5208 first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % NUM_SLOTS;
5209 know (first >= 0 & first < NUM_SLOTS);
5210 n = MIN (3, md.num_slots_in_use);
5211
5212 /* Determine template: user user_template if specified, best match
5213 otherwise: */
5214
5215 if (md.slot[first].user_template >= 0)
5216 user_template = template = md.slot[first].user_template;
5217 else
5218 {
5219 /* auto select appropriate template */
5220 memset (type, 0, sizeof (type));
5221 curr = first;
5222 for (i = 0; i < n; ++i)
5223 {
5224 type[i] = md.slot[curr].idesc->type;
5225 curr = (curr + 1) % NUM_SLOTS;
5226 }
5227 template = best_template[type[0]][type[1]][type[2]];
5228 }
5229
5230 /* initialize instructions with appropriate nops: */
5231 for (i = 0; i < 3; ++i)
5232 insn[i] = nop[ia64_templ_desc[template].exec_unit[i]];
5233
5234 f = frag_more (16);
5235
5236 /* now fill in slots with as many insns as possible: */
5237 curr = first;
5238 idesc = md.slot[curr].idesc;
5239 end_of_insn_group = 0;
5240 for (i = 0; i < 3 && md.num_slots_in_use > 0; ++i)
5241 {
5242 /* Set the slot number for prologue/body records now as those
5243 refer to the current point, not the point after the
5244 instruction has been issued: */
5245 /* Don't try to delete prologue/body records here, as that will cause
5246 them to also be deleted from the master list of unwind records. */
5247 for (ptr = md.slot[curr].unwind_record; ptr; ptr = ptr->next)
5248 if (ptr->r.type == prologue || ptr->r.type == prologue_gr
5249 || ptr->r.type == body)
5250 ptr->slot_number = (unsigned long) f + i;
5251
5252 if (idesc->flags & IA64_OPCODE_SLOT2)
5253 {
5254 if (manual_bundling && i != 2)
5255 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5256 "`%s' must be last in bundle", idesc->name);
5257 else
5258 i = 2;
5259 }
5260 if (idesc->flags & IA64_OPCODE_LAST)
5261 {
5262 int required_slot, required_template;
5263
5264 /* If we need a stop bit after an M slot, our only choice is
5265 template 5 (M;;MI). If we need a stop bit after a B
5266 slot, our only choice is to place it at the end of the
5267 bundle, because the only available templates are MIB,
5268 MBB, BBB, MMB, and MFB. We don't handle anything other
5269 than M and B slots because these are the only kind of
5270 instructions that can have the IA64_OPCODE_LAST bit set. */
5271 required_template = template;
5272 switch (idesc->type)
5273 {
5274 case IA64_TYPE_M:
5275 required_slot = 0;
5276 required_template = 5;
5277 break;
5278
5279 case IA64_TYPE_B:
5280 required_slot = 2;
5281 break;
5282
5283 default:
5284 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5285 "Internal error: don't know how to force %s to end"
5286 "of instruction group", idesc->name);
5287 required_slot = i;
5288 break;
5289 }
5290 if (manual_bundling && i != required_slot)
5291 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5292 "`%s' must be last in instruction group",
5293 idesc->name);
5294 if (required_slot < i)
5295 /* Can't fit this instruction. */
5296 break;
5297
5298 i = required_slot;
5299 if (required_template != template)
5300 {
5301 /* If we switch the template, we need to reset the NOPs
5302 after slot i. The slot-types of the instructions ahead
5303 of i never change, so we don't need to worry about
5304 changing NOPs in front of this slot. */
5305 for (j = i; j < 3; ++j)
5306 insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]];
5307 }
5308 template = required_template;
5309 }
5310 if (curr != first && md.slot[curr].label_fixups)
5311 {
5312 if (manual_bundling_on)
5313 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5314 "Label must be first in a bundle");
5315 /* This insn must go into the first slot of a bundle. */
5316 break;
5317 }
5318
5319 manual_bundling_on = md.slot[curr].manual_bundling_on;
5320 manual_bundling_off = md.slot[curr].manual_bundling_off;
5321
5322 if (manual_bundling_on)
5323 {
5324 if (curr == first)
5325 manual_bundling = 1;
5326 else
5327 break; /* need to start a new bundle */
5328 }
5329
5330 if (end_of_insn_group && md.num_slots_in_use >= 1)
5331 {
5332 /* We need an instruction group boundary in the middle of a
5333 bundle. See if we can switch to an other template with
5334 an appropriate boundary. */
5335
5336 orig_template = template;
5337 if (i == 1 && (user_template == 4
5338 || (user_template < 0
5339 && (ia64_templ_desc[template].exec_unit[0]
5340 == IA64_UNIT_M))))
5341 {
5342 template = 5;
5343 end_of_insn_group = 0;
5344 }
5345 else if (i == 2 && (user_template == 0
5346 || (user_template < 0
5347 && (ia64_templ_desc[template].exec_unit[1]
5348 == IA64_UNIT_I)))
5349 /* This test makes sure we don't switch the template if
5350 the next instruction is one that needs to be first in
5351 an instruction group. Since all those instructions are
5352 in the M group, there is no way such an instruction can
5353 fit in this bundle even if we switch the template. The
5354 reason we have to check for this is that otherwise we
5355 may end up generating "MI;;I M.." which has the deadly
5356 effect that the second M instruction is no longer the
5357 first in the bundle! --davidm 99/12/16 */
5358 && (idesc->flags & IA64_OPCODE_FIRST) == 0)
5359 {
5360 template = 1;
5361 end_of_insn_group = 0;
5362 }
5363 else if (curr != first)
5364 /* can't fit this insn */
5365 break;
5366
5367 if (template != orig_template)
5368 /* if we switch the template, we need to reset the NOPs
5369 after slot i. The slot-types of the instructions ahead
5370 of i never change, so we don't need to worry about
5371 changing NOPs in front of this slot. */
5372 for (j = i; j < 3; ++j)
5373 insn[j] = nop[ia64_templ_desc[template].exec_unit[j]];
5374 }
5375 required_unit = ia64_templ_desc[template].exec_unit[i];
5376
5377 /* resolve dynamic opcodes such as "break" and "nop": */
5378 if (idesc->type == IA64_TYPE_DYN)
5379 {
5380 if ((strcmp (idesc->name, "nop") == 0)
5381 || (strcmp (idesc->name, "break") == 0))
5382 insn_unit = required_unit;
5383 else if (strcmp (idesc->name, "chk.s") == 0)
5384 {
5385 insn_unit = IA64_UNIT_M;
5386 if (required_unit == IA64_UNIT_I)
5387 insn_unit = IA64_UNIT_I;
5388 }
5389 else
5390 as_fatal ("emit_one_bundle: unexpected dynamic op");
5391
5392 sprintf (mnemonic, "%s.%c", idesc->name, "?imbf??"[insn_unit]);
5393 ia64_free_opcode (idesc);
5394 md.slot[curr].idesc = idesc = ia64_find_opcode (mnemonic);
5395 #if 0
5396 know (!idesc->next); /* no resolved dynamic ops have collisions */
5397 #endif
5398 }
5399 else
5400 {
5401 insn_type = idesc->type;
5402 insn_unit = IA64_UNIT_NIL;
5403 switch (insn_type)
5404 {
5405 case IA64_TYPE_A:
5406 if (required_unit == IA64_UNIT_I || required_unit == IA64_UNIT_M)
5407 insn_unit = required_unit;
5408 break;
5409 case IA64_TYPE_X: insn_unit = IA64_UNIT_L; break;
5410 case IA64_TYPE_I: insn_unit = IA64_UNIT_I; break;
5411 case IA64_TYPE_M: insn_unit = IA64_UNIT_M; break;
5412 case IA64_TYPE_B: insn_unit = IA64_UNIT_B; break;
5413 case IA64_TYPE_F: insn_unit = IA64_UNIT_F; break;
5414 default: break;
5415 }
5416 }
5417
5418 if (insn_unit != required_unit)
5419 {
5420 if (required_unit == IA64_UNIT_L
5421 && insn_unit == IA64_UNIT_I
5422 && !(idesc->flags & IA64_OPCODE_X_IN_MLX))
5423 {
5424 /* we got ourselves an MLX template but the current
5425 instruction isn't an X-unit, or an I-unit instruction
5426 that can go into the X slot of an MLX template. Duh. */
5427 if (md.num_slots_in_use >= NUM_SLOTS)
5428 {
5429 as_bad_where (md.slot[curr].src_file,
5430 md.slot[curr].src_line,
5431 "`%s' can't go in X slot of "
5432 "MLX template", idesc->name);
5433 /* drop this insn so we don't livelock: */
5434 --md.num_slots_in_use;
5435 }
5436 break;
5437 }
5438 continue; /* try next slot */
5439 }
5440
5441 if (debug_type == DEBUG_DWARF2)
5442 {
5443 bfd_vma addr;
5444
5445 addr = frag_now->fr_address + frag_now_fix () - 16 + 1*i;
5446 dwarf2_gen_line_info (addr, &md.slot[curr].debug_line);
5447 }
5448
5449 build_insn (md.slot + curr, insn + i);
5450
5451 /* Set slot counts for non prologue/body unwind records. */
5452 for (ptr = md.slot[curr].unwind_record; ptr; ptr = ptr->next)
5453 if (ptr->r.type != prologue && ptr->r.type != prologue_gr
5454 && ptr->r.type != body)
5455 ptr->slot_number = (unsigned long) f + i;
5456 md.slot[curr].unwind_record = NULL;
5457 unwind.next_slot_number = (unsigned long) f + i + ((i == 2)?(0x10-2):1);
5458
5459 if (required_unit == IA64_UNIT_L)
5460 {
5461 know (i == 1);
5462 /* skip one slot for long/X-unit instructions */
5463 ++i;
5464 }
5465 --md.num_slots_in_use;
5466
5467 /* now is a good time to fix up the labels for this insn: */
5468 for (lfix = md.slot[curr].label_fixups; lfix; lfix = lfix->next)
5469 {
5470 S_SET_VALUE (lfix->sym, frag_now_fix () - 16);
5471 symbol_set_frag (lfix->sym, frag_now);
5472 }
5473
5474 for (j = 0; j < md.slot[curr].num_fixups; ++j)
5475 {
5476 ifix = md.slot[curr].fixup + j;
5477 fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 4,
5478 &ifix->expr, ifix->is_pcrel, ifix->code);
5479 fix->tc_fix_data.opnd = ifix->opnd;
5480 fix->fx_plt = (fix->fx_r_type == BFD_RELOC_IA64_PLTOFF22);
5481 fix->fx_file = md.slot[curr].src_file;
5482 fix->fx_line = md.slot[curr].src_line;
5483 }
5484
5485 end_of_insn_group = md.slot[curr].end_of_insn_group;
5486
5487 /* clear slot: */
5488 ia64_free_opcode (md.slot[curr].idesc);
5489 memset (md.slot + curr, 0, sizeof (md.slot[curr]));
5490 md.slot[curr].user_template = -1;
5491
5492 if (manual_bundling_off)
5493 {
5494 manual_bundling = 0;
5495 break;
5496 }
5497 curr = (curr + 1) % NUM_SLOTS;
5498 idesc = md.slot[curr].idesc;
5499 }
5500 if (manual_bundling)
5501 {
5502 if (md.num_slots_in_use > 0)
5503 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5504 "`%s' does not fit into %s template",
5505 idesc->name, ia64_templ_desc[template].name);
5506 else
5507 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
5508 "Missing '}' at end of file");
5509 }
5510 know (md.num_slots_in_use < NUM_SLOTS);
5511
5512 t0 = end_of_insn_group | (template << 1) | (insn[0] << 5) | (insn[1] << 46);
5513 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
5514
5515 md_number_to_chars (f + 0, t0, 8);
5516 md_number_to_chars (f + 8, t1, 8);
5517 }
5518
5519 int
5520 md_parse_option (c, arg)
5521 int c;
5522 char *arg;
5523 {
5524 /* Switches from the Intel assembler. */
5525 switch (c)
5526 {
5527 case 'M':
5528 if (strcmp (arg, "ilp64") == 0
5529 || strcmp (arg, "lp64") == 0
5530 || strcmp (arg, "p64") == 0)
5531 {
5532 md.flags |= EF_IA_64_ABI64;
5533 }
5534 else if (strcmp (arg, "ilp32") == 0)
5535 {
5536 md.flags &= ~EF_IA_64_ABI64;
5537 }
5538 else if (strcmp (arg, "le") == 0)
5539 {
5540 md.flags &= ~EF_IA_64_BE;
5541 }
5542 else if (strcmp (arg, "be") == 0)
5543 {
5544 md.flags |= EF_IA_64_BE;
5545 }
5546 else
5547 return 0;
5548 break;
5549
5550 case 'N':
5551 if (strcmp (arg, "so") == 0)
5552 {
5553 /* Suppress signon message. */
5554 }
5555 else if (strcmp (arg, "pi") == 0)
5556 {
5557 /* Reject privileged instructions. FIXME */
5558 }
5559 else if (strcmp (arg, "us") == 0)
5560 {
5561 /* Allow union of signed and unsigned range. FIXME */
5562 }
5563 else if (strcmp (arg, "close_fcalls") == 0)
5564 {
5565 /* Do not resolve global function calls. */
5566 }
5567 else
5568 return 0;
5569 break;
5570
5571 case 'C':
5572 /* temp[="prefix"] Insert temporary labels into the object file
5573 symbol table prefixed by "prefix".
5574 Default prefix is ":temp:".
5575 */
5576 break;
5577
5578 case 'a':
5579 /* ??? Conflicts with gas' listing option. */
5580 /* indirect=<tgt> Assume unannotated indirect branches behavior
5581 according to <tgt> --
5582 exit: branch out from the current context (default)
5583 labels: all labels in context may be branch targets
5584 */
5585 break;
5586
5587 case 'x':
5588 /* -X conflicts with an ignored option, use -x instead */
5589 md.detect_dv = 1;
5590 if (!arg || strcmp (arg, "explicit") == 0)
5591 {
5592 /* set default mode to explicit */
5593 md.default_explicit_mode = 1;
5594 break;
5595 }
5596 else if (strcmp (arg, "auto") == 0)
5597 {
5598 md.default_explicit_mode = 0;
5599 }
5600 else if (strcmp (arg, "debug") == 0)
5601 {
5602 md.debug_dv = 1;
5603 }
5604 else if (strcmp (arg, "debugx") == 0)
5605 {
5606 md.default_explicit_mode = 1;
5607 md.debug_dv = 1;
5608 }
5609 else
5610 {
5611 as_bad (_("Unrecognized option '-x%s'"), arg);
5612 }
5613 break;
5614
5615 case 'S':
5616 /* nops Print nops statistics. */
5617 break;
5618
5619 default:
5620 return 0;
5621 }
5622
5623 return 1;
5624 }
5625
5626 void
5627 md_show_usage (stream)
5628 FILE *stream;
5629 {
5630 fputs(_("\
5631 IA-64 options:\n\
5632 -Milp32|-Milp64|-Mlp64|-Mp64 select data model (default -Mlp64)\n\
5633 -Mle | -Mbe select little- or big-endian byte order (default -Mle)\n\
5634 -x | -xexplicit turn on dependency violation checking (default)\n\
5635 -xauto automagically remove dependency violations\n\
5636 -xdebug debug dependency violation checker\n"),
5637 stream);
5638 }
5639
5640 static inline int
5641 match (int templ, int type, int slot)
5642 {
5643 enum ia64_unit unit;
5644 int result;
5645
5646 unit = ia64_templ_desc[templ].exec_unit[slot];
5647 switch (type)
5648 {
5649 case IA64_TYPE_DYN: result = 1; break; /* for nop and break */
5650 case IA64_TYPE_A:
5651 result = (unit == IA64_UNIT_I || unit == IA64_UNIT_M);
5652 break;
5653 case IA64_TYPE_X: result = (unit == IA64_UNIT_L); break;
5654 case IA64_TYPE_I: result = (unit == IA64_UNIT_I); break;
5655 case IA64_TYPE_M: result = (unit == IA64_UNIT_M); break;
5656 case IA64_TYPE_B: result = (unit == IA64_UNIT_B); break;
5657 case IA64_TYPE_F: result = (unit == IA64_UNIT_F); break;
5658 default: result = 0; break;
5659 }
5660 return result;
5661 }
5662
5663 /* This function is called once, at assembler startup time. It sets
5664 up all the tables, etc. that the MD part of the assembler will need
5665 that can be determined before arguments are parsed. */
5666 void
5667 md_begin ()
5668 {
5669 int i, j, k, t, total, ar_base, cr_base, goodness, best, regnum;
5670 const char *err;
5671 char name[8];
5672
5673 md.auto_align = 1;
5674 md.explicit_mode = md.default_explicit_mode;
5675
5676 bfd_set_section_alignment (stdoutput, text_section, 4);
5677
5678 target_big_endian = 0;
5679 pseudo_func[FUNC_FPTR_RELATIVE].u.sym =
5680 symbol_new (".<fptr>", undefined_section, FUNC_FPTR_RELATIVE,
5681 &zero_address_frag);
5682
5683 pseudo_func[FUNC_GP_RELATIVE].u.sym =
5684 symbol_new (".<gprel>", undefined_section, FUNC_GP_RELATIVE,
5685 &zero_address_frag);
5686
5687 pseudo_func[FUNC_LT_RELATIVE].u.sym =
5688 symbol_new (".<ltoff>", undefined_section, FUNC_LT_RELATIVE,
5689 &zero_address_frag);
5690
5691 pseudo_func[FUNC_PC_RELATIVE].u.sym =
5692 symbol_new (".<pcrel>", undefined_section, FUNC_PC_RELATIVE,
5693 &zero_address_frag);
5694
5695 pseudo_func[FUNC_PLT_RELATIVE].u.sym =
5696 symbol_new (".<pltoff>", undefined_section, FUNC_PLT_RELATIVE,
5697 &zero_address_frag);
5698
5699 pseudo_func[FUNC_SEC_RELATIVE].u.sym =
5700 symbol_new (".<secrel>", undefined_section, FUNC_SEC_RELATIVE,
5701 &zero_address_frag);
5702
5703 pseudo_func[FUNC_SEG_RELATIVE].u.sym =
5704 symbol_new (".<segrel>", undefined_section, FUNC_SEG_RELATIVE,
5705 &zero_address_frag);
5706
5707 pseudo_func[FUNC_LTV_RELATIVE].u.sym =
5708 symbol_new (".<ltv>", undefined_section, FUNC_LTV_RELATIVE,
5709 &zero_address_frag);
5710
5711 pseudo_func[FUNC_LT_FPTR_RELATIVE].u.sym =
5712 symbol_new (".<ltoff.fptr>", undefined_section, FUNC_LT_FPTR_RELATIVE,
5713 &zero_address_frag);
5714
5715 /* compute the table of best templates: */
5716 for (i = 0; i < IA64_NUM_TYPES; ++i)
5717 for (j = 0; j < IA64_NUM_TYPES; ++j)
5718 for (k = 0; k < IA64_NUM_TYPES; ++k)
5719 {
5720 best = 0;
5721 for (t = 0; t < NELEMS (ia64_templ_desc); ++t)
5722 {
5723 goodness = 0;
5724 if (match (t, i, 0))
5725 {
5726 if (match (t, j, 1))
5727 {
5728 if (match (t, k, 2))
5729 goodness = 3;
5730 else
5731 goodness = 2;
5732 }
5733 else if (match (t, j, 2))
5734 goodness = 2;
5735 else
5736 goodness = 1;
5737 }
5738 else if (match (t, i, 1))
5739 {
5740 if (match (t, j, 2))
5741 goodness = 2;
5742 else
5743 goodness = 1;
5744 }
5745 else if (match (t, i, 2))
5746 goodness = 1;
5747
5748 if (goodness > best)
5749 {
5750 best = goodness;
5751 best_template[i][j][k] = t;
5752 }
5753 }
5754 }
5755
5756 for (i = 0; i < NUM_SLOTS; ++i)
5757 md.slot[i].user_template = -1;
5758
5759 md.pseudo_hash = hash_new ();
5760 for (i = 0; i < NELEMS (pseudo_opcode); ++i)
5761 {
5762 err = hash_insert (md.pseudo_hash, pseudo_opcode[i].name,
5763 (void *) (pseudo_opcode + i));
5764 if (err)
5765 as_fatal ("ia64.md_begin: can't hash `%s': %s",
5766 pseudo_opcode[i].name, err);
5767 }
5768
5769 md.reg_hash = hash_new ();
5770 md.dynreg_hash = hash_new ();
5771 md.const_hash = hash_new ();
5772 md.entry_hash = hash_new ();
5773
5774 /* general registers: */
5775
5776 total = 128;
5777 for (i = 0; i < total; ++i)
5778 {
5779 sprintf (name, "r%d", i - REG_GR);
5780 md.regsym[i] = declare_register (name, i);
5781 }
5782
5783 /* floating point registers: */
5784 total += 128;
5785 for (; i < total; ++i)
5786 {
5787 sprintf (name, "f%d", i - REG_FR);
5788 md.regsym[i] = declare_register (name, i);
5789 }
5790
5791 /* application registers: */
5792 total += 128;
5793 ar_base = i;
5794 for (; i < total; ++i)
5795 {
5796 sprintf (name, "ar%d", i - REG_AR);
5797 md.regsym[i] = declare_register (name, i);
5798 }
5799
5800 /* control registers: */
5801 total += 128;
5802 cr_base = i;
5803 for (; i < total; ++i)
5804 {
5805 sprintf (name, "cr%d", i - REG_CR);
5806 md.regsym[i] = declare_register (name, i);
5807 }
5808
5809 /* predicate registers: */
5810 total += 64;
5811 for (; i < total; ++i)
5812 {
5813 sprintf (name, "p%d", i - REG_P);
5814 md.regsym[i] = declare_register (name, i);
5815 }
5816
5817 /* branch registers: */
5818 total += 8;
5819 for (; i < total; ++i)
5820 {
5821 sprintf (name, "b%d", i - REG_BR);
5822 md.regsym[i] = declare_register (name, i);
5823 }
5824
5825 md.regsym[REG_IP] = declare_register ("ip", REG_IP);
5826 md.regsym[REG_CFM] = declare_register ("cfm", REG_CFM);
5827 md.regsym[REG_PR] = declare_register ("pr", REG_PR);
5828 md.regsym[REG_PR_ROT] = declare_register ("pr.rot", REG_PR_ROT);
5829 md.regsym[REG_PSR] = declare_register ("psr", REG_PSR);
5830 md.regsym[REG_PSR_L] = declare_register ("psr.l", REG_PSR_L);
5831 md.regsym[REG_PSR_UM] = declare_register ("psr.um", REG_PSR_UM);
5832
5833 for (i = 0; i < NELEMS (indirect_reg); ++i)
5834 {
5835 regnum = indirect_reg[i].regnum;
5836 md.regsym[regnum] = declare_register (indirect_reg[i].name, regnum);
5837 }
5838
5839 /* define synonyms for application registers: */
5840 for (i = REG_AR; i < REG_AR + NELEMS (ar); ++i)
5841 md.regsym[i] = declare_register (ar[i - REG_AR].name,
5842 REG_AR + ar[i - REG_AR].regnum);
5843
5844 /* define synonyms for control registers: */
5845 for (i = REG_CR; i < REG_CR + NELEMS (cr); ++i)
5846 md.regsym[i] = declare_register (cr[i - REG_CR].name,
5847 REG_CR + cr[i - REG_CR].regnum);
5848
5849 declare_register ("gp", REG_GR + 1);
5850 declare_register ("sp", REG_GR + 12);
5851 declare_register ("rp", REG_BR + 0);
5852
5853 /* pseudo-registers used to specify unwind info: */
5854 declare_register ("psp", REG_PSP);
5855
5856 declare_register_set ("ret", 4, REG_GR + 8);
5857 declare_register_set ("farg", 8, REG_FR + 8);
5858 declare_register_set ("fret", 8, REG_FR + 8);
5859
5860 for (i = 0; i < NELEMS (const_bits); ++i)
5861 {
5862 err = hash_insert (md.const_hash, const_bits[i].name,
5863 (PTR) (const_bits + i));
5864 if (err)
5865 as_fatal ("Inserting \"%s\" into constant hash table failed: %s",
5866 name, err);
5867 }
5868
5869 /* Default to 64-bit mode. */
5870 md.flags = EF_IA_64_ABI64;
5871
5872 md.mem_offset.hint = 0;
5873 md.path = 0;
5874 md.maxpaths = 0;
5875 md.entry_labels = NULL;
5876 }
5877
5878 void
5879 ia64_end_of_source ()
5880 {
5881 /* terminate insn group upon reaching end of file: */
5882 insn_group_break (1, 0, 0);
5883
5884 /* emits slots we haven't written yet: */
5885 ia64_flush_insns ();
5886
5887 bfd_set_private_flags (stdoutput, md.flags);
5888
5889 if (debug_type == DEBUG_DWARF2)
5890 dwarf2_finish ();
5891
5892 md.mem_offset.hint = 0;
5893 }
5894
5895 void
5896 ia64_start_line ()
5897 {
5898 md.qp.X_op = O_absent;
5899
5900 if (ignore_input ())
5901 return;
5902
5903 if (input_line_pointer[0] == ';' && input_line_pointer[-1] == ';')
5904 {
5905 if (md.detect_dv && !md.explicit_mode)
5906 as_warn (_("Explicit stops are ignored in auto mode"));
5907 else
5908 insn_group_break (1, 0, 0);
5909 }
5910 }
5911
5912 int
5913 ia64_unrecognized_line (ch)
5914 int ch;
5915 {
5916 switch (ch)
5917 {
5918 case '(':
5919 expression (&md.qp);
5920 if (*input_line_pointer++ != ')')
5921 {
5922 as_bad ("Expected ')'");
5923 return 0;
5924 }
5925 if (md.qp.X_op != O_register)
5926 {
5927 as_bad ("Qualifying predicate expected");
5928 return 0;
5929 }
5930 if (md.qp.X_add_number < REG_P || md.qp.X_add_number >= REG_P + 64)
5931 {
5932 as_bad ("Predicate register expected");
5933 return 0;
5934 }
5935 return 1;
5936
5937 case '{':
5938 if (md.manual_bundling)
5939 as_warn ("Found '{' when manual bundling is already turned on");
5940 else
5941 CURR_SLOT.manual_bundling_on = 1;
5942 md.manual_bundling = 1;
5943
5944 /* bundling is only acceptable in explicit mode
5945 or when in default automatic mode */
5946 if (md.detect_dv && !md.explicit_mode)
5947 {
5948 if (!md.mode_explicitly_set
5949 && !md.default_explicit_mode)
5950 dot_dv_mode ('E');
5951 else
5952 as_warn (_("Found '{' after explicit switch to automatic mode"));
5953 }
5954 return 1;
5955
5956 case '}':
5957 if (!md.manual_bundling)
5958 as_warn ("Found '}' when manual bundling is off");
5959 else
5960 PREV_SLOT.manual_bundling_off = 1;
5961 md.manual_bundling = 0;
5962
5963 /* switch back to automatic mode, if applicable */
5964 if (md.detect_dv
5965 && md.explicit_mode
5966 && !md.mode_explicitly_set
5967 && !md.default_explicit_mode)
5968 dot_dv_mode ('A');
5969
5970 /* Allow '{' to follow on the same line. We also allow ";;", but that
5971 happens automatically because ';' is an end of line marker. */
5972 SKIP_WHITESPACE ();
5973 if (input_line_pointer[0] == '{')
5974 {
5975 input_line_pointer++;
5976 return ia64_unrecognized_line ('{');
5977 }
5978
5979 demand_empty_rest_of_line ();
5980 return 1;
5981
5982 default:
5983 break;
5984 }
5985 return 0; /* not a valid line */
5986 }
5987
5988 void
5989 ia64_frob_label (sym)
5990 struct symbol *sym;
5991 {
5992 struct label_fix *fix;
5993
5994 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
5995 {
5996 md.last_text_seg = now_seg;
5997 fix = obstack_alloc (&notes, sizeof (*fix));
5998 fix->sym = sym;
5999 fix->next = CURR_SLOT.label_fixups;
6000 CURR_SLOT.label_fixups = fix;
6001
6002 /* keep track of how many code entry points we've seen */
6003 if (md.path == md.maxpaths)
6004 {
6005 md.maxpaths += 20;
6006 md.entry_labels = (const char **)
6007 xrealloc ((void *)md.entry_labels, md.maxpaths * sizeof (char *));
6008 }
6009 md.entry_labels[md.path++] = S_GET_NAME (sym);
6010 }
6011 }
6012
6013 void
6014 ia64_flush_pending_output ()
6015 {
6016 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
6017 {
6018 /* ??? This causes many unnecessary stop bits to be emitted.
6019 Unfortunately, it isn't clear if it is safe to remove this. */
6020 insn_group_break (1, 0, 0);
6021 ia64_flush_insns ();
6022 }
6023 }
6024
6025 /* Do ia64-specific expression optimization. All that's done here is
6026 to transform index expressions that are either due to the indexing
6027 of rotating registers or due to the indexing of indirect register
6028 sets. */
6029 int
6030 ia64_optimize_expr (l, op, r)
6031 expressionS *l;
6032 operatorT op;
6033 expressionS *r;
6034 {
6035 unsigned num_regs;
6036
6037 if (op == O_index)
6038 {
6039 if (l->X_op == O_register && r->X_op == O_constant)
6040 {
6041 num_regs = (l->X_add_number >> 16);
6042 if ((unsigned) r->X_add_number >= num_regs)
6043 {
6044 if (!num_regs)
6045 as_bad ("No current frame");
6046 else
6047 as_bad ("Index out of range 0..%u", num_regs - 1);
6048 r->X_add_number = 0;
6049 }
6050 l->X_add_number = (l->X_add_number & 0xffff) + r->X_add_number;
6051 return 1;
6052 }
6053 else if (l->X_op == O_register && r->X_op == O_register)
6054 {
6055 if (l->X_add_number < IND_CPUID || l->X_add_number > IND_RR
6056 || l->X_add_number == IND_MEM)
6057 {
6058 as_bad ("Indirect register set name expected");
6059 l->X_add_number = IND_CPUID;
6060 }
6061 l->X_op = O_index;
6062 l->X_op_symbol = md.regsym[l->X_add_number];
6063 l->X_add_number = r->X_add_number;
6064 return 1;
6065 }
6066 }
6067 return 0;
6068 }
6069
6070 int
6071 ia64_parse_name (name, e)
6072 char *name;
6073 expressionS *e;
6074 {
6075 struct const_desc *cdesc;
6076 struct dynreg *dr = 0;
6077 unsigned int regnum;
6078 struct symbol *sym;
6079 char *end;
6080
6081 /* first see if NAME is a known register name: */
6082 sym = hash_find (md.reg_hash, name);
6083 if (sym)
6084 {
6085 e->X_op = O_register;
6086 e->X_add_number = S_GET_VALUE (sym);
6087 return 1;
6088 }
6089
6090 cdesc = hash_find (md.const_hash, name);
6091 if (cdesc)
6092 {
6093 e->X_op = O_constant;
6094 e->X_add_number = cdesc->value;
6095 return 1;
6096 }
6097
6098 /* check for inN, locN, or outN: */
6099 switch (name[0])
6100 {
6101 case 'i':
6102 if (name[1] == 'n' && isdigit (name[2]))
6103 {
6104 dr = &md.in;
6105 name += 2;
6106 }
6107 break;
6108
6109 case 'l':
6110 if (name[1] == 'o' && name[2] == 'c' && isdigit (name[3]))
6111 {
6112 dr = &md.loc;
6113 name += 3;
6114 }
6115 break;
6116
6117 case 'o':
6118 if (name[1] == 'u' && name[2] == 't' && isdigit (name[3]))
6119 {
6120 dr = &md.out;
6121 name += 3;
6122 }
6123 break;
6124
6125 default:
6126 break;
6127 }
6128
6129 if (dr)
6130 {
6131 /* the name is inN, locN, or outN; parse the register number: */
6132 regnum = strtoul (name, &end, 10);
6133 if (end > name && *end == '\0')
6134 {
6135 if ((unsigned) regnum >= dr->num_regs)
6136 {
6137 if (!dr->num_regs)
6138 as_bad ("No current frame");
6139 else
6140 as_bad ("Register number out of range 0..%u", dr->num_regs-1);
6141 regnum = 0;
6142 }
6143 e->X_op = O_register;
6144 e->X_add_number = dr->base + regnum;
6145 return 1;
6146 }
6147 }
6148
6149 if ((dr = hash_find (md.dynreg_hash, name)))
6150 {
6151 /* We've got ourselves the name of a rotating register set.
6152 Store the base register number in the low 16 bits of
6153 X_add_number and the size of the register set in the top 16
6154 bits. */
6155 e->X_op = O_register;
6156 e->X_add_number = dr->base | (dr->num_regs << 16);
6157 return 1;
6158 }
6159 return 0;
6160 }
6161
6162 /* Remove the '#' suffix that indicates a symbol as opposed to a register. */
6163
6164 char *
6165 ia64_canonicalize_symbol_name (name)
6166 char *name;
6167 {
6168 size_t len = strlen(name);
6169 if (len > 1 && name[len-1] == '#')
6170 name[len-1] = '\0';
6171 return name;
6172 }
6173
6174 static int
6175 is_conditional_branch (idesc)
6176 struct ia64_opcode *idesc;
6177 {
6178 return (strncmp (idesc->name, "br", 2) == 0
6179 && (strcmp (idesc->name, "br") == 0
6180 || strncmp (idesc->name, "br.cond", 7) == 0
6181 || strncmp (idesc->name, "br.call", 7) == 0
6182 || strncmp (idesc->name, "br.ret", 6) == 0
6183 || strcmp (idesc->name, "brl") == 0
6184 || strncmp (idesc->name, "brl.cond", 7) == 0
6185 || strncmp (idesc->name, "brl.call", 7) == 0
6186 || strncmp (idesc->name, "brl.ret", 6) == 0));
6187 }
6188
6189 /* Return whether the given opcode is a taken branch. If there's any doubt,
6190 returns zero */
6191 static int
6192 is_taken_branch (idesc)
6193 struct ia64_opcode *idesc;
6194 {
6195 return ((is_conditional_branch (idesc) && CURR_SLOT.qp_regno == 0)
6196 || strncmp (idesc->name, "br.ia", 5) == 0);
6197 }
6198
6199 /* Return whether the given opcode is an interruption or rfi. If there's any
6200 doubt, returns zero */
6201 static int
6202 is_interruption_or_rfi (idesc)
6203 struct ia64_opcode *idesc;
6204 {
6205 if (strcmp (idesc->name, "rfi") == 0)
6206 return 1;
6207 return 0;
6208 }
6209
6210 /* Returns the index of the given dependency in the opcode's list of chks, or
6211 -1 if there is no dependency. */
6212 static int
6213 depends_on (depind, idesc)
6214 int depind;
6215 struct ia64_opcode *idesc;
6216 {
6217 int i;
6218 const struct ia64_opcode_dependency *dep = idesc->dependencies;
6219 for (i = 0;i < dep->nchks; i++)
6220 {
6221 if (depind == DEP(dep->chks[i]))
6222 return i;
6223 }
6224 return -1;
6225 }
6226
6227 /* Determine a set of specific resources used for a particular resource
6228 class. Returns the number of specific resources identified For those
6229 cases which are not determinable statically, the resource returned is
6230 marked nonspecific.
6231
6232 Meanings of value in 'NOTE':
6233 1) only read/write when the register number is explicitly encoded in the
6234 insn.
6235 2) only read CFM when accessing a rotating GR, FR, or PR. mov pr only
6236 accesses CFM when qualifying predicate is in the rotating region.
6237 3) general register value is used to specify an indirect register; not
6238 determinable statically.
6239 4) only read the given resource when bits 7:0 of the indirect index
6240 register value does not match the register number of the resource; not
6241 determinable statically.
6242 5) all rules are implementation specific.
6243 6) only when both the index specified by the reader and the index specified
6244 by the writer have the same value in bits 63:61; not determinable
6245 statically.
6246 7) only access the specified resource when the corresponding mask bit is
6247 set
6248 8) PSR.dfh is only read when these insns reference FR32-127. PSR.dfl is
6249 only read when these insns reference FR2-31
6250 9) PSR.mfl is only written when these insns write FR2-31. PSR.mfh is only
6251 written when these insns write FR32-127
6252 10) The PSR.bn bit is only accessed when one of GR16-31 is specified in the
6253 instruction
6254 11) The target predicates are written independently of PR[qp], but source
6255 registers are only read if PR[qp] is true. Since the state of PR[qp]
6256 cannot statically be determined, all source registers are marked used.
6257 12) This insn only reads the specified predicate register when that
6258 register is the PR[qp].
6259 13) This reference to ld-c only applies to teh GR whose value is loaded
6260 with data returned from memory, not the post-incremented address register.
6261 14) The RSE resource includes the implementation-specific RSE internal
6262 state resources. At least one (and possibly more) of these resources are
6263 read by each instruction listed in IC:rse-readers. At least one (and
6264 possibly more) of these resources are written by each insn listed in
6265 IC:rse-writers.
6266 15+16) Represents reserved instructions, which the assembler does not
6267 generate.
6268
6269 Memory resources (i.e. locations in memory) are *not* marked or tracked by
6270 this code; there are no dependency violations based on memory access.
6271
6272 */
6273
6274 #define MAX_SPECS 256
6275 #define DV_CHK 1
6276 #define DV_REG 0
6277
6278 static int
6279 specify_resource (dep, idesc, type, specs, note, path)
6280 const struct ia64_dependency *dep;
6281 struct ia64_opcode *idesc;
6282 int type; /* is this a DV chk or a DV reg? */
6283 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
6284 int note; /* resource note for this insn's usage */
6285 int path; /* which execution path to examine */
6286 {
6287 int count = 0;
6288 int i;
6289 int rsrc_write = 0;
6290 struct rsrc tmpl;
6291
6292 if (dep->mode == IA64_DV_WAW
6293 || (dep->mode == IA64_DV_RAW && type == DV_REG)
6294 || (dep->mode == IA64_DV_WAR && type == DV_CHK))
6295 rsrc_write = 1;
6296
6297 /* template for any resources we identify */
6298 tmpl.dependency = dep;
6299 tmpl.note = note;
6300 tmpl.insn_srlz = tmpl.data_srlz = 0;
6301 tmpl.qp_regno = CURR_SLOT.qp_regno;
6302 tmpl.link_to_qp_branch = 1;
6303 tmpl.mem_offset.hint = 0;
6304 tmpl.specific = 1;
6305 tmpl.index = 0;
6306
6307 #define UNHANDLED \
6308 as_warn (_("Unhandled dependency %s for %s (%s), note %d"), \
6309 dep->name, idesc->name, (rsrc_write?"write":"read"), note)
6310 #define KNOWN(REG) (gr_values[REG].known && gr_values[REG].path >= path)
6311
6312 /* we don't need to track these */
6313 if (dep->semantics == IA64_DVS_NONE)
6314 return 0;
6315
6316 switch (dep->specifier)
6317 {
6318 case IA64_RS_AR_K:
6319 if (note == 1)
6320 {
6321 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
6322 {
6323 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
6324 if (regno >= 0 && regno <= 7)
6325 {
6326 specs[count] = tmpl;
6327 specs[count++].index = regno;
6328 }
6329 }
6330 }
6331 else if (note == 0)
6332 {
6333 for(i=0;i < 8;i++)
6334 {
6335 specs[count] = tmpl;
6336 specs[count++].index = i;
6337 }
6338 }
6339 else
6340 {
6341 UNHANDLED;
6342 }
6343 break;
6344
6345 case IA64_RS_AR_UNAT:
6346 /* This is a mov =AR or mov AR= instruction. */
6347 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
6348 {
6349 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
6350 if (regno == AR_UNAT)
6351 {
6352 specs[count++] = tmpl;
6353 }
6354 }
6355 else
6356 {
6357 /* This is a spill/fill, or other instruction that modifies the
6358 unat register. */
6359
6360 /* Unless we can determine the specific bits used, mark the whole
6361 thing; bits 8:3 of the memory address indicate the bit used in
6362 UNAT. The .mem.offset hint may be used to eliminate a small
6363 subset of conflicts. */
6364 specs[count] = tmpl;
6365 if (md.mem_offset.hint)
6366 {
6367 if (md.debug_dv)
6368 fprintf (stderr, " Using hint for spill/fill\n");
6369 /* the index isn't actually used, just set it to something
6370 approximating the bit index */
6371 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
6372 specs[count].mem_offset.hint = 1;
6373 specs[count].mem_offset.offset = md.mem_offset.offset;
6374 specs[count++].mem_offset.base = md.mem_offset.base;
6375 }
6376 else
6377 {
6378 specs[count++].specific = 0;
6379 }
6380 }
6381 break;
6382
6383 case IA64_RS_AR:
6384 if (note == 1)
6385 {
6386 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
6387 {
6388 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
6389 if ((regno >= 8 && regno <= 15)
6390 || (regno >= 20 && regno <= 23)
6391 || (regno >= 31 && regno <= 39)
6392 || (regno >= 41 && regno <= 47)
6393 || (regno >= 67 && regno <= 111))
6394 {
6395 specs[count] = tmpl;
6396 specs[count++].index = regno;
6397 }
6398 }
6399 }
6400 else
6401 {
6402 UNHANDLED;
6403 }
6404 break;
6405
6406 case IA64_RS_ARb:
6407 if (note == 1)
6408 {
6409 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
6410 {
6411 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
6412 if ((regno >= 48 && regno <= 63)
6413 || (regno >= 112 && regno <= 127))
6414 {
6415 specs[count] = tmpl;
6416 specs[count++].index = regno;
6417 }
6418 }
6419 }
6420 else if (note == 0)
6421 {
6422 for (i=48;i < 64;i++)
6423 {
6424 specs[count] = tmpl;
6425 specs[count++].index = i;
6426 }
6427 for (i=112;i < 128;i++)
6428 {
6429 specs[count] = tmpl;
6430 specs[count++].index = i;
6431 }
6432 }
6433 else
6434 {
6435 UNHANDLED;
6436 }
6437 break;
6438
6439 case IA64_RS_BR:
6440 if (note != 1)
6441 {
6442 UNHANDLED;
6443 }
6444 else
6445 {
6446 if (rsrc_write)
6447 {
6448 for (i=0;i < idesc->num_outputs;i++)
6449 if (idesc->operands[i] == IA64_OPND_B1
6450 || idesc->operands[i] == IA64_OPND_B2)
6451 {
6452 specs[count] = tmpl;
6453 specs[count++].index =
6454 CURR_SLOT.opnd[i].X_add_number - REG_BR;
6455 }
6456 }
6457 else
6458 {
6459 for (i = idesc->num_outputs;i < NELEMS(idesc->operands);i++)
6460 if (idesc->operands[i] == IA64_OPND_B1
6461 || idesc->operands[i] == IA64_OPND_B2)
6462 {
6463 specs[count] = tmpl;
6464 specs[count++].index =
6465 CURR_SLOT.opnd[i].X_add_number - REG_BR;
6466 }
6467 }
6468 }
6469 break;
6470
6471 case IA64_RS_CPUID: /* four or more registers */
6472 if (note == 3)
6473 {
6474 if (idesc->operands[!rsrc_write] == IA64_OPND_CPUID_R3)
6475 {
6476 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
6477 if (regno >= 0 && regno < NELEMS(gr_values)
6478 && KNOWN(regno))
6479 {
6480 specs[count] = tmpl;
6481 specs[count++].index = gr_values[regno].value & 0xFF;
6482 }
6483 else
6484 {
6485 specs[count] = tmpl;
6486 specs[count++].specific = 0;
6487 }
6488 }
6489 }
6490 else
6491 {
6492 UNHANDLED;
6493 }
6494 break;
6495
6496 case IA64_RS_DBR: /* four or more registers */
6497 if (note == 3)
6498 {
6499 if (idesc->operands[!rsrc_write] == IA64_OPND_DBR_R3)
6500 {
6501 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
6502 if (regno >= 0 && regno < NELEMS(gr_values)
6503 && KNOWN(regno))
6504 {
6505 specs[count] = tmpl;
6506 specs[count++].index = gr_values[regno].value & 0xFF;
6507 }
6508 else
6509 {
6510 specs[count] = tmpl;
6511 specs[count++].specific = 0;
6512 }
6513 }
6514 }
6515 else if (note == 0 && !rsrc_write)
6516 {
6517 specs[count] = tmpl;
6518 specs[count++].specific = 0;
6519 }
6520 else
6521 {
6522 UNHANDLED;
6523 }
6524 break;
6525
6526 case IA64_RS_IBR: /* four or more registers */
6527 if (note == 3)
6528 {
6529 if (idesc->operands[!rsrc_write] == IA64_OPND_IBR_R3)
6530 {
6531 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
6532 if (regno >= 0 && regno < NELEMS(gr_values)
6533 && KNOWN(regno))
6534 {
6535 specs[count] = tmpl;
6536 specs[count++].index = gr_values[regno].value & 0xFF;
6537 }
6538 else
6539 {
6540 specs[count] = tmpl;
6541 specs[count++].specific = 0;
6542 }
6543 }
6544 }
6545 else
6546 {
6547 UNHANDLED;
6548 }
6549 break;
6550
6551 case IA64_RS_MSR:
6552 if (note == 5)
6553 {
6554 /* These are implementation specific. Force all references to
6555 conflict with all other references. */
6556 specs[count] = tmpl;
6557 specs[count++].specific = 0;
6558 }
6559 else
6560 {
6561 UNHANDLED;
6562 }
6563 break;
6564
6565 case IA64_RS_PKR: /* 16 or more registers */
6566 if (note == 3 || note == 4)
6567 {
6568 if (idesc->operands[!rsrc_write] == IA64_OPND_PKR_R3)
6569 {
6570 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
6571 if (regno >= 0 && regno < NELEMS(gr_values)
6572 && KNOWN(regno))
6573 {
6574 if (note == 3)
6575 {
6576 specs[count] = tmpl;
6577 specs[count++].index = gr_values[regno].value & 0xFF;
6578 }
6579 else for (i=0;i < NELEMS(gr_values);i++)
6580 {
6581 /* uses all registers *except* the one in R3 */
6582 if (i != (gr_values[regno].value & 0xFF))
6583 {
6584 specs[count] = tmpl;
6585 specs[count++].index = i;
6586 }
6587 }
6588 }
6589 else
6590 {
6591 specs[count] = tmpl;
6592 specs[count++].specific = 0;
6593 }
6594 }
6595 }
6596 else if (note == 0)
6597 {
6598 /* probe et al. */
6599 specs[count] = tmpl;
6600 specs[count++].specific = 0;
6601 }
6602 break;
6603
6604 case IA64_RS_PMC: /* four or more registers */
6605 if (note == 3)
6606 {
6607 if (idesc->operands[!rsrc_write] == IA64_OPND_PMC_R3
6608 || (!rsrc_write && idesc->operands[1] == IA64_OPND_PMD_R3))
6609
6610 {
6611 int index = ((idesc->operands[1] == IA64_OPND_R3 && !rsrc_write)
6612 ? 1 : !rsrc_write);
6613 int regno = CURR_SLOT.opnd[index].X_add_number - REG_GR;
6614 if (regno >= 0 && regno < NELEMS(gr_values)
6615 && KNOWN(regno))
6616 {
6617 specs[count] = tmpl;
6618 specs[count++].index = gr_values[regno].value & 0xFF;
6619 }
6620 else
6621 {
6622 specs[count] = tmpl;
6623 specs[count++].specific = 0;
6624 }
6625 }
6626 }
6627 else
6628 {
6629 UNHANDLED;
6630 }
6631 break;
6632
6633 case IA64_RS_PMD: /* four or more registers */
6634 if (note == 3)
6635 {
6636 if (idesc->operands[!rsrc_write] == IA64_OPND_PMD_R3)
6637 {
6638 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
6639 if (regno >= 0 && regno < NELEMS(gr_values)
6640 && KNOWN(regno))
6641 {
6642 specs[count] = tmpl;
6643 specs[count++].index = gr_values[regno].value & 0xFF;
6644 }
6645 else
6646 {
6647 specs[count] = tmpl;
6648 specs[count++].specific = 0;
6649 }
6650 }
6651 }
6652 else
6653 {
6654 UNHANDLED;
6655 }
6656 break;
6657
6658 case IA64_RS_RR: /* eight registers */
6659 if (note == 6)
6660 {
6661 if (idesc->operands[!rsrc_write] == IA64_OPND_RR_R3)
6662 {
6663 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
6664 if (regno >= 0 && regno < NELEMS(gr_values)
6665 && KNOWN(regno))
6666 {
6667 specs[count] = tmpl;
6668 specs[count++].index = (gr_values[regno].value >> 61) & 0x7;
6669 }
6670 else
6671 {
6672 specs[count] = tmpl;
6673 specs[count++].specific = 0;
6674 }
6675 }
6676 }
6677 else if (note == 0 && !rsrc_write)
6678 {
6679 specs[count] = tmpl;
6680 specs[count++].specific = 0;
6681 }
6682 else
6683 {
6684 UNHANDLED;
6685 }
6686 break;
6687
6688 case IA64_RS_CR_IRR:
6689 if (note == 0)
6690 {
6691 /* handle mov-from-CR-IVR; it's a read that writes CR[IRR] */
6692 int regno = CURR_SLOT.opnd[1].X_add_number - REG_CR;
6693 if (rsrc_write
6694 && idesc->operands[1] == IA64_OPND_CR3
6695 && regno == CR_IVR)
6696 {
6697 for(i=0;i < 4;i++)
6698 {
6699 specs[count] = tmpl;
6700 specs[count++].index = CR_IRR0 + i;
6701 }
6702 }
6703 }
6704 else if (note == 1)
6705 {
6706 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
6707 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
6708 && regno >= CR_IRR0
6709 && regno <= CR_IRR3)
6710 {
6711 specs[count] = tmpl;
6712 specs[count++].index = regno;
6713 }
6714 }
6715 else
6716 {
6717 UNHANDLED;
6718 }
6719 break;
6720
6721 case IA64_RS_CR_LRR:
6722 if (note != 1)
6723 {
6724 UNHANDLED;
6725 }
6726 else
6727 {
6728 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
6729 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
6730 && (regno == CR_LRR0 || regno == CR_LRR1))
6731 {
6732 specs[count] = tmpl;
6733 specs[count++].index = regno;
6734 }
6735 }
6736 break;
6737
6738 case IA64_RS_CR:
6739 if (note == 1)
6740 {
6741 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
6742 {
6743 specs[count] = tmpl;
6744 specs[count++].index =
6745 CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
6746 }
6747 }
6748 else
6749 {
6750 UNHANDLED;
6751 }
6752 break;
6753
6754 case IA64_RS_FR:
6755 case IA64_RS_FRb:
6756 if (note != 1)
6757 {
6758 UNHANDLED;
6759 }
6760 else if (rsrc_write)
6761 {
6762 if (dep->specifier == IA64_RS_FRb
6763 && idesc->operands[0] == IA64_OPND_F1)
6764 {
6765 specs[count] = tmpl;
6766 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_FR;
6767 }
6768 }
6769 else
6770 {
6771 for (i=idesc->num_outputs;i < NELEMS(idesc->operands);i++)
6772 {
6773 if (idesc->operands[i] == IA64_OPND_F2
6774 || idesc->operands[i] == IA64_OPND_F3
6775 || idesc->operands[i] == IA64_OPND_F4)
6776 {
6777 specs[count] = tmpl;
6778 specs[count++].index =
6779 CURR_SLOT.opnd[i].X_add_number - REG_FR;
6780 }
6781 }
6782 }
6783 break;
6784
6785 case IA64_RS_GR:
6786 if (note == 13)
6787 {
6788 /* This reference applies only to the GR whose value is loaded with
6789 data returned from memory */
6790 specs[count] = tmpl;
6791 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_GR;
6792 }
6793 else if (note == 1)
6794 {
6795 if (rsrc_write)
6796 {
6797 for (i=0;i < idesc->num_outputs;i++)
6798 {
6799 if (idesc->operands[i] == IA64_OPND_R1
6800 || idesc->operands[i] == IA64_OPND_R2
6801 || idesc->operands[i] == IA64_OPND_R3)
6802 {
6803 specs[count] = tmpl;
6804 specs[count++].index =
6805 CURR_SLOT.opnd[i].X_add_number - REG_GR;
6806 }
6807 }
6808 }
6809 else
6810 {
6811 /* Look for anything that reads a GR */
6812 for (i=0;i < NELEMS(idesc->operands);i++)
6813 {
6814 if (idesc->operands[i] == IA64_OPND_MR3
6815 || idesc->operands[i] == IA64_OPND_CPUID_R3
6816 || idesc->operands[i] == IA64_OPND_DBR_R3
6817 || idesc->operands[i] == IA64_OPND_IBR_R3
6818 || idesc->operands[i] == IA64_OPND_MSR_R3
6819 || idesc->operands[i] == IA64_OPND_PKR_R3
6820 || idesc->operands[i] == IA64_OPND_PMC_R3
6821 || idesc->operands[i] == IA64_OPND_PMD_R3
6822 || idesc->operands[i] == IA64_OPND_RR_R3
6823 || ((i >= idesc->num_outputs)
6824 && (idesc->operands[i] == IA64_OPND_R1
6825 || idesc->operands[i] == IA64_OPND_R2
6826 || idesc->operands[i] == IA64_OPND_R3)))
6827 {
6828 specs[count] = tmpl;
6829 specs[count++].index =
6830 CURR_SLOT.opnd[i].X_add_number - REG_GR;
6831 }
6832 }
6833 }
6834 }
6835 else
6836 {
6837 UNHANDLED;
6838 }
6839 break;
6840
6841 case IA64_RS_PR:
6842 if (note == 0)
6843 {
6844 if (idesc->operands[0] == IA64_OPND_PR_ROT)
6845 {
6846 for (i=16;i < 63;i++)
6847 {
6848 specs[count] = tmpl;
6849 specs[count++].index = i;
6850 }
6851 }
6852 else
6853 {
6854 for (i=1;i < 63;i++)
6855 {
6856 specs[count] = tmpl;
6857 specs[count++].index = i;
6858 }
6859 }
6860 }
6861 else if (note == 7)
6862 {
6863 valueT mask = 0;
6864 /* mark only those registers indicated by the mask */
6865 if (rsrc_write
6866 && idesc->operands[0] == IA64_OPND_PR)
6867 {
6868 mask = CURR_SLOT.opnd[2].X_add_number;
6869 if (mask & ((valueT)1<<16))
6870 mask |= ~(valueT)0xffff;
6871 for (i=1;i < 63;i++)
6872 {
6873 if (mask & ((valueT)1<<i))
6874 {
6875 specs[count] = tmpl;
6876 specs[count++].index = i;
6877 }
6878 }
6879 }
6880 else if (rsrc_write
6881 && idesc->operands[0] == IA64_OPND_PR_ROT)
6882 {
6883 for (i=16;i < 63;i++)
6884 {
6885 specs[count] = tmpl;
6886 specs[count++].index = i;
6887 }
6888 }
6889 else
6890 {
6891 UNHANDLED;
6892 }
6893 }
6894 else if (note == 11) /* note 11 implies note 1 as well */
6895 {
6896 if (rsrc_write)
6897 {
6898 for (i=0;i < idesc->num_outputs;i++)
6899 {
6900 if (idesc->operands[i] == IA64_OPND_P1
6901 || idesc->operands[i] == IA64_OPND_P2)
6902 {
6903 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
6904 if (regno != 0)
6905 {
6906 specs[count] = tmpl;
6907 specs[count++].index = regno;
6908 }
6909 }
6910 }
6911 }
6912 else
6913 {
6914 UNHANDLED;
6915 }
6916 }
6917 else if (note == 12)
6918 {
6919 if (CURR_SLOT.qp_regno != 0)
6920 {
6921 specs[count] = tmpl;
6922 specs[count++].index = CURR_SLOT.qp_regno;
6923 }
6924 }
6925 else if (note == 1)
6926 {
6927 if (rsrc_write)
6928 {
6929 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
6930 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
6931 if ((idesc->operands[0] == IA64_OPND_P1
6932 || idesc->operands[0] == IA64_OPND_P2)
6933 && p1 != 0 && p1 != 63)
6934 {
6935 specs[count] = tmpl;
6936 specs[count++].index = p1;
6937 }
6938 if ((idesc->operands[1] == IA64_OPND_P1
6939 || idesc->operands[1] == IA64_OPND_P2)
6940 && p2 != 0 && p2 != 63)
6941 {
6942 specs[count] = tmpl;
6943 specs[count++].index = p2;
6944 }
6945 }
6946 else
6947 {
6948 if (CURR_SLOT.qp_regno != 0)
6949 {
6950 specs[count] = tmpl;
6951 specs[count++].index = CURR_SLOT.qp_regno;
6952 }
6953 if (idesc->operands[1] == IA64_OPND_PR)
6954 {
6955 for (i=1;i < 63;i++)
6956 {
6957 specs[count] = tmpl;
6958 specs[count++].index = i;
6959 }
6960 }
6961 }
6962 }
6963 else
6964 {
6965 UNHANDLED;
6966 }
6967 break;
6968
6969 case IA64_RS_PSR:
6970 /* Verify that the instruction is using the PSR bit indicated in
6971 dep->regindex */
6972 if (note == 0)
6973 {
6974 if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_UM)
6975 {
6976 if (dep->regindex < 6)
6977 {
6978 specs[count++] = tmpl;
6979 }
6980 }
6981 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR)
6982 {
6983 if (dep->regindex < 32
6984 || dep->regindex == 35
6985 || dep->regindex == 36
6986 || (!rsrc_write && dep->regindex == PSR_CPL))
6987 {
6988 specs[count++] = tmpl;
6989 }
6990 }
6991 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_L)
6992 {
6993 if (dep->regindex < 32
6994 || dep->regindex == 35
6995 || dep->regindex == 36
6996 || (rsrc_write && dep->regindex == PSR_CPL))
6997 {
6998 specs[count++] = tmpl;
6999 }
7000 }
7001 else
7002 {
7003 /* Several PSR bits have very specific dependencies. */
7004 switch (dep->regindex)
7005 {
7006 default:
7007 specs[count++] = tmpl;
7008 break;
7009 case PSR_IC:
7010 if (rsrc_write)
7011 {
7012 specs[count++] = tmpl;
7013 }
7014 else
7015 {
7016 /* Only certain CR accesses use PSR.ic */
7017 if (idesc->operands[0] == IA64_OPND_CR3
7018 || idesc->operands[1] == IA64_OPND_CR3)
7019 {
7020 int index =
7021 ((idesc->operands[0] == IA64_OPND_CR3)
7022 ? 0 : 1);
7023 int regno =
7024 CURR_SLOT.opnd[index].X_add_number - REG_CR;
7025
7026 switch (regno)
7027 {
7028 default:
7029 break;
7030 case CR_ITIR:
7031 case CR_IFS:
7032 case CR_IIM:
7033 case CR_IIP:
7034 case CR_IPSR:
7035 case CR_ISR:
7036 case CR_IFA:
7037 case CR_IHA:
7038 case CR_IIPA:
7039 specs[count++] = tmpl;
7040 break;
7041 }
7042 }
7043 }
7044 break;
7045 case PSR_CPL:
7046 if (rsrc_write)
7047 {
7048 specs[count++] = tmpl;
7049 }
7050 else
7051 {
7052 /* Only some AR accesses use cpl */
7053 if (idesc->operands[0] == IA64_OPND_AR3
7054 || idesc->operands[1] == IA64_OPND_AR3)
7055 {
7056 int index =
7057 ((idesc->operands[0] == IA64_OPND_AR3)
7058 ? 0 : 1);
7059 int regno =
7060 CURR_SLOT.opnd[index].X_add_number - REG_AR;
7061
7062 if (regno == AR_ITC
7063 || (index == 0
7064 && (regno == AR_ITC
7065 || regno == AR_RSC
7066 || (regno >= AR_K0
7067 && regno <= AR_K7))))
7068 {
7069 specs[count++] = tmpl;
7070 }
7071 }
7072 else
7073 {
7074 specs[count++] = tmpl;
7075 }
7076 break;
7077 }
7078 }
7079 }
7080 }
7081 else if (note == 7)
7082 {
7083 valueT mask = 0;
7084 if (idesc->operands[0] == IA64_OPND_IMMU24)
7085 {
7086 mask = CURR_SLOT.opnd[0].X_add_number;
7087 }
7088 else
7089 {
7090 UNHANDLED;
7091 }
7092 if (mask & ((valueT)1<<dep->regindex))
7093 {
7094 specs[count++] = tmpl;
7095 }
7096 }
7097 else if (note == 8)
7098 {
7099 int min = dep->regindex == PSR_DFL ? 2 : 32;
7100 int max = dep->regindex == PSR_DFL ? 31 : 127;
7101 /* dfh is read on FR32-127; dfl is read on FR2-31 */
7102 for (i=0;i < NELEMS(idesc->operands);i++)
7103 {
7104 if (idesc->operands[i] == IA64_OPND_F1
7105 || idesc->operands[i] == IA64_OPND_F2
7106 || idesc->operands[i] == IA64_OPND_F3
7107 || idesc->operands[i] == IA64_OPND_F4)
7108 {
7109 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
7110 if (reg >= min && reg <= max)
7111 {
7112 specs[count++] = tmpl;
7113 }
7114 }
7115 }
7116 }
7117 else if (note == 9)
7118 {
7119 int min = dep->regindex == PSR_MFL ? 2 : 32;
7120 int max = dep->regindex == PSR_MFL ? 31 : 127;
7121 /* mfh is read on writes to FR32-127; mfl is read on writes to
7122 FR2-31 */
7123 for (i=0;i < idesc->num_outputs;i++)
7124 {
7125 if (idesc->operands[i] == IA64_OPND_F1)
7126 {
7127 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
7128 if (reg >= min && reg <= max)
7129 {
7130 specs[count++] = tmpl;
7131 }
7132 }
7133 }
7134 }
7135 else if (note == 10)
7136 {
7137 for (i=0;i < NELEMS(idesc->operands);i++)
7138 {
7139 if (idesc->operands[i] == IA64_OPND_R1
7140 || idesc->operands[i] == IA64_OPND_R2
7141 || idesc->operands[i] == IA64_OPND_R3)
7142 {
7143 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
7144 if (regno >= 16 && regno <= 31)
7145 {
7146 specs[count++] = tmpl;
7147 }
7148 }
7149 }
7150 }
7151 else
7152 {
7153 UNHANDLED;
7154 }
7155 break;
7156
7157 case IA64_RS_AR_FPSR:
7158 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
7159 {
7160 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7161 if (regno == AR_FPSR)
7162 {
7163 specs[count++] = tmpl;
7164 }
7165 }
7166 else
7167 {
7168 specs[count++] = tmpl;
7169 }
7170 break;
7171
7172 case IA64_RS_ARX:
7173 /* Handle all AR[REG] resources */
7174 if (note == 0 || note == 1)
7175 {
7176 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
7177 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3
7178 && regno == dep->regindex)
7179 {
7180 specs[count++] = tmpl;
7181 }
7182 /* other AR[REG] resources may be affected by AR accesses */
7183 else if (idesc->operands[0] == IA64_OPND_AR3)
7184 {
7185 /* AR[] writes */
7186 regno = CURR_SLOT.opnd[0].X_add_number - REG_AR;
7187 switch (dep->regindex)
7188 {
7189 default:
7190 break;
7191 case AR_BSP:
7192 case AR_RNAT:
7193 if (regno == AR_BSPSTORE)
7194 {
7195 specs[count++] = tmpl;
7196 }
7197 case AR_RSC:
7198 if (!rsrc_write &&
7199 (regno == AR_BSPSTORE
7200 || regno == AR_RNAT))
7201 {
7202 specs[count++] = tmpl;
7203 }
7204 break;
7205 }
7206 }
7207 else if (idesc->operands[1] == IA64_OPND_AR3)
7208 {
7209 /* AR[] reads */
7210 regno = CURR_SLOT.opnd[1].X_add_number - REG_AR;
7211 switch (dep->regindex)
7212 {
7213 default:
7214 break;
7215 case AR_RSC:
7216 if (regno == AR_BSPSTORE || regno == AR_RNAT)
7217 {
7218 specs[count++] = tmpl;
7219 }
7220 break;
7221 }
7222 }
7223 else
7224 {
7225 specs[count++] = tmpl;
7226 }
7227 }
7228 else
7229 {
7230 UNHANDLED;
7231 }
7232 break;
7233
7234 case IA64_RS_CRX:
7235 /* Handle all CR[REG] resources */
7236 if (note == 0 || note == 1)
7237 {
7238 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
7239 {
7240 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
7241 if (regno == dep->regindex)
7242 {
7243 specs[count++] = tmpl;
7244 }
7245 else if (!rsrc_write)
7246 {
7247 /* Reads from CR[IVR] affect other resources. */
7248 if (regno == CR_IVR)
7249 {
7250 if ((dep->regindex >= CR_IRR0
7251 && dep->regindex <= CR_IRR3)
7252 || dep->regindex == CR_TPR)
7253 {
7254 specs[count++] = tmpl;
7255 }
7256 }
7257 }
7258 }
7259 else
7260 {
7261 specs[count++] = tmpl;
7262 }
7263 }
7264 else
7265 {
7266 UNHANDLED;
7267 }
7268 break;
7269
7270 case IA64_RS_INSERVICE:
7271 /* look for write of EOI (67) or read of IVR (65) */
7272 if ((idesc->operands[0] == IA64_OPND_CR3
7273 && CURR_SLOT.opnd[0].X_add_number - REG_CR == CR_EOI)
7274 || (idesc->operands[1] == IA64_OPND_CR3
7275 && CURR_SLOT.opnd[1].X_add_number - REG_CR == CR_IVR))
7276 {
7277 specs[count++] = tmpl;
7278 }
7279 break;
7280
7281 case IA64_RS_GR0:
7282 if (note == 1)
7283 {
7284 specs[count++] = tmpl;
7285 }
7286 else
7287 {
7288 UNHANDLED;
7289 }
7290 break;
7291
7292 case IA64_RS_CFM:
7293 if (note != 2)
7294 {
7295 specs[count++] = tmpl;
7296 }
7297 else
7298 {
7299 /* Check if any of the registers accessed are in the rotating region.
7300 mov to/from pr accesses CFM only when qp_regno is in the rotating
7301 region */
7302 for (i=0;i < NELEMS(idesc->operands);i++)
7303 {
7304 if (idesc->operands[i] == IA64_OPND_R1
7305 || idesc->operands[i] == IA64_OPND_R2
7306 || idesc->operands[i] == IA64_OPND_R3)
7307 {
7308 int num = CURR_SLOT.opnd[i].X_add_number - REG_GR;
7309 /* Assumes that md.rot.num_regs is always valid */
7310 if (md.rot.num_regs > 0
7311 && num > 31
7312 && num < 31 + md.rot.num_regs)
7313 {
7314 specs[count] = tmpl;
7315 specs[count++].specific = 0;
7316 }
7317 }
7318 else if (idesc->operands[i] == IA64_OPND_F1
7319 || idesc->operands[i] == IA64_OPND_F2
7320 || idesc->operands[i] == IA64_OPND_F3
7321 || idesc->operands[i] == IA64_OPND_F4)
7322 {
7323 int num = CURR_SLOT.opnd[i].X_add_number - REG_FR;
7324 if (num > 31)
7325 {
7326 specs[count] = tmpl;
7327 specs[count++].specific = 0;
7328 }
7329 }
7330 else if (idesc->operands[i] == IA64_OPND_P1
7331 || idesc->operands[i] == IA64_OPND_P2)
7332 {
7333 int num = CURR_SLOT.opnd[i].X_add_number - REG_P;
7334 if (num > 15)
7335 {
7336 specs[count] = tmpl;
7337 specs[count++].specific = 0;
7338 }
7339 }
7340 }
7341 if (CURR_SLOT.qp_regno > 15)
7342 {
7343 specs[count] = tmpl;
7344 specs[count++].specific = 0;
7345 }
7346 }
7347 break;
7348
7349 case IA64_RS_PR63:
7350 if (note == 0)
7351 {
7352 specs[count++] = tmpl;
7353 }
7354 else if (note == 11)
7355 {
7356 if ((idesc->operands[0] == IA64_OPND_P1
7357 && CURR_SLOT.opnd[0].X_add_number - REG_P == 63)
7358 || (idesc->operands[1] == IA64_OPND_P2
7359 && CURR_SLOT.opnd[1].X_add_number - REG_P == 63))
7360 {
7361 specs[count++] = tmpl;
7362 }
7363 }
7364 else if (note == 12)
7365 {
7366 if (CURR_SLOT.qp_regno == 63)
7367 {
7368 specs[count++] = tmpl;
7369 }
7370 }
7371 else if (note == 7)
7372 {
7373 valueT mask = 0;
7374 if (idesc->operands[2] == IA64_OPND_IMM17)
7375 mask = CURR_SLOT.opnd[2].X_add_number;
7376 if (mask & ((valueT)1<<63))
7377 {
7378 specs[count++] = tmpl;
7379 }
7380 }
7381 else if (note == 1)
7382 {
7383 if (rsrc_write)
7384 {
7385 for (i=0;i < idesc->num_outputs;i++)
7386 if ((idesc->operands[i] == IA64_OPND_P1
7387 || idesc->operands[i] == IA64_OPND_P2)
7388 && CURR_SLOT.opnd[i].X_add_number - REG_P == 63)
7389 {
7390 specs[count++] = tmpl;
7391 }
7392 }
7393 else
7394 {
7395 if (CURR_SLOT.qp_regno == 63)
7396 {
7397 specs[count++] = tmpl;
7398 }
7399 }
7400 }
7401 else
7402 {
7403 UNHANDLED;
7404 }
7405 break;
7406
7407 case IA64_RS_RSE:
7408 /* FIXME we can identify some individual RSE written resources, but RSE
7409 read resources have not yet been completely identified, so for now
7410 treat RSE as a single resource */
7411 if (strncmp (idesc->name, "mov", 3) == 0)
7412 {
7413 if (rsrc_write)
7414 {
7415 if (idesc->operands[0] == IA64_OPND_AR3
7416 && CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE)
7417 {
7418 specs[count] = tmpl;
7419 specs[count++].index = 0; /* IA64_RSE_BSPLOAD/RNATBITINDEX */
7420 }
7421 }
7422 else
7423 {
7424 if (idesc->operands[0] == IA64_OPND_AR3)
7425 {
7426 if (CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE
7427 || CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_RNAT)
7428 {
7429 specs[count++] = tmpl;
7430 }
7431 }
7432 else if (idesc->operands[1] == IA64_OPND_AR3)
7433 {
7434 if (CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSP
7435 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSPSTORE
7436 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_RNAT)
7437 {
7438 specs[count++] = tmpl;
7439 }
7440 }
7441 }
7442 }
7443 else
7444 {
7445 specs[count++] = tmpl;
7446 }
7447 break;
7448
7449 case IA64_RS_ANY:
7450 /* FIXME -- do any of these need to be non-specific? */
7451 specs[count++] = tmpl;
7452 break;
7453
7454 default:
7455 as_bad (_("Unrecognized dependency specifier %d\n"), dep->specifier);
7456 break;
7457 }
7458
7459 return count;
7460 }
7461
7462 /* Clear branch flags on marked resources. This breaks the link between the
7463 QP of the marking instruction and a subsequent branch on the same QP.
7464 */
7465 static void
7466 clear_qp_branch_flag (mask)
7467 valueT mask;
7468 {
7469 int i;
7470 for (i = 0;i < regdepslen;i++)
7471 {
7472 valueT bit = ((valueT)1 << regdeps[i].qp_regno);
7473 if ((bit & mask) != 0)
7474 {
7475 regdeps[i].link_to_qp_branch = 0;
7476 }
7477 }
7478 }
7479
7480 /* Remove any mutexes which contain any of the PRs indicated in the mask.
7481
7482 Any changes to a PR clears the mutex relations which include that PR.
7483 */
7484 static void
7485 clear_qp_mutex (mask)
7486 valueT mask;
7487 {
7488 int i;
7489
7490 i = 0;
7491 while (i < qp_mutexeslen)
7492 {
7493 if ((qp_mutexes[i].prmask & mask) != 0)
7494 {
7495 if (md.debug_dv)
7496 {
7497 fprintf (stderr, " Clearing mutex relation");
7498 print_prmask (qp_mutexes[i].prmask);
7499 fprintf (stderr, "\n");
7500 }
7501 qp_mutexes[i] = qp_mutexes[--qp_mutexeslen];
7502 }
7503 else
7504 ++i;
7505 }
7506 }
7507
7508 /* Clear implies relations which contain PRs in the given masks.
7509 P1_MASK indicates the source of the implies relation, while P2_MASK
7510 indicates the implied PR.
7511 */
7512 static void
7513 clear_qp_implies (p1_mask, p2_mask)
7514 valueT p1_mask;
7515 valueT p2_mask;
7516 {
7517 int i;
7518
7519 i = 0;
7520 while (i < qp_implieslen)
7521 {
7522 if ((((valueT)1 << qp_implies[i].p1) & p1_mask) != 0
7523 || (((valueT)1 << qp_implies[i].p2) & p2_mask) != 0)
7524 {
7525 if (md.debug_dv)
7526 fprintf (stderr, "Clearing implied relation PR%d->PR%d\n",
7527 qp_implies[i].p1, qp_implies[i].p2);
7528 qp_implies[i] = qp_implies[--qp_implieslen];
7529 }
7530 else
7531 ++i;
7532 }
7533 }
7534
7535 /* add the PRs specified to the list of implied relations */
7536 static void
7537 add_qp_imply (p1, p2)
7538 int p1, p2;
7539 {
7540 valueT mask;
7541 valueT bit;
7542 int i;
7543
7544 /* p0 is not meaningful here */
7545 if (p1 == 0 || p2 == 0)
7546 abort ();
7547
7548 if (p1 == p2)
7549 return;
7550
7551 /* if it exists already, ignore it */
7552 for (i=0;i < qp_implieslen;i++)
7553 {
7554 if (qp_implies[i].p1 == p1
7555 && qp_implies[i].p2 == p2
7556 && qp_implies[i].path == md.path
7557 && !qp_implies[i].p2_branched)
7558 return;
7559 }
7560
7561 if (qp_implieslen == qp_impliestotlen)
7562 {
7563 qp_impliestotlen += 20;
7564 qp_implies = (struct qp_imply *)
7565 xrealloc ((void *)qp_implies,
7566 qp_impliestotlen * sizeof (struct qp_imply));
7567 }
7568 if (md.debug_dv)
7569 fprintf (stderr, " Registering PR%d implies PR%d\n", p1, p2);
7570 qp_implies[qp_implieslen].p1 = p1;
7571 qp_implies[qp_implieslen].p2 = p2;
7572 qp_implies[qp_implieslen].path = md.path;
7573 qp_implies[qp_implieslen++].p2_branched = 0;
7574
7575 /* Add in the implied transitive relations; for everything that p2 implies,
7576 make p1 imply that, too; for everything that implies p1, make it imply p2
7577 as well. */
7578 for (i=0;i < qp_implieslen;i++)
7579 {
7580 if (qp_implies[i].p1 == p2)
7581 add_qp_imply (p1, qp_implies[i].p2);
7582 if (qp_implies[i].p2 == p1)
7583 add_qp_imply (qp_implies[i].p1, p2);
7584 }
7585 /* Add in mutex relations implied by this implies relation; for each mutex
7586 relation containing p2, duplicate it and replace p2 with p1. */
7587 bit = (valueT)1 << p1;
7588 mask = (valueT)1 << p2;
7589 for (i=0;i < qp_mutexeslen;i++)
7590 {
7591 if (qp_mutexes[i].prmask & mask)
7592 add_qp_mutex ((qp_mutexes[i].prmask & ~mask) | bit);
7593 }
7594 }
7595
7596
7597 /* Add the PRs specified in the mask to the mutex list; this means that only
7598 one of the PRs can be true at any time. PR0 should never be included in
7599 the mask. */
7600 static void
7601 add_qp_mutex (mask)
7602 valueT mask;
7603 {
7604 if (mask & 0x1)
7605 abort ();
7606
7607 if (qp_mutexeslen == qp_mutexestotlen)
7608 {
7609 qp_mutexestotlen += 20;
7610 qp_mutexes = (struct qpmutex *)
7611 xrealloc ((void *)qp_mutexes,
7612 qp_mutexestotlen * sizeof (struct qpmutex));
7613 }
7614 if (md.debug_dv)
7615 {
7616 fprintf (stderr, " Registering mutex on");
7617 print_prmask (mask);
7618 fprintf (stderr, "\n");
7619 }
7620 qp_mutexes[qp_mutexeslen].path = md.path;
7621 qp_mutexes[qp_mutexeslen++].prmask = mask;
7622 }
7623
7624 static void
7625 clear_register_values ()
7626 {
7627 int i;
7628 if (md.debug_dv)
7629 fprintf (stderr, " Clearing register values\n");
7630 for (i=1;i < NELEMS(gr_values);i++)
7631 gr_values[i].known = 0;
7632 }
7633
7634 /* Keep track of register values/changes which affect DV tracking.
7635
7636 optimization note: should add a flag to classes of insns where otherwise we
7637 have to examine a group of strings to identify them.
7638
7639 */
7640 static void
7641 note_register_values (idesc)
7642 struct ia64_opcode *idesc;
7643 {
7644 valueT qp_changemask = 0;
7645 int i;
7646
7647 /* invalidate values for registers being written to */
7648 for (i=0;i < idesc->num_outputs;i++)
7649 {
7650 if (idesc->operands[i] == IA64_OPND_R1
7651 || idesc->operands[i] == IA64_OPND_R2
7652 || idesc->operands[i] == IA64_OPND_R3)
7653 {
7654 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
7655 if (regno > 0 && regno < NELEMS(gr_values))
7656 gr_values[regno].known = 0;
7657 }
7658 else if (idesc->operands[i] == IA64_OPND_P1
7659 || idesc->operands[i] == IA64_OPND_P2)
7660 {
7661 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
7662 qp_changemask |= (valueT)1 << regno;
7663 }
7664 else if (idesc->operands[i] == IA64_OPND_PR)
7665 {
7666 if (idesc->operands[2] & (valueT)0x10000)
7667 qp_changemask = ~(valueT)0x1FFFF | idesc->operands[2];
7668 else
7669 qp_changemask = idesc->operands[2];
7670 break;
7671 }
7672 else if (idesc->operands[i] == IA64_OPND_PR_ROT)
7673 {
7674 if (idesc->operands[1] & ((valueT)1 << 43))
7675 qp_changemask = ~(valueT)0xFFFFFFFFFFF | idesc->operands[1];
7676 else
7677 qp_changemask = idesc->operands[1];
7678 qp_changemask &= ~(valueT)0xFFFF;
7679 break;
7680 }
7681 }
7682
7683 /* Always clear qp branch flags on any PR change */
7684 /* FIXME there may be exceptions for certain compares */
7685 clear_qp_branch_flag (qp_changemask);
7686
7687 /* invalidate rotating registers on insns which affect RRBs in CFM */
7688 if (idesc->flags & IA64_OPCODE_MOD_RRBS)
7689 {
7690 qp_changemask |= ~(valueT)0xFFFF;
7691 if (strcmp (idesc->name, "clrrrb.pr") != 0)
7692 {
7693 for (i=32;i < 32+md.rot.num_regs;i++)
7694 gr_values[i].known = 0;
7695 }
7696 clear_qp_mutex (qp_changemask);
7697 clear_qp_implies (qp_changemask, qp_changemask);
7698 }
7699 /* after a call, all register values are undefined, except those marked
7700 as "safe" */
7701 else if (strncmp (idesc->name, "br.call", 6) == 0
7702 || strncmp (idesc->name, "brl.call", 7) == 0)
7703 {
7704 // FIXME keep GR values which are marked as "safe_across_calls"
7705 clear_register_values ();
7706 clear_qp_mutex (~qp_safe_across_calls);
7707 clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls);
7708 clear_qp_branch_flag (~qp_safe_across_calls);
7709 }
7710 else if (is_interruption_or_rfi (idesc)
7711 || is_taken_branch (idesc))
7712 {
7713 clear_register_values ();
7714 clear_qp_mutex (~(valueT)0);
7715 clear_qp_implies (~(valueT)0, ~(valueT)0);
7716 }
7717 /* Look for mutex and implies relations */
7718 else if ((idesc->operands[0] == IA64_OPND_P1
7719 || idesc->operands[0] == IA64_OPND_P2)
7720 && (idesc->operands[1] == IA64_OPND_P1
7721 || idesc->operands[1] == IA64_OPND_P2))
7722 {
7723 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
7724 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
7725 valueT p1mask = (valueT)1 << p1;
7726 valueT p2mask = (valueT)1 << p2;
7727
7728 /* if one of the PRs is PR0, we can't really do anything */
7729 if (p1 == 0 || p2 == 0)
7730 {
7731 if (md.debug_dv)
7732 fprintf (stderr, " Ignoring PRs due to inclusion of p0\n");
7733 }
7734 /* In general, clear mutexes and implies which include P1 or P2,
7735 with the following exceptions */
7736 else if (strstr (idesc->name, ".or.andcm") != NULL)
7737 {
7738 add_qp_mutex (p1mask | p2mask);
7739 clear_qp_implies (p2mask, p1mask);
7740 }
7741 else if (strstr (idesc->name, ".and.orcm") != NULL)
7742 {
7743 add_qp_mutex (p1mask | p2mask);
7744 clear_qp_implies (p1mask, p2mask);
7745 }
7746 else if (strstr (idesc->name, ".and") != NULL)
7747 {
7748 clear_qp_implies (0, p1mask | p2mask);
7749 }
7750 else if (strstr (idesc->name, ".or") != NULL)
7751 {
7752 clear_qp_mutex (p1mask | p2mask);
7753 clear_qp_implies (p1mask | p2mask, 0);
7754 }
7755 else
7756 {
7757 clear_qp_implies (p1mask | p2mask, p1mask | p2mask);
7758 if (strstr (idesc->name, ".unc") != NULL)
7759 {
7760 add_qp_mutex (p1mask | p2mask);
7761 if (CURR_SLOT.qp_regno != 0)
7762 {
7763 add_qp_imply (CURR_SLOT.opnd[0].X_add_number - REG_P,
7764 CURR_SLOT.qp_regno);
7765 add_qp_imply (CURR_SLOT.opnd[1].X_add_number - REG_P,
7766 CURR_SLOT.qp_regno);
7767 }
7768 }
7769 else if (CURR_SLOT.qp_regno == 0)
7770 {
7771 add_qp_mutex (p1mask | p2mask);
7772 }
7773 else
7774 {
7775 clear_qp_mutex (p1mask | p2mask);
7776 }
7777 }
7778 }
7779 /* Look for mov imm insns into GRs */
7780 else if (idesc->operands[0] == IA64_OPND_R1
7781 && (idesc->operands[1] == IA64_OPND_IMM22
7782 || idesc->operands[1] == IA64_OPND_IMMU64)
7783 && (strcmp(idesc->name, "mov") == 0
7784 || strcmp(idesc->name, "movl") == 0))
7785 {
7786 int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR;
7787 if (regno > 0 && regno < NELEMS(gr_values))
7788 {
7789 gr_values[regno].known = 1;
7790 gr_values[regno].value = CURR_SLOT.opnd[1].X_add_number;
7791 gr_values[regno].path = md.path;
7792 if (md.debug_dv)
7793 fprintf (stderr, " Know gr%d = 0x%llx\n",
7794 regno, gr_values[regno].value);
7795 }
7796 }
7797 else
7798 {
7799 clear_qp_mutex (qp_changemask);
7800 clear_qp_implies (qp_changemask, qp_changemask);
7801 }
7802 }
7803
7804 /* Return whether the given predicate registers are currently mutex */
7805 static int
7806 qp_mutex (p1, p2, path)
7807 int p1;
7808 int p2;
7809 int path;
7810 {
7811 int i;
7812 valueT mask;
7813
7814 if (p1 != p2)
7815 {
7816 mask = ((valueT)1<<p1) | (valueT)1<<p2;
7817 for (i=0;i < qp_mutexeslen;i++)
7818 {
7819 if (qp_mutexes[i].path >= path
7820 && (qp_mutexes[i].prmask & mask) == mask)
7821 return 1;
7822 }
7823 }
7824 return 0;
7825 }
7826
7827 /* Return whether the given resource is in the given insn's list of chks
7828 Return 1 if the conflict is absolutely determined, 2 if it's a potential
7829 conflict.
7830 */
7831 static int
7832 resources_match (rs, idesc, note, qp_regno, path)
7833 struct rsrc *rs;
7834 struct ia64_opcode *idesc;
7835 int note;
7836 int qp_regno;
7837 int path;
7838 {
7839 struct rsrc specs[MAX_SPECS];
7840 int count;
7841
7842 /* If the marked resource's qp_regno and the given qp_regno are mutex,
7843 we don't need to check. One exception is note 11, which indicates that
7844 target predicates are written regardless of PR[qp]. */
7845 if (qp_mutex (rs->qp_regno, qp_regno, path)
7846 && note != 11)
7847 return 0;
7848
7849 count = specify_resource (rs->dependency, idesc, DV_CHK, specs, note, path);
7850 while (count-- > 0)
7851 {
7852 /* UNAT checking is a bit more specific than other resources */
7853 if (rs->dependency->specifier == IA64_RS_AR_UNAT
7854 && specs[count].mem_offset.hint
7855 && rs->mem_offset.hint)
7856 {
7857 if (rs->mem_offset.base == specs[count].mem_offset.base)
7858 {
7859 if (((rs->mem_offset.offset >> 3) & 0x3F) ==
7860 ((specs[count].mem_offset.offset >> 3) & 0x3F))
7861 return 1;
7862 else
7863 continue;
7864 }
7865 }
7866
7867 /* If either resource is not specific, conservatively assume a conflict
7868 */
7869 if (!specs[count].specific || !rs->specific)
7870 return 2;
7871 else if (specs[count].index == rs->index)
7872 return 1;
7873 }
7874 #if 0
7875 if (md.debug_dv)
7876 fprintf (stderr, " No %s conflicts\n", rs->dependency->name);
7877 #endif
7878
7879 return 0;
7880 }
7881
7882 /* Indicate an instruction group break; if INSERT_STOP is non-zero, then
7883 insert a stop to create the break. Update all resource dependencies
7884 appropriately. If QP_REGNO is non-zero, only apply the break to resources
7885 which use the same QP_REGNO and have the link_to_qp_branch flag set.
7886 If SAVE_CURRENT is non-zero, don't affect resources marked by the current
7887 instruction.
7888 */
7889
7890 static void
7891 insn_group_break (insert_stop, qp_regno, save_current)
7892 int insert_stop;
7893 int qp_regno;
7894 int save_current;
7895 {
7896 int i;
7897
7898 if (insert_stop && md.num_slots_in_use > 0)
7899 PREV_SLOT.end_of_insn_group = 1;
7900
7901 if (md.debug_dv)
7902 {
7903 fprintf (stderr, " Insn group break%s",
7904 (insert_stop ? " (w/stop)" : ""));
7905 if (qp_regno != 0)
7906 fprintf (stderr, " effective for QP=%d", qp_regno);
7907 fprintf (stderr, "\n");
7908 }
7909
7910 i = 0;
7911 while (i < regdepslen)
7912 {
7913 const struct ia64_dependency *dep = regdeps[i].dependency;
7914
7915 if (qp_regno != 0
7916 && regdeps[i].qp_regno != qp_regno)
7917 {
7918 ++i;
7919 continue;
7920 }
7921
7922 if (save_current
7923 && CURR_SLOT.src_file == regdeps[i].file
7924 && CURR_SLOT.src_line == regdeps[i].line)
7925 {
7926 ++i;
7927 continue;
7928 }
7929
7930 /* clear dependencies which are automatically cleared by a stop, or
7931 those that have reached the appropriate state of insn serialization */
7932 if (dep->semantics == IA64_DVS_IMPLIED
7933 || dep->semantics == IA64_DVS_IMPLIEDF
7934 || regdeps[i].insn_srlz == STATE_SRLZ)
7935 {
7936 print_dependency ("Removing", i);
7937 regdeps[i] = regdeps[--regdepslen];
7938 }
7939 else
7940 {
7941 if (dep->semantics == IA64_DVS_DATA
7942 || dep->semantics == IA64_DVS_INSTR
7943 || dep->semantics == IA64_DVS_SPECIFIC)
7944 {
7945 if (regdeps[i].insn_srlz == STATE_NONE)
7946 regdeps[i].insn_srlz = STATE_STOP;
7947 if (regdeps[i].data_srlz == STATE_NONE)
7948 regdeps[i].data_srlz = STATE_STOP;
7949 }
7950 ++i;
7951 }
7952 }
7953 }
7954
7955 /* Add the given resource usage spec to the list of active dependencies */
7956 static void
7957 mark_resource (idesc, dep, spec, depind, path)
7958 struct ia64_opcode *idesc;
7959 const struct ia64_dependency *dep;
7960 struct rsrc *spec;
7961 int depind;
7962 int path;
7963 {
7964 if (regdepslen == regdepstotlen)
7965 {
7966 regdepstotlen += 20;
7967 regdeps = (struct rsrc *)
7968 xrealloc ((void *)regdeps,
7969 regdepstotlen * sizeof(struct rsrc));
7970 }
7971
7972 regdeps[regdepslen] = *spec;
7973 regdeps[regdepslen].depind = depind;
7974 regdeps[regdepslen].path = path;
7975 regdeps[regdepslen].file = CURR_SLOT.src_file;
7976 regdeps[regdepslen].line = CURR_SLOT.src_line;
7977
7978 print_dependency ("Adding", regdepslen);
7979
7980 ++regdepslen;
7981 }
7982
7983 static void
7984 print_dependency (action, depind)
7985 const char *action;
7986 int depind;
7987 {
7988 if (md.debug_dv)
7989 {
7990 fprintf (stderr, " %s %s '%s'",
7991 action, dv_mode[(regdeps[depind].dependency)->mode],
7992 (regdeps[depind].dependency)->name);
7993 if (regdeps[depind].specific && regdeps[depind].index != 0)
7994 fprintf (stderr, " (%d)", regdeps[depind].index);
7995 if (regdeps[depind].mem_offset.hint)
7996 fprintf (stderr, " 0x%llx+0x%llx",
7997 regdeps[depind].mem_offset.base,
7998 regdeps[depind].mem_offset.offset);
7999 fprintf (stderr, "\n");
8000 }
8001 }
8002
8003 static void
8004 instruction_serialization ()
8005 {
8006 int i;
8007 if (md.debug_dv)
8008 fprintf (stderr, " Instruction serialization\n");
8009 for (i=0;i < regdepslen;i++)
8010 if (regdeps[i].insn_srlz == STATE_STOP)
8011 regdeps[i].insn_srlz = STATE_SRLZ;
8012 }
8013
8014 static void
8015 data_serialization ()
8016 {
8017 int i = 0;
8018 if (md.debug_dv)
8019 fprintf (stderr, " Data serialization\n");
8020 while (i < regdepslen)
8021 {
8022 if (regdeps[i].data_srlz == STATE_STOP
8023 /* Note: as of 991210, all "other" dependencies are cleared by a
8024 data serialization. This might change with new tables */
8025 || (regdeps[i].dependency)->semantics == IA64_DVS_OTHER)
8026 {
8027 print_dependency ("Removing", i);
8028 regdeps[i] = regdeps[--regdepslen];
8029 }
8030 else
8031 ++i;
8032 }
8033 }
8034
8035 /* Insert stops and serializations as needed to avoid DVs */
8036 static void
8037 remove_marked_resource (rs)
8038 struct rsrc *rs;
8039 {
8040 switch (rs->dependency->semantics)
8041 {
8042 case IA64_DVS_SPECIFIC:
8043 if (md.debug_dv)
8044 fprintf (stderr, "Implementation-specific, assume worst case...\n");
8045 /* ...fall through... */
8046 case IA64_DVS_INSTR:
8047 if (md.debug_dv)
8048 fprintf (stderr, "Inserting instr serialization\n");
8049 if (rs->insn_srlz < STATE_STOP)
8050 insn_group_break (1, 0, 0);
8051 if (rs->insn_srlz < STATE_SRLZ)
8052 {
8053 int oldqp = CURR_SLOT.qp_regno;
8054 struct ia64_opcode *oldidesc = CURR_SLOT.idesc;
8055 /* Manually jam a srlz.i insn into the stream */
8056 CURR_SLOT.qp_regno = 0;
8057 CURR_SLOT.idesc = ia64_find_opcode ("srlz.i");
8058 instruction_serialization ();
8059 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
8060 if (++md.num_slots_in_use >= NUM_SLOTS)
8061 emit_one_bundle ();
8062 CURR_SLOT.qp_regno = oldqp;
8063 CURR_SLOT.idesc = oldidesc;
8064 }
8065 insn_group_break (1, 0, 0);
8066 break;
8067 case IA64_DVS_OTHER: /* as of rev2 (991220) of the DV tables, all
8068 "other" types of DV are eliminated
8069 by a data serialization */
8070 case IA64_DVS_DATA:
8071 if (md.debug_dv)
8072 fprintf (stderr, "Inserting data serialization\n");
8073 if (rs->data_srlz < STATE_STOP)
8074 insn_group_break (1, 0, 0);
8075 {
8076 int oldqp = CURR_SLOT.qp_regno;
8077 struct ia64_opcode *oldidesc = CURR_SLOT.idesc;
8078 /* Manually jam a srlz.d insn into the stream */
8079 CURR_SLOT.qp_regno = 0;
8080 CURR_SLOT.idesc = ia64_find_opcode ("srlz.d");
8081 data_serialization ();
8082 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
8083 if (++md.num_slots_in_use >= NUM_SLOTS)
8084 emit_one_bundle ();
8085 CURR_SLOT.qp_regno = oldqp;
8086 CURR_SLOT.idesc = oldidesc;
8087 }
8088 break;
8089 case IA64_DVS_IMPLIED:
8090 case IA64_DVS_IMPLIEDF:
8091 if (md.debug_dv)
8092 fprintf (stderr, "Inserting stop\n");
8093 insn_group_break (1, 0, 0);
8094 break;
8095 default:
8096 break;
8097 }
8098 }
8099
8100 /* Check the resources used by the given opcode against the current dependency
8101 list.
8102
8103 The check is run once for each execution path encountered. In this case,
8104 a unique execution path is the sequence of instructions following a code
8105 entry point, e.g. the following has three execution paths, one starting
8106 at L0, one at L1, and one at L2.
8107
8108 L0: nop
8109 L1: add
8110 L2: add
8111 br.ret
8112 */
8113 static void
8114 check_dependencies (idesc)
8115 struct ia64_opcode *idesc;
8116 {
8117 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
8118 int path;
8119 int i;
8120
8121 /* Note that the number of marked resources may change within the
8122 loop if in auto mode. */
8123 i = 0;
8124 while (i < regdepslen)
8125 {
8126 struct rsrc *rs = &regdeps[i];
8127 const struct ia64_dependency *dep = rs->dependency;
8128 int chkind;
8129 int note;
8130 int start_over = 0;
8131
8132 if (dep->semantics == IA64_DVS_NONE
8133 || (chkind = depends_on (rs->depind, idesc)) == -1)
8134 {
8135 ++i; continue;
8136 }
8137
8138 note = NOTE(opdeps->chks[chkind]);
8139
8140 /* Check this resource against each execution path seen thus far */
8141 for (path=0;path <= md.path;path++)
8142 {
8143 int matchtype;
8144
8145 /* If the dependency wasn't on the path being checked, ignore it */
8146 if (rs->path < path)
8147 continue;
8148
8149 /* If the QP for this insn implies a QP which has branched, don't
8150 bother checking. Ed. NOTE: I don't think this check is terribly
8151 useful; what's the point of generating code which will only be
8152 reached if its QP is zero?
8153 This code was specifically inserted to handle the following code,
8154 based on notes from Intel's DV checking code, where p1 implies p2.
8155
8156 mov r4 = 2
8157 (p2) br.cond L
8158 (p1) mov r4 = 7
8159
8160 */
8161 if (CURR_SLOT.qp_regno != 0)
8162 {
8163 int skip = 0;
8164 int implies;
8165 for (implies=0;implies < qp_implieslen;implies++)
8166 {
8167 if (qp_implies[implies].path >= path
8168 && qp_implies[implies].p1 == CURR_SLOT.qp_regno
8169 && qp_implies[implies].p2_branched)
8170 {
8171 skip = 1;
8172 break;
8173 }
8174 }
8175 if (skip)
8176 continue;
8177 }
8178
8179 if ((matchtype = resources_match (rs, idesc, note,
8180 CURR_SLOT.qp_regno, path)) != 0)
8181 {
8182 char msg[1024];
8183 char pathmsg[256] = "";
8184 char indexmsg[256] = "";
8185 int certain = (matchtype == 1 && CURR_SLOT.qp_regno == 0);
8186
8187 if (path != 0)
8188 sprintf (pathmsg, " when entry is at label '%s'",
8189 md.entry_labels[path-1]);
8190 if (rs->specific && rs->index != 0)
8191 sprintf (indexmsg, ", specific resource number is %d",
8192 rs->index);
8193 sprintf (msg, "Use of '%s' %s %s dependency '%s' (%s)%s%s",
8194 idesc->name,
8195 (certain ? "violates" : "may violate"),
8196 dv_mode[dep->mode], dep->name,
8197 dv_sem[dep->semantics],
8198 pathmsg, indexmsg);
8199
8200 if (md.explicit_mode)
8201 {
8202 as_warn ("%s", msg);
8203 if (path < md.path)
8204 as_warn (_("Only the first path encountering the conflict "
8205 "is reported"));
8206 as_warn_where (rs->file, rs->line,
8207 _("This is the location of the "
8208 "conflicting usage"));
8209 /* Don't bother checking other paths, to avoid duplicating
8210 the same warning */
8211 break;
8212 }
8213 else
8214 {
8215 if (md.debug_dv)
8216 fprintf(stderr, "%s @ %s:%d\n", msg, rs->file, rs->line);
8217
8218 remove_marked_resource (rs);
8219
8220 /* since the set of dependencies has changed, start over */
8221 /* FIXME -- since we're removing dvs as we go, we
8222 probably don't really need to start over... */
8223 start_over = 1;
8224 break;
8225 }
8226 }
8227 }
8228 if (start_over)
8229 i = 0;
8230 else
8231 ++i;
8232 }
8233 }
8234
8235 /* register new dependencies based on the given opcode */
8236 static void
8237 mark_resources (idesc)
8238 struct ia64_opcode *idesc;
8239 {
8240 int i;
8241 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
8242 int add_only_qp_reads = 0;
8243
8244 /* A conditional branch only uses its resources if it is taken; if it is
8245 taken, we stop following that path. The other branch types effectively
8246 *always* write their resources. If it's not taken, register only QP
8247 reads. */
8248 if (is_conditional_branch (idesc) || is_interruption_or_rfi (idesc))
8249 {
8250 add_only_qp_reads = 1;
8251 }
8252
8253 if (md.debug_dv)
8254 fprintf (stderr, "Registering '%s' resource usage\n", idesc->name);
8255
8256 for (i=0;i < opdeps->nregs;i++)
8257 {
8258 const struct ia64_dependency *dep;
8259 struct rsrc specs[MAX_SPECS];
8260 int note;
8261 int path;
8262 int count;
8263
8264 dep = ia64_find_dependency (opdeps->regs[i]);
8265 note = NOTE(opdeps->regs[i]);
8266
8267 if (add_only_qp_reads
8268 && !(dep->mode == IA64_DV_WAR
8269 && (dep->specifier == IA64_RS_PR
8270 || dep->specifier == IA64_RS_PR63)))
8271 continue;
8272
8273 count = specify_resource (dep, idesc, DV_REG, specs, note, md.path);
8274
8275 #if 0
8276 if (md.debug_dv && !count)
8277 fprintf (stderr, " No %s %s usage found (path %d)\n",
8278 dv_mode[dep->mode], dep->name, md.path);
8279 #endif
8280
8281 while (count-- > 0)
8282 {
8283 mark_resource (idesc, dep, &specs[count],
8284 DEP(opdeps->regs[i]), md.path);
8285 }
8286
8287 /* The execution path may affect register values, which may in turn
8288 affect which indirect-access resources are accessed. */
8289 switch (dep->specifier)
8290 {
8291 default:
8292 break;
8293 case IA64_RS_CPUID:
8294 case IA64_RS_DBR:
8295 case IA64_RS_IBR:
8296 case IA64_RS_MSR:
8297 case IA64_RS_PKR:
8298 case IA64_RS_PMC:
8299 case IA64_RS_PMD:
8300 case IA64_RS_RR:
8301 for (path=0;path < md.path;path++)
8302 {
8303 count = specify_resource (dep, idesc, DV_REG, specs, note, path);
8304 while (count-- > 0)
8305 mark_resource (idesc, dep, &specs[count],
8306 DEP(opdeps->regs[i]), path);
8307 }
8308 break;
8309 }
8310 }
8311 }
8312
8313 /* remove dependencies when they no longer apply */
8314 static void
8315 update_dependencies (idesc)
8316 struct ia64_opcode *idesc;
8317 {
8318 int i;
8319
8320 if (strcmp (idesc->name, "srlz.i") == 0)
8321 {
8322 instruction_serialization ();
8323 }
8324 else if (strcmp (idesc->name, "srlz.d") == 0)
8325 {
8326 data_serialization ();
8327 }
8328 else if (is_interruption_or_rfi (idesc)
8329 || is_taken_branch (idesc))
8330 {
8331 /* although technically the taken branch doesn't clear dependencies
8332 which require a srlz.[id], we don't follow the branch; the next
8333 instruction is assumed to start with a clean slate */
8334 regdepslen = 0;
8335 md.path = 0;
8336 }
8337 else if (is_conditional_branch (idesc)
8338 && CURR_SLOT.qp_regno != 0)
8339 {
8340 int is_call = strstr (idesc->name, ".call") != NULL;
8341
8342 for (i=0;i < qp_implieslen;i++)
8343 {
8344 /* if the conditional branch's predicate is implied by the predicate
8345 in an existing dependency, remove that dependency */
8346 if (qp_implies[i].p2 == CURR_SLOT.qp_regno)
8347 {
8348 int depind = 0;
8349 /* note that this implied predicate takes a branch so that if
8350 a later insn generates a DV but its predicate implies this
8351 one, we can avoid the false DV warning */
8352 qp_implies[i].p2_branched = 1;
8353 while (depind < regdepslen)
8354 {
8355 if (regdeps[depind].qp_regno == qp_implies[i].p1)
8356 {
8357 print_dependency ("Removing", depind);
8358 regdeps[depind] = regdeps[--regdepslen];
8359 }
8360 else
8361 ++depind;
8362 }
8363 }
8364 }
8365 /* Any marked resources which have this same predicate should be
8366 cleared, provided that the QP hasn't been modified between the
8367 marking instruction and the branch.
8368 */
8369 if (is_call)
8370 {
8371 insn_group_break (0, CURR_SLOT.qp_regno, 1);
8372 }
8373 else
8374 {
8375 i = 0;
8376 while (i < regdepslen)
8377 {
8378 if (regdeps[i].qp_regno == CURR_SLOT.qp_regno
8379 && regdeps[i].link_to_qp_branch
8380 && (regdeps[i].file != CURR_SLOT.src_file
8381 || regdeps[i].line != CURR_SLOT.src_line))
8382 {
8383 /* Treat like a taken branch */
8384 print_dependency ("Removing", i);
8385 regdeps[i] = regdeps[--regdepslen];
8386 }
8387 else
8388 ++i;
8389 }
8390 }
8391 }
8392 }
8393
8394 /* Examine the current instruction for dependency violations. */
8395 static int
8396 check_dv (idesc)
8397 struct ia64_opcode *idesc;
8398 {
8399 if (md.debug_dv)
8400 {
8401 fprintf (stderr, "Checking %s for violations (line %d, %d/%d)\n",
8402 idesc->name, CURR_SLOT.src_line,
8403 idesc->dependencies->nchks,
8404 idesc->dependencies->nregs);
8405 }
8406
8407 /* Look through the list of currently marked resources; if the current
8408 instruction has the dependency in its chks list which uses that resource,
8409 check against the specific resources used.
8410 */
8411 check_dependencies (idesc);
8412
8413 /*
8414 Look up the instruction's regdeps (RAW writes, WAW writes, and WAR reads),
8415 then add them to the list of marked resources.
8416 */
8417 mark_resources (idesc);
8418
8419 /* There are several types of dependency semantics, and each has its own
8420 requirements for being cleared
8421
8422 Instruction serialization (insns separated by interruption, rfi, or
8423 writer + srlz.i + reader, all in separate groups) clears DVS_INSTR.
8424
8425 Data serialization (instruction serialization, or writer + srlz.d +
8426 reader, where writer and srlz.d are in separate groups) clears
8427 DVS_DATA. (This also clears DVS_OTHER, but that is not guaranteed to
8428 always be the case).
8429
8430 Instruction group break (groups separated by stop, taken branch,
8431 interruption or rfi) clears DVS_IMPLIED and DVS_IMPLIEDF.
8432 */
8433 update_dependencies (idesc);
8434
8435 /* Sometimes, knowing a register value allows us to avoid giving a false DV
8436 warning. Keep track of as many as possible that are useful. */
8437 note_register_values (idesc);
8438
8439 /* We don't need or want this anymore. */
8440 md.mem_offset.hint = 0;
8441
8442 return 0;
8443 }
8444
8445 /* Translate one line of assembly. Pseudo ops and labels do not show
8446 here. */
8447 void
8448 md_assemble (str)
8449 char *str;
8450 {
8451 char *saved_input_line_pointer, *mnemonic;
8452 const struct pseudo_opcode *pdesc;
8453 struct ia64_opcode *idesc;
8454 unsigned char qp_regno;
8455 unsigned int flags;
8456 int ch;
8457
8458 saved_input_line_pointer = input_line_pointer;
8459 input_line_pointer = str;
8460
8461 /* extract the opcode (mnemonic): */
8462
8463 mnemonic = input_line_pointer;
8464 ch = get_symbol_end ();
8465 pdesc = (struct pseudo_opcode *) hash_find (md.pseudo_hash, mnemonic);
8466 if (pdesc)
8467 {
8468 *input_line_pointer = ch;
8469 (*pdesc->handler) (pdesc->arg);
8470 goto done;
8471 }
8472
8473 /* find the instruction descriptor matching the arguments: */
8474
8475 idesc = ia64_find_opcode (mnemonic);
8476 *input_line_pointer = ch;
8477 if (!idesc)
8478 {
8479 as_bad ("Unknown opcode `%s'", mnemonic);
8480 goto done;
8481 }
8482
8483 idesc = parse_operands (idesc);
8484 if (!idesc)
8485 goto done;
8486
8487 /* Handle the dynamic ops we can handle now: */
8488 if (idesc->type == IA64_TYPE_DYN)
8489 {
8490 if (strcmp (idesc->name, "add") == 0)
8491 {
8492 if (CURR_SLOT.opnd[2].X_op == O_register
8493 && CURR_SLOT.opnd[2].X_add_number < 4)
8494 mnemonic = "addl";
8495 else
8496 mnemonic = "adds";
8497 ia64_free_opcode (idesc);
8498 idesc = ia64_find_opcode (mnemonic);
8499 #if 0
8500 know (!idesc->next);
8501 #endif
8502 }
8503 else if (strcmp (idesc->name, "mov") == 0)
8504 {
8505 enum ia64_opnd opnd1, opnd2;
8506 int rop;
8507
8508 opnd1 = idesc->operands[0];
8509 opnd2 = idesc->operands[1];
8510 if (opnd1 == IA64_OPND_AR3)
8511 rop = 0;
8512 else if (opnd2 == IA64_OPND_AR3)
8513 rop = 1;
8514 else
8515 abort ();
8516 if (CURR_SLOT.opnd[rop].X_op == O_register
8517 && ar_is_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number))
8518 mnemonic = "mov.i";
8519 else
8520 mnemonic = "mov.m";
8521 ia64_free_opcode (idesc);
8522 idesc = ia64_find_opcode (mnemonic);
8523 while (idesc != NULL
8524 && (idesc->operands[0] != opnd1
8525 || idesc->operands[1] != opnd2))
8526 idesc = get_next_opcode (idesc);
8527 }
8528 }
8529
8530 qp_regno = 0;
8531 if (md.qp.X_op == O_register)
8532 qp_regno = md.qp.X_add_number - REG_P;
8533
8534 flags = idesc->flags;
8535
8536 if ((flags & IA64_OPCODE_FIRST) != 0)
8537 insn_group_break (1, 0, 0);
8538
8539 if ((flags & IA64_OPCODE_NO_PRED) != 0 && qp_regno != 0)
8540 {
8541 as_bad ("`%s' cannot be predicated", idesc->name);
8542 goto done;
8543 }
8544
8545 /* build the instruction: */
8546 CURR_SLOT.qp_regno = qp_regno;
8547 CURR_SLOT.idesc = idesc;
8548 as_where (&CURR_SLOT.src_file, &CURR_SLOT.src_line);
8549 if (debug_type == DEBUG_DWARF2)
8550 dwarf2_where (&CURR_SLOT.debug_line);
8551
8552 /* Add unwind entry, if there is one. */
8553 if (unwind.current_entry)
8554 {
8555 CURR_SLOT.unwind_record = unwind.current_entry;
8556 unwind.current_entry = NULL;
8557 }
8558
8559 /* check for dependency violations */
8560 if (md.detect_dv)
8561 check_dv(idesc);
8562
8563 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
8564 if (++md.num_slots_in_use >= NUM_SLOTS)
8565 emit_one_bundle ();
8566
8567 if ((flags & IA64_OPCODE_LAST) != 0)
8568 insn_group_break (1, 0, 0);
8569
8570 md.last_text_seg = now_seg;
8571
8572 done:
8573 input_line_pointer = saved_input_line_pointer;
8574 }
8575
8576 /* Called when symbol NAME cannot be found in the symbol table.
8577 Should be used for dynamic valued symbols only. */
8578 symbolS*
8579 md_undefined_symbol (name)
8580 char *name;
8581 {
8582 return 0;
8583 }
8584
8585 /* Called for any expression that can not be recognized. When the
8586 function is called, `input_line_pointer' will point to the start of
8587 the expression. */
8588 void
8589 md_operand (e)
8590 expressionS *e;
8591 {
8592 enum pseudo_type pseudo_type;
8593 const char *name;
8594 size_t len;
8595 int ch, i;
8596
8597 switch (*input_line_pointer)
8598 {
8599 case '@':
8600 /* find what relocation pseudo-function we're dealing with: */
8601 pseudo_type = 0;
8602 ch = *++input_line_pointer;
8603 for (i = 0; i < NELEMS (pseudo_func); ++i)
8604 if (pseudo_func[i].name && pseudo_func[i].name[0] == ch)
8605 {
8606 len = strlen (pseudo_func[i].name);
8607 if (strncmp (pseudo_func[i].name + 1,
8608 input_line_pointer + 1, len - 1) == 0
8609 && !is_part_of_name (input_line_pointer[len]))
8610 {
8611 input_line_pointer += len;
8612 pseudo_type = pseudo_func[i].type;
8613 break;
8614 }
8615 }
8616 switch (pseudo_type)
8617 {
8618 case PSEUDO_FUNC_RELOC:
8619 SKIP_WHITESPACE ();
8620 if (*input_line_pointer != '(')
8621 {
8622 as_bad ("Expected '('");
8623 goto err;
8624 }
8625 ++input_line_pointer; /* skip '(' */
8626 expression (e);
8627 if (*input_line_pointer++ != ')')
8628 {
8629 as_bad ("Missing ')'");
8630 goto err;
8631 }
8632 if (e->X_op != O_symbol)
8633 {
8634 if (e->X_op != O_pseudo_fixup)
8635 {
8636 as_bad ("Not a symbolic expression");
8637 goto err;
8638 }
8639 if (S_GET_VALUE (e->X_op_symbol) == FUNC_FPTR_RELATIVE
8640 && i == FUNC_LT_RELATIVE)
8641 i = FUNC_LT_FPTR_RELATIVE;
8642 else
8643 {
8644 as_bad ("Illegal combination of relocation functions");
8645 goto err;
8646 }
8647 }
8648 /* make sure gas doesn't get rid of local symbols that are used
8649 in relocs: */
8650 e->X_op = O_pseudo_fixup;
8651 e->X_op_symbol = pseudo_func[i].u.sym;
8652 break;
8653
8654 case PSEUDO_FUNC_CONST:
8655 e->X_op = O_constant;
8656 e->X_add_number = pseudo_func[i].u.ival;
8657 break;
8658
8659 case PSEUDO_FUNC_REG:
8660 e->X_op = O_register;
8661 e->X_add_number = pseudo_func[i].u.ival;
8662 break;
8663
8664 default:
8665 name = input_line_pointer - 1;
8666 get_symbol_end ();
8667 as_bad ("Unknown pseudo function `%s'", name);
8668 goto err;
8669 }
8670 break;
8671
8672 case '[':
8673 ++input_line_pointer;
8674 expression (e);
8675 if (*input_line_pointer != ']')
8676 {
8677 as_bad ("Closing bracket misssing");
8678 goto err;
8679 }
8680 else
8681 {
8682 if (e->X_op != O_register)
8683 as_bad ("Register expected as index");
8684
8685 ++input_line_pointer;
8686 e->X_op = O_index;
8687 }
8688 break;
8689
8690 default:
8691 break;
8692 }
8693 return;
8694
8695 err:
8696 ignore_rest_of_line ();
8697 }
8698
8699 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
8700 a section symbol plus some offset. For relocs involving @fptr(),
8701 directives we don't want such adjustments since we need to have the
8702 original symbol's name in the reloc. */
8703 int
8704 ia64_fix_adjustable (fix)
8705 fixS *fix;
8706 {
8707 /* Prevent all adjustments to global symbols */
8708 if (S_IS_EXTERN (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy))
8709 return 0;
8710
8711 switch (fix->fx_r_type)
8712 {
8713 case BFD_RELOC_IA64_FPTR64I:
8714 case BFD_RELOC_IA64_FPTR32MSB:
8715 case BFD_RELOC_IA64_FPTR32LSB:
8716 case BFD_RELOC_IA64_FPTR64MSB:
8717 case BFD_RELOC_IA64_FPTR64LSB:
8718 case BFD_RELOC_IA64_LTOFF_FPTR22:
8719 case BFD_RELOC_IA64_LTOFF_FPTR64I:
8720 return 0;
8721 default:
8722 break;
8723 }
8724
8725 return 1;
8726 }
8727
8728 int
8729 ia64_force_relocation (fix)
8730 fixS *fix;
8731 {
8732 switch (fix->fx_r_type)
8733 {
8734 case BFD_RELOC_IA64_FPTR64I:
8735 case BFD_RELOC_IA64_FPTR32MSB:
8736 case BFD_RELOC_IA64_FPTR32LSB:
8737 case BFD_RELOC_IA64_FPTR64MSB:
8738 case BFD_RELOC_IA64_FPTR64LSB:
8739
8740 case BFD_RELOC_IA64_LTOFF22:
8741 case BFD_RELOC_IA64_LTOFF64I:
8742 case BFD_RELOC_IA64_LTOFF_FPTR22:
8743 case BFD_RELOC_IA64_LTOFF_FPTR64I:
8744 case BFD_RELOC_IA64_PLTOFF22:
8745 case BFD_RELOC_IA64_PLTOFF64I:
8746 case BFD_RELOC_IA64_PLTOFF64MSB:
8747 case BFD_RELOC_IA64_PLTOFF64LSB:
8748 return 1;
8749
8750 default:
8751 return 0;
8752 }
8753 return 0;
8754 }
8755
8756 /* Decide from what point a pc-relative relocation is relative to,
8757 relative to the pc-relative fixup. Er, relatively speaking. */
8758 long
8759 ia64_pcrel_from_section (fix, sec)
8760 fixS *fix;
8761 segT sec;
8762 {
8763 unsigned long off = fix->fx_frag->fr_address + fix->fx_where;
8764
8765 if (bfd_get_section_flags (stdoutput, sec) & SEC_CODE)
8766 off &= ~0xfUL;
8767
8768 return off;
8769 }
8770
8771 /* This is called whenever some data item (not an instruction) needs a
8772 fixup. We pick the right reloc code depending on the byteorder
8773 currently in effect. */
8774 void
8775 ia64_cons_fix_new (f, where, nbytes, exp)
8776 fragS *f;
8777 int where;
8778 int nbytes;
8779 expressionS *exp;
8780 {
8781 bfd_reloc_code_real_type code;
8782 fixS *fix;
8783
8784 switch (nbytes)
8785 {
8786 /* There are no reloc for 8 and 16 bit quantities, but we allow
8787 them here since they will work fine as long as the expression
8788 is fully defined at the end of the pass over the source file. */
8789 case 1: code = BFD_RELOC_8; break;
8790 case 2: code = BFD_RELOC_16; break;
8791 case 4:
8792 if (target_big_endian)
8793 code = BFD_RELOC_IA64_DIR32MSB;
8794 else
8795 code = BFD_RELOC_IA64_DIR32LSB;
8796 break;
8797
8798 case 8:
8799 if (target_big_endian)
8800 code = BFD_RELOC_IA64_DIR64MSB;
8801 else
8802 code = BFD_RELOC_IA64_DIR64LSB;
8803 break;
8804
8805 default:
8806 as_bad ("Unsupported fixup size %d", nbytes);
8807 ignore_rest_of_line ();
8808 return;
8809 }
8810 if (exp->X_op == O_pseudo_fixup)
8811 {
8812 /* ??? */
8813 exp->X_op = O_symbol;
8814 code = ia64_gen_real_reloc_type (exp->X_op_symbol, code);
8815 }
8816 fix = fix_new_exp (f, where, nbytes, exp, 0, code);
8817 /* We need to store the byte order in effect in case we're going
8818 to fix an 8 or 16 bit relocation (for which there no real
8819 relocs available). See md_apply_fix(). */
8820 fix->tc_fix_data.bigendian = target_big_endian;
8821 }
8822
8823 /* Return the actual relocation we wish to associate with the pseudo
8824 reloc described by SYM and R_TYPE. SYM should be one of the
8825 symbols in the pseudo_func array, or NULL. */
8826
8827 static bfd_reloc_code_real_type
8828 ia64_gen_real_reloc_type (sym, r_type)
8829 struct symbol *sym;
8830 bfd_reloc_code_real_type r_type;
8831 {
8832 bfd_reloc_code_real_type new = 0;
8833
8834 if (sym == NULL)
8835 {
8836 return r_type;
8837 }
8838
8839 switch (S_GET_VALUE (sym))
8840 {
8841 case FUNC_FPTR_RELATIVE:
8842 switch (r_type)
8843 {
8844 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_FPTR64I; break;
8845 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_FPTR32MSB; break;
8846 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_FPTR32LSB; break;
8847 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_FPTR64MSB; break;
8848 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_FPTR64LSB; break;
8849 default: break;
8850 }
8851 break;
8852
8853 case FUNC_GP_RELATIVE:
8854 switch (r_type)
8855 {
8856 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_GPREL22; break;
8857 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_GPREL64I; break;
8858 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_GPREL32MSB; break;
8859 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_GPREL32LSB; break;
8860 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_GPREL64MSB; break;
8861 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_GPREL64LSB; break;
8862 default: break;
8863 }
8864 break;
8865
8866 case FUNC_LT_RELATIVE:
8867 switch (r_type)
8868 {
8869 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22; break;
8870 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_LTOFF64I; break;
8871 default: break;
8872 }
8873 break;
8874
8875 case FUNC_PC_RELATIVE:
8876 switch (r_type)
8877 {
8878 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PCREL22; break;
8879 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PCREL64I; break;
8880 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_PCREL32MSB; break;
8881 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_PCREL32LSB; break;
8882 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PCREL64MSB; break;
8883 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PCREL64LSB; break;
8884 default: break;
8885 }
8886 break;
8887
8888 case FUNC_PLT_RELATIVE:
8889 switch (r_type)
8890 {
8891 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PLTOFF22; break;
8892 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PLTOFF64I; break;
8893 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PLTOFF64MSB;break;
8894 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PLTOFF64LSB;break;
8895 default: break;
8896 }
8897 break;
8898
8899 case FUNC_SEC_RELATIVE:
8900 switch (r_type)
8901 {
8902 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SECREL32MSB;break;
8903 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SECREL32LSB;break;
8904 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SECREL64MSB;break;
8905 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SECREL64LSB;break;
8906 default: break;
8907 }
8908 break;
8909
8910 case FUNC_SEG_RELATIVE:
8911 switch (r_type)
8912 {
8913 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SEGREL32MSB;break;
8914 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SEGREL32LSB;break;
8915 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SEGREL64MSB;break;
8916 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SEGREL64LSB;break;
8917 default: break;
8918 }
8919 break;
8920
8921 case FUNC_LTV_RELATIVE:
8922 switch (r_type)
8923 {
8924 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_LTV32MSB; break;
8925 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_LTV32LSB; break;
8926 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_LTV64MSB; break;
8927 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_LTV64LSB; break;
8928 default: break;
8929 }
8930 break;
8931
8932 case FUNC_LT_FPTR_RELATIVE:
8933 switch (r_type)
8934 {
8935 case BFD_RELOC_IA64_IMM22:
8936 new = BFD_RELOC_IA64_LTOFF_FPTR22; break;
8937 case BFD_RELOC_IA64_IMM64:
8938 new = BFD_RELOC_IA64_LTOFF_FPTR64I; break;
8939 default:
8940 break;
8941 }
8942 break;
8943 default:
8944 abort ();
8945 }
8946 /* Hmmmm. Should this ever occur? */
8947 if (new)
8948 return new;
8949 else
8950 return r_type;
8951 }
8952
8953 /* Here is where generate the appropriate reloc for pseudo relocation
8954 functions. */
8955 void
8956 ia64_validate_fix (fix)
8957 fixS *fix;
8958 {
8959 switch (fix->fx_r_type)
8960 {
8961 case BFD_RELOC_IA64_FPTR64I:
8962 case BFD_RELOC_IA64_FPTR32MSB:
8963 case BFD_RELOC_IA64_FPTR64LSB:
8964 case BFD_RELOC_IA64_LTOFF_FPTR22:
8965 case BFD_RELOC_IA64_LTOFF_FPTR64I:
8966 if (fix->fx_offset != 0)
8967 as_bad_where (fix->fx_file, fix->fx_line,
8968 "No addend allowed in @fptr() relocation");
8969 break;
8970 default:
8971 break;
8972 }
8973
8974 return;
8975 }
8976
8977 static void
8978 fix_insn (fix, odesc, value)
8979 fixS *fix;
8980 const struct ia64_operand *odesc;
8981 valueT value;
8982 {
8983 bfd_vma insn[3], t0, t1, control_bits;
8984 const char *err;
8985 char *fixpos;
8986 long slot;
8987
8988 slot = fix->fx_where & 0x3;
8989 fixpos = fix->fx_frag->fr_literal + (fix->fx_where - slot);
8990
8991 /* Bundles are always in little-endian byte order */
8992 t0 = bfd_getl64 (fixpos);
8993 t1 = bfd_getl64 (fixpos + 8);
8994 control_bits = t0 & 0x1f;
8995 insn[0] = (t0 >> 5) & 0x1ffffffffffLL;
8996 insn[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18);
8997 insn[2] = (t1 >> 23) & 0x1ffffffffffLL;
8998
8999 err = NULL;
9000 if (odesc - elf64_ia64_operands == IA64_OPND_IMMU64)
9001 {
9002 insn[1] = (value >> 22) & 0x1ffffffffffLL;
9003 insn[2] |= (((value & 0x7f) << 13)
9004 | (((value >> 7) & 0x1ff) << 27)
9005 | (((value >> 16) & 0x1f) << 22)
9006 | (((value >> 21) & 0x1) << 21)
9007 | (((value >> 63) & 0x1) << 36));
9008 }
9009 else if (odesc - elf64_ia64_operands == IA64_OPND_IMMU62)
9010 {
9011 if (value & ~0x3fffffffffffffffULL)
9012 err = "integer operand out of range";
9013 insn[1] = (value >> 21) & 0x1ffffffffffLL;
9014 insn[2] |= (((value & 0xfffff) << 6) | (((value >> 20) & 0x1) << 36));
9015 }
9016 else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64)
9017 {
9018 value >>= 4;
9019 insn[1] = ((value >> 20) & 0x7fffffffffLL) << 2;
9020 insn[2] |= ((((value >> 59) & 0x1) << 36)
9021 | (((value >> 0) & 0xfffff) << 13));
9022 }
9023 else
9024 err = (*odesc->insert) (odesc, value, insn + slot);
9025
9026 if (err)
9027 as_bad_where (fix->fx_file, fix->fx_line, err);
9028
9029 t0 = control_bits | (insn[0] << 5) | (insn[1] << 46);
9030 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
9031 md_number_to_chars (fixpos + 0, t0, 8);
9032 md_number_to_chars (fixpos + 8, t1, 8);
9033 }
9034
9035 /* Attempt to simplify or even eliminate a fixup. The return value is
9036 ignored; perhaps it was once meaningful, but now it is historical.
9037 To indicate that a fixup has been eliminated, set FIXP->FX_DONE.
9038
9039 If fixp->fx_addsy is non-NULL, we'll have to generate a reloc entry
9040 (if possible). */
9041 int
9042 md_apply_fix3 (fix, valuep, seg)
9043 fixS *fix;
9044 valueT *valuep;
9045 segT seg;
9046 {
9047 char *fixpos;
9048 valueT value = *valuep;
9049 int adjust = 0;
9050
9051 fixpos = fix->fx_frag->fr_literal + fix->fx_where;
9052
9053 if (fix->fx_pcrel)
9054 {
9055 switch (fix->fx_r_type)
9056 {
9057 case BFD_RELOC_IA64_DIR32MSB:
9058 fix->fx_r_type = BFD_RELOC_IA64_PCREL32MSB;
9059 adjust = 1;
9060 break;
9061
9062 case BFD_RELOC_IA64_DIR32LSB:
9063 fix->fx_r_type = BFD_RELOC_IA64_PCREL32LSB;
9064 adjust = 1;
9065 break;
9066
9067 case BFD_RELOC_IA64_DIR64MSB:
9068 fix->fx_r_type = BFD_RELOC_IA64_PCREL64MSB;
9069 adjust = 1;
9070 break;
9071
9072 case BFD_RELOC_IA64_DIR64LSB:
9073 fix->fx_r_type = BFD_RELOC_IA64_PCREL64LSB;
9074 adjust = 1;
9075 break;
9076
9077 default:
9078 break;
9079 }
9080 }
9081 if (fix->fx_addsy)
9082 {
9083 switch (fix->fx_r_type)
9084 {
9085 case 0:
9086 as_bad_where (fix->fx_file, fix->fx_line,
9087 "%s must have a constant value",
9088 elf64_ia64_operands[fix->tc_fix_data.opnd].desc);
9089 break;
9090
9091 default:
9092 break;
9093 }
9094
9095 /* ??? This is a hack copied from tc-i386.c to make PCREL relocs
9096 work. There should be a better way to handle this. */
9097 if (adjust)
9098 fix->fx_offset += fix->fx_where + fix->fx_frag->fr_address;
9099 }
9100 else if (fix->tc_fix_data.opnd == IA64_OPND_NIL)
9101 {
9102 if (fix->tc_fix_data.bigendian)
9103 number_to_chars_bigendian (fixpos, value, fix->fx_size);
9104 else
9105 number_to_chars_littleendian (fixpos, value, fix->fx_size);
9106 fix->fx_done = 1;
9107 return 1;
9108 }
9109 else
9110 {
9111 fix_insn (fix, elf64_ia64_operands + fix->tc_fix_data.opnd, value);
9112 fix->fx_done = 1;
9113 return 1;
9114 }
9115 return 1;
9116 }
9117
9118 /* Generate the BFD reloc to be stuck in the object file from the
9119 fixup used internally in the assembler. */
9120 arelent*
9121 tc_gen_reloc (sec, fixp)
9122 asection *sec;
9123 fixS *fixp;
9124 {
9125 arelent *reloc;
9126
9127 reloc = xmalloc (sizeof (*reloc));
9128 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
9129 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
9130 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
9131 reloc->addend = fixp->fx_offset;
9132 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
9133
9134 if (!reloc->howto)
9135 {
9136 as_bad_where (fixp->fx_file, fixp->fx_line,
9137 "Cannot represent %s relocation in object file",
9138 bfd_get_reloc_code_name (fixp->fx_r_type));
9139 }
9140 return reloc;
9141 }
9142
9143 /* Turn a string in input_line_pointer into a floating point constant
9144 of type TYPE, and store the appropriate bytes in *LIT. The number
9145 of LITTLENUMS emitted is stored in *SIZE. An error message is
9146 returned, or NULL on OK. */
9147
9148 #define MAX_LITTLENUMS 5
9149
9150 char*
9151 md_atof (type, lit, size)
9152 int type;
9153 char *lit;
9154 int *size;
9155 {
9156 LITTLENUM_TYPE words[MAX_LITTLENUMS];
9157 LITTLENUM_TYPE *word;
9158 char *t;
9159 int prec;
9160
9161 switch (type)
9162 {
9163 /* IEEE floats */
9164 case 'f':
9165 case 'F':
9166 case 's':
9167 case 'S':
9168 prec = 2;
9169 break;
9170
9171 case 'd':
9172 case 'D':
9173 case 'r':
9174 case 'R':
9175 prec = 4;
9176 break;
9177
9178 case 'x':
9179 case 'X':
9180 case 'p':
9181 case 'P':
9182 prec = 5;
9183 break;
9184
9185 default:
9186 *size = 0;
9187 return "Bad call to MD_ATOF()";
9188 }
9189 t = atof_ieee (input_line_pointer, type, words);
9190 if (t)
9191 input_line_pointer = t;
9192 *size = prec * sizeof (LITTLENUM_TYPE);
9193
9194 for (word = words + prec - 1; prec--;)
9195 {
9196 md_number_to_chars (lit, (long) (*word--), sizeof (LITTLENUM_TYPE));
9197 lit += sizeof (LITTLENUM_TYPE);
9198 }
9199 return 0;
9200 }
9201
9202 /* Round up a section's size to the appropriate boundary. */
9203 valueT
9204 md_section_align (seg, size)
9205 segT seg;
9206 valueT size;
9207 {
9208 int align = bfd_get_section_alignment (stdoutput, seg);
9209 valueT mask = ((valueT)1 << align) - 1;
9210
9211 return (size + mask) & ~mask;
9212 }
9213
9214 /* Handle ia64 specific semantics of the align directive. */
9215
9216 int
9217 ia64_md_do_align (n, fill, len, max)
9218 int n;
9219 const char *fill;
9220 int len;
9221 int max;
9222 {
9223 /* Fill any pending bundle with nops. */
9224 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
9225 ia64_flush_insns ();
9226
9227 /* When we align code in a text section, emit a bundle of 3 nops instead of
9228 zero bytes. We can only do this if a multiple of 16 bytes was requested.
9229 N is log base 2 of the requested alignment. */
9230 if (fill == NULL
9231 && bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE
9232 && n > 4)
9233 {
9234 /* Use mfi bundle of nops with no stop bits. */
9235 static const unsigned char be_nop[]
9236 = { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
9237 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c};
9238 static const unsigned char le_nop[]
9239 = { 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
9240 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00};
9241
9242 /* Make sure we are on a 16-byte boundary, in case someone has been
9243 putting data into a text section. */
9244 frag_align (4, 0, 0);
9245
9246 if (target_big_endian)
9247 frag_align_pattern (n, be_nop, 16, max);
9248 else
9249 frag_align_pattern (n, le_nop, 16, max);
9250 return 1;
9251 }
9252
9253 return 0;
9254 }
This page took 0.255503 seconds and 5 git commands to generate.