Fix ia64-hpux build failure, patch from Steve Ellcey.
[deliverable/binutils-gdb.git] / gas / config / tc-ia64.c
1 /* tc-ia64.c -- Assembler for the HP/Intel IA-64 architecture.
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
3 Free Software Foundation, Inc.
4 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
21 Boston, MA 02110-1301, USA. */
22
23 /*
24 TODO:
25
26 - optional operands
27 - directives:
28 .eb
29 .estate
30 .lb
31 .popsection
32 .previous
33 .psr
34 .pushsection
35 - labels are wrong if automatic alignment is introduced
36 (e.g., checkout the second real10 definition in test-data.s)
37 - DV-related stuff:
38 <reg>.safe_across_calls and any other DV-related directives I don't
39 have documentation for.
40 verify mod-sched-brs reads/writes are checked/marked (and other
41 notes)
42
43 */
44
45 #include "as.h"
46 #include "safe-ctype.h"
47 #include "dwarf2dbg.h"
48 #include "subsegs.h"
49
50 #include "opcode/ia64.h"
51
52 #include "elf/ia64.h"
53
54 #ifdef HAVE_LIMITS_H
55 #include <limits.h>
56 #endif
57
58 #define NELEMS(a) ((int) (sizeof (a)/sizeof ((a)[0])))
59
60 /* Some systems define MIN in, e.g., param.h. */
61 #undef MIN
62 #define MIN(a,b) ((a) < (b) ? (a) : (b))
63
64 #define NUM_SLOTS 4
65 #define PREV_SLOT md.slot[(md.curr_slot + NUM_SLOTS - 1) % NUM_SLOTS]
66 #define CURR_SLOT md.slot[md.curr_slot]
67
68 #define O_pseudo_fixup (O_max + 1)
69
70 enum special_section
71 {
72 /* IA-64 ABI section pseudo-ops. */
73 SPECIAL_SECTION_BSS = 0,
74 SPECIAL_SECTION_SBSS,
75 SPECIAL_SECTION_SDATA,
76 SPECIAL_SECTION_RODATA,
77 SPECIAL_SECTION_COMMENT,
78 SPECIAL_SECTION_UNWIND,
79 SPECIAL_SECTION_UNWIND_INFO,
80 /* HPUX specific section pseudo-ops. */
81 SPECIAL_SECTION_INIT_ARRAY,
82 SPECIAL_SECTION_FINI_ARRAY,
83 };
84
85 enum reloc_func
86 {
87 FUNC_DTP_MODULE,
88 FUNC_DTP_RELATIVE,
89 FUNC_FPTR_RELATIVE,
90 FUNC_GP_RELATIVE,
91 FUNC_LT_RELATIVE,
92 FUNC_LT_RELATIVE_X,
93 FUNC_PC_RELATIVE,
94 FUNC_PLT_RELATIVE,
95 FUNC_SEC_RELATIVE,
96 FUNC_SEG_RELATIVE,
97 FUNC_TP_RELATIVE,
98 FUNC_LTV_RELATIVE,
99 FUNC_LT_FPTR_RELATIVE,
100 FUNC_LT_DTP_MODULE,
101 FUNC_LT_DTP_RELATIVE,
102 FUNC_LT_TP_RELATIVE,
103 FUNC_IPLT_RELOC,
104 };
105
106 enum reg_symbol
107 {
108 REG_GR = 0,
109 REG_FR = (REG_GR + 128),
110 REG_AR = (REG_FR + 128),
111 REG_CR = (REG_AR + 128),
112 REG_P = (REG_CR + 128),
113 REG_BR = (REG_P + 64),
114 REG_IP = (REG_BR + 8),
115 REG_CFM,
116 REG_PR,
117 REG_PR_ROT,
118 REG_PSR,
119 REG_PSR_L,
120 REG_PSR_UM,
121 /* The following are pseudo-registers for use by gas only. */
122 IND_CPUID,
123 IND_DBR,
124 IND_DTR,
125 IND_ITR,
126 IND_IBR,
127 IND_MEM,
128 IND_MSR,
129 IND_PKR,
130 IND_PMC,
131 IND_PMD,
132 IND_RR,
133 /* The following pseudo-registers are used for unwind directives only: */
134 REG_PSP,
135 REG_PRIUNAT,
136 REG_NUM
137 };
138
139 enum dynreg_type
140 {
141 DYNREG_GR = 0, /* dynamic general purpose register */
142 DYNREG_FR, /* dynamic floating point register */
143 DYNREG_PR, /* dynamic predicate register */
144 DYNREG_NUM_TYPES
145 };
146
147 enum operand_match_result
148 {
149 OPERAND_MATCH,
150 OPERAND_OUT_OF_RANGE,
151 OPERAND_MISMATCH
152 };
153
154 /* On the ia64, we can't know the address of a text label until the
155 instructions are packed into a bundle. To handle this, we keep
156 track of the list of labels that appear in front of each
157 instruction. */
158 struct label_fix
159 {
160 struct label_fix *next;
161 struct symbol *sym;
162 };
163
164 /* This is the endianness of the current section. */
165 extern int target_big_endian;
166
167 /* This is the default endianness. */
168 static int default_big_endian = TARGET_BYTES_BIG_ENDIAN;
169
170 void (*ia64_number_to_chars) PARAMS ((char *, valueT, int));
171
172 static void ia64_float_to_chars_bigendian
173 PARAMS ((char *, LITTLENUM_TYPE *, int));
174 static void ia64_float_to_chars_littleendian
175 PARAMS ((char *, LITTLENUM_TYPE *, int));
176 static void (*ia64_float_to_chars)
177 PARAMS ((char *, LITTLENUM_TYPE *, int));
178
179 static struct hash_control *alias_hash;
180 static struct hash_control *alias_name_hash;
181 static struct hash_control *secalias_hash;
182 static struct hash_control *secalias_name_hash;
183
184 /* List of chars besides those in app.c:symbol_chars that can start an
185 operand. Used to prevent the scrubber eating vital white-space. */
186 const char ia64_symbol_chars[] = "@?";
187
188 /* Characters which always start a comment. */
189 const char comment_chars[] = "";
190
191 /* Characters which start a comment at the beginning of a line. */
192 const char line_comment_chars[] = "#";
193
194 /* Characters which may be used to separate multiple commands on a
195 single line. */
196 const char line_separator_chars[] = ";";
197
198 /* Characters which are used to indicate an exponent in a floating
199 point number. */
200 const char EXP_CHARS[] = "eE";
201
202 /* Characters which mean that a number is a floating point constant,
203 as in 0d1.0. */
204 const char FLT_CHARS[] = "rRsSfFdDxXpP";
205
206 /* ia64-specific option processing: */
207
208 const char *md_shortopts = "m:N:x::";
209
210 struct option md_longopts[] =
211 {
212 #define OPTION_MCONSTANT_GP (OPTION_MD_BASE + 1)
213 {"mconstant-gp", no_argument, NULL, OPTION_MCONSTANT_GP},
214 #define OPTION_MAUTO_PIC (OPTION_MD_BASE + 2)
215 {"mauto-pic", no_argument, NULL, OPTION_MAUTO_PIC}
216 };
217
218 size_t md_longopts_size = sizeof (md_longopts);
219
220 static struct
221 {
222 struct hash_control *pseudo_hash; /* pseudo opcode hash table */
223 struct hash_control *reg_hash; /* register name hash table */
224 struct hash_control *dynreg_hash; /* dynamic register hash table */
225 struct hash_control *const_hash; /* constant hash table */
226 struct hash_control *entry_hash; /* code entry hint hash table */
227
228 symbolS *regsym[REG_NUM];
229
230 /* If X_op is != O_absent, the registername for the instruction's
231 qualifying predicate. If NULL, p0 is assumed for instructions
232 that are predicatable. */
233 expressionS qp;
234
235 /* Optimize for which CPU. */
236 enum
237 {
238 itanium1,
239 itanium2
240 } tune;
241
242 /* What to do when hint.b is used. */
243 enum
244 {
245 hint_b_error,
246 hint_b_warning,
247 hint_b_ok
248 } hint_b;
249
250 unsigned int
251 manual_bundling : 1,
252 debug_dv: 1,
253 detect_dv: 1,
254 explicit_mode : 1, /* which mode we're in */
255 default_explicit_mode : 1, /* which mode is the default */
256 mode_explicitly_set : 1, /* was the current mode explicitly set? */
257 auto_align : 1,
258 keep_pending_output : 1;
259
260 /* What to do when something is wrong with unwind directives. */
261 enum
262 {
263 unwind_check_warning,
264 unwind_check_error
265 } unwind_check;
266
267 /* Each bundle consists of up to three instructions. We keep
268 track of four most recent instructions so we can correctly set
269 the end_of_insn_group for the last instruction in a bundle. */
270 int curr_slot;
271 int num_slots_in_use;
272 struct slot
273 {
274 unsigned int
275 end_of_insn_group : 1,
276 manual_bundling_on : 1,
277 manual_bundling_off : 1,
278 loc_directive_seen : 1;
279 signed char user_template; /* user-selected template, if any */
280 unsigned char qp_regno; /* qualifying predicate */
281 /* This duplicates a good fraction of "struct fix" but we
282 can't use a "struct fix" instead since we can't call
283 fix_new_exp() until we know the address of the instruction. */
284 int num_fixups;
285 struct insn_fix
286 {
287 bfd_reloc_code_real_type code;
288 enum ia64_opnd opnd; /* type of operand in need of fix */
289 unsigned int is_pcrel : 1; /* is operand pc-relative? */
290 expressionS expr; /* the value to be inserted */
291 }
292 fixup[2]; /* at most two fixups per insn */
293 struct ia64_opcode *idesc;
294 struct label_fix *label_fixups;
295 struct label_fix *tag_fixups;
296 struct unw_rec_list *unwind_record; /* Unwind directive. */
297 expressionS opnd[6];
298 char *src_file;
299 unsigned int src_line;
300 struct dwarf2_line_info debug_line;
301 }
302 slot[NUM_SLOTS];
303
304 segT last_text_seg;
305
306 struct dynreg
307 {
308 struct dynreg *next; /* next dynamic register */
309 const char *name;
310 unsigned short base; /* the base register number */
311 unsigned short num_regs; /* # of registers in this set */
312 }
313 *dynreg[DYNREG_NUM_TYPES], in, loc, out, rot;
314
315 flagword flags; /* ELF-header flags */
316
317 struct mem_offset {
318 unsigned hint:1; /* is this hint currently valid? */
319 bfd_vma offset; /* mem.offset offset */
320 bfd_vma base; /* mem.offset base */
321 } mem_offset;
322
323 int path; /* number of alt. entry points seen */
324 const char **entry_labels; /* labels of all alternate paths in
325 the current DV-checking block. */
326 int maxpaths; /* size currently allocated for
327 entry_labels */
328
329 int pointer_size; /* size in bytes of a pointer */
330 int pointer_size_shift; /* shift size of a pointer for alignment */
331 }
332 md;
333
334 /* These are not const, because they are modified to MMI for non-itanium1
335 targets below. */
336 /* MFI bundle of nops. */
337 static unsigned char le_nop[16] =
338 {
339 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
340 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00
341 };
342 /* MFI bundle of nops with stop-bit. */
343 static unsigned char le_nop_stop[16] =
344 {
345 0x0d, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00,
346 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00
347 };
348
349 /* application registers: */
350
351 #define AR_K0 0
352 #define AR_K7 7
353 #define AR_RSC 16
354 #define AR_BSP 17
355 #define AR_BSPSTORE 18
356 #define AR_RNAT 19
357 #define AR_UNAT 36
358 #define AR_FPSR 40
359 #define AR_ITC 44
360 #define AR_PFS 64
361 #define AR_LC 65
362
363 static const struct
364 {
365 const char *name;
366 int regnum;
367 }
368 ar[] =
369 {
370 {"ar.k0", 0}, {"ar.k1", 1}, {"ar.k2", 2}, {"ar.k3", 3},
371 {"ar.k4", 4}, {"ar.k5", 5}, {"ar.k6", 6}, {"ar.k7", 7},
372 {"ar.rsc", 16}, {"ar.bsp", 17},
373 {"ar.bspstore", 18}, {"ar.rnat", 19},
374 {"ar.fcr", 21}, {"ar.eflag", 24},
375 {"ar.csd", 25}, {"ar.ssd", 26},
376 {"ar.cflg", 27}, {"ar.fsr", 28},
377 {"ar.fir", 29}, {"ar.fdr", 30},
378 {"ar.ccv", 32}, {"ar.unat", 36},
379 {"ar.fpsr", 40}, {"ar.itc", 44},
380 {"ar.pfs", 64}, {"ar.lc", 65},
381 {"ar.ec", 66},
382 };
383
384 #define CR_IPSR 16
385 #define CR_ISR 17
386 #define CR_IIP 19
387 #define CR_IFA 20
388 #define CR_ITIR 21
389 #define CR_IIPA 22
390 #define CR_IFS 23
391 #define CR_IIM 24
392 #define CR_IHA 25
393 #define CR_IVR 65
394 #define CR_TPR 66
395 #define CR_EOI 67
396 #define CR_IRR0 68
397 #define CR_IRR3 71
398 #define CR_LRR0 80
399 #define CR_LRR1 81
400
401 /* control registers: */
402 static const struct
403 {
404 const char *name;
405 int regnum;
406 }
407 cr[] =
408 {
409 {"cr.dcr", 0},
410 {"cr.itm", 1},
411 {"cr.iva", 2},
412 {"cr.pta", 8},
413 {"cr.gpta", 9},
414 {"cr.ipsr", 16},
415 {"cr.isr", 17},
416 {"cr.iip", 19},
417 {"cr.ifa", 20},
418 {"cr.itir", 21},
419 {"cr.iipa", 22},
420 {"cr.ifs", 23},
421 {"cr.iim", 24},
422 {"cr.iha", 25},
423 {"cr.lid", 64},
424 {"cr.ivr", 65},
425 {"cr.tpr", 66},
426 {"cr.eoi", 67},
427 {"cr.irr0", 68},
428 {"cr.irr1", 69},
429 {"cr.irr2", 70},
430 {"cr.irr3", 71},
431 {"cr.itv", 72},
432 {"cr.pmv", 73},
433 {"cr.cmcv", 74},
434 {"cr.lrr0", 80},
435 {"cr.lrr1", 81}
436 };
437
438 #define PSR_MFL 4
439 #define PSR_IC 13
440 #define PSR_DFL 18
441 #define PSR_CPL 32
442
443 static const struct const_desc
444 {
445 const char *name;
446 valueT value;
447 }
448 const_bits[] =
449 {
450 /* PSR constant masks: */
451
452 /* 0: reserved */
453 {"psr.be", ((valueT) 1) << 1},
454 {"psr.up", ((valueT) 1) << 2},
455 {"psr.ac", ((valueT) 1) << 3},
456 {"psr.mfl", ((valueT) 1) << 4},
457 {"psr.mfh", ((valueT) 1) << 5},
458 /* 6-12: reserved */
459 {"psr.ic", ((valueT) 1) << 13},
460 {"psr.i", ((valueT) 1) << 14},
461 {"psr.pk", ((valueT) 1) << 15},
462 /* 16: reserved */
463 {"psr.dt", ((valueT) 1) << 17},
464 {"psr.dfl", ((valueT) 1) << 18},
465 {"psr.dfh", ((valueT) 1) << 19},
466 {"psr.sp", ((valueT) 1) << 20},
467 {"psr.pp", ((valueT) 1) << 21},
468 {"psr.di", ((valueT) 1) << 22},
469 {"psr.si", ((valueT) 1) << 23},
470 {"psr.db", ((valueT) 1) << 24},
471 {"psr.lp", ((valueT) 1) << 25},
472 {"psr.tb", ((valueT) 1) << 26},
473 {"psr.rt", ((valueT) 1) << 27},
474 /* 28-31: reserved */
475 /* 32-33: cpl (current privilege level) */
476 {"psr.is", ((valueT) 1) << 34},
477 {"psr.mc", ((valueT) 1) << 35},
478 {"psr.it", ((valueT) 1) << 36},
479 {"psr.id", ((valueT) 1) << 37},
480 {"psr.da", ((valueT) 1) << 38},
481 {"psr.dd", ((valueT) 1) << 39},
482 {"psr.ss", ((valueT) 1) << 40},
483 /* 41-42: ri (restart instruction) */
484 {"psr.ed", ((valueT) 1) << 43},
485 {"psr.bn", ((valueT) 1) << 44},
486 };
487
488 /* indirect register-sets/memory: */
489
490 static const struct
491 {
492 const char *name;
493 int regnum;
494 }
495 indirect_reg[] =
496 {
497 { "CPUID", IND_CPUID },
498 { "cpuid", IND_CPUID },
499 { "dbr", IND_DBR },
500 { "dtr", IND_DTR },
501 { "itr", IND_ITR },
502 { "ibr", IND_IBR },
503 { "msr", IND_MSR },
504 { "pkr", IND_PKR },
505 { "pmc", IND_PMC },
506 { "pmd", IND_PMD },
507 { "rr", IND_RR },
508 };
509
510 /* Pseudo functions used to indicate relocation types (these functions
511 start with an at sign (@). */
512 static struct
513 {
514 const char *name;
515 enum pseudo_type
516 {
517 PSEUDO_FUNC_NONE,
518 PSEUDO_FUNC_RELOC,
519 PSEUDO_FUNC_CONST,
520 PSEUDO_FUNC_REG,
521 PSEUDO_FUNC_FLOAT
522 }
523 type;
524 union
525 {
526 unsigned long ival;
527 symbolS *sym;
528 }
529 u;
530 }
531 pseudo_func[] =
532 {
533 /* reloc pseudo functions (these must come first!): */
534 { "dtpmod", PSEUDO_FUNC_RELOC, { 0 } },
535 { "dtprel", PSEUDO_FUNC_RELOC, { 0 } },
536 { "fptr", PSEUDO_FUNC_RELOC, { 0 } },
537 { "gprel", PSEUDO_FUNC_RELOC, { 0 } },
538 { "ltoff", PSEUDO_FUNC_RELOC, { 0 } },
539 { "ltoffx", PSEUDO_FUNC_RELOC, { 0 } },
540 { "pcrel", PSEUDO_FUNC_RELOC, { 0 } },
541 { "pltoff", PSEUDO_FUNC_RELOC, { 0 } },
542 { "secrel", PSEUDO_FUNC_RELOC, { 0 } },
543 { "segrel", PSEUDO_FUNC_RELOC, { 0 } },
544 { "tprel", PSEUDO_FUNC_RELOC, { 0 } },
545 { "ltv", PSEUDO_FUNC_RELOC, { 0 } },
546 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_FPTR_RELATIVE */
547 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_DTP_MODULE */
548 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_DTP_RELATIVE */
549 { NULL, 0, { 0 } }, /* placeholder for FUNC_LT_TP_RELATIVE */
550 { "iplt", PSEUDO_FUNC_RELOC, { 0 } },
551
552 /* mbtype4 constants: */
553 { "alt", PSEUDO_FUNC_CONST, { 0xa } },
554 { "brcst", PSEUDO_FUNC_CONST, { 0x0 } },
555 { "mix", PSEUDO_FUNC_CONST, { 0x8 } },
556 { "rev", PSEUDO_FUNC_CONST, { 0xb } },
557 { "shuf", PSEUDO_FUNC_CONST, { 0x9 } },
558
559 /* fclass constants: */
560 { "nat", PSEUDO_FUNC_CONST, { 0x100 } },
561 { "qnan", PSEUDO_FUNC_CONST, { 0x080 } },
562 { "snan", PSEUDO_FUNC_CONST, { 0x040 } },
563 { "pos", PSEUDO_FUNC_CONST, { 0x001 } },
564 { "neg", PSEUDO_FUNC_CONST, { 0x002 } },
565 { "zero", PSEUDO_FUNC_CONST, { 0x004 } },
566 { "unorm", PSEUDO_FUNC_CONST, { 0x008 } },
567 { "norm", PSEUDO_FUNC_CONST, { 0x010 } },
568 { "inf", PSEUDO_FUNC_CONST, { 0x020 } },
569
570 { "natval", PSEUDO_FUNC_CONST, { 0x100 } }, /* old usage */
571
572 /* hint constants: */
573 { "pause", PSEUDO_FUNC_CONST, { 0x0 } },
574
575 /* unwind-related constants: */
576 { "svr4", PSEUDO_FUNC_CONST, { ELFOSABI_NONE } },
577 { "hpux", PSEUDO_FUNC_CONST, { ELFOSABI_HPUX } },
578 { "nt", PSEUDO_FUNC_CONST, { 2 } }, /* conflicts w/ELFOSABI_NETBSD */
579 { "linux", PSEUDO_FUNC_CONST, { ELFOSABI_LINUX } },
580 { "freebsd", PSEUDO_FUNC_CONST, { ELFOSABI_FREEBSD } },
581 { "openvms", PSEUDO_FUNC_CONST, { ELFOSABI_OPENVMS } },
582 { "nsk", PSEUDO_FUNC_CONST, { ELFOSABI_NSK } },
583
584 /* unwind-related registers: */
585 { "priunat",PSEUDO_FUNC_REG, { REG_PRIUNAT } }
586 };
587
588 /* 41-bit nop opcodes (one per unit): */
589 static const bfd_vma nop[IA64_NUM_UNITS] =
590 {
591 0x0000000000LL, /* NIL => break 0 */
592 0x0008000000LL, /* I-unit nop */
593 0x0008000000LL, /* M-unit nop */
594 0x4000000000LL, /* B-unit nop */
595 0x0008000000LL, /* F-unit nop */
596 0x0008000000LL, /* L-"unit" nop */
597 0x0008000000LL, /* X-unit nop */
598 };
599
600 /* Can't be `const' as it's passed to input routines (which have the
601 habit of setting temporary sentinels. */
602 static char special_section_name[][20] =
603 {
604 {".bss"}, {".sbss"}, {".sdata"}, {".rodata"}, {".comment"},
605 {".IA_64.unwind"}, {".IA_64.unwind_info"},
606 {".init_array"}, {".fini_array"}
607 };
608
609 /* The best template for a particular sequence of up to three
610 instructions: */
611 #define N IA64_NUM_TYPES
612 static unsigned char best_template[N][N][N];
613 #undef N
614
615 /* Resource dependencies currently in effect */
616 static struct rsrc {
617 int depind; /* dependency index */
618 const struct ia64_dependency *dependency; /* actual dependency */
619 unsigned specific:1, /* is this a specific bit/regno? */
620 link_to_qp_branch:1; /* will a branch on the same QP clear it?*/
621 int index; /* specific regno/bit within dependency */
622 int note; /* optional qualifying note (0 if none) */
623 #define STATE_NONE 0
624 #define STATE_STOP 1
625 #define STATE_SRLZ 2
626 int insn_srlz; /* current insn serialization state */
627 int data_srlz; /* current data serialization state */
628 int qp_regno; /* qualifying predicate for this usage */
629 char *file; /* what file marked this dependency */
630 unsigned int line; /* what line marked this dependency */
631 struct mem_offset mem_offset; /* optional memory offset hint */
632 enum { CMP_NONE, CMP_OR, CMP_AND } cmp_type; /* OR or AND compare? */
633 int path; /* corresponding code entry index */
634 } *regdeps = NULL;
635 static int regdepslen = 0;
636 static int regdepstotlen = 0;
637 static const char *dv_mode[] = { "RAW", "WAW", "WAR" };
638 static const char *dv_sem[] = { "none", "implied", "impliedf",
639 "data", "instr", "specific", "stop", "other" };
640 static const char *dv_cmp_type[] = { "none", "OR", "AND" };
641
642 /* Current state of PR mutexation */
643 static struct qpmutex {
644 valueT prmask;
645 int path;
646 } *qp_mutexes = NULL; /* QP mutex bitmasks */
647 static int qp_mutexeslen = 0;
648 static int qp_mutexestotlen = 0;
649 static valueT qp_safe_across_calls = 0;
650
651 /* Current state of PR implications */
652 static struct qp_imply {
653 unsigned p1:6;
654 unsigned p2:6;
655 unsigned p2_branched:1;
656 int path;
657 } *qp_implies = NULL;
658 static int qp_implieslen = 0;
659 static int qp_impliestotlen = 0;
660
661 /* Keep track of static GR values so that indirect register usage can
662 sometimes be tracked. */
663 static struct gr {
664 unsigned known:1;
665 int path;
666 valueT value;
667 } gr_values[128] = {
668 {
669 1,
670 #ifdef INT_MAX
671 INT_MAX,
672 #else
673 (((1 << (8 * sizeof(gr_values->path) - 2)) - 1) << 1) + 1,
674 #endif
675 0
676 }
677 };
678
679 /* Remember the alignment frag. */
680 static fragS *align_frag;
681
682 /* These are the routines required to output the various types of
683 unwind records. */
684
685 /* A slot_number is a frag address plus the slot index (0-2). We use the
686 frag address here so that if there is a section switch in the middle of
687 a function, then instructions emitted to a different section are not
688 counted. Since there may be more than one frag for a function, this
689 means we also need to keep track of which frag this address belongs to
690 so we can compute inter-frag distances. This also nicely solves the
691 problem with nops emitted for align directives, which can't easily be
692 counted, but can easily be derived from frag sizes. */
693
694 typedef struct unw_rec_list {
695 unwind_record r;
696 unsigned long slot_number;
697 fragS *slot_frag;
698 unsigned long next_slot_number;
699 fragS *next_slot_frag;
700 struct unw_rec_list *next;
701 } unw_rec_list;
702
703 #define SLOT_NUM_NOT_SET (unsigned)-1
704
705 /* Linked list of saved prologue counts. A very poor
706 implementation of a map from label numbers to prologue counts. */
707 typedef struct label_prologue_count
708 {
709 struct label_prologue_count *next;
710 unsigned long label_number;
711 unsigned int prologue_count;
712 } label_prologue_count;
713
714 static struct
715 {
716 /* Maintain a list of unwind entries for the current function. */
717 unw_rec_list *list;
718 unw_rec_list *tail;
719
720 /* Any unwind entires that should be attached to the current slot
721 that an insn is being constructed for. */
722 unw_rec_list *current_entry;
723
724 /* These are used to create the unwind table entry for this function. */
725 symbolS *proc_start;
726 symbolS *info; /* pointer to unwind info */
727 symbolS *personality_routine;
728 segT saved_text_seg;
729 subsegT saved_text_subseg;
730 unsigned int force_unwind_entry : 1; /* force generation of unwind entry? */
731
732 /* TRUE if processing unwind directives in a prologue region. */
733 unsigned int prologue : 1;
734 unsigned int prologue_mask : 4;
735 unsigned int body : 1;
736 unsigned int insn : 1;
737 unsigned int prologue_count; /* number of .prologues seen so far */
738 /* Prologue counts at previous .label_state directives. */
739 struct label_prologue_count * saved_prologue_counts;
740 } unwind;
741
742 /* The input value is a negated offset from psp, and specifies an address
743 psp - offset. The encoded value is psp + 16 - (4 * offset). Thus we
744 must add 16 and divide by 4 to get the encoded value. */
745
746 #define ENCODED_PSP_OFFSET(OFFSET) (((OFFSET) + 16) / 4)
747
748 typedef void (*vbyte_func) PARAMS ((int, char *, char *));
749
750 /* Forward declarations: */
751 static void set_section PARAMS ((char *name));
752 static unsigned int set_regstack PARAMS ((unsigned int, unsigned int,
753 unsigned int, unsigned int));
754 static void dot_align (int);
755 static void dot_radix PARAMS ((int));
756 static void dot_special_section PARAMS ((int));
757 static void dot_proc PARAMS ((int));
758 static void dot_fframe PARAMS ((int));
759 static void dot_vframe PARAMS ((int));
760 static void dot_vframesp PARAMS ((int));
761 static void dot_vframepsp PARAMS ((int));
762 static void dot_save PARAMS ((int));
763 static void dot_restore PARAMS ((int));
764 static void dot_restorereg PARAMS ((int));
765 static void dot_restorereg_p PARAMS ((int));
766 static void dot_handlerdata PARAMS ((int));
767 static void dot_unwentry PARAMS ((int));
768 static void dot_altrp PARAMS ((int));
769 static void dot_savemem PARAMS ((int));
770 static void dot_saveg PARAMS ((int));
771 static void dot_savef PARAMS ((int));
772 static void dot_saveb PARAMS ((int));
773 static void dot_savegf PARAMS ((int));
774 static void dot_spill PARAMS ((int));
775 static void dot_spillreg PARAMS ((int));
776 static void dot_spillmem PARAMS ((int));
777 static void dot_spillreg_p PARAMS ((int));
778 static void dot_spillmem_p PARAMS ((int));
779 static void dot_label_state PARAMS ((int));
780 static void dot_copy_state PARAMS ((int));
781 static void dot_unwabi PARAMS ((int));
782 static void dot_personality PARAMS ((int));
783 static void dot_body PARAMS ((int));
784 static void dot_prologue PARAMS ((int));
785 static void dot_endp PARAMS ((int));
786 static void dot_template PARAMS ((int));
787 static void dot_regstk PARAMS ((int));
788 static void dot_rot PARAMS ((int));
789 static void dot_byteorder PARAMS ((int));
790 static void dot_psr PARAMS ((int));
791 static void dot_alias PARAMS ((int));
792 static void dot_ln PARAMS ((int));
793 static void cross_section PARAMS ((int ref, void (*cons) PARAMS((int)), int ua));
794 static void dot_xdata PARAMS ((int));
795 static void stmt_float_cons PARAMS ((int));
796 static void stmt_cons_ua PARAMS ((int));
797 static void dot_xfloat_cons PARAMS ((int));
798 static void dot_xstringer PARAMS ((int));
799 static void dot_xdata_ua PARAMS ((int));
800 static void dot_xfloat_cons_ua PARAMS ((int));
801 static void print_prmask PARAMS ((valueT mask));
802 static void dot_pred_rel PARAMS ((int));
803 static void dot_reg_val PARAMS ((int));
804 static void dot_serialize PARAMS ((int));
805 static void dot_dv_mode PARAMS ((int));
806 static void dot_entry PARAMS ((int));
807 static void dot_mem_offset PARAMS ((int));
808 static void add_unwind_entry PARAMS((unw_rec_list *ptr));
809 static symbolS *declare_register PARAMS ((const char *name, int regnum));
810 static void declare_register_set PARAMS ((const char *, int, int));
811 static unsigned int operand_width PARAMS ((enum ia64_opnd));
812 static enum operand_match_result operand_match PARAMS ((const struct ia64_opcode *idesc,
813 int index,
814 expressionS *e));
815 static int parse_operand PARAMS ((expressionS *e));
816 static struct ia64_opcode * parse_operands PARAMS ((struct ia64_opcode *));
817 static void build_insn PARAMS ((struct slot *, bfd_vma *));
818 static void emit_one_bundle PARAMS ((void));
819 static void fix_insn PARAMS ((fixS *, const struct ia64_operand *, valueT));
820 static bfd_reloc_code_real_type ia64_gen_real_reloc_type PARAMS ((struct symbol *sym,
821 bfd_reloc_code_real_type r_type));
822 static void insn_group_break PARAMS ((int, int, int));
823 static void mark_resource PARAMS ((struct ia64_opcode *, const struct ia64_dependency *,
824 struct rsrc *, int depind, int path));
825 static void add_qp_mutex PARAMS((valueT mask));
826 static void add_qp_imply PARAMS((int p1, int p2));
827 static void clear_qp_branch_flag PARAMS((valueT mask));
828 static void clear_qp_mutex PARAMS((valueT mask));
829 static void clear_qp_implies PARAMS((valueT p1_mask, valueT p2_mask));
830 static int has_suffix_p PARAMS((const char *, const char *));
831 static void clear_register_values PARAMS ((void));
832 static void print_dependency PARAMS ((const char *action, int depind));
833 static void instruction_serialization PARAMS ((void));
834 static void data_serialization PARAMS ((void));
835 static void remove_marked_resource PARAMS ((struct rsrc *));
836 static int is_conditional_branch PARAMS ((struct ia64_opcode *));
837 static int is_taken_branch PARAMS ((struct ia64_opcode *));
838 static int is_interruption_or_rfi PARAMS ((struct ia64_opcode *));
839 static int depends_on PARAMS ((int, struct ia64_opcode *));
840 static int specify_resource PARAMS ((const struct ia64_dependency *,
841 struct ia64_opcode *, int, struct rsrc [], int, int));
842 static int check_dv PARAMS((struct ia64_opcode *idesc));
843 static void check_dependencies PARAMS((struct ia64_opcode *));
844 static void mark_resources PARAMS((struct ia64_opcode *));
845 static void update_dependencies PARAMS((struct ia64_opcode *));
846 static void note_register_values PARAMS((struct ia64_opcode *));
847 static int qp_mutex PARAMS ((int, int, int));
848 static int resources_match PARAMS ((struct rsrc *, struct ia64_opcode *, int, int, int));
849 static void output_vbyte_mem PARAMS ((int, char *, char *));
850 static void count_output PARAMS ((int, char *, char *));
851 static void output_R1_format PARAMS ((vbyte_func, unw_record_type, int));
852 static void output_R2_format PARAMS ((vbyte_func, int, int, unsigned long));
853 static void output_R3_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
854 static void output_P1_format PARAMS ((vbyte_func, int));
855 static void output_P2_format PARAMS ((vbyte_func, int, int));
856 static void output_P3_format PARAMS ((vbyte_func, unw_record_type, int));
857 static void output_P4_format PARAMS ((vbyte_func, unsigned char *, unsigned long));
858 static void output_P5_format PARAMS ((vbyte_func, int, unsigned long));
859 static void output_P6_format PARAMS ((vbyte_func, unw_record_type, int));
860 static void output_P7_format PARAMS ((vbyte_func, unw_record_type, unsigned long, unsigned long));
861 static void output_P8_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
862 static void output_P9_format PARAMS ((vbyte_func, int, int));
863 static void output_P10_format PARAMS ((vbyte_func, int, int));
864 static void output_B1_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
865 static void output_B2_format PARAMS ((vbyte_func, unsigned long, unsigned long));
866 static void output_B3_format PARAMS ((vbyte_func, unsigned long, unsigned long));
867 static void output_B4_format PARAMS ((vbyte_func, unw_record_type, unsigned long));
868 static char format_ab_reg PARAMS ((int, int));
869 static void output_X1_format PARAMS ((vbyte_func, unw_record_type, int, int, unsigned long,
870 unsigned long));
871 static void output_X2_format PARAMS ((vbyte_func, int, int, int, int, int, unsigned long));
872 static void output_X3_format PARAMS ((vbyte_func, unw_record_type, int, int, int, unsigned long,
873 unsigned long));
874 static void output_X4_format PARAMS ((vbyte_func, int, int, int, int, int, int, unsigned long));
875 static unw_rec_list *output_endp PARAMS ((void));
876 static unw_rec_list *output_prologue PARAMS ((void));
877 static unw_rec_list *output_prologue_gr PARAMS ((unsigned int, unsigned int));
878 static unw_rec_list *output_body PARAMS ((void));
879 static unw_rec_list *output_mem_stack_f PARAMS ((unsigned int));
880 static unw_rec_list *output_mem_stack_v PARAMS ((void));
881 static unw_rec_list *output_psp_gr PARAMS ((unsigned int));
882 static unw_rec_list *output_psp_sprel PARAMS ((unsigned int));
883 static unw_rec_list *output_rp_when PARAMS ((void));
884 static unw_rec_list *output_rp_gr PARAMS ((unsigned int));
885 static unw_rec_list *output_rp_br PARAMS ((unsigned int));
886 static unw_rec_list *output_rp_psprel PARAMS ((unsigned int));
887 static unw_rec_list *output_rp_sprel PARAMS ((unsigned int));
888 static unw_rec_list *output_pfs_when PARAMS ((void));
889 static unw_rec_list *output_pfs_gr PARAMS ((unsigned int));
890 static unw_rec_list *output_pfs_psprel PARAMS ((unsigned int));
891 static unw_rec_list *output_pfs_sprel PARAMS ((unsigned int));
892 static unw_rec_list *output_preds_when PARAMS ((void));
893 static unw_rec_list *output_preds_gr PARAMS ((unsigned int));
894 static unw_rec_list *output_preds_psprel PARAMS ((unsigned int));
895 static unw_rec_list *output_preds_sprel PARAMS ((unsigned int));
896 static unw_rec_list *output_fr_mem PARAMS ((unsigned int));
897 static unw_rec_list *output_frgr_mem PARAMS ((unsigned int, unsigned int));
898 static unw_rec_list *output_gr_gr PARAMS ((unsigned int, unsigned int));
899 static unw_rec_list *output_gr_mem PARAMS ((unsigned int));
900 static unw_rec_list *output_br_mem PARAMS ((unsigned int));
901 static unw_rec_list *output_br_gr PARAMS ((unsigned int, unsigned int));
902 static unw_rec_list *output_spill_base PARAMS ((unsigned int));
903 static unw_rec_list *output_unat_when PARAMS ((void));
904 static unw_rec_list *output_unat_gr PARAMS ((unsigned int));
905 static unw_rec_list *output_unat_psprel PARAMS ((unsigned int));
906 static unw_rec_list *output_unat_sprel PARAMS ((unsigned int));
907 static unw_rec_list *output_lc_when PARAMS ((void));
908 static unw_rec_list *output_lc_gr PARAMS ((unsigned int));
909 static unw_rec_list *output_lc_psprel PARAMS ((unsigned int));
910 static unw_rec_list *output_lc_sprel PARAMS ((unsigned int));
911 static unw_rec_list *output_fpsr_when PARAMS ((void));
912 static unw_rec_list *output_fpsr_gr PARAMS ((unsigned int));
913 static unw_rec_list *output_fpsr_psprel PARAMS ((unsigned int));
914 static unw_rec_list *output_fpsr_sprel PARAMS ((unsigned int));
915 static unw_rec_list *output_priunat_when_gr PARAMS ((void));
916 static unw_rec_list *output_priunat_when_mem PARAMS ((void));
917 static unw_rec_list *output_priunat_gr PARAMS ((unsigned int));
918 static unw_rec_list *output_priunat_psprel PARAMS ((unsigned int));
919 static unw_rec_list *output_priunat_sprel PARAMS ((unsigned int));
920 static unw_rec_list *output_bsp_when PARAMS ((void));
921 static unw_rec_list *output_bsp_gr PARAMS ((unsigned int));
922 static unw_rec_list *output_bsp_psprel PARAMS ((unsigned int));
923 static unw_rec_list *output_bsp_sprel PARAMS ((unsigned int));
924 static unw_rec_list *output_bspstore_when PARAMS ((void));
925 static unw_rec_list *output_bspstore_gr PARAMS ((unsigned int));
926 static unw_rec_list *output_bspstore_psprel PARAMS ((unsigned int));
927 static unw_rec_list *output_bspstore_sprel PARAMS ((unsigned int));
928 static unw_rec_list *output_rnat_when PARAMS ((void));
929 static unw_rec_list *output_rnat_gr PARAMS ((unsigned int));
930 static unw_rec_list *output_rnat_psprel PARAMS ((unsigned int));
931 static unw_rec_list *output_rnat_sprel PARAMS ((unsigned int));
932 static unw_rec_list *output_unwabi PARAMS ((unsigned long, unsigned long));
933 static unw_rec_list *output_epilogue PARAMS ((unsigned long));
934 static unw_rec_list *output_label_state PARAMS ((unsigned long));
935 static unw_rec_list *output_copy_state PARAMS ((unsigned long));
936 static unw_rec_list *output_spill_psprel PARAMS ((unsigned int, unsigned int, unsigned int));
937 static unw_rec_list *output_spill_sprel PARAMS ((unsigned int, unsigned int, unsigned int));
938 static unw_rec_list *output_spill_psprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
939 unsigned int));
940 static unw_rec_list *output_spill_sprel_p PARAMS ((unsigned int, unsigned int, unsigned int,
941 unsigned int));
942 static unw_rec_list *output_spill_reg PARAMS ((unsigned int, unsigned int, unsigned int,
943 unsigned int));
944 static unw_rec_list *output_spill_reg_p PARAMS ((unsigned int, unsigned int, unsigned int,
945 unsigned int, unsigned int));
946 static void process_one_record PARAMS ((unw_rec_list *, vbyte_func));
947 static void process_unw_records PARAMS ((unw_rec_list *, vbyte_func));
948 static int calc_record_size PARAMS ((unw_rec_list *));
949 static void set_imask PARAMS ((unw_rec_list *, unsigned long, unsigned long, unsigned int));
950 static unsigned long slot_index PARAMS ((unsigned long, fragS *,
951 unsigned long, fragS *,
952 int));
953 static unw_rec_list *optimize_unw_records PARAMS ((unw_rec_list *));
954 static void fixup_unw_records PARAMS ((unw_rec_list *, int));
955 static int convert_expr_to_ab_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
956 static int convert_expr_to_xy_reg PARAMS ((expressionS *, unsigned int *, unsigned int *));
957 static unsigned int get_saved_prologue_count PARAMS ((unsigned long));
958 static void save_prologue_count PARAMS ((unsigned long, unsigned int));
959 static void free_saved_prologue_counts PARAMS ((void));
960
961 /* Determine if application register REGNUM resides only in the integer
962 unit (as opposed to the memory unit). */
963 static int
964 ar_is_only_in_integer_unit (int reg)
965 {
966 reg -= REG_AR;
967 return reg >= 64 && reg <= 111;
968 }
969
970 /* Determine if application register REGNUM resides only in the memory
971 unit (as opposed to the integer unit). */
972 static int
973 ar_is_only_in_memory_unit (int reg)
974 {
975 reg -= REG_AR;
976 return reg >= 0 && reg <= 47;
977 }
978
979 /* Switch to section NAME and create section if necessary. It's
980 rather ugly that we have to manipulate input_line_pointer but I
981 don't see any other way to accomplish the same thing without
982 changing obj-elf.c (which may be the Right Thing, in the end). */
983 static void
984 set_section (name)
985 char *name;
986 {
987 char *saved_input_line_pointer;
988
989 saved_input_line_pointer = input_line_pointer;
990 input_line_pointer = name;
991 obj_elf_section (0);
992 input_line_pointer = saved_input_line_pointer;
993 }
994
995 /* Map 's' to SHF_IA_64_SHORT. */
996
997 int
998 ia64_elf_section_letter (letter, ptr_msg)
999 int letter;
1000 char **ptr_msg;
1001 {
1002 if (letter == 's')
1003 return SHF_IA_64_SHORT;
1004 else if (letter == 'o')
1005 return SHF_LINK_ORDER;
1006
1007 *ptr_msg = _("Bad .section directive: want a,o,s,w,x,M,S,G,T in string");
1008 return -1;
1009 }
1010
1011 /* Map SHF_IA_64_SHORT to SEC_SMALL_DATA. */
1012
1013 flagword
1014 ia64_elf_section_flags (flags, attr, type)
1015 flagword flags;
1016 int attr, type ATTRIBUTE_UNUSED;
1017 {
1018 if (attr & SHF_IA_64_SHORT)
1019 flags |= SEC_SMALL_DATA;
1020 return flags;
1021 }
1022
1023 int
1024 ia64_elf_section_type (str, len)
1025 const char *str;
1026 size_t len;
1027 {
1028 #define STREQ(s) ((len == sizeof (s) - 1) && (strncmp (str, s, sizeof (s) - 1) == 0))
1029
1030 if (STREQ (ELF_STRING_ia64_unwind_info))
1031 return SHT_PROGBITS;
1032
1033 if (STREQ (ELF_STRING_ia64_unwind_info_once))
1034 return SHT_PROGBITS;
1035
1036 if (STREQ (ELF_STRING_ia64_unwind))
1037 return SHT_IA_64_UNWIND;
1038
1039 if (STREQ (ELF_STRING_ia64_unwind_once))
1040 return SHT_IA_64_UNWIND;
1041
1042 if (STREQ ("unwind"))
1043 return SHT_IA_64_UNWIND;
1044
1045 return -1;
1046 #undef STREQ
1047 }
1048
1049 static unsigned int
1050 set_regstack (ins, locs, outs, rots)
1051 unsigned int ins, locs, outs, rots;
1052 {
1053 /* Size of frame. */
1054 unsigned int sof;
1055
1056 sof = ins + locs + outs;
1057 if (sof > 96)
1058 {
1059 as_bad ("Size of frame exceeds maximum of 96 registers");
1060 return 0;
1061 }
1062 if (rots > sof)
1063 {
1064 as_warn ("Size of rotating registers exceeds frame size");
1065 return 0;
1066 }
1067 md.in.base = REG_GR + 32;
1068 md.loc.base = md.in.base + ins;
1069 md.out.base = md.loc.base + locs;
1070
1071 md.in.num_regs = ins;
1072 md.loc.num_regs = locs;
1073 md.out.num_regs = outs;
1074 md.rot.num_regs = rots;
1075 return sof;
1076 }
1077
1078 void
1079 ia64_flush_insns ()
1080 {
1081 struct label_fix *lfix;
1082 segT saved_seg;
1083 subsegT saved_subseg;
1084 unw_rec_list *ptr;
1085
1086 if (!md.last_text_seg)
1087 return;
1088
1089 saved_seg = now_seg;
1090 saved_subseg = now_subseg;
1091
1092 subseg_set (md.last_text_seg, 0);
1093
1094 while (md.num_slots_in_use > 0)
1095 emit_one_bundle (); /* force out queued instructions */
1096
1097 /* In case there are labels following the last instruction, resolve
1098 those now: */
1099 for (lfix = CURR_SLOT.label_fixups; lfix; lfix = lfix->next)
1100 {
1101 S_SET_VALUE (lfix->sym, frag_now_fix ());
1102 symbol_set_frag (lfix->sym, frag_now);
1103 }
1104 CURR_SLOT.label_fixups = 0;
1105 for (lfix = CURR_SLOT.tag_fixups; lfix; lfix = lfix->next)
1106 {
1107 S_SET_VALUE (lfix->sym, frag_now_fix ());
1108 symbol_set_frag (lfix->sym, frag_now);
1109 }
1110 CURR_SLOT.tag_fixups = 0;
1111
1112 /* In case there are unwind directives following the last instruction,
1113 resolve those now. We only handle prologue, body, and endp directives
1114 here. Give an error for others. */
1115 for (ptr = unwind.current_entry; ptr; ptr = ptr->next)
1116 {
1117 switch (ptr->r.type)
1118 {
1119 case prologue:
1120 case prologue_gr:
1121 case body:
1122 case endp:
1123 ptr->slot_number = (unsigned long) frag_more (0);
1124 ptr->slot_frag = frag_now;
1125 break;
1126
1127 /* Allow any record which doesn't have a "t" field (i.e.,
1128 doesn't relate to a particular instruction). */
1129 case unwabi:
1130 case br_gr:
1131 case copy_state:
1132 case fr_mem:
1133 case frgr_mem:
1134 case gr_gr:
1135 case gr_mem:
1136 case label_state:
1137 case rp_br:
1138 case spill_base:
1139 case spill_mask:
1140 /* nothing */
1141 break;
1142
1143 default:
1144 as_bad (_("Unwind directive not followed by an instruction."));
1145 break;
1146 }
1147 }
1148 unwind.current_entry = NULL;
1149
1150 subseg_set (saved_seg, saved_subseg);
1151
1152 if (md.qp.X_op == O_register)
1153 as_bad ("qualifying predicate not followed by instruction");
1154 }
1155
1156 static void
1157 ia64_do_align (int nbytes)
1158 {
1159 char *saved_input_line_pointer = input_line_pointer;
1160
1161 input_line_pointer = "";
1162 s_align_bytes (nbytes);
1163 input_line_pointer = saved_input_line_pointer;
1164 }
1165
1166 void
1167 ia64_cons_align (nbytes)
1168 int nbytes;
1169 {
1170 if (md.auto_align)
1171 {
1172 char *saved_input_line_pointer = input_line_pointer;
1173 input_line_pointer = "";
1174 s_align_bytes (nbytes);
1175 input_line_pointer = saved_input_line_pointer;
1176 }
1177 }
1178
1179 /* Output COUNT bytes to a memory location. */
1180 static char *vbyte_mem_ptr = NULL;
1181
1182 void
1183 output_vbyte_mem (count, ptr, comment)
1184 int count;
1185 char *ptr;
1186 char *comment ATTRIBUTE_UNUSED;
1187 {
1188 int x;
1189 if (vbyte_mem_ptr == NULL)
1190 abort ();
1191
1192 if (count == 0)
1193 return;
1194 for (x = 0; x < count; x++)
1195 *(vbyte_mem_ptr++) = ptr[x];
1196 }
1197
1198 /* Count the number of bytes required for records. */
1199 static int vbyte_count = 0;
1200 void
1201 count_output (count, ptr, comment)
1202 int count;
1203 char *ptr ATTRIBUTE_UNUSED;
1204 char *comment ATTRIBUTE_UNUSED;
1205 {
1206 vbyte_count += count;
1207 }
1208
1209 static void
1210 output_R1_format (f, rtype, rlen)
1211 vbyte_func f;
1212 unw_record_type rtype;
1213 int rlen;
1214 {
1215 int r = 0;
1216 char byte;
1217 if (rlen > 0x1f)
1218 {
1219 output_R3_format (f, rtype, rlen);
1220 return;
1221 }
1222
1223 if (rtype == body)
1224 r = 1;
1225 else if (rtype != prologue)
1226 as_bad ("record type is not valid");
1227
1228 byte = UNW_R1 | (r << 5) | (rlen & 0x1f);
1229 (*f) (1, &byte, NULL);
1230 }
1231
1232 static void
1233 output_R2_format (f, mask, grsave, rlen)
1234 vbyte_func f;
1235 int mask, grsave;
1236 unsigned long rlen;
1237 {
1238 char bytes[20];
1239 int count = 2;
1240 mask = (mask & 0x0f);
1241 grsave = (grsave & 0x7f);
1242
1243 bytes[0] = (UNW_R2 | (mask >> 1));
1244 bytes[1] = (((mask & 0x01) << 7) | grsave);
1245 count += output_leb128 (bytes + 2, rlen, 0);
1246 (*f) (count, bytes, NULL);
1247 }
1248
1249 static void
1250 output_R3_format (f, rtype, rlen)
1251 vbyte_func f;
1252 unw_record_type rtype;
1253 unsigned long rlen;
1254 {
1255 int r = 0, count;
1256 char bytes[20];
1257 if (rlen <= 0x1f)
1258 {
1259 output_R1_format (f, rtype, rlen);
1260 return;
1261 }
1262
1263 if (rtype == body)
1264 r = 1;
1265 else if (rtype != prologue)
1266 as_bad ("record type is not valid");
1267 bytes[0] = (UNW_R3 | r);
1268 count = output_leb128 (bytes + 1, rlen, 0);
1269 (*f) (count + 1, bytes, NULL);
1270 }
1271
1272 static void
1273 output_P1_format (f, brmask)
1274 vbyte_func f;
1275 int brmask;
1276 {
1277 char byte;
1278 byte = UNW_P1 | (brmask & 0x1f);
1279 (*f) (1, &byte, NULL);
1280 }
1281
1282 static void
1283 output_P2_format (f, brmask, gr)
1284 vbyte_func f;
1285 int brmask;
1286 int gr;
1287 {
1288 char bytes[2];
1289 brmask = (brmask & 0x1f);
1290 bytes[0] = UNW_P2 | (brmask >> 1);
1291 bytes[1] = (((brmask & 1) << 7) | gr);
1292 (*f) (2, bytes, NULL);
1293 }
1294
1295 static void
1296 output_P3_format (f, rtype, reg)
1297 vbyte_func f;
1298 unw_record_type rtype;
1299 int reg;
1300 {
1301 char bytes[2];
1302 int r = 0;
1303 reg = (reg & 0x7f);
1304 switch (rtype)
1305 {
1306 case psp_gr:
1307 r = 0;
1308 break;
1309 case rp_gr:
1310 r = 1;
1311 break;
1312 case pfs_gr:
1313 r = 2;
1314 break;
1315 case preds_gr:
1316 r = 3;
1317 break;
1318 case unat_gr:
1319 r = 4;
1320 break;
1321 case lc_gr:
1322 r = 5;
1323 break;
1324 case rp_br:
1325 r = 6;
1326 break;
1327 case rnat_gr:
1328 r = 7;
1329 break;
1330 case bsp_gr:
1331 r = 8;
1332 break;
1333 case bspstore_gr:
1334 r = 9;
1335 break;
1336 case fpsr_gr:
1337 r = 10;
1338 break;
1339 case priunat_gr:
1340 r = 11;
1341 break;
1342 default:
1343 as_bad ("Invalid record type for P3 format.");
1344 }
1345 bytes[0] = (UNW_P3 | (r >> 1));
1346 bytes[1] = (((r & 1) << 7) | reg);
1347 (*f) (2, bytes, NULL);
1348 }
1349
1350 static void
1351 output_P4_format (f, imask, imask_size)
1352 vbyte_func f;
1353 unsigned char *imask;
1354 unsigned long imask_size;
1355 {
1356 imask[0] = UNW_P4;
1357 (*f) (imask_size, (char *) imask, NULL);
1358 }
1359
1360 static void
1361 output_P5_format (f, grmask, frmask)
1362 vbyte_func f;
1363 int grmask;
1364 unsigned long frmask;
1365 {
1366 char bytes[4];
1367 grmask = (grmask & 0x0f);
1368
1369 bytes[0] = UNW_P5;
1370 bytes[1] = ((grmask << 4) | ((frmask & 0x000f0000) >> 16));
1371 bytes[2] = ((frmask & 0x0000ff00) >> 8);
1372 bytes[3] = (frmask & 0x000000ff);
1373 (*f) (4, bytes, NULL);
1374 }
1375
1376 static void
1377 output_P6_format (f, rtype, rmask)
1378 vbyte_func f;
1379 unw_record_type rtype;
1380 int rmask;
1381 {
1382 char byte;
1383 int r = 0;
1384
1385 if (rtype == gr_mem)
1386 r = 1;
1387 else if (rtype != fr_mem)
1388 as_bad ("Invalid record type for format P6");
1389 byte = (UNW_P6 | (r << 4) | (rmask & 0x0f));
1390 (*f) (1, &byte, NULL);
1391 }
1392
1393 static void
1394 output_P7_format (f, rtype, w1, w2)
1395 vbyte_func f;
1396 unw_record_type rtype;
1397 unsigned long w1;
1398 unsigned long w2;
1399 {
1400 char bytes[20];
1401 int count = 1;
1402 int r = 0;
1403 count += output_leb128 (bytes + 1, w1, 0);
1404 switch (rtype)
1405 {
1406 case mem_stack_f:
1407 r = 0;
1408 count += output_leb128 (bytes + count, w2 >> 4, 0);
1409 break;
1410 case mem_stack_v:
1411 r = 1;
1412 break;
1413 case spill_base:
1414 r = 2;
1415 break;
1416 case psp_sprel:
1417 r = 3;
1418 break;
1419 case rp_when:
1420 r = 4;
1421 break;
1422 case rp_psprel:
1423 r = 5;
1424 break;
1425 case pfs_when:
1426 r = 6;
1427 break;
1428 case pfs_psprel:
1429 r = 7;
1430 break;
1431 case preds_when:
1432 r = 8;
1433 break;
1434 case preds_psprel:
1435 r = 9;
1436 break;
1437 case lc_when:
1438 r = 10;
1439 break;
1440 case lc_psprel:
1441 r = 11;
1442 break;
1443 case unat_when:
1444 r = 12;
1445 break;
1446 case unat_psprel:
1447 r = 13;
1448 break;
1449 case fpsr_when:
1450 r = 14;
1451 break;
1452 case fpsr_psprel:
1453 r = 15;
1454 break;
1455 default:
1456 break;
1457 }
1458 bytes[0] = (UNW_P7 | r);
1459 (*f) (count, bytes, NULL);
1460 }
1461
1462 static void
1463 output_P8_format (f, rtype, t)
1464 vbyte_func f;
1465 unw_record_type rtype;
1466 unsigned long t;
1467 {
1468 char bytes[20];
1469 int r = 0;
1470 int count = 2;
1471 bytes[0] = UNW_P8;
1472 switch (rtype)
1473 {
1474 case rp_sprel:
1475 r = 1;
1476 break;
1477 case pfs_sprel:
1478 r = 2;
1479 break;
1480 case preds_sprel:
1481 r = 3;
1482 break;
1483 case lc_sprel:
1484 r = 4;
1485 break;
1486 case unat_sprel:
1487 r = 5;
1488 break;
1489 case fpsr_sprel:
1490 r = 6;
1491 break;
1492 case bsp_when:
1493 r = 7;
1494 break;
1495 case bsp_psprel:
1496 r = 8;
1497 break;
1498 case bsp_sprel:
1499 r = 9;
1500 break;
1501 case bspstore_when:
1502 r = 10;
1503 break;
1504 case bspstore_psprel:
1505 r = 11;
1506 break;
1507 case bspstore_sprel:
1508 r = 12;
1509 break;
1510 case rnat_when:
1511 r = 13;
1512 break;
1513 case rnat_psprel:
1514 r = 14;
1515 break;
1516 case rnat_sprel:
1517 r = 15;
1518 break;
1519 case priunat_when_gr:
1520 r = 16;
1521 break;
1522 case priunat_psprel:
1523 r = 17;
1524 break;
1525 case priunat_sprel:
1526 r = 18;
1527 break;
1528 case priunat_when_mem:
1529 r = 19;
1530 break;
1531 default:
1532 break;
1533 }
1534 bytes[1] = r;
1535 count += output_leb128 (bytes + 2, t, 0);
1536 (*f) (count, bytes, NULL);
1537 }
1538
1539 static void
1540 output_P9_format (f, grmask, gr)
1541 vbyte_func f;
1542 int grmask;
1543 int gr;
1544 {
1545 char bytes[3];
1546 bytes[0] = UNW_P9;
1547 bytes[1] = (grmask & 0x0f);
1548 bytes[2] = (gr & 0x7f);
1549 (*f) (3, bytes, NULL);
1550 }
1551
1552 static void
1553 output_P10_format (f, abi, context)
1554 vbyte_func f;
1555 int abi;
1556 int context;
1557 {
1558 char bytes[3];
1559 bytes[0] = UNW_P10;
1560 bytes[1] = (abi & 0xff);
1561 bytes[2] = (context & 0xff);
1562 (*f) (3, bytes, NULL);
1563 }
1564
1565 static void
1566 output_B1_format (f, rtype, label)
1567 vbyte_func f;
1568 unw_record_type rtype;
1569 unsigned long label;
1570 {
1571 char byte;
1572 int r = 0;
1573 if (label > 0x1f)
1574 {
1575 output_B4_format (f, rtype, label);
1576 return;
1577 }
1578 if (rtype == copy_state)
1579 r = 1;
1580 else if (rtype != label_state)
1581 as_bad ("Invalid record type for format B1");
1582
1583 byte = (UNW_B1 | (r << 5) | (label & 0x1f));
1584 (*f) (1, &byte, NULL);
1585 }
1586
1587 static void
1588 output_B2_format (f, ecount, t)
1589 vbyte_func f;
1590 unsigned long ecount;
1591 unsigned long t;
1592 {
1593 char bytes[20];
1594 int count = 1;
1595 if (ecount > 0x1f)
1596 {
1597 output_B3_format (f, ecount, t);
1598 return;
1599 }
1600 bytes[0] = (UNW_B2 | (ecount & 0x1f));
1601 count += output_leb128 (bytes + 1, t, 0);
1602 (*f) (count, bytes, NULL);
1603 }
1604
1605 static void
1606 output_B3_format (f, ecount, t)
1607 vbyte_func f;
1608 unsigned long ecount;
1609 unsigned long t;
1610 {
1611 char bytes[20];
1612 int count = 1;
1613 if (ecount <= 0x1f)
1614 {
1615 output_B2_format (f, ecount, t);
1616 return;
1617 }
1618 bytes[0] = UNW_B3;
1619 count += output_leb128 (bytes + 1, t, 0);
1620 count += output_leb128 (bytes + count, ecount, 0);
1621 (*f) (count, bytes, NULL);
1622 }
1623
1624 static void
1625 output_B4_format (f, rtype, label)
1626 vbyte_func f;
1627 unw_record_type rtype;
1628 unsigned long label;
1629 {
1630 char bytes[20];
1631 int r = 0;
1632 int count = 1;
1633 if (label <= 0x1f)
1634 {
1635 output_B1_format (f, rtype, label);
1636 return;
1637 }
1638
1639 if (rtype == copy_state)
1640 r = 1;
1641 else if (rtype != label_state)
1642 as_bad ("Invalid record type for format B1");
1643
1644 bytes[0] = (UNW_B4 | (r << 3));
1645 count += output_leb128 (bytes + 1, label, 0);
1646 (*f) (count, bytes, NULL);
1647 }
1648
1649 static char
1650 format_ab_reg (ab, reg)
1651 int ab;
1652 int reg;
1653 {
1654 int ret;
1655 ab = (ab & 3);
1656 reg = (reg & 0x1f);
1657 ret = (ab << 5) | reg;
1658 return ret;
1659 }
1660
1661 static void
1662 output_X1_format (f, rtype, ab, reg, t, w1)
1663 vbyte_func f;
1664 unw_record_type rtype;
1665 int ab, reg;
1666 unsigned long t;
1667 unsigned long w1;
1668 {
1669 char bytes[20];
1670 int r = 0;
1671 int count = 2;
1672 bytes[0] = UNW_X1;
1673
1674 if (rtype == spill_sprel)
1675 r = 1;
1676 else if (rtype != spill_psprel)
1677 as_bad ("Invalid record type for format X1");
1678 bytes[1] = ((r << 7) | format_ab_reg (ab, reg));
1679 count += output_leb128 (bytes + 2, t, 0);
1680 count += output_leb128 (bytes + count, w1, 0);
1681 (*f) (count, bytes, NULL);
1682 }
1683
1684 static void
1685 output_X2_format (f, ab, reg, x, y, treg, t)
1686 vbyte_func f;
1687 int ab, reg;
1688 int x, y, treg;
1689 unsigned long t;
1690 {
1691 char bytes[20];
1692 int count = 3;
1693 bytes[0] = UNW_X2;
1694 bytes[1] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1695 bytes[2] = (((y & 1) << 7) | (treg & 0x7f));
1696 count += output_leb128 (bytes + 3, t, 0);
1697 (*f) (count, bytes, NULL);
1698 }
1699
1700 static void
1701 output_X3_format (f, rtype, qp, ab, reg, t, w1)
1702 vbyte_func f;
1703 unw_record_type rtype;
1704 int qp;
1705 int ab, reg;
1706 unsigned long t;
1707 unsigned long w1;
1708 {
1709 char bytes[20];
1710 int r = 0;
1711 int count = 3;
1712 bytes[0] = UNW_X3;
1713
1714 if (rtype == spill_sprel_p)
1715 r = 1;
1716 else if (rtype != spill_psprel_p)
1717 as_bad ("Invalid record type for format X3");
1718 bytes[1] = ((r << 7) | (qp & 0x3f));
1719 bytes[2] = format_ab_reg (ab, reg);
1720 count += output_leb128 (bytes + 3, t, 0);
1721 count += output_leb128 (bytes + count, w1, 0);
1722 (*f) (count, bytes, NULL);
1723 }
1724
1725 static void
1726 output_X4_format (f, qp, ab, reg, x, y, treg, t)
1727 vbyte_func f;
1728 int qp;
1729 int ab, reg;
1730 int x, y, treg;
1731 unsigned long t;
1732 {
1733 char bytes[20];
1734 int count = 4;
1735 bytes[0] = UNW_X4;
1736 bytes[1] = (qp & 0x3f);
1737 bytes[2] = (((x & 1) << 7) | format_ab_reg (ab, reg));
1738 bytes[3] = (((y & 1) << 7) | (treg & 0x7f));
1739 count += output_leb128 (bytes + 4, t, 0);
1740 (*f) (count, bytes, NULL);
1741 }
1742
1743 /* This function allocates a record list structure, and initializes fields. */
1744
1745 static unw_rec_list *
1746 alloc_record (unw_record_type t)
1747 {
1748 unw_rec_list *ptr;
1749 ptr = xmalloc (sizeof (*ptr));
1750 ptr->next = NULL;
1751 ptr->slot_number = SLOT_NUM_NOT_SET;
1752 ptr->r.type = t;
1753 ptr->next_slot_number = 0;
1754 ptr->next_slot_frag = 0;
1755 return ptr;
1756 }
1757
1758 /* Dummy unwind record used for calculating the length of the last prologue or
1759 body region. */
1760
1761 static unw_rec_list *
1762 output_endp ()
1763 {
1764 unw_rec_list *ptr = alloc_record (endp);
1765 return ptr;
1766 }
1767
1768 static unw_rec_list *
1769 output_prologue ()
1770 {
1771 unw_rec_list *ptr = alloc_record (prologue);
1772 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1773 return ptr;
1774 }
1775
1776 static unw_rec_list *
1777 output_prologue_gr (saved_mask, reg)
1778 unsigned int saved_mask;
1779 unsigned int reg;
1780 {
1781 unw_rec_list *ptr = alloc_record (prologue_gr);
1782 memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask));
1783 ptr->r.record.r.grmask = saved_mask;
1784 ptr->r.record.r.grsave = reg;
1785 return ptr;
1786 }
1787
1788 static unw_rec_list *
1789 output_body ()
1790 {
1791 unw_rec_list *ptr = alloc_record (body);
1792 return ptr;
1793 }
1794
1795 static unw_rec_list *
1796 output_mem_stack_f (size)
1797 unsigned int size;
1798 {
1799 unw_rec_list *ptr = alloc_record (mem_stack_f);
1800 ptr->r.record.p.size = size;
1801 return ptr;
1802 }
1803
1804 static unw_rec_list *
1805 output_mem_stack_v ()
1806 {
1807 unw_rec_list *ptr = alloc_record (mem_stack_v);
1808 return ptr;
1809 }
1810
1811 static unw_rec_list *
1812 output_psp_gr (gr)
1813 unsigned int gr;
1814 {
1815 unw_rec_list *ptr = alloc_record (psp_gr);
1816 ptr->r.record.p.gr = gr;
1817 return ptr;
1818 }
1819
1820 static unw_rec_list *
1821 output_psp_sprel (offset)
1822 unsigned int offset;
1823 {
1824 unw_rec_list *ptr = alloc_record (psp_sprel);
1825 ptr->r.record.p.spoff = offset / 4;
1826 return ptr;
1827 }
1828
1829 static unw_rec_list *
1830 output_rp_when ()
1831 {
1832 unw_rec_list *ptr = alloc_record (rp_when);
1833 return ptr;
1834 }
1835
1836 static unw_rec_list *
1837 output_rp_gr (gr)
1838 unsigned int gr;
1839 {
1840 unw_rec_list *ptr = alloc_record (rp_gr);
1841 ptr->r.record.p.gr = gr;
1842 return ptr;
1843 }
1844
1845 static unw_rec_list *
1846 output_rp_br (br)
1847 unsigned int br;
1848 {
1849 unw_rec_list *ptr = alloc_record (rp_br);
1850 ptr->r.record.p.br = br;
1851 return ptr;
1852 }
1853
1854 static unw_rec_list *
1855 output_rp_psprel (offset)
1856 unsigned int offset;
1857 {
1858 unw_rec_list *ptr = alloc_record (rp_psprel);
1859 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
1860 return ptr;
1861 }
1862
1863 static unw_rec_list *
1864 output_rp_sprel (offset)
1865 unsigned int offset;
1866 {
1867 unw_rec_list *ptr = alloc_record (rp_sprel);
1868 ptr->r.record.p.spoff = offset / 4;
1869 return ptr;
1870 }
1871
1872 static unw_rec_list *
1873 output_pfs_when ()
1874 {
1875 unw_rec_list *ptr = alloc_record (pfs_when);
1876 return ptr;
1877 }
1878
1879 static unw_rec_list *
1880 output_pfs_gr (gr)
1881 unsigned int gr;
1882 {
1883 unw_rec_list *ptr = alloc_record (pfs_gr);
1884 ptr->r.record.p.gr = gr;
1885 return ptr;
1886 }
1887
1888 static unw_rec_list *
1889 output_pfs_psprel (offset)
1890 unsigned int offset;
1891 {
1892 unw_rec_list *ptr = alloc_record (pfs_psprel);
1893 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
1894 return ptr;
1895 }
1896
1897 static unw_rec_list *
1898 output_pfs_sprel (offset)
1899 unsigned int offset;
1900 {
1901 unw_rec_list *ptr = alloc_record (pfs_sprel);
1902 ptr->r.record.p.spoff = offset / 4;
1903 return ptr;
1904 }
1905
1906 static unw_rec_list *
1907 output_preds_when ()
1908 {
1909 unw_rec_list *ptr = alloc_record (preds_when);
1910 return ptr;
1911 }
1912
1913 static unw_rec_list *
1914 output_preds_gr (gr)
1915 unsigned int gr;
1916 {
1917 unw_rec_list *ptr = alloc_record (preds_gr);
1918 ptr->r.record.p.gr = gr;
1919 return ptr;
1920 }
1921
1922 static unw_rec_list *
1923 output_preds_psprel (offset)
1924 unsigned int offset;
1925 {
1926 unw_rec_list *ptr = alloc_record (preds_psprel);
1927 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
1928 return ptr;
1929 }
1930
1931 static unw_rec_list *
1932 output_preds_sprel (offset)
1933 unsigned int offset;
1934 {
1935 unw_rec_list *ptr = alloc_record (preds_sprel);
1936 ptr->r.record.p.spoff = offset / 4;
1937 return ptr;
1938 }
1939
1940 static unw_rec_list *
1941 output_fr_mem (mask)
1942 unsigned int mask;
1943 {
1944 unw_rec_list *ptr = alloc_record (fr_mem);
1945 ptr->r.record.p.rmask = mask;
1946 return ptr;
1947 }
1948
1949 static unw_rec_list *
1950 output_frgr_mem (gr_mask, fr_mask)
1951 unsigned int gr_mask;
1952 unsigned int fr_mask;
1953 {
1954 unw_rec_list *ptr = alloc_record (frgr_mem);
1955 ptr->r.record.p.grmask = gr_mask;
1956 ptr->r.record.p.frmask = fr_mask;
1957 return ptr;
1958 }
1959
1960 static unw_rec_list *
1961 output_gr_gr (mask, reg)
1962 unsigned int mask;
1963 unsigned int reg;
1964 {
1965 unw_rec_list *ptr = alloc_record (gr_gr);
1966 ptr->r.record.p.grmask = mask;
1967 ptr->r.record.p.gr = reg;
1968 return ptr;
1969 }
1970
1971 static unw_rec_list *
1972 output_gr_mem (mask)
1973 unsigned int mask;
1974 {
1975 unw_rec_list *ptr = alloc_record (gr_mem);
1976 ptr->r.record.p.rmask = mask;
1977 return ptr;
1978 }
1979
1980 static unw_rec_list *
1981 output_br_mem (unsigned int mask)
1982 {
1983 unw_rec_list *ptr = alloc_record (br_mem);
1984 ptr->r.record.p.brmask = mask;
1985 return ptr;
1986 }
1987
1988 static unw_rec_list *
1989 output_br_gr (save_mask, reg)
1990 unsigned int save_mask;
1991 unsigned int reg;
1992 {
1993 unw_rec_list *ptr = alloc_record (br_gr);
1994 ptr->r.record.p.brmask = save_mask;
1995 ptr->r.record.p.gr = reg;
1996 return ptr;
1997 }
1998
1999 static unw_rec_list *
2000 output_spill_base (offset)
2001 unsigned int offset;
2002 {
2003 unw_rec_list *ptr = alloc_record (spill_base);
2004 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2005 return ptr;
2006 }
2007
2008 static unw_rec_list *
2009 output_unat_when ()
2010 {
2011 unw_rec_list *ptr = alloc_record (unat_when);
2012 return ptr;
2013 }
2014
2015 static unw_rec_list *
2016 output_unat_gr (gr)
2017 unsigned int gr;
2018 {
2019 unw_rec_list *ptr = alloc_record (unat_gr);
2020 ptr->r.record.p.gr = gr;
2021 return ptr;
2022 }
2023
2024 static unw_rec_list *
2025 output_unat_psprel (offset)
2026 unsigned int offset;
2027 {
2028 unw_rec_list *ptr = alloc_record (unat_psprel);
2029 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2030 return ptr;
2031 }
2032
2033 static unw_rec_list *
2034 output_unat_sprel (offset)
2035 unsigned int offset;
2036 {
2037 unw_rec_list *ptr = alloc_record (unat_sprel);
2038 ptr->r.record.p.spoff = offset / 4;
2039 return ptr;
2040 }
2041
2042 static unw_rec_list *
2043 output_lc_when ()
2044 {
2045 unw_rec_list *ptr = alloc_record (lc_when);
2046 return ptr;
2047 }
2048
2049 static unw_rec_list *
2050 output_lc_gr (gr)
2051 unsigned int gr;
2052 {
2053 unw_rec_list *ptr = alloc_record (lc_gr);
2054 ptr->r.record.p.gr = gr;
2055 return ptr;
2056 }
2057
2058 static unw_rec_list *
2059 output_lc_psprel (offset)
2060 unsigned int offset;
2061 {
2062 unw_rec_list *ptr = alloc_record (lc_psprel);
2063 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2064 return ptr;
2065 }
2066
2067 static unw_rec_list *
2068 output_lc_sprel (offset)
2069 unsigned int offset;
2070 {
2071 unw_rec_list *ptr = alloc_record (lc_sprel);
2072 ptr->r.record.p.spoff = offset / 4;
2073 return ptr;
2074 }
2075
2076 static unw_rec_list *
2077 output_fpsr_when ()
2078 {
2079 unw_rec_list *ptr = alloc_record (fpsr_when);
2080 return ptr;
2081 }
2082
2083 static unw_rec_list *
2084 output_fpsr_gr (gr)
2085 unsigned int gr;
2086 {
2087 unw_rec_list *ptr = alloc_record (fpsr_gr);
2088 ptr->r.record.p.gr = gr;
2089 return ptr;
2090 }
2091
2092 static unw_rec_list *
2093 output_fpsr_psprel (offset)
2094 unsigned int offset;
2095 {
2096 unw_rec_list *ptr = alloc_record (fpsr_psprel);
2097 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2098 return ptr;
2099 }
2100
2101 static unw_rec_list *
2102 output_fpsr_sprel (offset)
2103 unsigned int offset;
2104 {
2105 unw_rec_list *ptr = alloc_record (fpsr_sprel);
2106 ptr->r.record.p.spoff = offset / 4;
2107 return ptr;
2108 }
2109
2110 static unw_rec_list *
2111 output_priunat_when_gr ()
2112 {
2113 unw_rec_list *ptr = alloc_record (priunat_when_gr);
2114 return ptr;
2115 }
2116
2117 static unw_rec_list *
2118 output_priunat_when_mem ()
2119 {
2120 unw_rec_list *ptr = alloc_record (priunat_when_mem);
2121 return ptr;
2122 }
2123
2124 static unw_rec_list *
2125 output_priunat_gr (gr)
2126 unsigned int gr;
2127 {
2128 unw_rec_list *ptr = alloc_record (priunat_gr);
2129 ptr->r.record.p.gr = gr;
2130 return ptr;
2131 }
2132
2133 static unw_rec_list *
2134 output_priunat_psprel (offset)
2135 unsigned int offset;
2136 {
2137 unw_rec_list *ptr = alloc_record (priunat_psprel);
2138 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2139 return ptr;
2140 }
2141
2142 static unw_rec_list *
2143 output_priunat_sprel (offset)
2144 unsigned int offset;
2145 {
2146 unw_rec_list *ptr = alloc_record (priunat_sprel);
2147 ptr->r.record.p.spoff = offset / 4;
2148 return ptr;
2149 }
2150
2151 static unw_rec_list *
2152 output_bsp_when ()
2153 {
2154 unw_rec_list *ptr = alloc_record (bsp_when);
2155 return ptr;
2156 }
2157
2158 static unw_rec_list *
2159 output_bsp_gr (gr)
2160 unsigned int gr;
2161 {
2162 unw_rec_list *ptr = alloc_record (bsp_gr);
2163 ptr->r.record.p.gr = gr;
2164 return ptr;
2165 }
2166
2167 static unw_rec_list *
2168 output_bsp_psprel (offset)
2169 unsigned int offset;
2170 {
2171 unw_rec_list *ptr = alloc_record (bsp_psprel);
2172 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2173 return ptr;
2174 }
2175
2176 static unw_rec_list *
2177 output_bsp_sprel (offset)
2178 unsigned int offset;
2179 {
2180 unw_rec_list *ptr = alloc_record (bsp_sprel);
2181 ptr->r.record.p.spoff = offset / 4;
2182 return ptr;
2183 }
2184
2185 static unw_rec_list *
2186 output_bspstore_when ()
2187 {
2188 unw_rec_list *ptr = alloc_record (bspstore_when);
2189 return ptr;
2190 }
2191
2192 static unw_rec_list *
2193 output_bspstore_gr (gr)
2194 unsigned int gr;
2195 {
2196 unw_rec_list *ptr = alloc_record (bspstore_gr);
2197 ptr->r.record.p.gr = gr;
2198 return ptr;
2199 }
2200
2201 static unw_rec_list *
2202 output_bspstore_psprel (offset)
2203 unsigned int offset;
2204 {
2205 unw_rec_list *ptr = alloc_record (bspstore_psprel);
2206 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2207 return ptr;
2208 }
2209
2210 static unw_rec_list *
2211 output_bspstore_sprel (offset)
2212 unsigned int offset;
2213 {
2214 unw_rec_list *ptr = alloc_record (bspstore_sprel);
2215 ptr->r.record.p.spoff = offset / 4;
2216 return ptr;
2217 }
2218
2219 static unw_rec_list *
2220 output_rnat_when ()
2221 {
2222 unw_rec_list *ptr = alloc_record (rnat_when);
2223 return ptr;
2224 }
2225
2226 static unw_rec_list *
2227 output_rnat_gr (gr)
2228 unsigned int gr;
2229 {
2230 unw_rec_list *ptr = alloc_record (rnat_gr);
2231 ptr->r.record.p.gr = gr;
2232 return ptr;
2233 }
2234
2235 static unw_rec_list *
2236 output_rnat_psprel (offset)
2237 unsigned int offset;
2238 {
2239 unw_rec_list *ptr = alloc_record (rnat_psprel);
2240 ptr->r.record.p.pspoff = ENCODED_PSP_OFFSET (offset);
2241 return ptr;
2242 }
2243
2244 static unw_rec_list *
2245 output_rnat_sprel (offset)
2246 unsigned int offset;
2247 {
2248 unw_rec_list *ptr = alloc_record (rnat_sprel);
2249 ptr->r.record.p.spoff = offset / 4;
2250 return ptr;
2251 }
2252
2253 static unw_rec_list *
2254 output_unwabi (abi, context)
2255 unsigned long abi;
2256 unsigned long context;
2257 {
2258 unw_rec_list *ptr = alloc_record (unwabi);
2259 ptr->r.record.p.abi = abi;
2260 ptr->r.record.p.context = context;
2261 return ptr;
2262 }
2263
2264 static unw_rec_list *
2265 output_epilogue (unsigned long ecount)
2266 {
2267 unw_rec_list *ptr = alloc_record (epilogue);
2268 ptr->r.record.b.ecount = ecount;
2269 return ptr;
2270 }
2271
2272 static unw_rec_list *
2273 output_label_state (unsigned long label)
2274 {
2275 unw_rec_list *ptr = alloc_record (label_state);
2276 ptr->r.record.b.label = label;
2277 return ptr;
2278 }
2279
2280 static unw_rec_list *
2281 output_copy_state (unsigned long label)
2282 {
2283 unw_rec_list *ptr = alloc_record (copy_state);
2284 ptr->r.record.b.label = label;
2285 return ptr;
2286 }
2287
2288 static unw_rec_list *
2289 output_spill_psprel (ab, reg, offset)
2290 unsigned int ab;
2291 unsigned int reg;
2292 unsigned int offset;
2293 {
2294 unw_rec_list *ptr = alloc_record (spill_psprel);
2295 ptr->r.record.x.ab = ab;
2296 ptr->r.record.x.reg = reg;
2297 ptr->r.record.x.pspoff = ENCODED_PSP_OFFSET (offset);
2298 return ptr;
2299 }
2300
2301 static unw_rec_list *
2302 output_spill_sprel (ab, reg, offset)
2303 unsigned int ab;
2304 unsigned int reg;
2305 unsigned int offset;
2306 {
2307 unw_rec_list *ptr = alloc_record (spill_sprel);
2308 ptr->r.record.x.ab = ab;
2309 ptr->r.record.x.reg = reg;
2310 ptr->r.record.x.spoff = offset / 4;
2311 return ptr;
2312 }
2313
2314 static unw_rec_list *
2315 output_spill_psprel_p (ab, reg, offset, predicate)
2316 unsigned int ab;
2317 unsigned int reg;
2318 unsigned int offset;
2319 unsigned int predicate;
2320 {
2321 unw_rec_list *ptr = alloc_record (spill_psprel_p);
2322 ptr->r.record.x.ab = ab;
2323 ptr->r.record.x.reg = reg;
2324 ptr->r.record.x.pspoff = ENCODED_PSP_OFFSET (offset);
2325 ptr->r.record.x.qp = predicate;
2326 return ptr;
2327 }
2328
2329 static unw_rec_list *
2330 output_spill_sprel_p (ab, reg, offset, predicate)
2331 unsigned int ab;
2332 unsigned int reg;
2333 unsigned int offset;
2334 unsigned int predicate;
2335 {
2336 unw_rec_list *ptr = alloc_record (spill_sprel_p);
2337 ptr->r.record.x.ab = ab;
2338 ptr->r.record.x.reg = reg;
2339 ptr->r.record.x.spoff = offset / 4;
2340 ptr->r.record.x.qp = predicate;
2341 return ptr;
2342 }
2343
2344 static unw_rec_list *
2345 output_spill_reg (ab, reg, targ_reg, xy)
2346 unsigned int ab;
2347 unsigned int reg;
2348 unsigned int targ_reg;
2349 unsigned int xy;
2350 {
2351 unw_rec_list *ptr = alloc_record (spill_reg);
2352 ptr->r.record.x.ab = ab;
2353 ptr->r.record.x.reg = reg;
2354 ptr->r.record.x.treg = targ_reg;
2355 ptr->r.record.x.xy = xy;
2356 return ptr;
2357 }
2358
2359 static unw_rec_list *
2360 output_spill_reg_p (ab, reg, targ_reg, xy, predicate)
2361 unsigned int ab;
2362 unsigned int reg;
2363 unsigned int targ_reg;
2364 unsigned int xy;
2365 unsigned int predicate;
2366 {
2367 unw_rec_list *ptr = alloc_record (spill_reg_p);
2368 ptr->r.record.x.ab = ab;
2369 ptr->r.record.x.reg = reg;
2370 ptr->r.record.x.treg = targ_reg;
2371 ptr->r.record.x.xy = xy;
2372 ptr->r.record.x.qp = predicate;
2373 return ptr;
2374 }
2375
2376 /* Given a unw_rec_list process the correct format with the
2377 specified function. */
2378
2379 static void
2380 process_one_record (ptr, f)
2381 unw_rec_list *ptr;
2382 vbyte_func f;
2383 {
2384 unsigned long fr_mask, gr_mask;
2385
2386 switch (ptr->r.type)
2387 {
2388 /* This is a dummy record that takes up no space in the output. */
2389 case endp:
2390 break;
2391
2392 case gr_mem:
2393 case fr_mem:
2394 case br_mem:
2395 case frgr_mem:
2396 /* These are taken care of by prologue/prologue_gr. */
2397 break;
2398
2399 case prologue_gr:
2400 case prologue:
2401 if (ptr->r.type == prologue_gr)
2402 output_R2_format (f, ptr->r.record.r.grmask,
2403 ptr->r.record.r.grsave, ptr->r.record.r.rlen);
2404 else
2405 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2406
2407 /* Output descriptor(s) for union of register spills (if any). */
2408 gr_mask = ptr->r.record.r.mask.gr_mem;
2409 fr_mask = ptr->r.record.r.mask.fr_mem;
2410 if (fr_mask)
2411 {
2412 if ((fr_mask & ~0xfUL) == 0)
2413 output_P6_format (f, fr_mem, fr_mask);
2414 else
2415 {
2416 output_P5_format (f, gr_mask, fr_mask);
2417 gr_mask = 0;
2418 }
2419 }
2420 if (gr_mask)
2421 output_P6_format (f, gr_mem, gr_mask);
2422 if (ptr->r.record.r.mask.br_mem)
2423 output_P1_format (f, ptr->r.record.r.mask.br_mem);
2424
2425 /* output imask descriptor if necessary: */
2426 if (ptr->r.record.r.mask.i)
2427 output_P4_format (f, ptr->r.record.r.mask.i,
2428 ptr->r.record.r.imask_size);
2429 break;
2430
2431 case body:
2432 output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen);
2433 break;
2434 case mem_stack_f:
2435 case mem_stack_v:
2436 output_P7_format (f, ptr->r.type, ptr->r.record.p.t,
2437 ptr->r.record.p.size);
2438 break;
2439 case psp_gr:
2440 case rp_gr:
2441 case pfs_gr:
2442 case preds_gr:
2443 case unat_gr:
2444 case lc_gr:
2445 case fpsr_gr:
2446 case priunat_gr:
2447 case bsp_gr:
2448 case bspstore_gr:
2449 case rnat_gr:
2450 output_P3_format (f, ptr->r.type, ptr->r.record.p.gr);
2451 break;
2452 case rp_br:
2453 output_P3_format (f, rp_br, ptr->r.record.p.br);
2454 break;
2455 case psp_sprel:
2456 output_P7_format (f, psp_sprel, ptr->r.record.p.spoff, 0);
2457 break;
2458 case rp_when:
2459 case pfs_when:
2460 case preds_when:
2461 case unat_when:
2462 case lc_when:
2463 case fpsr_when:
2464 output_P7_format (f, ptr->r.type, ptr->r.record.p.t, 0);
2465 break;
2466 case rp_psprel:
2467 case pfs_psprel:
2468 case preds_psprel:
2469 case unat_psprel:
2470 case lc_psprel:
2471 case fpsr_psprel:
2472 case spill_base:
2473 output_P7_format (f, ptr->r.type, ptr->r.record.p.pspoff, 0);
2474 break;
2475 case rp_sprel:
2476 case pfs_sprel:
2477 case preds_sprel:
2478 case unat_sprel:
2479 case lc_sprel:
2480 case fpsr_sprel:
2481 case priunat_sprel:
2482 case bsp_sprel:
2483 case bspstore_sprel:
2484 case rnat_sprel:
2485 output_P8_format (f, ptr->r.type, ptr->r.record.p.spoff);
2486 break;
2487 case gr_gr:
2488 output_P9_format (f, ptr->r.record.p.grmask, ptr->r.record.p.gr);
2489 break;
2490 case br_gr:
2491 output_P2_format (f, ptr->r.record.p.brmask, ptr->r.record.p.gr);
2492 break;
2493 case spill_mask:
2494 as_bad ("spill_mask record unimplemented.");
2495 break;
2496 case priunat_when_gr:
2497 case priunat_when_mem:
2498 case bsp_when:
2499 case bspstore_when:
2500 case rnat_when:
2501 output_P8_format (f, ptr->r.type, ptr->r.record.p.t);
2502 break;
2503 case priunat_psprel:
2504 case bsp_psprel:
2505 case bspstore_psprel:
2506 case rnat_psprel:
2507 output_P8_format (f, ptr->r.type, ptr->r.record.p.pspoff);
2508 break;
2509 case unwabi:
2510 output_P10_format (f, ptr->r.record.p.abi, ptr->r.record.p.context);
2511 break;
2512 case epilogue:
2513 output_B3_format (f, ptr->r.record.b.ecount, ptr->r.record.b.t);
2514 break;
2515 case label_state:
2516 case copy_state:
2517 output_B4_format (f, ptr->r.type, ptr->r.record.b.label);
2518 break;
2519 case spill_psprel:
2520 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2521 ptr->r.record.x.reg, ptr->r.record.x.t,
2522 ptr->r.record.x.pspoff);
2523 break;
2524 case spill_sprel:
2525 output_X1_format (f, ptr->r.type, ptr->r.record.x.ab,
2526 ptr->r.record.x.reg, ptr->r.record.x.t,
2527 ptr->r.record.x.spoff);
2528 break;
2529 case spill_reg:
2530 output_X2_format (f, ptr->r.record.x.ab, ptr->r.record.x.reg,
2531 ptr->r.record.x.xy >> 1, ptr->r.record.x.xy,
2532 ptr->r.record.x.treg, ptr->r.record.x.t);
2533 break;
2534 case spill_psprel_p:
2535 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2536 ptr->r.record.x.ab, ptr->r.record.x.reg,
2537 ptr->r.record.x.t, ptr->r.record.x.pspoff);
2538 break;
2539 case spill_sprel_p:
2540 output_X3_format (f, ptr->r.type, ptr->r.record.x.qp,
2541 ptr->r.record.x.ab, ptr->r.record.x.reg,
2542 ptr->r.record.x.t, ptr->r.record.x.spoff);
2543 break;
2544 case spill_reg_p:
2545 output_X4_format (f, ptr->r.record.x.qp, ptr->r.record.x.ab,
2546 ptr->r.record.x.reg, ptr->r.record.x.xy >> 1,
2547 ptr->r.record.x.xy, ptr->r.record.x.treg,
2548 ptr->r.record.x.t);
2549 break;
2550 default:
2551 as_bad ("record_type_not_valid");
2552 break;
2553 }
2554 }
2555
2556 /* Given a unw_rec_list list, process all the records with
2557 the specified function. */
2558 static void
2559 process_unw_records (list, f)
2560 unw_rec_list *list;
2561 vbyte_func f;
2562 {
2563 unw_rec_list *ptr;
2564 for (ptr = list; ptr; ptr = ptr->next)
2565 process_one_record (ptr, f);
2566 }
2567
2568 /* Determine the size of a record list in bytes. */
2569 static int
2570 calc_record_size (list)
2571 unw_rec_list *list;
2572 {
2573 vbyte_count = 0;
2574 process_unw_records (list, count_output);
2575 return vbyte_count;
2576 }
2577
2578 /* Update IMASK bitmask to reflect the fact that one or more registers
2579 of type TYPE are saved starting at instruction with index T. If N
2580 bits are set in REGMASK, it is assumed that instructions T through
2581 T+N-1 save these registers.
2582
2583 TYPE values:
2584 0: no save
2585 1: instruction saves next fp reg
2586 2: instruction saves next general reg
2587 3: instruction saves next branch reg */
2588 static void
2589 set_imask (region, regmask, t, type)
2590 unw_rec_list *region;
2591 unsigned long regmask;
2592 unsigned long t;
2593 unsigned int type;
2594 {
2595 unsigned char *imask;
2596 unsigned long imask_size;
2597 unsigned int i;
2598 int pos;
2599
2600 imask = region->r.record.r.mask.i;
2601 imask_size = region->r.record.r.imask_size;
2602 if (!imask)
2603 {
2604 imask_size = (region->r.record.r.rlen * 2 + 7) / 8 + 1;
2605 imask = xmalloc (imask_size);
2606 memset (imask, 0, imask_size);
2607
2608 region->r.record.r.imask_size = imask_size;
2609 region->r.record.r.mask.i = imask;
2610 }
2611
2612 i = (t / 4) + 1;
2613 pos = 2 * (3 - t % 4);
2614 while (regmask)
2615 {
2616 if (i >= imask_size)
2617 {
2618 as_bad ("Ignoring attempt to spill beyond end of region");
2619 return;
2620 }
2621
2622 imask[i] |= (type & 0x3) << pos;
2623
2624 regmask &= (regmask - 1);
2625 pos -= 2;
2626 if (pos < 0)
2627 {
2628 pos = 0;
2629 ++i;
2630 }
2631 }
2632 }
2633
2634 /* Return the number of instruction slots from FIRST_ADDR to SLOT_ADDR.
2635 SLOT_FRAG is the frag containing SLOT_ADDR, and FIRST_FRAG is the frag
2636 containing FIRST_ADDR. If BEFORE_RELAX, then we use worst-case estimates
2637 for frag sizes. */
2638
2639 unsigned long
2640 slot_index (slot_addr, slot_frag, first_addr, first_frag, before_relax)
2641 unsigned long slot_addr;
2642 fragS *slot_frag;
2643 unsigned long first_addr;
2644 fragS *first_frag;
2645 int before_relax;
2646 {
2647 unsigned long index = 0;
2648
2649 /* First time we are called, the initial address and frag are invalid. */
2650 if (first_addr == 0)
2651 return 0;
2652
2653 /* If the two addresses are in different frags, then we need to add in
2654 the remaining size of this frag, and then the entire size of intermediate
2655 frags. */
2656 while (slot_frag != first_frag)
2657 {
2658 unsigned long start_addr = (unsigned long) &first_frag->fr_literal;
2659
2660 if (! before_relax)
2661 {
2662 /* We can get the final addresses only during and after
2663 relaxation. */
2664 if (first_frag->fr_next && first_frag->fr_next->fr_address)
2665 index += 3 * ((first_frag->fr_next->fr_address
2666 - first_frag->fr_address
2667 - first_frag->fr_fix) >> 4);
2668 }
2669 else
2670 /* We don't know what the final addresses will be. We try our
2671 best to estimate. */
2672 switch (first_frag->fr_type)
2673 {
2674 default:
2675 break;
2676
2677 case rs_space:
2678 as_fatal ("only constant space allocation is supported");
2679 break;
2680
2681 case rs_align:
2682 case rs_align_code:
2683 case rs_align_test:
2684 /* Take alignment into account. Assume the worst case
2685 before relaxation. */
2686 index += 3 * ((1 << first_frag->fr_offset) >> 4);
2687 break;
2688
2689 case rs_org:
2690 if (first_frag->fr_symbol)
2691 {
2692 as_fatal ("only constant offsets are supported");
2693 break;
2694 }
2695 case rs_fill:
2696 index += 3 * (first_frag->fr_offset >> 4);
2697 break;
2698 }
2699
2700 /* Add in the full size of the frag converted to instruction slots. */
2701 index += 3 * (first_frag->fr_fix >> 4);
2702 /* Subtract away the initial part before first_addr. */
2703 index -= (3 * ((first_addr >> 4) - (start_addr >> 4))
2704 + ((first_addr & 0x3) - (start_addr & 0x3)));
2705
2706 /* Move to the beginning of the next frag. */
2707 first_frag = first_frag->fr_next;
2708 first_addr = (unsigned long) &first_frag->fr_literal;
2709 }
2710
2711 /* Add in the used part of the last frag. */
2712 index += (3 * ((slot_addr >> 4) - (first_addr >> 4))
2713 + ((slot_addr & 0x3) - (first_addr & 0x3)));
2714 return index;
2715 }
2716
2717 /* Optimize unwind record directives. */
2718
2719 static unw_rec_list *
2720 optimize_unw_records (list)
2721 unw_rec_list *list;
2722 {
2723 if (!list)
2724 return NULL;
2725
2726 /* If the only unwind record is ".prologue" or ".prologue" followed
2727 by ".body", then we can optimize the unwind directives away. */
2728 if (list->r.type == prologue
2729 && (list->next->r.type == endp
2730 || (list->next->r.type == body && list->next->next->r.type == endp)))
2731 return NULL;
2732
2733 return list;
2734 }
2735
2736 /* Given a complete record list, process any records which have
2737 unresolved fields, (ie length counts for a prologue). After
2738 this has been run, all necessary information should be available
2739 within each record to generate an image. */
2740
2741 static void
2742 fixup_unw_records (list, before_relax)
2743 unw_rec_list *list;
2744 int before_relax;
2745 {
2746 unw_rec_list *ptr, *region = 0;
2747 unsigned long first_addr = 0, rlen = 0, t;
2748 fragS *first_frag = 0;
2749
2750 for (ptr = list; ptr; ptr = ptr->next)
2751 {
2752 if (ptr->slot_number == SLOT_NUM_NOT_SET)
2753 as_bad (" Insn slot not set in unwind record.");
2754 t = slot_index (ptr->slot_number, ptr->slot_frag,
2755 first_addr, first_frag, before_relax);
2756 switch (ptr->r.type)
2757 {
2758 case prologue:
2759 case prologue_gr:
2760 case body:
2761 {
2762 unw_rec_list *last;
2763 int size;
2764 unsigned long last_addr = 0;
2765 fragS *last_frag = NULL;
2766
2767 first_addr = ptr->slot_number;
2768 first_frag = ptr->slot_frag;
2769 /* Find either the next body/prologue start, or the end of
2770 the function, and determine the size of the region. */
2771 for (last = ptr->next; last != NULL; last = last->next)
2772 if (last->r.type == prologue || last->r.type == prologue_gr
2773 || last->r.type == body || last->r.type == endp)
2774 {
2775 last_addr = last->slot_number;
2776 last_frag = last->slot_frag;
2777 break;
2778 }
2779 size = slot_index (last_addr, last_frag, first_addr, first_frag,
2780 before_relax);
2781 rlen = ptr->r.record.r.rlen = size;
2782 if (ptr->r.type == body)
2783 /* End of region. */
2784 region = 0;
2785 else
2786 region = ptr;
2787 break;
2788 }
2789 case epilogue:
2790 if (t < rlen)
2791 ptr->r.record.b.t = rlen - 1 - t;
2792 else
2793 /* This happens when a memory-stack-less procedure uses a
2794 ".restore sp" directive at the end of a region to pop
2795 the frame state. */
2796 ptr->r.record.b.t = 0;
2797 break;
2798
2799 case mem_stack_f:
2800 case mem_stack_v:
2801 case rp_when:
2802 case pfs_when:
2803 case preds_when:
2804 case unat_when:
2805 case lc_when:
2806 case fpsr_when:
2807 case priunat_when_gr:
2808 case priunat_when_mem:
2809 case bsp_when:
2810 case bspstore_when:
2811 case rnat_when:
2812 ptr->r.record.p.t = t;
2813 break;
2814
2815 case spill_reg:
2816 case spill_sprel:
2817 case spill_psprel:
2818 case spill_reg_p:
2819 case spill_sprel_p:
2820 case spill_psprel_p:
2821 ptr->r.record.x.t = t;
2822 break;
2823
2824 case frgr_mem:
2825 if (!region)
2826 {
2827 as_bad ("frgr_mem record before region record!");
2828 return;
2829 }
2830 region->r.record.r.mask.fr_mem |= ptr->r.record.p.frmask;
2831 region->r.record.r.mask.gr_mem |= ptr->r.record.p.grmask;
2832 set_imask (region, ptr->r.record.p.frmask, t, 1);
2833 set_imask (region, ptr->r.record.p.grmask, t, 2);
2834 break;
2835 case fr_mem:
2836 if (!region)
2837 {
2838 as_bad ("fr_mem record before region record!");
2839 return;
2840 }
2841 region->r.record.r.mask.fr_mem |= ptr->r.record.p.rmask;
2842 set_imask (region, ptr->r.record.p.rmask, t, 1);
2843 break;
2844 case gr_mem:
2845 if (!region)
2846 {
2847 as_bad ("gr_mem record before region record!");
2848 return;
2849 }
2850 region->r.record.r.mask.gr_mem |= ptr->r.record.p.rmask;
2851 set_imask (region, ptr->r.record.p.rmask, t, 2);
2852 break;
2853 case br_mem:
2854 if (!region)
2855 {
2856 as_bad ("br_mem record before region record!");
2857 return;
2858 }
2859 region->r.record.r.mask.br_mem |= ptr->r.record.p.brmask;
2860 set_imask (region, ptr->r.record.p.brmask, t, 3);
2861 break;
2862
2863 case gr_gr:
2864 if (!region)
2865 {
2866 as_bad ("gr_gr record before region record!");
2867 return;
2868 }
2869 set_imask (region, ptr->r.record.p.grmask, t, 2);
2870 break;
2871 case br_gr:
2872 if (!region)
2873 {
2874 as_bad ("br_gr record before region record!");
2875 return;
2876 }
2877 set_imask (region, ptr->r.record.p.brmask, t, 3);
2878 break;
2879
2880 default:
2881 break;
2882 }
2883 }
2884 }
2885
2886 /* Estimate the size of a frag before relaxing. We only have one type of frag
2887 to handle here, which is the unwind info frag. */
2888
2889 int
2890 ia64_estimate_size_before_relax (fragS *frag,
2891 asection *segtype ATTRIBUTE_UNUSED)
2892 {
2893 unw_rec_list *list;
2894 int len, size, pad;
2895
2896 /* ??? This code is identical to the first part of ia64_convert_frag. */
2897 list = (unw_rec_list *) frag->fr_opcode;
2898 fixup_unw_records (list, 0);
2899
2900 len = calc_record_size (list);
2901 /* pad to pointer-size boundary. */
2902 pad = len % md.pointer_size;
2903 if (pad != 0)
2904 len += md.pointer_size - pad;
2905 /* Add 8 for the header. */
2906 size = len + 8;
2907 /* Add a pointer for the personality offset. */
2908 if (frag->fr_offset)
2909 size += md.pointer_size;
2910
2911 /* fr_var carries the max_chars that we created the fragment with.
2912 We must, of course, have allocated enough memory earlier. */
2913 assert (frag->fr_var >= size);
2914
2915 return frag->fr_fix + size;
2916 }
2917
2918 /* This function converts a rs_machine_dependent variant frag into a
2919 normal fill frag with the unwind image from the the record list. */
2920 void
2921 ia64_convert_frag (fragS *frag)
2922 {
2923 unw_rec_list *list;
2924 int len, size, pad;
2925 valueT flag_value;
2926
2927 /* ??? This code is identical to ia64_estimate_size_before_relax. */
2928 list = (unw_rec_list *) frag->fr_opcode;
2929 fixup_unw_records (list, 0);
2930
2931 len = calc_record_size (list);
2932 /* pad to pointer-size boundary. */
2933 pad = len % md.pointer_size;
2934 if (pad != 0)
2935 len += md.pointer_size - pad;
2936 /* Add 8 for the header. */
2937 size = len + 8;
2938 /* Add a pointer for the personality offset. */
2939 if (frag->fr_offset)
2940 size += md.pointer_size;
2941
2942 /* fr_var carries the max_chars that we created the fragment with.
2943 We must, of course, have allocated enough memory earlier. */
2944 assert (frag->fr_var >= size);
2945
2946 /* Initialize the header area. fr_offset is initialized with
2947 unwind.personality_routine. */
2948 if (frag->fr_offset)
2949 {
2950 if (md.flags & EF_IA_64_ABI64)
2951 flag_value = (bfd_vma) 3 << 32;
2952 else
2953 /* 32-bit unwind info block. */
2954 flag_value = (bfd_vma) 0x1003 << 32;
2955 }
2956 else
2957 flag_value = 0;
2958
2959 md_number_to_chars (frag->fr_literal,
2960 (((bfd_vma) 1 << 48) /* Version. */
2961 | flag_value /* U & E handler flags. */
2962 | (len / md.pointer_size)), /* Length. */
2963 8);
2964
2965 /* Skip the header. */
2966 vbyte_mem_ptr = frag->fr_literal + 8;
2967 process_unw_records (list, output_vbyte_mem);
2968
2969 /* Fill the padding bytes with zeros. */
2970 if (pad != 0)
2971 md_number_to_chars (frag->fr_literal + len + 8 - md.pointer_size + pad, 0,
2972 md.pointer_size - pad);
2973
2974 frag->fr_fix += size;
2975 frag->fr_type = rs_fill;
2976 frag->fr_var = 0;
2977 frag->fr_offset = 0;
2978 }
2979
2980 static int
2981 convert_expr_to_ab_reg (e, ab, regp)
2982 expressionS *e;
2983 unsigned int *ab;
2984 unsigned int *regp;
2985 {
2986 unsigned int reg;
2987
2988 if (e->X_op != O_register)
2989 return 0;
2990
2991 reg = e->X_add_number;
2992 if (reg >= (REG_GR + 4) && reg <= (REG_GR + 7))
2993 {
2994 *ab = 0;
2995 *regp = reg - REG_GR;
2996 }
2997 else if ((reg >= (REG_FR + 2) && reg <= (REG_FR + 5))
2998 || (reg >= (REG_FR + 16) && reg <= (REG_FR + 31)))
2999 {
3000 *ab = 1;
3001 *regp = reg - REG_FR;
3002 }
3003 else if (reg >= (REG_BR + 1) && reg <= (REG_BR + 5))
3004 {
3005 *ab = 2;
3006 *regp = reg - REG_BR;
3007 }
3008 else
3009 {
3010 *ab = 3;
3011 switch (reg)
3012 {
3013 case REG_PR: *regp = 0; break;
3014 case REG_PSP: *regp = 1; break;
3015 case REG_PRIUNAT: *regp = 2; break;
3016 case REG_BR + 0: *regp = 3; break;
3017 case REG_AR + AR_BSP: *regp = 4; break;
3018 case REG_AR + AR_BSPSTORE: *regp = 5; break;
3019 case REG_AR + AR_RNAT: *regp = 6; break;
3020 case REG_AR + AR_UNAT: *regp = 7; break;
3021 case REG_AR + AR_FPSR: *regp = 8; break;
3022 case REG_AR + AR_PFS: *regp = 9; break;
3023 case REG_AR + AR_LC: *regp = 10; break;
3024
3025 default:
3026 return 0;
3027 }
3028 }
3029 return 1;
3030 }
3031
3032 static int
3033 convert_expr_to_xy_reg (e, xy, regp)
3034 expressionS *e;
3035 unsigned int *xy;
3036 unsigned int *regp;
3037 {
3038 unsigned int reg;
3039
3040 if (e->X_op != O_register)
3041 return 0;
3042
3043 reg = e->X_add_number;
3044
3045 if (/* reg >= REG_GR && */ reg <= (REG_GR + 127))
3046 {
3047 *xy = 0;
3048 *regp = reg - REG_GR;
3049 }
3050 else if (reg >= REG_FR && reg <= (REG_FR + 127))
3051 {
3052 *xy = 1;
3053 *regp = reg - REG_FR;
3054 }
3055 else if (reg >= REG_BR && reg <= (REG_BR + 7))
3056 {
3057 *xy = 2;
3058 *regp = reg - REG_BR;
3059 }
3060 else
3061 return -1;
3062 return 1;
3063 }
3064
3065 static void
3066 dot_align (int arg)
3067 {
3068 /* The current frag is an alignment frag. */
3069 align_frag = frag_now;
3070 s_align_bytes (arg);
3071 }
3072
3073 static void
3074 dot_radix (dummy)
3075 int dummy ATTRIBUTE_UNUSED;
3076 {
3077 int radix;
3078
3079 SKIP_WHITESPACE ();
3080 radix = *input_line_pointer++;
3081
3082 if (radix != 'C' && !is_end_of_line[(unsigned char) radix])
3083 {
3084 as_bad ("Radix `%c' unsupported", *input_line_pointer);
3085 ignore_rest_of_line ();
3086 return;
3087 }
3088 }
3089
3090 /* Helper function for .loc directives. If the assembler is not generating
3091 line number info, then we need to remember which instructions have a .loc
3092 directive, and only call dwarf2_gen_line_info for those instructions. */
3093
3094 static void
3095 dot_loc (int x)
3096 {
3097 CURR_SLOT.loc_directive_seen = 1;
3098 dwarf2_directive_loc (x);
3099 }
3100
3101 /* .sbss, .bss etc. are macros that expand into ".section SECNAME". */
3102 static void
3103 dot_special_section (which)
3104 int which;
3105 {
3106 set_section ((char *) special_section_name[which]);
3107 }
3108
3109 /* Return -1 for warning and 0 for error. */
3110
3111 static int
3112 unwind_diagnostic (const char * region, const char *directive)
3113 {
3114 if (md.unwind_check == unwind_check_warning)
3115 {
3116 as_warn (".%s outside of %s", directive, region);
3117 return -1;
3118 }
3119 else
3120 {
3121 as_bad (".%s outside of %s", directive, region);
3122 ignore_rest_of_line ();
3123 return 0;
3124 }
3125 }
3126
3127 /* Return 1 if a directive is in a procedure, -1 if a directive isn't in
3128 a procedure but the unwind directive check is set to warning, 0 if
3129 a directive isn't in a procedure and the unwind directive check is set
3130 to error. */
3131
3132 static int
3133 in_procedure (const char *directive)
3134 {
3135 if (unwind.proc_start
3136 && (!unwind.saved_text_seg || strcmp (directive, "endp") == 0))
3137 return 1;
3138 return unwind_diagnostic ("procedure", directive);
3139 }
3140
3141 /* Return 1 if a directive is in a prologue, -1 if a directive isn't in
3142 a prologue but the unwind directive check is set to warning, 0 if
3143 a directive isn't in a prologue and the unwind directive check is set
3144 to error. */
3145
3146 static int
3147 in_prologue (const char *directive)
3148 {
3149 int in = in_procedure (directive);
3150 if (in)
3151 {
3152 /* We are in a procedure. Check if we are in a prologue. */
3153 if (unwind.prologue)
3154 return 1;
3155 /* We only want to issue one message. */
3156 if (in == 1)
3157 return unwind_diagnostic ("prologue", directive);
3158 else
3159 return -1;
3160 }
3161 return 0;
3162 }
3163
3164 /* Return 1 if a directive is in a body, -1 if a directive isn't in
3165 a body but the unwind directive check is set to warning, 0 if
3166 a directive isn't in a body and the unwind directive check is set
3167 to error. */
3168
3169 static int
3170 in_body (const char *directive)
3171 {
3172 int in = in_procedure (directive);
3173 if (in)
3174 {
3175 /* We are in a procedure. Check if we are in a body. */
3176 if (unwind.body)
3177 return 1;
3178 /* We only want to issue one message. */
3179 if (in == 1)
3180 return unwind_diagnostic ("body region", directive);
3181 else
3182 return -1;
3183 }
3184 return 0;
3185 }
3186
3187 static void
3188 add_unwind_entry (ptr)
3189 unw_rec_list *ptr;
3190 {
3191 if (unwind.tail)
3192 unwind.tail->next = ptr;
3193 else
3194 unwind.list = ptr;
3195 unwind.tail = ptr;
3196
3197 /* The current entry can in fact be a chain of unwind entries. */
3198 if (unwind.current_entry == NULL)
3199 unwind.current_entry = ptr;
3200 }
3201
3202 static void
3203 dot_fframe (dummy)
3204 int dummy ATTRIBUTE_UNUSED;
3205 {
3206 expressionS e;
3207
3208 if (!in_prologue ("fframe"))
3209 return;
3210
3211 parse_operand (&e);
3212
3213 if (e.X_op != O_constant)
3214 as_bad ("Operand to .fframe must be a constant");
3215 else
3216 add_unwind_entry (output_mem_stack_f (e.X_add_number));
3217 }
3218
3219 static void
3220 dot_vframe (dummy)
3221 int dummy ATTRIBUTE_UNUSED;
3222 {
3223 expressionS e;
3224 unsigned reg;
3225
3226 if (!in_prologue ("vframe"))
3227 return;
3228
3229 parse_operand (&e);
3230 reg = e.X_add_number - REG_GR;
3231 if (e.X_op == O_register && reg < 128)
3232 {
3233 add_unwind_entry (output_mem_stack_v ());
3234 if (! (unwind.prologue_mask & 2))
3235 add_unwind_entry (output_psp_gr (reg));
3236 }
3237 else
3238 as_bad ("First operand to .vframe must be a general register");
3239 }
3240
3241 static void
3242 dot_vframesp (dummy)
3243 int dummy ATTRIBUTE_UNUSED;
3244 {
3245 expressionS e;
3246
3247 if (!in_prologue ("vframesp"))
3248 return;
3249
3250 parse_operand (&e);
3251 if (e.X_op == O_constant)
3252 {
3253 add_unwind_entry (output_mem_stack_v ());
3254 add_unwind_entry (output_psp_sprel (e.X_add_number));
3255 }
3256 else
3257 as_bad ("Operand to .vframesp must be a constant (sp-relative offset)");
3258 }
3259
3260 static void
3261 dot_vframepsp (dummy)
3262 int dummy ATTRIBUTE_UNUSED;
3263 {
3264 expressionS e;
3265
3266 if (!in_prologue ("vframepsp"))
3267 return;
3268
3269 parse_operand (&e);
3270 if (e.X_op == O_constant)
3271 {
3272 add_unwind_entry (output_mem_stack_v ());
3273 add_unwind_entry (output_psp_sprel (e.X_add_number));
3274 }
3275 else
3276 as_bad ("Operand to .vframepsp must be a constant (psp-relative offset)");
3277 }
3278
3279 static void
3280 dot_save (dummy)
3281 int dummy ATTRIBUTE_UNUSED;
3282 {
3283 expressionS e1, e2;
3284 int sep;
3285 int reg1, reg2;
3286
3287 if (!in_prologue ("save"))
3288 return;
3289
3290 sep = parse_operand (&e1);
3291 if (sep != ',')
3292 as_bad ("No second operand to .save");
3293 sep = parse_operand (&e2);
3294
3295 reg1 = e1.X_add_number;
3296 reg2 = e2.X_add_number - REG_GR;
3297
3298 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
3299 if (e1.X_op == O_register)
3300 {
3301 if (e2.X_op == O_register && reg2 >= 0 && reg2 < 128)
3302 {
3303 switch (reg1)
3304 {
3305 case REG_AR + AR_BSP:
3306 add_unwind_entry (output_bsp_when ());
3307 add_unwind_entry (output_bsp_gr (reg2));
3308 break;
3309 case REG_AR + AR_BSPSTORE:
3310 add_unwind_entry (output_bspstore_when ());
3311 add_unwind_entry (output_bspstore_gr (reg2));
3312 break;
3313 case REG_AR + AR_RNAT:
3314 add_unwind_entry (output_rnat_when ());
3315 add_unwind_entry (output_rnat_gr (reg2));
3316 break;
3317 case REG_AR + AR_UNAT:
3318 add_unwind_entry (output_unat_when ());
3319 add_unwind_entry (output_unat_gr (reg2));
3320 break;
3321 case REG_AR + AR_FPSR:
3322 add_unwind_entry (output_fpsr_when ());
3323 add_unwind_entry (output_fpsr_gr (reg2));
3324 break;
3325 case REG_AR + AR_PFS:
3326 add_unwind_entry (output_pfs_when ());
3327 if (! (unwind.prologue_mask & 4))
3328 add_unwind_entry (output_pfs_gr (reg2));
3329 break;
3330 case REG_AR + AR_LC:
3331 add_unwind_entry (output_lc_when ());
3332 add_unwind_entry (output_lc_gr (reg2));
3333 break;
3334 case REG_BR:
3335 add_unwind_entry (output_rp_when ());
3336 if (! (unwind.prologue_mask & 8))
3337 add_unwind_entry (output_rp_gr (reg2));
3338 break;
3339 case REG_PR:
3340 add_unwind_entry (output_preds_when ());
3341 if (! (unwind.prologue_mask & 1))
3342 add_unwind_entry (output_preds_gr (reg2));
3343 break;
3344 case REG_PRIUNAT:
3345 add_unwind_entry (output_priunat_when_gr ());
3346 add_unwind_entry (output_priunat_gr (reg2));
3347 break;
3348 default:
3349 as_bad ("First operand not a valid register");
3350 }
3351 }
3352 else
3353 as_bad (" Second operand not a valid register");
3354 }
3355 else
3356 as_bad ("First operand not a register");
3357 }
3358
3359 static void
3360 dot_restore (dummy)
3361 int dummy ATTRIBUTE_UNUSED;
3362 {
3363 expressionS e1, e2;
3364 unsigned long ecount; /* # of _additional_ regions to pop */
3365 int sep;
3366
3367 if (!in_body ("restore"))
3368 return;
3369
3370 sep = parse_operand (&e1);
3371 if (e1.X_op != O_register || e1.X_add_number != REG_GR + 12)
3372 {
3373 as_bad ("First operand to .restore must be stack pointer (sp)");
3374 return;
3375 }
3376
3377 if (sep == ',')
3378 {
3379 parse_operand (&e2);
3380 if (e2.X_op != O_constant || e2.X_add_number < 0)
3381 {
3382 as_bad ("Second operand to .restore must be a constant >= 0");
3383 return;
3384 }
3385 ecount = e2.X_add_number;
3386 }
3387 else
3388 ecount = unwind.prologue_count - 1;
3389
3390 if (ecount >= unwind.prologue_count)
3391 {
3392 as_bad ("Epilogue count of %lu exceeds number of nested prologues (%u)",
3393 ecount + 1, unwind.prologue_count);
3394 return;
3395 }
3396
3397 add_unwind_entry (output_epilogue (ecount));
3398
3399 if (ecount < unwind.prologue_count)
3400 unwind.prologue_count -= ecount + 1;
3401 else
3402 unwind.prologue_count = 0;
3403 }
3404
3405 static void
3406 dot_restorereg (dummy)
3407 int dummy ATTRIBUTE_UNUSED;
3408 {
3409 unsigned int ab, reg;
3410 expressionS e;
3411
3412 if (!in_procedure ("restorereg"))
3413 return;
3414
3415 parse_operand (&e);
3416
3417 if (!convert_expr_to_ab_reg (&e, &ab, &reg))
3418 {
3419 as_bad ("First operand to .restorereg must be a preserved register");
3420 return;
3421 }
3422 add_unwind_entry (output_spill_reg (ab, reg, 0, 0));
3423 }
3424
3425 static void
3426 dot_restorereg_p (dummy)
3427 int dummy ATTRIBUTE_UNUSED;
3428 {
3429 unsigned int qp, ab, reg;
3430 expressionS e1, e2;
3431 int sep;
3432
3433 if (!in_procedure ("restorereg.p"))
3434 return;
3435
3436 sep = parse_operand (&e1);
3437 if (sep != ',')
3438 {
3439 as_bad ("No second operand to .restorereg.p");
3440 return;
3441 }
3442
3443 parse_operand (&e2);
3444
3445 qp = e1.X_add_number - REG_P;
3446 if (e1.X_op != O_register || qp > 63)
3447 {
3448 as_bad ("First operand to .restorereg.p must be a predicate");
3449 return;
3450 }
3451
3452 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
3453 {
3454 as_bad ("Second operand to .restorereg.p must be a preserved register");
3455 return;
3456 }
3457 add_unwind_entry (output_spill_reg_p (ab, reg, 0, 0, qp));
3458 }
3459
3460 static char *special_linkonce_name[] =
3461 {
3462 ".gnu.linkonce.ia64unw.", ".gnu.linkonce.ia64unwi."
3463 };
3464
3465 static void
3466 start_unwind_section (const segT text_seg, int sec_index)
3467 {
3468 /*
3469 Use a slightly ugly scheme to derive the unwind section names from
3470 the text section name:
3471
3472 text sect. unwind table sect.
3473 name: name: comments:
3474 ---------- ----------------- --------------------------------
3475 .text .IA_64.unwind
3476 .text.foo .IA_64.unwind.text.foo
3477 .foo .IA_64.unwind.foo
3478 .gnu.linkonce.t.foo
3479 .gnu.linkonce.ia64unw.foo
3480 _info .IA_64.unwind_info gas issues error message (ditto)
3481 _infoFOO .IA_64.unwind_infoFOO gas issues error message (ditto)
3482
3483 This mapping is done so that:
3484
3485 (a) An object file with unwind info only in .text will use
3486 unwind section names .IA_64.unwind and .IA_64.unwind_info.
3487 This follows the letter of the ABI and also ensures backwards
3488 compatibility with older toolchains.
3489
3490 (b) An object file with unwind info in multiple text sections
3491 will use separate unwind sections for each text section.
3492 This allows us to properly set the "sh_info" and "sh_link"
3493 fields in SHT_IA_64_UNWIND as required by the ABI and also
3494 lets GNU ld support programs with multiple segments
3495 containing unwind info (as might be the case for certain
3496 embedded applications).
3497
3498 (c) An error is issued if there would be a name clash.
3499 */
3500
3501 const char *text_name, *sec_text_name;
3502 char *sec_name;
3503 const char *prefix = special_section_name [sec_index];
3504 const char *suffix;
3505 size_t prefix_len, suffix_len, sec_name_len;
3506
3507 sec_text_name = segment_name (text_seg);
3508 text_name = sec_text_name;
3509 if (strncmp (text_name, "_info", 5) == 0)
3510 {
3511 as_bad ("Illegal section name `%s' (causes unwind section name clash)",
3512 text_name);
3513 ignore_rest_of_line ();
3514 return;
3515 }
3516 if (strcmp (text_name, ".text") == 0)
3517 text_name = "";
3518
3519 /* Build the unwind section name by appending the (possibly stripped)
3520 text section name to the unwind prefix. */
3521 suffix = text_name;
3522 if (strncmp (text_name, ".gnu.linkonce.t.",
3523 sizeof (".gnu.linkonce.t.") - 1) == 0)
3524 {
3525 prefix = special_linkonce_name [sec_index - SPECIAL_SECTION_UNWIND];
3526 suffix += sizeof (".gnu.linkonce.t.") - 1;
3527 }
3528
3529 prefix_len = strlen (prefix);
3530 suffix_len = strlen (suffix);
3531 sec_name_len = prefix_len + suffix_len;
3532 sec_name = alloca (sec_name_len + 1);
3533 memcpy (sec_name, prefix, prefix_len);
3534 memcpy (sec_name + prefix_len, suffix, suffix_len);
3535 sec_name [sec_name_len] = '\0';
3536
3537 /* Handle COMDAT group. */
3538 if (suffix == text_name && (text_seg->flags & SEC_LINK_ONCE) != 0)
3539 {
3540 char *section;
3541 size_t len, group_name_len;
3542 const char *group_name = elf_group_name (text_seg);
3543
3544 if (group_name == NULL)
3545 {
3546 as_bad ("Group section `%s' has no group signature",
3547 sec_text_name);
3548 ignore_rest_of_line ();
3549 return;
3550 }
3551 /* We have to construct a fake section directive. */
3552 group_name_len = strlen (group_name);
3553 len = (sec_name_len
3554 + 16 /* ,"aG",@progbits, */
3555 + group_name_len /* ,group_name */
3556 + 7); /* ,comdat */
3557
3558 section = alloca (len + 1);
3559 memcpy (section, sec_name, sec_name_len);
3560 memcpy (section + sec_name_len, ",\"aG\",@progbits,", 16);
3561 memcpy (section + sec_name_len + 16, group_name, group_name_len);
3562 memcpy (section + len - 7, ",comdat", 7);
3563 section [len] = '\0';
3564 set_section (section);
3565 }
3566 else
3567 {
3568 set_section (sec_name);
3569 bfd_set_section_flags (stdoutput, now_seg,
3570 SEC_LOAD | SEC_ALLOC | SEC_READONLY);
3571 }
3572
3573 elf_linked_to_section (now_seg) = text_seg;
3574 }
3575
3576 static void
3577 generate_unwind_image (const segT text_seg)
3578 {
3579 int size, pad;
3580 unw_rec_list *list;
3581
3582 /* Mark the end of the unwind info, so that we can compute the size of the
3583 last unwind region. */
3584 add_unwind_entry (output_endp ());
3585
3586 /* Force out pending instructions, to make sure all unwind records have
3587 a valid slot_number field. */
3588 ia64_flush_insns ();
3589
3590 /* Generate the unwind record. */
3591 list = optimize_unw_records (unwind.list);
3592 fixup_unw_records (list, 1);
3593 size = calc_record_size (list);
3594
3595 if (size > 0 || unwind.force_unwind_entry)
3596 {
3597 unwind.force_unwind_entry = 0;
3598 /* pad to pointer-size boundary. */
3599 pad = size % md.pointer_size;
3600 if (pad != 0)
3601 size += md.pointer_size - pad;
3602 /* Add 8 for the header. */
3603 size += 8;
3604 /* Add a pointer for the personality offset. */
3605 if (unwind.personality_routine)
3606 size += md.pointer_size;
3607 }
3608
3609 /* If there are unwind records, switch sections, and output the info. */
3610 if (size != 0)
3611 {
3612 expressionS exp;
3613 bfd_reloc_code_real_type reloc;
3614
3615 start_unwind_section (text_seg, SPECIAL_SECTION_UNWIND_INFO);
3616
3617 /* Make sure the section has 4 byte alignment for ILP32 and
3618 8 byte alignment for LP64. */
3619 frag_align (md.pointer_size_shift, 0, 0);
3620 record_alignment (now_seg, md.pointer_size_shift);
3621
3622 /* Set expression which points to start of unwind descriptor area. */
3623 unwind.info = expr_build_dot ();
3624
3625 frag_var (rs_machine_dependent, size, size, 0, 0,
3626 (offsetT) (long) unwind.personality_routine,
3627 (char *) list);
3628
3629 /* Add the personality address to the image. */
3630 if (unwind.personality_routine != 0)
3631 {
3632 exp.X_op = O_symbol;
3633 exp.X_add_symbol = unwind.personality_routine;
3634 exp.X_add_number = 0;
3635
3636 if (md.flags & EF_IA_64_BE)
3637 {
3638 if (md.flags & EF_IA_64_ABI64)
3639 reloc = BFD_RELOC_IA64_LTOFF_FPTR64MSB;
3640 else
3641 reloc = BFD_RELOC_IA64_LTOFF_FPTR32MSB;
3642 }
3643 else
3644 {
3645 if (md.flags & EF_IA_64_ABI64)
3646 reloc = BFD_RELOC_IA64_LTOFF_FPTR64LSB;
3647 else
3648 reloc = BFD_RELOC_IA64_LTOFF_FPTR32LSB;
3649 }
3650
3651 fix_new_exp (frag_now, frag_now_fix () - md.pointer_size,
3652 md.pointer_size, &exp, 0, reloc);
3653 unwind.personality_routine = 0;
3654 }
3655 }
3656
3657 free_saved_prologue_counts ();
3658 unwind.list = unwind.tail = unwind.current_entry = NULL;
3659 }
3660
3661 static void
3662 dot_handlerdata (dummy)
3663 int dummy ATTRIBUTE_UNUSED;
3664 {
3665 if (!in_procedure ("handlerdata"))
3666 return;
3667 unwind.force_unwind_entry = 1;
3668
3669 /* Remember which segment we're in so we can switch back after .endp */
3670 unwind.saved_text_seg = now_seg;
3671 unwind.saved_text_subseg = now_subseg;
3672
3673 /* Generate unwind info into unwind-info section and then leave that
3674 section as the currently active one so dataXX directives go into
3675 the language specific data area of the unwind info block. */
3676 generate_unwind_image (now_seg);
3677 demand_empty_rest_of_line ();
3678 }
3679
3680 static void
3681 dot_unwentry (dummy)
3682 int dummy ATTRIBUTE_UNUSED;
3683 {
3684 if (!in_procedure ("unwentry"))
3685 return;
3686 unwind.force_unwind_entry = 1;
3687 demand_empty_rest_of_line ();
3688 }
3689
3690 static void
3691 dot_altrp (dummy)
3692 int dummy ATTRIBUTE_UNUSED;
3693 {
3694 expressionS e;
3695 unsigned reg;
3696
3697 if (!in_prologue ("altrp"))
3698 return;
3699
3700 parse_operand (&e);
3701 reg = e.X_add_number - REG_BR;
3702 if (e.X_op == O_register && reg < 8)
3703 add_unwind_entry (output_rp_br (reg));
3704 else
3705 as_bad ("First operand not a valid branch register");
3706 }
3707
3708 static void
3709 dot_savemem (psprel)
3710 int psprel;
3711 {
3712 expressionS e1, e2;
3713 int sep;
3714 int reg1, val;
3715
3716 if (!in_prologue (psprel ? "savepsp" : "savesp"))
3717 return;
3718
3719 sep = parse_operand (&e1);
3720 if (sep != ',')
3721 as_bad ("No second operand to .save%ssp", psprel ? "p" : "");
3722 sep = parse_operand (&e2);
3723
3724 reg1 = e1.X_add_number;
3725 val = e2.X_add_number;
3726
3727 /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */
3728 if (e1.X_op == O_register)
3729 {
3730 if (e2.X_op == O_constant)
3731 {
3732 switch (reg1)
3733 {
3734 case REG_AR + AR_BSP:
3735 add_unwind_entry (output_bsp_when ());
3736 add_unwind_entry ((psprel
3737 ? output_bsp_psprel
3738 : output_bsp_sprel) (val));
3739 break;
3740 case REG_AR + AR_BSPSTORE:
3741 add_unwind_entry (output_bspstore_when ());
3742 add_unwind_entry ((psprel
3743 ? output_bspstore_psprel
3744 : output_bspstore_sprel) (val));
3745 break;
3746 case REG_AR + AR_RNAT:
3747 add_unwind_entry (output_rnat_when ());
3748 add_unwind_entry ((psprel
3749 ? output_rnat_psprel
3750 : output_rnat_sprel) (val));
3751 break;
3752 case REG_AR + AR_UNAT:
3753 add_unwind_entry (output_unat_when ());
3754 add_unwind_entry ((psprel
3755 ? output_unat_psprel
3756 : output_unat_sprel) (val));
3757 break;
3758 case REG_AR + AR_FPSR:
3759 add_unwind_entry (output_fpsr_when ());
3760 add_unwind_entry ((psprel
3761 ? output_fpsr_psprel
3762 : output_fpsr_sprel) (val));
3763 break;
3764 case REG_AR + AR_PFS:
3765 add_unwind_entry (output_pfs_when ());
3766 add_unwind_entry ((psprel
3767 ? output_pfs_psprel
3768 : output_pfs_sprel) (val));
3769 break;
3770 case REG_AR + AR_LC:
3771 add_unwind_entry (output_lc_when ());
3772 add_unwind_entry ((psprel
3773 ? output_lc_psprel
3774 : output_lc_sprel) (val));
3775 break;
3776 case REG_BR:
3777 add_unwind_entry (output_rp_when ());
3778 add_unwind_entry ((psprel
3779 ? output_rp_psprel
3780 : output_rp_sprel) (val));
3781 break;
3782 case REG_PR:
3783 add_unwind_entry (output_preds_when ());
3784 add_unwind_entry ((psprel
3785 ? output_preds_psprel
3786 : output_preds_sprel) (val));
3787 break;
3788 case REG_PRIUNAT:
3789 add_unwind_entry (output_priunat_when_mem ());
3790 add_unwind_entry ((psprel
3791 ? output_priunat_psprel
3792 : output_priunat_sprel) (val));
3793 break;
3794 default:
3795 as_bad ("First operand not a valid register");
3796 }
3797 }
3798 else
3799 as_bad (" Second operand not a valid constant");
3800 }
3801 else
3802 as_bad ("First operand not a register");
3803 }
3804
3805 static void
3806 dot_saveg (dummy)
3807 int dummy ATTRIBUTE_UNUSED;
3808 {
3809 expressionS e1, e2;
3810 int sep;
3811
3812 if (!in_prologue ("save.g"))
3813 return;
3814
3815 sep = parse_operand (&e1);
3816 if (sep == ',')
3817 parse_operand (&e2);
3818
3819 if (e1.X_op != O_constant)
3820 as_bad ("First operand to .save.g must be a constant.");
3821 else
3822 {
3823 int grmask = e1.X_add_number;
3824 if (sep != ',')
3825 add_unwind_entry (output_gr_mem (grmask));
3826 else
3827 {
3828 int reg = e2.X_add_number - REG_GR;
3829 if (e2.X_op == O_register && reg >= 0 && reg < 128)
3830 add_unwind_entry (output_gr_gr (grmask, reg));
3831 else
3832 as_bad ("Second operand is an invalid register.");
3833 }
3834 }
3835 }
3836
3837 static void
3838 dot_savef (dummy)
3839 int dummy ATTRIBUTE_UNUSED;
3840 {
3841 expressionS e1;
3842 int sep;
3843
3844 if (!in_prologue ("save.f"))
3845 return;
3846
3847 sep = parse_operand (&e1);
3848
3849 if (e1.X_op != O_constant)
3850 as_bad ("Operand to .save.f must be a constant.");
3851 else
3852 add_unwind_entry (output_fr_mem (e1.X_add_number));
3853 }
3854
3855 static void
3856 dot_saveb (dummy)
3857 int dummy ATTRIBUTE_UNUSED;
3858 {
3859 expressionS e1, e2;
3860 unsigned int reg;
3861 unsigned char sep;
3862 int brmask;
3863
3864 if (!in_prologue ("save.b"))
3865 return;
3866
3867 sep = parse_operand (&e1);
3868 if (e1.X_op != O_constant)
3869 {
3870 as_bad ("First operand to .save.b must be a constant.");
3871 return;
3872 }
3873 brmask = e1.X_add_number;
3874
3875 if (sep == ',')
3876 {
3877 sep = parse_operand (&e2);
3878 reg = e2.X_add_number - REG_GR;
3879 if (e2.X_op != O_register || reg > 127)
3880 {
3881 as_bad ("Second operand to .save.b must be a general register.");
3882 return;
3883 }
3884 add_unwind_entry (output_br_gr (brmask, e2.X_add_number));
3885 }
3886 else
3887 add_unwind_entry (output_br_mem (brmask));
3888
3889 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3890 demand_empty_rest_of_line ();
3891 }
3892
3893 static void
3894 dot_savegf (dummy)
3895 int dummy ATTRIBUTE_UNUSED;
3896 {
3897 expressionS e1, e2;
3898 int sep;
3899
3900 if (!in_prologue ("save.gf"))
3901 return;
3902
3903 sep = parse_operand (&e1);
3904 if (sep == ',')
3905 parse_operand (&e2);
3906
3907 if (e1.X_op != O_constant || sep != ',' || e2.X_op != O_constant)
3908 as_bad ("Both operands of .save.gf must be constants.");
3909 else
3910 {
3911 int grmask = e1.X_add_number;
3912 int frmask = e2.X_add_number;
3913 add_unwind_entry (output_frgr_mem (grmask, frmask));
3914 }
3915 }
3916
3917 static void
3918 dot_spill (dummy)
3919 int dummy ATTRIBUTE_UNUSED;
3920 {
3921 expressionS e;
3922 unsigned char sep;
3923
3924 if (!in_prologue ("spill"))
3925 return;
3926
3927 sep = parse_operand (&e);
3928 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
3929 demand_empty_rest_of_line ();
3930
3931 if (e.X_op != O_constant)
3932 as_bad ("Operand to .spill must be a constant");
3933 else
3934 add_unwind_entry (output_spill_base (e.X_add_number));
3935 }
3936
3937 static void
3938 dot_spillreg (dummy)
3939 int dummy ATTRIBUTE_UNUSED;
3940 {
3941 int sep;
3942 unsigned int ab, xy, reg, treg;
3943 expressionS e1, e2;
3944
3945 if (!in_procedure ("spillreg"))
3946 return;
3947
3948 sep = parse_operand (&e1);
3949 if (sep != ',')
3950 {
3951 as_bad ("No second operand to .spillreg");
3952 return;
3953 }
3954
3955 parse_operand (&e2);
3956
3957 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3958 {
3959 as_bad ("First operand to .spillreg must be a preserved register");
3960 return;
3961 }
3962
3963 if (!convert_expr_to_xy_reg (&e2, &xy, &treg))
3964 {
3965 as_bad ("Second operand to .spillreg must be a register");
3966 return;
3967 }
3968
3969 add_unwind_entry (output_spill_reg (ab, reg, treg, xy));
3970 }
3971
3972 static void
3973 dot_spillmem (psprel)
3974 int psprel;
3975 {
3976 expressionS e1, e2;
3977 int sep;
3978 unsigned int ab, reg;
3979
3980 if (!in_procedure ("spillmem"))
3981 return;
3982
3983 sep = parse_operand (&e1);
3984 if (sep != ',')
3985 {
3986 as_bad ("Second operand missing");
3987 return;
3988 }
3989
3990 parse_operand (&e2);
3991
3992 if (!convert_expr_to_ab_reg (&e1, &ab, &reg))
3993 {
3994 as_bad ("First operand to .spill%s must be a preserved register",
3995 psprel ? "psp" : "sp");
3996 return;
3997 }
3998
3999 if (e2.X_op != O_constant)
4000 {
4001 as_bad ("Second operand to .spill%s must be a constant",
4002 psprel ? "psp" : "sp");
4003 return;
4004 }
4005
4006 if (psprel)
4007 add_unwind_entry (output_spill_psprel (ab, reg, e2.X_add_number));
4008 else
4009 add_unwind_entry (output_spill_sprel (ab, reg, e2.X_add_number));
4010 }
4011
4012 static void
4013 dot_spillreg_p (dummy)
4014 int dummy ATTRIBUTE_UNUSED;
4015 {
4016 int sep;
4017 unsigned int ab, xy, reg, treg;
4018 expressionS e1, e2, e3;
4019 unsigned int qp;
4020
4021 if (!in_procedure ("spillreg.p"))
4022 return;
4023
4024 sep = parse_operand (&e1);
4025 if (sep != ',')
4026 {
4027 as_bad ("No second and third operand to .spillreg.p");
4028 return;
4029 }
4030
4031 sep = parse_operand (&e2);
4032 if (sep != ',')
4033 {
4034 as_bad ("No third operand to .spillreg.p");
4035 return;
4036 }
4037
4038 parse_operand (&e3);
4039
4040 qp = e1.X_add_number - REG_P;
4041
4042 if (e1.X_op != O_register || qp > 63)
4043 {
4044 as_bad ("First operand to .spillreg.p must be a predicate");
4045 return;
4046 }
4047
4048 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
4049 {
4050 as_bad ("Second operand to .spillreg.p must be a preserved register");
4051 return;
4052 }
4053
4054 if (!convert_expr_to_xy_reg (&e3, &xy, &treg))
4055 {
4056 as_bad ("Third operand to .spillreg.p must be a register");
4057 return;
4058 }
4059
4060 add_unwind_entry (output_spill_reg_p (ab, reg, treg, xy, qp));
4061 }
4062
4063 static void
4064 dot_spillmem_p (psprel)
4065 int psprel;
4066 {
4067 expressionS e1, e2, e3;
4068 int sep;
4069 unsigned int ab, reg;
4070 unsigned int qp;
4071
4072 if (!in_procedure ("spillmem.p"))
4073 return;
4074
4075 sep = parse_operand (&e1);
4076 if (sep != ',')
4077 {
4078 as_bad ("Second operand missing");
4079 return;
4080 }
4081
4082 parse_operand (&e2);
4083 if (sep != ',')
4084 {
4085 as_bad ("Second operand missing");
4086 return;
4087 }
4088
4089 parse_operand (&e3);
4090
4091 qp = e1.X_add_number - REG_P;
4092 if (e1.X_op != O_register || qp > 63)
4093 {
4094 as_bad ("First operand to .spill%s_p must be a predicate",
4095 psprel ? "psp" : "sp");
4096 return;
4097 }
4098
4099 if (!convert_expr_to_ab_reg (&e2, &ab, &reg))
4100 {
4101 as_bad ("Second operand to .spill%s_p must be a preserved register",
4102 psprel ? "psp" : "sp");
4103 return;
4104 }
4105
4106 if (e3.X_op != O_constant)
4107 {
4108 as_bad ("Third operand to .spill%s_p must be a constant",
4109 psprel ? "psp" : "sp");
4110 return;
4111 }
4112
4113 if (psprel)
4114 add_unwind_entry (output_spill_psprel_p (ab, reg, e3.X_add_number, qp));
4115 else
4116 add_unwind_entry (output_spill_sprel_p (ab, reg, e3.X_add_number, qp));
4117 }
4118
4119 static unsigned int
4120 get_saved_prologue_count (lbl)
4121 unsigned long lbl;
4122 {
4123 label_prologue_count *lpc = unwind.saved_prologue_counts;
4124
4125 while (lpc != NULL && lpc->label_number != lbl)
4126 lpc = lpc->next;
4127
4128 if (lpc != NULL)
4129 return lpc->prologue_count;
4130
4131 as_bad ("Missing .label_state %ld", lbl);
4132 return 1;
4133 }
4134
4135 static void
4136 save_prologue_count (lbl, count)
4137 unsigned long lbl;
4138 unsigned int count;
4139 {
4140 label_prologue_count *lpc = unwind.saved_prologue_counts;
4141
4142 while (lpc != NULL && lpc->label_number != lbl)
4143 lpc = lpc->next;
4144
4145 if (lpc != NULL)
4146 lpc->prologue_count = count;
4147 else
4148 {
4149 label_prologue_count *new_lpc = xmalloc (sizeof (* new_lpc));
4150
4151 new_lpc->next = unwind.saved_prologue_counts;
4152 new_lpc->label_number = lbl;
4153 new_lpc->prologue_count = count;
4154 unwind.saved_prologue_counts = new_lpc;
4155 }
4156 }
4157
4158 static void
4159 free_saved_prologue_counts ()
4160 {
4161 label_prologue_count *lpc = unwind.saved_prologue_counts;
4162 label_prologue_count *next;
4163
4164 while (lpc != NULL)
4165 {
4166 next = lpc->next;
4167 free (lpc);
4168 lpc = next;
4169 }
4170
4171 unwind.saved_prologue_counts = NULL;
4172 }
4173
4174 static void
4175 dot_label_state (dummy)
4176 int dummy ATTRIBUTE_UNUSED;
4177 {
4178 expressionS e;
4179
4180 if (!in_body ("label_state"))
4181 return;
4182
4183 parse_operand (&e);
4184 if (e.X_op != O_constant)
4185 {
4186 as_bad ("Operand to .label_state must be a constant");
4187 return;
4188 }
4189 add_unwind_entry (output_label_state (e.X_add_number));
4190 save_prologue_count (e.X_add_number, unwind.prologue_count);
4191 }
4192
4193 static void
4194 dot_copy_state (dummy)
4195 int dummy ATTRIBUTE_UNUSED;
4196 {
4197 expressionS e;
4198
4199 if (!in_body ("copy_state"))
4200 return;
4201
4202 parse_operand (&e);
4203 if (e.X_op != O_constant)
4204 {
4205 as_bad ("Operand to .copy_state must be a constant");
4206 return;
4207 }
4208 add_unwind_entry (output_copy_state (e.X_add_number));
4209 unwind.prologue_count = get_saved_prologue_count (e.X_add_number);
4210 }
4211
4212 static void
4213 dot_unwabi (dummy)
4214 int dummy ATTRIBUTE_UNUSED;
4215 {
4216 expressionS e1, e2;
4217 unsigned char sep;
4218
4219 if (!in_procedure ("unwabi"))
4220 return;
4221
4222 sep = parse_operand (&e1);
4223 if (sep != ',')
4224 {
4225 as_bad ("Second operand to .unwabi missing");
4226 return;
4227 }
4228 sep = parse_operand (&e2);
4229 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
4230 demand_empty_rest_of_line ();
4231
4232 if (e1.X_op != O_constant)
4233 {
4234 as_bad ("First operand to .unwabi must be a constant");
4235 return;
4236 }
4237
4238 if (e2.X_op != O_constant)
4239 {
4240 as_bad ("Second operand to .unwabi must be a constant");
4241 return;
4242 }
4243
4244 add_unwind_entry (output_unwabi (e1.X_add_number, e2.X_add_number));
4245 }
4246
4247 static void
4248 dot_personality (dummy)
4249 int dummy ATTRIBUTE_UNUSED;
4250 {
4251 char *name, *p, c;
4252 if (!in_procedure ("personality"))
4253 return;
4254 SKIP_WHITESPACE ();
4255 name = input_line_pointer;
4256 c = get_symbol_end ();
4257 p = input_line_pointer;
4258 unwind.personality_routine = symbol_find_or_make (name);
4259 unwind.force_unwind_entry = 1;
4260 *p = c;
4261 SKIP_WHITESPACE ();
4262 demand_empty_rest_of_line ();
4263 }
4264
4265 static void
4266 dot_proc (dummy)
4267 int dummy ATTRIBUTE_UNUSED;
4268 {
4269 char *name, *p, c;
4270 symbolS *sym;
4271
4272 unwind.proc_start = 0;
4273 /* Parse names of main and alternate entry points and mark them as
4274 function symbols: */
4275 while (1)
4276 {
4277 SKIP_WHITESPACE ();
4278 name = input_line_pointer;
4279 c = get_symbol_end ();
4280 p = input_line_pointer;
4281 if (!*name)
4282 as_bad ("Empty argument of .proc");
4283 else
4284 {
4285 sym = symbol_find_or_make (name);
4286 if (S_IS_DEFINED (sym))
4287 as_bad ("`%s' was already defined", name);
4288 else if (unwind.proc_start == 0)
4289 {
4290 unwind.proc_start = sym;
4291 }
4292 symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION;
4293 }
4294 *p = c;
4295 SKIP_WHITESPACE ();
4296 if (*input_line_pointer != ',')
4297 break;
4298 ++input_line_pointer;
4299 }
4300 if (unwind.proc_start == 0)
4301 unwind.proc_start = expr_build_dot ();
4302 demand_empty_rest_of_line ();
4303 ia64_do_align (16);
4304
4305 unwind.prologue = 0;
4306 unwind.prologue_count = 0;
4307 unwind.body = 0;
4308 unwind.insn = 0;
4309 unwind.list = unwind.tail = unwind.current_entry = NULL;
4310 unwind.personality_routine = 0;
4311 }
4312
4313 static void
4314 dot_body (dummy)
4315 int dummy ATTRIBUTE_UNUSED;
4316 {
4317 if (!in_procedure ("body"))
4318 return;
4319 if (!unwind.prologue && !unwind.body && unwind.insn)
4320 as_warn ("Initial .body should precede any instructions");
4321
4322 unwind.prologue = 0;
4323 unwind.prologue_mask = 0;
4324 unwind.body = 1;
4325
4326 add_unwind_entry (output_body ());
4327 demand_empty_rest_of_line ();
4328 }
4329
4330 static void
4331 dot_prologue (dummy)
4332 int dummy ATTRIBUTE_UNUSED;
4333 {
4334 unsigned char sep;
4335 int mask = 0, grsave = 0;
4336
4337 if (!in_procedure ("prologue"))
4338 return;
4339 if (unwind.prologue)
4340 {
4341 as_bad (".prologue within prologue");
4342 ignore_rest_of_line ();
4343 return;
4344 }
4345 if (!unwind.body && unwind.insn)
4346 as_warn ("Initial .prologue should precede any instructions");
4347
4348 if (!is_it_end_of_statement ())
4349 {
4350 expressionS e1, e2;
4351 sep = parse_operand (&e1);
4352 if (sep != ',')
4353 as_bad ("No second operand to .prologue");
4354 sep = parse_operand (&e2);
4355 if (!is_end_of_line[sep] && !is_it_end_of_statement ())
4356 demand_empty_rest_of_line ();
4357
4358 if (e1.X_op == O_constant)
4359 {
4360 mask = e1.X_add_number;
4361
4362 if (e2.X_op == O_constant)
4363 grsave = e2.X_add_number;
4364 else if (e2.X_op == O_register
4365 && (grsave = e2.X_add_number - REG_GR) < 128)
4366 ;
4367 else
4368 as_bad ("Second operand not a constant or general register");
4369
4370 add_unwind_entry (output_prologue_gr (mask, grsave));
4371 }
4372 else
4373 as_bad ("First operand not a constant");
4374 }
4375 else
4376 add_unwind_entry (output_prologue ());
4377
4378 unwind.prologue = 1;
4379 unwind.prologue_mask = mask;
4380 unwind.body = 0;
4381 ++unwind.prologue_count;
4382 }
4383
4384 static void
4385 dot_endp (dummy)
4386 int dummy ATTRIBUTE_UNUSED;
4387 {
4388 expressionS e;
4389 char *ptr;
4390 int bytes_per_address;
4391 long where;
4392 segT saved_seg;
4393 subsegT saved_subseg;
4394 char *name, *default_name, *p, c;
4395 symbolS *sym;
4396 int unwind_check = md.unwind_check;
4397
4398 md.unwind_check = unwind_check_error;
4399 if (!in_procedure ("endp"))
4400 return;
4401 md.unwind_check = unwind_check;
4402
4403 if (unwind.saved_text_seg)
4404 {
4405 saved_seg = unwind.saved_text_seg;
4406 saved_subseg = unwind.saved_text_subseg;
4407 unwind.saved_text_seg = NULL;
4408 }
4409 else
4410 {
4411 saved_seg = now_seg;
4412 saved_subseg = now_subseg;
4413 }
4414
4415 insn_group_break (1, 0, 0);
4416
4417 /* If there wasn't a .handlerdata, we haven't generated an image yet. */
4418 if (!unwind.info)
4419 generate_unwind_image (saved_seg);
4420
4421 if (unwind.info || unwind.force_unwind_entry)
4422 {
4423 symbolS *proc_end;
4424
4425 subseg_set (md.last_text_seg, 0);
4426 proc_end = expr_build_dot ();
4427
4428 start_unwind_section (saved_seg, SPECIAL_SECTION_UNWIND);
4429
4430 /* Make sure that section has 4 byte alignment for ILP32 and
4431 8 byte alignment for LP64. */
4432 record_alignment (now_seg, md.pointer_size_shift);
4433
4434 /* Need space for 3 pointers for procedure start, procedure end,
4435 and unwind info. */
4436 ptr = frag_more (3 * md.pointer_size);
4437 where = frag_now_fix () - (3 * md.pointer_size);
4438 bytes_per_address = bfd_arch_bits_per_address (stdoutput) / 8;
4439
4440 /* Issue the values of a) Proc Begin, b) Proc End, c) Unwind Record. */
4441 e.X_op = O_pseudo_fixup;
4442 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
4443 e.X_add_number = 0;
4444 e.X_add_symbol = unwind.proc_start;
4445 ia64_cons_fix_new (frag_now, where, bytes_per_address, &e);
4446
4447 e.X_op = O_pseudo_fixup;
4448 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
4449 e.X_add_number = 0;
4450 e.X_add_symbol = proc_end;
4451 ia64_cons_fix_new (frag_now, where + bytes_per_address,
4452 bytes_per_address, &e);
4453
4454 if (unwind.info)
4455 {
4456 e.X_op = O_pseudo_fixup;
4457 e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym;
4458 e.X_add_number = 0;
4459 e.X_add_symbol = unwind.info;
4460 ia64_cons_fix_new (frag_now, where + (bytes_per_address * 2),
4461 bytes_per_address, &e);
4462 }
4463 else
4464 md_number_to_chars (ptr + (bytes_per_address * 2), 0,
4465 bytes_per_address);
4466
4467 }
4468 subseg_set (saved_seg, saved_subseg);
4469
4470 if (unwind.proc_start)
4471 default_name = (char *) S_GET_NAME (unwind.proc_start);
4472 else
4473 default_name = NULL;
4474
4475 /* Parse names of main and alternate entry points and set symbol sizes. */
4476 while (1)
4477 {
4478 SKIP_WHITESPACE ();
4479 name = input_line_pointer;
4480 c = get_symbol_end ();
4481 p = input_line_pointer;
4482 if (!*name)
4483 {
4484 if (md.unwind_check == unwind_check_warning)
4485 {
4486 if (default_name)
4487 {
4488 as_warn ("Empty argument of .endp. Use the default name `%s'",
4489 default_name);
4490 name = default_name;
4491 }
4492 else
4493 as_warn ("Empty argument of .endp");
4494 }
4495 else
4496 as_bad ("Empty argument of .endp");
4497 }
4498 if (*name)
4499 {
4500 sym = symbol_find (name);
4501 if (!sym
4502 && md.unwind_check == unwind_check_warning
4503 && default_name
4504 && default_name != name)
4505 {
4506 /* We have a bad name. Try the default one if needed. */
4507 as_warn ("`%s' was not defined within procedure. Use the default name `%s'",
4508 name, default_name);
4509 name = default_name;
4510 sym = symbol_find (name);
4511 }
4512 if (!sym || !S_IS_DEFINED (sym))
4513 as_bad ("`%s' was not defined within procedure", name);
4514 else if (unwind.proc_start
4515 && (symbol_get_bfdsym (sym)->flags & BSF_FUNCTION)
4516 && S_GET_SIZE (sym) == 0 && symbol_get_obj (sym)->size == NULL)
4517 {
4518 fragS *fr = symbol_get_frag (unwind.proc_start);
4519 fragS *frag = symbol_get_frag (sym);
4520
4521 /* Check whether the function label is at or beyond last
4522 .proc directive. */
4523 while (fr && fr != frag)
4524 fr = fr->fr_next;
4525 if (fr)
4526 {
4527 if (frag == frag_now && SEG_NORMAL (now_seg))
4528 S_SET_SIZE (sym, frag_now_fix () - S_GET_VALUE (sym));
4529 else
4530 {
4531 symbol_get_obj (sym)->size =
4532 (expressionS *) xmalloc (sizeof (expressionS));
4533 symbol_get_obj (sym)->size->X_op = O_subtract;
4534 symbol_get_obj (sym)->size->X_add_symbol
4535 = symbol_new (FAKE_LABEL_NAME, now_seg,
4536 frag_now_fix (), frag_now);
4537 symbol_get_obj (sym)->size->X_op_symbol = sym;
4538 symbol_get_obj (sym)->size->X_add_number = 0;
4539 }
4540 }
4541 }
4542 }
4543 *p = c;
4544 SKIP_WHITESPACE ();
4545 if (*input_line_pointer != ',')
4546 break;
4547 ++input_line_pointer;
4548 }
4549 demand_empty_rest_of_line ();
4550 unwind.proc_start = unwind.info = 0;
4551 }
4552
4553 static void
4554 dot_template (template)
4555 int template;
4556 {
4557 CURR_SLOT.user_template = template;
4558 }
4559
4560 static void
4561 dot_regstk (dummy)
4562 int dummy ATTRIBUTE_UNUSED;
4563 {
4564 int ins, locs, outs, rots;
4565
4566 if (is_it_end_of_statement ())
4567 ins = locs = outs = rots = 0;
4568 else
4569 {
4570 ins = get_absolute_expression ();
4571 if (*input_line_pointer++ != ',')
4572 goto err;
4573 locs = get_absolute_expression ();
4574 if (*input_line_pointer++ != ',')
4575 goto err;
4576 outs = get_absolute_expression ();
4577 if (*input_line_pointer++ != ',')
4578 goto err;
4579 rots = get_absolute_expression ();
4580 }
4581 set_regstack (ins, locs, outs, rots);
4582 return;
4583
4584 err:
4585 as_bad ("Comma expected");
4586 ignore_rest_of_line ();
4587 }
4588
4589 static void
4590 dot_rot (type)
4591 int type;
4592 {
4593 unsigned num_regs, num_alloced = 0;
4594 struct dynreg **drpp, *dr;
4595 int ch, base_reg = 0;
4596 char *name, *start;
4597 size_t len;
4598
4599 switch (type)
4600 {
4601 case DYNREG_GR: base_reg = REG_GR + 32; break;
4602 case DYNREG_FR: base_reg = REG_FR + 32; break;
4603 case DYNREG_PR: base_reg = REG_P + 16; break;
4604 default: break;
4605 }
4606
4607 /* First, remove existing names from hash table. */
4608 for (dr = md.dynreg[type]; dr && dr->num_regs; dr = dr->next)
4609 {
4610 hash_delete (md.dynreg_hash, dr->name);
4611 /* FIXME: Free dr->name. */
4612 dr->num_regs = 0;
4613 }
4614
4615 drpp = &md.dynreg[type];
4616 while (1)
4617 {
4618 start = input_line_pointer;
4619 ch = get_symbol_end ();
4620 len = strlen (ia64_canonicalize_symbol_name (start));
4621 *input_line_pointer = ch;
4622
4623 SKIP_WHITESPACE ();
4624 if (*input_line_pointer != '[')
4625 {
4626 as_bad ("Expected '['");
4627 goto err;
4628 }
4629 ++input_line_pointer; /* skip '[' */
4630
4631 num_regs = get_absolute_expression ();
4632
4633 if (*input_line_pointer++ != ']')
4634 {
4635 as_bad ("Expected ']'");
4636 goto err;
4637 }
4638 SKIP_WHITESPACE ();
4639
4640 num_alloced += num_regs;
4641 switch (type)
4642 {
4643 case DYNREG_GR:
4644 if (num_alloced > md.rot.num_regs)
4645 {
4646 as_bad ("Used more than the declared %d rotating registers",
4647 md.rot.num_regs);
4648 goto err;
4649 }
4650 break;
4651 case DYNREG_FR:
4652 if (num_alloced > 96)
4653 {
4654 as_bad ("Used more than the available 96 rotating registers");
4655 goto err;
4656 }
4657 break;
4658 case DYNREG_PR:
4659 if (num_alloced > 48)
4660 {
4661 as_bad ("Used more than the available 48 rotating registers");
4662 goto err;
4663 }
4664 break;
4665
4666 default:
4667 break;
4668 }
4669
4670 if (!*drpp)
4671 {
4672 *drpp = obstack_alloc (&notes, sizeof (*dr));
4673 memset (*drpp, 0, sizeof (*dr));
4674 }
4675
4676 name = obstack_alloc (&notes, len + 1);
4677 memcpy (name, start, len);
4678 name[len] = '\0';
4679
4680 dr = *drpp;
4681 dr->name = name;
4682 dr->num_regs = num_regs;
4683 dr->base = base_reg;
4684 drpp = &dr->next;
4685 base_reg += num_regs;
4686
4687 if (hash_insert (md.dynreg_hash, name, dr))
4688 {
4689 as_bad ("Attempt to redefine register set `%s'", name);
4690 obstack_free (&notes, name);
4691 goto err;
4692 }
4693
4694 if (*input_line_pointer != ',')
4695 break;
4696 ++input_line_pointer; /* skip comma */
4697 SKIP_WHITESPACE ();
4698 }
4699 demand_empty_rest_of_line ();
4700 return;
4701
4702 err:
4703 ignore_rest_of_line ();
4704 }
4705
4706 static void
4707 dot_byteorder (byteorder)
4708 int byteorder;
4709 {
4710 segment_info_type *seginfo = seg_info (now_seg);
4711
4712 if (byteorder == -1)
4713 {
4714 if (seginfo->tc_segment_info_data.endian == 0)
4715 seginfo->tc_segment_info_data.endian = default_big_endian ? 1 : 2;
4716 byteorder = seginfo->tc_segment_info_data.endian == 1;
4717 }
4718 else
4719 seginfo->tc_segment_info_data.endian = byteorder ? 1 : 2;
4720
4721 if (target_big_endian != byteorder)
4722 {
4723 target_big_endian = byteorder;
4724 if (target_big_endian)
4725 {
4726 ia64_number_to_chars = number_to_chars_bigendian;
4727 ia64_float_to_chars = ia64_float_to_chars_bigendian;
4728 }
4729 else
4730 {
4731 ia64_number_to_chars = number_to_chars_littleendian;
4732 ia64_float_to_chars = ia64_float_to_chars_littleendian;
4733 }
4734 }
4735 }
4736
4737 static void
4738 dot_psr (dummy)
4739 int dummy ATTRIBUTE_UNUSED;
4740 {
4741 char *option;
4742 int ch;
4743
4744 while (1)
4745 {
4746 option = input_line_pointer;
4747 ch = get_symbol_end ();
4748 if (strcmp (option, "lsb") == 0)
4749 md.flags &= ~EF_IA_64_BE;
4750 else if (strcmp (option, "msb") == 0)
4751 md.flags |= EF_IA_64_BE;
4752 else if (strcmp (option, "abi32") == 0)
4753 md.flags &= ~EF_IA_64_ABI64;
4754 else if (strcmp (option, "abi64") == 0)
4755 md.flags |= EF_IA_64_ABI64;
4756 else
4757 as_bad ("Unknown psr option `%s'", option);
4758 *input_line_pointer = ch;
4759
4760 SKIP_WHITESPACE ();
4761 if (*input_line_pointer != ',')
4762 break;
4763
4764 ++input_line_pointer;
4765 SKIP_WHITESPACE ();
4766 }
4767 demand_empty_rest_of_line ();
4768 }
4769
4770 static void
4771 dot_ln (dummy)
4772 int dummy ATTRIBUTE_UNUSED;
4773 {
4774 new_logical_line (0, get_absolute_expression ());
4775 demand_empty_rest_of_line ();
4776 }
4777
4778 static void
4779 cross_section (ref, cons, ua)
4780 int ref;
4781 void (*cons) PARAMS((int));
4782 int ua;
4783 {
4784 char *start, *end;
4785 int saved_auto_align;
4786 unsigned int section_count;
4787
4788 SKIP_WHITESPACE ();
4789 start = input_line_pointer;
4790 if (*start == '"')
4791 {
4792 int len;
4793 char *name;
4794
4795 name = demand_copy_C_string (&len);
4796 obstack_free(&notes, name);
4797 if (!name)
4798 {
4799 ignore_rest_of_line ();
4800 return;
4801 }
4802 }
4803 else
4804 {
4805 char c = get_symbol_end ();
4806
4807 if (input_line_pointer == start)
4808 {
4809 as_bad ("Missing section name");
4810 ignore_rest_of_line ();
4811 return;
4812 }
4813 *input_line_pointer = c;
4814 }
4815 end = input_line_pointer;
4816 SKIP_WHITESPACE ();
4817 if (*input_line_pointer != ',')
4818 {
4819 as_bad ("Comma expected after section name");
4820 ignore_rest_of_line ();
4821 return;
4822 }
4823 *end = '\0';
4824 end = input_line_pointer + 1; /* skip comma */
4825 input_line_pointer = start;
4826 md.keep_pending_output = 1;
4827 section_count = bfd_count_sections(stdoutput);
4828 obj_elf_section (0);
4829 if (section_count != bfd_count_sections(stdoutput))
4830 as_warn ("Creating sections with .xdataN/.xrealN/.xstringZ is deprecated.");
4831 input_line_pointer = end;
4832 saved_auto_align = md.auto_align;
4833 if (ua)
4834 md.auto_align = 0;
4835 (*cons) (ref);
4836 if (ua)
4837 md.auto_align = saved_auto_align;
4838 obj_elf_previous (0);
4839 md.keep_pending_output = 0;
4840 }
4841
4842 static void
4843 dot_xdata (size)
4844 int size;
4845 {
4846 cross_section (size, cons, 0);
4847 }
4848
4849 /* Why doesn't float_cons() call md_cons_align() the way cons() does? */
4850
4851 static void
4852 stmt_float_cons (kind)
4853 int kind;
4854 {
4855 size_t alignment;
4856
4857 switch (kind)
4858 {
4859 case 'd':
4860 alignment = 8;
4861 break;
4862
4863 case 'x':
4864 case 'X':
4865 alignment = 16;
4866 break;
4867
4868 case 'f':
4869 default:
4870 alignment = 4;
4871 break;
4872 }
4873 ia64_do_align (alignment);
4874 float_cons (kind);
4875 }
4876
4877 static void
4878 stmt_cons_ua (size)
4879 int size;
4880 {
4881 int saved_auto_align = md.auto_align;
4882
4883 md.auto_align = 0;
4884 cons (size);
4885 md.auto_align = saved_auto_align;
4886 }
4887
4888 static void
4889 dot_xfloat_cons (kind)
4890 int kind;
4891 {
4892 cross_section (kind, stmt_float_cons, 0);
4893 }
4894
4895 static void
4896 dot_xstringer (zero)
4897 int zero;
4898 {
4899 cross_section (zero, stringer, 0);
4900 }
4901
4902 static void
4903 dot_xdata_ua (size)
4904 int size;
4905 {
4906 cross_section (size, cons, 1);
4907 }
4908
4909 static void
4910 dot_xfloat_cons_ua (kind)
4911 int kind;
4912 {
4913 cross_section (kind, float_cons, 1);
4914 }
4915
4916 /* .reg.val <regname>,value */
4917
4918 static void
4919 dot_reg_val (dummy)
4920 int dummy ATTRIBUTE_UNUSED;
4921 {
4922 expressionS reg;
4923
4924 expression (&reg);
4925 if (reg.X_op != O_register)
4926 {
4927 as_bad (_("Register name expected"));
4928 ignore_rest_of_line ();
4929 }
4930 else if (*input_line_pointer++ != ',')
4931 {
4932 as_bad (_("Comma expected"));
4933 ignore_rest_of_line ();
4934 }
4935 else
4936 {
4937 valueT value = get_absolute_expression ();
4938 int regno = reg.X_add_number;
4939 if (regno <= REG_GR || regno > REG_GR + 127)
4940 as_warn (_("Register value annotation ignored"));
4941 else
4942 {
4943 gr_values[regno - REG_GR].known = 1;
4944 gr_values[regno - REG_GR].value = value;
4945 gr_values[regno - REG_GR].path = md.path;
4946 }
4947 }
4948 demand_empty_rest_of_line ();
4949 }
4950
4951 /*
4952 .serialize.data
4953 .serialize.instruction
4954 */
4955 static void
4956 dot_serialize (type)
4957 int type;
4958 {
4959 insn_group_break (0, 0, 0);
4960 if (type)
4961 instruction_serialization ();
4962 else
4963 data_serialization ();
4964 insn_group_break (0, 0, 0);
4965 demand_empty_rest_of_line ();
4966 }
4967
4968 /* select dv checking mode
4969 .auto
4970 .explicit
4971 .default
4972
4973 A stop is inserted when changing modes
4974 */
4975
4976 static void
4977 dot_dv_mode (type)
4978 int type;
4979 {
4980 if (md.manual_bundling)
4981 as_warn (_("Directive invalid within a bundle"));
4982
4983 if (type == 'E' || type == 'A')
4984 md.mode_explicitly_set = 0;
4985 else
4986 md.mode_explicitly_set = 1;
4987
4988 md.detect_dv = 1;
4989 switch (type)
4990 {
4991 case 'A':
4992 case 'a':
4993 if (md.explicit_mode)
4994 insn_group_break (1, 0, 0);
4995 md.explicit_mode = 0;
4996 break;
4997 case 'E':
4998 case 'e':
4999 if (!md.explicit_mode)
5000 insn_group_break (1, 0, 0);
5001 md.explicit_mode = 1;
5002 break;
5003 default:
5004 case 'd':
5005 if (md.explicit_mode != md.default_explicit_mode)
5006 insn_group_break (1, 0, 0);
5007 md.explicit_mode = md.default_explicit_mode;
5008 md.mode_explicitly_set = 0;
5009 break;
5010 }
5011 }
5012
5013 static void
5014 print_prmask (mask)
5015 valueT mask;
5016 {
5017 int regno;
5018 char *comma = "";
5019 for (regno = 0; regno < 64; regno++)
5020 {
5021 if (mask & ((valueT) 1 << regno))
5022 {
5023 fprintf (stderr, "%s p%d", comma, regno);
5024 comma = ",";
5025 }
5026 }
5027 }
5028
5029 /*
5030 .pred.rel.clear [p1 [,p2 [,...]]] (also .pred.rel "clear" or @clear)
5031 .pred.rel.imply p1, p2 (also .pred.rel "imply" or @imply)
5032 .pred.rel.mutex p1, p2 [,...] (also .pred.rel "mutex" or @mutex)
5033 .pred.safe_across_calls p1 [, p2 [,...]]
5034 */
5035
5036 static void
5037 dot_pred_rel (type)
5038 int type;
5039 {
5040 valueT mask = 0;
5041 int count = 0;
5042 int p1 = -1, p2 = -1;
5043
5044 if (type == 0)
5045 {
5046 if (*input_line_pointer == '"')
5047 {
5048 int len;
5049 char *form = demand_copy_C_string (&len);
5050
5051 if (strcmp (form, "mutex") == 0)
5052 type = 'm';
5053 else if (strcmp (form, "clear") == 0)
5054 type = 'c';
5055 else if (strcmp (form, "imply") == 0)
5056 type = 'i';
5057 obstack_free (&notes, form);
5058 }
5059 else if (*input_line_pointer == '@')
5060 {
5061 char *form = ++input_line_pointer;
5062 char c = get_symbol_end();
5063
5064 if (strcmp (form, "mutex") == 0)
5065 type = 'm';
5066 else if (strcmp (form, "clear") == 0)
5067 type = 'c';
5068 else if (strcmp (form, "imply") == 0)
5069 type = 'i';
5070 *input_line_pointer = c;
5071 }
5072 else
5073 {
5074 as_bad (_("Missing predicate relation type"));
5075 ignore_rest_of_line ();
5076 return;
5077 }
5078 if (type == 0)
5079 {
5080 as_bad (_("Unrecognized predicate relation type"));
5081 ignore_rest_of_line ();
5082 return;
5083 }
5084 if (*input_line_pointer == ',')
5085 ++input_line_pointer;
5086 SKIP_WHITESPACE ();
5087 }
5088
5089 SKIP_WHITESPACE ();
5090 while (1)
5091 {
5092 valueT bits = 1;
5093 int regno;
5094 expressionS pr, *pr1, *pr2;
5095
5096 expression (&pr);
5097 if (pr.X_op == O_register
5098 && pr.X_add_number >= REG_P
5099 && pr.X_add_number <= REG_P + 63)
5100 {
5101 regno = pr.X_add_number - REG_P;
5102 bits <<= regno;
5103 count++;
5104 if (p1 == -1)
5105 p1 = regno;
5106 else if (p2 == -1)
5107 p2 = regno;
5108 }
5109 else if (type != 'i'
5110 && pr.X_op == O_subtract
5111 && (pr1 = symbol_get_value_expression (pr.X_add_symbol))
5112 && pr1->X_op == O_register
5113 && pr1->X_add_number >= REG_P
5114 && pr1->X_add_number <= REG_P + 63
5115 && (pr2 = symbol_get_value_expression (pr.X_op_symbol))
5116 && pr2->X_op == O_register
5117 && pr2->X_add_number >= REG_P
5118 && pr2->X_add_number <= REG_P + 63)
5119 {
5120 /* It's a range. */
5121 int stop;
5122
5123 regno = pr1->X_add_number - REG_P;
5124 stop = pr2->X_add_number - REG_P;
5125 if (regno >= stop)
5126 {
5127 as_bad (_("Bad register range"));
5128 ignore_rest_of_line ();
5129 return;
5130 }
5131 bits = ((bits << stop) << 1) - (bits << regno);
5132 count += stop - regno + 1;
5133 }
5134 else
5135 {
5136 as_bad (_("Predicate register expected"));
5137 ignore_rest_of_line ();
5138 return;
5139 }
5140 if (mask & bits)
5141 as_warn (_("Duplicate predicate register ignored"));
5142 mask |= bits;
5143 if (*input_line_pointer != ',')
5144 break;
5145 ++input_line_pointer;
5146 SKIP_WHITESPACE ();
5147 }
5148
5149 switch (type)
5150 {
5151 case 'c':
5152 if (count == 0)
5153 mask = ~(valueT) 0;
5154 clear_qp_mutex (mask);
5155 clear_qp_implies (mask, (valueT) 0);
5156 break;
5157 case 'i':
5158 if (count != 2 || p1 == -1 || p2 == -1)
5159 as_bad (_("Predicate source and target required"));
5160 else if (p1 == 0 || p2 == 0)
5161 as_bad (_("Use of p0 is not valid in this context"));
5162 else
5163 add_qp_imply (p1, p2);
5164 break;
5165 case 'm':
5166 if (count < 2)
5167 {
5168 as_bad (_("At least two PR arguments expected"));
5169 break;
5170 }
5171 else if (mask & 1)
5172 {
5173 as_bad (_("Use of p0 is not valid in this context"));
5174 break;
5175 }
5176 add_qp_mutex (mask);
5177 break;
5178 case 's':
5179 /* note that we don't override any existing relations */
5180 if (count == 0)
5181 {
5182 as_bad (_("At least one PR argument expected"));
5183 break;
5184 }
5185 if (md.debug_dv)
5186 {
5187 fprintf (stderr, "Safe across calls: ");
5188 print_prmask (mask);
5189 fprintf (stderr, "\n");
5190 }
5191 qp_safe_across_calls = mask;
5192 break;
5193 }
5194 demand_empty_rest_of_line ();
5195 }
5196
5197 /* .entry label [, label [, ...]]
5198 Hint to DV code that the given labels are to be considered entry points.
5199 Otherwise, only global labels are considered entry points. */
5200
5201 static void
5202 dot_entry (dummy)
5203 int dummy ATTRIBUTE_UNUSED;
5204 {
5205 const char *err;
5206 char *name;
5207 int c;
5208 symbolS *symbolP;
5209
5210 do
5211 {
5212 name = input_line_pointer;
5213 c = get_symbol_end ();
5214 symbolP = symbol_find_or_make (name);
5215
5216 err = hash_insert (md.entry_hash, S_GET_NAME (symbolP), (PTR) symbolP);
5217 if (err)
5218 as_fatal (_("Inserting \"%s\" into entry hint table failed: %s"),
5219 name, err);
5220
5221 *input_line_pointer = c;
5222 SKIP_WHITESPACE ();
5223 c = *input_line_pointer;
5224 if (c == ',')
5225 {
5226 input_line_pointer++;
5227 SKIP_WHITESPACE ();
5228 if (*input_line_pointer == '\n')
5229 c = '\n';
5230 }
5231 }
5232 while (c == ',');
5233
5234 demand_empty_rest_of_line ();
5235 }
5236
5237 /* .mem.offset offset, base
5238 "base" is used to distinguish between offsets from a different base. */
5239
5240 static void
5241 dot_mem_offset (dummy)
5242 int dummy ATTRIBUTE_UNUSED;
5243 {
5244 md.mem_offset.hint = 1;
5245 md.mem_offset.offset = get_absolute_expression ();
5246 if (*input_line_pointer != ',')
5247 {
5248 as_bad (_("Comma expected"));
5249 ignore_rest_of_line ();
5250 return;
5251 }
5252 ++input_line_pointer;
5253 md.mem_offset.base = get_absolute_expression ();
5254 demand_empty_rest_of_line ();
5255 }
5256
5257 /* ia64-specific pseudo-ops: */
5258 const pseudo_typeS md_pseudo_table[] =
5259 {
5260 { "radix", dot_radix, 0 },
5261 { "lcomm", s_lcomm_bytes, 1 },
5262 { "loc", dot_loc, 0 },
5263 { "bss", dot_special_section, SPECIAL_SECTION_BSS },
5264 { "sbss", dot_special_section, SPECIAL_SECTION_SBSS },
5265 { "sdata", dot_special_section, SPECIAL_SECTION_SDATA },
5266 { "rodata", dot_special_section, SPECIAL_SECTION_RODATA },
5267 { "comment", dot_special_section, SPECIAL_SECTION_COMMENT },
5268 { "ia_64.unwind", dot_special_section, SPECIAL_SECTION_UNWIND },
5269 { "ia_64.unwind_info", dot_special_section, SPECIAL_SECTION_UNWIND_INFO },
5270 { "init_array", dot_special_section, SPECIAL_SECTION_INIT_ARRAY },
5271 { "fini_array", dot_special_section, SPECIAL_SECTION_FINI_ARRAY },
5272 { "proc", dot_proc, 0 },
5273 { "body", dot_body, 0 },
5274 { "prologue", dot_prologue, 0 },
5275 { "endp", dot_endp, 0 },
5276
5277 { "fframe", dot_fframe, 0 },
5278 { "vframe", dot_vframe, 0 },
5279 { "vframesp", dot_vframesp, 0 },
5280 { "vframepsp", dot_vframepsp, 0 },
5281 { "save", dot_save, 0 },
5282 { "restore", dot_restore, 0 },
5283 { "restorereg", dot_restorereg, 0 },
5284 { "restorereg.p", dot_restorereg_p, 0 },
5285 { "handlerdata", dot_handlerdata, 0 },
5286 { "unwentry", dot_unwentry, 0 },
5287 { "altrp", dot_altrp, 0 },
5288 { "savesp", dot_savemem, 0 },
5289 { "savepsp", dot_savemem, 1 },
5290 { "save.g", dot_saveg, 0 },
5291 { "save.f", dot_savef, 0 },
5292 { "save.b", dot_saveb, 0 },
5293 { "save.gf", dot_savegf, 0 },
5294 { "spill", dot_spill, 0 },
5295 { "spillreg", dot_spillreg, 0 },
5296 { "spillsp", dot_spillmem, 0 },
5297 { "spillpsp", dot_spillmem, 1 },
5298 { "spillreg.p", dot_spillreg_p, 0 },
5299 { "spillsp.p", dot_spillmem_p, 0 },
5300 { "spillpsp.p", dot_spillmem_p, 1 },
5301 { "label_state", dot_label_state, 0 },
5302 { "copy_state", dot_copy_state, 0 },
5303 { "unwabi", dot_unwabi, 0 },
5304 { "personality", dot_personality, 0 },
5305 { "mii", dot_template, 0x0 },
5306 { "mli", dot_template, 0x2 }, /* old format, for compatibility */
5307 { "mlx", dot_template, 0x2 },
5308 { "mmi", dot_template, 0x4 },
5309 { "mfi", dot_template, 0x6 },
5310 { "mmf", dot_template, 0x7 },
5311 { "mib", dot_template, 0x8 },
5312 { "mbb", dot_template, 0x9 },
5313 { "bbb", dot_template, 0xb },
5314 { "mmb", dot_template, 0xc },
5315 { "mfb", dot_template, 0xe },
5316 { "align", dot_align, 0 },
5317 { "regstk", dot_regstk, 0 },
5318 { "rotr", dot_rot, DYNREG_GR },
5319 { "rotf", dot_rot, DYNREG_FR },
5320 { "rotp", dot_rot, DYNREG_PR },
5321 { "lsb", dot_byteorder, 0 },
5322 { "msb", dot_byteorder, 1 },
5323 { "psr", dot_psr, 0 },
5324 { "alias", dot_alias, 0 },
5325 { "secalias", dot_alias, 1 },
5326 { "ln", dot_ln, 0 }, /* source line info (for debugging) */
5327
5328 { "xdata1", dot_xdata, 1 },
5329 { "xdata2", dot_xdata, 2 },
5330 { "xdata4", dot_xdata, 4 },
5331 { "xdata8", dot_xdata, 8 },
5332 { "xdata16", dot_xdata, 16 },
5333 { "xreal4", dot_xfloat_cons, 'f' },
5334 { "xreal8", dot_xfloat_cons, 'd' },
5335 { "xreal10", dot_xfloat_cons, 'x' },
5336 { "xreal16", dot_xfloat_cons, 'X' },
5337 { "xstring", dot_xstringer, 0 },
5338 { "xstringz", dot_xstringer, 1 },
5339
5340 /* unaligned versions: */
5341 { "xdata2.ua", dot_xdata_ua, 2 },
5342 { "xdata4.ua", dot_xdata_ua, 4 },
5343 { "xdata8.ua", dot_xdata_ua, 8 },
5344 { "xdata16.ua", dot_xdata_ua, 16 },
5345 { "xreal4.ua", dot_xfloat_cons_ua, 'f' },
5346 { "xreal8.ua", dot_xfloat_cons_ua, 'd' },
5347 { "xreal10.ua", dot_xfloat_cons_ua, 'x' },
5348 { "xreal16.ua", dot_xfloat_cons_ua, 'X' },
5349
5350 /* annotations/DV checking support */
5351 { "entry", dot_entry, 0 },
5352 { "mem.offset", dot_mem_offset, 0 },
5353 { "pred.rel", dot_pred_rel, 0 },
5354 { "pred.rel.clear", dot_pred_rel, 'c' },
5355 { "pred.rel.imply", dot_pred_rel, 'i' },
5356 { "pred.rel.mutex", dot_pred_rel, 'm' },
5357 { "pred.safe_across_calls", dot_pred_rel, 's' },
5358 { "reg.val", dot_reg_val, 0 },
5359 { "serialize.data", dot_serialize, 0 },
5360 { "serialize.instruction", dot_serialize, 1 },
5361 { "auto", dot_dv_mode, 'a' },
5362 { "explicit", dot_dv_mode, 'e' },
5363 { "default", dot_dv_mode, 'd' },
5364
5365 /* ??? These are needed to make gas/testsuite/gas/elf/ehopt.s work.
5366 IA-64 aligns data allocation pseudo-ops by default, so we have to
5367 tell it that these ones are supposed to be unaligned. Long term,
5368 should rewrite so that only IA-64 specific data allocation pseudo-ops
5369 are aligned by default. */
5370 {"2byte", stmt_cons_ua, 2},
5371 {"4byte", stmt_cons_ua, 4},
5372 {"8byte", stmt_cons_ua, 8},
5373
5374 { NULL, 0, 0 }
5375 };
5376
5377 static const struct pseudo_opcode
5378 {
5379 const char *name;
5380 void (*handler) (int);
5381 int arg;
5382 }
5383 pseudo_opcode[] =
5384 {
5385 /* these are more like pseudo-ops, but don't start with a dot */
5386 { "data1", cons, 1 },
5387 { "data2", cons, 2 },
5388 { "data4", cons, 4 },
5389 { "data8", cons, 8 },
5390 { "data16", cons, 16 },
5391 { "real4", stmt_float_cons, 'f' },
5392 { "real8", stmt_float_cons, 'd' },
5393 { "real10", stmt_float_cons, 'x' },
5394 { "real16", stmt_float_cons, 'X' },
5395 { "string", stringer, 0 },
5396 { "stringz", stringer, 1 },
5397
5398 /* unaligned versions: */
5399 { "data2.ua", stmt_cons_ua, 2 },
5400 { "data4.ua", stmt_cons_ua, 4 },
5401 { "data8.ua", stmt_cons_ua, 8 },
5402 { "data16.ua", stmt_cons_ua, 16 },
5403 { "real4.ua", float_cons, 'f' },
5404 { "real8.ua", float_cons, 'd' },
5405 { "real10.ua", float_cons, 'x' },
5406 { "real16.ua", float_cons, 'X' },
5407 };
5408
5409 /* Declare a register by creating a symbol for it and entering it in
5410 the symbol table. */
5411
5412 static symbolS *
5413 declare_register (name, regnum)
5414 const char *name;
5415 int regnum;
5416 {
5417 const char *err;
5418 symbolS *sym;
5419
5420 sym = symbol_new (name, reg_section, regnum, &zero_address_frag);
5421
5422 err = hash_insert (md.reg_hash, S_GET_NAME (sym), (PTR) sym);
5423 if (err)
5424 as_fatal ("Inserting \"%s\" into register table failed: %s",
5425 name, err);
5426
5427 return sym;
5428 }
5429
5430 static void
5431 declare_register_set (prefix, num_regs, base_regnum)
5432 const char *prefix;
5433 int num_regs;
5434 int base_regnum;
5435 {
5436 char name[8];
5437 int i;
5438
5439 for (i = 0; i < num_regs; ++i)
5440 {
5441 sprintf (name, "%s%u", prefix, i);
5442 declare_register (name, base_regnum + i);
5443 }
5444 }
5445
5446 static unsigned int
5447 operand_width (opnd)
5448 enum ia64_opnd opnd;
5449 {
5450 const struct ia64_operand *odesc = &elf64_ia64_operands[opnd];
5451 unsigned int bits = 0;
5452 int i;
5453
5454 bits = 0;
5455 for (i = 0; i < NELEMS (odesc->field) && odesc->field[i].bits; ++i)
5456 bits += odesc->field[i].bits;
5457
5458 return bits;
5459 }
5460
5461 static enum operand_match_result
5462 operand_match (idesc, index, e)
5463 const struct ia64_opcode *idesc;
5464 int index;
5465 expressionS *e;
5466 {
5467 enum ia64_opnd opnd = idesc->operands[index];
5468 int bits, relocatable = 0;
5469 struct insn_fix *fix;
5470 bfd_signed_vma val;
5471
5472 switch (opnd)
5473 {
5474 /* constants: */
5475
5476 case IA64_OPND_AR_CCV:
5477 if (e->X_op == O_register && e->X_add_number == REG_AR + 32)
5478 return OPERAND_MATCH;
5479 break;
5480
5481 case IA64_OPND_AR_CSD:
5482 if (e->X_op == O_register && e->X_add_number == REG_AR + 25)
5483 return OPERAND_MATCH;
5484 break;
5485
5486 case IA64_OPND_AR_PFS:
5487 if (e->X_op == O_register && e->X_add_number == REG_AR + 64)
5488 return OPERAND_MATCH;
5489 break;
5490
5491 case IA64_OPND_GR0:
5492 if (e->X_op == O_register && e->X_add_number == REG_GR + 0)
5493 return OPERAND_MATCH;
5494 break;
5495
5496 case IA64_OPND_IP:
5497 if (e->X_op == O_register && e->X_add_number == REG_IP)
5498 return OPERAND_MATCH;
5499 break;
5500
5501 case IA64_OPND_PR:
5502 if (e->X_op == O_register && e->X_add_number == REG_PR)
5503 return OPERAND_MATCH;
5504 break;
5505
5506 case IA64_OPND_PR_ROT:
5507 if (e->X_op == O_register && e->X_add_number == REG_PR_ROT)
5508 return OPERAND_MATCH;
5509 break;
5510
5511 case IA64_OPND_PSR:
5512 if (e->X_op == O_register && e->X_add_number == REG_PSR)
5513 return OPERAND_MATCH;
5514 break;
5515
5516 case IA64_OPND_PSR_L:
5517 if (e->X_op == O_register && e->X_add_number == REG_PSR_L)
5518 return OPERAND_MATCH;
5519 break;
5520
5521 case IA64_OPND_PSR_UM:
5522 if (e->X_op == O_register && e->X_add_number == REG_PSR_UM)
5523 return OPERAND_MATCH;
5524 break;
5525
5526 case IA64_OPND_C1:
5527 if (e->X_op == O_constant)
5528 {
5529 if (e->X_add_number == 1)
5530 return OPERAND_MATCH;
5531 else
5532 return OPERAND_OUT_OF_RANGE;
5533 }
5534 break;
5535
5536 case IA64_OPND_C8:
5537 if (e->X_op == O_constant)
5538 {
5539 if (e->X_add_number == 8)
5540 return OPERAND_MATCH;
5541 else
5542 return OPERAND_OUT_OF_RANGE;
5543 }
5544 break;
5545
5546 case IA64_OPND_C16:
5547 if (e->X_op == O_constant)
5548 {
5549 if (e->X_add_number == 16)
5550 return OPERAND_MATCH;
5551 else
5552 return OPERAND_OUT_OF_RANGE;
5553 }
5554 break;
5555
5556 /* register operands: */
5557
5558 case IA64_OPND_AR3:
5559 if (e->X_op == O_register && e->X_add_number >= REG_AR
5560 && e->X_add_number < REG_AR + 128)
5561 return OPERAND_MATCH;
5562 break;
5563
5564 case IA64_OPND_B1:
5565 case IA64_OPND_B2:
5566 if (e->X_op == O_register && e->X_add_number >= REG_BR
5567 && e->X_add_number < REG_BR + 8)
5568 return OPERAND_MATCH;
5569 break;
5570
5571 case IA64_OPND_CR3:
5572 if (e->X_op == O_register && e->X_add_number >= REG_CR
5573 && e->X_add_number < REG_CR + 128)
5574 return OPERAND_MATCH;
5575 break;
5576
5577 case IA64_OPND_F1:
5578 case IA64_OPND_F2:
5579 case IA64_OPND_F3:
5580 case IA64_OPND_F4:
5581 if (e->X_op == O_register && e->X_add_number >= REG_FR
5582 && e->X_add_number < REG_FR + 128)
5583 return OPERAND_MATCH;
5584 break;
5585
5586 case IA64_OPND_P1:
5587 case IA64_OPND_P2:
5588 if (e->X_op == O_register && e->X_add_number >= REG_P
5589 && e->X_add_number < REG_P + 64)
5590 return OPERAND_MATCH;
5591 break;
5592
5593 case IA64_OPND_R1:
5594 case IA64_OPND_R2:
5595 case IA64_OPND_R3:
5596 if (e->X_op == O_register && e->X_add_number >= REG_GR
5597 && e->X_add_number < REG_GR + 128)
5598 return OPERAND_MATCH;
5599 break;
5600
5601 case IA64_OPND_R3_2:
5602 if (e->X_op == O_register && e->X_add_number >= REG_GR)
5603 {
5604 if (e->X_add_number < REG_GR + 4)
5605 return OPERAND_MATCH;
5606 else if (e->X_add_number < REG_GR + 128)
5607 return OPERAND_OUT_OF_RANGE;
5608 }
5609 break;
5610
5611 /* indirect operands: */
5612 case IA64_OPND_CPUID_R3:
5613 case IA64_OPND_DBR_R3:
5614 case IA64_OPND_DTR_R3:
5615 case IA64_OPND_ITR_R3:
5616 case IA64_OPND_IBR_R3:
5617 case IA64_OPND_MSR_R3:
5618 case IA64_OPND_PKR_R3:
5619 case IA64_OPND_PMC_R3:
5620 case IA64_OPND_PMD_R3:
5621 case IA64_OPND_RR_R3:
5622 if (e->X_op == O_index && e->X_op_symbol
5623 && (S_GET_VALUE (e->X_op_symbol) - IND_CPUID
5624 == opnd - IA64_OPND_CPUID_R3))
5625 return OPERAND_MATCH;
5626 break;
5627
5628 case IA64_OPND_MR3:
5629 if (e->X_op == O_index && !e->X_op_symbol)
5630 return OPERAND_MATCH;
5631 break;
5632
5633 /* immediate operands: */
5634 case IA64_OPND_CNT2a:
5635 case IA64_OPND_LEN4:
5636 case IA64_OPND_LEN6:
5637 bits = operand_width (idesc->operands[index]);
5638 if (e->X_op == O_constant)
5639 {
5640 if ((bfd_vma) (e->X_add_number - 1) < ((bfd_vma) 1 << bits))
5641 return OPERAND_MATCH;
5642 else
5643 return OPERAND_OUT_OF_RANGE;
5644 }
5645 break;
5646
5647 case IA64_OPND_CNT2b:
5648 if (e->X_op == O_constant)
5649 {
5650 if ((bfd_vma) (e->X_add_number - 1) < 3)
5651 return OPERAND_MATCH;
5652 else
5653 return OPERAND_OUT_OF_RANGE;
5654 }
5655 break;
5656
5657 case IA64_OPND_CNT2c:
5658 val = e->X_add_number;
5659 if (e->X_op == O_constant)
5660 {
5661 if ((val == 0 || val == 7 || val == 15 || val == 16))
5662 return OPERAND_MATCH;
5663 else
5664 return OPERAND_OUT_OF_RANGE;
5665 }
5666 break;
5667
5668 case IA64_OPND_SOR:
5669 /* SOR must be an integer multiple of 8 */
5670 if (e->X_op == O_constant && e->X_add_number & 0x7)
5671 return OPERAND_OUT_OF_RANGE;
5672 case IA64_OPND_SOF:
5673 case IA64_OPND_SOL:
5674 if (e->X_op == O_constant)
5675 {
5676 if ((bfd_vma) e->X_add_number <= 96)
5677 return OPERAND_MATCH;
5678 else
5679 return OPERAND_OUT_OF_RANGE;
5680 }
5681 break;
5682
5683 case IA64_OPND_IMMU62:
5684 if (e->X_op == O_constant)
5685 {
5686 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << 62))
5687 return OPERAND_MATCH;
5688 else
5689 return OPERAND_OUT_OF_RANGE;
5690 }
5691 else
5692 {
5693 /* FIXME -- need 62-bit relocation type */
5694 as_bad (_("62-bit relocation not yet implemented"));
5695 }
5696 break;
5697
5698 case IA64_OPND_IMMU64:
5699 if (e->X_op == O_symbol || e->X_op == O_pseudo_fixup
5700 || e->X_op == O_subtract)
5701 {
5702 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5703 fix->code = BFD_RELOC_IA64_IMM64;
5704 if (e->X_op != O_subtract)
5705 {
5706 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5707 if (e->X_op == O_pseudo_fixup)
5708 e->X_op = O_symbol;
5709 }
5710
5711 fix->opnd = idesc->operands[index];
5712 fix->expr = *e;
5713 fix->is_pcrel = 0;
5714 ++CURR_SLOT.num_fixups;
5715 return OPERAND_MATCH;
5716 }
5717 else if (e->X_op == O_constant)
5718 return OPERAND_MATCH;
5719 break;
5720
5721 case IA64_OPND_CCNT5:
5722 case IA64_OPND_CNT5:
5723 case IA64_OPND_CNT6:
5724 case IA64_OPND_CPOS6a:
5725 case IA64_OPND_CPOS6b:
5726 case IA64_OPND_CPOS6c:
5727 case IA64_OPND_IMMU2:
5728 case IA64_OPND_IMMU7a:
5729 case IA64_OPND_IMMU7b:
5730 case IA64_OPND_IMMU21:
5731 case IA64_OPND_IMMU24:
5732 case IA64_OPND_MBTYPE4:
5733 case IA64_OPND_MHTYPE8:
5734 case IA64_OPND_POS6:
5735 bits = operand_width (idesc->operands[index]);
5736 if (e->X_op == O_constant)
5737 {
5738 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
5739 return OPERAND_MATCH;
5740 else
5741 return OPERAND_OUT_OF_RANGE;
5742 }
5743 break;
5744
5745 case IA64_OPND_IMMU9:
5746 bits = operand_width (idesc->operands[index]);
5747 if (e->X_op == O_constant)
5748 {
5749 if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits))
5750 {
5751 int lobits = e->X_add_number & 0x3;
5752 if (((bfd_vma) e->X_add_number & 0x3C) != 0 && lobits == 0)
5753 e->X_add_number |= (bfd_vma) 0x3;
5754 return OPERAND_MATCH;
5755 }
5756 else
5757 return OPERAND_OUT_OF_RANGE;
5758 }
5759 break;
5760
5761 case IA64_OPND_IMM44:
5762 /* least 16 bits must be zero */
5763 if ((e->X_add_number & 0xffff) != 0)
5764 /* XXX technically, this is wrong: we should not be issuing warning
5765 messages until we're sure this instruction pattern is going to
5766 be used! */
5767 as_warn (_("lower 16 bits of mask ignored"));
5768
5769 if (e->X_op == O_constant)
5770 {
5771 if (((e->X_add_number >= 0
5772 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 44))
5773 || (e->X_add_number < 0
5774 && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 44))))
5775 {
5776 /* sign-extend */
5777 if (e->X_add_number >= 0
5778 && (e->X_add_number & ((bfd_vma) 1 << 43)) != 0)
5779 {
5780 e->X_add_number |= ~(((bfd_vma) 1 << 44) - 1);
5781 }
5782 return OPERAND_MATCH;
5783 }
5784 else
5785 return OPERAND_OUT_OF_RANGE;
5786 }
5787 break;
5788
5789 case IA64_OPND_IMM17:
5790 /* bit 0 is a don't care (pr0 is hardwired to 1) */
5791 if (e->X_op == O_constant)
5792 {
5793 if (((e->X_add_number >= 0
5794 && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 17))
5795 || (e->X_add_number < 0
5796 && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 17))))
5797 {
5798 /* sign-extend */
5799 if (e->X_add_number >= 0
5800 && (e->X_add_number & ((bfd_vma) 1 << 16)) != 0)
5801 {
5802 e->X_add_number |= ~(((bfd_vma) 1 << 17) - 1);
5803 }
5804 return OPERAND_MATCH;
5805 }
5806 else
5807 return OPERAND_OUT_OF_RANGE;
5808 }
5809 break;
5810
5811 case IA64_OPND_IMM14:
5812 case IA64_OPND_IMM22:
5813 relocatable = 1;
5814 case IA64_OPND_IMM1:
5815 case IA64_OPND_IMM8:
5816 case IA64_OPND_IMM8U4:
5817 case IA64_OPND_IMM8M1:
5818 case IA64_OPND_IMM8M1U4:
5819 case IA64_OPND_IMM8M1U8:
5820 case IA64_OPND_IMM9a:
5821 case IA64_OPND_IMM9b:
5822 bits = operand_width (idesc->operands[index]);
5823 if (relocatable && (e->X_op == O_symbol
5824 || e->X_op == O_subtract
5825 || e->X_op == O_pseudo_fixup))
5826 {
5827 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5828
5829 if (idesc->operands[index] == IA64_OPND_IMM14)
5830 fix->code = BFD_RELOC_IA64_IMM14;
5831 else
5832 fix->code = BFD_RELOC_IA64_IMM22;
5833
5834 if (e->X_op != O_subtract)
5835 {
5836 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5837 if (e->X_op == O_pseudo_fixup)
5838 e->X_op = O_symbol;
5839 }
5840
5841 fix->opnd = idesc->operands[index];
5842 fix->expr = *e;
5843 fix->is_pcrel = 0;
5844 ++CURR_SLOT.num_fixups;
5845 return OPERAND_MATCH;
5846 }
5847 else if (e->X_op != O_constant
5848 && ! (e->X_op == O_big && opnd == IA64_OPND_IMM8M1U8))
5849 return OPERAND_MISMATCH;
5850
5851 if (opnd == IA64_OPND_IMM8M1U4)
5852 {
5853 /* Zero is not valid for unsigned compares that take an adjusted
5854 constant immediate range. */
5855 if (e->X_add_number == 0)
5856 return OPERAND_OUT_OF_RANGE;
5857
5858 /* Sign-extend 32-bit unsigned numbers, so that the following range
5859 checks will work. */
5860 val = e->X_add_number;
5861 if (((val & (~(bfd_vma) 0 << 32)) == 0)
5862 && ((val & ((bfd_vma) 1 << 31)) != 0))
5863 val = ((val << 32) >> 32);
5864
5865 /* Check for 0x100000000. This is valid because
5866 0x100000000-1 is the same as ((uint32_t) -1). */
5867 if (val == ((bfd_signed_vma) 1 << 32))
5868 return OPERAND_MATCH;
5869
5870 val = val - 1;
5871 }
5872 else if (opnd == IA64_OPND_IMM8M1U8)
5873 {
5874 /* Zero is not valid for unsigned compares that take an adjusted
5875 constant immediate range. */
5876 if (e->X_add_number == 0)
5877 return OPERAND_OUT_OF_RANGE;
5878
5879 /* Check for 0x10000000000000000. */
5880 if (e->X_op == O_big)
5881 {
5882 if (generic_bignum[0] == 0
5883 && generic_bignum[1] == 0
5884 && generic_bignum[2] == 0
5885 && generic_bignum[3] == 0
5886 && generic_bignum[4] == 1)
5887 return OPERAND_MATCH;
5888 else
5889 return OPERAND_OUT_OF_RANGE;
5890 }
5891 else
5892 val = e->X_add_number - 1;
5893 }
5894 else if (opnd == IA64_OPND_IMM8M1)
5895 val = e->X_add_number - 1;
5896 else if (opnd == IA64_OPND_IMM8U4)
5897 {
5898 /* Sign-extend 32-bit unsigned numbers, so that the following range
5899 checks will work. */
5900 val = e->X_add_number;
5901 if (((val & (~(bfd_vma) 0 << 32)) == 0)
5902 && ((val & ((bfd_vma) 1 << 31)) != 0))
5903 val = ((val << 32) >> 32);
5904 }
5905 else
5906 val = e->X_add_number;
5907
5908 if ((val >= 0 && (bfd_vma) val < ((bfd_vma) 1 << (bits - 1)))
5909 || (val < 0 && (bfd_vma) -val <= ((bfd_vma) 1 << (bits - 1))))
5910 return OPERAND_MATCH;
5911 else
5912 return OPERAND_OUT_OF_RANGE;
5913
5914 case IA64_OPND_INC3:
5915 /* +/- 1, 4, 8, 16 */
5916 val = e->X_add_number;
5917 if (val < 0)
5918 val = -val;
5919 if (e->X_op == O_constant)
5920 {
5921 if ((val == 1 || val == 4 || val == 8 || val == 16))
5922 return OPERAND_MATCH;
5923 else
5924 return OPERAND_OUT_OF_RANGE;
5925 }
5926 break;
5927
5928 case IA64_OPND_TGT25:
5929 case IA64_OPND_TGT25b:
5930 case IA64_OPND_TGT25c:
5931 case IA64_OPND_TGT64:
5932 if (e->X_op == O_symbol)
5933 {
5934 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5935 if (opnd == IA64_OPND_TGT25)
5936 fix->code = BFD_RELOC_IA64_PCREL21F;
5937 else if (opnd == IA64_OPND_TGT25b)
5938 fix->code = BFD_RELOC_IA64_PCREL21M;
5939 else if (opnd == IA64_OPND_TGT25c)
5940 fix->code = BFD_RELOC_IA64_PCREL21B;
5941 else if (opnd == IA64_OPND_TGT64)
5942 fix->code = BFD_RELOC_IA64_PCREL60B;
5943 else
5944 abort ();
5945
5946 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5947 fix->opnd = idesc->operands[index];
5948 fix->expr = *e;
5949 fix->is_pcrel = 1;
5950 ++CURR_SLOT.num_fixups;
5951 return OPERAND_MATCH;
5952 }
5953 case IA64_OPND_TAG13:
5954 case IA64_OPND_TAG13b:
5955 switch (e->X_op)
5956 {
5957 case O_constant:
5958 return OPERAND_MATCH;
5959
5960 case O_symbol:
5961 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5962 /* There are no external relocs for TAG13/TAG13b fields, so we
5963 create a dummy reloc. This will not live past md_apply_fix3. */
5964 fix->code = BFD_RELOC_UNUSED;
5965 fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code);
5966 fix->opnd = idesc->operands[index];
5967 fix->expr = *e;
5968 fix->is_pcrel = 1;
5969 ++CURR_SLOT.num_fixups;
5970 return OPERAND_MATCH;
5971
5972 default:
5973 break;
5974 }
5975 break;
5976
5977 case IA64_OPND_LDXMOV:
5978 fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups;
5979 fix->code = BFD_RELOC_IA64_LDXMOV;
5980 fix->opnd = idesc->operands[index];
5981 fix->expr = *e;
5982 fix->is_pcrel = 0;
5983 ++CURR_SLOT.num_fixups;
5984 return OPERAND_MATCH;
5985
5986 default:
5987 break;
5988 }
5989 return OPERAND_MISMATCH;
5990 }
5991
5992 static int
5993 parse_operand (e)
5994 expressionS *e;
5995 {
5996 int sep = '\0';
5997
5998 memset (e, 0, sizeof (*e));
5999 e->X_op = O_absent;
6000 SKIP_WHITESPACE ();
6001 if (*input_line_pointer != '}')
6002 expression (e);
6003 sep = *input_line_pointer++;
6004
6005 if (sep == '}')
6006 {
6007 if (!md.manual_bundling)
6008 as_warn ("Found '}' when manual bundling is off");
6009 else
6010 CURR_SLOT.manual_bundling_off = 1;
6011 md.manual_bundling = 0;
6012 sep = '\0';
6013 }
6014 return sep;
6015 }
6016
6017 /* Returns the next entry in the opcode table that matches the one in
6018 IDESC, and frees the entry in IDESC. If no matching entry is
6019 found, NULL is returned instead. */
6020
6021 static struct ia64_opcode *
6022 get_next_opcode (struct ia64_opcode *idesc)
6023 {
6024 struct ia64_opcode *next = ia64_find_next_opcode (idesc);
6025 ia64_free_opcode (idesc);
6026 return next;
6027 }
6028
6029 /* Parse the operands for the opcode and find the opcode variant that
6030 matches the specified operands, or NULL if no match is possible. */
6031
6032 static struct ia64_opcode *
6033 parse_operands (idesc)
6034 struct ia64_opcode *idesc;
6035 {
6036 int i = 0, highest_unmatched_operand, num_operands = 0, num_outputs = 0;
6037 int error_pos, out_of_range_pos, curr_out_of_range_pos, sep = 0;
6038 int reg1, reg2;
6039 char reg_class;
6040 enum ia64_opnd expected_operand = IA64_OPND_NIL;
6041 enum operand_match_result result;
6042 char mnemonic[129];
6043 char *first_arg = 0, *end, *saved_input_pointer;
6044 unsigned int sof;
6045
6046 assert (strlen (idesc->name) <= 128);
6047
6048 strcpy (mnemonic, idesc->name);
6049 if (idesc->operands[2] == IA64_OPND_SOF
6050 || idesc->operands[1] == IA64_OPND_SOF)
6051 {
6052 /* To make the common idiom "alloc loc?=ar.pfs,0,1,0,0" work, we
6053 can't parse the first operand until we have parsed the
6054 remaining operands of the "alloc" instruction. */
6055 SKIP_WHITESPACE ();
6056 first_arg = input_line_pointer;
6057 end = strchr (input_line_pointer, '=');
6058 if (!end)
6059 {
6060 as_bad ("Expected separator `='");
6061 return 0;
6062 }
6063 input_line_pointer = end + 1;
6064 ++i;
6065 ++num_outputs;
6066 }
6067
6068 for (; ; ++i)
6069 {
6070 if (i < NELEMS (CURR_SLOT.opnd))
6071 {
6072 sep = parse_operand (CURR_SLOT.opnd + i);
6073 if (CURR_SLOT.opnd[i].X_op == O_absent)
6074 break;
6075 }
6076 else
6077 {
6078 expressionS dummy;
6079
6080 sep = parse_operand (&dummy);
6081 if (dummy.X_op == O_absent)
6082 break;
6083 }
6084
6085 ++num_operands;
6086
6087 if (sep != '=' && sep != ',')
6088 break;
6089
6090 if (sep == '=')
6091 {
6092 if (num_outputs > 0)
6093 as_bad ("Duplicate equal sign (=) in instruction");
6094 else
6095 num_outputs = i + 1;
6096 }
6097 }
6098 if (sep != '\0')
6099 {
6100 as_bad ("Illegal operand separator `%c'", sep);
6101 return 0;
6102 }
6103
6104 if (idesc->operands[2] == IA64_OPND_SOF
6105 || idesc->operands[1] == IA64_OPND_SOF)
6106 {
6107 /* map alloc r1=ar.pfs,i,l,o,r to alloc r1=ar.pfs,(i+l+o),(i+l),r */
6108 know (strcmp (idesc->name, "alloc") == 0);
6109 i = (CURR_SLOT.opnd[1].X_op == O_register
6110 && CURR_SLOT.opnd[1].X_add_number == REG_AR + AR_PFS) ? 2 : 1;
6111 if (num_operands == i + 3 /* first_arg not included in this count! */
6112 && CURR_SLOT.opnd[i].X_op == O_constant
6113 && CURR_SLOT.opnd[i + 1].X_op == O_constant
6114 && CURR_SLOT.opnd[i + 2].X_op == O_constant
6115 && CURR_SLOT.opnd[i + 3].X_op == O_constant)
6116 {
6117 sof = set_regstack (CURR_SLOT.opnd[i].X_add_number,
6118 CURR_SLOT.opnd[i + 1].X_add_number,
6119 CURR_SLOT.opnd[i + 2].X_add_number,
6120 CURR_SLOT.opnd[i + 3].X_add_number);
6121
6122 /* now we can parse the first arg: */
6123 saved_input_pointer = input_line_pointer;
6124 input_line_pointer = first_arg;
6125 sep = parse_operand (CURR_SLOT.opnd + 0);
6126 if (sep != '=')
6127 --num_outputs; /* force error */
6128 input_line_pointer = saved_input_pointer;
6129
6130 CURR_SLOT.opnd[i].X_add_number = sof;
6131 CURR_SLOT.opnd[i + 1].X_add_number
6132 = sof - CURR_SLOT.opnd[i + 2].X_add_number;
6133 CURR_SLOT.opnd[i + 2] = CURR_SLOT.opnd[i + 3];
6134 }
6135 }
6136
6137 highest_unmatched_operand = -4;
6138 curr_out_of_range_pos = -1;
6139 error_pos = 0;
6140 for (; idesc; idesc = get_next_opcode (idesc))
6141 {
6142 if (num_outputs != idesc->num_outputs)
6143 continue; /* mismatch in # of outputs */
6144 if (highest_unmatched_operand < 0)
6145 highest_unmatched_operand |= 1;
6146 if (num_operands > NELEMS (idesc->operands)
6147 || (num_operands < NELEMS (idesc->operands)
6148 && idesc->operands[num_operands])
6149 || (num_operands > 0 && !idesc->operands[num_operands - 1]))
6150 continue; /* mismatch in number of arguments */
6151 if (highest_unmatched_operand < 0)
6152 highest_unmatched_operand |= 2;
6153
6154 CURR_SLOT.num_fixups = 0;
6155
6156 /* Try to match all operands. If we see an out-of-range operand,
6157 then continue trying to match the rest of the operands, since if
6158 the rest match, then this idesc will give the best error message. */
6159
6160 out_of_range_pos = -1;
6161 for (i = 0; i < num_operands && idesc->operands[i]; ++i)
6162 {
6163 result = operand_match (idesc, i, CURR_SLOT.opnd + i);
6164 if (result != OPERAND_MATCH)
6165 {
6166 if (result != OPERAND_OUT_OF_RANGE)
6167 break;
6168 if (out_of_range_pos < 0)
6169 /* remember position of the first out-of-range operand: */
6170 out_of_range_pos = i;
6171 }
6172 }
6173
6174 /* If we did not match all operands, or if at least one operand was
6175 out-of-range, then this idesc does not match. Keep track of which
6176 idesc matched the most operands before failing. If we have two
6177 idescs that failed at the same position, and one had an out-of-range
6178 operand, then prefer the out-of-range operand. Thus if we have
6179 "add r0=0x1000000,r1" we get an error saying the constant is out
6180 of range instead of an error saying that the constant should have been
6181 a register. */
6182
6183 if (i != num_operands || out_of_range_pos >= 0)
6184 {
6185 if (i > highest_unmatched_operand
6186 || (i == highest_unmatched_operand
6187 && out_of_range_pos > curr_out_of_range_pos))
6188 {
6189 highest_unmatched_operand = i;
6190 if (out_of_range_pos >= 0)
6191 {
6192 expected_operand = idesc->operands[out_of_range_pos];
6193 error_pos = out_of_range_pos;
6194 }
6195 else
6196 {
6197 expected_operand = idesc->operands[i];
6198 error_pos = i;
6199 }
6200 curr_out_of_range_pos = out_of_range_pos;
6201 }
6202 continue;
6203 }
6204
6205 break;
6206 }
6207 if (!idesc)
6208 {
6209 if (expected_operand)
6210 as_bad ("Operand %u of `%s' should be %s",
6211 error_pos + 1, mnemonic,
6212 elf64_ia64_operands[expected_operand].desc);
6213 else if (highest_unmatched_operand < 0 && !(highest_unmatched_operand & 1))
6214 as_bad ("Wrong number of output operands");
6215 else if (highest_unmatched_operand < 0 && !(highest_unmatched_operand & 2))
6216 as_bad ("Wrong number of input operands");
6217 else
6218 as_bad ("Operand mismatch");
6219 return 0;
6220 }
6221
6222 /* Check that the instruction doesn't use
6223 - r0, f0, or f1 as output operands
6224 - the same predicate twice as output operands
6225 - r0 as address of a base update load or store
6226 - the same GR as output and address of a base update load
6227 - two even- or two odd-numbered FRs as output operands of a floating
6228 point parallel load.
6229 At most two (conflicting) output (or output-like) operands can exist,
6230 (floating point parallel loads have three outputs, but the base register,
6231 if updated, cannot conflict with the actual outputs). */
6232 reg2 = reg1 = -1;
6233 for (i = 0; i < num_operands; ++i)
6234 {
6235 int regno = 0;
6236
6237 reg_class = 0;
6238 switch (idesc->operands[i])
6239 {
6240 case IA64_OPND_R1:
6241 case IA64_OPND_R2:
6242 case IA64_OPND_R3:
6243 if (i < num_outputs)
6244 {
6245 if (CURR_SLOT.opnd[i].X_add_number == REG_GR)
6246 reg_class = 'r';
6247 else if (reg1 < 0)
6248 reg1 = CURR_SLOT.opnd[i].X_add_number;
6249 else if (reg2 < 0)
6250 reg2 = CURR_SLOT.opnd[i].X_add_number;
6251 }
6252 break;
6253 case IA64_OPND_P1:
6254 case IA64_OPND_P2:
6255 if (i < num_outputs)
6256 {
6257 if (reg1 < 0)
6258 reg1 = CURR_SLOT.opnd[i].X_add_number;
6259 else if (reg2 < 0)
6260 reg2 = CURR_SLOT.opnd[i].X_add_number;
6261 }
6262 break;
6263 case IA64_OPND_F1:
6264 case IA64_OPND_F2:
6265 case IA64_OPND_F3:
6266 case IA64_OPND_F4:
6267 if (i < num_outputs)
6268 {
6269 if (CURR_SLOT.opnd[i].X_add_number >= REG_FR
6270 && CURR_SLOT.opnd[i].X_add_number <= REG_FR + 1)
6271 {
6272 reg_class = 'f';
6273 regno = CURR_SLOT.opnd[i].X_add_number - REG_FR;
6274 }
6275 else if (reg1 < 0)
6276 reg1 = CURR_SLOT.opnd[i].X_add_number;
6277 else if (reg2 < 0)
6278 reg2 = CURR_SLOT.opnd[i].X_add_number;
6279 }
6280 break;
6281 case IA64_OPND_MR3:
6282 if (idesc->flags & IA64_OPCODE_POSTINC)
6283 {
6284 if (CURR_SLOT.opnd[i].X_add_number == REG_GR)
6285 reg_class = 'm';
6286 else if (reg1 < 0)
6287 reg1 = CURR_SLOT.opnd[i].X_add_number;
6288 else if (reg2 < 0)
6289 reg2 = CURR_SLOT.opnd[i].X_add_number;
6290 }
6291 break;
6292 default:
6293 break;
6294 }
6295 switch (reg_class)
6296 {
6297 case 0:
6298 break;
6299 default:
6300 as_warn ("Invalid use of `%c%d' as output operand", reg_class, regno);
6301 break;
6302 case 'm':
6303 as_warn ("Invalid use of `r%d' as base update address operand", regno);
6304 break;
6305 }
6306 }
6307 if (reg1 == reg2)
6308 {
6309 if (reg1 >= REG_GR && reg1 <= REG_GR + 127)
6310 {
6311 reg1 -= REG_GR;
6312 reg_class = 'r';
6313 }
6314 else if (reg1 >= REG_P && reg1 <= REG_P + 63)
6315 {
6316 reg1 -= REG_P;
6317 reg_class = 'p';
6318 }
6319 else if (reg1 >= REG_FR && reg1 <= REG_FR + 127)
6320 {
6321 reg1 -= REG_FR;
6322 reg_class = 'f';
6323 }
6324 else
6325 reg_class = 0;
6326 if (reg_class)
6327 as_warn ("Invalid duplicate use of `%c%d'", reg_class, reg1);
6328 }
6329 else if (((reg1 >= REG_FR && reg1 <= REG_FR + 31
6330 && reg2 >= REG_FR && reg2 <= REG_FR + 31)
6331 || (reg1 >= REG_FR + 32 && reg1 <= REG_FR + 127
6332 && reg2 >= REG_FR + 32 && reg2 <= REG_FR + 127))
6333 && ! ((reg1 ^ reg2) & 1))
6334 as_warn ("Invalid simultaneous use of `f%d' and `f%d'",
6335 reg1 - REG_FR, reg2 - REG_FR);
6336 else if ((reg1 >= REG_FR && reg1 <= REG_FR + 31
6337 && reg2 >= REG_FR + 32 && reg2 <= REG_FR + 127)
6338 || (reg1 >= REG_FR + 32 && reg1 <= REG_FR + 127
6339 && reg2 >= REG_FR && reg2 <= REG_FR + 31))
6340 as_warn ("Dangerous simultaneous use of `f%d' and `f%d'",
6341 reg1 - REG_FR, reg2 - REG_FR);
6342 return idesc;
6343 }
6344
6345 static void
6346 build_insn (slot, insnp)
6347 struct slot *slot;
6348 bfd_vma *insnp;
6349 {
6350 const struct ia64_operand *odesc, *o2desc;
6351 struct ia64_opcode *idesc = slot->idesc;
6352 bfd_vma insn;
6353 bfd_signed_vma val;
6354 const char *err;
6355 int i;
6356
6357 insn = idesc->opcode | slot->qp_regno;
6358
6359 for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; ++i)
6360 {
6361 if (slot->opnd[i].X_op == O_register
6362 || slot->opnd[i].X_op == O_constant
6363 || slot->opnd[i].X_op == O_index)
6364 val = slot->opnd[i].X_add_number;
6365 else if (slot->opnd[i].X_op == O_big)
6366 {
6367 /* This must be the value 0x10000000000000000. */
6368 assert (idesc->operands[i] == IA64_OPND_IMM8M1U8);
6369 val = 0;
6370 }
6371 else
6372 val = 0;
6373
6374 switch (idesc->operands[i])
6375 {
6376 case IA64_OPND_IMMU64:
6377 *insnp++ = (val >> 22) & 0x1ffffffffffLL;
6378 insn |= (((val & 0x7f) << 13) | (((val >> 7) & 0x1ff) << 27)
6379 | (((val >> 16) & 0x1f) << 22) | (((val >> 21) & 0x1) << 21)
6380 | (((val >> 63) & 0x1) << 36));
6381 continue;
6382
6383 case IA64_OPND_IMMU62:
6384 val &= 0x3fffffffffffffffULL;
6385 if (val != slot->opnd[i].X_add_number)
6386 as_warn (_("Value truncated to 62 bits"));
6387 *insnp++ = (val >> 21) & 0x1ffffffffffLL;
6388 insn |= (((val & 0xfffff) << 6) | (((val >> 20) & 0x1) << 36));
6389 continue;
6390
6391 case IA64_OPND_TGT64:
6392 val >>= 4;
6393 *insnp++ = ((val >> 20) & 0x7fffffffffLL) << 2;
6394 insn |= ((((val >> 59) & 0x1) << 36)
6395 | (((val >> 0) & 0xfffff) << 13));
6396 continue;
6397
6398 case IA64_OPND_AR3:
6399 val -= REG_AR;
6400 break;
6401
6402 case IA64_OPND_B1:
6403 case IA64_OPND_B2:
6404 val -= REG_BR;
6405 break;
6406
6407 case IA64_OPND_CR3:
6408 val -= REG_CR;
6409 break;
6410
6411 case IA64_OPND_F1:
6412 case IA64_OPND_F2:
6413 case IA64_OPND_F3:
6414 case IA64_OPND_F4:
6415 val -= REG_FR;
6416 break;
6417
6418 case IA64_OPND_P1:
6419 case IA64_OPND_P2:
6420 val -= REG_P;
6421 break;
6422
6423 case IA64_OPND_R1:
6424 case IA64_OPND_R2:
6425 case IA64_OPND_R3:
6426 case IA64_OPND_R3_2:
6427 case IA64_OPND_CPUID_R3:
6428 case IA64_OPND_DBR_R3:
6429 case IA64_OPND_DTR_R3:
6430 case IA64_OPND_ITR_R3:
6431 case IA64_OPND_IBR_R3:
6432 case IA64_OPND_MR3:
6433 case IA64_OPND_MSR_R3:
6434 case IA64_OPND_PKR_R3:
6435 case IA64_OPND_PMC_R3:
6436 case IA64_OPND_PMD_R3:
6437 case IA64_OPND_RR_R3:
6438 val -= REG_GR;
6439 break;
6440
6441 default:
6442 break;
6443 }
6444
6445 odesc = elf64_ia64_operands + idesc->operands[i];
6446 err = (*odesc->insert) (odesc, val, &insn);
6447 if (err)
6448 as_bad_where (slot->src_file, slot->src_line,
6449 "Bad operand value: %s", err);
6450 if (idesc->flags & IA64_OPCODE_PSEUDO)
6451 {
6452 if ((idesc->flags & IA64_OPCODE_F2_EQ_F3)
6453 && odesc == elf64_ia64_operands + IA64_OPND_F3)
6454 {
6455 o2desc = elf64_ia64_operands + IA64_OPND_F2;
6456 (*o2desc->insert) (o2desc, val, &insn);
6457 }
6458 if ((idesc->flags & IA64_OPCODE_LEN_EQ_64MCNT)
6459 && (odesc == elf64_ia64_operands + IA64_OPND_CPOS6a
6460 || odesc == elf64_ia64_operands + IA64_OPND_POS6))
6461 {
6462 o2desc = elf64_ia64_operands + IA64_OPND_LEN6;
6463 (*o2desc->insert) (o2desc, 64 - val, &insn);
6464 }
6465 }
6466 }
6467 *insnp = insn;
6468 }
6469
6470 static void
6471 emit_one_bundle ()
6472 {
6473 int manual_bundling_off = 0, manual_bundling = 0;
6474 enum ia64_unit required_unit, insn_unit = 0;
6475 enum ia64_insn_type type[3], insn_type;
6476 unsigned int template, orig_template;
6477 bfd_vma insn[3] = { -1, -1, -1 };
6478 struct ia64_opcode *idesc;
6479 int end_of_insn_group = 0, user_template = -1;
6480 int n, i, j, first, curr, last_slot;
6481 unw_rec_list *ptr, *last_ptr, *end_ptr;
6482 bfd_vma t0 = 0, t1 = 0;
6483 struct label_fix *lfix;
6484 struct insn_fix *ifix;
6485 char mnemonic[16];
6486 fixS *fix;
6487 char *f;
6488 int addr_mod;
6489
6490 first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % NUM_SLOTS;
6491 know (first >= 0 & first < NUM_SLOTS);
6492 n = MIN (3, md.num_slots_in_use);
6493
6494 /* Determine template: user user_template if specified, best match
6495 otherwise: */
6496
6497 if (md.slot[first].user_template >= 0)
6498 user_template = template = md.slot[first].user_template;
6499 else
6500 {
6501 /* Auto select appropriate template. */
6502 memset (type, 0, sizeof (type));
6503 curr = first;
6504 for (i = 0; i < n; ++i)
6505 {
6506 if (md.slot[curr].label_fixups && i != 0)
6507 break;
6508 type[i] = md.slot[curr].idesc->type;
6509 curr = (curr + 1) % NUM_SLOTS;
6510 }
6511 template = best_template[type[0]][type[1]][type[2]];
6512 }
6513
6514 /* initialize instructions with appropriate nops: */
6515 for (i = 0; i < 3; ++i)
6516 insn[i] = nop[ia64_templ_desc[template].exec_unit[i]];
6517
6518 f = frag_more (16);
6519
6520 /* Check to see if this bundle is at an offset that is a multiple of 16-bytes
6521 from the start of the frag. */
6522 addr_mod = frag_now_fix () & 15;
6523 if (frag_now->has_code && frag_now->insn_addr != addr_mod)
6524 as_bad (_("instruction address is not a multiple of 16"));
6525 frag_now->insn_addr = addr_mod;
6526 frag_now->has_code = 1;
6527
6528 /* now fill in slots with as many insns as possible: */
6529 curr = first;
6530 idesc = md.slot[curr].idesc;
6531 end_of_insn_group = 0;
6532 last_slot = -1;
6533 for (i = 0; i < 3 && md.num_slots_in_use > 0; ++i)
6534 {
6535 /* If we have unwind records, we may need to update some now. */
6536 ptr = md.slot[curr].unwind_record;
6537 if (ptr)
6538 {
6539 /* Find the last prologue/body record in the list for the current
6540 insn, and set the slot number for all records up to that point.
6541 This needs to be done now, because prologue/body records refer to
6542 the current point, not the point after the instruction has been
6543 issued. This matters because there may have been nops emitted
6544 meanwhile. Any non-prologue non-body record followed by a
6545 prologue/body record must also refer to the current point. */
6546 last_ptr = NULL;
6547 end_ptr = md.slot[(curr + 1) % NUM_SLOTS].unwind_record;
6548 for (; ptr != end_ptr; ptr = ptr->next)
6549 if (ptr->r.type == prologue || ptr->r.type == prologue_gr
6550 || ptr->r.type == body)
6551 last_ptr = ptr;
6552 if (last_ptr)
6553 {
6554 /* Make last_ptr point one after the last prologue/body
6555 record. */
6556 last_ptr = last_ptr->next;
6557 for (ptr = md.slot[curr].unwind_record; ptr != last_ptr;
6558 ptr = ptr->next)
6559 {
6560 ptr->slot_number = (unsigned long) f + i;
6561 ptr->slot_frag = frag_now;
6562 }
6563 /* Remove the initialized records, so that we won't accidentally
6564 update them again if we insert a nop and continue. */
6565 md.slot[curr].unwind_record = last_ptr;
6566 }
6567 }
6568
6569 manual_bundling_off = md.slot[curr].manual_bundling_off;
6570 if (md.slot[curr].manual_bundling_on)
6571 {
6572 if (curr == first)
6573 manual_bundling = 1;
6574 else
6575 break; /* Need to start a new bundle. */
6576 }
6577
6578 /* If this instruction specifies a template, then it must be the first
6579 instruction of a bundle. */
6580 if (curr != first && md.slot[curr].user_template >= 0)
6581 break;
6582
6583 if (idesc->flags & IA64_OPCODE_SLOT2)
6584 {
6585 if (manual_bundling && !manual_bundling_off)
6586 {
6587 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6588 "`%s' must be last in bundle", idesc->name);
6589 if (i < 2)
6590 manual_bundling = -1; /* Suppress meaningless post-loop errors. */
6591 }
6592 i = 2;
6593 }
6594 if (idesc->flags & IA64_OPCODE_LAST)
6595 {
6596 int required_slot;
6597 unsigned int required_template;
6598
6599 /* If we need a stop bit after an M slot, our only choice is
6600 template 5 (M;;MI). If we need a stop bit after a B
6601 slot, our only choice is to place it at the end of the
6602 bundle, because the only available templates are MIB,
6603 MBB, BBB, MMB, and MFB. We don't handle anything other
6604 than M and B slots because these are the only kind of
6605 instructions that can have the IA64_OPCODE_LAST bit set. */
6606 required_template = template;
6607 switch (idesc->type)
6608 {
6609 case IA64_TYPE_M:
6610 required_slot = 0;
6611 required_template = 5;
6612 break;
6613
6614 case IA64_TYPE_B:
6615 required_slot = 2;
6616 break;
6617
6618 default:
6619 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6620 "Internal error: don't know how to force %s to end"
6621 "of instruction group", idesc->name);
6622 required_slot = i;
6623 break;
6624 }
6625 if (manual_bundling
6626 && (i > required_slot
6627 || (required_slot == 2 && !manual_bundling_off)
6628 || (user_template >= 0
6629 /* Changing from MMI to M;MI is OK. */
6630 && (template ^ required_template) > 1)))
6631 {
6632 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6633 "`%s' must be last in instruction group",
6634 idesc->name);
6635 if (i < 2 && required_slot == 2 && !manual_bundling_off)
6636 manual_bundling = -1; /* Suppress meaningless post-loop errors. */
6637 }
6638 if (required_slot < i)
6639 /* Can't fit this instruction. */
6640 break;
6641
6642 i = required_slot;
6643 if (required_template != template)
6644 {
6645 /* If we switch the template, we need to reset the NOPs
6646 after slot i. The slot-types of the instructions ahead
6647 of i never change, so we don't need to worry about
6648 changing NOPs in front of this slot. */
6649 for (j = i; j < 3; ++j)
6650 insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]];
6651 }
6652 template = required_template;
6653 }
6654 if (curr != first && md.slot[curr].label_fixups)
6655 {
6656 if (manual_bundling)
6657 {
6658 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6659 "Label must be first in a bundle");
6660 manual_bundling = -1; /* Suppress meaningless post-loop errors. */
6661 }
6662 /* This insn must go into the first slot of a bundle. */
6663 break;
6664 }
6665
6666 if (end_of_insn_group && md.num_slots_in_use >= 1)
6667 {
6668 /* We need an instruction group boundary in the middle of a
6669 bundle. See if we can switch to an other template with
6670 an appropriate boundary. */
6671
6672 orig_template = template;
6673 if (i == 1 && (user_template == 4
6674 || (user_template < 0
6675 && (ia64_templ_desc[template].exec_unit[0]
6676 == IA64_UNIT_M))))
6677 {
6678 template = 5;
6679 end_of_insn_group = 0;
6680 }
6681 else if (i == 2 && (user_template == 0
6682 || (user_template < 0
6683 && (ia64_templ_desc[template].exec_unit[1]
6684 == IA64_UNIT_I)))
6685 /* This test makes sure we don't switch the template if
6686 the next instruction is one that needs to be first in
6687 an instruction group. Since all those instructions are
6688 in the M group, there is no way such an instruction can
6689 fit in this bundle even if we switch the template. The
6690 reason we have to check for this is that otherwise we
6691 may end up generating "MI;;I M.." which has the deadly
6692 effect that the second M instruction is no longer the
6693 first in the group! --davidm 99/12/16 */
6694 && (idesc->flags & IA64_OPCODE_FIRST) == 0)
6695 {
6696 template = 1;
6697 end_of_insn_group = 0;
6698 }
6699 else if (i == 1
6700 && user_template == 0
6701 && !(idesc->flags & IA64_OPCODE_FIRST))
6702 /* Use the next slot. */
6703 continue;
6704 else if (curr != first)
6705 /* can't fit this insn */
6706 break;
6707
6708 if (template != orig_template)
6709 /* if we switch the template, we need to reset the NOPs
6710 after slot i. The slot-types of the instructions ahead
6711 of i never change, so we don't need to worry about
6712 changing NOPs in front of this slot. */
6713 for (j = i; j < 3; ++j)
6714 insn[j] = nop[ia64_templ_desc[template].exec_unit[j]];
6715 }
6716 required_unit = ia64_templ_desc[template].exec_unit[i];
6717
6718 /* resolve dynamic opcodes such as "break", "hint", and "nop": */
6719 if (idesc->type == IA64_TYPE_DYN)
6720 {
6721 enum ia64_opnd opnd1, opnd2;
6722
6723 if ((strcmp (idesc->name, "nop") == 0)
6724 || (strcmp (idesc->name, "break") == 0))
6725 insn_unit = required_unit;
6726 else if (strcmp (idesc->name, "hint") == 0)
6727 {
6728 insn_unit = required_unit;
6729 if (required_unit == IA64_UNIT_B)
6730 {
6731 switch (md.hint_b)
6732 {
6733 case hint_b_ok:
6734 break;
6735 case hint_b_warning:
6736 as_warn ("hint in B unit may be treated as nop");
6737 break;
6738 case hint_b_error:
6739 /* When manual bundling is off and there is no
6740 user template, we choose a different unit so
6741 that hint won't go into the current slot. We
6742 will fill the current bundle with nops and
6743 try to put hint into the next bundle. */
6744 if (!manual_bundling && user_template < 0)
6745 insn_unit = IA64_UNIT_I;
6746 else
6747 as_bad ("hint in B unit can't be used");
6748 break;
6749 }
6750 }
6751 }
6752 else if (strcmp (idesc->name, "chk.s") == 0
6753 || strcmp (idesc->name, "mov") == 0)
6754 {
6755 insn_unit = IA64_UNIT_M;
6756 if (required_unit == IA64_UNIT_I
6757 || (required_unit == IA64_UNIT_F && template == 6))
6758 insn_unit = IA64_UNIT_I;
6759 }
6760 else
6761 as_fatal ("emit_one_bundle: unexpected dynamic op");
6762
6763 sprintf (mnemonic, "%s.%c", idesc->name, "?imbfxx"[insn_unit]);
6764 opnd1 = idesc->operands[0];
6765 opnd2 = idesc->operands[1];
6766 ia64_free_opcode (idesc);
6767 idesc = ia64_find_opcode (mnemonic);
6768 /* moves to/from ARs have collisions */
6769 if (opnd1 == IA64_OPND_AR3 || opnd2 == IA64_OPND_AR3)
6770 {
6771 while (idesc != NULL
6772 && (idesc->operands[0] != opnd1
6773 || idesc->operands[1] != opnd2))
6774 idesc = get_next_opcode (idesc);
6775 }
6776 md.slot[curr].idesc = idesc;
6777 }
6778 else
6779 {
6780 insn_type = idesc->type;
6781 insn_unit = IA64_UNIT_NIL;
6782 switch (insn_type)
6783 {
6784 case IA64_TYPE_A:
6785 if (required_unit == IA64_UNIT_I || required_unit == IA64_UNIT_M)
6786 insn_unit = required_unit;
6787 break;
6788 case IA64_TYPE_X: insn_unit = IA64_UNIT_L; break;
6789 case IA64_TYPE_I: insn_unit = IA64_UNIT_I; break;
6790 case IA64_TYPE_M: insn_unit = IA64_UNIT_M; break;
6791 case IA64_TYPE_B: insn_unit = IA64_UNIT_B; break;
6792 case IA64_TYPE_F: insn_unit = IA64_UNIT_F; break;
6793 default: break;
6794 }
6795 }
6796
6797 if (insn_unit != required_unit)
6798 continue; /* Try next slot. */
6799
6800 if (debug_type == DEBUG_DWARF2 || md.slot[curr].loc_directive_seen)
6801 {
6802 bfd_vma addr = frag_now->fr_address + frag_now_fix () - 16 + i;
6803
6804 md.slot[curr].loc_directive_seen = 0;
6805 dwarf2_gen_line_info (addr, &md.slot[curr].debug_line);
6806 }
6807
6808 build_insn (md.slot + curr, insn + i);
6809
6810 ptr = md.slot[curr].unwind_record;
6811 if (ptr)
6812 {
6813 /* Set slot numbers for all remaining unwind records belonging to the
6814 current insn. There can not be any prologue/body unwind records
6815 here. */
6816 end_ptr = md.slot[(curr + 1) % NUM_SLOTS].unwind_record;
6817 for (; ptr != end_ptr; ptr = ptr->next)
6818 {
6819 ptr->slot_number = (unsigned long) f + i;
6820 ptr->slot_frag = frag_now;
6821 }
6822 md.slot[curr].unwind_record = NULL;
6823 }
6824
6825 if (required_unit == IA64_UNIT_L)
6826 {
6827 know (i == 1);
6828 /* skip one slot for long/X-unit instructions */
6829 ++i;
6830 }
6831 --md.num_slots_in_use;
6832 last_slot = i;
6833
6834 /* now is a good time to fix up the labels for this insn: */
6835 for (lfix = md.slot[curr].label_fixups; lfix; lfix = lfix->next)
6836 {
6837 S_SET_VALUE (lfix->sym, frag_now_fix () - 16);
6838 symbol_set_frag (lfix->sym, frag_now);
6839 }
6840 /* and fix up the tags also. */
6841 for (lfix = md.slot[curr].tag_fixups; lfix; lfix = lfix->next)
6842 {
6843 S_SET_VALUE (lfix->sym, frag_now_fix () - 16 + i);
6844 symbol_set_frag (lfix->sym, frag_now);
6845 }
6846
6847 for (j = 0; j < md.slot[curr].num_fixups; ++j)
6848 {
6849 ifix = md.slot[curr].fixup + j;
6850 fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 8,
6851 &ifix->expr, ifix->is_pcrel, ifix->code);
6852 fix->tc_fix_data.opnd = ifix->opnd;
6853 fix->fx_plt = (fix->fx_r_type == BFD_RELOC_IA64_PLTOFF22);
6854 fix->fx_file = md.slot[curr].src_file;
6855 fix->fx_line = md.slot[curr].src_line;
6856 }
6857
6858 end_of_insn_group = md.slot[curr].end_of_insn_group;
6859
6860 /* clear slot: */
6861 ia64_free_opcode (md.slot[curr].idesc);
6862 memset (md.slot + curr, 0, sizeof (md.slot[curr]));
6863 md.slot[curr].user_template = -1;
6864
6865 if (manual_bundling_off)
6866 {
6867 manual_bundling = 0;
6868 break;
6869 }
6870 curr = (curr + 1) % NUM_SLOTS;
6871 idesc = md.slot[curr].idesc;
6872 }
6873 if (manual_bundling > 0)
6874 {
6875 if (md.num_slots_in_use > 0)
6876 {
6877 if (last_slot >= 2)
6878 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6879 "`%s' does not fit into bundle", idesc->name);
6880 else if (last_slot < 0)
6881 {
6882 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6883 "`%s' does not fit into %s template",
6884 idesc->name, ia64_templ_desc[template].name);
6885 /* Drop first insn so we don't livelock. */
6886 --md.num_slots_in_use;
6887 know (curr == first);
6888 ia64_free_opcode (md.slot[curr].idesc);
6889 memset (md.slot + curr, 0, sizeof (md.slot[curr]));
6890 md.slot[curr].user_template = -1;
6891 }
6892 else
6893 {
6894 const char *where;
6895
6896 if (template == 2)
6897 where = "X slot";
6898 else if (last_slot == 0)
6899 where = "slots 2 or 3";
6900 else
6901 where = "slot 3";
6902 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6903 "`%s' can't go in %s of %s template",
6904 idesc->name, where, ia64_templ_desc[template].name);
6905 }
6906 }
6907 else
6908 as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line,
6909 "Missing '}' at end of file");
6910 }
6911 know (md.num_slots_in_use < NUM_SLOTS);
6912
6913 t0 = end_of_insn_group | (template << 1) | (insn[0] << 5) | (insn[1] << 46);
6914 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
6915
6916 number_to_chars_littleendian (f + 0, t0, 8);
6917 number_to_chars_littleendian (f + 8, t1, 8);
6918
6919 if (unwind.list)
6920 {
6921 unwind.list->next_slot_number = (unsigned long) f + 16;
6922 unwind.list->next_slot_frag = frag_now;
6923 }
6924 }
6925
6926 int
6927 md_parse_option (c, arg)
6928 int c;
6929 char *arg;
6930 {
6931
6932 switch (c)
6933 {
6934 /* Switches from the Intel assembler. */
6935 case 'm':
6936 if (strcmp (arg, "ilp64") == 0
6937 || strcmp (arg, "lp64") == 0
6938 || strcmp (arg, "p64") == 0)
6939 {
6940 md.flags |= EF_IA_64_ABI64;
6941 }
6942 else if (strcmp (arg, "ilp32") == 0)
6943 {
6944 md.flags &= ~EF_IA_64_ABI64;
6945 }
6946 else if (strcmp (arg, "le") == 0)
6947 {
6948 md.flags &= ~EF_IA_64_BE;
6949 default_big_endian = 0;
6950 }
6951 else if (strcmp (arg, "be") == 0)
6952 {
6953 md.flags |= EF_IA_64_BE;
6954 default_big_endian = 1;
6955 }
6956 else if (strncmp (arg, "unwind-check=", 13) == 0)
6957 {
6958 arg += 13;
6959 if (strcmp (arg, "warning") == 0)
6960 md.unwind_check = unwind_check_warning;
6961 else if (strcmp (arg, "error") == 0)
6962 md.unwind_check = unwind_check_error;
6963 else
6964 return 0;
6965 }
6966 else if (strncmp (arg, "hint.b=", 7) == 0)
6967 {
6968 arg += 7;
6969 if (strcmp (arg, "ok") == 0)
6970 md.hint_b = hint_b_ok;
6971 else if (strcmp (arg, "warning") == 0)
6972 md.hint_b = hint_b_warning;
6973 else if (strcmp (arg, "error") == 0)
6974 md.hint_b = hint_b_error;
6975 else
6976 return 0;
6977 }
6978 else if (strncmp (arg, "tune=", 5) == 0)
6979 {
6980 arg += 5;
6981 if (strcmp (arg, "itanium1") == 0)
6982 md.tune = itanium1;
6983 else if (strcmp (arg, "itanium2") == 0)
6984 md.tune = itanium2;
6985 else
6986 return 0;
6987 }
6988 else
6989 return 0;
6990 break;
6991
6992 case 'N':
6993 if (strcmp (arg, "so") == 0)
6994 {
6995 /* Suppress signon message. */
6996 }
6997 else if (strcmp (arg, "pi") == 0)
6998 {
6999 /* Reject privileged instructions. FIXME */
7000 }
7001 else if (strcmp (arg, "us") == 0)
7002 {
7003 /* Allow union of signed and unsigned range. FIXME */
7004 }
7005 else if (strcmp (arg, "close_fcalls") == 0)
7006 {
7007 /* Do not resolve global function calls. */
7008 }
7009 else
7010 return 0;
7011 break;
7012
7013 case 'C':
7014 /* temp[="prefix"] Insert temporary labels into the object file
7015 symbol table prefixed by "prefix".
7016 Default prefix is ":temp:".
7017 */
7018 break;
7019
7020 case 'a':
7021 /* indirect=<tgt> Assume unannotated indirect branches behavior
7022 according to <tgt> --
7023 exit: branch out from the current context (default)
7024 labels: all labels in context may be branch targets
7025 */
7026 if (strncmp (arg, "indirect=", 9) != 0)
7027 return 0;
7028 break;
7029
7030 case 'x':
7031 /* -X conflicts with an ignored option, use -x instead */
7032 md.detect_dv = 1;
7033 if (!arg || strcmp (arg, "explicit") == 0)
7034 {
7035 /* set default mode to explicit */
7036 md.default_explicit_mode = 1;
7037 break;
7038 }
7039 else if (strcmp (arg, "auto") == 0)
7040 {
7041 md.default_explicit_mode = 0;
7042 }
7043 else if (strcmp (arg, "none") == 0)
7044 {
7045 md.detect_dv = 0;
7046 }
7047 else if (strcmp (arg, "debug") == 0)
7048 {
7049 md.debug_dv = 1;
7050 }
7051 else if (strcmp (arg, "debugx") == 0)
7052 {
7053 md.default_explicit_mode = 1;
7054 md.debug_dv = 1;
7055 }
7056 else if (strcmp (arg, "debugn") == 0)
7057 {
7058 md.debug_dv = 1;
7059 md.detect_dv = 0;
7060 }
7061 else
7062 {
7063 as_bad (_("Unrecognized option '-x%s'"), arg);
7064 }
7065 break;
7066
7067 case 'S':
7068 /* nops Print nops statistics. */
7069 break;
7070
7071 /* GNU specific switches for gcc. */
7072 case OPTION_MCONSTANT_GP:
7073 md.flags |= EF_IA_64_CONS_GP;
7074 break;
7075
7076 case OPTION_MAUTO_PIC:
7077 md.flags |= EF_IA_64_NOFUNCDESC_CONS_GP;
7078 break;
7079
7080 default:
7081 return 0;
7082 }
7083
7084 return 1;
7085 }
7086
7087 void
7088 md_show_usage (stream)
7089 FILE *stream;
7090 {
7091 fputs (_("\
7092 IA-64 options:\n\
7093 --mconstant-gp mark output file as using the constant-GP model\n\
7094 (sets ELF header flag EF_IA_64_CONS_GP)\n\
7095 --mauto-pic mark output file as using the constant-GP model\n\
7096 without function descriptors (sets ELF header flag\n\
7097 EF_IA_64_NOFUNCDESC_CONS_GP)\n\
7098 -milp32|-milp64|-mlp64|-mp64 select data model (default -mlp64)\n\
7099 -mle | -mbe select little- or big-endian byte order (default -mle)\n\
7100 -mtune=[itanium1|itanium2]\n\
7101 tune for a specific CPU (default -mtune=itanium2)\n\
7102 -munwind-check=[warning|error]\n\
7103 unwind directive check (default -munwind-check=warning)\n\
7104 -mhint.b=[ok|warning|error]\n\
7105 hint.b check (default -mhint.b=error)\n\
7106 -x | -xexplicit turn on dependency violation checking\n\
7107 -xauto automagically remove dependency violations (default)\n\
7108 -xnone turn off dependency violation checking\n\
7109 -xdebug debug dependency violation checker\n\
7110 -xdebugn debug dependency violation checker but turn off\n\
7111 dependency violation checking\n\
7112 -xdebugx debug dependency violation checker and turn on\n\
7113 dependency violation checking\n"),
7114 stream);
7115 }
7116
7117 void
7118 ia64_after_parse_args ()
7119 {
7120 if (debug_type == DEBUG_STABS)
7121 as_fatal (_("--gstabs is not supported for ia64"));
7122 }
7123
7124 /* Return true if TYPE fits in TEMPL at SLOT. */
7125
7126 static int
7127 match (int templ, int type, int slot)
7128 {
7129 enum ia64_unit unit;
7130 int result;
7131
7132 unit = ia64_templ_desc[templ].exec_unit[slot];
7133 switch (type)
7134 {
7135 case IA64_TYPE_DYN: result = 1; break; /* for nop and break */
7136 case IA64_TYPE_A:
7137 result = (unit == IA64_UNIT_I || unit == IA64_UNIT_M);
7138 break;
7139 case IA64_TYPE_X: result = (unit == IA64_UNIT_L); break;
7140 case IA64_TYPE_I: result = (unit == IA64_UNIT_I); break;
7141 case IA64_TYPE_M: result = (unit == IA64_UNIT_M); break;
7142 case IA64_TYPE_B: result = (unit == IA64_UNIT_B); break;
7143 case IA64_TYPE_F: result = (unit == IA64_UNIT_F); break;
7144 default: result = 0; break;
7145 }
7146 return result;
7147 }
7148
7149 /* Add a bit of extra goodness if a nop of type F or B would fit
7150 in TEMPL at SLOT. */
7151
7152 static inline int
7153 extra_goodness (int templ, int slot)
7154 {
7155 switch (md.tune)
7156 {
7157 case itanium1:
7158 if (slot == 1 && match (templ, IA64_TYPE_F, slot))
7159 return 2;
7160 else if (slot == 2 && match (templ, IA64_TYPE_B, slot))
7161 return 1;
7162 else
7163 return 0;
7164 break;
7165 case itanium2:
7166 if (match (templ, IA64_TYPE_M, slot)
7167 || match (templ, IA64_TYPE_I, slot))
7168 /* Favor M- and I-unit NOPs. We definitely want to avoid
7169 F-unit and B-unit may cause split-issue or less-than-optimal
7170 branch-prediction. */
7171 return 2;
7172 else
7173 return 0;
7174 break;
7175 default:
7176 abort ();
7177 return 0;
7178 }
7179 }
7180
7181 /* This function is called once, at assembler startup time. It sets
7182 up all the tables, etc. that the MD part of the assembler will need
7183 that can be determined before arguments are parsed. */
7184 void
7185 md_begin ()
7186 {
7187 int i, j, k, t, total, ar_base, cr_base, goodness, best, regnum, ok;
7188 const char *err;
7189 char name[8];
7190
7191 md.auto_align = 1;
7192 md.explicit_mode = md.default_explicit_mode;
7193
7194 bfd_set_section_alignment (stdoutput, text_section, 4);
7195
7196 /* Make sure function pointers get initialized. */
7197 target_big_endian = -1;
7198 dot_byteorder (default_big_endian);
7199
7200 alias_hash = hash_new ();
7201 alias_name_hash = hash_new ();
7202 secalias_hash = hash_new ();
7203 secalias_name_hash = hash_new ();
7204
7205 pseudo_func[FUNC_DTP_MODULE].u.sym =
7206 symbol_new (".<dtpmod>", undefined_section, FUNC_DTP_MODULE,
7207 &zero_address_frag);
7208
7209 pseudo_func[FUNC_DTP_RELATIVE].u.sym =
7210 symbol_new (".<dtprel>", undefined_section, FUNC_DTP_RELATIVE,
7211 &zero_address_frag);
7212
7213 pseudo_func[FUNC_FPTR_RELATIVE].u.sym =
7214 symbol_new (".<fptr>", undefined_section, FUNC_FPTR_RELATIVE,
7215 &zero_address_frag);
7216
7217 pseudo_func[FUNC_GP_RELATIVE].u.sym =
7218 symbol_new (".<gprel>", undefined_section, FUNC_GP_RELATIVE,
7219 &zero_address_frag);
7220
7221 pseudo_func[FUNC_LT_RELATIVE].u.sym =
7222 symbol_new (".<ltoff>", undefined_section, FUNC_LT_RELATIVE,
7223 &zero_address_frag);
7224
7225 pseudo_func[FUNC_LT_RELATIVE_X].u.sym =
7226 symbol_new (".<ltoffx>", undefined_section, FUNC_LT_RELATIVE_X,
7227 &zero_address_frag);
7228
7229 pseudo_func[FUNC_PC_RELATIVE].u.sym =
7230 symbol_new (".<pcrel>", undefined_section, FUNC_PC_RELATIVE,
7231 &zero_address_frag);
7232
7233 pseudo_func[FUNC_PLT_RELATIVE].u.sym =
7234 symbol_new (".<pltoff>", undefined_section, FUNC_PLT_RELATIVE,
7235 &zero_address_frag);
7236
7237 pseudo_func[FUNC_SEC_RELATIVE].u.sym =
7238 symbol_new (".<secrel>", undefined_section, FUNC_SEC_RELATIVE,
7239 &zero_address_frag);
7240
7241 pseudo_func[FUNC_SEG_RELATIVE].u.sym =
7242 symbol_new (".<segrel>", undefined_section, FUNC_SEG_RELATIVE,
7243 &zero_address_frag);
7244
7245 pseudo_func[FUNC_TP_RELATIVE].u.sym =
7246 symbol_new (".<tprel>", undefined_section, FUNC_TP_RELATIVE,
7247 &zero_address_frag);
7248
7249 pseudo_func[FUNC_LTV_RELATIVE].u.sym =
7250 symbol_new (".<ltv>", undefined_section, FUNC_LTV_RELATIVE,
7251 &zero_address_frag);
7252
7253 pseudo_func[FUNC_LT_FPTR_RELATIVE].u.sym =
7254 symbol_new (".<ltoff.fptr>", undefined_section, FUNC_LT_FPTR_RELATIVE,
7255 &zero_address_frag);
7256
7257 pseudo_func[FUNC_LT_DTP_MODULE].u.sym =
7258 symbol_new (".<ltoff.dtpmod>", undefined_section, FUNC_LT_DTP_MODULE,
7259 &zero_address_frag);
7260
7261 pseudo_func[FUNC_LT_DTP_RELATIVE].u.sym =
7262 symbol_new (".<ltoff.dptrel>", undefined_section, FUNC_LT_DTP_RELATIVE,
7263 &zero_address_frag);
7264
7265 pseudo_func[FUNC_LT_TP_RELATIVE].u.sym =
7266 symbol_new (".<ltoff.tprel>", undefined_section, FUNC_LT_TP_RELATIVE,
7267 &zero_address_frag);
7268
7269 pseudo_func[FUNC_IPLT_RELOC].u.sym =
7270 symbol_new (".<iplt>", undefined_section, FUNC_IPLT_RELOC,
7271 &zero_address_frag);
7272
7273 if (md.tune != itanium1)
7274 {
7275 /* Convert MFI NOPs bundles into MMI NOPs bundles. */
7276 le_nop[0] = 0x8;
7277 le_nop_stop[0] = 0x9;
7278 }
7279
7280 /* Compute the table of best templates. We compute goodness as a
7281 base 4 value, in which each match counts for 3. Match-failures
7282 result in NOPs and we use extra_goodness() to pick the execution
7283 units that are best suited for issuing the NOP. */
7284 for (i = 0; i < IA64_NUM_TYPES; ++i)
7285 for (j = 0; j < IA64_NUM_TYPES; ++j)
7286 for (k = 0; k < IA64_NUM_TYPES; ++k)
7287 {
7288 best = 0;
7289 for (t = 0; t < NELEMS (ia64_templ_desc); ++t)
7290 {
7291 goodness = 0;
7292 if (match (t, i, 0))
7293 {
7294 if (match (t, j, 1))
7295 {
7296 if (match (t, k, 2))
7297 goodness = 3 + 3 + 3;
7298 else
7299 goodness = 3 + 3 + extra_goodness (t, 2);
7300 }
7301 else if (match (t, j, 2))
7302 goodness = 3 + 3 + extra_goodness (t, 1);
7303 else
7304 {
7305 goodness = 3;
7306 goodness += extra_goodness (t, 1);
7307 goodness += extra_goodness (t, 2);
7308 }
7309 }
7310 else if (match (t, i, 1))
7311 {
7312 if (match (t, j, 2))
7313 goodness = 3 + 3;
7314 else
7315 goodness = 3 + extra_goodness (t, 2);
7316 }
7317 else if (match (t, i, 2))
7318 goodness = 3 + extra_goodness (t, 1);
7319
7320 if (goodness > best)
7321 {
7322 best = goodness;
7323 best_template[i][j][k] = t;
7324 }
7325 }
7326 }
7327
7328 for (i = 0; i < NUM_SLOTS; ++i)
7329 md.slot[i].user_template = -1;
7330
7331 md.pseudo_hash = hash_new ();
7332 for (i = 0; i < NELEMS (pseudo_opcode); ++i)
7333 {
7334 err = hash_insert (md.pseudo_hash, pseudo_opcode[i].name,
7335 (void *) (pseudo_opcode + i));
7336 if (err)
7337 as_fatal ("ia64.md_begin: can't hash `%s': %s",
7338 pseudo_opcode[i].name, err);
7339 }
7340
7341 md.reg_hash = hash_new ();
7342 md.dynreg_hash = hash_new ();
7343 md.const_hash = hash_new ();
7344 md.entry_hash = hash_new ();
7345
7346 /* general registers: */
7347
7348 total = 128;
7349 for (i = 0; i < total; ++i)
7350 {
7351 sprintf (name, "r%d", i - REG_GR);
7352 md.regsym[i] = declare_register (name, i);
7353 }
7354
7355 /* floating point registers: */
7356 total += 128;
7357 for (; i < total; ++i)
7358 {
7359 sprintf (name, "f%d", i - REG_FR);
7360 md.regsym[i] = declare_register (name, i);
7361 }
7362
7363 /* application registers: */
7364 total += 128;
7365 ar_base = i;
7366 for (; i < total; ++i)
7367 {
7368 sprintf (name, "ar%d", i - REG_AR);
7369 md.regsym[i] = declare_register (name, i);
7370 }
7371
7372 /* control registers: */
7373 total += 128;
7374 cr_base = i;
7375 for (; i < total; ++i)
7376 {
7377 sprintf (name, "cr%d", i - REG_CR);
7378 md.regsym[i] = declare_register (name, i);
7379 }
7380
7381 /* predicate registers: */
7382 total += 64;
7383 for (; i < total; ++i)
7384 {
7385 sprintf (name, "p%d", i - REG_P);
7386 md.regsym[i] = declare_register (name, i);
7387 }
7388
7389 /* branch registers: */
7390 total += 8;
7391 for (; i < total; ++i)
7392 {
7393 sprintf (name, "b%d", i - REG_BR);
7394 md.regsym[i] = declare_register (name, i);
7395 }
7396
7397 md.regsym[REG_IP] = declare_register ("ip", REG_IP);
7398 md.regsym[REG_CFM] = declare_register ("cfm", REG_CFM);
7399 md.regsym[REG_PR] = declare_register ("pr", REG_PR);
7400 md.regsym[REG_PR_ROT] = declare_register ("pr.rot", REG_PR_ROT);
7401 md.regsym[REG_PSR] = declare_register ("psr", REG_PSR);
7402 md.regsym[REG_PSR_L] = declare_register ("psr.l", REG_PSR_L);
7403 md.regsym[REG_PSR_UM] = declare_register ("psr.um", REG_PSR_UM);
7404
7405 for (i = 0; i < NELEMS (indirect_reg); ++i)
7406 {
7407 regnum = indirect_reg[i].regnum;
7408 md.regsym[regnum] = declare_register (indirect_reg[i].name, regnum);
7409 }
7410
7411 /* define synonyms for application registers: */
7412 for (i = REG_AR; i < REG_AR + NELEMS (ar); ++i)
7413 md.regsym[i] = declare_register (ar[i - REG_AR].name,
7414 REG_AR + ar[i - REG_AR].regnum);
7415
7416 /* define synonyms for control registers: */
7417 for (i = REG_CR; i < REG_CR + NELEMS (cr); ++i)
7418 md.regsym[i] = declare_register (cr[i - REG_CR].name,
7419 REG_CR + cr[i - REG_CR].regnum);
7420
7421 declare_register ("gp", REG_GR + 1);
7422 declare_register ("sp", REG_GR + 12);
7423 declare_register ("rp", REG_BR + 0);
7424
7425 /* pseudo-registers used to specify unwind info: */
7426 declare_register ("psp", REG_PSP);
7427
7428 declare_register_set ("ret", 4, REG_GR + 8);
7429 declare_register_set ("farg", 8, REG_FR + 8);
7430 declare_register_set ("fret", 8, REG_FR + 8);
7431
7432 for (i = 0; i < NELEMS (const_bits); ++i)
7433 {
7434 err = hash_insert (md.const_hash, const_bits[i].name,
7435 (PTR) (const_bits + i));
7436 if (err)
7437 as_fatal ("Inserting \"%s\" into constant hash table failed: %s",
7438 name, err);
7439 }
7440
7441 /* Set the architecture and machine depending on defaults and command line
7442 options. */
7443 if (md.flags & EF_IA_64_ABI64)
7444 ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf64);
7445 else
7446 ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf32);
7447
7448 if (! ok)
7449 as_warn (_("Could not set architecture and machine"));
7450
7451 /* Set the pointer size and pointer shift size depending on md.flags */
7452
7453 if (md.flags & EF_IA_64_ABI64)
7454 {
7455 md.pointer_size = 8; /* pointers are 8 bytes */
7456 md.pointer_size_shift = 3; /* alignment is 8 bytes = 2^2 */
7457 }
7458 else
7459 {
7460 md.pointer_size = 4; /* pointers are 4 bytes */
7461 md.pointer_size_shift = 2; /* alignment is 4 bytes = 2^2 */
7462 }
7463
7464 md.mem_offset.hint = 0;
7465 md.path = 0;
7466 md.maxpaths = 0;
7467 md.entry_labels = NULL;
7468 }
7469
7470 /* Set the default options in md. Cannot do this in md_begin because
7471 that is called after md_parse_option which is where we set the
7472 options in md based on command line options. */
7473
7474 void
7475 ia64_init (argc, argv)
7476 int argc ATTRIBUTE_UNUSED;
7477 char **argv ATTRIBUTE_UNUSED;
7478 {
7479 md.flags = MD_FLAGS_DEFAULT;
7480 md.detect_dv = 1;
7481 /* FIXME: We should change it to unwind_check_error someday. */
7482 md.unwind_check = unwind_check_warning;
7483 md.hint_b = hint_b_error;
7484 md.tune = itanium2;
7485 }
7486
7487 /* Return a string for the target object file format. */
7488
7489 const char *
7490 ia64_target_format ()
7491 {
7492 if (OUTPUT_FLAVOR == bfd_target_elf_flavour)
7493 {
7494 if (md.flags & EF_IA_64_BE)
7495 {
7496 if (md.flags & EF_IA_64_ABI64)
7497 #if defined(TE_AIX50)
7498 return "elf64-ia64-aix-big";
7499 #elif defined(TE_HPUX)
7500 return "elf64-ia64-hpux-big";
7501 #else
7502 return "elf64-ia64-big";
7503 #endif
7504 else
7505 #if defined(TE_AIX50)
7506 return "elf32-ia64-aix-big";
7507 #elif defined(TE_HPUX)
7508 return "elf32-ia64-hpux-big";
7509 #else
7510 return "elf32-ia64-big";
7511 #endif
7512 }
7513 else
7514 {
7515 if (md.flags & EF_IA_64_ABI64)
7516 #ifdef TE_AIX50
7517 return "elf64-ia64-aix-little";
7518 #else
7519 return "elf64-ia64-little";
7520 #endif
7521 else
7522 #ifdef TE_AIX50
7523 return "elf32-ia64-aix-little";
7524 #else
7525 return "elf32-ia64-little";
7526 #endif
7527 }
7528 }
7529 else
7530 return "unknown-format";
7531 }
7532
7533 void
7534 ia64_end_of_source ()
7535 {
7536 /* terminate insn group upon reaching end of file: */
7537 insn_group_break (1, 0, 0);
7538
7539 /* emits slots we haven't written yet: */
7540 ia64_flush_insns ();
7541
7542 bfd_set_private_flags (stdoutput, md.flags);
7543
7544 md.mem_offset.hint = 0;
7545 }
7546
7547 void
7548 ia64_start_line ()
7549 {
7550 if (md.qp.X_op == O_register)
7551 as_bad ("qualifying predicate not followed by instruction");
7552 md.qp.X_op = O_absent;
7553
7554 if (ignore_input ())
7555 return;
7556
7557 if (input_line_pointer[0] == ';' && input_line_pointer[-1] == ';')
7558 {
7559 if (md.detect_dv && !md.explicit_mode)
7560 {
7561 static int warned;
7562
7563 if (!warned)
7564 {
7565 warned = 1;
7566 as_warn (_("Explicit stops are ignored in auto mode"));
7567 }
7568 }
7569 else
7570 insn_group_break (1, 0, 0);
7571 }
7572 }
7573
7574 /* This is a hook for ia64_frob_label, so that it can distinguish tags from
7575 labels. */
7576 static int defining_tag = 0;
7577
7578 int
7579 ia64_unrecognized_line (ch)
7580 int ch;
7581 {
7582 switch (ch)
7583 {
7584 case '(':
7585 expression (&md.qp);
7586 if (*input_line_pointer++ != ')')
7587 {
7588 as_bad ("Expected ')'");
7589 return 0;
7590 }
7591 if (md.qp.X_op != O_register)
7592 {
7593 as_bad ("Qualifying predicate expected");
7594 return 0;
7595 }
7596 if (md.qp.X_add_number < REG_P || md.qp.X_add_number >= REG_P + 64)
7597 {
7598 as_bad ("Predicate register expected");
7599 return 0;
7600 }
7601 return 1;
7602
7603 case '{':
7604 if (md.manual_bundling)
7605 as_warn ("Found '{' when manual bundling is already turned on");
7606 else
7607 CURR_SLOT.manual_bundling_on = 1;
7608 md.manual_bundling = 1;
7609
7610 /* Bundling is only acceptable in explicit mode
7611 or when in default automatic mode. */
7612 if (md.detect_dv && !md.explicit_mode)
7613 {
7614 if (!md.mode_explicitly_set
7615 && !md.default_explicit_mode)
7616 dot_dv_mode ('E');
7617 else
7618 as_warn (_("Found '{' after explicit switch to automatic mode"));
7619 }
7620 return 1;
7621
7622 case '}':
7623 if (!md.manual_bundling)
7624 as_warn ("Found '}' when manual bundling is off");
7625 else
7626 PREV_SLOT.manual_bundling_off = 1;
7627 md.manual_bundling = 0;
7628
7629 /* switch back to automatic mode, if applicable */
7630 if (md.detect_dv
7631 && md.explicit_mode
7632 && !md.mode_explicitly_set
7633 && !md.default_explicit_mode)
7634 dot_dv_mode ('A');
7635
7636 /* Allow '{' to follow on the same line. We also allow ";;", but that
7637 happens automatically because ';' is an end of line marker. */
7638 SKIP_WHITESPACE ();
7639 if (input_line_pointer[0] == '{')
7640 {
7641 input_line_pointer++;
7642 return ia64_unrecognized_line ('{');
7643 }
7644
7645 demand_empty_rest_of_line ();
7646 return 1;
7647
7648 case '[':
7649 {
7650 char *s;
7651 char c;
7652 symbolS *tag;
7653 int temp;
7654
7655 if (md.qp.X_op == O_register)
7656 {
7657 as_bad ("Tag must come before qualifying predicate.");
7658 return 0;
7659 }
7660
7661 /* This implements just enough of read_a_source_file in read.c to
7662 recognize labels. */
7663 if (is_name_beginner (*input_line_pointer))
7664 {
7665 s = input_line_pointer;
7666 c = get_symbol_end ();
7667 }
7668 else if (LOCAL_LABELS_FB
7669 && ISDIGIT (*input_line_pointer))
7670 {
7671 temp = 0;
7672 while (ISDIGIT (*input_line_pointer))
7673 temp = (temp * 10) + *input_line_pointer++ - '0';
7674 fb_label_instance_inc (temp);
7675 s = fb_label_name (temp, 0);
7676 c = *input_line_pointer;
7677 }
7678 else
7679 {
7680 s = NULL;
7681 c = '\0';
7682 }
7683 if (c != ':')
7684 {
7685 /* Put ':' back for error messages' sake. */
7686 *input_line_pointer++ = ':';
7687 as_bad ("Expected ':'");
7688 return 0;
7689 }
7690
7691 defining_tag = 1;
7692 tag = colon (s);
7693 defining_tag = 0;
7694 /* Put ':' back for error messages' sake. */
7695 *input_line_pointer++ = ':';
7696 if (*input_line_pointer++ != ']')
7697 {
7698 as_bad ("Expected ']'");
7699 return 0;
7700 }
7701 if (! tag)
7702 {
7703 as_bad ("Tag name expected");
7704 return 0;
7705 }
7706 return 1;
7707 }
7708
7709 default:
7710 break;
7711 }
7712
7713 /* Not a valid line. */
7714 return 0;
7715 }
7716
7717 void
7718 ia64_frob_label (sym)
7719 struct symbol *sym;
7720 {
7721 struct label_fix *fix;
7722
7723 /* Tags need special handling since they are not bundle breaks like
7724 labels. */
7725 if (defining_tag)
7726 {
7727 fix = obstack_alloc (&notes, sizeof (*fix));
7728 fix->sym = sym;
7729 fix->next = CURR_SLOT.tag_fixups;
7730 CURR_SLOT.tag_fixups = fix;
7731
7732 return;
7733 }
7734
7735 if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
7736 {
7737 md.last_text_seg = now_seg;
7738 fix = obstack_alloc (&notes, sizeof (*fix));
7739 fix->sym = sym;
7740 fix->next = CURR_SLOT.label_fixups;
7741 CURR_SLOT.label_fixups = fix;
7742
7743 /* Keep track of how many code entry points we've seen. */
7744 if (md.path == md.maxpaths)
7745 {
7746 md.maxpaths += 20;
7747 md.entry_labels = (const char **)
7748 xrealloc ((void *) md.entry_labels,
7749 md.maxpaths * sizeof (char *));
7750 }
7751 md.entry_labels[md.path++] = S_GET_NAME (sym);
7752 }
7753 }
7754
7755 #ifdef TE_HPUX
7756 /* The HP-UX linker will give unresolved symbol errors for symbols
7757 that are declared but unused. This routine removes declared,
7758 unused symbols from an object. */
7759 int
7760 ia64_frob_symbol (sym)
7761 struct symbol *sym;
7762 {
7763 if ((S_GET_SEGMENT (sym) == &bfd_und_section && ! symbol_used_p (sym) &&
7764 ELF_ST_VISIBILITY (S_GET_OTHER (sym)) == STV_DEFAULT)
7765 || (S_GET_SEGMENT (sym) == &bfd_abs_section
7766 && ! S_IS_EXTERNAL (sym)))
7767 return 1;
7768 return 0;
7769 }
7770 #endif
7771
7772 void
7773 ia64_flush_pending_output ()
7774 {
7775 if (!md.keep_pending_output
7776 && bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE)
7777 {
7778 /* ??? This causes many unnecessary stop bits to be emitted.
7779 Unfortunately, it isn't clear if it is safe to remove this. */
7780 insn_group_break (1, 0, 0);
7781 ia64_flush_insns ();
7782 }
7783 }
7784
7785 /* Do ia64-specific expression optimization. All that's done here is
7786 to transform index expressions that are either due to the indexing
7787 of rotating registers or due to the indexing of indirect register
7788 sets. */
7789 int
7790 ia64_optimize_expr (l, op, r)
7791 expressionS *l;
7792 operatorT op;
7793 expressionS *r;
7794 {
7795 unsigned num_regs;
7796
7797 if (op == O_index)
7798 {
7799 if (l->X_op == O_register && r->X_op == O_constant)
7800 {
7801 num_regs = (l->X_add_number >> 16);
7802 if ((unsigned) r->X_add_number >= num_regs)
7803 {
7804 if (!num_regs)
7805 as_bad ("No current frame");
7806 else
7807 as_bad ("Index out of range 0..%u", num_regs - 1);
7808 r->X_add_number = 0;
7809 }
7810 l->X_add_number = (l->X_add_number & 0xffff) + r->X_add_number;
7811 return 1;
7812 }
7813 else if (l->X_op == O_register && r->X_op == O_register)
7814 {
7815 if (l->X_add_number < IND_CPUID || l->X_add_number > IND_RR
7816 || l->X_add_number == IND_MEM)
7817 {
7818 as_bad ("Indirect register set name expected");
7819 l->X_add_number = IND_CPUID;
7820 }
7821 l->X_op = O_index;
7822 l->X_op_symbol = md.regsym[l->X_add_number];
7823 l->X_add_number = r->X_add_number;
7824 return 1;
7825 }
7826 }
7827 return 0;
7828 }
7829
7830 int
7831 ia64_parse_name (name, e, nextcharP)
7832 char *name;
7833 expressionS *e;
7834 char *nextcharP;
7835 {
7836 struct const_desc *cdesc;
7837 struct dynreg *dr = 0;
7838 unsigned int idx;
7839 struct symbol *sym;
7840 char *end;
7841
7842 if (*name == '@')
7843 {
7844 enum pseudo_type pseudo_type = PSEUDO_FUNC_NONE;
7845
7846 /* Find what relocation pseudo-function we're dealing with. */
7847 for (idx = 0; idx < NELEMS (pseudo_func); ++idx)
7848 if (pseudo_func[idx].name
7849 && pseudo_func[idx].name[0] == name[1]
7850 && strcmp (pseudo_func[idx].name + 1, name + 2) == 0)
7851 {
7852 pseudo_type = pseudo_func[idx].type;
7853 break;
7854 }
7855 switch (pseudo_type)
7856 {
7857 case PSEUDO_FUNC_RELOC:
7858 end = input_line_pointer;
7859 if (*nextcharP != '(')
7860 {
7861 as_bad ("Expected '('");
7862 break;
7863 }
7864 /* Skip '('. */
7865 ++input_line_pointer;
7866 expression (e);
7867 if (*input_line_pointer != ')')
7868 {
7869 as_bad ("Missing ')'");
7870 goto done;
7871 }
7872 /* Skip ')'. */
7873 ++input_line_pointer;
7874 if (e->X_op != O_symbol)
7875 {
7876 if (e->X_op != O_pseudo_fixup)
7877 {
7878 as_bad ("Not a symbolic expression");
7879 goto done;
7880 }
7881 if (idx != FUNC_LT_RELATIVE)
7882 {
7883 as_bad ("Illegal combination of relocation functions");
7884 goto done;
7885 }
7886 switch (S_GET_VALUE (e->X_op_symbol))
7887 {
7888 case FUNC_FPTR_RELATIVE:
7889 idx = FUNC_LT_FPTR_RELATIVE; break;
7890 case FUNC_DTP_MODULE:
7891 idx = FUNC_LT_DTP_MODULE; break;
7892 case FUNC_DTP_RELATIVE:
7893 idx = FUNC_LT_DTP_RELATIVE; break;
7894 case FUNC_TP_RELATIVE:
7895 idx = FUNC_LT_TP_RELATIVE; break;
7896 default:
7897 as_bad ("Illegal combination of relocation functions");
7898 goto done;
7899 }
7900 }
7901 /* Make sure gas doesn't get rid of local symbols that are used
7902 in relocs. */
7903 e->X_op = O_pseudo_fixup;
7904 e->X_op_symbol = pseudo_func[idx].u.sym;
7905 done:
7906 *nextcharP = *input_line_pointer;
7907 break;
7908
7909 case PSEUDO_FUNC_CONST:
7910 e->X_op = O_constant;
7911 e->X_add_number = pseudo_func[idx].u.ival;
7912 break;
7913
7914 case PSEUDO_FUNC_REG:
7915 e->X_op = O_register;
7916 e->X_add_number = pseudo_func[idx].u.ival;
7917 break;
7918
7919 default:
7920 return 0;
7921 }
7922 return 1;
7923 }
7924
7925 /* first see if NAME is a known register name: */
7926 sym = hash_find (md.reg_hash, name);
7927 if (sym)
7928 {
7929 e->X_op = O_register;
7930 e->X_add_number = S_GET_VALUE (sym);
7931 return 1;
7932 }
7933
7934 cdesc = hash_find (md.const_hash, name);
7935 if (cdesc)
7936 {
7937 e->X_op = O_constant;
7938 e->X_add_number = cdesc->value;
7939 return 1;
7940 }
7941
7942 /* check for inN, locN, or outN: */
7943 idx = 0;
7944 switch (name[0])
7945 {
7946 case 'i':
7947 if (name[1] == 'n' && ISDIGIT (name[2]))
7948 {
7949 dr = &md.in;
7950 idx = 2;
7951 }
7952 break;
7953
7954 case 'l':
7955 if (name[1] == 'o' && name[2] == 'c' && ISDIGIT (name[3]))
7956 {
7957 dr = &md.loc;
7958 idx = 3;
7959 }
7960 break;
7961
7962 case 'o':
7963 if (name[1] == 'u' && name[2] == 't' && ISDIGIT (name[3]))
7964 {
7965 dr = &md.out;
7966 idx = 3;
7967 }
7968 break;
7969
7970 default:
7971 break;
7972 }
7973
7974 /* Ignore register numbers with leading zeroes, except zero itself. */
7975 if (dr && (name[idx] != '0' || name[idx + 1] == '\0'))
7976 {
7977 unsigned long regnum;
7978
7979 /* The name is inN, locN, or outN; parse the register number. */
7980 regnum = strtoul (name + idx, &end, 10);
7981 if (end > name + idx && *end == '\0' && regnum < 96)
7982 {
7983 if (regnum >= dr->num_regs)
7984 {
7985 if (!dr->num_regs)
7986 as_bad ("No current frame");
7987 else
7988 as_bad ("Register number out of range 0..%u",
7989 dr->num_regs - 1);
7990 regnum = 0;
7991 }
7992 e->X_op = O_register;
7993 e->X_add_number = dr->base + regnum;
7994 return 1;
7995 }
7996 }
7997
7998 end = alloca (strlen (name) + 1);
7999 strcpy (end, name);
8000 name = ia64_canonicalize_symbol_name (end);
8001 if ((dr = hash_find (md.dynreg_hash, name)))
8002 {
8003 /* We've got ourselves the name of a rotating register set.
8004 Store the base register number in the low 16 bits of
8005 X_add_number and the size of the register set in the top 16
8006 bits. */
8007 e->X_op = O_register;
8008 e->X_add_number = dr->base | (dr->num_regs << 16);
8009 return 1;
8010 }
8011 return 0;
8012 }
8013
8014 /* Remove the '#' suffix that indicates a symbol as opposed to a register. */
8015
8016 char *
8017 ia64_canonicalize_symbol_name (name)
8018 char *name;
8019 {
8020 size_t len = strlen (name), full = len;
8021
8022 while (len > 0 && name[len - 1] == '#')
8023 --len;
8024 if (len <= 0)
8025 {
8026 if (full > 0)
8027 as_bad ("Standalone `#' is illegal");
8028 }
8029 else if (len < full - 1)
8030 as_warn ("Redundant `#' suffix operators");
8031 name[len] = '\0';
8032 return name;
8033 }
8034
8035 /* Return true if idesc is a conditional branch instruction. This excludes
8036 the modulo scheduled branches, and br.ia. Mod-sched branches are excluded
8037 because they always read/write resources regardless of the value of the
8038 qualifying predicate. br.ia must always use p0, and hence is always
8039 taken. Thus this function returns true for branches which can fall
8040 through, and which use no resources if they do fall through. */
8041
8042 static int
8043 is_conditional_branch (idesc)
8044 struct ia64_opcode *idesc;
8045 {
8046 /* br is a conditional branch. Everything that starts with br. except
8047 br.ia, br.c{loop,top,exit}, and br.w{top,exit} is a conditional branch.
8048 Everything that starts with brl is a conditional branch. */
8049 return (idesc->name[0] == 'b' && idesc->name[1] == 'r'
8050 && (idesc->name[2] == '\0'
8051 || (idesc->name[2] == '.' && idesc->name[3] != 'i'
8052 && idesc->name[3] != 'c' && idesc->name[3] != 'w')
8053 || idesc->name[2] == 'l'
8054 /* br.cond, br.call, br.clr */
8055 || (idesc->name[2] == '.' && idesc->name[3] == 'c'
8056 && (idesc->name[4] == 'a' || idesc->name[4] == 'o'
8057 || (idesc->name[4] == 'l' && idesc->name[5] == 'r')))));
8058 }
8059
8060 /* Return whether the given opcode is a taken branch. If there's any doubt,
8061 returns zero. */
8062
8063 static int
8064 is_taken_branch (idesc)
8065 struct ia64_opcode *idesc;
8066 {
8067 return ((is_conditional_branch (idesc) && CURR_SLOT.qp_regno == 0)
8068 || strncmp (idesc->name, "br.ia", 5) == 0);
8069 }
8070
8071 /* Return whether the given opcode is an interruption or rfi. If there's any
8072 doubt, returns zero. */
8073
8074 static int
8075 is_interruption_or_rfi (idesc)
8076 struct ia64_opcode *idesc;
8077 {
8078 if (strcmp (idesc->name, "rfi") == 0)
8079 return 1;
8080 return 0;
8081 }
8082
8083 /* Returns the index of the given dependency in the opcode's list of chks, or
8084 -1 if there is no dependency. */
8085
8086 static int
8087 depends_on (depind, idesc)
8088 int depind;
8089 struct ia64_opcode *idesc;
8090 {
8091 int i;
8092 const struct ia64_opcode_dependency *dep = idesc->dependencies;
8093 for (i = 0; i < dep->nchks; i++)
8094 {
8095 if (depind == DEP (dep->chks[i]))
8096 return i;
8097 }
8098 return -1;
8099 }
8100
8101 /* Determine a set of specific resources used for a particular resource
8102 class. Returns the number of specific resources identified For those
8103 cases which are not determinable statically, the resource returned is
8104 marked nonspecific.
8105
8106 Meanings of value in 'NOTE':
8107 1) only read/write when the register number is explicitly encoded in the
8108 insn.
8109 2) only read CFM when accessing a rotating GR, FR, or PR. mov pr only
8110 accesses CFM when qualifying predicate is in the rotating region.
8111 3) general register value is used to specify an indirect register; not
8112 determinable statically.
8113 4) only read the given resource when bits 7:0 of the indirect index
8114 register value does not match the register number of the resource; not
8115 determinable statically.
8116 5) all rules are implementation specific.
8117 6) only when both the index specified by the reader and the index specified
8118 by the writer have the same value in bits 63:61; not determinable
8119 statically.
8120 7) only access the specified resource when the corresponding mask bit is
8121 set
8122 8) PSR.dfh is only read when these insns reference FR32-127. PSR.dfl is
8123 only read when these insns reference FR2-31
8124 9) PSR.mfl is only written when these insns write FR2-31. PSR.mfh is only
8125 written when these insns write FR32-127
8126 10) The PSR.bn bit is only accessed when one of GR16-31 is specified in the
8127 instruction
8128 11) The target predicates are written independently of PR[qp], but source
8129 registers are only read if PR[qp] is true. Since the state of PR[qp]
8130 cannot statically be determined, all source registers are marked used.
8131 12) This insn only reads the specified predicate register when that
8132 register is the PR[qp].
8133 13) This reference to ld-c only applies to teh GR whose value is loaded
8134 with data returned from memory, not the post-incremented address register.
8135 14) The RSE resource includes the implementation-specific RSE internal
8136 state resources. At least one (and possibly more) of these resources are
8137 read by each instruction listed in IC:rse-readers. At least one (and
8138 possibly more) of these resources are written by each insn listed in
8139 IC:rse-writers.
8140 15+16) Represents reserved instructions, which the assembler does not
8141 generate.
8142
8143 Memory resources (i.e. locations in memory) are *not* marked or tracked by
8144 this code; there are no dependency violations based on memory access.
8145 */
8146
8147 #define MAX_SPECS 256
8148 #define DV_CHK 1
8149 #define DV_REG 0
8150
8151 static int
8152 specify_resource (dep, idesc, type, specs, note, path)
8153 const struct ia64_dependency *dep;
8154 struct ia64_opcode *idesc;
8155 int type; /* is this a DV chk or a DV reg? */
8156 struct rsrc specs[MAX_SPECS]; /* returned specific resources */
8157 int note; /* resource note for this insn's usage */
8158 int path; /* which execution path to examine */
8159 {
8160 int count = 0;
8161 int i;
8162 int rsrc_write = 0;
8163 struct rsrc tmpl;
8164
8165 if (dep->mode == IA64_DV_WAW
8166 || (dep->mode == IA64_DV_RAW && type == DV_REG)
8167 || (dep->mode == IA64_DV_WAR && type == DV_CHK))
8168 rsrc_write = 1;
8169
8170 /* template for any resources we identify */
8171 tmpl.dependency = dep;
8172 tmpl.note = note;
8173 tmpl.insn_srlz = tmpl.data_srlz = 0;
8174 tmpl.qp_regno = CURR_SLOT.qp_regno;
8175 tmpl.link_to_qp_branch = 1;
8176 tmpl.mem_offset.hint = 0;
8177 tmpl.mem_offset.offset = 0;
8178 tmpl.mem_offset.base = 0;
8179 tmpl.specific = 1;
8180 tmpl.index = -1;
8181 tmpl.cmp_type = CMP_NONE;
8182 tmpl.depind = 0;
8183 tmpl.file = NULL;
8184 tmpl.line = 0;
8185 tmpl.path = 0;
8186
8187 #define UNHANDLED \
8188 as_warn (_("Unhandled dependency %s for %s (%s), note %d"), \
8189 dep->name, idesc->name, (rsrc_write?"write":"read"), note)
8190 #define KNOWN(REG) (gr_values[REG].known && gr_values[REG].path >= path)
8191
8192 /* we don't need to track these */
8193 if (dep->semantics == IA64_DVS_NONE)
8194 return 0;
8195
8196 switch (dep->specifier)
8197 {
8198 case IA64_RS_AR_K:
8199 if (note == 1)
8200 {
8201 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8202 {
8203 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8204 if (regno >= 0 && regno <= 7)
8205 {
8206 specs[count] = tmpl;
8207 specs[count++].index = regno;
8208 }
8209 }
8210 }
8211 else if (note == 0)
8212 {
8213 for (i = 0; i < 8; i++)
8214 {
8215 specs[count] = tmpl;
8216 specs[count++].index = i;
8217 }
8218 }
8219 else
8220 {
8221 UNHANDLED;
8222 }
8223 break;
8224
8225 case IA64_RS_AR_UNAT:
8226 /* This is a mov =AR or mov AR= instruction. */
8227 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8228 {
8229 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8230 if (regno == AR_UNAT)
8231 {
8232 specs[count++] = tmpl;
8233 }
8234 }
8235 else
8236 {
8237 /* This is a spill/fill, or other instruction that modifies the
8238 unat register. */
8239
8240 /* Unless we can determine the specific bits used, mark the whole
8241 thing; bits 8:3 of the memory address indicate the bit used in
8242 UNAT. The .mem.offset hint may be used to eliminate a small
8243 subset of conflicts. */
8244 specs[count] = tmpl;
8245 if (md.mem_offset.hint)
8246 {
8247 if (md.debug_dv)
8248 fprintf (stderr, " Using hint for spill/fill\n");
8249 /* The index isn't actually used, just set it to something
8250 approximating the bit index. */
8251 specs[count].index = (md.mem_offset.offset >> 3) & 0x3F;
8252 specs[count].mem_offset.hint = 1;
8253 specs[count].mem_offset.offset = md.mem_offset.offset;
8254 specs[count++].mem_offset.base = md.mem_offset.base;
8255 }
8256 else
8257 {
8258 specs[count++].specific = 0;
8259 }
8260 }
8261 break;
8262
8263 case IA64_RS_AR:
8264 if (note == 1)
8265 {
8266 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8267 {
8268 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8269 if ((regno >= 8 && regno <= 15)
8270 || (regno >= 20 && regno <= 23)
8271 || (regno >= 31 && regno <= 39)
8272 || (regno >= 41 && regno <= 47)
8273 || (regno >= 67 && regno <= 111))
8274 {
8275 specs[count] = tmpl;
8276 specs[count++].index = regno;
8277 }
8278 }
8279 }
8280 else
8281 {
8282 UNHANDLED;
8283 }
8284 break;
8285
8286 case IA64_RS_ARb:
8287 if (note == 1)
8288 {
8289 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
8290 {
8291 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
8292 if ((regno >= 48 && regno <= 63)
8293 || (regno >= 112 && regno <= 127))
8294 {
8295 specs[count] = tmpl;
8296 specs[count++].index = regno;
8297 }
8298 }
8299 }
8300 else if (note == 0)
8301 {
8302 for (i = 48; i < 64; i++)
8303 {
8304 specs[count] = tmpl;
8305 specs[count++].index = i;
8306 }
8307 for (i = 112; i < 128; i++)
8308 {
8309 specs[count] = tmpl;
8310 specs[count++].index = i;
8311 }
8312 }
8313 else
8314 {
8315 UNHANDLED;
8316 }
8317 break;
8318
8319 case IA64_RS_BR:
8320 if (note != 1)
8321 {
8322 UNHANDLED;
8323 }
8324 else
8325 {
8326 if (rsrc_write)
8327 {
8328 for (i = 0; i < idesc->num_outputs; i++)
8329 if (idesc->operands[i] == IA64_OPND_B1
8330 || idesc->operands[i] == IA64_OPND_B2)
8331 {
8332 specs[count] = tmpl;
8333 specs[count++].index =
8334 CURR_SLOT.opnd[i].X_add_number - REG_BR;
8335 }
8336 }
8337 else
8338 {
8339 for (i = idesc->num_outputs; i < NELEMS (idesc->operands); i++)
8340 if (idesc->operands[i] == IA64_OPND_B1
8341 || idesc->operands[i] == IA64_OPND_B2)
8342 {
8343 specs[count] = tmpl;
8344 specs[count++].index =
8345 CURR_SLOT.opnd[i].X_add_number - REG_BR;
8346 }
8347 }
8348 }
8349 break;
8350
8351 case IA64_RS_CPUID: /* four or more registers */
8352 if (note == 3)
8353 {
8354 if (idesc->operands[!rsrc_write] == IA64_OPND_CPUID_R3)
8355 {
8356 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8357 if (regno >= 0 && regno < NELEMS (gr_values)
8358 && KNOWN (regno))
8359 {
8360 specs[count] = tmpl;
8361 specs[count++].index = gr_values[regno].value & 0xFF;
8362 }
8363 else
8364 {
8365 specs[count] = tmpl;
8366 specs[count++].specific = 0;
8367 }
8368 }
8369 }
8370 else
8371 {
8372 UNHANDLED;
8373 }
8374 break;
8375
8376 case IA64_RS_DBR: /* four or more registers */
8377 if (note == 3)
8378 {
8379 if (idesc->operands[!rsrc_write] == IA64_OPND_DBR_R3)
8380 {
8381 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8382 if (regno >= 0 && regno < NELEMS (gr_values)
8383 && KNOWN (regno))
8384 {
8385 specs[count] = tmpl;
8386 specs[count++].index = gr_values[regno].value & 0xFF;
8387 }
8388 else
8389 {
8390 specs[count] = tmpl;
8391 specs[count++].specific = 0;
8392 }
8393 }
8394 }
8395 else if (note == 0 && !rsrc_write)
8396 {
8397 specs[count] = tmpl;
8398 specs[count++].specific = 0;
8399 }
8400 else
8401 {
8402 UNHANDLED;
8403 }
8404 break;
8405
8406 case IA64_RS_IBR: /* four or more registers */
8407 if (note == 3)
8408 {
8409 if (idesc->operands[!rsrc_write] == IA64_OPND_IBR_R3)
8410 {
8411 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8412 if (regno >= 0 && regno < NELEMS (gr_values)
8413 && KNOWN (regno))
8414 {
8415 specs[count] = tmpl;
8416 specs[count++].index = gr_values[regno].value & 0xFF;
8417 }
8418 else
8419 {
8420 specs[count] = tmpl;
8421 specs[count++].specific = 0;
8422 }
8423 }
8424 }
8425 else
8426 {
8427 UNHANDLED;
8428 }
8429 break;
8430
8431 case IA64_RS_MSR:
8432 if (note == 5)
8433 {
8434 /* These are implementation specific. Force all references to
8435 conflict with all other references. */
8436 specs[count] = tmpl;
8437 specs[count++].specific = 0;
8438 }
8439 else
8440 {
8441 UNHANDLED;
8442 }
8443 break;
8444
8445 case IA64_RS_PKR: /* 16 or more registers */
8446 if (note == 3 || note == 4)
8447 {
8448 if (idesc->operands[!rsrc_write] == IA64_OPND_PKR_R3)
8449 {
8450 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8451 if (regno >= 0 && regno < NELEMS (gr_values)
8452 && KNOWN (regno))
8453 {
8454 if (note == 3)
8455 {
8456 specs[count] = tmpl;
8457 specs[count++].index = gr_values[regno].value & 0xFF;
8458 }
8459 else
8460 for (i = 0; i < NELEMS (gr_values); i++)
8461 {
8462 /* Uses all registers *except* the one in R3. */
8463 if ((unsigned)i != (gr_values[regno].value & 0xFF))
8464 {
8465 specs[count] = tmpl;
8466 specs[count++].index = i;
8467 }
8468 }
8469 }
8470 else
8471 {
8472 specs[count] = tmpl;
8473 specs[count++].specific = 0;
8474 }
8475 }
8476 }
8477 else if (note == 0)
8478 {
8479 /* probe et al. */
8480 specs[count] = tmpl;
8481 specs[count++].specific = 0;
8482 }
8483 break;
8484
8485 case IA64_RS_PMC: /* four or more registers */
8486 if (note == 3)
8487 {
8488 if (idesc->operands[!rsrc_write] == IA64_OPND_PMC_R3
8489 || (!rsrc_write && idesc->operands[1] == IA64_OPND_PMD_R3))
8490
8491 {
8492 int index = ((idesc->operands[1] == IA64_OPND_R3 && !rsrc_write)
8493 ? 1 : !rsrc_write);
8494 int regno = CURR_SLOT.opnd[index].X_add_number - REG_GR;
8495 if (regno >= 0 && regno < NELEMS (gr_values)
8496 && KNOWN (regno))
8497 {
8498 specs[count] = tmpl;
8499 specs[count++].index = gr_values[regno].value & 0xFF;
8500 }
8501 else
8502 {
8503 specs[count] = tmpl;
8504 specs[count++].specific = 0;
8505 }
8506 }
8507 }
8508 else
8509 {
8510 UNHANDLED;
8511 }
8512 break;
8513
8514 case IA64_RS_PMD: /* four or more registers */
8515 if (note == 3)
8516 {
8517 if (idesc->operands[!rsrc_write] == IA64_OPND_PMD_R3)
8518 {
8519 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8520 if (regno >= 0 && regno < NELEMS (gr_values)
8521 && KNOWN (regno))
8522 {
8523 specs[count] = tmpl;
8524 specs[count++].index = gr_values[regno].value & 0xFF;
8525 }
8526 else
8527 {
8528 specs[count] = tmpl;
8529 specs[count++].specific = 0;
8530 }
8531 }
8532 }
8533 else
8534 {
8535 UNHANDLED;
8536 }
8537 break;
8538
8539 case IA64_RS_RR: /* eight registers */
8540 if (note == 6)
8541 {
8542 if (idesc->operands[!rsrc_write] == IA64_OPND_RR_R3)
8543 {
8544 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR;
8545 if (regno >= 0 && regno < NELEMS (gr_values)
8546 && KNOWN (regno))
8547 {
8548 specs[count] = tmpl;
8549 specs[count++].index = (gr_values[regno].value >> 61) & 0x7;
8550 }
8551 else
8552 {
8553 specs[count] = tmpl;
8554 specs[count++].specific = 0;
8555 }
8556 }
8557 }
8558 else if (note == 0 && !rsrc_write)
8559 {
8560 specs[count] = tmpl;
8561 specs[count++].specific = 0;
8562 }
8563 else
8564 {
8565 UNHANDLED;
8566 }
8567 break;
8568
8569 case IA64_RS_CR_IRR:
8570 if (note == 0)
8571 {
8572 /* handle mov-from-CR-IVR; it's a read that writes CR[IRR] */
8573 int regno = CURR_SLOT.opnd[1].X_add_number - REG_CR;
8574 if (rsrc_write
8575 && idesc->operands[1] == IA64_OPND_CR3
8576 && regno == CR_IVR)
8577 {
8578 for (i = 0; i < 4; i++)
8579 {
8580 specs[count] = tmpl;
8581 specs[count++].index = CR_IRR0 + i;
8582 }
8583 }
8584 }
8585 else if (note == 1)
8586 {
8587 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8588 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
8589 && regno >= CR_IRR0
8590 && regno <= CR_IRR3)
8591 {
8592 specs[count] = tmpl;
8593 specs[count++].index = regno;
8594 }
8595 }
8596 else
8597 {
8598 UNHANDLED;
8599 }
8600 break;
8601
8602 case IA64_RS_CR_LRR:
8603 if (note != 1)
8604 {
8605 UNHANDLED;
8606 }
8607 else
8608 {
8609 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8610 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3
8611 && (regno == CR_LRR0 || regno == CR_LRR1))
8612 {
8613 specs[count] = tmpl;
8614 specs[count++].index = regno;
8615 }
8616 }
8617 break;
8618
8619 case IA64_RS_CR:
8620 if (note == 1)
8621 {
8622 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
8623 {
8624 specs[count] = tmpl;
8625 specs[count++].index =
8626 CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
8627 }
8628 }
8629 else
8630 {
8631 UNHANDLED;
8632 }
8633 break;
8634
8635 case IA64_RS_FR:
8636 case IA64_RS_FRb:
8637 if (note != 1)
8638 {
8639 UNHANDLED;
8640 }
8641 else if (rsrc_write)
8642 {
8643 if (dep->specifier == IA64_RS_FRb
8644 && idesc->operands[0] == IA64_OPND_F1)
8645 {
8646 specs[count] = tmpl;
8647 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_FR;
8648 }
8649 }
8650 else
8651 {
8652 for (i = idesc->num_outputs; i < NELEMS (idesc->operands); i++)
8653 {
8654 if (idesc->operands[i] == IA64_OPND_F2
8655 || idesc->operands[i] == IA64_OPND_F3
8656 || idesc->operands[i] == IA64_OPND_F4)
8657 {
8658 specs[count] = tmpl;
8659 specs[count++].index =
8660 CURR_SLOT.opnd[i].X_add_number - REG_FR;
8661 }
8662 }
8663 }
8664 break;
8665
8666 case IA64_RS_GR:
8667 if (note == 13)
8668 {
8669 /* This reference applies only to the GR whose value is loaded with
8670 data returned from memory. */
8671 specs[count] = tmpl;
8672 specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_GR;
8673 }
8674 else if (note == 1)
8675 {
8676 if (rsrc_write)
8677 {
8678 for (i = 0; i < idesc->num_outputs; i++)
8679 if (idesc->operands[i] == IA64_OPND_R1
8680 || idesc->operands[i] == IA64_OPND_R2
8681 || idesc->operands[i] == IA64_OPND_R3)
8682 {
8683 specs[count] = tmpl;
8684 specs[count++].index =
8685 CURR_SLOT.opnd[i].X_add_number - REG_GR;
8686 }
8687 if (idesc->flags & IA64_OPCODE_POSTINC)
8688 for (i = 0; i < NELEMS (idesc->operands); i++)
8689 if (idesc->operands[i] == IA64_OPND_MR3)
8690 {
8691 specs[count] = tmpl;
8692 specs[count++].index =
8693 CURR_SLOT.opnd[i].X_add_number - REG_GR;
8694 }
8695 }
8696 else
8697 {
8698 /* Look for anything that reads a GR. */
8699 for (i = 0; i < NELEMS (idesc->operands); i++)
8700 {
8701 if (idesc->operands[i] == IA64_OPND_MR3
8702 || idesc->operands[i] == IA64_OPND_CPUID_R3
8703 || idesc->operands[i] == IA64_OPND_DBR_R3
8704 || idesc->operands[i] == IA64_OPND_IBR_R3
8705 || idesc->operands[i] == IA64_OPND_MSR_R3
8706 || idesc->operands[i] == IA64_OPND_PKR_R3
8707 || idesc->operands[i] == IA64_OPND_PMC_R3
8708 || idesc->operands[i] == IA64_OPND_PMD_R3
8709 || idesc->operands[i] == IA64_OPND_RR_R3
8710 || ((i >= idesc->num_outputs)
8711 && (idesc->operands[i] == IA64_OPND_R1
8712 || idesc->operands[i] == IA64_OPND_R2
8713 || idesc->operands[i] == IA64_OPND_R3
8714 /* addl source register. */
8715 || idesc->operands[i] == IA64_OPND_R3_2)))
8716 {
8717 specs[count] = tmpl;
8718 specs[count++].index =
8719 CURR_SLOT.opnd[i].X_add_number - REG_GR;
8720 }
8721 }
8722 }
8723 }
8724 else
8725 {
8726 UNHANDLED;
8727 }
8728 break;
8729
8730 /* This is the same as IA64_RS_PRr, except that the register range is
8731 from 1 - 15, and there are no rotating register reads/writes here. */
8732 case IA64_RS_PR:
8733 if (note == 0)
8734 {
8735 for (i = 1; i < 16; i++)
8736 {
8737 specs[count] = tmpl;
8738 specs[count++].index = i;
8739 }
8740 }
8741 else if (note == 7)
8742 {
8743 valueT mask = 0;
8744 /* Mark only those registers indicated by the mask. */
8745 if (rsrc_write)
8746 {
8747 mask = CURR_SLOT.opnd[2].X_add_number;
8748 for (i = 1; i < 16; i++)
8749 if (mask & ((valueT) 1 << i))
8750 {
8751 specs[count] = tmpl;
8752 specs[count++].index = i;
8753 }
8754 }
8755 else
8756 {
8757 UNHANDLED;
8758 }
8759 }
8760 else if (note == 11) /* note 11 implies note 1 as well */
8761 {
8762 if (rsrc_write)
8763 {
8764 for (i = 0; i < idesc->num_outputs; i++)
8765 {
8766 if (idesc->operands[i] == IA64_OPND_P1
8767 || idesc->operands[i] == IA64_OPND_P2)
8768 {
8769 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
8770 if (regno >= 1 && regno < 16)
8771 {
8772 specs[count] = tmpl;
8773 specs[count++].index = regno;
8774 }
8775 }
8776 }
8777 }
8778 else
8779 {
8780 UNHANDLED;
8781 }
8782 }
8783 else if (note == 12)
8784 {
8785 if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16)
8786 {
8787 specs[count] = tmpl;
8788 specs[count++].index = CURR_SLOT.qp_regno;
8789 }
8790 }
8791 else if (note == 1)
8792 {
8793 if (rsrc_write)
8794 {
8795 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
8796 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
8797 int or_andcm = strstr (idesc->name, "or.andcm") != NULL;
8798 int and_orcm = strstr (idesc->name, "and.orcm") != NULL;
8799
8800 if ((idesc->operands[0] == IA64_OPND_P1
8801 || idesc->operands[0] == IA64_OPND_P2)
8802 && p1 >= 1 && p1 < 16)
8803 {
8804 specs[count] = tmpl;
8805 specs[count].cmp_type =
8806 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
8807 specs[count++].index = p1;
8808 }
8809 if ((idesc->operands[1] == IA64_OPND_P1
8810 || idesc->operands[1] == IA64_OPND_P2)
8811 && p2 >= 1 && p2 < 16)
8812 {
8813 specs[count] = tmpl;
8814 specs[count].cmp_type =
8815 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
8816 specs[count++].index = p2;
8817 }
8818 }
8819 else
8820 {
8821 if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16)
8822 {
8823 specs[count] = tmpl;
8824 specs[count++].index = CURR_SLOT.qp_regno;
8825 }
8826 if (idesc->operands[1] == IA64_OPND_PR)
8827 {
8828 for (i = 1; i < 16; i++)
8829 {
8830 specs[count] = tmpl;
8831 specs[count++].index = i;
8832 }
8833 }
8834 }
8835 }
8836 else
8837 {
8838 UNHANDLED;
8839 }
8840 break;
8841
8842 /* This is the general case for PRs. IA64_RS_PR and IA64_RS_PR63 are
8843 simplified cases of this. */
8844 case IA64_RS_PRr:
8845 if (note == 0)
8846 {
8847 for (i = 16; i < 63; i++)
8848 {
8849 specs[count] = tmpl;
8850 specs[count++].index = i;
8851 }
8852 }
8853 else if (note == 7)
8854 {
8855 valueT mask = 0;
8856 /* Mark only those registers indicated by the mask. */
8857 if (rsrc_write
8858 && idesc->operands[0] == IA64_OPND_PR)
8859 {
8860 mask = CURR_SLOT.opnd[2].X_add_number;
8861 if (mask & ((valueT) 1 << 16))
8862 for (i = 16; i < 63; i++)
8863 {
8864 specs[count] = tmpl;
8865 specs[count++].index = i;
8866 }
8867 }
8868 else if (rsrc_write
8869 && idesc->operands[0] == IA64_OPND_PR_ROT)
8870 {
8871 for (i = 16; i < 63; i++)
8872 {
8873 specs[count] = tmpl;
8874 specs[count++].index = i;
8875 }
8876 }
8877 else
8878 {
8879 UNHANDLED;
8880 }
8881 }
8882 else if (note == 11) /* note 11 implies note 1 as well */
8883 {
8884 if (rsrc_write)
8885 {
8886 for (i = 0; i < idesc->num_outputs; i++)
8887 {
8888 if (idesc->operands[i] == IA64_OPND_P1
8889 || idesc->operands[i] == IA64_OPND_P2)
8890 {
8891 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
8892 if (regno >= 16 && regno < 63)
8893 {
8894 specs[count] = tmpl;
8895 specs[count++].index = regno;
8896 }
8897 }
8898 }
8899 }
8900 else
8901 {
8902 UNHANDLED;
8903 }
8904 }
8905 else if (note == 12)
8906 {
8907 if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63)
8908 {
8909 specs[count] = tmpl;
8910 specs[count++].index = CURR_SLOT.qp_regno;
8911 }
8912 }
8913 else if (note == 1)
8914 {
8915 if (rsrc_write)
8916 {
8917 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
8918 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
8919 int or_andcm = strstr (idesc->name, "or.andcm") != NULL;
8920 int and_orcm = strstr (idesc->name, "and.orcm") != NULL;
8921
8922 if ((idesc->operands[0] == IA64_OPND_P1
8923 || idesc->operands[0] == IA64_OPND_P2)
8924 && p1 >= 16 && p1 < 63)
8925 {
8926 specs[count] = tmpl;
8927 specs[count].cmp_type =
8928 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
8929 specs[count++].index = p1;
8930 }
8931 if ((idesc->operands[1] == IA64_OPND_P1
8932 || idesc->operands[1] == IA64_OPND_P2)
8933 && p2 >= 16 && p2 < 63)
8934 {
8935 specs[count] = tmpl;
8936 specs[count].cmp_type =
8937 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
8938 specs[count++].index = p2;
8939 }
8940 }
8941 else
8942 {
8943 if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63)
8944 {
8945 specs[count] = tmpl;
8946 specs[count++].index = CURR_SLOT.qp_regno;
8947 }
8948 if (idesc->operands[1] == IA64_OPND_PR)
8949 {
8950 for (i = 16; i < 63; i++)
8951 {
8952 specs[count] = tmpl;
8953 specs[count++].index = i;
8954 }
8955 }
8956 }
8957 }
8958 else
8959 {
8960 UNHANDLED;
8961 }
8962 break;
8963
8964 case IA64_RS_PSR:
8965 /* Verify that the instruction is using the PSR bit indicated in
8966 dep->regindex. */
8967 if (note == 0)
8968 {
8969 if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_UM)
8970 {
8971 if (dep->regindex < 6)
8972 {
8973 specs[count++] = tmpl;
8974 }
8975 }
8976 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR)
8977 {
8978 if (dep->regindex < 32
8979 || dep->regindex == 35
8980 || dep->regindex == 36
8981 || (!rsrc_write && dep->regindex == PSR_CPL))
8982 {
8983 specs[count++] = tmpl;
8984 }
8985 }
8986 else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_L)
8987 {
8988 if (dep->regindex < 32
8989 || dep->regindex == 35
8990 || dep->regindex == 36
8991 || (rsrc_write && dep->regindex == PSR_CPL))
8992 {
8993 specs[count++] = tmpl;
8994 }
8995 }
8996 else
8997 {
8998 /* Several PSR bits have very specific dependencies. */
8999 switch (dep->regindex)
9000 {
9001 default:
9002 specs[count++] = tmpl;
9003 break;
9004 case PSR_IC:
9005 if (rsrc_write)
9006 {
9007 specs[count++] = tmpl;
9008 }
9009 else
9010 {
9011 /* Only certain CR accesses use PSR.ic */
9012 if (idesc->operands[0] == IA64_OPND_CR3
9013 || idesc->operands[1] == IA64_OPND_CR3)
9014 {
9015 int index =
9016 ((idesc->operands[0] == IA64_OPND_CR3)
9017 ? 0 : 1);
9018 int regno =
9019 CURR_SLOT.opnd[index].X_add_number - REG_CR;
9020
9021 switch (regno)
9022 {
9023 default:
9024 break;
9025 case CR_ITIR:
9026 case CR_IFS:
9027 case CR_IIM:
9028 case CR_IIP:
9029 case CR_IPSR:
9030 case CR_ISR:
9031 case CR_IFA:
9032 case CR_IHA:
9033 case CR_IIPA:
9034 specs[count++] = tmpl;
9035 break;
9036 }
9037 }
9038 }
9039 break;
9040 case PSR_CPL:
9041 if (rsrc_write)
9042 {
9043 specs[count++] = tmpl;
9044 }
9045 else
9046 {
9047 /* Only some AR accesses use cpl */
9048 if (idesc->operands[0] == IA64_OPND_AR3
9049 || idesc->operands[1] == IA64_OPND_AR3)
9050 {
9051 int index =
9052 ((idesc->operands[0] == IA64_OPND_AR3)
9053 ? 0 : 1);
9054 int regno =
9055 CURR_SLOT.opnd[index].X_add_number - REG_AR;
9056
9057 if (regno == AR_ITC
9058 || (index == 0
9059 && (regno == AR_ITC
9060 || regno == AR_RSC
9061 || (regno >= AR_K0
9062 && regno <= AR_K7))))
9063 {
9064 specs[count++] = tmpl;
9065 }
9066 }
9067 else
9068 {
9069 specs[count++] = tmpl;
9070 }
9071 break;
9072 }
9073 }
9074 }
9075 }
9076 else if (note == 7)
9077 {
9078 valueT mask = 0;
9079 if (idesc->operands[0] == IA64_OPND_IMMU24)
9080 {
9081 mask = CURR_SLOT.opnd[0].X_add_number;
9082 }
9083 else
9084 {
9085 UNHANDLED;
9086 }
9087 if (mask & ((valueT) 1 << dep->regindex))
9088 {
9089 specs[count++] = tmpl;
9090 }
9091 }
9092 else if (note == 8)
9093 {
9094 int min = dep->regindex == PSR_DFL ? 2 : 32;
9095 int max = dep->regindex == PSR_DFL ? 31 : 127;
9096 /* dfh is read on FR32-127; dfl is read on FR2-31 */
9097 for (i = 0; i < NELEMS (idesc->operands); i++)
9098 {
9099 if (idesc->operands[i] == IA64_OPND_F1
9100 || idesc->operands[i] == IA64_OPND_F2
9101 || idesc->operands[i] == IA64_OPND_F3
9102 || idesc->operands[i] == IA64_OPND_F4)
9103 {
9104 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
9105 if (reg >= min && reg <= max)
9106 {
9107 specs[count++] = tmpl;
9108 }
9109 }
9110 }
9111 }
9112 else if (note == 9)
9113 {
9114 int min = dep->regindex == PSR_MFL ? 2 : 32;
9115 int max = dep->regindex == PSR_MFL ? 31 : 127;
9116 /* mfh is read on writes to FR32-127; mfl is read on writes to
9117 FR2-31 */
9118 for (i = 0; i < idesc->num_outputs; i++)
9119 {
9120 if (idesc->operands[i] == IA64_OPND_F1)
9121 {
9122 int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR;
9123 if (reg >= min && reg <= max)
9124 {
9125 specs[count++] = tmpl;
9126 }
9127 }
9128 }
9129 }
9130 else if (note == 10)
9131 {
9132 for (i = 0; i < NELEMS (idesc->operands); i++)
9133 {
9134 if (idesc->operands[i] == IA64_OPND_R1
9135 || idesc->operands[i] == IA64_OPND_R2
9136 || idesc->operands[i] == IA64_OPND_R3)
9137 {
9138 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9139 if (regno >= 16 && regno <= 31)
9140 {
9141 specs[count++] = tmpl;
9142 }
9143 }
9144 }
9145 }
9146 else
9147 {
9148 UNHANDLED;
9149 }
9150 break;
9151
9152 case IA64_RS_AR_FPSR:
9153 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3)
9154 {
9155 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
9156 if (regno == AR_FPSR)
9157 {
9158 specs[count++] = tmpl;
9159 }
9160 }
9161 else
9162 {
9163 specs[count++] = tmpl;
9164 }
9165 break;
9166
9167 case IA64_RS_ARX:
9168 /* Handle all AR[REG] resources */
9169 if (note == 0 || note == 1)
9170 {
9171 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR;
9172 if (idesc->operands[!rsrc_write] == IA64_OPND_AR3
9173 && regno == dep->regindex)
9174 {
9175 specs[count++] = tmpl;
9176 }
9177 /* other AR[REG] resources may be affected by AR accesses */
9178 else if (idesc->operands[0] == IA64_OPND_AR3)
9179 {
9180 /* AR[] writes */
9181 regno = CURR_SLOT.opnd[0].X_add_number - REG_AR;
9182 switch (dep->regindex)
9183 {
9184 default:
9185 break;
9186 case AR_BSP:
9187 case AR_RNAT:
9188 if (regno == AR_BSPSTORE)
9189 {
9190 specs[count++] = tmpl;
9191 }
9192 case AR_RSC:
9193 if (!rsrc_write &&
9194 (regno == AR_BSPSTORE
9195 || regno == AR_RNAT))
9196 {
9197 specs[count++] = tmpl;
9198 }
9199 break;
9200 }
9201 }
9202 else if (idesc->operands[1] == IA64_OPND_AR3)
9203 {
9204 /* AR[] reads */
9205 regno = CURR_SLOT.opnd[1].X_add_number - REG_AR;
9206 switch (dep->regindex)
9207 {
9208 default:
9209 break;
9210 case AR_RSC:
9211 if (regno == AR_BSPSTORE || regno == AR_RNAT)
9212 {
9213 specs[count++] = tmpl;
9214 }
9215 break;
9216 }
9217 }
9218 else
9219 {
9220 specs[count++] = tmpl;
9221 }
9222 }
9223 else
9224 {
9225 UNHANDLED;
9226 }
9227 break;
9228
9229 case IA64_RS_CRX:
9230 /* Handle all CR[REG] resources */
9231 if (note == 0 || note == 1)
9232 {
9233 if (idesc->operands[!rsrc_write] == IA64_OPND_CR3)
9234 {
9235 int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR;
9236 if (regno == dep->regindex)
9237 {
9238 specs[count++] = tmpl;
9239 }
9240 else if (!rsrc_write)
9241 {
9242 /* Reads from CR[IVR] affect other resources. */
9243 if (regno == CR_IVR)
9244 {
9245 if ((dep->regindex >= CR_IRR0
9246 && dep->regindex <= CR_IRR3)
9247 || dep->regindex == CR_TPR)
9248 {
9249 specs[count++] = tmpl;
9250 }
9251 }
9252 }
9253 }
9254 else
9255 {
9256 specs[count++] = tmpl;
9257 }
9258 }
9259 else
9260 {
9261 UNHANDLED;
9262 }
9263 break;
9264
9265 case IA64_RS_INSERVICE:
9266 /* look for write of EOI (67) or read of IVR (65) */
9267 if ((idesc->operands[0] == IA64_OPND_CR3
9268 && CURR_SLOT.opnd[0].X_add_number - REG_CR == CR_EOI)
9269 || (idesc->operands[1] == IA64_OPND_CR3
9270 && CURR_SLOT.opnd[1].X_add_number - REG_CR == CR_IVR))
9271 {
9272 specs[count++] = tmpl;
9273 }
9274 break;
9275
9276 case IA64_RS_GR0:
9277 if (note == 1)
9278 {
9279 specs[count++] = tmpl;
9280 }
9281 else
9282 {
9283 UNHANDLED;
9284 }
9285 break;
9286
9287 case IA64_RS_CFM:
9288 if (note != 2)
9289 {
9290 specs[count++] = tmpl;
9291 }
9292 else
9293 {
9294 /* Check if any of the registers accessed are in the rotating region.
9295 mov to/from pr accesses CFM only when qp_regno is in the rotating
9296 region */
9297 for (i = 0; i < NELEMS (idesc->operands); i++)
9298 {
9299 if (idesc->operands[i] == IA64_OPND_R1
9300 || idesc->operands[i] == IA64_OPND_R2
9301 || idesc->operands[i] == IA64_OPND_R3)
9302 {
9303 int num = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9304 /* Assumes that md.rot.num_regs is always valid */
9305 if (md.rot.num_regs > 0
9306 && num > 31
9307 && num < 31 + md.rot.num_regs)
9308 {
9309 specs[count] = tmpl;
9310 specs[count++].specific = 0;
9311 }
9312 }
9313 else if (idesc->operands[i] == IA64_OPND_F1
9314 || idesc->operands[i] == IA64_OPND_F2
9315 || idesc->operands[i] == IA64_OPND_F3
9316 || idesc->operands[i] == IA64_OPND_F4)
9317 {
9318 int num = CURR_SLOT.opnd[i].X_add_number - REG_FR;
9319 if (num > 31)
9320 {
9321 specs[count] = tmpl;
9322 specs[count++].specific = 0;
9323 }
9324 }
9325 else if (idesc->operands[i] == IA64_OPND_P1
9326 || idesc->operands[i] == IA64_OPND_P2)
9327 {
9328 int num = CURR_SLOT.opnd[i].X_add_number - REG_P;
9329 if (num > 15)
9330 {
9331 specs[count] = tmpl;
9332 specs[count++].specific = 0;
9333 }
9334 }
9335 }
9336 if (CURR_SLOT.qp_regno > 15)
9337 {
9338 specs[count] = tmpl;
9339 specs[count++].specific = 0;
9340 }
9341 }
9342 break;
9343
9344 /* This is the same as IA64_RS_PRr, except simplified to account for
9345 the fact that there is only one register. */
9346 case IA64_RS_PR63:
9347 if (note == 0)
9348 {
9349 specs[count++] = tmpl;
9350 }
9351 else if (note == 7)
9352 {
9353 valueT mask = 0;
9354 if (idesc->operands[2] == IA64_OPND_IMM17)
9355 mask = CURR_SLOT.opnd[2].X_add_number;
9356 if (mask & ((valueT) 1 << 63))
9357 specs[count++] = tmpl;
9358 }
9359 else if (note == 11)
9360 {
9361 if ((idesc->operands[0] == IA64_OPND_P1
9362 && CURR_SLOT.opnd[0].X_add_number - REG_P == 63)
9363 || (idesc->operands[1] == IA64_OPND_P2
9364 && CURR_SLOT.opnd[1].X_add_number - REG_P == 63))
9365 {
9366 specs[count++] = tmpl;
9367 }
9368 }
9369 else if (note == 12)
9370 {
9371 if (CURR_SLOT.qp_regno == 63)
9372 {
9373 specs[count++] = tmpl;
9374 }
9375 }
9376 else if (note == 1)
9377 {
9378 if (rsrc_write)
9379 {
9380 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
9381 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
9382 int or_andcm = strstr (idesc->name, "or.andcm") != NULL;
9383 int and_orcm = strstr (idesc->name, "and.orcm") != NULL;
9384
9385 if (p1 == 63
9386 && (idesc->operands[0] == IA64_OPND_P1
9387 || idesc->operands[0] == IA64_OPND_P2))
9388 {
9389 specs[count] = tmpl;
9390 specs[count++].cmp_type =
9391 (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE));
9392 }
9393 if (p2 == 63
9394 && (idesc->operands[1] == IA64_OPND_P1
9395 || idesc->operands[1] == IA64_OPND_P2))
9396 {
9397 specs[count] = tmpl;
9398 specs[count++].cmp_type =
9399 (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE));
9400 }
9401 }
9402 else
9403 {
9404 if (CURR_SLOT.qp_regno == 63)
9405 {
9406 specs[count++] = tmpl;
9407 }
9408 }
9409 }
9410 else
9411 {
9412 UNHANDLED;
9413 }
9414 break;
9415
9416 case IA64_RS_RSE:
9417 /* FIXME we can identify some individual RSE written resources, but RSE
9418 read resources have not yet been completely identified, so for now
9419 treat RSE as a single resource */
9420 if (strncmp (idesc->name, "mov", 3) == 0)
9421 {
9422 if (rsrc_write)
9423 {
9424 if (idesc->operands[0] == IA64_OPND_AR3
9425 && CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE)
9426 {
9427 specs[count++] = tmpl;
9428 }
9429 }
9430 else
9431 {
9432 if (idesc->operands[0] == IA64_OPND_AR3)
9433 {
9434 if (CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE
9435 || CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_RNAT)
9436 {
9437 specs[count++] = tmpl;
9438 }
9439 }
9440 else if (idesc->operands[1] == IA64_OPND_AR3)
9441 {
9442 if (CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSP
9443 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSPSTORE
9444 || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_RNAT)
9445 {
9446 specs[count++] = tmpl;
9447 }
9448 }
9449 }
9450 }
9451 else
9452 {
9453 specs[count++] = tmpl;
9454 }
9455 break;
9456
9457 case IA64_RS_ANY:
9458 /* FIXME -- do any of these need to be non-specific? */
9459 specs[count++] = tmpl;
9460 break;
9461
9462 default:
9463 as_bad (_("Unrecognized dependency specifier %d\n"), dep->specifier);
9464 break;
9465 }
9466
9467 return count;
9468 }
9469
9470 /* Clear branch flags on marked resources. This breaks the link between the
9471 QP of the marking instruction and a subsequent branch on the same QP. */
9472
9473 static void
9474 clear_qp_branch_flag (mask)
9475 valueT mask;
9476 {
9477 int i;
9478 for (i = 0; i < regdepslen; i++)
9479 {
9480 valueT bit = ((valueT) 1 << regdeps[i].qp_regno);
9481 if ((bit & mask) != 0)
9482 {
9483 regdeps[i].link_to_qp_branch = 0;
9484 }
9485 }
9486 }
9487
9488 /* MASK contains 2 and only 2 PRs which are mutually exclusive. Remove
9489 any mutexes which contain one of the PRs and create new ones when
9490 needed. */
9491
9492 static int
9493 update_qp_mutex (valueT mask)
9494 {
9495 int i;
9496 int add = 0;
9497
9498 i = 0;
9499 while (i < qp_mutexeslen)
9500 {
9501 if ((qp_mutexes[i].prmask & mask) != 0)
9502 {
9503 /* If it destroys and creates the same mutex, do nothing. */
9504 if (qp_mutexes[i].prmask == mask
9505 && qp_mutexes[i].path == md.path)
9506 {
9507 i++;
9508 add = -1;
9509 }
9510 else
9511 {
9512 int keep = 0;
9513
9514 if (md.debug_dv)
9515 {
9516 fprintf (stderr, " Clearing mutex relation");
9517 print_prmask (qp_mutexes[i].prmask);
9518 fprintf (stderr, "\n");
9519 }
9520
9521 /* Deal with the old mutex with more than 3+ PRs only if
9522 the new mutex on the same execution path with it.
9523
9524 FIXME: The 3+ mutex support is incomplete.
9525 dot_pred_rel () may be a better place to fix it. */
9526 if (qp_mutexes[i].path == md.path)
9527 {
9528 /* If it is a proper subset of the mutex, create a
9529 new mutex. */
9530 if (add == 0
9531 && (qp_mutexes[i].prmask & mask) == mask)
9532 add = 1;
9533
9534 qp_mutexes[i].prmask &= ~mask;
9535 if (qp_mutexes[i].prmask & (qp_mutexes[i].prmask - 1))
9536 {
9537 /* Modify the mutex if there are more than one
9538 PR left. */
9539 keep = 1;
9540 i++;
9541 }
9542 }
9543
9544 if (keep == 0)
9545 /* Remove the mutex. */
9546 qp_mutexes[i] = qp_mutexes[--qp_mutexeslen];
9547 }
9548 }
9549 else
9550 ++i;
9551 }
9552
9553 if (add == 1)
9554 add_qp_mutex (mask);
9555
9556 return add;
9557 }
9558
9559 /* Remove any mutexes which contain any of the PRs indicated in the mask.
9560
9561 Any changes to a PR clears the mutex relations which include that PR. */
9562
9563 static void
9564 clear_qp_mutex (mask)
9565 valueT mask;
9566 {
9567 int i;
9568
9569 i = 0;
9570 while (i < qp_mutexeslen)
9571 {
9572 if ((qp_mutexes[i].prmask & mask) != 0)
9573 {
9574 if (md.debug_dv)
9575 {
9576 fprintf (stderr, " Clearing mutex relation");
9577 print_prmask (qp_mutexes[i].prmask);
9578 fprintf (stderr, "\n");
9579 }
9580 qp_mutexes[i] = qp_mutexes[--qp_mutexeslen];
9581 }
9582 else
9583 ++i;
9584 }
9585 }
9586
9587 /* Clear implies relations which contain PRs in the given masks.
9588 P1_MASK indicates the source of the implies relation, while P2_MASK
9589 indicates the implied PR. */
9590
9591 static void
9592 clear_qp_implies (p1_mask, p2_mask)
9593 valueT p1_mask;
9594 valueT p2_mask;
9595 {
9596 int i;
9597
9598 i = 0;
9599 while (i < qp_implieslen)
9600 {
9601 if ((((valueT) 1 << qp_implies[i].p1) & p1_mask) != 0
9602 || (((valueT) 1 << qp_implies[i].p2) & p2_mask) != 0)
9603 {
9604 if (md.debug_dv)
9605 fprintf (stderr, "Clearing implied relation PR%d->PR%d\n",
9606 qp_implies[i].p1, qp_implies[i].p2);
9607 qp_implies[i] = qp_implies[--qp_implieslen];
9608 }
9609 else
9610 ++i;
9611 }
9612 }
9613
9614 /* Add the PRs specified to the list of implied relations. */
9615
9616 static void
9617 add_qp_imply (p1, p2)
9618 int p1, p2;
9619 {
9620 valueT mask;
9621 valueT bit;
9622 int i;
9623
9624 /* p0 is not meaningful here. */
9625 if (p1 == 0 || p2 == 0)
9626 abort ();
9627
9628 if (p1 == p2)
9629 return;
9630
9631 /* If it exists already, ignore it. */
9632 for (i = 0; i < qp_implieslen; i++)
9633 {
9634 if (qp_implies[i].p1 == p1
9635 && qp_implies[i].p2 == p2
9636 && qp_implies[i].path == md.path
9637 && !qp_implies[i].p2_branched)
9638 return;
9639 }
9640
9641 if (qp_implieslen == qp_impliestotlen)
9642 {
9643 qp_impliestotlen += 20;
9644 qp_implies = (struct qp_imply *)
9645 xrealloc ((void *) qp_implies,
9646 qp_impliestotlen * sizeof (struct qp_imply));
9647 }
9648 if (md.debug_dv)
9649 fprintf (stderr, " Registering PR%d implies PR%d\n", p1, p2);
9650 qp_implies[qp_implieslen].p1 = p1;
9651 qp_implies[qp_implieslen].p2 = p2;
9652 qp_implies[qp_implieslen].path = md.path;
9653 qp_implies[qp_implieslen++].p2_branched = 0;
9654
9655 /* Add in the implied transitive relations; for everything that p2 implies,
9656 make p1 imply that, too; for everything that implies p1, make it imply p2
9657 as well. */
9658 for (i = 0; i < qp_implieslen; i++)
9659 {
9660 if (qp_implies[i].p1 == p2)
9661 add_qp_imply (p1, qp_implies[i].p2);
9662 if (qp_implies[i].p2 == p1)
9663 add_qp_imply (qp_implies[i].p1, p2);
9664 }
9665 /* Add in mutex relations implied by this implies relation; for each mutex
9666 relation containing p2, duplicate it and replace p2 with p1. */
9667 bit = (valueT) 1 << p1;
9668 mask = (valueT) 1 << p2;
9669 for (i = 0; i < qp_mutexeslen; i++)
9670 {
9671 if (qp_mutexes[i].prmask & mask)
9672 add_qp_mutex ((qp_mutexes[i].prmask & ~mask) | bit);
9673 }
9674 }
9675
9676 /* Add the PRs specified in the mask to the mutex list; this means that only
9677 one of the PRs can be true at any time. PR0 should never be included in
9678 the mask. */
9679
9680 static void
9681 add_qp_mutex (mask)
9682 valueT mask;
9683 {
9684 if (mask & 0x1)
9685 abort ();
9686
9687 if (qp_mutexeslen == qp_mutexestotlen)
9688 {
9689 qp_mutexestotlen += 20;
9690 qp_mutexes = (struct qpmutex *)
9691 xrealloc ((void *) qp_mutexes,
9692 qp_mutexestotlen * sizeof (struct qpmutex));
9693 }
9694 if (md.debug_dv)
9695 {
9696 fprintf (stderr, " Registering mutex on");
9697 print_prmask (mask);
9698 fprintf (stderr, "\n");
9699 }
9700 qp_mutexes[qp_mutexeslen].path = md.path;
9701 qp_mutexes[qp_mutexeslen++].prmask = mask;
9702 }
9703
9704 static int
9705 has_suffix_p (name, suffix)
9706 const char *name;
9707 const char *suffix;
9708 {
9709 size_t namelen = strlen (name);
9710 size_t sufflen = strlen (suffix);
9711
9712 if (namelen <= sufflen)
9713 return 0;
9714 return strcmp (name + namelen - sufflen, suffix) == 0;
9715 }
9716
9717 static void
9718 clear_register_values ()
9719 {
9720 int i;
9721 if (md.debug_dv)
9722 fprintf (stderr, " Clearing register values\n");
9723 for (i = 1; i < NELEMS (gr_values); i++)
9724 gr_values[i].known = 0;
9725 }
9726
9727 /* Keep track of register values/changes which affect DV tracking.
9728
9729 optimization note: should add a flag to classes of insns where otherwise we
9730 have to examine a group of strings to identify them. */
9731
9732 static void
9733 note_register_values (idesc)
9734 struct ia64_opcode *idesc;
9735 {
9736 valueT qp_changemask = 0;
9737 int i;
9738
9739 /* Invalidate values for registers being written to. */
9740 for (i = 0; i < idesc->num_outputs; i++)
9741 {
9742 if (idesc->operands[i] == IA64_OPND_R1
9743 || idesc->operands[i] == IA64_OPND_R2
9744 || idesc->operands[i] == IA64_OPND_R3)
9745 {
9746 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9747 if (regno > 0 && regno < NELEMS (gr_values))
9748 gr_values[regno].known = 0;
9749 }
9750 else if (idesc->operands[i] == IA64_OPND_R3_2)
9751 {
9752 int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR;
9753 if (regno > 0 && regno < 4)
9754 gr_values[regno].known = 0;
9755 }
9756 else if (idesc->operands[i] == IA64_OPND_P1
9757 || idesc->operands[i] == IA64_OPND_P2)
9758 {
9759 int regno = CURR_SLOT.opnd[i].X_add_number - REG_P;
9760 qp_changemask |= (valueT) 1 << regno;
9761 }
9762 else if (idesc->operands[i] == IA64_OPND_PR)
9763 {
9764 if (idesc->operands[2] & (valueT) 0x10000)
9765 qp_changemask = ~(valueT) 0x1FFFF | idesc->operands[2];
9766 else
9767 qp_changemask = idesc->operands[2];
9768 break;
9769 }
9770 else if (idesc->operands[i] == IA64_OPND_PR_ROT)
9771 {
9772 if (idesc->operands[1] & ((valueT) 1 << 43))
9773 qp_changemask = -((valueT) 1 << 44) | idesc->operands[1];
9774 else
9775 qp_changemask = idesc->operands[1];
9776 qp_changemask &= ~(valueT) 0xFFFF;
9777 break;
9778 }
9779 }
9780
9781 /* Always clear qp branch flags on any PR change. */
9782 /* FIXME there may be exceptions for certain compares. */
9783 clear_qp_branch_flag (qp_changemask);
9784
9785 /* Invalidate rotating registers on insns which affect RRBs in CFM. */
9786 if (idesc->flags & IA64_OPCODE_MOD_RRBS)
9787 {
9788 qp_changemask |= ~(valueT) 0xFFFF;
9789 if (strcmp (idesc->name, "clrrrb.pr") != 0)
9790 {
9791 for (i = 32; i < 32 + md.rot.num_regs; i++)
9792 gr_values[i].known = 0;
9793 }
9794 clear_qp_mutex (qp_changemask);
9795 clear_qp_implies (qp_changemask, qp_changemask);
9796 }
9797 /* After a call, all register values are undefined, except those marked
9798 as "safe". */
9799 else if (strncmp (idesc->name, "br.call", 6) == 0
9800 || strncmp (idesc->name, "brl.call", 7) == 0)
9801 {
9802 /* FIXME keep GR values which are marked as "safe_across_calls" */
9803 clear_register_values ();
9804 clear_qp_mutex (~qp_safe_across_calls);
9805 clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls);
9806 clear_qp_branch_flag (~qp_safe_across_calls);
9807 }
9808 else if (is_interruption_or_rfi (idesc)
9809 || is_taken_branch (idesc))
9810 {
9811 clear_register_values ();
9812 clear_qp_mutex (~(valueT) 0);
9813 clear_qp_implies (~(valueT) 0, ~(valueT) 0);
9814 }
9815 /* Look for mutex and implies relations. */
9816 else if ((idesc->operands[0] == IA64_OPND_P1
9817 || idesc->operands[0] == IA64_OPND_P2)
9818 && (idesc->operands[1] == IA64_OPND_P1
9819 || idesc->operands[1] == IA64_OPND_P2))
9820 {
9821 int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P;
9822 int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P;
9823 valueT p1mask = (p1 != 0) ? (valueT) 1 << p1 : 0;
9824 valueT p2mask = (p2 != 0) ? (valueT) 1 << p2 : 0;
9825
9826 /* If both PRs are PR0, we can't really do anything. */
9827 if (p1 == 0 && p2 == 0)
9828 {
9829 if (md.debug_dv)
9830 fprintf (stderr, " Ignoring PRs due to inclusion of p0\n");
9831 }
9832 /* In general, clear mutexes and implies which include P1 or P2,
9833 with the following exceptions. */
9834 else if (has_suffix_p (idesc->name, ".or.andcm")
9835 || has_suffix_p (idesc->name, ".and.orcm"))
9836 {
9837 clear_qp_implies (p2mask, p1mask);
9838 }
9839 else if (has_suffix_p (idesc->name, ".andcm")
9840 || has_suffix_p (idesc->name, ".and"))
9841 {
9842 clear_qp_implies (0, p1mask | p2mask);
9843 }
9844 else if (has_suffix_p (idesc->name, ".orcm")
9845 || has_suffix_p (idesc->name, ".or"))
9846 {
9847 clear_qp_mutex (p1mask | p2mask);
9848 clear_qp_implies (p1mask | p2mask, 0);
9849 }
9850 else
9851 {
9852 int added = 0;
9853
9854 clear_qp_implies (p1mask | p2mask, p1mask | p2mask);
9855
9856 /* If one of the PRs is PR0, we call clear_qp_mutex. */
9857 if (p1 == 0 || p2 == 0)
9858 clear_qp_mutex (p1mask | p2mask);
9859 else
9860 added = update_qp_mutex (p1mask | p2mask);
9861
9862 if (CURR_SLOT.qp_regno == 0
9863 || has_suffix_p (idesc->name, ".unc"))
9864 {
9865 if (added == 0 && p1 && p2)
9866 add_qp_mutex (p1mask | p2mask);
9867 if (CURR_SLOT.qp_regno != 0)
9868 {
9869 if (p1)
9870 add_qp_imply (p1, CURR_SLOT.qp_regno);
9871 if (p2)
9872 add_qp_imply (p2, CURR_SLOT.qp_regno);
9873 }
9874 }
9875 }
9876 }
9877 /* Look for mov imm insns into GRs. */
9878 else if (idesc->operands[0] == IA64_OPND_R1
9879 && (idesc->operands[1] == IA64_OPND_IMM22
9880 || idesc->operands[1] == IA64_OPND_IMMU64)
9881 && CURR_SLOT.opnd[1].X_op == O_constant
9882 && (strcmp (idesc->name, "mov") == 0
9883 || strcmp (idesc->name, "movl") == 0))
9884 {
9885 int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR;
9886 if (regno > 0 && regno < NELEMS (gr_values))
9887 {
9888 gr_values[regno].known = 1;
9889 gr_values[regno].value = CURR_SLOT.opnd[1].X_add_number;
9890 gr_values[regno].path = md.path;
9891 if (md.debug_dv)
9892 {
9893 fprintf (stderr, " Know gr%d = ", regno);
9894 fprintf_vma (stderr, gr_values[regno].value);
9895 fputs ("\n", stderr);
9896 }
9897 }
9898 }
9899 /* Look for dep.z imm insns. */
9900 else if (idesc->operands[0] == IA64_OPND_R1
9901 && idesc->operands[1] == IA64_OPND_IMM8
9902 && strcmp (idesc->name, "dep.z") == 0)
9903 {
9904 int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR;
9905 if (regno > 0 && regno < NELEMS (gr_values))
9906 {
9907 valueT value = CURR_SLOT.opnd[1].X_add_number;
9908
9909 if (CURR_SLOT.opnd[3].X_add_number < 64)
9910 value &= ((valueT)1 << CURR_SLOT.opnd[3].X_add_number) - 1;
9911 value <<= CURR_SLOT.opnd[2].X_add_number;
9912 gr_values[regno].known = 1;
9913 gr_values[regno].value = value;
9914 gr_values[regno].path = md.path;
9915 if (md.debug_dv)
9916 {
9917 fprintf (stderr, " Know gr%d = ", regno);
9918 fprintf_vma (stderr, gr_values[regno].value);
9919 fputs ("\n", stderr);
9920 }
9921 }
9922 }
9923 else
9924 {
9925 clear_qp_mutex (qp_changemask);
9926 clear_qp_implies (qp_changemask, qp_changemask);
9927 }
9928 }
9929
9930 /* Return whether the given predicate registers are currently mutex. */
9931
9932 static int
9933 qp_mutex (p1, p2, path)
9934 int p1;
9935 int p2;
9936 int path;
9937 {
9938 int i;
9939 valueT mask;
9940
9941 if (p1 != p2)
9942 {
9943 mask = ((valueT) 1 << p1) | (valueT) 1 << p2;
9944 for (i = 0; i < qp_mutexeslen; i++)
9945 {
9946 if (qp_mutexes[i].path >= path
9947 && (qp_mutexes[i].prmask & mask) == mask)
9948 return 1;
9949 }
9950 }
9951 return 0;
9952 }
9953
9954 /* Return whether the given resource is in the given insn's list of chks
9955 Return 1 if the conflict is absolutely determined, 2 if it's a potential
9956 conflict. */
9957
9958 static int
9959 resources_match (rs, idesc, note, qp_regno, path)
9960 struct rsrc *rs;
9961 struct ia64_opcode *idesc;
9962 int note;
9963 int qp_regno;
9964 int path;
9965 {
9966 struct rsrc specs[MAX_SPECS];
9967 int count;
9968
9969 /* If the marked resource's qp_regno and the given qp_regno are mutex,
9970 we don't need to check. One exception is note 11, which indicates that
9971 target predicates are written regardless of PR[qp]. */
9972 if (qp_mutex (rs->qp_regno, qp_regno, path)
9973 && note != 11)
9974 return 0;
9975
9976 count = specify_resource (rs->dependency, idesc, DV_CHK, specs, note, path);
9977 while (count-- > 0)
9978 {
9979 /* UNAT checking is a bit more specific than other resources */
9980 if (rs->dependency->specifier == IA64_RS_AR_UNAT
9981 && specs[count].mem_offset.hint
9982 && rs->mem_offset.hint)
9983 {
9984 if (rs->mem_offset.base == specs[count].mem_offset.base)
9985 {
9986 if (((rs->mem_offset.offset >> 3) & 0x3F) ==
9987 ((specs[count].mem_offset.offset >> 3) & 0x3F))
9988 return 1;
9989 else
9990 continue;
9991 }
9992 }
9993
9994 /* Skip apparent PR write conflicts where both writes are an AND or both
9995 writes are an OR. */
9996 if (rs->dependency->specifier == IA64_RS_PR
9997 || rs->dependency->specifier == IA64_RS_PRr
9998 || rs->dependency->specifier == IA64_RS_PR63)
9999 {
10000 if (specs[count].cmp_type != CMP_NONE
10001 && specs[count].cmp_type == rs->cmp_type)
10002 {
10003 if (md.debug_dv)
10004 fprintf (stderr, " %s on parallel compare allowed (PR%d)\n",
10005 dv_mode[rs->dependency->mode],
10006 rs->dependency->specifier != IA64_RS_PR63 ?
10007 specs[count].index : 63);
10008 continue;
10009 }
10010 if (md.debug_dv)
10011 fprintf (stderr,
10012 " %s on parallel compare conflict %s vs %s on PR%d\n",
10013 dv_mode[rs->dependency->mode],
10014 dv_cmp_type[rs->cmp_type],
10015 dv_cmp_type[specs[count].cmp_type],
10016 rs->dependency->specifier != IA64_RS_PR63 ?
10017 specs[count].index : 63);
10018
10019 }
10020
10021 /* If either resource is not specific, conservatively assume a conflict
10022 */
10023 if (!specs[count].specific || !rs->specific)
10024 return 2;
10025 else if (specs[count].index == rs->index)
10026 return 1;
10027 }
10028
10029 return 0;
10030 }
10031
10032 /* Indicate an instruction group break; if INSERT_STOP is non-zero, then
10033 insert a stop to create the break. Update all resource dependencies
10034 appropriately. If QP_REGNO is non-zero, only apply the break to resources
10035 which use the same QP_REGNO and have the link_to_qp_branch flag set.
10036 If SAVE_CURRENT is non-zero, don't affect resources marked by the current
10037 instruction. */
10038
10039 static void
10040 insn_group_break (insert_stop, qp_regno, save_current)
10041 int insert_stop;
10042 int qp_regno;
10043 int save_current;
10044 {
10045 int i;
10046
10047 if (insert_stop && md.num_slots_in_use > 0)
10048 PREV_SLOT.end_of_insn_group = 1;
10049
10050 if (md.debug_dv)
10051 {
10052 fprintf (stderr, " Insn group break%s",
10053 (insert_stop ? " (w/stop)" : ""));
10054 if (qp_regno != 0)
10055 fprintf (stderr, " effective for QP=%d", qp_regno);
10056 fprintf (stderr, "\n");
10057 }
10058
10059 i = 0;
10060 while (i < regdepslen)
10061 {
10062 const struct ia64_dependency *dep = regdeps[i].dependency;
10063
10064 if (qp_regno != 0
10065 && regdeps[i].qp_regno != qp_regno)
10066 {
10067 ++i;
10068 continue;
10069 }
10070
10071 if (save_current
10072 && CURR_SLOT.src_file == regdeps[i].file
10073 && CURR_SLOT.src_line == regdeps[i].line)
10074 {
10075 ++i;
10076 continue;
10077 }
10078
10079 /* clear dependencies which are automatically cleared by a stop, or
10080 those that have reached the appropriate state of insn serialization */
10081 if (dep->semantics == IA64_DVS_IMPLIED
10082 || dep->semantics == IA64_DVS_IMPLIEDF
10083 || regdeps[i].insn_srlz == STATE_SRLZ)
10084 {
10085 print_dependency ("Removing", i);
10086 regdeps[i] = regdeps[--regdepslen];
10087 }
10088 else
10089 {
10090 if (dep->semantics == IA64_DVS_DATA
10091 || dep->semantics == IA64_DVS_INSTR
10092 || dep->semantics == IA64_DVS_SPECIFIC)
10093 {
10094 if (regdeps[i].insn_srlz == STATE_NONE)
10095 regdeps[i].insn_srlz = STATE_STOP;
10096 if (regdeps[i].data_srlz == STATE_NONE)
10097 regdeps[i].data_srlz = STATE_STOP;
10098 }
10099 ++i;
10100 }
10101 }
10102 }
10103
10104 /* Add the given resource usage spec to the list of active dependencies. */
10105
10106 static void
10107 mark_resource (idesc, dep, spec, depind, path)
10108 struct ia64_opcode *idesc ATTRIBUTE_UNUSED;
10109 const struct ia64_dependency *dep ATTRIBUTE_UNUSED;
10110 struct rsrc *spec;
10111 int depind;
10112 int path;
10113 {
10114 if (regdepslen == regdepstotlen)
10115 {
10116 regdepstotlen += 20;
10117 regdeps = (struct rsrc *)
10118 xrealloc ((void *) regdeps,
10119 regdepstotlen * sizeof (struct rsrc));
10120 }
10121
10122 regdeps[regdepslen] = *spec;
10123 regdeps[regdepslen].depind = depind;
10124 regdeps[regdepslen].path = path;
10125 regdeps[regdepslen].file = CURR_SLOT.src_file;
10126 regdeps[regdepslen].line = CURR_SLOT.src_line;
10127
10128 print_dependency ("Adding", regdepslen);
10129
10130 ++regdepslen;
10131 }
10132
10133 static void
10134 print_dependency (action, depind)
10135 const char *action;
10136 int depind;
10137 {
10138 if (md.debug_dv)
10139 {
10140 fprintf (stderr, " %s %s '%s'",
10141 action, dv_mode[(regdeps[depind].dependency)->mode],
10142 (regdeps[depind].dependency)->name);
10143 if (regdeps[depind].specific && regdeps[depind].index >= 0)
10144 fprintf (stderr, " (%d)", regdeps[depind].index);
10145 if (regdeps[depind].mem_offset.hint)
10146 {
10147 fputs (" ", stderr);
10148 fprintf_vma (stderr, regdeps[depind].mem_offset.base);
10149 fputs ("+", stderr);
10150 fprintf_vma (stderr, regdeps[depind].mem_offset.offset);
10151 }
10152 fprintf (stderr, "\n");
10153 }
10154 }
10155
10156 static void
10157 instruction_serialization ()
10158 {
10159 int i;
10160 if (md.debug_dv)
10161 fprintf (stderr, " Instruction serialization\n");
10162 for (i = 0; i < regdepslen; i++)
10163 if (regdeps[i].insn_srlz == STATE_STOP)
10164 regdeps[i].insn_srlz = STATE_SRLZ;
10165 }
10166
10167 static void
10168 data_serialization ()
10169 {
10170 int i = 0;
10171 if (md.debug_dv)
10172 fprintf (stderr, " Data serialization\n");
10173 while (i < regdepslen)
10174 {
10175 if (regdeps[i].data_srlz == STATE_STOP
10176 /* Note: as of 991210, all "other" dependencies are cleared by a
10177 data serialization. This might change with new tables */
10178 || (regdeps[i].dependency)->semantics == IA64_DVS_OTHER)
10179 {
10180 print_dependency ("Removing", i);
10181 regdeps[i] = regdeps[--regdepslen];
10182 }
10183 else
10184 ++i;
10185 }
10186 }
10187
10188 /* Insert stops and serializations as needed to avoid DVs. */
10189
10190 static void
10191 remove_marked_resource (rs)
10192 struct rsrc *rs;
10193 {
10194 switch (rs->dependency->semantics)
10195 {
10196 case IA64_DVS_SPECIFIC:
10197 if (md.debug_dv)
10198 fprintf (stderr, "Implementation-specific, assume worst case...\n");
10199 /* ...fall through... */
10200 case IA64_DVS_INSTR:
10201 if (md.debug_dv)
10202 fprintf (stderr, "Inserting instr serialization\n");
10203 if (rs->insn_srlz < STATE_STOP)
10204 insn_group_break (1, 0, 0);
10205 if (rs->insn_srlz < STATE_SRLZ)
10206 {
10207 struct slot oldslot = CURR_SLOT;
10208 /* Manually jam a srlz.i insn into the stream */
10209 memset (&CURR_SLOT, 0, sizeof (CURR_SLOT));
10210 CURR_SLOT.user_template = -1;
10211 CURR_SLOT.idesc = ia64_find_opcode ("srlz.i");
10212 instruction_serialization ();
10213 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
10214 if (++md.num_slots_in_use >= NUM_SLOTS)
10215 emit_one_bundle ();
10216 CURR_SLOT = oldslot;
10217 }
10218 insn_group_break (1, 0, 0);
10219 break;
10220 case IA64_DVS_OTHER: /* as of rev2 (991220) of the DV tables, all
10221 "other" types of DV are eliminated
10222 by a data serialization */
10223 case IA64_DVS_DATA:
10224 if (md.debug_dv)
10225 fprintf (stderr, "Inserting data serialization\n");
10226 if (rs->data_srlz < STATE_STOP)
10227 insn_group_break (1, 0, 0);
10228 {
10229 struct slot oldslot = CURR_SLOT;
10230 /* Manually jam a srlz.d insn into the stream */
10231 memset (&CURR_SLOT, 0, sizeof (CURR_SLOT));
10232 CURR_SLOT.user_template = -1;
10233 CURR_SLOT.idesc = ia64_find_opcode ("srlz.d");
10234 data_serialization ();
10235 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
10236 if (++md.num_slots_in_use >= NUM_SLOTS)
10237 emit_one_bundle ();
10238 CURR_SLOT = oldslot;
10239 }
10240 break;
10241 case IA64_DVS_IMPLIED:
10242 case IA64_DVS_IMPLIEDF:
10243 if (md.debug_dv)
10244 fprintf (stderr, "Inserting stop\n");
10245 insn_group_break (1, 0, 0);
10246 break;
10247 default:
10248 break;
10249 }
10250 }
10251
10252 /* Check the resources used by the given opcode against the current dependency
10253 list.
10254
10255 The check is run once for each execution path encountered. In this case,
10256 a unique execution path is the sequence of instructions following a code
10257 entry point, e.g. the following has three execution paths, one starting
10258 at L0, one at L1, and one at L2.
10259
10260 L0: nop
10261 L1: add
10262 L2: add
10263 br.ret
10264 */
10265
10266 static void
10267 check_dependencies (idesc)
10268 struct ia64_opcode *idesc;
10269 {
10270 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
10271 int path;
10272 int i;
10273
10274 /* Note that the number of marked resources may change within the
10275 loop if in auto mode. */
10276 i = 0;
10277 while (i < regdepslen)
10278 {
10279 struct rsrc *rs = &regdeps[i];
10280 const struct ia64_dependency *dep = rs->dependency;
10281 int chkind;
10282 int note;
10283 int start_over = 0;
10284
10285 if (dep->semantics == IA64_DVS_NONE
10286 || (chkind = depends_on (rs->depind, idesc)) == -1)
10287 {
10288 ++i;
10289 continue;
10290 }
10291
10292 note = NOTE (opdeps->chks[chkind]);
10293
10294 /* Check this resource against each execution path seen thus far. */
10295 for (path = 0; path <= md.path; path++)
10296 {
10297 int matchtype;
10298
10299 /* If the dependency wasn't on the path being checked, ignore it. */
10300 if (rs->path < path)
10301 continue;
10302
10303 /* If the QP for this insn implies a QP which has branched, don't
10304 bother checking. Ed. NOTE: I don't think this check is terribly
10305 useful; what's the point of generating code which will only be
10306 reached if its QP is zero?
10307 This code was specifically inserted to handle the following code,
10308 based on notes from Intel's DV checking code, where p1 implies p2.
10309
10310 mov r4 = 2
10311 (p2) br.cond L
10312 (p1) mov r4 = 7
10313 */
10314 if (CURR_SLOT.qp_regno != 0)
10315 {
10316 int skip = 0;
10317 int implies;
10318 for (implies = 0; implies < qp_implieslen; implies++)
10319 {
10320 if (qp_implies[implies].path >= path
10321 && qp_implies[implies].p1 == CURR_SLOT.qp_regno
10322 && qp_implies[implies].p2_branched)
10323 {
10324 skip = 1;
10325 break;
10326 }
10327 }
10328 if (skip)
10329 continue;
10330 }
10331
10332 if ((matchtype = resources_match (rs, idesc, note,
10333 CURR_SLOT.qp_regno, path)) != 0)
10334 {
10335 char msg[1024];
10336 char pathmsg[256] = "";
10337 char indexmsg[256] = "";
10338 int certain = (matchtype == 1 && CURR_SLOT.qp_regno == 0);
10339
10340 if (path != 0)
10341 sprintf (pathmsg, " when entry is at label '%s'",
10342 md.entry_labels[path - 1]);
10343 if (matchtype == 1 && rs->index >= 0)
10344 sprintf (indexmsg, ", specific resource number is %d",
10345 rs->index);
10346 sprintf (msg, "Use of '%s' %s %s dependency '%s' (%s)%s%s",
10347 idesc->name,
10348 (certain ? "violates" : "may violate"),
10349 dv_mode[dep->mode], dep->name,
10350 dv_sem[dep->semantics],
10351 pathmsg, indexmsg);
10352
10353 if (md.explicit_mode)
10354 {
10355 as_warn ("%s", msg);
10356 if (path < md.path)
10357 as_warn (_("Only the first path encountering the conflict "
10358 "is reported"));
10359 as_warn_where (rs->file, rs->line,
10360 _("This is the location of the "
10361 "conflicting usage"));
10362 /* Don't bother checking other paths, to avoid duplicating
10363 the same warning */
10364 break;
10365 }
10366 else
10367 {
10368 if (md.debug_dv)
10369 fprintf (stderr, "%s @ %s:%d\n", msg, rs->file, rs->line);
10370
10371 remove_marked_resource (rs);
10372
10373 /* since the set of dependencies has changed, start over */
10374 /* FIXME -- since we're removing dvs as we go, we
10375 probably don't really need to start over... */
10376 start_over = 1;
10377 break;
10378 }
10379 }
10380 }
10381 if (start_over)
10382 i = 0;
10383 else
10384 ++i;
10385 }
10386 }
10387
10388 /* Register new dependencies based on the given opcode. */
10389
10390 static void
10391 mark_resources (idesc)
10392 struct ia64_opcode *idesc;
10393 {
10394 int i;
10395 const struct ia64_opcode_dependency *opdeps = idesc->dependencies;
10396 int add_only_qp_reads = 0;
10397
10398 /* A conditional branch only uses its resources if it is taken; if it is
10399 taken, we stop following that path. The other branch types effectively
10400 *always* write their resources. If it's not taken, register only QP
10401 reads. */
10402 if (is_conditional_branch (idesc) || is_interruption_or_rfi (idesc))
10403 {
10404 add_only_qp_reads = 1;
10405 }
10406
10407 if (md.debug_dv)
10408 fprintf (stderr, "Registering '%s' resource usage\n", idesc->name);
10409
10410 for (i = 0; i < opdeps->nregs; i++)
10411 {
10412 const struct ia64_dependency *dep;
10413 struct rsrc specs[MAX_SPECS];
10414 int note;
10415 int path;
10416 int count;
10417
10418 dep = ia64_find_dependency (opdeps->regs[i]);
10419 note = NOTE (opdeps->regs[i]);
10420
10421 if (add_only_qp_reads
10422 && !(dep->mode == IA64_DV_WAR
10423 && (dep->specifier == IA64_RS_PR
10424 || dep->specifier == IA64_RS_PRr
10425 || dep->specifier == IA64_RS_PR63)))
10426 continue;
10427
10428 count = specify_resource (dep, idesc, DV_REG, specs, note, md.path);
10429
10430 while (count-- > 0)
10431 {
10432 mark_resource (idesc, dep, &specs[count],
10433 DEP (opdeps->regs[i]), md.path);
10434 }
10435
10436 /* The execution path may affect register values, which may in turn
10437 affect which indirect-access resources are accessed. */
10438 switch (dep->specifier)
10439 {
10440 default:
10441 break;
10442 case IA64_RS_CPUID:
10443 case IA64_RS_DBR:
10444 case IA64_RS_IBR:
10445 case IA64_RS_MSR:
10446 case IA64_RS_PKR:
10447 case IA64_RS_PMC:
10448 case IA64_RS_PMD:
10449 case IA64_RS_RR:
10450 for (path = 0; path < md.path; path++)
10451 {
10452 count = specify_resource (dep, idesc, DV_REG, specs, note, path);
10453 while (count-- > 0)
10454 mark_resource (idesc, dep, &specs[count],
10455 DEP (opdeps->regs[i]), path);
10456 }
10457 break;
10458 }
10459 }
10460 }
10461
10462 /* Remove dependencies when they no longer apply. */
10463
10464 static void
10465 update_dependencies (idesc)
10466 struct ia64_opcode *idesc;
10467 {
10468 int i;
10469
10470 if (strcmp (idesc->name, "srlz.i") == 0)
10471 {
10472 instruction_serialization ();
10473 }
10474 else if (strcmp (idesc->name, "srlz.d") == 0)
10475 {
10476 data_serialization ();
10477 }
10478 else if (is_interruption_or_rfi (idesc)
10479 || is_taken_branch (idesc))
10480 {
10481 /* Although technically the taken branch doesn't clear dependencies
10482 which require a srlz.[id], we don't follow the branch; the next
10483 instruction is assumed to start with a clean slate. */
10484 regdepslen = 0;
10485 md.path = 0;
10486 }
10487 else if (is_conditional_branch (idesc)
10488 && CURR_SLOT.qp_regno != 0)
10489 {
10490 int is_call = strstr (idesc->name, ".call") != NULL;
10491
10492 for (i = 0; i < qp_implieslen; i++)
10493 {
10494 /* If the conditional branch's predicate is implied by the predicate
10495 in an existing dependency, remove that dependency. */
10496 if (qp_implies[i].p2 == CURR_SLOT.qp_regno)
10497 {
10498 int depind = 0;
10499 /* Note that this implied predicate takes a branch so that if
10500 a later insn generates a DV but its predicate implies this
10501 one, we can avoid the false DV warning. */
10502 qp_implies[i].p2_branched = 1;
10503 while (depind < regdepslen)
10504 {
10505 if (regdeps[depind].qp_regno == qp_implies[i].p1)
10506 {
10507 print_dependency ("Removing", depind);
10508 regdeps[depind] = regdeps[--regdepslen];
10509 }
10510 else
10511 ++depind;
10512 }
10513 }
10514 }
10515 /* Any marked resources which have this same predicate should be
10516 cleared, provided that the QP hasn't been modified between the
10517 marking instruction and the branch. */
10518 if (is_call)
10519 {
10520 insn_group_break (0, CURR_SLOT.qp_regno, 1);
10521 }
10522 else
10523 {
10524 i = 0;
10525 while (i < regdepslen)
10526 {
10527 if (regdeps[i].qp_regno == CURR_SLOT.qp_regno
10528 && regdeps[i].link_to_qp_branch
10529 && (regdeps[i].file != CURR_SLOT.src_file
10530 || regdeps[i].line != CURR_SLOT.src_line))
10531 {
10532 /* Treat like a taken branch */
10533 print_dependency ("Removing", i);
10534 regdeps[i] = regdeps[--regdepslen];
10535 }
10536 else
10537 ++i;
10538 }
10539 }
10540 }
10541 }
10542
10543 /* Examine the current instruction for dependency violations. */
10544
10545 static int
10546 check_dv (idesc)
10547 struct ia64_opcode *idesc;
10548 {
10549 if (md.debug_dv)
10550 {
10551 fprintf (stderr, "Checking %s for violations (line %d, %d/%d)\n",
10552 idesc->name, CURR_SLOT.src_line,
10553 idesc->dependencies->nchks,
10554 idesc->dependencies->nregs);
10555 }
10556
10557 /* Look through the list of currently marked resources; if the current
10558 instruction has the dependency in its chks list which uses that resource,
10559 check against the specific resources used. */
10560 check_dependencies (idesc);
10561
10562 /* Look up the instruction's regdeps (RAW writes, WAW writes, and WAR reads),
10563 then add them to the list of marked resources. */
10564 mark_resources (idesc);
10565
10566 /* There are several types of dependency semantics, and each has its own
10567 requirements for being cleared
10568
10569 Instruction serialization (insns separated by interruption, rfi, or
10570 writer + srlz.i + reader, all in separate groups) clears DVS_INSTR.
10571
10572 Data serialization (instruction serialization, or writer + srlz.d +
10573 reader, where writer and srlz.d are in separate groups) clears
10574 DVS_DATA. (This also clears DVS_OTHER, but that is not guaranteed to
10575 always be the case).
10576
10577 Instruction group break (groups separated by stop, taken branch,
10578 interruption or rfi) clears DVS_IMPLIED and DVS_IMPLIEDF.
10579 */
10580 update_dependencies (idesc);
10581
10582 /* Sometimes, knowing a register value allows us to avoid giving a false DV
10583 warning. Keep track of as many as possible that are useful. */
10584 note_register_values (idesc);
10585
10586 /* We don't need or want this anymore. */
10587 md.mem_offset.hint = 0;
10588
10589 return 0;
10590 }
10591
10592 /* Translate one line of assembly. Pseudo ops and labels do not show
10593 here. */
10594 void
10595 md_assemble (str)
10596 char *str;
10597 {
10598 char *saved_input_line_pointer, *mnemonic;
10599 const struct pseudo_opcode *pdesc;
10600 struct ia64_opcode *idesc;
10601 unsigned char qp_regno;
10602 unsigned int flags;
10603 int ch;
10604
10605 saved_input_line_pointer = input_line_pointer;
10606 input_line_pointer = str;
10607
10608 /* extract the opcode (mnemonic): */
10609
10610 mnemonic = input_line_pointer;
10611 ch = get_symbol_end ();
10612 pdesc = (struct pseudo_opcode *) hash_find (md.pseudo_hash, mnemonic);
10613 if (pdesc)
10614 {
10615 *input_line_pointer = ch;
10616 (*pdesc->handler) (pdesc->arg);
10617 goto done;
10618 }
10619
10620 /* Find the instruction descriptor matching the arguments. */
10621
10622 idesc = ia64_find_opcode (mnemonic);
10623 *input_line_pointer = ch;
10624 if (!idesc)
10625 {
10626 as_bad ("Unknown opcode `%s'", mnemonic);
10627 goto done;
10628 }
10629
10630 idesc = parse_operands (idesc);
10631 if (!idesc)
10632 goto done;
10633
10634 /* Handle the dynamic ops we can handle now: */
10635 if (idesc->type == IA64_TYPE_DYN)
10636 {
10637 if (strcmp (idesc->name, "add") == 0)
10638 {
10639 if (CURR_SLOT.opnd[2].X_op == O_register
10640 && CURR_SLOT.opnd[2].X_add_number < 4)
10641 mnemonic = "addl";
10642 else
10643 mnemonic = "adds";
10644 ia64_free_opcode (idesc);
10645 idesc = ia64_find_opcode (mnemonic);
10646 }
10647 else if (strcmp (idesc->name, "mov") == 0)
10648 {
10649 enum ia64_opnd opnd1, opnd2;
10650 int rop;
10651
10652 opnd1 = idesc->operands[0];
10653 opnd2 = idesc->operands[1];
10654 if (opnd1 == IA64_OPND_AR3)
10655 rop = 0;
10656 else if (opnd2 == IA64_OPND_AR3)
10657 rop = 1;
10658 else
10659 abort ();
10660 if (CURR_SLOT.opnd[rop].X_op == O_register)
10661 {
10662 if (ar_is_only_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number))
10663 mnemonic = "mov.i";
10664 else if (ar_is_only_in_memory_unit (CURR_SLOT.opnd[rop].X_add_number))
10665 mnemonic = "mov.m";
10666 else
10667 rop = -1;
10668 }
10669 else
10670 abort ();
10671 if (rop >= 0)
10672 {
10673 ia64_free_opcode (idesc);
10674 idesc = ia64_find_opcode (mnemonic);
10675 while (idesc != NULL
10676 && (idesc->operands[0] != opnd1
10677 || idesc->operands[1] != opnd2))
10678 idesc = get_next_opcode (idesc);
10679 }
10680 }
10681 }
10682 else if (strcmp (idesc->name, "mov.i") == 0
10683 || strcmp (idesc->name, "mov.m") == 0)
10684 {
10685 enum ia64_opnd opnd1, opnd2;
10686 int rop;
10687
10688 opnd1 = idesc->operands[0];
10689 opnd2 = idesc->operands[1];
10690 if (opnd1 == IA64_OPND_AR3)
10691 rop = 0;
10692 else if (opnd2 == IA64_OPND_AR3)
10693 rop = 1;
10694 else
10695 abort ();
10696 if (CURR_SLOT.opnd[rop].X_op == O_register)
10697 {
10698 char unit = 'a';
10699 if (ar_is_only_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number))
10700 unit = 'i';
10701 else if (ar_is_only_in_memory_unit (CURR_SLOT.opnd[rop].X_add_number))
10702 unit = 'm';
10703 if (unit != 'a' && unit != idesc->name [4])
10704 as_bad ("AR %d can only be accessed by %c-unit",
10705 (int) (CURR_SLOT.opnd[rop].X_add_number - REG_AR),
10706 TOUPPER (unit));
10707 }
10708 }
10709 else if (strcmp (idesc->name, "hint.b") == 0)
10710 {
10711 switch (md.hint_b)
10712 {
10713 case hint_b_ok:
10714 break;
10715 case hint_b_warning:
10716 as_warn ("hint.b may be treated as nop");
10717 break;
10718 case hint_b_error:
10719 as_bad ("hint.b shouldn't be used");
10720 break;
10721 }
10722 }
10723
10724 qp_regno = 0;
10725 if (md.qp.X_op == O_register)
10726 {
10727 qp_regno = md.qp.X_add_number - REG_P;
10728 md.qp.X_op = O_absent;
10729 }
10730
10731 flags = idesc->flags;
10732
10733 if ((flags & IA64_OPCODE_FIRST) != 0)
10734 {
10735 /* The alignment frag has to end with a stop bit only if the
10736 next instruction after the alignment directive has to be
10737 the first instruction in an instruction group. */
10738 if (align_frag)
10739 {
10740 while (align_frag->fr_type != rs_align_code)
10741 {
10742 align_frag = align_frag->fr_next;
10743 if (!align_frag)
10744 break;
10745 }
10746 /* align_frag can be NULL if there are directives in
10747 between. */
10748 if (align_frag && align_frag->fr_next == frag_now)
10749 align_frag->tc_frag_data = 1;
10750 }
10751
10752 insn_group_break (1, 0, 0);
10753 }
10754 align_frag = NULL;
10755
10756 if ((flags & IA64_OPCODE_NO_PRED) != 0 && qp_regno != 0)
10757 {
10758 as_bad ("`%s' cannot be predicated", idesc->name);
10759 goto done;
10760 }
10761
10762 /* Build the instruction. */
10763 CURR_SLOT.qp_regno = qp_regno;
10764 CURR_SLOT.idesc = idesc;
10765 as_where (&CURR_SLOT.src_file, &CURR_SLOT.src_line);
10766 dwarf2_where (&CURR_SLOT.debug_line);
10767
10768 /* Add unwind entry, if there is one. */
10769 if (unwind.current_entry)
10770 {
10771 CURR_SLOT.unwind_record = unwind.current_entry;
10772 unwind.current_entry = NULL;
10773 }
10774 if (unwind.proc_start && S_IS_DEFINED (unwind.proc_start))
10775 unwind.insn = 1;
10776
10777 /* Check for dependency violations. */
10778 if (md.detect_dv)
10779 check_dv (idesc);
10780
10781 md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS;
10782 if (++md.num_slots_in_use >= NUM_SLOTS)
10783 emit_one_bundle ();
10784
10785 if ((flags & IA64_OPCODE_LAST) != 0)
10786 insn_group_break (1, 0, 0);
10787
10788 md.last_text_seg = now_seg;
10789
10790 done:
10791 input_line_pointer = saved_input_line_pointer;
10792 }
10793
10794 /* Called when symbol NAME cannot be found in the symbol table.
10795 Should be used for dynamic valued symbols only. */
10796
10797 symbolS *
10798 md_undefined_symbol (name)
10799 char *name ATTRIBUTE_UNUSED;
10800 {
10801 return 0;
10802 }
10803
10804 /* Called for any expression that can not be recognized. When the
10805 function is called, `input_line_pointer' will point to the start of
10806 the expression. */
10807
10808 void
10809 md_operand (e)
10810 expressionS *e;
10811 {
10812 switch (*input_line_pointer)
10813 {
10814 case '[':
10815 ++input_line_pointer;
10816 expression (e);
10817 if (*input_line_pointer != ']')
10818 {
10819 as_bad ("Closing bracket missing");
10820 goto err;
10821 }
10822 else
10823 {
10824 if (e->X_op != O_register)
10825 as_bad ("Register expected as index");
10826
10827 ++input_line_pointer;
10828 e->X_op = O_index;
10829 }
10830 break;
10831
10832 default:
10833 break;
10834 }
10835 return;
10836
10837 err:
10838 ignore_rest_of_line ();
10839 }
10840
10841 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
10842 a section symbol plus some offset. For relocs involving @fptr(),
10843 directives we don't want such adjustments since we need to have the
10844 original symbol's name in the reloc. */
10845 int
10846 ia64_fix_adjustable (fix)
10847 fixS *fix;
10848 {
10849 /* Prevent all adjustments to global symbols */
10850 if (S_IS_EXTERNAL (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy))
10851 return 0;
10852
10853 switch (fix->fx_r_type)
10854 {
10855 case BFD_RELOC_IA64_FPTR64I:
10856 case BFD_RELOC_IA64_FPTR32MSB:
10857 case BFD_RELOC_IA64_FPTR32LSB:
10858 case BFD_RELOC_IA64_FPTR64MSB:
10859 case BFD_RELOC_IA64_FPTR64LSB:
10860 case BFD_RELOC_IA64_LTOFF_FPTR22:
10861 case BFD_RELOC_IA64_LTOFF_FPTR64I:
10862 return 0;
10863 default:
10864 break;
10865 }
10866
10867 return 1;
10868 }
10869
10870 int
10871 ia64_force_relocation (fix)
10872 fixS *fix;
10873 {
10874 switch (fix->fx_r_type)
10875 {
10876 case BFD_RELOC_IA64_FPTR64I:
10877 case BFD_RELOC_IA64_FPTR32MSB:
10878 case BFD_RELOC_IA64_FPTR32LSB:
10879 case BFD_RELOC_IA64_FPTR64MSB:
10880 case BFD_RELOC_IA64_FPTR64LSB:
10881
10882 case BFD_RELOC_IA64_LTOFF22:
10883 case BFD_RELOC_IA64_LTOFF64I:
10884 case BFD_RELOC_IA64_LTOFF_FPTR22:
10885 case BFD_RELOC_IA64_LTOFF_FPTR64I:
10886 case BFD_RELOC_IA64_PLTOFF22:
10887 case BFD_RELOC_IA64_PLTOFF64I:
10888 case BFD_RELOC_IA64_PLTOFF64MSB:
10889 case BFD_RELOC_IA64_PLTOFF64LSB:
10890
10891 case BFD_RELOC_IA64_LTOFF22X:
10892 case BFD_RELOC_IA64_LDXMOV:
10893 return 1;
10894
10895 default:
10896 break;
10897 }
10898
10899 return generic_force_reloc (fix);
10900 }
10901
10902 /* Decide from what point a pc-relative relocation is relative to,
10903 relative to the pc-relative fixup. Er, relatively speaking. */
10904 long
10905 ia64_pcrel_from_section (fix, sec)
10906 fixS *fix;
10907 segT sec;
10908 {
10909 unsigned long off = fix->fx_frag->fr_address + fix->fx_where;
10910
10911 if (bfd_get_section_flags (stdoutput, sec) & SEC_CODE)
10912 off &= ~0xfUL;
10913
10914 return off;
10915 }
10916
10917
10918 /* Used to emit section-relative relocs for the dwarf2 debug data. */
10919 void
10920 ia64_dwarf2_emit_offset (symbolS *symbol, unsigned int size)
10921 {
10922 expressionS expr;
10923
10924 expr.X_op = O_pseudo_fixup;
10925 expr.X_op_symbol = pseudo_func[FUNC_SEC_RELATIVE].u.sym;
10926 expr.X_add_number = 0;
10927 expr.X_add_symbol = symbol;
10928 emit_expr (&expr, size);
10929 }
10930
10931 /* This is called whenever some data item (not an instruction) needs a
10932 fixup. We pick the right reloc code depending on the byteorder
10933 currently in effect. */
10934 void
10935 ia64_cons_fix_new (f, where, nbytes, exp)
10936 fragS *f;
10937 int where;
10938 int nbytes;
10939 expressionS *exp;
10940 {
10941 bfd_reloc_code_real_type code;
10942 fixS *fix;
10943
10944 switch (nbytes)
10945 {
10946 /* There are no reloc for 8 and 16 bit quantities, but we allow
10947 them here since they will work fine as long as the expression
10948 is fully defined at the end of the pass over the source file. */
10949 case 1: code = BFD_RELOC_8; break;
10950 case 2: code = BFD_RELOC_16; break;
10951 case 4:
10952 if (target_big_endian)
10953 code = BFD_RELOC_IA64_DIR32MSB;
10954 else
10955 code = BFD_RELOC_IA64_DIR32LSB;
10956 break;
10957
10958 case 8:
10959 /* In 32-bit mode, data8 could mean function descriptors too. */
10960 if (exp->X_op == O_pseudo_fixup
10961 && exp->X_op_symbol
10962 && S_GET_VALUE (exp->X_op_symbol) == FUNC_IPLT_RELOC
10963 && !(md.flags & EF_IA_64_ABI64))
10964 {
10965 if (target_big_endian)
10966 code = BFD_RELOC_IA64_IPLTMSB;
10967 else
10968 code = BFD_RELOC_IA64_IPLTLSB;
10969 exp->X_op = O_symbol;
10970 break;
10971 }
10972 else
10973 {
10974 if (target_big_endian)
10975 code = BFD_RELOC_IA64_DIR64MSB;
10976 else
10977 code = BFD_RELOC_IA64_DIR64LSB;
10978 break;
10979 }
10980
10981 case 16:
10982 if (exp->X_op == O_pseudo_fixup
10983 && exp->X_op_symbol
10984 && S_GET_VALUE (exp->X_op_symbol) == FUNC_IPLT_RELOC)
10985 {
10986 if (target_big_endian)
10987 code = BFD_RELOC_IA64_IPLTMSB;
10988 else
10989 code = BFD_RELOC_IA64_IPLTLSB;
10990 exp->X_op = O_symbol;
10991 break;
10992 }
10993 /* FALLTHRU */
10994
10995 default:
10996 as_bad ("Unsupported fixup size %d", nbytes);
10997 ignore_rest_of_line ();
10998 return;
10999 }
11000
11001 if (exp->X_op == O_pseudo_fixup)
11002 {
11003 exp->X_op = O_symbol;
11004 code = ia64_gen_real_reloc_type (exp->X_op_symbol, code);
11005 /* ??? If code unchanged, unsupported. */
11006 }
11007
11008 fix = fix_new_exp (f, where, nbytes, exp, 0, code);
11009 /* We need to store the byte order in effect in case we're going
11010 to fix an 8 or 16 bit relocation (for which there no real
11011 relocs available). See md_apply_fix3(). */
11012 fix->tc_fix_data.bigendian = target_big_endian;
11013 }
11014
11015 /* Return the actual relocation we wish to associate with the pseudo
11016 reloc described by SYM and R_TYPE. SYM should be one of the
11017 symbols in the pseudo_func array, or NULL. */
11018
11019 static bfd_reloc_code_real_type
11020 ia64_gen_real_reloc_type (sym, r_type)
11021 struct symbol *sym;
11022 bfd_reloc_code_real_type r_type;
11023 {
11024 bfd_reloc_code_real_type new = 0;
11025 const char *type = NULL, *suffix = "";
11026
11027 if (sym == NULL)
11028 {
11029 return r_type;
11030 }
11031
11032 switch (S_GET_VALUE (sym))
11033 {
11034 case FUNC_FPTR_RELATIVE:
11035 switch (r_type)
11036 {
11037 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_FPTR64I; break;
11038 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_FPTR32MSB; break;
11039 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_FPTR32LSB; break;
11040 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_FPTR64MSB; break;
11041 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_FPTR64LSB; break;
11042 default: type = "FPTR"; break;
11043 }
11044 break;
11045
11046 case FUNC_GP_RELATIVE:
11047 switch (r_type)
11048 {
11049 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_GPREL22; break;
11050 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_GPREL64I; break;
11051 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_GPREL32MSB; break;
11052 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_GPREL32LSB; break;
11053 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_GPREL64MSB; break;
11054 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_GPREL64LSB; break;
11055 default: type = "GPREL"; break;
11056 }
11057 break;
11058
11059 case FUNC_LT_RELATIVE:
11060 switch (r_type)
11061 {
11062 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22; break;
11063 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_LTOFF64I; break;
11064 default: type = "LTOFF"; break;
11065 }
11066 break;
11067
11068 case FUNC_LT_RELATIVE_X:
11069 switch (r_type)
11070 {
11071 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22X; break;
11072 default: type = "LTOFF"; suffix = "X"; break;
11073 }
11074 break;
11075
11076 case FUNC_PC_RELATIVE:
11077 switch (r_type)
11078 {
11079 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PCREL22; break;
11080 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PCREL64I; break;
11081 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_PCREL32MSB; break;
11082 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_PCREL32LSB; break;
11083 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PCREL64MSB; break;
11084 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PCREL64LSB; break;
11085 default: type = "PCREL"; break;
11086 }
11087 break;
11088
11089 case FUNC_PLT_RELATIVE:
11090 switch (r_type)
11091 {
11092 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PLTOFF22; break;
11093 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PLTOFF64I; break;
11094 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PLTOFF64MSB;break;
11095 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PLTOFF64LSB;break;
11096 default: type = "PLTOFF"; break;
11097 }
11098 break;
11099
11100 case FUNC_SEC_RELATIVE:
11101 switch (r_type)
11102 {
11103 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SECREL32MSB;break;
11104 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SECREL32LSB;break;
11105 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SECREL64MSB;break;
11106 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SECREL64LSB;break;
11107 default: type = "SECREL"; break;
11108 }
11109 break;
11110
11111 case FUNC_SEG_RELATIVE:
11112 switch (r_type)
11113 {
11114 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SEGREL32MSB;break;
11115 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SEGREL32LSB;break;
11116 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SEGREL64MSB;break;
11117 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SEGREL64LSB;break;
11118 default: type = "SEGREL"; break;
11119 }
11120 break;
11121
11122 case FUNC_LTV_RELATIVE:
11123 switch (r_type)
11124 {
11125 case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_LTV32MSB; break;
11126 case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_LTV32LSB; break;
11127 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_LTV64MSB; break;
11128 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_LTV64LSB; break;
11129 default: type = "LTV"; break;
11130 }
11131 break;
11132
11133 case FUNC_LT_FPTR_RELATIVE:
11134 switch (r_type)
11135 {
11136 case BFD_RELOC_IA64_IMM22:
11137 new = BFD_RELOC_IA64_LTOFF_FPTR22; break;
11138 case BFD_RELOC_IA64_IMM64:
11139 new = BFD_RELOC_IA64_LTOFF_FPTR64I; break;
11140 case BFD_RELOC_IA64_DIR32MSB:
11141 new = BFD_RELOC_IA64_LTOFF_FPTR32MSB; break;
11142 case BFD_RELOC_IA64_DIR32LSB:
11143 new = BFD_RELOC_IA64_LTOFF_FPTR32LSB; break;
11144 case BFD_RELOC_IA64_DIR64MSB:
11145 new = BFD_RELOC_IA64_LTOFF_FPTR64MSB; break;
11146 case BFD_RELOC_IA64_DIR64LSB:
11147 new = BFD_RELOC_IA64_LTOFF_FPTR64LSB; break;
11148 default:
11149 type = "LTOFF_FPTR"; break;
11150 }
11151 break;
11152
11153 case FUNC_TP_RELATIVE:
11154 switch (r_type)
11155 {
11156 case BFD_RELOC_IA64_IMM14: new = BFD_RELOC_IA64_TPREL14; break;
11157 case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_TPREL22; break;
11158 case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_TPREL64I; break;
11159 case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_TPREL64MSB; break;
11160 case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_TPREL64LSB; break;
11161 default: type = "TPREL"; break;
11162 }
11163 break;
11164
11165 case FUNC_LT_TP_RELATIVE:
11166 switch (r_type)
11167 {
11168 case BFD_RELOC_IA64_IMM22:
11169 new = BFD_RELOC_IA64_LTOFF_TPREL22; break;
11170 default:
11171 type = "LTOFF_TPREL"; break;
11172 }
11173 break;
11174
11175 case FUNC_DTP_MODULE:
11176 switch (r_type)
11177 {
11178 case BFD_RELOC_IA64_DIR64MSB:
11179 new = BFD_RELOC_IA64_DTPMOD64MSB; break;
11180 case BFD_RELOC_IA64_DIR64LSB:
11181 new = BFD_RELOC_IA64_DTPMOD64LSB; break;
11182 default:
11183 type = "DTPMOD"; break;
11184 }
11185 break;
11186
11187 case FUNC_LT_DTP_MODULE:
11188 switch (r_type)
11189 {
11190 case BFD_RELOC_IA64_IMM22:
11191 new = BFD_RELOC_IA64_LTOFF_DTPMOD22; break;
11192 default:
11193 type = "LTOFF_DTPMOD"; break;
11194 }
11195 break;
11196
11197 case FUNC_DTP_RELATIVE:
11198 switch (r_type)
11199 {
11200 case BFD_RELOC_IA64_DIR32MSB:
11201 new = BFD_RELOC_IA64_DTPREL32MSB; break;
11202 case BFD_RELOC_IA64_DIR32LSB:
11203 new = BFD_RELOC_IA64_DTPREL32LSB; break;
11204 case BFD_RELOC_IA64_DIR64MSB:
11205 new = BFD_RELOC_IA64_DTPREL64MSB; break;
11206 case BFD_RELOC_IA64_DIR64LSB:
11207 new = BFD_RELOC_IA64_DTPREL64LSB; break;
11208 case BFD_RELOC_IA64_IMM14:
11209 new = BFD_RELOC_IA64_DTPREL14; break;
11210 case BFD_RELOC_IA64_IMM22:
11211 new = BFD_RELOC_IA64_DTPREL22; break;
11212 case BFD_RELOC_IA64_IMM64:
11213 new = BFD_RELOC_IA64_DTPREL64I; break;
11214 default:
11215 type = "DTPREL"; break;
11216 }
11217 break;
11218
11219 case FUNC_LT_DTP_RELATIVE:
11220 switch (r_type)
11221 {
11222 case BFD_RELOC_IA64_IMM22:
11223 new = BFD_RELOC_IA64_LTOFF_DTPREL22; break;
11224 default:
11225 type = "LTOFF_DTPREL"; break;
11226 }
11227 break;
11228
11229 case FUNC_IPLT_RELOC:
11230 switch (r_type)
11231 {
11232 case BFD_RELOC_IA64_IPLTMSB: return r_type;
11233 case BFD_RELOC_IA64_IPLTLSB: return r_type;
11234 default: type = "IPLT"; break;
11235 }
11236 break;
11237
11238 default:
11239 abort ();
11240 }
11241
11242 if (new)
11243 return new;
11244 else
11245 {
11246 int width;
11247
11248 if (!type)
11249 abort ();
11250 switch (r_type)
11251 {
11252 case BFD_RELOC_IA64_DIR32MSB: width = 32; suffix = "MSB"; break;
11253 case BFD_RELOC_IA64_DIR32LSB: width = 32; suffix = "LSB"; break;
11254 case BFD_RELOC_IA64_DIR64MSB: width = 64; suffix = "MSB"; break;
11255 case BFD_RELOC_IA64_DIR64LSB: width = 64; suffix = "LSB"; break;
11256 case BFD_RELOC_IA64_IMM14: width = 14; break;
11257 case BFD_RELOC_IA64_IMM22: width = 22; break;
11258 case BFD_RELOC_IA64_IMM64: width = 64; suffix = "I"; break;
11259 default: abort ();
11260 }
11261
11262 /* This should be an error, but since previously there wasn't any
11263 diagnostic here, dont't make it fail because of this for now. */
11264 as_warn ("Cannot express %s%d%s relocation", type, width, suffix);
11265 return r_type;
11266 }
11267 }
11268
11269 /* Here is where generate the appropriate reloc for pseudo relocation
11270 functions. */
11271 void
11272 ia64_validate_fix (fix)
11273 fixS *fix;
11274 {
11275 switch (fix->fx_r_type)
11276 {
11277 case BFD_RELOC_IA64_FPTR64I:
11278 case BFD_RELOC_IA64_FPTR32MSB:
11279 case BFD_RELOC_IA64_FPTR64LSB:
11280 case BFD_RELOC_IA64_LTOFF_FPTR22:
11281 case BFD_RELOC_IA64_LTOFF_FPTR64I:
11282 if (fix->fx_offset != 0)
11283 as_bad_where (fix->fx_file, fix->fx_line,
11284 "No addend allowed in @fptr() relocation");
11285 break;
11286 default:
11287 break;
11288 }
11289 }
11290
11291 static void
11292 fix_insn (fix, odesc, value)
11293 fixS *fix;
11294 const struct ia64_operand *odesc;
11295 valueT value;
11296 {
11297 bfd_vma insn[3], t0, t1, control_bits;
11298 const char *err;
11299 char *fixpos;
11300 long slot;
11301
11302 slot = fix->fx_where & 0x3;
11303 fixpos = fix->fx_frag->fr_literal + (fix->fx_where - slot);
11304
11305 /* Bundles are always in little-endian byte order */
11306 t0 = bfd_getl64 (fixpos);
11307 t1 = bfd_getl64 (fixpos + 8);
11308 control_bits = t0 & 0x1f;
11309 insn[0] = (t0 >> 5) & 0x1ffffffffffLL;
11310 insn[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18);
11311 insn[2] = (t1 >> 23) & 0x1ffffffffffLL;
11312
11313 err = NULL;
11314 if (odesc - elf64_ia64_operands == IA64_OPND_IMMU64)
11315 {
11316 insn[1] = (value >> 22) & 0x1ffffffffffLL;
11317 insn[2] |= (((value & 0x7f) << 13)
11318 | (((value >> 7) & 0x1ff) << 27)
11319 | (((value >> 16) & 0x1f) << 22)
11320 | (((value >> 21) & 0x1) << 21)
11321 | (((value >> 63) & 0x1) << 36));
11322 }
11323 else if (odesc - elf64_ia64_operands == IA64_OPND_IMMU62)
11324 {
11325 if (value & ~0x3fffffffffffffffULL)
11326 err = "integer operand out of range";
11327 insn[1] = (value >> 21) & 0x1ffffffffffLL;
11328 insn[2] |= (((value & 0xfffff) << 6) | (((value >> 20) & 0x1) << 36));
11329 }
11330 else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64)
11331 {
11332 value >>= 4;
11333 insn[1] = ((value >> 20) & 0x7fffffffffLL) << 2;
11334 insn[2] |= ((((value >> 59) & 0x1) << 36)
11335 | (((value >> 0) & 0xfffff) << 13));
11336 }
11337 else
11338 err = (*odesc->insert) (odesc, value, insn + slot);
11339
11340 if (err)
11341 as_bad_where (fix->fx_file, fix->fx_line, err);
11342
11343 t0 = control_bits | (insn[0] << 5) | (insn[1] << 46);
11344 t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23);
11345 number_to_chars_littleendian (fixpos + 0, t0, 8);
11346 number_to_chars_littleendian (fixpos + 8, t1, 8);
11347 }
11348
11349 /* Attempt to simplify or even eliminate a fixup. The return value is
11350 ignored; perhaps it was once meaningful, but now it is historical.
11351 To indicate that a fixup has been eliminated, set FIXP->FX_DONE.
11352
11353 If fixp->fx_addsy is non-NULL, we'll have to generate a reloc entry
11354 (if possible). */
11355
11356 void
11357 md_apply_fix3 (fix, valP, seg)
11358 fixS *fix;
11359 valueT *valP;
11360 segT seg ATTRIBUTE_UNUSED;
11361 {
11362 char *fixpos;
11363 valueT value = *valP;
11364
11365 fixpos = fix->fx_frag->fr_literal + fix->fx_where;
11366
11367 if (fix->fx_pcrel)
11368 {
11369 switch (fix->fx_r_type)
11370 {
11371 case BFD_RELOC_IA64_PCREL21B: break;
11372 case BFD_RELOC_IA64_PCREL21BI: break;
11373 case BFD_RELOC_IA64_PCREL21F: break;
11374 case BFD_RELOC_IA64_PCREL21M: break;
11375 case BFD_RELOC_IA64_PCREL60B: break;
11376 case BFD_RELOC_IA64_PCREL22: break;
11377 case BFD_RELOC_IA64_PCREL64I: break;
11378 case BFD_RELOC_IA64_PCREL32MSB: break;
11379 case BFD_RELOC_IA64_PCREL32LSB: break;
11380 case BFD_RELOC_IA64_PCREL64MSB: break;
11381 case BFD_RELOC_IA64_PCREL64LSB: break;
11382 default:
11383 fix->fx_r_type = ia64_gen_real_reloc_type (pseudo_func[FUNC_PC_RELATIVE].u.sym,
11384 fix->fx_r_type);
11385 break;
11386 }
11387 }
11388 if (fix->fx_addsy)
11389 {
11390 switch (fix->fx_r_type)
11391 {
11392 case BFD_RELOC_UNUSED:
11393 /* This must be a TAG13 or TAG13b operand. There are no external
11394 relocs defined for them, so we must give an error. */
11395 as_bad_where (fix->fx_file, fix->fx_line,
11396 "%s must have a constant value",
11397 elf64_ia64_operands[fix->tc_fix_data.opnd].desc);
11398 fix->fx_done = 1;
11399 return;
11400
11401 case BFD_RELOC_IA64_TPREL14:
11402 case BFD_RELOC_IA64_TPREL22:
11403 case BFD_RELOC_IA64_TPREL64I:
11404 case BFD_RELOC_IA64_LTOFF_TPREL22:
11405 case BFD_RELOC_IA64_LTOFF_DTPMOD22:
11406 case BFD_RELOC_IA64_DTPREL14:
11407 case BFD_RELOC_IA64_DTPREL22:
11408 case BFD_RELOC_IA64_DTPREL64I:
11409 case BFD_RELOC_IA64_LTOFF_DTPREL22:
11410 S_SET_THREAD_LOCAL (fix->fx_addsy);
11411 break;
11412
11413 default:
11414 break;
11415 }
11416 }
11417 else if (fix->tc_fix_data.opnd == IA64_OPND_NIL)
11418 {
11419 if (fix->tc_fix_data.bigendian)
11420 number_to_chars_bigendian (fixpos, value, fix->fx_size);
11421 else
11422 number_to_chars_littleendian (fixpos, value, fix->fx_size);
11423 fix->fx_done = 1;
11424 }
11425 else
11426 {
11427 fix_insn (fix, elf64_ia64_operands + fix->tc_fix_data.opnd, value);
11428 fix->fx_done = 1;
11429 }
11430 }
11431
11432 /* Generate the BFD reloc to be stuck in the object file from the
11433 fixup used internally in the assembler. */
11434
11435 arelent *
11436 tc_gen_reloc (sec, fixp)
11437 asection *sec ATTRIBUTE_UNUSED;
11438 fixS *fixp;
11439 {
11440 arelent *reloc;
11441
11442 reloc = xmalloc (sizeof (*reloc));
11443 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
11444 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
11445 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
11446 reloc->addend = fixp->fx_offset;
11447 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
11448
11449 if (!reloc->howto)
11450 {
11451 as_bad_where (fixp->fx_file, fixp->fx_line,
11452 "Cannot represent %s relocation in object file",
11453 bfd_get_reloc_code_name (fixp->fx_r_type));
11454 }
11455 return reloc;
11456 }
11457
11458 /* Turn a string in input_line_pointer into a floating point constant
11459 of type TYPE, and store the appropriate bytes in *LIT. The number
11460 of LITTLENUMS emitted is stored in *SIZE. An error message is
11461 returned, or NULL on OK. */
11462
11463 #define MAX_LITTLENUMS 5
11464
11465 char *
11466 md_atof (type, lit, size)
11467 int type;
11468 char *lit;
11469 int *size;
11470 {
11471 LITTLENUM_TYPE words[MAX_LITTLENUMS];
11472 char *t;
11473 int prec;
11474
11475 switch (type)
11476 {
11477 /* IEEE floats */
11478 case 'f':
11479 case 'F':
11480 case 's':
11481 case 'S':
11482 prec = 2;
11483 break;
11484
11485 case 'd':
11486 case 'D':
11487 case 'r':
11488 case 'R':
11489 prec = 4;
11490 break;
11491
11492 case 'x':
11493 case 'X':
11494 case 'p':
11495 case 'P':
11496 prec = 5;
11497 break;
11498
11499 default:
11500 *size = 0;
11501 return "Bad call to MD_ATOF()";
11502 }
11503 t = atof_ieee (input_line_pointer, type, words);
11504 if (t)
11505 input_line_pointer = t;
11506
11507 (*ia64_float_to_chars) (lit, words, prec);
11508
11509 if (type == 'X')
11510 {
11511 /* It is 10 byte floating point with 6 byte padding. */
11512 memset (&lit [10], 0, 6);
11513 *size = 8 * sizeof (LITTLENUM_TYPE);
11514 }
11515 else
11516 *size = prec * sizeof (LITTLENUM_TYPE);
11517
11518 return 0;
11519 }
11520
11521 /* Handle ia64 specific semantics of the align directive. */
11522
11523 void
11524 ia64_md_do_align (n, fill, len, max)
11525 int n ATTRIBUTE_UNUSED;
11526 const char *fill ATTRIBUTE_UNUSED;
11527 int len ATTRIBUTE_UNUSED;
11528 int max ATTRIBUTE_UNUSED;
11529 {
11530 if (subseg_text_p (now_seg))
11531 ia64_flush_insns ();
11532 }
11533
11534 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
11535 of an rs_align_code fragment. */
11536
11537 void
11538 ia64_handle_align (fragp)
11539 fragS *fragp;
11540 {
11541 int bytes;
11542 char *p;
11543 const unsigned char *nop;
11544
11545 if (fragp->fr_type != rs_align_code)
11546 return;
11547
11548 /* Check if this frag has to end with a stop bit. */
11549 nop = fragp->tc_frag_data ? le_nop_stop : le_nop;
11550
11551 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
11552 p = fragp->fr_literal + fragp->fr_fix;
11553
11554 /* If no paddings are needed, we check if we need a stop bit. */
11555 if (!bytes && fragp->tc_frag_data)
11556 {
11557 if (fragp->fr_fix < 16)
11558 #if 1
11559 /* FIXME: It won't work with
11560 .align 16
11561 alloc r32=ar.pfs,1,2,4,0
11562 */
11563 ;
11564 #else
11565 as_bad_where (fragp->fr_file, fragp->fr_line,
11566 _("Can't add stop bit to mark end of instruction group"));
11567 #endif
11568 else
11569 /* Bundles are always in little-endian byte order. Make sure
11570 the previous bundle has the stop bit. */
11571 *(p - 16) |= 1;
11572 }
11573
11574 /* Make sure we are on a 16-byte boundary, in case someone has been
11575 putting data into a text section. */
11576 if (bytes & 15)
11577 {
11578 int fix = bytes & 15;
11579 memset (p, 0, fix);
11580 p += fix;
11581 bytes -= fix;
11582 fragp->fr_fix += fix;
11583 }
11584
11585 /* Instruction bundles are always little-endian. */
11586 memcpy (p, nop, 16);
11587 fragp->fr_var = 16;
11588 }
11589
11590 static void
11591 ia64_float_to_chars_bigendian (char *lit, LITTLENUM_TYPE *words,
11592 int prec)
11593 {
11594 while (prec--)
11595 {
11596 number_to_chars_bigendian (lit, (long) (*words++),
11597 sizeof (LITTLENUM_TYPE));
11598 lit += sizeof (LITTLENUM_TYPE);
11599 }
11600 }
11601
11602 static void
11603 ia64_float_to_chars_littleendian (char *lit, LITTLENUM_TYPE *words,
11604 int prec)
11605 {
11606 while (prec--)
11607 {
11608 number_to_chars_littleendian (lit, (long) (words[prec]),
11609 sizeof (LITTLENUM_TYPE));
11610 lit += sizeof (LITTLENUM_TYPE);
11611 }
11612 }
11613
11614 void
11615 ia64_elf_section_change_hook (void)
11616 {
11617 if (elf_section_type (now_seg) == SHT_IA_64_UNWIND
11618 && elf_linked_to_section (now_seg) == NULL)
11619 elf_linked_to_section (now_seg) = text_section;
11620 dot_byteorder (-1);
11621 }
11622
11623 /* Check if a label should be made global. */
11624 void
11625 ia64_check_label (symbolS *label)
11626 {
11627 if (*input_line_pointer == ':')
11628 {
11629 S_SET_EXTERNAL (label);
11630 input_line_pointer++;
11631 }
11632 }
11633
11634 /* Used to remember where .alias and .secalias directives are seen. We
11635 will rename symbol and section names when we are about to output
11636 the relocatable file. */
11637 struct alias
11638 {
11639 char *file; /* The file where the directive is seen. */
11640 unsigned int line; /* The line number the directive is at. */
11641 const char *name; /* The orignale name of the symbol. */
11642 };
11643
11644 /* Called for .alias and .secalias directives. If SECTION is 1, it is
11645 .secalias. Otherwise, it is .alias. */
11646 static void
11647 dot_alias (int section)
11648 {
11649 char *name, *alias;
11650 char delim;
11651 char *end_name;
11652 int len;
11653 const char *error_string;
11654 struct alias *h;
11655 const char *a;
11656 struct hash_control *ahash, *nhash;
11657 const char *kind;
11658
11659 name = input_line_pointer;
11660 delim = get_symbol_end ();
11661 end_name = input_line_pointer;
11662 *end_name = delim;
11663
11664 if (name == end_name)
11665 {
11666 as_bad (_("expected symbol name"));
11667 discard_rest_of_line ();
11668 return;
11669 }
11670
11671 SKIP_WHITESPACE ();
11672
11673 if (*input_line_pointer != ',')
11674 {
11675 *end_name = 0;
11676 as_bad (_("expected comma after \"%s\""), name);
11677 *end_name = delim;
11678 ignore_rest_of_line ();
11679 return;
11680 }
11681
11682 input_line_pointer++;
11683 *end_name = 0;
11684 ia64_canonicalize_symbol_name (name);
11685
11686 /* We call demand_copy_C_string to check if alias string is valid.
11687 There should be a closing `"' and no `\0' in the string. */
11688 alias = demand_copy_C_string (&len);
11689 if (alias == NULL)
11690 {
11691 ignore_rest_of_line ();
11692 return;
11693 }
11694
11695 /* Make a copy of name string. */
11696 len = strlen (name) + 1;
11697 obstack_grow (&notes, name, len);
11698 name = obstack_finish (&notes);
11699
11700 if (section)
11701 {
11702 kind = "section";
11703 ahash = secalias_hash;
11704 nhash = secalias_name_hash;
11705 }
11706 else
11707 {
11708 kind = "symbol";
11709 ahash = alias_hash;
11710 nhash = alias_name_hash;
11711 }
11712
11713 /* Check if alias has been used before. */
11714 h = (struct alias *) hash_find (ahash, alias);
11715 if (h)
11716 {
11717 if (strcmp (h->name, name))
11718 as_bad (_("`%s' is already the alias of %s `%s'"),
11719 alias, kind, h->name);
11720 goto out;
11721 }
11722
11723 /* Check if name already has an alias. */
11724 a = (const char *) hash_find (nhash, name);
11725 if (a)
11726 {
11727 if (strcmp (a, alias))
11728 as_bad (_("%s `%s' already has an alias `%s'"), kind, name, a);
11729 goto out;
11730 }
11731
11732 h = (struct alias *) xmalloc (sizeof (struct alias));
11733 as_where (&h->file, &h->line);
11734 h->name = name;
11735
11736 error_string = hash_jam (ahash, alias, (PTR) h);
11737 if (error_string)
11738 {
11739 as_fatal (_("inserting \"%s\" into %s alias hash table failed: %s"),
11740 alias, kind, error_string);
11741 goto out;
11742 }
11743
11744 error_string = hash_jam (nhash, name, (PTR) alias);
11745 if (error_string)
11746 {
11747 as_fatal (_("inserting \"%s\" into %s name hash table failed: %s"),
11748 alias, kind, error_string);
11749 out:
11750 obstack_free (&notes, name);
11751 obstack_free (&notes, alias);
11752 }
11753
11754 demand_empty_rest_of_line ();
11755 }
11756
11757 /* It renames the original symbol name to its alias. */
11758 static void
11759 do_alias (const char *alias, PTR value)
11760 {
11761 struct alias *h = (struct alias *) value;
11762 symbolS *sym = symbol_find (h->name);
11763
11764 if (sym == NULL)
11765 as_warn_where (h->file, h->line,
11766 _("symbol `%s' aliased to `%s' is not used"),
11767 h->name, alias);
11768 else
11769 S_SET_NAME (sym, (char *) alias);
11770 }
11771
11772 /* Called from write_object_file. */
11773 void
11774 ia64_adjust_symtab (void)
11775 {
11776 hash_traverse (alias_hash, do_alias);
11777 }
11778
11779 /* It renames the original section name to its alias. */
11780 static void
11781 do_secalias (const char *alias, PTR value)
11782 {
11783 struct alias *h = (struct alias *) value;
11784 segT sec = bfd_get_section_by_name (stdoutput, h->name);
11785
11786 if (sec == NULL)
11787 as_warn_where (h->file, h->line,
11788 _("section `%s' aliased to `%s' is not used"),
11789 h->name, alias);
11790 else
11791 sec->name = alias;
11792 }
11793
11794 /* Called from write_object_file. */
11795 void
11796 ia64_frob_file (void)
11797 {
11798 hash_traverse (secalias_hash, do_secalias);
11799 }
This page took 0.261037 seconds and 5 git commands to generate.