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