Commit | Line | Data |
---|---|---|
800eeca4 | 1 | /* tc-ia64.c -- Assembler for the HP/Intel IA-64 architecture. |
91a2ae2a | 2 | Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation. |
800eeca4 JW |
3 | Contributed by David Mosberger-Tang <davidm@hpl.hp.com> |
4 | ||
5 | This file is part of GAS, the GNU Assembler. | |
6 | ||
7 | GAS is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
9 | the Free Software Foundation; either version 2, or (at your option) | |
10 | any later version. | |
11 | ||
12 | GAS is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
18 | along with GAS; see the file COPYING. If not, write to | |
19 | the Free Software Foundation, 59 Temple Place - Suite 330, | |
20 | Boston, MA 02111-1307, USA. */ | |
21 | ||
22 | /* | |
23 | TODO: | |
24 | ||
25 | - optional operands | |
26 | - directives: | |
27 | .alias | |
28 | .eb | |
29 | .estate | |
30 | .lb | |
31 | .popsection | |
32 | .previous | |
33 | .psr | |
34 | .pushsection | |
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" | |
46 | #include "dwarf2dbg.h" | |
47 | #include "subsegs.h" | |
48 | ||
49 | #include "opcode/ia64.h" | |
50 | ||
51 | #include "elf/ia64.h" | |
52 | ||
53 | #define NELEMS(a) ((int) (sizeof (a)/sizeof ((a)[0]))) | |
54 | #define MIN(a,b) ((a) < (b) ? (a) : (b)) | |
55 | ||
56 | #define NUM_SLOTS 4 | |
57 | #define PREV_SLOT md.slot[(md.curr_slot + NUM_SLOTS - 1) % NUM_SLOTS] | |
58 | #define CURR_SLOT md.slot[md.curr_slot] | |
59 | ||
60 | #define O_pseudo_fixup (O_max + 1) | |
61 | ||
62 | enum special_section | |
63 | { | |
64 | SPECIAL_SECTION_BSS = 0, | |
65 | SPECIAL_SECTION_SBSS, | |
66 | SPECIAL_SECTION_SDATA, | |
67 | SPECIAL_SECTION_RODATA, | |
68 | SPECIAL_SECTION_COMMENT, | |
69 | SPECIAL_SECTION_UNWIND, | |
70 | SPECIAL_SECTION_UNWIND_INFO | |
71 | }; | |
72 | ||
73 | enum reloc_func | |
74 | { | |
75 | FUNC_FPTR_RELATIVE, | |
76 | FUNC_GP_RELATIVE, | |
77 | FUNC_LT_RELATIVE, | |
c67e42c9 | 78 | FUNC_PC_RELATIVE, |
800eeca4 JW |
79 | FUNC_PLT_RELATIVE, |
80 | FUNC_SEC_RELATIVE, | |
81 | FUNC_SEG_RELATIVE, | |
82 | FUNC_LTV_RELATIVE, | |
83 | FUNC_LT_FPTR_RELATIVE, | |
84 | }; | |
85 | ||
86 | enum reg_symbol | |
87 | { | |
88 | REG_GR = 0, | |
89 | REG_FR = (REG_GR + 128), | |
90 | REG_AR = (REG_FR + 128), | |
91 | REG_CR = (REG_AR + 128), | |
92 | REG_P = (REG_CR + 128), | |
93 | REG_BR = (REG_P + 64), | |
94 | REG_IP = (REG_BR + 8), | |
95 | REG_CFM, | |
96 | REG_PR, | |
97 | REG_PR_ROT, | |
98 | REG_PSR, | |
99 | REG_PSR_L, | |
100 | REG_PSR_UM, | |
101 | /* The following are pseudo-registers for use by gas only. */ | |
102 | IND_CPUID, | |
103 | IND_DBR, | |
104 | IND_DTR, | |
105 | IND_ITR, | |
106 | IND_IBR, | |
107 | IND_MEM, | |
108 | IND_MSR, | |
109 | IND_PKR, | |
110 | IND_PMC, | |
111 | IND_PMD, | |
112 | IND_RR, | |
542d6675 | 113 | /* The following pseudo-registers are used for unwind directives only: */ |
e0c9811a JW |
114 | REG_PSP, |
115 | REG_PRIUNAT, | |
800eeca4 JW |
116 | REG_NUM |
117 | }; | |
118 | ||
119 | enum dynreg_type | |
120 | { | |
121 | DYNREG_GR = 0, /* dynamic general purpose register */ | |
122 | DYNREG_FR, /* dynamic floating point register */ | |
123 | DYNREG_PR, /* dynamic predicate register */ | |
124 | DYNREG_NUM_TYPES | |
125 | }; | |
126 | ||
87f8eb97 JW |
127 | enum operand_match_result |
128 | { | |
129 | OPERAND_MATCH, | |
130 | OPERAND_OUT_OF_RANGE, | |
131 | OPERAND_MISMATCH | |
132 | }; | |
133 | ||
800eeca4 JW |
134 | /* On the ia64, we can't know the address of a text label until the |
135 | instructions are packed into a bundle. To handle this, we keep | |
136 | track of the list of labels that appear in front of each | |
137 | instruction. */ | |
138 | struct label_fix | |
542d6675 KH |
139 | { |
140 | struct label_fix *next; | |
141 | struct symbol *sym; | |
142 | }; | |
800eeca4 JW |
143 | |
144 | extern int target_big_endian; | |
145 | ||
146 | /* Characters which always start a comment. */ | |
147 | const char comment_chars[] = ""; | |
148 | ||
149 | /* Characters which start a comment at the beginning of a line. */ | |
150 | const char line_comment_chars[] = "#"; | |
151 | ||
152 | /* Characters which may be used to separate multiple commands on a | |
153 | single line. */ | |
154 | const char line_separator_chars[] = ";"; | |
155 | ||
156 | /* Characters which are used to indicate an exponent in a floating | |
157 | point number. */ | |
158 | const char EXP_CHARS[] = "eE"; | |
159 | ||
160 | /* Characters which mean that a number is a floating point constant, | |
161 | as in 0d1.0. */ | |
162 | const char FLT_CHARS[] = "rRsSfFdDxXpP"; | |
163 | ||
542d6675 | 164 | /* ia64-specific option processing: */ |
800eeca4 | 165 | |
44f5c83a | 166 | const char *md_shortopts = "m:N:x::"; |
800eeca4 JW |
167 | |
168 | struct option md_longopts[] = | |
169 | { | |
c43c2cc5 JW |
170 | #define OPTION_MCONSTANT_GP (OPTION_MD_BASE + 1) |
171 | {"mconstant-gp", no_argument, NULL, OPTION_MCONSTANT_GP}, | |
172 | #define OPTION_MAUTO_PIC (OPTION_MD_BASE + 2) | |
173 | {"mauto-pic", no_argument, NULL, OPTION_MAUTO_PIC} | |
800eeca4 JW |
174 | }; |
175 | ||
176 | size_t md_longopts_size = sizeof (md_longopts); | |
177 | ||
178 | static struct | |
179 | { | |
180 | struct hash_control *pseudo_hash; /* pseudo opcode hash table */ | |
181 | struct hash_control *reg_hash; /* register name hash table */ | |
182 | struct hash_control *dynreg_hash; /* dynamic register hash table */ | |
183 | struct hash_control *const_hash; /* constant hash table */ | |
184 | struct hash_control *entry_hash; /* code entry hint hash table */ | |
185 | ||
186 | symbolS *regsym[REG_NUM]; | |
187 | ||
188 | /* If X_op is != O_absent, the registername for the instruction's | |
189 | qualifying predicate. If NULL, p0 is assumed for instructions | |
190 | that are predicatable. */ | |
191 | expressionS qp; | |
192 | ||
193 | unsigned int | |
197865e8 | 194 | manual_bundling : 1, |
800eeca4 JW |
195 | debug_dv: 1, |
196 | detect_dv: 1, | |
197 | explicit_mode : 1, /* which mode we're in */ | |
198 | default_explicit_mode : 1, /* which mode is the default */ | |
199 | mode_explicitly_set : 1, /* was the current mode explicitly set? */ | |
200 | auto_align : 1; | |
201 | ||
202 | /* Each bundle consists of up to three instructions. We keep | |
203 | track of four most recent instructions so we can correctly set | |
197865e8 | 204 | the end_of_insn_group for the last instruction in a bundle. */ |
800eeca4 JW |
205 | int curr_slot; |
206 | int num_slots_in_use; | |
207 | struct slot | |
208 | { | |
209 | unsigned int | |
210 | end_of_insn_group : 1, | |
211 | manual_bundling_on : 1, | |
212 | manual_bundling_off : 1; | |
213 | signed char user_template; /* user-selected template, if any */ | |
214 | unsigned char qp_regno; /* qualifying predicate */ | |
215 | /* This duplicates a good fraction of "struct fix" but we | |
216 | can't use a "struct fix" instead since we can't call | |
217 | fix_new_exp() until we know the address of the instruction. */ | |
218 | int num_fixups; | |
219 | struct insn_fix | |
220 | { | |
221 | bfd_reloc_code_real_type code; | |
222 | enum ia64_opnd opnd; /* type of operand in need of fix */ | |
223 | unsigned int is_pcrel : 1; /* is operand pc-relative? */ | |
224 | expressionS expr; /* the value to be inserted */ | |
225 | } | |
226 | fixup[2]; /* at most two fixups per insn */ | |
227 | struct ia64_opcode *idesc; | |
228 | struct label_fix *label_fixups; | |
f1bcba5b | 229 | struct label_fix *tag_fixups; |
800eeca4 JW |
230 | struct unw_rec_list *unwind_record; /* Unwind directive. */ |
231 | expressionS opnd[6]; | |
232 | char *src_file; | |
233 | unsigned int src_line; | |
234 | struct dwarf2_line_info debug_line; | |
235 | } | |
236 | slot[NUM_SLOTS]; | |
237 | ||
238 | segT last_text_seg; | |
239 | ||
240 | struct dynreg | |
241 | { | |
242 | struct dynreg *next; /* next dynamic register */ | |
243 | const char *name; | |
244 | unsigned short base; /* the base register number */ | |
245 | unsigned short num_regs; /* # of registers in this set */ | |
246 | } | |
247 | *dynreg[DYNREG_NUM_TYPES], in, loc, out, rot; | |
248 | ||
249 | flagword flags; /* ELF-header flags */ | |
250 | ||
251 | struct mem_offset { | |
252 | unsigned hint:1; /* is this hint currently valid? */ | |
253 | bfd_vma offset; /* mem.offset offset */ | |
254 | bfd_vma base; /* mem.offset base */ | |
255 | } mem_offset; | |
256 | ||
257 | int path; /* number of alt. entry points seen */ | |
258 | const char **entry_labels; /* labels of all alternate paths in | |
542d6675 | 259 | the current DV-checking block. */ |
800eeca4 | 260 | int maxpaths; /* size currently allocated for |
542d6675 | 261 | entry_labels */ |
88be23ec BS |
262 | /* Support for hardware errata workarounds. */ |
263 | ||
264 | /* Record data about the last three insn groups. */ | |
265 | struct group | |
266 | { | |
267 | /* B-step workaround. | |
268 | For each predicate register, this is set if the corresponding insn | |
269 | group conditionally sets this register with one of the affected | |
270 | instructions. */ | |
271 | int p_reg_set[64]; | |
272 | /* B-step workaround. | |
273 | For each general register, this is set if the corresponding insn | |
274 | a) is conditional one one of the predicate registers for which | |
275 | P_REG_SET is 1 in the corresponding entry of the previous group, | |
276 | b) sets this general register with one of the affected | |
277 | instructions. */ | |
278 | int g_reg_set_conditionally[128]; | |
279 | } last_groups[3]; | |
280 | int group_idx; | |
800eeca4 JW |
281 | } |
282 | md; | |
283 | ||
542d6675 | 284 | /* application registers: */ |
800eeca4 | 285 | |
e0c9811a JW |
286 | #define AR_K0 0 |
287 | #define AR_K7 7 | |
288 | #define AR_RSC 16 | |
289 | #define AR_BSP 17 | |
290 | #define AR_BSPSTORE 18 | |
291 | #define AR_RNAT 19 | |
292 | #define AR_UNAT 36 | |
293 | #define AR_FPSR 40 | |
294 | #define AR_ITC 44 | |
295 | #define AR_PFS 64 | |
296 | #define AR_LC 65 | |
800eeca4 JW |
297 | |
298 | static const struct | |
299 | { | |
300 | const char *name; | |
301 | int regnum; | |
302 | } | |
303 | ar[] = | |
304 | { | |
305 | {"ar.k0", 0}, {"ar.k1", 1}, {"ar.k2", 2}, {"ar.k3", 3}, | |
306 | {"ar.k4", 4}, {"ar.k5", 5}, {"ar.k6", 6}, {"ar.k7", 7}, | |
307 | {"ar.rsc", 16}, {"ar.bsp", 17}, | |
308 | {"ar.bspstore", 18}, {"ar.rnat", 19}, | |
309 | {"ar.fcr", 21}, {"ar.eflag", 24}, | |
310 | {"ar.csd", 25}, {"ar.ssd", 26}, | |
311 | {"ar.cflg", 27}, {"ar.fsr", 28}, | |
312 | {"ar.fir", 29}, {"ar.fdr", 30}, | |
313 | {"ar.ccv", 32}, {"ar.unat", 36}, | |
314 | {"ar.fpsr", 40}, {"ar.itc", 44}, | |
315 | {"ar.pfs", 64}, {"ar.lc", 65}, | |
197865e8 | 316 | {"ar.ec", 66}, |
800eeca4 JW |
317 | }; |
318 | ||
319 | #define CR_IPSR 16 | |
320 | #define CR_ISR 17 | |
321 | #define CR_IIP 19 | |
322 | #define CR_IFA 20 | |
323 | #define CR_ITIR 21 | |
324 | #define CR_IIPA 22 | |
325 | #define CR_IFS 23 | |
326 | #define CR_IIM 24 | |
327 | #define CR_IHA 25 | |
328 | #define CR_IVR 65 | |
329 | #define CR_TPR 66 | |
330 | #define CR_EOI 67 | |
331 | #define CR_IRR0 68 | |
332 | #define CR_IRR3 71 | |
333 | #define CR_LRR0 80 | |
334 | #define CR_LRR1 81 | |
335 | ||
542d6675 | 336 | /* control registers: */ |
800eeca4 JW |
337 | static const struct |
338 | { | |
339 | const char *name; | |
340 | int regnum; | |
341 | } | |
342 | cr[] = | |
343 | { | |
344 | {"cr.dcr", 0}, | |
345 | {"cr.itm", 1}, | |
346 | {"cr.iva", 2}, | |
347 | {"cr.pta", 8}, | |
348 | {"cr.gpta", 9}, | |
349 | {"cr.ipsr", 16}, | |
350 | {"cr.isr", 17}, | |
351 | {"cr.iip", 19}, | |
352 | {"cr.ifa", 20}, | |
353 | {"cr.itir", 21}, | |
354 | {"cr.iipa", 22}, | |
355 | {"cr.ifs", 23}, | |
356 | {"cr.iim", 24}, | |
357 | {"cr.iha", 25}, | |
358 | {"cr.lid", 64}, | |
359 | {"cr.ivr", 65}, | |
360 | {"cr.tpr", 66}, | |
361 | {"cr.eoi", 67}, | |
362 | {"cr.irr0", 68}, | |
363 | {"cr.irr1", 69}, | |
364 | {"cr.irr2", 70}, | |
365 | {"cr.irr3", 71}, | |
366 | {"cr.itv", 72}, | |
367 | {"cr.pmv", 73}, | |
368 | {"cr.cmcv", 74}, | |
369 | {"cr.lrr0", 80}, | |
370 | {"cr.lrr1", 81} | |
371 | }; | |
372 | ||
373 | #define PSR_MFL 4 | |
374 | #define PSR_IC 13 | |
375 | #define PSR_DFL 18 | |
376 | #define PSR_CPL 32 | |
377 | ||
378 | static const struct const_desc | |
379 | { | |
380 | const char *name; | |
381 | valueT value; | |
382 | } | |
383 | const_bits[] = | |
384 | { | |
542d6675 | 385 | /* PSR constant masks: */ |
800eeca4 JW |
386 | |
387 | /* 0: reserved */ | |
388 | {"psr.be", ((valueT) 1) << 1}, | |
389 | {"psr.up", ((valueT) 1) << 2}, | |
390 | {"psr.ac", ((valueT) 1) << 3}, | |
391 | {"psr.mfl", ((valueT) 1) << 4}, | |
392 | {"psr.mfh", ((valueT) 1) << 5}, | |
393 | /* 6-12: reserved */ | |
394 | {"psr.ic", ((valueT) 1) << 13}, | |
395 | {"psr.i", ((valueT) 1) << 14}, | |
396 | {"psr.pk", ((valueT) 1) << 15}, | |
397 | /* 16: reserved */ | |
398 | {"psr.dt", ((valueT) 1) << 17}, | |
399 | {"psr.dfl", ((valueT) 1) << 18}, | |
400 | {"psr.dfh", ((valueT) 1) << 19}, | |
401 | {"psr.sp", ((valueT) 1) << 20}, | |
402 | {"psr.pp", ((valueT) 1) << 21}, | |
403 | {"psr.di", ((valueT) 1) << 22}, | |
404 | {"psr.si", ((valueT) 1) << 23}, | |
405 | {"psr.db", ((valueT) 1) << 24}, | |
406 | {"psr.lp", ((valueT) 1) << 25}, | |
407 | {"psr.tb", ((valueT) 1) << 26}, | |
408 | {"psr.rt", ((valueT) 1) << 27}, | |
409 | /* 28-31: reserved */ | |
410 | /* 32-33: cpl (current privilege level) */ | |
411 | {"psr.is", ((valueT) 1) << 34}, | |
412 | {"psr.mc", ((valueT) 1) << 35}, | |
413 | {"psr.it", ((valueT) 1) << 36}, | |
414 | {"psr.id", ((valueT) 1) << 37}, | |
415 | {"psr.da", ((valueT) 1) << 38}, | |
416 | {"psr.dd", ((valueT) 1) << 39}, | |
417 | {"psr.ss", ((valueT) 1) << 40}, | |
418 | /* 41-42: ri (restart instruction) */ | |
419 | {"psr.ed", ((valueT) 1) << 43}, | |
420 | {"psr.bn", ((valueT) 1) << 44}, | |
421 | }; | |
422 | ||
542d6675 | 423 | /* indirect register-sets/memory: */ |
800eeca4 JW |
424 | |
425 | static const struct | |
426 | { | |
427 | const char *name; | |
428 | int regnum; | |
429 | } | |
430 | indirect_reg[] = | |
431 | { | |
432 | { "CPUID", IND_CPUID }, | |
433 | { "cpuid", IND_CPUID }, | |
434 | { "dbr", IND_DBR }, | |
435 | { "dtr", IND_DTR }, | |
436 | { "itr", IND_ITR }, | |
437 | { "ibr", IND_IBR }, | |
438 | { "msr", IND_MSR }, | |
439 | { "pkr", IND_PKR }, | |
440 | { "pmc", IND_PMC }, | |
441 | { "pmd", IND_PMD }, | |
442 | { "rr", IND_RR }, | |
443 | }; | |
444 | ||
445 | /* Pseudo functions used to indicate relocation types (these functions | |
446 | start with an at sign (@). */ | |
447 | static struct | |
448 | { | |
449 | const char *name; | |
450 | enum pseudo_type | |
451 | { | |
452 | PSEUDO_FUNC_NONE, | |
453 | PSEUDO_FUNC_RELOC, | |
454 | PSEUDO_FUNC_CONST, | |
e0c9811a | 455 | PSEUDO_FUNC_REG, |
800eeca4 JW |
456 | PSEUDO_FUNC_FLOAT |
457 | } | |
458 | type; | |
459 | union | |
460 | { | |
461 | unsigned long ival; | |
462 | symbolS *sym; | |
463 | } | |
464 | u; | |
465 | } | |
466 | pseudo_func[] = | |
467 | { | |
542d6675 | 468 | /* reloc pseudo functions (these must come first!): */ |
2434f565 JW |
469 | { "fptr", PSEUDO_FUNC_RELOC, { 0 } }, |
470 | { "gprel", PSEUDO_FUNC_RELOC, { 0 } }, | |
471 | { "ltoff", PSEUDO_FUNC_RELOC, { 0 } }, | |
472 | { "pcrel", PSEUDO_FUNC_RELOC, { 0 } }, | |
473 | { "pltoff", PSEUDO_FUNC_RELOC, { 0 } }, | |
474 | { "secrel", PSEUDO_FUNC_RELOC, { 0 } }, | |
475 | { "segrel", PSEUDO_FUNC_RELOC, { 0 } }, | |
476 | { "ltv", PSEUDO_FUNC_RELOC, { 0 } }, | |
477 | { "", 0, { 0 } }, /* placeholder for FUNC_LT_FPTR_RELATIVE */ | |
800eeca4 | 478 | |
542d6675 | 479 | /* mbtype4 constants: */ |
800eeca4 JW |
480 | { "alt", PSEUDO_FUNC_CONST, { 0xa } }, |
481 | { "brcst", PSEUDO_FUNC_CONST, { 0x0 } }, | |
482 | { "mix", PSEUDO_FUNC_CONST, { 0x8 } }, | |
483 | { "rev", PSEUDO_FUNC_CONST, { 0xb } }, | |
484 | { "shuf", PSEUDO_FUNC_CONST, { 0x9 } }, | |
485 | ||
542d6675 | 486 | /* fclass constants: */ |
bf3ca999 | 487 | { "nat", PSEUDO_FUNC_CONST, { 0x100 } }, |
800eeca4 JW |
488 | { "qnan", PSEUDO_FUNC_CONST, { 0x080 } }, |
489 | { "snan", PSEUDO_FUNC_CONST, { 0x040 } }, | |
490 | { "pos", PSEUDO_FUNC_CONST, { 0x001 } }, | |
491 | { "neg", PSEUDO_FUNC_CONST, { 0x002 } }, | |
492 | { "zero", PSEUDO_FUNC_CONST, { 0x004 } }, | |
493 | { "unorm", PSEUDO_FUNC_CONST, { 0x008 } }, | |
494 | { "norm", PSEUDO_FUNC_CONST, { 0x010 } }, | |
495 | { "inf", PSEUDO_FUNC_CONST, { 0x020 } }, | |
bf3ca999 TW |
496 | |
497 | { "natval", PSEUDO_FUNC_CONST, { 0x100 } }, /* old usage */ | |
e0c9811a | 498 | |
542d6675 | 499 | /* unwind-related constants: */ |
e0c9811a JW |
500 | { "svr4", PSEUDO_FUNC_CONST, { 0 } }, |
501 | { "hpux", PSEUDO_FUNC_CONST, { 1 } }, | |
502 | { "nt", PSEUDO_FUNC_CONST, { 2 } }, | |
503 | ||
542d6675 | 504 | /* unwind-related registers: */ |
e0c9811a | 505 | { "priunat",PSEUDO_FUNC_REG, { REG_PRIUNAT } } |
800eeca4 JW |
506 | }; |
507 | ||
542d6675 | 508 | /* 41-bit nop opcodes (one per unit): */ |
800eeca4 JW |
509 | static const bfd_vma nop[IA64_NUM_UNITS] = |
510 | { | |
511 | 0x0000000000LL, /* NIL => break 0 */ | |
512 | 0x0008000000LL, /* I-unit nop */ | |
513 | 0x0008000000LL, /* M-unit nop */ | |
514 | 0x4000000000LL, /* B-unit nop */ | |
515 | 0x0008000000LL, /* F-unit nop */ | |
516 | 0x0008000000LL, /* L-"unit" nop */ | |
517 | 0x0008000000LL, /* X-unit nop */ | |
518 | }; | |
519 | ||
520 | /* Can't be `const' as it's passed to input routines (which have the | |
521 | habit of setting temporary sentinels. */ | |
522 | static char special_section_name[][20] = | |
523 | { | |
524 | {".bss"}, {".sbss"}, {".sdata"}, {".rodata"}, {".comment"}, | |
525 | {".IA_64.unwind"}, {".IA_64.unwind_info"} | |
526 | }; | |
527 | ||
528 | /* The best template for a particular sequence of up to three | |
529 | instructions: */ | |
530 | #define N IA64_NUM_TYPES | |
531 | static unsigned char best_template[N][N][N]; | |
532 | #undef N | |
533 | ||
534 | /* Resource dependencies currently in effect */ | |
535 | static struct rsrc { | |
536 | int depind; /* dependency index */ | |
537 | const struct ia64_dependency *dependency; /* actual dependency */ | |
538 | unsigned specific:1, /* is this a specific bit/regno? */ | |
539 | link_to_qp_branch:1; /* will a branch on the same QP clear it?*/ | |
540 | int index; /* specific regno/bit within dependency */ | |
541 | int note; /* optional qualifying note (0 if none) */ | |
542 | #define STATE_NONE 0 | |
543 | #define STATE_STOP 1 | |
544 | #define STATE_SRLZ 2 | |
545 | int insn_srlz; /* current insn serialization state */ | |
546 | int data_srlz; /* current data serialization state */ | |
547 | int qp_regno; /* qualifying predicate for this usage */ | |
548 | char *file; /* what file marked this dependency */ | |
2434f565 | 549 | unsigned int line; /* what line marked this dependency */ |
800eeca4 | 550 | struct mem_offset mem_offset; /* optional memory offset hint */ |
7484b8e6 | 551 | enum { CMP_NONE, CMP_OR, CMP_AND } cmp_type; /* OR or AND compare? */ |
800eeca4 JW |
552 | int path; /* corresponding code entry index */ |
553 | } *regdeps = NULL; | |
554 | static int regdepslen = 0; | |
555 | static int regdepstotlen = 0; | |
556 | static const char *dv_mode[] = { "RAW", "WAW", "WAR" }; | |
557 | static const char *dv_sem[] = { "none", "implied", "impliedf", | |
139368c9 | 558 | "data", "instr", "specific", "stop", "other" }; |
7484b8e6 | 559 | static const char *dv_cmp_type[] = { "none", "OR", "AND" }; |
800eeca4 JW |
560 | |
561 | /* Current state of PR mutexation */ | |
562 | static struct qpmutex { | |
563 | valueT prmask; | |
564 | int path; | |
565 | } *qp_mutexes = NULL; /* QP mutex bitmasks */ | |
566 | static int qp_mutexeslen = 0; | |
567 | static int qp_mutexestotlen = 0; | |
197865e8 | 568 | static valueT qp_safe_across_calls = 0; |
800eeca4 JW |
569 | |
570 | /* Current state of PR implications */ | |
571 | static struct qp_imply { | |
572 | unsigned p1:6; | |
573 | unsigned p2:6; | |
574 | unsigned p2_branched:1; | |
575 | int path; | |
576 | } *qp_implies = NULL; | |
577 | static int qp_implieslen = 0; | |
578 | static int qp_impliestotlen = 0; | |
579 | ||
197865e8 KH |
580 | /* Keep track of static GR values so that indirect register usage can |
581 | sometimes be tracked. */ | |
800eeca4 JW |
582 | static struct gr { |
583 | unsigned known:1; | |
584 | int path; | |
585 | valueT value; | |
2434f565 | 586 | } gr_values[128] = {{ 1, 0, 0 }}; |
800eeca4 JW |
587 | |
588 | /* These are the routines required to output the various types of | |
589 | unwind records. */ | |
590 | ||
f5a30c2e JW |
591 | /* A slot_number is a frag address plus the slot index (0-2). We use the |
592 | frag address here so that if there is a section switch in the middle of | |
593 | a function, then instructions emitted to a different section are not | |
594 | counted. Since there may be more than one frag for a function, this | |
595 | means we also need to keep track of which frag this address belongs to | |
596 | so we can compute inter-frag distances. This also nicely solves the | |
597 | problem with nops emitted for align directives, which can't easily be | |
598 | counted, but can easily be derived from frag sizes. */ | |
599 | ||
800eeca4 JW |
600 | typedef struct unw_rec_list { |
601 | unwind_record r; | |
e0c9811a | 602 | unsigned long slot_number; |
f5a30c2e | 603 | fragS *slot_frag; |
800eeca4 JW |
604 | struct unw_rec_list *next; |
605 | } unw_rec_list; | |
606 | ||
2434f565 | 607 | #define SLOT_NUM_NOT_SET (unsigned)-1 |
800eeca4 | 608 | |
e0c9811a JW |
609 | static struct |
610 | { | |
611 | unsigned long next_slot_number; | |
f5a30c2e | 612 | fragS *next_slot_frag; |
e0c9811a JW |
613 | |
614 | /* Maintain a list of unwind entries for the current function. */ | |
615 | unw_rec_list *list; | |
616 | unw_rec_list *tail; | |
800eeca4 | 617 | |
e0c9811a JW |
618 | /* Any unwind entires that should be attached to the current slot |
619 | that an insn is being constructed for. */ | |
620 | unw_rec_list *current_entry; | |
800eeca4 | 621 | |
e0c9811a JW |
622 | /* These are used to create the unwind table entry for this function. */ |
623 | symbolS *proc_start; | |
624 | symbolS *proc_end; | |
625 | symbolS *info; /* pointer to unwind info */ | |
626 | symbolS *personality_routine; | |
91a2ae2a RH |
627 | segT saved_text_seg; |
628 | subsegT saved_text_subseg; | |
629 | unsigned int force_unwind_entry : 1; /* force generation of unwind entry? */ | |
800eeca4 | 630 | |
e0c9811a JW |
631 | /* TRUE if processing unwind directives in a prologue region. */ |
632 | int prologue; | |
30d25259 | 633 | int prologue_mask; |
33d01f33 | 634 | unsigned int prologue_count; /* number of .prologues seen so far */ |
e0c9811a | 635 | } unwind; |
800eeca4 JW |
636 | |
637 | typedef void (*vbyte_func) PARAMS ((int, char *, char *)); | |
638 | ||
542d6675 | 639 | /* Forward delarations: */ |
800eeca4 JW |
640 | static int ar_is_in_integer_unit PARAMS ((int regnum)); |
641 | static void set_section PARAMS ((char *name)); | |
642 | static unsigned int set_regstack PARAMS ((unsigned int, unsigned int, | |
643 | unsigned int, unsigned int)); | |
644 | static void dot_radix PARAMS ((int)); | |
645 | static void dot_special_section PARAMS ((int)); | |
646 | static void dot_proc PARAMS ((int)); | |
647 | static void dot_fframe PARAMS ((int)); | |
648 | static void dot_vframe PARAMS ((int)); | |
150f24a2 JW |
649 | static void dot_vframesp PARAMS ((int)); |
650 | static void dot_vframepsp PARAMS ((int)); | |
800eeca4 JW |
651 | static void dot_save PARAMS ((int)); |
652 | static void dot_restore PARAMS ((int)); | |
150f24a2 JW |
653 | static void dot_restorereg PARAMS ((int)); |
654 | static void dot_restorereg_p PARAMS ((int)); | |
800eeca4 JW |
655 | static void dot_handlerdata PARAMS ((int)); |
656 | static void dot_unwentry PARAMS ((int)); | |
657 | static void dot_altrp PARAMS ((int)); | |
e0c9811a | 658 | static void dot_savemem PARAMS ((int)); |
800eeca4 JW |
659 | static void dot_saveg PARAMS ((int)); |
660 | static void dot_savef PARAMS ((int)); | |
661 | static void dot_saveb PARAMS ((int)); | |
662 | static void dot_savegf PARAMS ((int)); | |
663 | static void dot_spill PARAMS ((int)); | |
150f24a2 JW |
664 | static void dot_spillreg PARAMS ((int)); |
665 | static void dot_spillmem PARAMS ((int)); | |
666 | static void dot_spillreg_p PARAMS ((int)); | |
667 | static void dot_spillmem_p PARAMS ((int)); | |
668 | static void dot_label_state PARAMS ((int)); | |
669 | static void dot_copy_state PARAMS ((int)); | |
800eeca4 JW |
670 | static void dot_unwabi PARAMS ((int)); |
671 | static void dot_personality PARAMS ((int)); | |
672 | static void dot_body PARAMS ((int)); | |
673 | static void dot_prologue PARAMS ((int)); | |
674 | static void dot_endp PARAMS ((int)); | |
675 | static void dot_template PARAMS ((int)); | |
676 | static void dot_regstk PARAMS ((int)); | |
677 | static void dot_rot PARAMS ((int)); | |
678 | static void dot_byteorder PARAMS ((int)); | |
679 | static void dot_psr PARAMS ((int)); | |
680 | static void dot_alias PARAMS ((int)); | |
681 | static void dot_ln PARAMS ((int)); | |
682 | static char *parse_section_name PARAMS ((void)); | |
683 | static void dot_xdata PARAMS ((int)); | |
684 | static void stmt_float_cons PARAMS ((int)); | |
685 | static void stmt_cons_ua PARAMS ((int)); | |
686 | static void dot_xfloat_cons PARAMS ((int)); | |
687 | static void dot_xstringer PARAMS ((int)); | |
688 | static void dot_xdata_ua PARAMS ((int)); | |
689 | static void dot_xfloat_cons_ua PARAMS ((int)); | |
150f24a2 | 690 | static void print_prmask PARAMS ((valueT mask)); |
800eeca4 JW |
691 | static void dot_pred_rel PARAMS ((int)); |
692 | static void dot_reg_val PARAMS ((int)); | |
693 | static void dot_dv_mode PARAMS ((int)); | |
694 | static void dot_entry PARAMS ((int)); | |
695 | static void dot_mem_offset PARAMS ((int)); | |
e0c9811a | 696 | static void add_unwind_entry PARAMS((unw_rec_list *ptr)); |
542d6675 | 697 | static symbolS *declare_register PARAMS ((const char *name, int regnum)); |
800eeca4 JW |
698 | static void declare_register_set PARAMS ((const char *, int, int)); |
699 | static unsigned int operand_width PARAMS ((enum ia64_opnd)); | |
87f8eb97 JW |
700 | static enum operand_match_result operand_match PARAMS ((const struct ia64_opcode *idesc, |
701 | int index, | |
702 | expressionS *e)); | |
800eeca4 JW |
703 | static int parse_operand PARAMS ((expressionS *e)); |
704 | static struct ia64_opcode * parse_operands PARAMS ((struct ia64_opcode *)); | |
705 | static void build_insn PARAMS ((struct slot *, bfd_vma *)); | |
706 | static void emit_one_bundle PARAMS ((void)); | |
707 | static void fix_insn PARAMS ((fixS *, const struct ia64_operand *, valueT)); | |
197865e8 | 708 | static bfd_reloc_code_real_type ia64_gen_real_reloc_type PARAMS ((struct symbol *sym, |
800eeca4 JW |
709 | bfd_reloc_code_real_type r_type)); |
710 | static void insn_group_break PARAMS ((int, int, int)); | |
150f24a2 JW |
711 | static void mark_resource PARAMS ((struct ia64_opcode *, const struct ia64_dependency *, |
712 | struct rsrc *, int depind, int path)); | |
800eeca4 JW |
713 | static void add_qp_mutex PARAMS((valueT mask)); |
714 | static void add_qp_imply PARAMS((int p1, int p2)); | |
715 | static void clear_qp_branch_flag PARAMS((valueT mask)); | |
716 | static void clear_qp_mutex PARAMS((valueT mask)); | |
717 | static void clear_qp_implies PARAMS((valueT p1_mask, valueT p2_mask)); | |
718 | static void clear_register_values PARAMS ((void)); | |
719 | static void print_dependency PARAMS ((const char *action, int depind)); | |
150f24a2 JW |
720 | static void instruction_serialization PARAMS ((void)); |
721 | static void data_serialization PARAMS ((void)); | |
722 | static void remove_marked_resource PARAMS ((struct rsrc *)); | |
800eeca4 | 723 | static int is_conditional_branch PARAMS ((struct ia64_opcode *)); |
150f24a2 | 724 | static int is_taken_branch PARAMS ((struct ia64_opcode *)); |
800eeca4 | 725 | static int is_interruption_or_rfi PARAMS ((struct ia64_opcode *)); |
150f24a2 JW |
726 | static int depends_on PARAMS ((int, struct ia64_opcode *)); |
727 | static int specify_resource PARAMS ((const struct ia64_dependency *, | |
728 | struct ia64_opcode *, int, struct rsrc [], int, int)); | |
800eeca4 JW |
729 | static int check_dv PARAMS((struct ia64_opcode *idesc)); |
730 | static void check_dependencies PARAMS((struct ia64_opcode *)); | |
731 | static void mark_resources PARAMS((struct ia64_opcode *)); | |
732 | static void update_dependencies PARAMS((struct ia64_opcode *)); | |
733 | static void note_register_values PARAMS((struct ia64_opcode *)); | |
150f24a2 JW |
734 | static int qp_mutex PARAMS ((int, int, int)); |
735 | static int resources_match PARAMS ((struct rsrc *, struct ia64_opcode *, int, int, int)); | |
736 | static void output_vbyte_mem PARAMS ((int, char *, char *)); | |
737 | static void count_output PARAMS ((int, char *, char *)); | |
738 | static void output_R1_format PARAMS ((vbyte_func, unw_record_type, int)); | |
739 | static void output_R2_format PARAMS ((vbyte_func, int, int, unsigned long)); | |
800eeca4 | 740 | static void output_R3_format PARAMS ((vbyte_func, unw_record_type, unsigned long)); |
150f24a2 JW |
741 | static void output_P1_format PARAMS ((vbyte_func, int)); |
742 | static void output_P2_format PARAMS ((vbyte_func, int, int)); | |
743 | static void output_P3_format PARAMS ((vbyte_func, unw_record_type, int)); | |
744 | static void output_P4_format PARAMS ((vbyte_func, unsigned char *, unsigned long)); | |
745 | static void output_P5_format PARAMS ((vbyte_func, int, unsigned long)); | |
746 | static void output_P6_format PARAMS ((vbyte_func, unw_record_type, int)); | |
747 | static void output_P7_format PARAMS ((vbyte_func, unw_record_type, unsigned long, unsigned long)); | |
748 | static void output_P8_format PARAMS ((vbyte_func, unw_record_type, unsigned long)); | |
749 | static void output_P9_format PARAMS ((vbyte_func, int, int)); | |
750 | static void output_P10_format PARAMS ((vbyte_func, int, int)); | |
751 | static void output_B1_format PARAMS ((vbyte_func, unw_record_type, unsigned long)); | |
752 | static void output_B2_format PARAMS ((vbyte_func, unsigned long, unsigned long)); | |
800eeca4 JW |
753 | static void output_B3_format PARAMS ((vbyte_func, unsigned long, unsigned long)); |
754 | static void output_B4_format PARAMS ((vbyte_func, unw_record_type, unsigned long)); | |
150f24a2 JW |
755 | static char format_ab_reg PARAMS ((int, int)); |
756 | static void output_X1_format PARAMS ((vbyte_func, unw_record_type, int, int, unsigned long, | |
757 | unsigned long)); | |
758 | static void output_X2_format PARAMS ((vbyte_func, int, int, int, int, int, unsigned long)); | |
759 | static void output_X3_format PARAMS ((vbyte_func, unw_record_type, int, int, int, unsigned long, | |
760 | unsigned long)); | |
761 | static void output_X4_format PARAMS ((vbyte_func, int, int, int, int, int, int, unsigned long)); | |
762 | static void free_list_records PARAMS ((unw_rec_list *)); | |
763 | static unw_rec_list *output_prologue PARAMS ((void)); | |
764 | static unw_rec_list *output_prologue_gr PARAMS ((unsigned int, unsigned int)); | |
765 | static unw_rec_list *output_body PARAMS ((void)); | |
766 | static unw_rec_list *output_mem_stack_f PARAMS ((unsigned int)); | |
767 | static unw_rec_list *output_mem_stack_v PARAMS ((void)); | |
768 | static unw_rec_list *output_psp_gr PARAMS ((unsigned int)); | |
769 | static unw_rec_list *output_psp_sprel PARAMS ((unsigned int)); | |
770 | static unw_rec_list *output_rp_when PARAMS ((void)); | |
771 | static unw_rec_list *output_rp_gr PARAMS ((unsigned int)); | |
772 | static unw_rec_list *output_rp_br PARAMS ((unsigned int)); | |
773 | static unw_rec_list *output_rp_psprel PARAMS ((unsigned int)); | |
774 | static unw_rec_list *output_rp_sprel PARAMS ((unsigned int)); | |
775 | static unw_rec_list *output_pfs_when PARAMS ((void)); | |
776 | static unw_rec_list *output_pfs_gr PARAMS ((unsigned int)); | |
777 | static unw_rec_list *output_pfs_psprel PARAMS ((unsigned int)); | |
778 | static unw_rec_list *output_pfs_sprel PARAMS ((unsigned int)); | |
779 | static unw_rec_list *output_preds_when PARAMS ((void)); | |
780 | static unw_rec_list *output_preds_gr PARAMS ((unsigned int)); | |
781 | static unw_rec_list *output_preds_psprel PARAMS ((unsigned int)); | |
782 | static unw_rec_list *output_preds_sprel PARAMS ((unsigned int)); | |
783 | static unw_rec_list *output_fr_mem PARAMS ((unsigned int)); | |
784 | static unw_rec_list *output_frgr_mem PARAMS ((unsigned int, unsigned int)); | |
785 | static unw_rec_list *output_gr_gr PARAMS ((unsigned int, unsigned int)); | |
786 | static unw_rec_list *output_gr_mem PARAMS ((unsigned int)); | |
787 | static unw_rec_list *output_br_mem PARAMS ((unsigned int)); | |
788 | static unw_rec_list *output_br_gr PARAMS ((unsigned int, unsigned int)); | |
789 | static unw_rec_list *output_spill_base PARAMS ((unsigned int)); | |
790 | static unw_rec_list *output_unat_when PARAMS ((void)); | |
791 | static unw_rec_list *output_unat_gr PARAMS ((unsigned int)); | |
792 | static unw_rec_list *output_unat_psprel PARAMS ((unsigned int)); | |
793 | static unw_rec_list *output_unat_sprel PARAMS ((unsigned int)); | |
794 | static unw_rec_list *output_lc_when PARAMS ((void)); | |
795 | static unw_rec_list *output_lc_gr PARAMS ((unsigned int)); | |
796 | static unw_rec_list *output_lc_psprel PARAMS ((unsigned int)); | |
797 | static unw_rec_list *output_lc_sprel PARAMS ((unsigned int)); | |
798 | static unw_rec_list *output_fpsr_when PARAMS ((void)); | |
799 | static unw_rec_list *output_fpsr_gr PARAMS ((unsigned int)); | |
800 | static unw_rec_list *output_fpsr_psprel PARAMS ((unsigned int)); | |
801 | static unw_rec_list *output_fpsr_sprel PARAMS ((unsigned int)); | |
802 | static unw_rec_list *output_priunat_when_gr PARAMS ((void)); | |
803 | static unw_rec_list *output_priunat_when_mem PARAMS ((void)); | |
804 | static unw_rec_list *output_priunat_gr PARAMS ((unsigned int)); | |
805 | static unw_rec_list *output_priunat_psprel PARAMS ((unsigned int)); | |
806 | static unw_rec_list *output_priunat_sprel PARAMS ((unsigned int)); | |
807 | static unw_rec_list *output_bsp_when PARAMS ((void)); | |
808 | static unw_rec_list *output_bsp_gr PARAMS ((unsigned int)); | |
809 | static unw_rec_list *output_bsp_psprel PARAMS ((unsigned int)); | |
810 | static unw_rec_list *output_bsp_sprel PARAMS ((unsigned int)); | |
811 | static unw_rec_list *output_bspstore_when PARAMS ((void)); | |
812 | static unw_rec_list *output_bspstore_gr PARAMS ((unsigned int)); | |
813 | static unw_rec_list *output_bspstore_psprel PARAMS ((unsigned int)); | |
814 | static unw_rec_list *output_bspstore_sprel PARAMS ((unsigned int)); | |
815 | static unw_rec_list *output_rnat_when PARAMS ((void)); | |
816 | static unw_rec_list *output_rnat_gr PARAMS ((unsigned int)); | |
817 | static unw_rec_list *output_rnat_psprel PARAMS ((unsigned int)); | |
818 | static unw_rec_list *output_rnat_sprel PARAMS ((unsigned int)); | |
819 | static unw_rec_list *output_unwabi PARAMS ((unsigned long, unsigned long)); | |
820 | static unw_rec_list *output_epilogue PARAMS ((unsigned long)); | |
821 | static unw_rec_list *output_label_state PARAMS ((unsigned long)); | |
822 | static unw_rec_list *output_copy_state PARAMS ((unsigned long)); | |
823 | static unw_rec_list *output_spill_psprel PARAMS ((unsigned int, unsigned int, unsigned int)); | |
824 | static unw_rec_list *output_spill_sprel PARAMS ((unsigned int, unsigned int, unsigned int)); | |
825 | static unw_rec_list *output_spill_psprel_p PARAMS ((unsigned int, unsigned int, unsigned int, | |
826 | unsigned int)); | |
827 | static unw_rec_list *output_spill_sprel_p PARAMS ((unsigned int, unsigned int, unsigned int, | |
828 | unsigned int)); | |
829 | static unw_rec_list *output_spill_reg PARAMS ((unsigned int, unsigned int, unsigned int, | |
830 | unsigned int)); | |
831 | static unw_rec_list *output_spill_reg_p PARAMS ((unsigned int, unsigned int, unsigned int, | |
832 | unsigned int, unsigned int)); | |
833 | static void process_one_record PARAMS ((unw_rec_list *, vbyte_func)); | |
834 | static void process_unw_records PARAMS ((unw_rec_list *, vbyte_func)); | |
835 | static int calc_record_size PARAMS ((unw_rec_list *)); | |
836 | static void set_imask PARAMS ((unw_rec_list *, unsigned long, unsigned long, unsigned int)); | |
837 | static int count_bits PARAMS ((unsigned long)); | |
f5a30c2e JW |
838 | static unsigned long slot_index PARAMS ((unsigned long, fragS *, |
839 | unsigned long, fragS *)); | |
91a2ae2a | 840 | static unw_rec_list *optimize_unw_records PARAMS ((unw_rec_list *)); |
150f24a2 JW |
841 | static void fixup_unw_records PARAMS ((unw_rec_list *)); |
842 | static int output_unw_records PARAMS ((unw_rec_list *, void **)); | |
843 | static int convert_expr_to_ab_reg PARAMS ((expressionS *, unsigned int *, unsigned int *)); | |
844 | static int convert_expr_to_xy_reg PARAMS ((expressionS *, unsigned int *, unsigned int *)); | |
91a2ae2a RH |
845 | static int generate_unwind_image PARAMS ((const char *)); |
846 | ||
847 | /* Build the unwind section name by appending the (possibly stripped) | |
848 | text section NAME to the unwind PREFIX. The resulting string | |
849 | pointer is assigned to RESULT. The string is allocated on the | |
850 | stack, so this must be a macro... */ | |
851 | #define make_unw_section_name(special, text_name, result) \ | |
852 | { \ | |
853 | char *_prefix = special_section_name[special]; \ | |
854 | size_t _prefix_len = strlen (_prefix), _text_len = strlen (text_name); \ | |
855 | char *_result = alloca (_prefix_len + _text_len + 1); \ | |
856 | memcpy(_result, _prefix, _prefix_len); \ | |
857 | memcpy(_result + _prefix_len, text_name, _text_len); \ | |
858 | _result[_prefix_len + _text_len] = '\0'; \ | |
859 | result = _result; \ | |
860 | } \ | |
861 | while (0) | |
800eeca4 JW |
862 | |
863 | /* Determine if application register REGNUM resides in the integer | |
864 | unit (as opposed to the memory unit). */ | |
865 | static int | |
866 | ar_is_in_integer_unit (reg) | |
867 | int reg; | |
868 | { | |
869 | reg -= REG_AR; | |
870 | ||
871 | return (reg == 64 /* pfs */ | |
872 | || reg == 65 /* lc */ | |
873 | || reg == 66 /* ec */ | |
874 | /* ??? ias accepts and puts these in the integer unit. */ | |
875 | || (reg >= 112 && reg <= 127)); | |
876 | } | |
877 | ||
878 | /* Switch to section NAME and create section if necessary. It's | |
879 | rather ugly that we have to manipulate input_line_pointer but I | |
880 | don't see any other way to accomplish the same thing without | |
881 | changing obj-elf.c (which may be the Right Thing, in the end). */ | |
882 | static void | |
883 | set_section (name) | |
884 | char *name; | |
885 | { | |
886 | char *saved_input_line_pointer; | |
887 | ||
888 | saved_input_line_pointer = input_line_pointer; | |
889 | input_line_pointer = name; | |
890 | obj_elf_section (0); | |
891 | input_line_pointer = saved_input_line_pointer; | |
892 | } | |
893 | ||
894 | /* Map SHF_IA_64_SHORT to SEC_SMALL_DATA. */ | |
895 | ||
896 | flagword | |
897 | ia64_elf_section_flags (flags, attr, type) | |
898 | flagword flags; | |
2434f565 | 899 | int attr, type ATTRIBUTE_UNUSED; |
800eeca4 JW |
900 | { |
901 | if (attr & SHF_IA_64_SHORT) | |
902 | flags |= SEC_SMALL_DATA; | |
903 | return flags; | |
904 | } | |
905 | ||
91a2ae2a RH |
906 | int |
907 | ia64_elf_section_type (str, len) | |
908 | const char *str; | |
909 | size_t len; | |
910 | { | |
911 | len = sizeof (ELF_STRING_ia64_unwind_info) - 1; | |
912 | if (strncmp (str, ELF_STRING_ia64_unwind_info, len) == 0) | |
913 | return SHT_PROGBITS; | |
914 | ||
915 | len = sizeof (ELF_STRING_ia64_unwind) - 1; | |
916 | if (strncmp (str, ELF_STRING_ia64_unwind, len) == 0) | |
917 | return SHT_IA_64_UNWIND; | |
918 | ||
919 | return -1; | |
920 | } | |
921 | ||
800eeca4 JW |
922 | static unsigned int |
923 | set_regstack (ins, locs, outs, rots) | |
924 | unsigned int ins, locs, outs, rots; | |
925 | { | |
542d6675 KH |
926 | /* Size of frame. */ |
927 | unsigned int sof; | |
800eeca4 JW |
928 | |
929 | sof = ins + locs + outs; | |
930 | if (sof > 96) | |
931 | { | |
932 | as_bad ("Size of frame exceeds maximum of 96 registers"); | |
933 | return 0; | |
934 | } | |
935 | if (rots > sof) | |
936 | { | |
937 | as_warn ("Size of rotating registers exceeds frame size"); | |
938 | return 0; | |
939 | } | |
940 | md.in.base = REG_GR + 32; | |
941 | md.loc.base = md.in.base + ins; | |
942 | md.out.base = md.loc.base + locs; | |
943 | ||
944 | md.in.num_regs = ins; | |
945 | md.loc.num_regs = locs; | |
946 | md.out.num_regs = outs; | |
947 | md.rot.num_regs = rots; | |
948 | return sof; | |
949 | } | |
950 | ||
951 | void | |
952 | ia64_flush_insns () | |
953 | { | |
954 | struct label_fix *lfix; | |
955 | segT saved_seg; | |
956 | subsegT saved_subseg; | |
b44b1b85 | 957 | unw_rec_list *ptr; |
800eeca4 JW |
958 | |
959 | if (!md.last_text_seg) | |
960 | return; | |
961 | ||
962 | saved_seg = now_seg; | |
963 | saved_subseg = now_subseg; | |
964 | ||
965 | subseg_set (md.last_text_seg, 0); | |
966 | ||
967 | while (md.num_slots_in_use > 0) | |
968 | emit_one_bundle (); /* force out queued instructions */ | |
969 | ||
970 | /* In case there are labels following the last instruction, resolve | |
542d6675 | 971 | those now: */ |
800eeca4 JW |
972 | for (lfix = CURR_SLOT.label_fixups; lfix; lfix = lfix->next) |
973 | { | |
974 | S_SET_VALUE (lfix->sym, frag_now_fix ()); | |
975 | symbol_set_frag (lfix->sym, frag_now); | |
976 | } | |
977 | CURR_SLOT.label_fixups = 0; | |
f1bcba5b JW |
978 | for (lfix = CURR_SLOT.tag_fixups; lfix; lfix = lfix->next) |
979 | { | |
980 | S_SET_VALUE (lfix->sym, frag_now_fix ()); | |
981 | symbol_set_frag (lfix->sym, frag_now); | |
982 | } | |
983 | CURR_SLOT.tag_fixups = 0; | |
800eeca4 | 984 | |
b44b1b85 JW |
985 | /* In case there are unwind directives following the last instruction, |
986 | resolve those now. We only handle body and prologue directives here. | |
987 | Give an error for others. */ | |
988 | for (ptr = unwind.current_entry; ptr; ptr = ptr->next) | |
989 | { | |
990 | if (ptr->r.type == prologue || ptr->r.type == prologue_gr | |
991 | || ptr->r.type == body) | |
992 | { | |
993 | ptr->slot_number = (unsigned long) frag_more (0); | |
994 | ptr->slot_frag = frag_now; | |
995 | } | |
996 | else | |
997 | as_bad (_("Unwind directive not followed by an instruction.")); | |
998 | } | |
999 | unwind.current_entry = NULL; | |
1000 | ||
800eeca4 | 1001 | subseg_set (saved_seg, saved_subseg); |
f1bcba5b JW |
1002 | |
1003 | if (md.qp.X_op == O_register) | |
1004 | as_bad ("qualifying predicate not followed by instruction"); | |
800eeca4 JW |
1005 | } |
1006 | ||
1007 | void | |
1008 | ia64_do_align (nbytes) | |
1009 | int nbytes; | |
1010 | { | |
1011 | char *saved_input_line_pointer = input_line_pointer; | |
1012 | ||
1013 | input_line_pointer = ""; | |
1014 | s_align_bytes (nbytes); | |
1015 | input_line_pointer = saved_input_line_pointer; | |
1016 | } | |
1017 | ||
1018 | void | |
1019 | ia64_cons_align (nbytes) | |
1020 | int nbytes; | |
1021 | { | |
1022 | if (md.auto_align) | |
1023 | { | |
1024 | char *saved_input_line_pointer = input_line_pointer; | |
1025 | input_line_pointer = ""; | |
1026 | s_align_bytes (nbytes); | |
1027 | input_line_pointer = saved_input_line_pointer; | |
1028 | } | |
1029 | } | |
1030 | ||
1031 | /* Output COUNT bytes to a memory location. */ | |
1032 | static unsigned char *vbyte_mem_ptr = NULL; | |
1033 | ||
197865e8 | 1034 | void |
800eeca4 JW |
1035 | output_vbyte_mem (count, ptr, comment) |
1036 | int count; | |
1037 | char *ptr; | |
2434f565 | 1038 | char *comment ATTRIBUTE_UNUSED; |
800eeca4 JW |
1039 | { |
1040 | int x; | |
1041 | if (vbyte_mem_ptr == NULL) | |
1042 | abort (); | |
1043 | ||
1044 | if (count == 0) | |
1045 | return; | |
1046 | for (x = 0; x < count; x++) | |
1047 | *(vbyte_mem_ptr++) = ptr[x]; | |
1048 | } | |
1049 | ||
1050 | /* Count the number of bytes required for records. */ | |
1051 | static int vbyte_count = 0; | |
197865e8 | 1052 | void |
800eeca4 JW |
1053 | count_output (count, ptr, comment) |
1054 | int count; | |
2434f565 JW |
1055 | char *ptr ATTRIBUTE_UNUSED; |
1056 | char *comment ATTRIBUTE_UNUSED; | |
800eeca4 JW |
1057 | { |
1058 | vbyte_count += count; | |
1059 | } | |
1060 | ||
1061 | static void | |
1062 | output_R1_format (f, rtype, rlen) | |
1063 | vbyte_func f; | |
1064 | unw_record_type rtype; | |
1065 | int rlen; | |
1066 | { | |
e0c9811a | 1067 | int r = 0; |
800eeca4 JW |
1068 | char byte; |
1069 | if (rlen > 0x1f) | |
1070 | { | |
1071 | output_R3_format (f, rtype, rlen); | |
1072 | return; | |
1073 | } | |
197865e8 | 1074 | |
e0c9811a JW |
1075 | if (rtype == body) |
1076 | r = 1; | |
1077 | else if (rtype != prologue) | |
1078 | as_bad ("record type is not valid"); | |
1079 | ||
800eeca4 JW |
1080 | byte = UNW_R1 | (r << 5) | (rlen & 0x1f); |
1081 | (*f) (1, &byte, NULL); | |
1082 | } | |
1083 | ||
1084 | static void | |
1085 | output_R2_format (f, mask, grsave, rlen) | |
1086 | vbyte_func f; | |
1087 | int mask, grsave; | |
1088 | unsigned long rlen; | |
1089 | { | |
1090 | char bytes[20]; | |
1091 | int count = 2; | |
1092 | mask = (mask & 0x0f); | |
1093 | grsave = (grsave & 0x7f); | |
1094 | ||
1095 | bytes[0] = (UNW_R2 | (mask >> 1)); | |
1096 | bytes[1] = (((mask & 0x01) << 7) | grsave); | |
1097 | count += output_leb128 (bytes + 2, rlen, 0); | |
1098 | (*f) (count, bytes, NULL); | |
1099 | } | |
1100 | ||
1101 | static void | |
1102 | output_R3_format (f, rtype, rlen) | |
1103 | vbyte_func f; | |
1104 | unw_record_type rtype; | |
1105 | unsigned long rlen; | |
1106 | { | |
e0c9811a | 1107 | int r = 0, count; |
800eeca4 JW |
1108 | char bytes[20]; |
1109 | if (rlen <= 0x1f) | |
1110 | { | |
1111 | output_R1_format (f, rtype, rlen); | |
1112 | return; | |
1113 | } | |
197865e8 | 1114 | |
e0c9811a JW |
1115 | if (rtype == body) |
1116 | r = 1; | |
1117 | else if (rtype != prologue) | |
1118 | as_bad ("record type is not valid"); | |
800eeca4 JW |
1119 | bytes[0] = (UNW_R3 | r); |
1120 | count = output_leb128 (bytes + 1, rlen, 0); | |
1121 | (*f) (count + 1, bytes, NULL); | |
1122 | } | |
1123 | ||
1124 | static void | |
1125 | output_P1_format (f, brmask) | |
1126 | vbyte_func f; | |
1127 | int brmask; | |
1128 | { | |
1129 | char byte; | |
1130 | byte = UNW_P1 | (brmask & 0x1f); | |
1131 | (*f) (1, &byte, NULL); | |
1132 | } | |
1133 | ||
1134 | static void | |
1135 | output_P2_format (f, brmask, gr) | |
1136 | vbyte_func f; | |
1137 | int brmask; | |
1138 | int gr; | |
1139 | { | |
1140 | char bytes[2]; | |
1141 | brmask = (brmask & 0x1f); | |
1142 | bytes[0] = UNW_P2 | (brmask >> 1); | |
1143 | bytes[1] = (((brmask & 1) << 7) | gr); | |
1144 | (*f) (2, bytes, NULL); | |
1145 | } | |
1146 | ||
1147 | static void | |
1148 | output_P3_format (f, rtype, reg) | |
1149 | vbyte_func f; | |
1150 | unw_record_type rtype; | |
1151 | int reg; | |
1152 | { | |
1153 | char bytes[2]; | |
e0c9811a | 1154 | int r = 0; |
800eeca4 JW |
1155 | reg = (reg & 0x7f); |
1156 | switch (rtype) | |
542d6675 | 1157 | { |
800eeca4 JW |
1158 | case psp_gr: |
1159 | r = 0; | |
1160 | break; | |
1161 | case rp_gr: | |
1162 | r = 1; | |
1163 | break; | |
1164 | case pfs_gr: | |
1165 | r = 2; | |
1166 | break; | |
1167 | case preds_gr: | |
1168 | r = 3; | |
1169 | break; | |
1170 | case unat_gr: | |
1171 | r = 4; | |
1172 | break; | |
1173 | case lc_gr: | |
1174 | r = 5; | |
1175 | break; | |
1176 | case rp_br: | |
1177 | r = 6; | |
1178 | break; | |
1179 | case rnat_gr: | |
1180 | r = 7; | |
1181 | break; | |
1182 | case bsp_gr: | |
1183 | r = 8; | |
1184 | break; | |
1185 | case bspstore_gr: | |
1186 | r = 9; | |
1187 | break; | |
1188 | case fpsr_gr: | |
1189 | r = 10; | |
1190 | break; | |
1191 | case priunat_gr: | |
1192 | r = 11; | |
1193 | break; | |
1194 | default: | |
1195 | as_bad ("Invalid record type for P3 format."); | |
542d6675 | 1196 | } |
800eeca4 JW |
1197 | bytes[0] = (UNW_P3 | (r >> 1)); |
1198 | bytes[1] = (((r & 1) << 7) | reg); | |
1199 | (*f) (2, bytes, NULL); | |
1200 | } | |
1201 | ||
800eeca4 | 1202 | static void |
e0c9811a | 1203 | output_P4_format (f, imask, imask_size) |
800eeca4 | 1204 | vbyte_func f; |
e0c9811a JW |
1205 | unsigned char *imask; |
1206 | unsigned long imask_size; | |
800eeca4 | 1207 | { |
e0c9811a JW |
1208 | imask[0] = UNW_P4; |
1209 | (*f) (imask_size, imask, NULL); | |
800eeca4 JW |
1210 | } |
1211 | ||
1212 | static void | |
1213 | output_P5_format (f, grmask, frmask) | |
1214 | vbyte_func f; | |
1215 | int grmask; | |
1216 | unsigned long frmask; | |
1217 | { | |
1218 | char bytes[4]; | |
1219 | grmask = (grmask & 0x0f); | |
1220 | ||
1221 | bytes[0] = UNW_P5; | |
1222 | bytes[1] = ((grmask << 4) | ((frmask & 0x000f0000) >> 16)); | |
1223 | bytes[2] = ((frmask & 0x0000ff00) >> 8); | |
1224 | bytes[3] = (frmask & 0x000000ff); | |
1225 | (*f) (4, bytes, NULL); | |
1226 | } | |
1227 | ||
1228 | static void | |
1229 | output_P6_format (f, rtype, rmask) | |
1230 | vbyte_func f; | |
1231 | unw_record_type rtype; | |
1232 | int rmask; | |
1233 | { | |
1234 | char byte; | |
e0c9811a | 1235 | int r = 0; |
197865e8 | 1236 | |
e0c9811a JW |
1237 | if (rtype == gr_mem) |
1238 | r = 1; | |
1239 | else if (rtype != fr_mem) | |
1240 | as_bad ("Invalid record type for format P6"); | |
800eeca4 JW |
1241 | byte = (UNW_P6 | (r << 4) | (rmask & 0x0f)); |
1242 | (*f) (1, &byte, NULL); | |
1243 | } | |
1244 | ||
1245 | static void | |
1246 | output_P7_format (f, rtype, w1, w2) | |
1247 | vbyte_func f; | |
1248 | unw_record_type rtype; | |
1249 | unsigned long w1; | |
1250 | unsigned long w2; | |
1251 | { | |
1252 | char bytes[20]; | |
1253 | int count = 1; | |
e0c9811a | 1254 | int r = 0; |
800eeca4 JW |
1255 | count += output_leb128 (bytes + 1, w1, 0); |
1256 | switch (rtype) | |
1257 | { | |
542d6675 KH |
1258 | case mem_stack_f: |
1259 | r = 0; | |
1260 | count += output_leb128 (bytes + count, w2 >> 4, 0); | |
1261 | break; | |
1262 | case mem_stack_v: | |
1263 | r = 1; | |
1264 | break; | |
1265 | case spill_base: | |
1266 | r = 2; | |
1267 | break; | |
1268 | case psp_sprel: | |
1269 | r = 3; | |
1270 | break; | |
1271 | case rp_when: | |
1272 | r = 4; | |
1273 | break; | |
1274 | case rp_psprel: | |
1275 | r = 5; | |
1276 | break; | |
1277 | case pfs_when: | |
1278 | r = 6; | |
1279 | break; | |
1280 | case pfs_psprel: | |
1281 | r = 7; | |
1282 | break; | |
1283 | case preds_when: | |
1284 | r = 8; | |
1285 | break; | |
1286 | case preds_psprel: | |
1287 | r = 9; | |
1288 | break; | |
1289 | case lc_when: | |
1290 | r = 10; | |
1291 | break; | |
1292 | case lc_psprel: | |
1293 | r = 11; | |
1294 | break; | |
1295 | case unat_when: | |
1296 | r = 12; | |
1297 | break; | |
1298 | case unat_psprel: | |
1299 | r = 13; | |
1300 | break; | |
1301 | case fpsr_when: | |
1302 | r = 14; | |
1303 | break; | |
1304 | case fpsr_psprel: | |
1305 | r = 15; | |
1306 | break; | |
1307 | default: | |
1308 | break; | |
800eeca4 JW |
1309 | } |
1310 | bytes[0] = (UNW_P7 | r); | |
1311 | (*f) (count, bytes, NULL); | |
1312 | } | |
1313 | ||
1314 | static void | |
1315 | output_P8_format (f, rtype, t) | |
1316 | vbyte_func f; | |
1317 | unw_record_type rtype; | |
1318 | unsigned long t; | |
1319 | { | |
1320 | char bytes[20]; | |
e0c9811a | 1321 | int r = 0; |
800eeca4 JW |
1322 | int count = 2; |
1323 | bytes[0] = UNW_P8; | |
1324 | switch (rtype) | |
1325 | { | |
542d6675 KH |
1326 | case rp_sprel: |
1327 | r = 1; | |
1328 | break; | |
1329 | case pfs_sprel: | |
1330 | r = 2; | |
1331 | break; | |
1332 | case preds_sprel: | |
1333 | r = 3; | |
1334 | break; | |
1335 | case lc_sprel: | |
1336 | r = 4; | |
1337 | break; | |
1338 | case unat_sprel: | |
1339 | r = 5; | |
1340 | break; | |
1341 | case fpsr_sprel: | |
1342 | r = 6; | |
1343 | break; | |
1344 | case bsp_when: | |
1345 | r = 7; | |
1346 | break; | |
1347 | case bsp_psprel: | |
1348 | r = 8; | |
1349 | break; | |
1350 | case bsp_sprel: | |
1351 | r = 9; | |
1352 | break; | |
1353 | case bspstore_when: | |
1354 | r = 10; | |
1355 | break; | |
1356 | case bspstore_psprel: | |
1357 | r = 11; | |
1358 | break; | |
1359 | case bspstore_sprel: | |
1360 | r = 12; | |
1361 | break; | |
1362 | case rnat_when: | |
1363 | r = 13; | |
1364 | break; | |
1365 | case rnat_psprel: | |
1366 | r = 14; | |
1367 | break; | |
1368 | case rnat_sprel: | |
1369 | r = 15; | |
1370 | break; | |
1371 | case priunat_when_gr: | |
1372 | r = 16; | |
1373 | break; | |
1374 | case priunat_psprel: | |
1375 | r = 17; | |
1376 | break; | |
1377 | case priunat_sprel: | |
1378 | r = 18; | |
1379 | break; | |
1380 | case priunat_when_mem: | |
1381 | r = 19; | |
1382 | break; | |
1383 | default: | |
1384 | break; | |
800eeca4 JW |
1385 | } |
1386 | bytes[1] = r; | |
1387 | count += output_leb128 (bytes + 2, t, 0); | |
1388 | (*f) (count, bytes, NULL); | |
1389 | } | |
1390 | ||
1391 | static void | |
1392 | output_P9_format (f, grmask, gr) | |
1393 | vbyte_func f; | |
1394 | int grmask; | |
1395 | int gr; | |
1396 | { | |
1397 | char bytes[3]; | |
1398 | bytes[0] = UNW_P9; | |
1399 | bytes[1] = (grmask & 0x0f); | |
1400 | bytes[2] = (gr & 0x7f); | |
1401 | (*f) (3, bytes, NULL); | |
1402 | } | |
1403 | ||
1404 | static void | |
1405 | output_P10_format (f, abi, context) | |
1406 | vbyte_func f; | |
1407 | int abi; | |
1408 | int context; | |
1409 | { | |
1410 | char bytes[3]; | |
1411 | bytes[0] = UNW_P10; | |
1412 | bytes[1] = (abi & 0xff); | |
1413 | bytes[2] = (context & 0xff); | |
1414 | (*f) (3, bytes, NULL); | |
1415 | } | |
1416 | ||
1417 | static void | |
1418 | output_B1_format (f, rtype, label) | |
1419 | vbyte_func f; | |
1420 | unw_record_type rtype; | |
1421 | unsigned long label; | |
1422 | { | |
1423 | char byte; | |
e0c9811a | 1424 | int r = 0; |
197865e8 | 1425 | if (label > 0x1f) |
800eeca4 JW |
1426 | { |
1427 | output_B4_format (f, rtype, label); | |
1428 | return; | |
1429 | } | |
e0c9811a JW |
1430 | if (rtype == copy_state) |
1431 | r = 1; | |
1432 | else if (rtype != label_state) | |
1433 | as_bad ("Invalid record type for format B1"); | |
800eeca4 JW |
1434 | |
1435 | byte = (UNW_B1 | (r << 5) | (label & 0x1f)); | |
1436 | (*f) (1, &byte, NULL); | |
1437 | } | |
1438 | ||
1439 | static void | |
1440 | output_B2_format (f, ecount, t) | |
1441 | vbyte_func f; | |
1442 | unsigned long ecount; | |
1443 | unsigned long t; | |
1444 | { | |
1445 | char bytes[20]; | |
1446 | int count = 1; | |
1447 | if (ecount > 0x1f) | |
1448 | { | |
1449 | output_B3_format (f, ecount, t); | |
1450 | return; | |
1451 | } | |
1452 | bytes[0] = (UNW_B2 | (ecount & 0x1f)); | |
1453 | count += output_leb128 (bytes + 1, t, 0); | |
1454 | (*f) (count, bytes, NULL); | |
1455 | } | |
1456 | ||
1457 | static void | |
1458 | output_B3_format (f, ecount, t) | |
1459 | vbyte_func f; | |
1460 | unsigned long ecount; | |
1461 | unsigned long t; | |
1462 | { | |
1463 | char bytes[20]; | |
1464 | int count = 1; | |
1465 | if (ecount <= 0x1f) | |
1466 | { | |
1467 | output_B2_format (f, ecount, t); | |
1468 | return; | |
1469 | } | |
1470 | bytes[0] = UNW_B3; | |
1471 | count += output_leb128 (bytes + 1, t, 0); | |
1472 | count += output_leb128 (bytes + count, ecount, 0); | |
1473 | (*f) (count, bytes, NULL); | |
1474 | } | |
1475 | ||
1476 | static void | |
1477 | output_B4_format (f, rtype, label) | |
1478 | vbyte_func f; | |
1479 | unw_record_type rtype; | |
1480 | unsigned long label; | |
1481 | { | |
1482 | char bytes[20]; | |
e0c9811a | 1483 | int r = 0; |
800eeca4 | 1484 | int count = 1; |
197865e8 | 1485 | if (label <= 0x1f) |
800eeca4 JW |
1486 | { |
1487 | output_B1_format (f, rtype, label); | |
1488 | return; | |
1489 | } | |
197865e8 | 1490 | |
e0c9811a JW |
1491 | if (rtype == copy_state) |
1492 | r = 1; | |
1493 | else if (rtype != label_state) | |
1494 | as_bad ("Invalid record type for format B1"); | |
800eeca4 JW |
1495 | |
1496 | bytes[0] = (UNW_B4 | (r << 3)); | |
1497 | count += output_leb128 (bytes + 1, label, 0); | |
1498 | (*f) (count, bytes, NULL); | |
1499 | } | |
1500 | ||
1501 | static char | |
e0c9811a | 1502 | format_ab_reg (ab, reg) |
542d6675 KH |
1503 | int ab; |
1504 | int reg; | |
800eeca4 JW |
1505 | { |
1506 | int ret; | |
e0c9811a | 1507 | ab = (ab & 3); |
800eeca4 | 1508 | reg = (reg & 0x1f); |
e0c9811a | 1509 | ret = (ab << 5) | reg; |
800eeca4 JW |
1510 | return ret; |
1511 | } | |
1512 | ||
1513 | static void | |
e0c9811a | 1514 | output_X1_format (f, rtype, ab, reg, t, w1) |
800eeca4 JW |
1515 | vbyte_func f; |
1516 | unw_record_type rtype; | |
e0c9811a | 1517 | int ab, reg; |
800eeca4 JW |
1518 | unsigned long t; |
1519 | unsigned long w1; | |
1520 | { | |
1521 | char bytes[20]; | |
e0c9811a | 1522 | int r = 0; |
800eeca4 JW |
1523 | int count = 2; |
1524 | bytes[0] = UNW_X1; | |
197865e8 | 1525 | |
e0c9811a JW |
1526 | if (rtype == spill_sprel) |
1527 | r = 1; | |
1528 | else if (rtype != spill_psprel) | |
1529 | as_bad ("Invalid record type for format X1"); | |
1530 | bytes[1] = ((r << 7) | format_ab_reg (ab, reg)); | |
800eeca4 JW |
1531 | count += output_leb128 (bytes + 2, t, 0); |
1532 | count += output_leb128 (bytes + count, w1, 0); | |
1533 | (*f) (count, bytes, NULL); | |
1534 | } | |
1535 | ||
1536 | static void | |
e0c9811a | 1537 | output_X2_format (f, ab, reg, x, y, treg, t) |
800eeca4 | 1538 | vbyte_func f; |
e0c9811a | 1539 | int ab, reg; |
800eeca4 JW |
1540 | int x, y, treg; |
1541 | unsigned long t; | |
1542 | { | |
1543 | char bytes[20]; | |
800eeca4 JW |
1544 | int count = 3; |
1545 | bytes[0] = UNW_X2; | |
e0c9811a | 1546 | bytes[1] = (((x & 1) << 7) | format_ab_reg (ab, reg)); |
800eeca4 JW |
1547 | bytes[2] = (((y & 1) << 7) | (treg & 0x7f)); |
1548 | count += output_leb128 (bytes + 3, t, 0); | |
1549 | (*f) (count, bytes, NULL); | |
1550 | } | |
1551 | ||
1552 | static void | |
e0c9811a | 1553 | output_X3_format (f, rtype, qp, ab, reg, t, w1) |
800eeca4 JW |
1554 | vbyte_func f; |
1555 | unw_record_type rtype; | |
1556 | int qp; | |
e0c9811a | 1557 | int ab, reg; |
800eeca4 JW |
1558 | unsigned long t; |
1559 | unsigned long w1; | |
1560 | { | |
1561 | char bytes[20]; | |
e0c9811a | 1562 | int r = 0; |
800eeca4 | 1563 | int count = 3; |
e0c9811a JW |
1564 | bytes[0] = UNW_X3; |
1565 | ||
1566 | if (rtype == spill_sprel_p) | |
1567 | r = 1; | |
1568 | else if (rtype != spill_psprel_p) | |
1569 | as_bad ("Invalid record type for format X3"); | |
800eeca4 | 1570 | bytes[1] = ((r << 7) | (qp & 0x3f)); |
e0c9811a | 1571 | bytes[2] = format_ab_reg (ab, reg); |
800eeca4 JW |
1572 | count += output_leb128 (bytes + 3, t, 0); |
1573 | count += output_leb128 (bytes + count, w1, 0); | |
1574 | (*f) (count, bytes, NULL); | |
1575 | } | |
1576 | ||
1577 | static void | |
e0c9811a | 1578 | output_X4_format (f, qp, ab, reg, x, y, treg, t) |
800eeca4 JW |
1579 | vbyte_func f; |
1580 | int qp; | |
e0c9811a | 1581 | int ab, reg; |
800eeca4 JW |
1582 | int x, y, treg; |
1583 | unsigned long t; | |
1584 | { | |
1585 | char bytes[20]; | |
800eeca4 | 1586 | int count = 4; |
e0c9811a | 1587 | bytes[0] = UNW_X4; |
800eeca4 | 1588 | bytes[1] = (qp & 0x3f); |
e0c9811a | 1589 | bytes[2] = (((x & 1) << 7) | format_ab_reg (ab, reg)); |
800eeca4 JW |
1590 | bytes[3] = (((y & 1) << 7) | (treg & 0x7f)); |
1591 | count += output_leb128 (bytes + 4, t, 0); | |
1592 | (*f) (count, bytes, NULL); | |
1593 | } | |
1594 | ||
1595 | /* This function allocates a record list structure, and initializes fields. */ | |
542d6675 | 1596 | |
800eeca4 | 1597 | static unw_rec_list * |
197865e8 | 1598 | alloc_record (unw_record_type t) |
800eeca4 JW |
1599 | { |
1600 | unw_rec_list *ptr; | |
1601 | ptr = xmalloc (sizeof (*ptr)); | |
1602 | ptr->next = NULL; | |
1603 | ptr->slot_number = SLOT_NUM_NOT_SET; | |
1604 | ptr->r.type = t; | |
1605 | return ptr; | |
1606 | } | |
1607 | ||
800eeca4 | 1608 | /* This function frees an entire list of record structures. */ |
542d6675 | 1609 | |
800eeca4 JW |
1610 | void |
1611 | free_list_records (unw_rec_list *first) | |
1612 | { | |
1613 | unw_rec_list *ptr; | |
542d6675 | 1614 | for (ptr = first; ptr != NULL;) |
800eeca4 JW |
1615 | { |
1616 | unw_rec_list *tmp = ptr; | |
e0c9811a JW |
1617 | |
1618 | if ((tmp->r.type == prologue || tmp->r.type == prologue_gr) | |
1619 | && tmp->r.record.r.mask.i) | |
1620 | free (tmp->r.record.r.mask.i); | |
1621 | ||
800eeca4 JW |
1622 | ptr = ptr->next; |
1623 | free (tmp); | |
1624 | } | |
1625 | } | |
1626 | ||
1627 | static unw_rec_list * | |
1628 | output_prologue () | |
1629 | { | |
1630 | unw_rec_list *ptr = alloc_record (prologue); | |
e0c9811a | 1631 | memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask)); |
800eeca4 JW |
1632 | return ptr; |
1633 | } | |
1634 | ||
1635 | static unw_rec_list * | |
1636 | output_prologue_gr (saved_mask, reg) | |
1637 | unsigned int saved_mask; | |
1638 | unsigned int reg; | |
1639 | { | |
1640 | unw_rec_list *ptr = alloc_record (prologue_gr); | |
e0c9811a JW |
1641 | memset (&ptr->r.record.r.mask, 0, sizeof (ptr->r.record.r.mask)); |
1642 | ptr->r.record.r.grmask = saved_mask; | |
800eeca4 JW |
1643 | ptr->r.record.r.grsave = reg; |
1644 | return ptr; | |
1645 | } | |
1646 | ||
1647 | static unw_rec_list * | |
1648 | output_body () | |
1649 | { | |
1650 | unw_rec_list *ptr = alloc_record (body); | |
1651 | return ptr; | |
1652 | } | |
1653 | ||
1654 | static unw_rec_list * | |
1655 | output_mem_stack_f (size) | |
1656 | unsigned int size; | |
1657 | { | |
1658 | unw_rec_list *ptr = alloc_record (mem_stack_f); | |
1659 | ptr->r.record.p.size = size; | |
1660 | return ptr; | |
1661 | } | |
1662 | ||
1663 | static unw_rec_list * | |
1664 | output_mem_stack_v () | |
1665 | { | |
1666 | unw_rec_list *ptr = alloc_record (mem_stack_v); | |
1667 | return ptr; | |
1668 | } | |
1669 | ||
1670 | static unw_rec_list * | |
1671 | output_psp_gr (gr) | |
1672 | unsigned int gr; | |
1673 | { | |
1674 | unw_rec_list *ptr = alloc_record (psp_gr); | |
1675 | ptr->r.record.p.gr = gr; | |
1676 | return ptr; | |
1677 | } | |
1678 | ||
1679 | static unw_rec_list * | |
1680 | output_psp_sprel (offset) | |
1681 | unsigned int offset; | |
1682 | { | |
1683 | unw_rec_list *ptr = alloc_record (psp_sprel); | |
542d6675 | 1684 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1685 | return ptr; |
1686 | } | |
1687 | ||
1688 | static unw_rec_list * | |
1689 | output_rp_when () | |
1690 | { | |
1691 | unw_rec_list *ptr = alloc_record (rp_when); | |
1692 | return ptr; | |
1693 | } | |
1694 | ||
1695 | static unw_rec_list * | |
1696 | output_rp_gr (gr) | |
1697 | unsigned int gr; | |
1698 | { | |
1699 | unw_rec_list *ptr = alloc_record (rp_gr); | |
1700 | ptr->r.record.p.gr = gr; | |
1701 | return ptr; | |
1702 | } | |
1703 | ||
1704 | static unw_rec_list * | |
1705 | output_rp_br (br) | |
1706 | unsigned int br; | |
1707 | { | |
1708 | unw_rec_list *ptr = alloc_record (rp_br); | |
1709 | ptr->r.record.p.br = br; | |
1710 | return ptr; | |
1711 | } | |
1712 | ||
1713 | static unw_rec_list * | |
1714 | output_rp_psprel (offset) | |
1715 | unsigned int offset; | |
1716 | { | |
1717 | unw_rec_list *ptr = alloc_record (rp_psprel); | |
542d6675 | 1718 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1719 | return ptr; |
1720 | } | |
1721 | ||
1722 | static unw_rec_list * | |
1723 | output_rp_sprel (offset) | |
1724 | unsigned int offset; | |
1725 | { | |
1726 | unw_rec_list *ptr = alloc_record (rp_sprel); | |
542d6675 | 1727 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1728 | return ptr; |
1729 | } | |
1730 | ||
1731 | static unw_rec_list * | |
1732 | output_pfs_when () | |
1733 | { | |
1734 | unw_rec_list *ptr = alloc_record (pfs_when); | |
1735 | return ptr; | |
1736 | } | |
1737 | ||
1738 | static unw_rec_list * | |
1739 | output_pfs_gr (gr) | |
1740 | unsigned int gr; | |
1741 | { | |
1742 | unw_rec_list *ptr = alloc_record (pfs_gr); | |
1743 | ptr->r.record.p.gr = gr; | |
1744 | return ptr; | |
1745 | } | |
1746 | ||
1747 | static unw_rec_list * | |
1748 | output_pfs_psprel (offset) | |
1749 | unsigned int offset; | |
1750 | { | |
1751 | unw_rec_list *ptr = alloc_record (pfs_psprel); | |
542d6675 | 1752 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1753 | return ptr; |
1754 | } | |
1755 | ||
1756 | static unw_rec_list * | |
1757 | output_pfs_sprel (offset) | |
1758 | unsigned int offset; | |
1759 | { | |
1760 | unw_rec_list *ptr = alloc_record (pfs_sprel); | |
542d6675 | 1761 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1762 | return ptr; |
1763 | } | |
1764 | ||
1765 | static unw_rec_list * | |
1766 | output_preds_when () | |
1767 | { | |
1768 | unw_rec_list *ptr = alloc_record (preds_when); | |
1769 | return ptr; | |
1770 | } | |
1771 | ||
1772 | static unw_rec_list * | |
1773 | output_preds_gr (gr) | |
1774 | unsigned int gr; | |
1775 | { | |
1776 | unw_rec_list *ptr = alloc_record (preds_gr); | |
1777 | ptr->r.record.p.gr = gr; | |
1778 | return ptr; | |
1779 | } | |
1780 | ||
1781 | static unw_rec_list * | |
1782 | output_preds_psprel (offset) | |
1783 | unsigned int offset; | |
1784 | { | |
1785 | unw_rec_list *ptr = alloc_record (preds_psprel); | |
542d6675 | 1786 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1787 | return ptr; |
1788 | } | |
1789 | ||
1790 | static unw_rec_list * | |
1791 | output_preds_sprel (offset) | |
1792 | unsigned int offset; | |
1793 | { | |
1794 | unw_rec_list *ptr = alloc_record (preds_sprel); | |
542d6675 | 1795 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1796 | return ptr; |
1797 | } | |
1798 | ||
1799 | static unw_rec_list * | |
1800 | output_fr_mem (mask) | |
1801 | unsigned int mask; | |
1802 | { | |
1803 | unw_rec_list *ptr = alloc_record (fr_mem); | |
1804 | ptr->r.record.p.rmask = mask; | |
1805 | return ptr; | |
1806 | } | |
1807 | ||
1808 | static unw_rec_list * | |
1809 | output_frgr_mem (gr_mask, fr_mask) | |
1810 | unsigned int gr_mask; | |
1811 | unsigned int fr_mask; | |
1812 | { | |
1813 | unw_rec_list *ptr = alloc_record (frgr_mem); | |
1814 | ptr->r.record.p.grmask = gr_mask; | |
1815 | ptr->r.record.p.frmask = fr_mask; | |
1816 | return ptr; | |
1817 | } | |
1818 | ||
1819 | static unw_rec_list * | |
1820 | output_gr_gr (mask, reg) | |
1821 | unsigned int mask; | |
1822 | unsigned int reg; | |
1823 | { | |
1824 | unw_rec_list *ptr = alloc_record (gr_gr); | |
1825 | ptr->r.record.p.grmask = mask; | |
1826 | ptr->r.record.p.gr = reg; | |
1827 | return ptr; | |
1828 | } | |
1829 | ||
1830 | static unw_rec_list * | |
1831 | output_gr_mem (mask) | |
1832 | unsigned int mask; | |
1833 | { | |
1834 | unw_rec_list *ptr = alloc_record (gr_mem); | |
1835 | ptr->r.record.p.rmask = mask; | |
1836 | return ptr; | |
1837 | } | |
1838 | ||
1839 | static unw_rec_list * | |
1840 | output_br_mem (unsigned int mask) | |
1841 | { | |
1842 | unw_rec_list *ptr = alloc_record (br_mem); | |
1843 | ptr->r.record.p.brmask = mask; | |
1844 | return ptr; | |
1845 | } | |
1846 | ||
1847 | static unw_rec_list * | |
1848 | output_br_gr (save_mask, reg) | |
1849 | unsigned int save_mask; | |
1850 | unsigned int reg; | |
1851 | { | |
1852 | unw_rec_list *ptr = alloc_record (br_gr); | |
1853 | ptr->r.record.p.brmask = save_mask; | |
1854 | ptr->r.record.p.gr = reg; | |
1855 | return ptr; | |
1856 | } | |
1857 | ||
1858 | static unw_rec_list * | |
1859 | output_spill_base (offset) | |
1860 | unsigned int offset; | |
1861 | { | |
1862 | unw_rec_list *ptr = alloc_record (spill_base); | |
542d6675 | 1863 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1864 | return ptr; |
1865 | } | |
1866 | ||
1867 | static unw_rec_list * | |
1868 | output_unat_when () | |
1869 | { | |
1870 | unw_rec_list *ptr = alloc_record (unat_when); | |
1871 | return ptr; | |
1872 | } | |
1873 | ||
1874 | static unw_rec_list * | |
1875 | output_unat_gr (gr) | |
1876 | unsigned int gr; | |
1877 | { | |
1878 | unw_rec_list *ptr = alloc_record (unat_gr); | |
1879 | ptr->r.record.p.gr = gr; | |
1880 | return ptr; | |
1881 | } | |
1882 | ||
1883 | static unw_rec_list * | |
1884 | output_unat_psprel (offset) | |
1885 | unsigned int offset; | |
1886 | { | |
1887 | unw_rec_list *ptr = alloc_record (unat_psprel); | |
542d6675 | 1888 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1889 | return ptr; |
1890 | } | |
1891 | ||
1892 | static unw_rec_list * | |
1893 | output_unat_sprel (offset) | |
1894 | unsigned int offset; | |
1895 | { | |
1896 | unw_rec_list *ptr = alloc_record (unat_sprel); | |
542d6675 | 1897 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1898 | return ptr; |
1899 | } | |
1900 | ||
1901 | static unw_rec_list * | |
1902 | output_lc_when () | |
1903 | { | |
1904 | unw_rec_list *ptr = alloc_record (lc_when); | |
1905 | return ptr; | |
1906 | } | |
1907 | ||
1908 | static unw_rec_list * | |
1909 | output_lc_gr (gr) | |
1910 | unsigned int gr; | |
1911 | { | |
1912 | unw_rec_list *ptr = alloc_record (lc_gr); | |
1913 | ptr->r.record.p.gr = gr; | |
1914 | return ptr; | |
1915 | } | |
1916 | ||
1917 | static unw_rec_list * | |
1918 | output_lc_psprel (offset) | |
1919 | unsigned int offset; | |
1920 | { | |
1921 | unw_rec_list *ptr = alloc_record (lc_psprel); | |
542d6675 | 1922 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1923 | return ptr; |
1924 | } | |
1925 | ||
1926 | static unw_rec_list * | |
1927 | output_lc_sprel (offset) | |
1928 | unsigned int offset; | |
1929 | { | |
1930 | unw_rec_list *ptr = alloc_record (lc_sprel); | |
542d6675 | 1931 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1932 | return ptr; |
1933 | } | |
1934 | ||
1935 | static unw_rec_list * | |
1936 | output_fpsr_when () | |
1937 | { | |
1938 | unw_rec_list *ptr = alloc_record (fpsr_when); | |
1939 | return ptr; | |
1940 | } | |
1941 | ||
1942 | static unw_rec_list * | |
1943 | output_fpsr_gr (gr) | |
1944 | unsigned int gr; | |
1945 | { | |
1946 | unw_rec_list *ptr = alloc_record (fpsr_gr); | |
1947 | ptr->r.record.p.gr = gr; | |
1948 | return ptr; | |
1949 | } | |
1950 | ||
1951 | static unw_rec_list * | |
1952 | output_fpsr_psprel (offset) | |
1953 | unsigned int offset; | |
1954 | { | |
1955 | unw_rec_list *ptr = alloc_record (fpsr_psprel); | |
542d6675 | 1956 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1957 | return ptr; |
1958 | } | |
1959 | ||
1960 | static unw_rec_list * | |
1961 | output_fpsr_sprel (offset) | |
1962 | unsigned int offset; | |
1963 | { | |
1964 | unw_rec_list *ptr = alloc_record (fpsr_sprel); | |
542d6675 | 1965 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
1966 | return ptr; |
1967 | } | |
1968 | ||
1969 | static unw_rec_list * | |
1970 | output_priunat_when_gr () | |
1971 | { | |
1972 | unw_rec_list *ptr = alloc_record (priunat_when_gr); | |
1973 | return ptr; | |
1974 | } | |
1975 | ||
1976 | static unw_rec_list * | |
1977 | output_priunat_when_mem () | |
1978 | { | |
1979 | unw_rec_list *ptr = alloc_record (priunat_when_mem); | |
1980 | return ptr; | |
1981 | } | |
1982 | ||
1983 | static unw_rec_list * | |
1984 | output_priunat_gr (gr) | |
1985 | unsigned int gr; | |
1986 | { | |
1987 | unw_rec_list *ptr = alloc_record (priunat_gr); | |
1988 | ptr->r.record.p.gr = gr; | |
1989 | return ptr; | |
1990 | } | |
1991 | ||
1992 | static unw_rec_list * | |
1993 | output_priunat_psprel (offset) | |
1994 | unsigned int offset; | |
1995 | { | |
1996 | unw_rec_list *ptr = alloc_record (priunat_psprel); | |
542d6675 | 1997 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
1998 | return ptr; |
1999 | } | |
2000 | ||
2001 | static unw_rec_list * | |
2002 | output_priunat_sprel (offset) | |
2003 | unsigned int offset; | |
2004 | { | |
2005 | unw_rec_list *ptr = alloc_record (priunat_sprel); | |
542d6675 | 2006 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
2007 | return ptr; |
2008 | } | |
2009 | ||
2010 | static unw_rec_list * | |
2011 | output_bsp_when () | |
2012 | { | |
2013 | unw_rec_list *ptr = alloc_record (bsp_when); | |
2014 | return ptr; | |
2015 | } | |
2016 | ||
2017 | static unw_rec_list * | |
2018 | output_bsp_gr (gr) | |
2019 | unsigned int gr; | |
2020 | { | |
2021 | unw_rec_list *ptr = alloc_record (bsp_gr); | |
2022 | ptr->r.record.p.gr = gr; | |
2023 | return ptr; | |
2024 | } | |
2025 | ||
2026 | static unw_rec_list * | |
2027 | output_bsp_psprel (offset) | |
2028 | unsigned int offset; | |
2029 | { | |
2030 | unw_rec_list *ptr = alloc_record (bsp_psprel); | |
542d6675 | 2031 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
2032 | return ptr; |
2033 | } | |
2034 | ||
2035 | static unw_rec_list * | |
2036 | output_bsp_sprel (offset) | |
2037 | unsigned int offset; | |
2038 | { | |
2039 | unw_rec_list *ptr = alloc_record (bsp_sprel); | |
542d6675 | 2040 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
2041 | return ptr; |
2042 | } | |
2043 | ||
2044 | static unw_rec_list * | |
2045 | output_bspstore_when () | |
2046 | { | |
2047 | unw_rec_list *ptr = alloc_record (bspstore_when); | |
2048 | return ptr; | |
2049 | } | |
2050 | ||
2051 | static unw_rec_list * | |
2052 | output_bspstore_gr (gr) | |
2053 | unsigned int gr; | |
2054 | { | |
2055 | unw_rec_list *ptr = alloc_record (bspstore_gr); | |
2056 | ptr->r.record.p.gr = gr; | |
2057 | return ptr; | |
2058 | } | |
2059 | ||
2060 | static unw_rec_list * | |
2061 | output_bspstore_psprel (offset) | |
2062 | unsigned int offset; | |
2063 | { | |
2064 | unw_rec_list *ptr = alloc_record (bspstore_psprel); | |
542d6675 | 2065 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
2066 | return ptr; |
2067 | } | |
2068 | ||
2069 | static unw_rec_list * | |
2070 | output_bspstore_sprel (offset) | |
2071 | unsigned int offset; | |
2072 | { | |
2073 | unw_rec_list *ptr = alloc_record (bspstore_sprel); | |
542d6675 | 2074 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
2075 | return ptr; |
2076 | } | |
2077 | ||
2078 | static unw_rec_list * | |
2079 | output_rnat_when () | |
2080 | { | |
2081 | unw_rec_list *ptr = alloc_record (rnat_when); | |
2082 | return ptr; | |
2083 | } | |
2084 | ||
2085 | static unw_rec_list * | |
2086 | output_rnat_gr (gr) | |
2087 | unsigned int gr; | |
2088 | { | |
2089 | unw_rec_list *ptr = alloc_record (rnat_gr); | |
2090 | ptr->r.record.p.gr = gr; | |
2091 | return ptr; | |
2092 | } | |
2093 | ||
2094 | static unw_rec_list * | |
2095 | output_rnat_psprel (offset) | |
2096 | unsigned int offset; | |
2097 | { | |
2098 | unw_rec_list *ptr = alloc_record (rnat_psprel); | |
542d6675 | 2099 | ptr->r.record.p.pspoff = offset / 4; |
800eeca4 JW |
2100 | return ptr; |
2101 | } | |
2102 | ||
2103 | static unw_rec_list * | |
2104 | output_rnat_sprel (offset) | |
2105 | unsigned int offset; | |
2106 | { | |
2107 | unw_rec_list *ptr = alloc_record (rnat_sprel); | |
542d6675 | 2108 | ptr->r.record.p.spoff = offset / 4; |
800eeca4 JW |
2109 | return ptr; |
2110 | } | |
2111 | ||
2112 | static unw_rec_list * | |
e0c9811a JW |
2113 | output_unwabi (abi, context) |
2114 | unsigned long abi; | |
2115 | unsigned long context; | |
800eeca4 | 2116 | { |
e0c9811a JW |
2117 | unw_rec_list *ptr = alloc_record (unwabi); |
2118 | ptr->r.record.p.abi = abi; | |
2119 | ptr->r.record.p.context = context; | |
800eeca4 JW |
2120 | return ptr; |
2121 | } | |
2122 | ||
2123 | static unw_rec_list * | |
e0c9811a | 2124 | output_epilogue (unsigned long ecount) |
800eeca4 | 2125 | { |
e0c9811a JW |
2126 | unw_rec_list *ptr = alloc_record (epilogue); |
2127 | ptr->r.record.b.ecount = ecount; | |
800eeca4 JW |
2128 | return ptr; |
2129 | } | |
2130 | ||
2131 | static unw_rec_list * | |
e0c9811a | 2132 | output_label_state (unsigned long label) |
800eeca4 | 2133 | { |
e0c9811a JW |
2134 | unw_rec_list *ptr = alloc_record (label_state); |
2135 | ptr->r.record.b.label = label; | |
800eeca4 JW |
2136 | return ptr; |
2137 | } | |
2138 | ||
2139 | static unw_rec_list * | |
e0c9811a JW |
2140 | output_copy_state (unsigned long label) |
2141 | { | |
2142 | unw_rec_list *ptr = alloc_record (copy_state); | |
2143 | ptr->r.record.b.label = label; | |
2144 | return ptr; | |
2145 | } | |
2146 | ||
2147 | static unw_rec_list * | |
2148 | output_spill_psprel (ab, reg, offset) | |
2149 | unsigned int ab; | |
800eeca4 JW |
2150 | unsigned int reg; |
2151 | unsigned int offset; | |
2152 | { | |
2153 | unw_rec_list *ptr = alloc_record (spill_psprel); | |
e0c9811a | 2154 | ptr->r.record.x.ab = ab; |
800eeca4 | 2155 | ptr->r.record.x.reg = reg; |
542d6675 | 2156 | ptr->r.record.x.pspoff = offset / 4; |
800eeca4 JW |
2157 | return ptr; |
2158 | } | |
2159 | ||
2160 | static unw_rec_list * | |
e0c9811a JW |
2161 | output_spill_sprel (ab, reg, offset) |
2162 | unsigned int ab; | |
800eeca4 JW |
2163 | unsigned int reg; |
2164 | unsigned int offset; | |
2165 | { | |
2166 | unw_rec_list *ptr = alloc_record (spill_sprel); | |
e0c9811a | 2167 | ptr->r.record.x.ab = ab; |
800eeca4 | 2168 | ptr->r.record.x.reg = reg; |
542d6675 | 2169 | ptr->r.record.x.spoff = offset / 4; |
800eeca4 JW |
2170 | return ptr; |
2171 | } | |
2172 | ||
2173 | static unw_rec_list * | |
e0c9811a JW |
2174 | output_spill_psprel_p (ab, reg, offset, predicate) |
2175 | unsigned int ab; | |
800eeca4 JW |
2176 | unsigned int reg; |
2177 | unsigned int offset; | |
2178 | unsigned int predicate; | |
2179 | { | |
2180 | unw_rec_list *ptr = alloc_record (spill_psprel_p); | |
e0c9811a | 2181 | ptr->r.record.x.ab = ab; |
800eeca4 | 2182 | ptr->r.record.x.reg = reg; |
542d6675 | 2183 | ptr->r.record.x.pspoff = offset / 4; |
800eeca4 JW |
2184 | ptr->r.record.x.qp = predicate; |
2185 | return ptr; | |
2186 | } | |
2187 | ||
2188 | static unw_rec_list * | |
e0c9811a JW |
2189 | output_spill_sprel_p (ab, reg, offset, predicate) |
2190 | unsigned int ab; | |
800eeca4 JW |
2191 | unsigned int reg; |
2192 | unsigned int offset; | |
2193 | unsigned int predicate; | |
2194 | { | |
2195 | unw_rec_list *ptr = alloc_record (spill_sprel_p); | |
e0c9811a | 2196 | ptr->r.record.x.ab = ab; |
800eeca4 | 2197 | ptr->r.record.x.reg = reg; |
542d6675 | 2198 | ptr->r.record.x.spoff = offset / 4; |
800eeca4 JW |
2199 | ptr->r.record.x.qp = predicate; |
2200 | return ptr; | |
2201 | } | |
2202 | ||
2203 | static unw_rec_list * | |
e0c9811a JW |
2204 | output_spill_reg (ab, reg, targ_reg, xy) |
2205 | unsigned int ab; | |
800eeca4 JW |
2206 | unsigned int reg; |
2207 | unsigned int targ_reg; | |
2208 | unsigned int xy; | |
2209 | { | |
2210 | unw_rec_list *ptr = alloc_record (spill_reg); | |
e0c9811a | 2211 | ptr->r.record.x.ab = ab; |
800eeca4 JW |
2212 | ptr->r.record.x.reg = reg; |
2213 | ptr->r.record.x.treg = targ_reg; | |
2214 | ptr->r.record.x.xy = xy; | |
2215 | return ptr; | |
2216 | } | |
2217 | ||
2218 | static unw_rec_list * | |
e0c9811a JW |
2219 | output_spill_reg_p (ab, reg, targ_reg, xy, predicate) |
2220 | unsigned int ab; | |
800eeca4 JW |
2221 | unsigned int reg; |
2222 | unsigned int targ_reg; | |
2223 | unsigned int xy; | |
2224 | unsigned int predicate; | |
2225 | { | |
2226 | unw_rec_list *ptr = alloc_record (spill_reg_p); | |
e0c9811a | 2227 | ptr->r.record.x.ab = ab; |
800eeca4 JW |
2228 | ptr->r.record.x.reg = reg; |
2229 | ptr->r.record.x.treg = targ_reg; | |
2230 | ptr->r.record.x.xy = xy; | |
2231 | ptr->r.record.x.qp = predicate; | |
2232 | return ptr; | |
2233 | } | |
2234 | ||
197865e8 | 2235 | /* Given a unw_rec_list process the correct format with the |
800eeca4 | 2236 | specified function. */ |
542d6675 | 2237 | |
800eeca4 JW |
2238 | static void |
2239 | process_one_record (ptr, f) | |
2240 | unw_rec_list *ptr; | |
2241 | vbyte_func f; | |
2242 | { | |
e0c9811a JW |
2243 | unsigned long fr_mask, gr_mask; |
2244 | ||
197865e8 | 2245 | switch (ptr->r.type) |
800eeca4 | 2246 | { |
542d6675 KH |
2247 | case gr_mem: |
2248 | case fr_mem: | |
2249 | case br_mem: | |
2250 | case frgr_mem: | |
2251 | /* These are taken care of by prologue/prologue_gr. */ | |
2252 | break; | |
e0c9811a | 2253 | |
542d6675 KH |
2254 | case prologue_gr: |
2255 | case prologue: | |
2256 | if (ptr->r.type == prologue_gr) | |
2257 | output_R2_format (f, ptr->r.record.r.grmask, | |
2258 | ptr->r.record.r.grsave, ptr->r.record.r.rlen); | |
2259 | else | |
800eeca4 | 2260 | output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen); |
542d6675 KH |
2261 | |
2262 | /* Output descriptor(s) for union of register spills (if any). */ | |
2263 | gr_mask = ptr->r.record.r.mask.gr_mem; | |
2264 | fr_mask = ptr->r.record.r.mask.fr_mem; | |
2265 | if (fr_mask) | |
2266 | { | |
2267 | if ((fr_mask & ~0xfUL) == 0) | |
2268 | output_P6_format (f, fr_mem, fr_mask); | |
2269 | else | |
2270 | { | |
2271 | output_P5_format (f, gr_mask, fr_mask); | |
2272 | gr_mask = 0; | |
2273 | } | |
2274 | } | |
2275 | if (gr_mask) | |
2276 | output_P6_format (f, gr_mem, gr_mask); | |
2277 | if (ptr->r.record.r.mask.br_mem) | |
2278 | output_P1_format (f, ptr->r.record.r.mask.br_mem); | |
2279 | ||
2280 | /* output imask descriptor if necessary: */ | |
2281 | if (ptr->r.record.r.mask.i) | |
2282 | output_P4_format (f, ptr->r.record.r.mask.i, | |
2283 | ptr->r.record.r.imask_size); | |
2284 | break; | |
2285 | ||
2286 | case body: | |
2287 | output_R1_format (f, ptr->r.type, ptr->r.record.r.rlen); | |
2288 | break; | |
2289 | case mem_stack_f: | |
2290 | case mem_stack_v: | |
2291 | output_P7_format (f, ptr->r.type, ptr->r.record.p.t, | |
2292 | ptr->r.record.p.size); | |
2293 | break; | |
2294 | case psp_gr: | |
2295 | case rp_gr: | |
2296 | case pfs_gr: | |
2297 | case preds_gr: | |
2298 | case unat_gr: | |
2299 | case lc_gr: | |
2300 | case fpsr_gr: | |
2301 | case priunat_gr: | |
2302 | case bsp_gr: | |
2303 | case bspstore_gr: | |
2304 | case rnat_gr: | |
2305 | output_P3_format (f, ptr->r.type, ptr->r.record.p.gr); | |
2306 | break; | |
2307 | case rp_br: | |
2308 | output_P3_format (f, rp_br, ptr->r.record.p.br); | |
2309 | break; | |
2310 | case psp_sprel: | |
2311 | output_P7_format (f, psp_sprel, ptr->r.record.p.spoff, 0); | |
2312 | break; | |
2313 | case rp_when: | |
2314 | case pfs_when: | |
2315 | case preds_when: | |
2316 | case unat_when: | |
2317 | case lc_when: | |
2318 | case fpsr_when: | |
2319 | output_P7_format (f, ptr->r.type, ptr->r.record.p.t, 0); | |
2320 | break; | |
2321 | case rp_psprel: | |
2322 | case pfs_psprel: | |
2323 | case preds_psprel: | |
2324 | case unat_psprel: | |
2325 | case lc_psprel: | |
2326 | case fpsr_psprel: | |
2327 | case spill_base: | |
2328 | output_P7_format (f, ptr->r.type, ptr->r.record.p.pspoff, 0); | |
2329 | break; | |
2330 | case rp_sprel: | |
2331 | case pfs_sprel: | |
2332 | case preds_sprel: | |
2333 | case unat_sprel: | |
2334 | case lc_sprel: | |
2335 | case fpsr_sprel: | |
2336 | case priunat_sprel: | |
2337 | case bsp_sprel: | |
2338 | case bspstore_sprel: | |
2339 | case rnat_sprel: | |
2340 | output_P8_format (f, ptr->r.type, ptr->r.record.p.spoff); | |
2341 | break; | |
2342 | case gr_gr: | |
2343 | output_P9_format (f, ptr->r.record.p.grmask, ptr->r.record.p.gr); | |
2344 | break; | |
2345 | case br_gr: | |
2346 | output_P2_format (f, ptr->r.record.p.brmask, ptr->r.record.p.gr); | |
2347 | break; | |
2348 | case spill_mask: | |
2349 | as_bad ("spill_mask record unimplemented."); | |
2350 | break; | |
2351 | case priunat_when_gr: | |
2352 | case priunat_when_mem: | |
2353 | case bsp_when: | |
2354 | case bspstore_when: | |
2355 | case rnat_when: | |
2356 | output_P8_format (f, ptr->r.type, ptr->r.record.p.t); | |
2357 | break; | |
2358 | case priunat_psprel: | |
2359 | case bsp_psprel: | |
2360 | case bspstore_psprel: | |
2361 | case rnat_psprel: | |
2362 | output_P8_format (f, ptr->r.type, ptr->r.record.p.pspoff); | |
2363 | break; | |
2364 | case unwabi: | |
2365 | output_P10_format (f, ptr->r.record.p.abi, ptr->r.record.p.context); | |
2366 | break; | |
2367 | case epilogue: | |
2368 | output_B3_format (f, ptr->r.record.b.ecount, ptr->r.record.b.t); | |
2369 | break; | |
2370 | case label_state: | |
2371 | case copy_state: | |
2372 | output_B4_format (f, ptr->r.type, ptr->r.record.b.label); | |
2373 | break; | |
2374 | case spill_psprel: | |
2375 | output_X1_format (f, ptr->r.type, ptr->r.record.x.ab, | |
2376 | ptr->r.record.x.reg, ptr->r.record.x.t, | |
2377 | ptr->r.record.x.pspoff); | |
2378 | break; | |
2379 | case spill_sprel: | |
2380 | output_X1_format (f, ptr->r.type, ptr->r.record.x.ab, | |
2381 | ptr->r.record.x.reg, ptr->r.record.x.t, | |
2382 | ptr->r.record.x.spoff); | |
2383 | break; | |
2384 | case spill_reg: | |
2385 | output_X2_format (f, ptr->r.record.x.ab, ptr->r.record.x.reg, | |
2386 | ptr->r.record.x.xy >> 1, ptr->r.record.x.xy, | |
2387 | ptr->r.record.x.treg, ptr->r.record.x.t); | |
2388 | break; | |
2389 | case spill_psprel_p: | |
2390 | output_X3_format (f, ptr->r.type, ptr->r.record.x.qp, | |
2391 | ptr->r.record.x.ab, ptr->r.record.x.reg, | |
2392 | ptr->r.record.x.t, ptr->r.record.x.pspoff); | |
2393 | break; | |
2394 | case spill_sprel_p: | |
2395 | output_X3_format (f, ptr->r.type, ptr->r.record.x.qp, | |
2396 | ptr->r.record.x.ab, ptr->r.record.x.reg, | |
2397 | ptr->r.record.x.t, ptr->r.record.x.spoff); | |
2398 | break; | |
2399 | case spill_reg_p: | |
2400 | output_X4_format (f, ptr->r.record.x.qp, ptr->r.record.x.ab, | |
2401 | ptr->r.record.x.reg, ptr->r.record.x.xy >> 1, | |
2402 | ptr->r.record.x.xy, ptr->r.record.x.treg, | |
2403 | ptr->r.record.x.t); | |
2404 | break; | |
2405 | default: | |
2406 | as_bad ("record_type_not_valid"); | |
2407 | break; | |
800eeca4 JW |
2408 | } |
2409 | } | |
2410 | ||
197865e8 | 2411 | /* Given a unw_rec_list list, process all the records with |
800eeca4 JW |
2412 | the specified function. */ |
2413 | static void | |
2414 | process_unw_records (list, f) | |
2415 | unw_rec_list *list; | |
2416 | vbyte_func f; | |
2417 | { | |
2418 | unw_rec_list *ptr; | |
2419 | for (ptr = list; ptr; ptr = ptr->next) | |
2420 | process_one_record (ptr, f); | |
2421 | } | |
2422 | ||
2423 | /* Determine the size of a record list in bytes. */ | |
2424 | static int | |
2425 | calc_record_size (list) | |
2426 | unw_rec_list *list; | |
2427 | { | |
2428 | vbyte_count = 0; | |
2429 | process_unw_records (list, count_output); | |
2430 | return vbyte_count; | |
2431 | } | |
2432 | ||
e0c9811a JW |
2433 | /* Update IMASK bitmask to reflect the fact that one or more registers |
2434 | of type TYPE are saved starting at instruction with index T. If N | |
2435 | bits are set in REGMASK, it is assumed that instructions T through | |
2436 | T+N-1 save these registers. | |
2437 | ||
2438 | TYPE values: | |
2439 | 0: no save | |
2440 | 1: instruction saves next fp reg | |
2441 | 2: instruction saves next general reg | |
2442 | 3: instruction saves next branch reg */ | |
2443 | static void | |
2444 | set_imask (region, regmask, t, type) | |
2445 | unw_rec_list *region; | |
2446 | unsigned long regmask; | |
2447 | unsigned long t; | |
2448 | unsigned int type; | |
2449 | { | |
2450 | unsigned char *imask; | |
2451 | unsigned long imask_size; | |
2452 | unsigned int i; | |
2453 | int pos; | |
2454 | ||
2455 | imask = region->r.record.r.mask.i; | |
2456 | imask_size = region->r.record.r.imask_size; | |
2457 | if (!imask) | |
2458 | { | |
542d6675 | 2459 | imask_size = (region->r.record.r.rlen * 2 + 7) / 8 + 1; |
e0c9811a JW |
2460 | imask = xmalloc (imask_size); |
2461 | memset (imask, 0, imask_size); | |
2462 | ||
2463 | region->r.record.r.imask_size = imask_size; | |
2464 | region->r.record.r.mask.i = imask; | |
2465 | } | |
2466 | ||
542d6675 KH |
2467 | i = (t / 4) + 1; |
2468 | pos = 2 * (3 - t % 4); | |
e0c9811a JW |
2469 | while (regmask) |
2470 | { | |
2471 | if (i >= imask_size) | |
2472 | { | |
2473 | as_bad ("Ignoring attempt to spill beyond end of region"); | |
2474 | return; | |
2475 | } | |
2476 | ||
2477 | imask[i] |= (type & 0x3) << pos; | |
197865e8 | 2478 | |
e0c9811a JW |
2479 | regmask &= (regmask - 1); |
2480 | pos -= 2; | |
2481 | if (pos < 0) | |
2482 | { | |
2483 | pos = 0; | |
2484 | ++i; | |
2485 | } | |
2486 | } | |
2487 | } | |
2488 | ||
2489 | static int | |
2490 | count_bits (unsigned long mask) | |
2491 | { | |
2492 | int n = 0; | |
2493 | ||
2494 | while (mask) | |
2495 | { | |
2496 | mask &= mask - 1; | |
2497 | ++n; | |
2498 | } | |
2499 | return n; | |
2500 | } | |
2501 | ||
f5a30c2e JW |
2502 | /* Return the number of instruction slots from FIRST_ADDR to SLOT_ADDR. |
2503 | SLOT_FRAG is the frag containing SLOT_ADDR, and FIRST_FRAG is the frag | |
2504 | containing FIRST_ADDR. */ | |
2505 | ||
e0c9811a | 2506 | unsigned long |
f5a30c2e JW |
2507 | slot_index (slot_addr, slot_frag, first_addr, first_frag) |
2508 | unsigned long slot_addr; | |
2509 | fragS *slot_frag; | |
2510 | unsigned long first_addr; | |
2511 | fragS *first_frag; | |
e0c9811a | 2512 | { |
f5a30c2e JW |
2513 | unsigned long index = 0; |
2514 | ||
2515 | /* First time we are called, the initial address and frag are invalid. */ | |
2516 | if (first_addr == 0) | |
2517 | return 0; | |
2518 | ||
2519 | /* If the two addresses are in different frags, then we need to add in | |
2520 | the remaining size of this frag, and then the entire size of intermediate | |
2521 | frags. */ | |
2522 | while (slot_frag != first_frag) | |
2523 | { | |
2524 | unsigned long start_addr = (unsigned long) &first_frag->fr_literal; | |
2525 | ||
2526 | /* Add in the full size of the frag converted to instruction slots. */ | |
2527 | index += 3 * (first_frag->fr_fix >> 4); | |
2528 | /* Subtract away the initial part before first_addr. */ | |
2529 | index -= (3 * ((first_addr >> 4) - (start_addr >> 4)) | |
2530 | + ((first_addr & 0x3) - (start_addr & 0x3))); | |
e0c9811a | 2531 | |
f5a30c2e JW |
2532 | /* Move to the beginning of the next frag. */ |
2533 | first_frag = first_frag->fr_next; | |
2534 | first_addr = (unsigned long) &first_frag->fr_literal; | |
2535 | } | |
2536 | ||
2537 | /* Add in the used part of the last frag. */ | |
2538 | index += (3 * ((slot_addr >> 4) - (first_addr >> 4)) | |
2539 | + ((slot_addr & 0x3) - (first_addr & 0x3))); | |
2540 | return index; | |
2541 | } | |
4a1805b1 | 2542 | |
91a2ae2a RH |
2543 | /* Optimize unwind record directives. */ |
2544 | ||
2545 | static unw_rec_list * | |
2546 | optimize_unw_records (list) | |
2547 | unw_rec_list *list; | |
2548 | { | |
2549 | if (!list) | |
2550 | return NULL; | |
2551 | ||
2552 | /* If the only unwind record is ".prologue" or ".prologue" followed | |
2553 | by ".body", then we can optimize the unwind directives away. */ | |
2554 | if (list->r.type == prologue | |
2555 | && (list->next == NULL | |
2556 | || (list->next->r.type == body && list->next->next == NULL))) | |
2557 | return NULL; | |
2558 | ||
2559 | return list; | |
2560 | } | |
2561 | ||
800eeca4 JW |
2562 | /* Given a complete record list, process any records which have |
2563 | unresolved fields, (ie length counts for a prologue). After | |
197865e8 | 2564 | this has been run, all neccessary information should be available |
800eeca4 | 2565 | within each record to generate an image. */ |
542d6675 | 2566 | |
800eeca4 JW |
2567 | static void |
2568 | fixup_unw_records (list) | |
2569 | unw_rec_list *list; | |
2570 | { | |
e0c9811a JW |
2571 | unw_rec_list *ptr, *region = 0; |
2572 | unsigned long first_addr = 0, rlen = 0, t; | |
f5a30c2e | 2573 | fragS *first_frag = 0; |
e0c9811a | 2574 | |
800eeca4 JW |
2575 | for (ptr = list; ptr; ptr = ptr->next) |
2576 | { | |
2577 | if (ptr->slot_number == SLOT_NUM_NOT_SET) | |
542d6675 | 2578 | as_bad (" Insn slot not set in unwind record."); |
f5a30c2e JW |
2579 | t = slot_index (ptr->slot_number, ptr->slot_frag, |
2580 | first_addr, first_frag); | |
800eeca4 JW |
2581 | switch (ptr->r.type) |
2582 | { | |
542d6675 KH |
2583 | case prologue: |
2584 | case prologue_gr: | |
2585 | case body: | |
2586 | { | |
2587 | unw_rec_list *last; | |
2588 | int size, dir_len = 0; | |
2589 | unsigned long last_addr; | |
f5a30c2e | 2590 | fragS *last_frag; |
542d6675 KH |
2591 | |
2592 | first_addr = ptr->slot_number; | |
f5a30c2e | 2593 | first_frag = ptr->slot_frag; |
542d6675 KH |
2594 | ptr->slot_number = 0; |
2595 | /* Find either the next body/prologue start, or the end of | |
2596 | the list, and determine the size of the region. */ | |
2597 | last_addr = unwind.next_slot_number; | |
f5a30c2e | 2598 | last_frag = unwind.next_slot_frag; |
542d6675 KH |
2599 | for (last = ptr->next; last != NULL; last = last->next) |
2600 | if (last->r.type == prologue || last->r.type == prologue_gr | |
2601 | || last->r.type == body) | |
2602 | { | |
2603 | last_addr = last->slot_number; | |
f5a30c2e | 2604 | last_frag = last->slot_frag; |
542d6675 KH |
2605 | break; |
2606 | } | |
2607 | else if (!last->next) | |
2608 | { | |
2609 | /* In the absence of an explicit .body directive, | |
2610 | the prologue ends after the last instruction | |
2611 | covered by an unwind directive. */ | |
2612 | if (ptr->r.type != body) | |
2613 | { | |
2614 | last_addr = last->slot_number; | |
f5a30c2e | 2615 | last_frag = last->slot_frag; |
542d6675 KH |
2616 | switch (last->r.type) |
2617 | { | |
2618 | case frgr_mem: | |
2619 | dir_len = (count_bits (last->r.record.p.frmask) | |
2620 | + count_bits (last->r.record.p.grmask)); | |
2621 | break; | |
2622 | case fr_mem: | |
2623 | case gr_mem: | |
2624 | dir_len += count_bits (last->r.record.p.rmask); | |
2625 | break; | |
2626 | case br_mem: | |
2627 | case br_gr: | |
2628 | dir_len += count_bits (last->r.record.p.brmask); | |
2629 | break; | |
2630 | case gr_gr: | |
2631 | dir_len += count_bits (last->r.record.p.grmask); | |
2632 | break; | |
2633 | default: | |
2634 | dir_len = 1; | |
2635 | break; | |
2636 | } | |
2637 | } | |
2638 | break; | |
2639 | } | |
f5a30c2e JW |
2640 | size = (slot_index (last_addr, last_frag, first_addr, first_frag) |
2641 | + dir_len); | |
542d6675 KH |
2642 | rlen = ptr->r.record.r.rlen = size; |
2643 | region = ptr; | |
e0c9811a | 2644 | break; |
542d6675 KH |
2645 | } |
2646 | case epilogue: | |
2647 | ptr->r.record.b.t = rlen - 1 - t; | |
2648 | break; | |
e0c9811a | 2649 | |
542d6675 KH |
2650 | case mem_stack_f: |
2651 | case mem_stack_v: | |
2652 | case rp_when: | |
2653 | case pfs_when: | |
2654 | case preds_when: | |
2655 | case unat_when: | |
2656 | case lc_when: | |
2657 | case fpsr_when: | |
2658 | case priunat_when_gr: | |
2659 | case priunat_when_mem: | |
2660 | case bsp_when: | |
2661 | case bspstore_when: | |
2662 | case rnat_when: | |
2663 | ptr->r.record.p.t = t; | |
2664 | break; | |
e0c9811a | 2665 | |
542d6675 KH |
2666 | case spill_reg: |
2667 | case spill_sprel: | |
2668 | case spill_psprel: | |
2669 | case spill_reg_p: | |
2670 | case spill_sprel_p: | |
2671 | case spill_psprel_p: | |
2672 | ptr->r.record.x.t = t; | |
2673 | break; | |
e0c9811a | 2674 | |
542d6675 KH |
2675 | case frgr_mem: |
2676 | if (!region) | |
2677 | { | |
2678 | as_bad ("frgr_mem record before region record!\n"); | |
2679 | return; | |
2680 | } | |
2681 | region->r.record.r.mask.fr_mem |= ptr->r.record.p.frmask; | |
2682 | region->r.record.r.mask.gr_mem |= ptr->r.record.p.grmask; | |
2683 | set_imask (region, ptr->r.record.p.frmask, t, 1); | |
2684 | set_imask (region, ptr->r.record.p.grmask, t, 2); | |
2685 | break; | |
2686 | case fr_mem: | |
2687 | if (!region) | |
2688 | { | |
2689 | as_bad ("fr_mem record before region record!\n"); | |
2690 | return; | |
2691 | } | |
2692 | region->r.record.r.mask.fr_mem |= ptr->r.record.p.rmask; | |
2693 | set_imask (region, ptr->r.record.p.rmask, t, 1); | |
2694 | break; | |
2695 | case gr_mem: | |
2696 | if (!region) | |
2697 | { | |
2698 | as_bad ("gr_mem record before region record!\n"); | |
2699 | return; | |
2700 | } | |
2701 | region->r.record.r.mask.gr_mem |= ptr->r.record.p.rmask; | |
2702 | set_imask (region, ptr->r.record.p.rmask, t, 2); | |
2703 | break; | |
2704 | case br_mem: | |
2705 | if (!region) | |
2706 | { | |
2707 | as_bad ("br_mem record before region record!\n"); | |
2708 | return; | |
2709 | } | |
2710 | region->r.record.r.mask.br_mem |= ptr->r.record.p.brmask; | |
2711 | set_imask (region, ptr->r.record.p.brmask, t, 3); | |
2712 | break; | |
e0c9811a | 2713 | |
542d6675 KH |
2714 | case gr_gr: |
2715 | if (!region) | |
2716 | { | |
2717 | as_bad ("gr_gr record before region record!\n"); | |
2718 | return; | |
2719 | } | |
2720 | set_imask (region, ptr->r.record.p.grmask, t, 2); | |
2721 | break; | |
2722 | case br_gr: | |
2723 | if (!region) | |
2724 | { | |
2725 | as_bad ("br_gr record before region record!\n"); | |
2726 | return; | |
2727 | } | |
2728 | set_imask (region, ptr->r.record.p.brmask, t, 3); | |
2729 | break; | |
e0c9811a | 2730 | |
542d6675 KH |
2731 | default: |
2732 | break; | |
800eeca4 JW |
2733 | } |
2734 | } | |
2735 | } | |
2736 | ||
2737 | /* Generate an unwind image from a record list. Returns the number of | |
2738 | bytes in the resulting image. The memory image itselof is returned | |
2739 | in the 'ptr' parameter. */ | |
2740 | static int | |
2741 | output_unw_records (list, ptr) | |
2742 | unw_rec_list *list; | |
2743 | void **ptr; | |
2744 | { | |
2745 | int size, x, extra = 0; | |
2746 | unsigned char *mem; | |
2747 | ||
91a2ae2a RH |
2748 | *ptr = NULL; |
2749 | ||
2750 | list = optimize_unw_records (list); | |
800eeca4 JW |
2751 | fixup_unw_records (list); |
2752 | size = calc_record_size (list); | |
2753 | ||
2754 | /* pad to 8 byte boundry. */ | |
2755 | x = size % 8; | |
2756 | if (x != 0) | |
2757 | extra = 8 - x; | |
800eeca4 | 2758 | |
91a2ae2a RH |
2759 | if (size > 0 || unwind.force_unwind_entry) |
2760 | { | |
2761 | unwind.force_unwind_entry = 0; | |
2762 | ||
2763 | /* Add 8 for the header + 8 more bytes for the personality offset. */ | |
2764 | mem = xmalloc (size + extra + 16); | |
800eeca4 | 2765 | |
91a2ae2a RH |
2766 | vbyte_mem_ptr = mem + 8; |
2767 | /* Clear the padding area and personality. */ | |
2768 | memset (mem + 8 + size, 0 , extra + 8); | |
2769 | /* Initialize the header area. */ | |
2770 | md_number_to_chars (mem, | |
2771 | (((bfd_vma) 1 << 48) /* version */ | |
2772 | | (unwind.personality_routine | |
2773 | ? ((bfd_vma) 3 << 32) /* U & E handler flags */ | |
2774 | : 0) | |
2775 | | ((size + extra) / 8)), /* length (dwords) */ | |
2776 | 8); | |
800eeca4 | 2777 | |
91a2ae2a RH |
2778 | process_unw_records (list, output_vbyte_mem); |
2779 | ||
2780 | *ptr = mem; | |
2781 | ||
2782 | size += extra + 16; | |
2783 | } | |
2784 | return size; | |
800eeca4 JW |
2785 | } |
2786 | ||
e0c9811a JW |
2787 | static int |
2788 | convert_expr_to_ab_reg (e, ab, regp) | |
2789 | expressionS *e; | |
2790 | unsigned int *ab; | |
2791 | unsigned int *regp; | |
2792 | { | |
2793 | unsigned int reg; | |
2794 | ||
2795 | if (e->X_op != O_register) | |
2796 | return 0; | |
2797 | ||
2798 | reg = e->X_add_number; | |
2434f565 | 2799 | if (reg >= (REG_GR + 4) && reg <= (REG_GR + 7)) |
e0c9811a JW |
2800 | { |
2801 | *ab = 0; | |
2802 | *regp = reg - REG_GR; | |
2803 | } | |
2434f565 JW |
2804 | else if ((reg >= (REG_FR + 2) && reg <= (REG_FR + 5)) |
2805 | || (reg >= (REG_FR + 16) && reg <= (REG_FR + 31))) | |
e0c9811a JW |
2806 | { |
2807 | *ab = 1; | |
2808 | *regp = reg - REG_FR; | |
2809 | } | |
2434f565 | 2810 | else if (reg >= (REG_BR + 1) && reg <= (REG_BR + 5)) |
e0c9811a JW |
2811 | { |
2812 | *ab = 2; | |
2813 | *regp = reg - REG_BR; | |
2814 | } | |
2815 | else | |
2816 | { | |
2817 | *ab = 3; | |
2818 | switch (reg) | |
2819 | { | |
2820 | case REG_PR: *regp = 0; break; | |
2821 | case REG_PSP: *regp = 1; break; | |
2822 | case REG_PRIUNAT: *regp = 2; break; | |
2823 | case REG_BR + 0: *regp = 3; break; | |
2824 | case REG_AR + AR_BSP: *regp = 4; break; | |
2825 | case REG_AR + AR_BSPSTORE: *regp = 5; break; | |
2826 | case REG_AR + AR_RNAT: *regp = 6; break; | |
2827 | case REG_AR + AR_UNAT: *regp = 7; break; | |
2828 | case REG_AR + AR_FPSR: *regp = 8; break; | |
2829 | case REG_AR + AR_PFS: *regp = 9; break; | |
2830 | case REG_AR + AR_LC: *regp = 10; break; | |
2831 | ||
2832 | default: | |
2833 | return 0; | |
2834 | } | |
2835 | } | |
2836 | return 1; | |
197865e8 | 2837 | } |
e0c9811a JW |
2838 | |
2839 | static int | |
2840 | convert_expr_to_xy_reg (e, xy, regp) | |
2841 | expressionS *e; | |
2842 | unsigned int *xy; | |
2843 | unsigned int *regp; | |
2844 | { | |
2845 | unsigned int reg; | |
2846 | ||
2847 | if (e->X_op != O_register) | |
2848 | return 0; | |
2849 | ||
2850 | reg = e->X_add_number; | |
2851 | ||
2434f565 | 2852 | if (/* reg >= REG_GR && */ reg <= (REG_GR + 127)) |
e0c9811a JW |
2853 | { |
2854 | *xy = 0; | |
2855 | *regp = reg - REG_GR; | |
2856 | } | |
2434f565 | 2857 | else if (reg >= REG_FR && reg <= (REG_FR + 127)) |
e0c9811a JW |
2858 | { |
2859 | *xy = 1; | |
2860 | *regp = reg - REG_FR; | |
2861 | } | |
2434f565 | 2862 | else if (reg >= REG_BR && reg <= (REG_BR + 7)) |
e0c9811a JW |
2863 | { |
2864 | *xy = 2; | |
2865 | *regp = reg - REG_BR; | |
2866 | } | |
2867 | else | |
2868 | return -1; | |
2869 | return 1; | |
197865e8 | 2870 | } |
e0c9811a | 2871 | |
800eeca4 JW |
2872 | static void |
2873 | dot_radix (dummy) | |
2434f565 | 2874 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
2875 | { |
2876 | int radix; | |
2877 | ||
2878 | SKIP_WHITESPACE (); | |
2879 | radix = *input_line_pointer++; | |
2880 | ||
2881 | if (radix != 'C' && !is_end_of_line[(unsigned char) radix]) | |
2882 | { | |
2883 | as_bad ("Radix `%c' unsupported", *input_line_pointer); | |
542d6675 | 2884 | ignore_rest_of_line (); |
800eeca4 JW |
2885 | return; |
2886 | } | |
2887 | } | |
2888 | ||
2889 | /* .sbss, .bss etc. are macros that expand into ".section SECNAME". */ | |
2890 | static void | |
2891 | dot_special_section (which) | |
2892 | int which; | |
2893 | { | |
2894 | set_section ((char *) special_section_name[which]); | |
2895 | } | |
2896 | ||
2897 | static void | |
2898 | add_unwind_entry (ptr) | |
2899 | unw_rec_list *ptr; | |
2900 | { | |
e0c9811a JW |
2901 | if (unwind.tail) |
2902 | unwind.tail->next = ptr; | |
800eeca4 | 2903 | else |
e0c9811a JW |
2904 | unwind.list = ptr; |
2905 | unwind.tail = ptr; | |
800eeca4 JW |
2906 | |
2907 | /* The current entry can in fact be a chain of unwind entries. */ | |
e0c9811a JW |
2908 | if (unwind.current_entry == NULL) |
2909 | unwind.current_entry = ptr; | |
800eeca4 JW |
2910 | } |
2911 | ||
197865e8 | 2912 | static void |
800eeca4 | 2913 | dot_fframe (dummy) |
2434f565 | 2914 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
2915 | { |
2916 | expressionS e; | |
e0c9811a | 2917 | |
800eeca4 | 2918 | parse_operand (&e); |
197865e8 | 2919 | |
800eeca4 JW |
2920 | if (e.X_op != O_constant) |
2921 | as_bad ("Operand to .fframe must be a constant"); | |
2922 | else | |
e0c9811a JW |
2923 | add_unwind_entry (output_mem_stack_f (e.X_add_number)); |
2924 | } | |
2925 | ||
197865e8 | 2926 | static void |
e0c9811a | 2927 | dot_vframe (dummy) |
2434f565 | 2928 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
2929 | { |
2930 | expressionS e; | |
2931 | unsigned reg; | |
2932 | ||
2933 | parse_operand (&e); | |
2934 | reg = e.X_add_number - REG_GR; | |
2935 | if (e.X_op == O_register && reg < 128) | |
800eeca4 | 2936 | { |
e0c9811a | 2937 | add_unwind_entry (output_mem_stack_v ()); |
30d25259 RH |
2938 | if (! (unwind.prologue_mask & 2)) |
2939 | add_unwind_entry (output_psp_gr (reg)); | |
800eeca4 | 2940 | } |
e0c9811a JW |
2941 | else |
2942 | as_bad ("First operand to .vframe must be a general register"); | |
800eeca4 JW |
2943 | } |
2944 | ||
197865e8 | 2945 | static void |
e0c9811a | 2946 | dot_vframesp (dummy) |
2434f565 | 2947 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 2948 | { |
e0c9811a JW |
2949 | expressionS e; |
2950 | ||
2951 | parse_operand (&e); | |
2952 | if (e.X_op == O_constant) | |
2953 | { | |
2954 | add_unwind_entry (output_mem_stack_v ()); | |
2955 | add_unwind_entry (output_psp_sprel (e.X_add_number)); | |
2956 | } | |
2957 | else | |
2958 | as_bad ("First operand to .vframesp must be a general register"); | |
2959 | } | |
2960 | ||
197865e8 | 2961 | static void |
e0c9811a | 2962 | dot_vframepsp (dummy) |
2434f565 | 2963 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
2964 | { |
2965 | expressionS e; | |
2966 | ||
2967 | parse_operand (&e); | |
2968 | if (e.X_op == O_constant) | |
2969 | { | |
2970 | add_unwind_entry (output_mem_stack_v ()); | |
2971 | add_unwind_entry (output_psp_sprel (e.X_add_number)); | |
2972 | } | |
2973 | else | |
2974 | as_bad ("First operand to .vframepsp must be a general register"); | |
800eeca4 JW |
2975 | } |
2976 | ||
197865e8 | 2977 | static void |
800eeca4 | 2978 | dot_save (dummy) |
2434f565 | 2979 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
2980 | { |
2981 | expressionS e1, e2; | |
2982 | int sep; | |
2983 | int reg1, reg2; | |
2984 | ||
2985 | sep = parse_operand (&e1); | |
2986 | if (sep != ',') | |
2987 | as_bad ("No second operand to .save"); | |
2988 | sep = parse_operand (&e2); | |
2989 | ||
e0c9811a | 2990 | reg1 = e1.X_add_number; |
800eeca4 | 2991 | reg2 = e2.X_add_number - REG_GR; |
197865e8 | 2992 | |
800eeca4 | 2993 | /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */ |
e0c9811a | 2994 | if (e1.X_op == O_register) |
800eeca4 | 2995 | { |
542d6675 | 2996 | if (e2.X_op == O_register && reg2 >= 0 && reg2 < 128) |
800eeca4 JW |
2997 | { |
2998 | switch (reg1) | |
2999 | { | |
542d6675 KH |
3000 | case REG_AR + AR_BSP: |
3001 | add_unwind_entry (output_bsp_when ()); | |
3002 | add_unwind_entry (output_bsp_gr (reg2)); | |
3003 | break; | |
3004 | case REG_AR + AR_BSPSTORE: | |
3005 | add_unwind_entry (output_bspstore_when ()); | |
3006 | add_unwind_entry (output_bspstore_gr (reg2)); | |
3007 | break; | |
3008 | case REG_AR + AR_RNAT: | |
3009 | add_unwind_entry (output_rnat_when ()); | |
3010 | add_unwind_entry (output_rnat_gr (reg2)); | |
3011 | break; | |
3012 | case REG_AR + AR_UNAT: | |
3013 | add_unwind_entry (output_unat_when ()); | |
3014 | add_unwind_entry (output_unat_gr (reg2)); | |
3015 | break; | |
3016 | case REG_AR + AR_FPSR: | |
3017 | add_unwind_entry (output_fpsr_when ()); | |
3018 | add_unwind_entry (output_fpsr_gr (reg2)); | |
3019 | break; | |
3020 | case REG_AR + AR_PFS: | |
3021 | add_unwind_entry (output_pfs_when ()); | |
3022 | if (! (unwind.prologue_mask & 4)) | |
3023 | add_unwind_entry (output_pfs_gr (reg2)); | |
3024 | break; | |
3025 | case REG_AR + AR_LC: | |
3026 | add_unwind_entry (output_lc_when ()); | |
3027 | add_unwind_entry (output_lc_gr (reg2)); | |
3028 | break; | |
3029 | case REG_BR: | |
3030 | add_unwind_entry (output_rp_when ()); | |
3031 | if (! (unwind.prologue_mask & 8)) | |
3032 | add_unwind_entry (output_rp_gr (reg2)); | |
3033 | break; | |
3034 | case REG_PR: | |
3035 | add_unwind_entry (output_preds_when ()); | |
3036 | if (! (unwind.prologue_mask & 1)) | |
3037 | add_unwind_entry (output_preds_gr (reg2)); | |
3038 | break; | |
3039 | case REG_PRIUNAT: | |
3040 | add_unwind_entry (output_priunat_when_gr ()); | |
3041 | add_unwind_entry (output_priunat_gr (reg2)); | |
3042 | break; | |
3043 | default: | |
3044 | as_bad ("First operand not a valid register"); | |
800eeca4 JW |
3045 | } |
3046 | } | |
3047 | else | |
3048 | as_bad (" Second operand not a valid register"); | |
3049 | } | |
3050 | else | |
e0c9811a | 3051 | as_bad ("First operand not a register"); |
800eeca4 JW |
3052 | } |
3053 | ||
197865e8 | 3054 | static void |
800eeca4 | 3055 | dot_restore (dummy) |
2434f565 | 3056 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3057 | { |
e0c9811a | 3058 | expressionS e1, e2; |
33d01f33 | 3059 | unsigned long ecount; /* # of _additional_ regions to pop */ |
e0c9811a JW |
3060 | int sep; |
3061 | ||
3062 | sep = parse_operand (&e1); | |
3063 | if (e1.X_op != O_register || e1.X_add_number != REG_GR + 12) | |
3064 | { | |
3065 | as_bad ("First operand to .restore must be stack pointer (sp)"); | |
3066 | return; | |
3067 | } | |
3068 | ||
3069 | if (sep == ',') | |
3070 | { | |
3071 | parse_operand (&e2); | |
33d01f33 | 3072 | if (e2.X_op != O_constant || e2.X_add_number < 0) |
e0c9811a | 3073 | { |
33d01f33 | 3074 | as_bad ("Second operand to .restore must be a constant >= 0"); |
e0c9811a JW |
3075 | return; |
3076 | } | |
33d01f33 | 3077 | ecount = e2.X_add_number; |
e0c9811a | 3078 | } |
33d01f33 JW |
3079 | else |
3080 | ecount = unwind.prologue_count - 1; | |
e0c9811a | 3081 | add_unwind_entry (output_epilogue (ecount)); |
33d01f33 JW |
3082 | |
3083 | if (ecount < unwind.prologue_count) | |
3084 | unwind.prologue_count -= ecount + 1; | |
3085 | else | |
3086 | unwind.prologue_count = 0; | |
e0c9811a JW |
3087 | } |
3088 | ||
197865e8 | 3089 | static void |
e0c9811a | 3090 | dot_restorereg (dummy) |
2434f565 | 3091 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
3092 | { |
3093 | unsigned int ab, reg; | |
3094 | expressionS e; | |
3095 | ||
3096 | parse_operand (&e); | |
3097 | ||
3098 | if (!convert_expr_to_ab_reg (&e, &ab, ®)) | |
3099 | { | |
3100 | as_bad ("First operand to .restorereg must be a preserved register"); | |
3101 | return; | |
3102 | } | |
3103 | add_unwind_entry (output_spill_reg (ab, reg, 0, 0)); | |
3104 | } | |
3105 | ||
197865e8 | 3106 | static void |
e0c9811a | 3107 | dot_restorereg_p (dummy) |
2434f565 | 3108 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
3109 | { |
3110 | unsigned int qp, ab, reg; | |
3111 | expressionS e1, e2; | |
3112 | int sep; | |
3113 | ||
3114 | sep = parse_operand (&e1); | |
3115 | if (sep != ',') | |
3116 | { | |
3117 | as_bad ("No second operand to .restorereg.p"); | |
3118 | return; | |
3119 | } | |
3120 | ||
3121 | parse_operand (&e2); | |
3122 | ||
3123 | qp = e1.X_add_number - REG_P; | |
3124 | if (e1.X_op != O_register || qp > 63) | |
3125 | { | |
3126 | as_bad ("First operand to .restorereg.p must be a predicate"); | |
3127 | return; | |
3128 | } | |
3129 | ||
3130 | if (!convert_expr_to_ab_reg (&e2, &ab, ®)) | |
3131 | { | |
3132 | as_bad ("Second operand to .restorereg.p must be a preserved register"); | |
3133 | return; | |
3134 | } | |
3135 | add_unwind_entry (output_spill_reg_p (ab, reg, 0, 0, qp)); | |
800eeca4 JW |
3136 | } |
3137 | ||
3138 | static int | |
91a2ae2a RH |
3139 | generate_unwind_image (text_name) |
3140 | const char *text_name; | |
800eeca4 JW |
3141 | { |
3142 | int size; | |
3143 | unsigned char *unw_rec; | |
800eeca4 | 3144 | |
10850f29 JW |
3145 | /* Force out pending instructions, to make sure all unwind records have |
3146 | a valid slot_number field. */ | |
3147 | ia64_flush_insns (); | |
3148 | ||
800eeca4 | 3149 | /* Generate the unwind record. */ |
150f24a2 | 3150 | size = output_unw_records (unwind.list, (void **) &unw_rec); |
e0c9811a JW |
3151 | if (size % 8 != 0) |
3152 | as_bad ("Unwind record is not a multiple of 8 bytes."); | |
800eeca4 JW |
3153 | |
3154 | /* If there are unwind records, switch sections, and output the info. */ | |
3155 | if (size != 0) | |
3156 | { | |
800eeca4 | 3157 | unsigned char *where; |
91a2ae2a | 3158 | char *sec_name; |
800eeca4 | 3159 | expressionS exp; |
91a2ae2a RH |
3160 | |
3161 | make_unw_section_name (SPECIAL_SECTION_UNWIND_INFO, text_name, sec_name); | |
3162 | set_section (sec_name); | |
3163 | bfd_set_section_flags (stdoutput, now_seg, | |
3164 | SEC_LOAD | SEC_ALLOC | SEC_READONLY); | |
800eeca4 | 3165 | |
5e7474a7 JW |
3166 | /* Make sure the section has 8 byte alignment. */ |
3167 | record_alignment (now_seg, 3); | |
3168 | ||
800eeca4 | 3169 | /* Set expression which points to start of unwind descriptor area. */ |
e0c9811a | 3170 | unwind.info = expr_build_dot (); |
800eeca4 | 3171 | |
542d6675 | 3172 | where = (unsigned char *) frag_more (size); |
800eeca4 JW |
3173 | |
3174 | /* Issue a label for this address, and keep track of it to put it | |
3175 | in the unwind section. */ | |
3176 | ||
3177 | /* Copy the information from the unwind record into this section. The | |
3178 | data is already in the correct byte order. */ | |
3179 | memcpy (where, unw_rec, size); | |
91a2ae2a | 3180 | |
800eeca4 | 3181 | /* Add the personality address to the image. */ |
e0c9811a | 3182 | if (unwind.personality_routine != 0) |
542d6675 | 3183 | { |
800eeca4 | 3184 | exp.X_op = O_symbol; |
e0c9811a | 3185 | exp.X_add_symbol = unwind.personality_routine; |
800eeca4 JW |
3186 | exp.X_add_number = 0; |
3187 | fix_new_exp (frag_now, frag_now_fix () - 8, 8, | |
3188 | &exp, 0, BFD_RELOC_IA64_LTOFF_FPTR64LSB); | |
e0c9811a | 3189 | unwind.personality_routine = 0; |
542d6675 | 3190 | } |
800eeca4 JW |
3191 | } |
3192 | ||
e0c9811a JW |
3193 | free_list_records (unwind.list); |
3194 | unwind.list = unwind.tail = unwind.current_entry = NULL; | |
800eeca4 JW |
3195 | |
3196 | return size; | |
3197 | } | |
3198 | ||
197865e8 | 3199 | static void |
542d6675 | 3200 | dot_handlerdata (dummy) |
2434f565 | 3201 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3202 | { |
91a2ae2a RH |
3203 | const char *text_name = segment_name (now_seg); |
3204 | ||
3205 | /* If text section name starts with ".text" (which it should), | |
3206 | strip this prefix off. */ | |
3207 | if (strcmp (text_name, ".text") == 0) | |
3208 | text_name = ""; | |
3209 | ||
3210 | unwind.force_unwind_entry = 1; | |
3211 | ||
3212 | /* Remember which segment we're in so we can switch back after .endp */ | |
3213 | unwind.saved_text_seg = now_seg; | |
3214 | unwind.saved_text_subseg = now_subseg; | |
3215 | ||
3216 | /* Generate unwind info into unwind-info section and then leave that | |
3217 | section as the currently active one so dataXX directives go into | |
3218 | the language specific data area of the unwind info block. */ | |
3219 | generate_unwind_image (text_name); | |
e0c9811a | 3220 | demand_empty_rest_of_line (); |
800eeca4 JW |
3221 | } |
3222 | ||
197865e8 | 3223 | static void |
800eeca4 | 3224 | dot_unwentry (dummy) |
2434f565 | 3225 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3226 | { |
91a2ae2a | 3227 | unwind.force_unwind_entry = 1; |
e0c9811a | 3228 | demand_empty_rest_of_line (); |
800eeca4 JW |
3229 | } |
3230 | ||
197865e8 | 3231 | static void |
800eeca4 | 3232 | dot_altrp (dummy) |
2434f565 | 3233 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3234 | { |
e0c9811a JW |
3235 | expressionS e; |
3236 | unsigned reg; | |
3237 | ||
3238 | parse_operand (&e); | |
3239 | reg = e.X_add_number - REG_BR; | |
3240 | if (e.X_op == O_register && reg < 8) | |
3241 | add_unwind_entry (output_rp_br (reg)); | |
3242 | else | |
3243 | as_bad ("First operand not a valid branch register"); | |
800eeca4 JW |
3244 | } |
3245 | ||
197865e8 | 3246 | static void |
e0c9811a JW |
3247 | dot_savemem (psprel) |
3248 | int psprel; | |
800eeca4 JW |
3249 | { |
3250 | expressionS e1, e2; | |
3251 | int sep; | |
3252 | int reg1, val; | |
3253 | ||
3254 | sep = parse_operand (&e1); | |
3255 | if (sep != ',') | |
e0c9811a | 3256 | as_bad ("No second operand to .save%ssp", psprel ? "p" : ""); |
800eeca4 JW |
3257 | sep = parse_operand (&e2); |
3258 | ||
e0c9811a | 3259 | reg1 = e1.X_add_number; |
800eeca4 | 3260 | val = e2.X_add_number; |
197865e8 | 3261 | |
800eeca4 | 3262 | /* Make sure its a valid ar.xxx reg, OR its br0, aka 'rp'. */ |
e0c9811a | 3263 | if (e1.X_op == O_register) |
800eeca4 JW |
3264 | { |
3265 | if (e2.X_op == O_constant) | |
3266 | { | |
3267 | switch (reg1) | |
3268 | { | |
542d6675 KH |
3269 | case REG_AR + AR_BSP: |
3270 | add_unwind_entry (output_bsp_when ()); | |
3271 | add_unwind_entry ((psprel | |
3272 | ? output_bsp_psprel | |
3273 | : output_bsp_sprel) (val)); | |
3274 | break; | |
3275 | case REG_AR + AR_BSPSTORE: | |
3276 | add_unwind_entry (output_bspstore_when ()); | |
3277 | add_unwind_entry ((psprel | |
3278 | ? output_bspstore_psprel | |
3279 | : output_bspstore_sprel) (val)); | |
3280 | break; | |
3281 | case REG_AR + AR_RNAT: | |
3282 | add_unwind_entry (output_rnat_when ()); | |
3283 | add_unwind_entry ((psprel | |
3284 | ? output_rnat_psprel | |
3285 | : output_rnat_sprel) (val)); | |
3286 | break; | |
3287 | case REG_AR + AR_UNAT: | |
3288 | add_unwind_entry (output_unat_when ()); | |
3289 | add_unwind_entry ((psprel | |
3290 | ? output_unat_psprel | |
3291 | : output_unat_sprel) (val)); | |
3292 | break; | |
3293 | case REG_AR + AR_FPSR: | |
3294 | add_unwind_entry (output_fpsr_when ()); | |
3295 | add_unwind_entry ((psprel | |
3296 | ? output_fpsr_psprel | |
3297 | : output_fpsr_sprel) (val)); | |
3298 | break; | |
3299 | case REG_AR + AR_PFS: | |
3300 | add_unwind_entry (output_pfs_when ()); | |
3301 | add_unwind_entry ((psprel | |
3302 | ? output_pfs_psprel | |
3303 | : output_pfs_sprel) (val)); | |
3304 | break; | |
3305 | case REG_AR + AR_LC: | |
3306 | add_unwind_entry (output_lc_when ()); | |
3307 | add_unwind_entry ((psprel | |
3308 | ? output_lc_psprel | |
3309 | : output_lc_sprel) (val)); | |
3310 | break; | |
3311 | case REG_BR: | |
3312 | add_unwind_entry (output_rp_when ()); | |
3313 | add_unwind_entry ((psprel | |
3314 | ? output_rp_psprel | |
3315 | : output_rp_sprel) (val)); | |
3316 | break; | |
3317 | case REG_PR: | |
3318 | add_unwind_entry (output_preds_when ()); | |
3319 | add_unwind_entry ((psprel | |
3320 | ? output_preds_psprel | |
3321 | : output_preds_sprel) (val)); | |
3322 | break; | |
3323 | case REG_PRIUNAT: | |
3324 | add_unwind_entry (output_priunat_when_mem ()); | |
3325 | add_unwind_entry ((psprel | |
3326 | ? output_priunat_psprel | |
3327 | : output_priunat_sprel) (val)); | |
3328 | break; | |
3329 | default: | |
3330 | as_bad ("First operand not a valid register"); | |
800eeca4 JW |
3331 | } |
3332 | } | |
3333 | else | |
3334 | as_bad (" Second operand not a valid constant"); | |
3335 | } | |
3336 | else | |
e0c9811a | 3337 | as_bad ("First operand not a register"); |
800eeca4 JW |
3338 | } |
3339 | ||
197865e8 | 3340 | static void |
800eeca4 | 3341 | dot_saveg (dummy) |
2434f565 | 3342 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3343 | { |
3344 | expressionS e1, e2; | |
3345 | int sep; | |
3346 | sep = parse_operand (&e1); | |
3347 | if (sep == ',') | |
3348 | parse_operand (&e2); | |
197865e8 | 3349 | |
800eeca4 JW |
3350 | if (e1.X_op != O_constant) |
3351 | as_bad ("First operand to .save.g must be a constant."); | |
3352 | else | |
3353 | { | |
3354 | int grmask = e1.X_add_number; | |
3355 | if (sep != ',') | |
3356 | add_unwind_entry (output_gr_mem (grmask)); | |
3357 | else | |
542d6675 | 3358 | { |
800eeca4 | 3359 | int reg = e2.X_add_number - REG_GR; |
542d6675 | 3360 | if (e2.X_op == O_register && reg >= 0 && reg < 128) |
800eeca4 JW |
3361 | add_unwind_entry (output_gr_gr (grmask, reg)); |
3362 | else | |
3363 | as_bad ("Second operand is an invalid register."); | |
3364 | } | |
3365 | } | |
3366 | } | |
3367 | ||
197865e8 | 3368 | static void |
800eeca4 | 3369 | dot_savef (dummy) |
2434f565 | 3370 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3371 | { |
e0c9811a | 3372 | expressionS e1; |
800eeca4 JW |
3373 | int sep; |
3374 | sep = parse_operand (&e1); | |
197865e8 | 3375 | |
800eeca4 JW |
3376 | if (e1.X_op != O_constant) |
3377 | as_bad ("Operand to .save.f must be a constant."); | |
3378 | else | |
e0c9811a | 3379 | add_unwind_entry (output_fr_mem (e1.X_add_number)); |
800eeca4 JW |
3380 | } |
3381 | ||
197865e8 | 3382 | static void |
800eeca4 | 3383 | dot_saveb (dummy) |
2434f565 | 3384 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3385 | { |
e0c9811a JW |
3386 | expressionS e1, e2; |
3387 | unsigned int reg; | |
3388 | unsigned char sep; | |
3389 | int brmask; | |
3390 | ||
800eeca4 | 3391 | sep = parse_operand (&e1); |
800eeca4 | 3392 | if (e1.X_op != O_constant) |
800eeca4 | 3393 | { |
e0c9811a JW |
3394 | as_bad ("First operand to .save.b must be a constant."); |
3395 | return; | |
800eeca4 | 3396 | } |
e0c9811a JW |
3397 | brmask = e1.X_add_number; |
3398 | ||
3399 | if (sep == ',') | |
3400 | { | |
3401 | sep = parse_operand (&e2); | |
3402 | reg = e2.X_add_number - REG_GR; | |
3403 | if (e2.X_op != O_register || reg > 127) | |
3404 | { | |
3405 | as_bad ("Second operand to .save.b must be a general register."); | |
3406 | return; | |
3407 | } | |
3408 | add_unwind_entry (output_br_gr (brmask, e2.X_add_number)); | |
3409 | } | |
3410 | else | |
3411 | add_unwind_entry (output_br_mem (brmask)); | |
3412 | ||
3413 | if (!is_end_of_line[sep] && !is_it_end_of_statement ()) | |
3414 | ignore_rest_of_line (); | |
800eeca4 JW |
3415 | } |
3416 | ||
197865e8 | 3417 | static void |
800eeca4 | 3418 | dot_savegf (dummy) |
2434f565 | 3419 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3420 | { |
3421 | expressionS e1, e2; | |
3422 | int sep; | |
3423 | sep = parse_operand (&e1); | |
3424 | if (sep == ',') | |
3425 | parse_operand (&e2); | |
197865e8 | 3426 | |
800eeca4 JW |
3427 | if (e1.X_op != O_constant || sep != ',' || e2.X_op != O_constant) |
3428 | as_bad ("Both operands of .save.gf must be constants."); | |
3429 | else | |
3430 | { | |
3431 | int grmask = e1.X_add_number; | |
3432 | int frmask = e2.X_add_number; | |
3433 | add_unwind_entry (output_frgr_mem (grmask, frmask)); | |
3434 | } | |
3435 | } | |
3436 | ||
197865e8 | 3437 | static void |
800eeca4 | 3438 | dot_spill (dummy) |
2434f565 | 3439 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3440 | { |
3441 | expressionS e; | |
e0c9811a JW |
3442 | unsigned char sep; |
3443 | ||
3444 | sep = parse_operand (&e); | |
3445 | if (!is_end_of_line[sep] && !is_it_end_of_statement ()) | |
3446 | ignore_rest_of_line (); | |
197865e8 | 3447 | |
800eeca4 JW |
3448 | if (e.X_op != O_constant) |
3449 | as_bad ("Operand to .spill must be a constant"); | |
3450 | else | |
e0c9811a JW |
3451 | add_unwind_entry (output_spill_base (e.X_add_number)); |
3452 | } | |
3453 | ||
3454 | static void | |
3455 | dot_spillreg (dummy) | |
2434f565 | 3456 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
3457 | { |
3458 | int sep, ab, xy, reg, treg; | |
3459 | expressionS e1, e2; | |
3460 | ||
3461 | sep = parse_operand (&e1); | |
3462 | if (sep != ',') | |
3463 | { | |
3464 | as_bad ("No second operand to .spillreg"); | |
3465 | return; | |
3466 | } | |
3467 | ||
3468 | parse_operand (&e2); | |
3469 | ||
3470 | if (!convert_expr_to_ab_reg (&e1, &ab, ®)) | |
800eeca4 | 3471 | { |
e0c9811a JW |
3472 | as_bad ("First operand to .spillreg must be a preserved register"); |
3473 | return; | |
800eeca4 | 3474 | } |
e0c9811a JW |
3475 | |
3476 | if (!convert_expr_to_xy_reg (&e2, &xy, &treg)) | |
3477 | { | |
3478 | as_bad ("Second operand to .spillreg must be a register"); | |
3479 | return; | |
3480 | } | |
3481 | ||
3482 | add_unwind_entry (output_spill_reg (ab, reg, treg, xy)); | |
3483 | } | |
3484 | ||
3485 | static void | |
3486 | dot_spillmem (psprel) | |
3487 | int psprel; | |
3488 | { | |
3489 | expressionS e1, e2; | |
3490 | int sep, ab, reg; | |
3491 | ||
3492 | sep = parse_operand (&e1); | |
3493 | if (sep != ',') | |
3494 | { | |
3495 | as_bad ("Second operand missing"); | |
3496 | return; | |
3497 | } | |
3498 | ||
3499 | parse_operand (&e2); | |
3500 | ||
3501 | if (!convert_expr_to_ab_reg (&e1, &ab, ®)) | |
3502 | { | |
3503 | as_bad ("First operand to .spill%s must be a preserved register", | |
3504 | psprel ? "psp" : "sp"); | |
3505 | return; | |
3506 | } | |
3507 | ||
3508 | if (e2.X_op != O_constant) | |
3509 | { | |
3510 | as_bad ("Second operand to .spill%s must be a constant", | |
3511 | psprel ? "psp" : "sp"); | |
3512 | return; | |
3513 | } | |
3514 | ||
3515 | if (psprel) | |
3516 | add_unwind_entry (output_spill_psprel (ab, reg, e2.X_add_number)); | |
3517 | else | |
3518 | add_unwind_entry (output_spill_sprel (ab, reg, e2.X_add_number)); | |
3519 | } | |
3520 | ||
3521 | static void | |
3522 | dot_spillreg_p (dummy) | |
2434f565 | 3523 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
3524 | { |
3525 | int sep, ab, xy, reg, treg; | |
3526 | expressionS e1, e2, e3; | |
3527 | unsigned int qp; | |
3528 | ||
3529 | sep = parse_operand (&e1); | |
3530 | if (sep != ',') | |
3531 | { | |
3532 | as_bad ("No second and third operand to .spillreg.p"); | |
3533 | return; | |
3534 | } | |
3535 | ||
3536 | sep = parse_operand (&e2); | |
3537 | if (sep != ',') | |
3538 | { | |
3539 | as_bad ("No third operand to .spillreg.p"); | |
3540 | return; | |
3541 | } | |
3542 | ||
3543 | parse_operand (&e3); | |
3544 | ||
3545 | qp = e1.X_add_number - REG_P; | |
3546 | ||
3547 | if (e1.X_op != O_register || qp > 63) | |
3548 | { | |
3549 | as_bad ("First operand to .spillreg.p must be a predicate"); | |
3550 | return; | |
3551 | } | |
3552 | ||
3553 | if (!convert_expr_to_ab_reg (&e2, &ab, ®)) | |
3554 | { | |
3555 | as_bad ("Second operand to .spillreg.p must be a preserved register"); | |
3556 | return; | |
3557 | } | |
3558 | ||
3559 | if (!convert_expr_to_xy_reg (&e3, &xy, &treg)) | |
3560 | { | |
3561 | as_bad ("Third operand to .spillreg.p must be a register"); | |
3562 | return; | |
3563 | } | |
3564 | ||
3565 | add_unwind_entry (output_spill_reg_p (ab, reg, treg, xy, qp)); | |
3566 | } | |
3567 | ||
3568 | static void | |
3569 | dot_spillmem_p (psprel) | |
3570 | int psprel; | |
3571 | { | |
3572 | expressionS e1, e2, e3; | |
3573 | int sep, ab, reg; | |
3574 | unsigned int qp; | |
3575 | ||
3576 | sep = parse_operand (&e1); | |
3577 | if (sep != ',') | |
3578 | { | |
3579 | as_bad ("Second operand missing"); | |
3580 | return; | |
3581 | } | |
3582 | ||
3583 | parse_operand (&e2); | |
3584 | if (sep != ',') | |
3585 | { | |
3586 | as_bad ("Second operand missing"); | |
3587 | return; | |
3588 | } | |
3589 | ||
3590 | parse_operand (&e3); | |
3591 | ||
3592 | qp = e1.X_add_number - REG_P; | |
3593 | if (e1.X_op != O_register || qp > 63) | |
3594 | { | |
3595 | as_bad ("First operand to .spill%s_p must be a predicate", | |
3596 | psprel ? "psp" : "sp"); | |
3597 | return; | |
3598 | } | |
3599 | ||
3600 | if (!convert_expr_to_ab_reg (&e2, &ab, ®)) | |
3601 | { | |
3602 | as_bad ("Second operand to .spill%s_p must be a preserved register", | |
3603 | psprel ? "psp" : "sp"); | |
3604 | return; | |
3605 | } | |
3606 | ||
3607 | if (e3.X_op != O_constant) | |
3608 | { | |
3609 | as_bad ("Third operand to .spill%s_p must be a constant", | |
3610 | psprel ? "psp" : "sp"); | |
3611 | return; | |
3612 | } | |
3613 | ||
3614 | if (psprel) | |
3615 | add_unwind_entry (output_spill_psprel_p (qp, ab, reg, e3.X_add_number)); | |
3616 | else | |
3617 | add_unwind_entry (output_spill_sprel_p (qp, ab, reg, e3.X_add_number)); | |
3618 | } | |
3619 | ||
3620 | static void | |
3621 | dot_label_state (dummy) | |
2434f565 | 3622 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
3623 | { |
3624 | expressionS e; | |
3625 | ||
3626 | parse_operand (&e); | |
3627 | if (e.X_op != O_constant) | |
3628 | { | |
3629 | as_bad ("Operand to .label_state must be a constant"); | |
3630 | return; | |
3631 | } | |
3632 | add_unwind_entry (output_label_state (e.X_add_number)); | |
3633 | } | |
3634 | ||
3635 | static void | |
3636 | dot_copy_state (dummy) | |
2434f565 | 3637 | int dummy ATTRIBUTE_UNUSED; |
e0c9811a JW |
3638 | { |
3639 | expressionS e; | |
3640 | ||
3641 | parse_operand (&e); | |
3642 | if (e.X_op != O_constant) | |
3643 | { | |
3644 | as_bad ("Operand to .copy_state must be a constant"); | |
3645 | return; | |
3646 | } | |
3647 | add_unwind_entry (output_copy_state (e.X_add_number)); | |
800eeca4 JW |
3648 | } |
3649 | ||
197865e8 | 3650 | static void |
800eeca4 | 3651 | dot_unwabi (dummy) |
2434f565 | 3652 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3653 | { |
e0c9811a JW |
3654 | expressionS e1, e2; |
3655 | unsigned char sep; | |
3656 | ||
3657 | sep = parse_operand (&e1); | |
3658 | if (sep != ',') | |
3659 | { | |
3660 | as_bad ("Second operand to .unwabi missing"); | |
3661 | return; | |
3662 | } | |
3663 | sep = parse_operand (&e2); | |
3664 | if (!is_end_of_line[sep] && !is_it_end_of_statement ()) | |
3665 | ignore_rest_of_line (); | |
3666 | ||
3667 | if (e1.X_op != O_constant) | |
3668 | { | |
3669 | as_bad ("First operand to .unwabi must be a constant"); | |
3670 | return; | |
3671 | } | |
3672 | ||
3673 | if (e2.X_op != O_constant) | |
3674 | { | |
3675 | as_bad ("Second operand to .unwabi must be a constant"); | |
3676 | return; | |
3677 | } | |
3678 | ||
3679 | add_unwind_entry (output_unwabi (e1.X_add_number, e2.X_add_number)); | |
800eeca4 JW |
3680 | } |
3681 | ||
197865e8 | 3682 | static void |
800eeca4 | 3683 | dot_personality (dummy) |
2434f565 | 3684 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3685 | { |
3686 | char *name, *p, c; | |
3687 | SKIP_WHITESPACE (); | |
3688 | name = input_line_pointer; | |
3689 | c = get_symbol_end (); | |
3690 | p = input_line_pointer; | |
e0c9811a | 3691 | unwind.personality_routine = symbol_find_or_make (name); |
91a2ae2a | 3692 | unwind.force_unwind_entry = 1; |
800eeca4 JW |
3693 | *p = c; |
3694 | SKIP_WHITESPACE (); | |
3695 | demand_empty_rest_of_line (); | |
3696 | } | |
3697 | ||
3698 | static void | |
3699 | dot_proc (dummy) | |
2434f565 | 3700 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3701 | { |
3702 | char *name, *p, c; | |
3703 | symbolS *sym; | |
3704 | ||
e0c9811a JW |
3705 | unwind.proc_start = expr_build_dot (); |
3706 | /* Parse names of main and alternate entry points and mark them as | |
542d6675 | 3707 | function symbols: */ |
800eeca4 JW |
3708 | while (1) |
3709 | { | |
3710 | SKIP_WHITESPACE (); | |
3711 | name = input_line_pointer; | |
3712 | c = get_symbol_end (); | |
3713 | p = input_line_pointer; | |
3714 | sym = symbol_find_or_make (name); | |
e0c9811a | 3715 | if (unwind.proc_start == 0) |
542d6675 | 3716 | { |
e0c9811a | 3717 | unwind.proc_start = sym; |
800eeca4 JW |
3718 | } |
3719 | symbol_get_bfdsym (sym)->flags |= BSF_FUNCTION; | |
3720 | *p = c; | |
3721 | SKIP_WHITESPACE (); | |
3722 | if (*input_line_pointer != ',') | |
3723 | break; | |
3724 | ++input_line_pointer; | |
3725 | } | |
3726 | demand_empty_rest_of_line (); | |
3727 | ia64_do_align (16); | |
3728 | ||
33d01f33 | 3729 | unwind.prologue_count = 0; |
e0c9811a JW |
3730 | unwind.list = unwind.tail = unwind.current_entry = NULL; |
3731 | unwind.personality_routine = 0; | |
800eeca4 JW |
3732 | } |
3733 | ||
3734 | static void | |
3735 | dot_body (dummy) | |
2434f565 | 3736 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3737 | { |
e0c9811a | 3738 | unwind.prologue = 0; |
30d25259 RH |
3739 | unwind.prologue_mask = 0; |
3740 | ||
800eeca4 | 3741 | add_unwind_entry (output_body ()); |
e0c9811a | 3742 | demand_empty_rest_of_line (); |
800eeca4 JW |
3743 | } |
3744 | ||
3745 | static void | |
3746 | dot_prologue (dummy) | |
2434f565 | 3747 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 | 3748 | { |
e0c9811a | 3749 | unsigned char sep; |
2434f565 | 3750 | int mask = 0, grsave = 0; |
e0c9811a | 3751 | |
e0c9811a | 3752 | if (!is_it_end_of_statement ()) |
800eeca4 JW |
3753 | { |
3754 | expressionS e1, e2; | |
800eeca4 JW |
3755 | sep = parse_operand (&e1); |
3756 | if (sep != ',') | |
3757 | as_bad ("No second operand to .prologue"); | |
3758 | sep = parse_operand (&e2); | |
e0c9811a | 3759 | if (!is_end_of_line[sep] && !is_it_end_of_statement ()) |
542d6675 | 3760 | ignore_rest_of_line (); |
800eeca4 JW |
3761 | |
3762 | if (e1.X_op == O_constant) | |
542d6675 | 3763 | { |
30d25259 RH |
3764 | mask = e1.X_add_number; |
3765 | ||
800eeca4 | 3766 | if (e2.X_op == O_constant) |
30d25259 RH |
3767 | grsave = e2.X_add_number; |
3768 | else if (e2.X_op == O_register | |
3769 | && (grsave = e2.X_add_number - REG_GR) < 128) | |
3770 | ; | |
800eeca4 | 3771 | else |
30d25259 RH |
3772 | as_bad ("Second operand not a constant or general register"); |
3773 | ||
3774 | add_unwind_entry (output_prologue_gr (mask, grsave)); | |
800eeca4 JW |
3775 | } |
3776 | else | |
3777 | as_bad ("First operand not a constant"); | |
3778 | } | |
3779 | else | |
3780 | add_unwind_entry (output_prologue ()); | |
30d25259 RH |
3781 | |
3782 | unwind.prologue = 1; | |
3783 | unwind.prologue_mask = mask; | |
33d01f33 | 3784 | ++unwind.prologue_count; |
800eeca4 JW |
3785 | } |
3786 | ||
3787 | static void | |
3788 | dot_endp (dummy) | |
2434f565 | 3789 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3790 | { |
3791 | expressionS e; | |
3792 | unsigned char *ptr; | |
44f5c83a | 3793 | int bytes_per_address; |
800eeca4 JW |
3794 | long where; |
3795 | segT saved_seg; | |
3796 | subsegT saved_subseg; | |
91a2ae2a | 3797 | const char *sec_name, *text_name; |
800eeca4 | 3798 | |
91a2ae2a RH |
3799 | if (unwind.saved_text_seg) |
3800 | { | |
3801 | saved_seg = unwind.saved_text_seg; | |
3802 | saved_subseg = unwind.saved_text_subseg; | |
3803 | unwind.saved_text_seg = NULL; | |
3804 | } | |
3805 | else | |
3806 | { | |
3807 | saved_seg = now_seg; | |
3808 | saved_subseg = now_subseg; | |
3809 | } | |
3810 | ||
3811 | /* | |
3812 | Use a slightly ugly scheme to derive the unwind section names from | |
3813 | the text section name: | |
3814 | ||
3815 | text sect. unwind table sect. | |
3816 | name: name: comments: | |
3817 | ---------- ----------------- -------------------------------- | |
3818 | .text .IA_64.unwind | |
3819 | .text.foo .IA_64.unwind.text.foo | |
3820 | .foo .IA_64.unwind.foo | |
3821 | _info .IA_64.unwind_info gas issues error message (ditto) | |
3822 | _infoFOO .IA_64.unwind_infoFOO gas issues error message (ditto) | |
3823 | ||
3824 | This mapping is done so that: | |
3825 | ||
3826 | (a) An object file with unwind info only in .text will use | |
3827 | unwind section names .IA_64.unwind and .IA_64.unwind_info. | |
3828 | This follows the letter of the ABI and also ensures backwards | |
3829 | compatibility with older toolchains. | |
3830 | ||
3831 | (b) An object file with unwind info in multiple text sections | |
3832 | will use separate unwind sections for each text section. | |
3833 | This allows us to properly set the "sh_info" and "sh_link" | |
3834 | fields in SHT_IA_64_UNWIND as required by the ABI and also | |
3835 | lets GNU ld support programs with multiple segments | |
3836 | containing unwind info (as might be the case for certain | |
3837 | embedded applications). | |
3838 | ||
3839 | (c) An error is issued if there would be a name clash. | |
3840 | */ | |
3841 | text_name = segment_name (saved_seg); | |
3842 | if (strncmp (text_name, "_info", 5) == 0) | |
3843 | { | |
3844 | as_bad ("Illegal section name `%s' (causes unwind section name clash)", | |
3845 | text_name); | |
3846 | ignore_rest_of_line (); | |
3847 | return; | |
3848 | } | |
3849 | if (strcmp (text_name, ".text") == 0) | |
3850 | text_name = ""; | |
800eeca4 JW |
3851 | |
3852 | expression (&e); | |
3853 | demand_empty_rest_of_line (); | |
3854 | ||
3855 | insn_group_break (1, 0, 0); | |
800eeca4 | 3856 | |
91a2ae2a RH |
3857 | /* If there wasn't a .handlerdata, we haven't generated an image yet. */ |
3858 | if (!unwind.info) | |
3859 | generate_unwind_image (text_name); | |
800eeca4 | 3860 | |
91a2ae2a RH |
3861 | if (unwind.info || unwind.force_unwind_entry) |
3862 | { | |
3863 | subseg_set (md.last_text_seg, 0); | |
3864 | unwind.proc_end = expr_build_dot (); | |
5e7474a7 | 3865 | |
91a2ae2a RH |
3866 | make_unw_section_name (SPECIAL_SECTION_UNWIND, text_name, sec_name); |
3867 | set_section ((char *) sec_name); | |
3868 | bfd_set_section_flags (stdoutput, now_seg, | |
3869 | SEC_LOAD | SEC_ALLOC | SEC_READONLY); | |
5e7474a7 | 3870 | |
91a2ae2a RH |
3871 | /* Make sure the section has 8 byte alignment. */ |
3872 | record_alignment (now_seg, 3); | |
800eeca4 | 3873 | |
91a2ae2a RH |
3874 | ptr = frag_more (24); |
3875 | where = frag_now_fix () - 24; | |
3876 | bytes_per_address = bfd_arch_bits_per_address (stdoutput) / 8; | |
800eeca4 | 3877 | |
91a2ae2a RH |
3878 | /* Issue the values of a) Proc Begin, b) Proc End, c) Unwind Record. */ |
3879 | e.X_op = O_pseudo_fixup; | |
3880 | e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym; | |
3881 | e.X_add_number = 0; | |
3882 | e.X_add_symbol = unwind.proc_start; | |
3883 | ia64_cons_fix_new (frag_now, where, bytes_per_address, &e); | |
800eeca4 | 3884 | |
800eeca4 JW |
3885 | e.X_op = O_pseudo_fixup; |
3886 | e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym; | |
3887 | e.X_add_number = 0; | |
91a2ae2a RH |
3888 | e.X_add_symbol = unwind.proc_end; |
3889 | ia64_cons_fix_new (frag_now, where + bytes_per_address, | |
3890 | bytes_per_address, &e); | |
3891 | ||
3892 | if (unwind.info) | |
3893 | { | |
3894 | e.X_op = O_pseudo_fixup; | |
3895 | e.X_op_symbol = pseudo_func[FUNC_SEG_RELATIVE].u.sym; | |
3896 | e.X_add_number = 0; | |
3897 | e.X_add_symbol = unwind.info; | |
3898 | ia64_cons_fix_new (frag_now, where + (bytes_per_address * 2), | |
3899 | bytes_per_address, &e); | |
3900 | } | |
3901 | else | |
3902 | md_number_to_chars (ptr + (bytes_per_address * 2), 0, | |
3903 | bytes_per_address); | |
800eeca4 | 3904 | |
91a2ae2a | 3905 | } |
800eeca4 | 3906 | subseg_set (saved_seg, saved_subseg); |
e0c9811a | 3907 | unwind.proc_start = unwind.proc_end = unwind.info = 0; |
800eeca4 JW |
3908 | } |
3909 | ||
3910 | static void | |
3911 | dot_template (template) | |
3912 | int template; | |
3913 | { | |
3914 | CURR_SLOT.user_template = template; | |
3915 | } | |
3916 | ||
3917 | static void | |
3918 | dot_regstk (dummy) | |
2434f565 | 3919 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
3920 | { |
3921 | int ins, locs, outs, rots; | |
3922 | ||
3923 | if (is_it_end_of_statement ()) | |
3924 | ins = locs = outs = rots = 0; | |
3925 | else | |
3926 | { | |
3927 | ins = get_absolute_expression (); | |
3928 | if (*input_line_pointer++ != ',') | |
3929 | goto err; | |
3930 | locs = get_absolute_expression (); | |
3931 | if (*input_line_pointer++ != ',') | |
3932 | goto err; | |
3933 | outs = get_absolute_expression (); | |
3934 | if (*input_line_pointer++ != ',') | |
3935 | goto err; | |
3936 | rots = get_absolute_expression (); | |
3937 | } | |
3938 | set_regstack (ins, locs, outs, rots); | |
3939 | return; | |
3940 | ||
3941 | err: | |
3942 | as_bad ("Comma expected"); | |
3943 | ignore_rest_of_line (); | |
3944 | } | |
3945 | ||
3946 | static void | |
3947 | dot_rot (type) | |
3948 | int type; | |
3949 | { | |
3950 | unsigned num_regs, num_alloced = 0; | |
3951 | struct dynreg **drpp, *dr; | |
3952 | int ch, base_reg = 0; | |
3953 | char *name, *start; | |
3954 | size_t len; | |
3955 | ||
3956 | switch (type) | |
3957 | { | |
3958 | case DYNREG_GR: base_reg = REG_GR + 32; break; | |
3959 | case DYNREG_FR: base_reg = REG_FR + 32; break; | |
3960 | case DYNREG_PR: base_reg = REG_P + 16; break; | |
3961 | default: break; | |
3962 | } | |
3963 | ||
542d6675 | 3964 | /* First, remove existing names from hash table. */ |
800eeca4 JW |
3965 | for (dr = md.dynreg[type]; dr && dr->num_regs; dr = dr->next) |
3966 | { | |
3967 | hash_delete (md.dynreg_hash, dr->name); | |
3968 | dr->num_regs = 0; | |
3969 | } | |
3970 | ||
3971 | drpp = &md.dynreg[type]; | |
3972 | while (1) | |
3973 | { | |
3974 | start = input_line_pointer; | |
3975 | ch = get_symbol_end (); | |
3976 | *input_line_pointer = ch; | |
3977 | len = (input_line_pointer - start); | |
3978 | ||
3979 | SKIP_WHITESPACE (); | |
3980 | if (*input_line_pointer != '[') | |
3981 | { | |
3982 | as_bad ("Expected '['"); | |
3983 | goto err; | |
3984 | } | |
3985 | ++input_line_pointer; /* skip '[' */ | |
3986 | ||
3987 | num_regs = get_absolute_expression (); | |
3988 | ||
3989 | if (*input_line_pointer++ != ']') | |
3990 | { | |
3991 | as_bad ("Expected ']'"); | |
3992 | goto err; | |
3993 | } | |
3994 | SKIP_WHITESPACE (); | |
3995 | ||
3996 | num_alloced += num_regs; | |
3997 | switch (type) | |
3998 | { | |
3999 | case DYNREG_GR: | |
4000 | if (num_alloced > md.rot.num_regs) | |
4001 | { | |
4002 | as_bad ("Used more than the declared %d rotating registers", | |
4003 | md.rot.num_regs); | |
4004 | goto err; | |
4005 | } | |
4006 | break; | |
4007 | case DYNREG_FR: | |
4008 | if (num_alloced > 96) | |
4009 | { | |
4010 | as_bad ("Used more than the available 96 rotating registers"); | |
4011 | goto err; | |
4012 | } | |
4013 | break; | |
4014 | case DYNREG_PR: | |
4015 | if (num_alloced > 48) | |
4016 | { | |
4017 | as_bad ("Used more than the available 48 rotating registers"); | |
4018 | goto err; | |
4019 | } | |
4020 | break; | |
4021 | ||
4022 | default: | |
4023 | break; | |
4024 | } | |
4025 | ||
4026 | name = obstack_alloc (¬es, len + 1); | |
4027 | memcpy (name, start, len); | |
4028 | name[len] = '\0'; | |
4029 | ||
4030 | if (!*drpp) | |
4031 | { | |
4032 | *drpp = obstack_alloc (¬es, sizeof (*dr)); | |
4033 | memset (*drpp, 0, sizeof (*dr)); | |
4034 | } | |
4035 | ||
4036 | dr = *drpp; | |
4037 | dr->name = name; | |
4038 | dr->num_regs = num_regs; | |
4039 | dr->base = base_reg; | |
4040 | drpp = &dr->next; | |
4041 | base_reg += num_regs; | |
4042 | ||
4043 | if (hash_insert (md.dynreg_hash, name, dr)) | |
4044 | { | |
4045 | as_bad ("Attempt to redefine register set `%s'", name); | |
4046 | goto err; | |
4047 | } | |
4048 | ||
4049 | if (*input_line_pointer != ',') | |
4050 | break; | |
4051 | ++input_line_pointer; /* skip comma */ | |
4052 | SKIP_WHITESPACE (); | |
4053 | } | |
4054 | demand_empty_rest_of_line (); | |
4055 | return; | |
4056 | ||
4057 | err: | |
4058 | ignore_rest_of_line (); | |
4059 | } | |
4060 | ||
4061 | static void | |
4062 | dot_byteorder (byteorder) | |
4063 | int byteorder; | |
4064 | { | |
4065 | target_big_endian = byteorder; | |
4066 | } | |
4067 | ||
4068 | static void | |
4069 | dot_psr (dummy) | |
2434f565 | 4070 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
4071 | { |
4072 | char *option; | |
4073 | int ch; | |
4074 | ||
4075 | while (1) | |
4076 | { | |
4077 | option = input_line_pointer; | |
4078 | ch = get_symbol_end (); | |
4079 | if (strcmp (option, "lsb") == 0) | |
4080 | md.flags &= ~EF_IA_64_BE; | |
4081 | else if (strcmp (option, "msb") == 0) | |
4082 | md.flags |= EF_IA_64_BE; | |
4083 | else if (strcmp (option, "abi32") == 0) | |
4084 | md.flags &= ~EF_IA_64_ABI64; | |
4085 | else if (strcmp (option, "abi64") == 0) | |
4086 | md.flags |= EF_IA_64_ABI64; | |
4087 | else | |
4088 | as_bad ("Unknown psr option `%s'", option); | |
4089 | *input_line_pointer = ch; | |
4090 | ||
4091 | SKIP_WHITESPACE (); | |
4092 | if (*input_line_pointer != ',') | |
4093 | break; | |
4094 | ||
4095 | ++input_line_pointer; | |
4096 | SKIP_WHITESPACE (); | |
4097 | } | |
4098 | demand_empty_rest_of_line (); | |
4099 | } | |
4100 | ||
4101 | static void | |
4102 | dot_alias (dummy) | |
2434f565 | 4103 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
4104 | { |
4105 | as_bad (".alias not implemented yet"); | |
4106 | } | |
4107 | ||
4108 | static void | |
4109 | dot_ln (dummy) | |
2434f565 | 4110 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
4111 | { |
4112 | new_logical_line (0, get_absolute_expression ()); | |
4113 | demand_empty_rest_of_line (); | |
4114 | } | |
4115 | ||
542d6675 | 4116 | static char * |
800eeca4 JW |
4117 | parse_section_name () |
4118 | { | |
4119 | char *name; | |
4120 | int len; | |
4121 | ||
4122 | SKIP_WHITESPACE (); | |
4123 | if (*input_line_pointer != '"') | |
4124 | { | |
4125 | as_bad ("Missing section name"); | |
4126 | ignore_rest_of_line (); | |
4127 | return 0; | |
4128 | } | |
4129 | name = demand_copy_C_string (&len); | |
4130 | if (!name) | |
4131 | { | |
4132 | ignore_rest_of_line (); | |
4133 | return 0; | |
4134 | } | |
4135 | SKIP_WHITESPACE (); | |
4136 | if (*input_line_pointer != ',') | |
4137 | { | |
4138 | as_bad ("Comma expected after section name"); | |
4139 | ignore_rest_of_line (); | |
4140 | return 0; | |
4141 | } | |
4142 | ++input_line_pointer; /* skip comma */ | |
4143 | return name; | |
4144 | } | |
4145 | ||
4146 | static void | |
4147 | dot_xdata (size) | |
4148 | int size; | |
4149 | { | |
4150 | char *name = parse_section_name (); | |
4151 | if (!name) | |
4152 | return; | |
4153 | ||
4154 | set_section (name); | |
4155 | cons (size); | |
4156 | obj_elf_previous (0); | |
4157 | } | |
4158 | ||
4159 | /* Why doesn't float_cons() call md_cons_align() the way cons() does? */ | |
542d6675 | 4160 | |
800eeca4 JW |
4161 | static void |
4162 | stmt_float_cons (kind) | |
4163 | int kind; | |
4164 | { | |
4165 | size_t size; | |
4166 | ||
4167 | switch (kind) | |
4168 | { | |
4169 | case 'd': size = 8; break; | |
4170 | case 'x': size = 10; break; | |
4171 | ||
4172 | case 'f': | |
4173 | default: | |
4174 | size = 4; | |
4175 | break; | |
4176 | } | |
4177 | ia64_do_align (size); | |
4178 | float_cons (kind); | |
4179 | } | |
4180 | ||
4181 | static void | |
4182 | stmt_cons_ua (size) | |
4183 | int size; | |
4184 | { | |
4185 | int saved_auto_align = md.auto_align; | |
4186 | ||
4187 | md.auto_align = 0; | |
4188 | cons (size); | |
4189 | md.auto_align = saved_auto_align; | |
4190 | } | |
4191 | ||
4192 | static void | |
4193 | dot_xfloat_cons (kind) | |
4194 | int kind; | |
4195 | { | |
4196 | char *name = parse_section_name (); | |
4197 | if (!name) | |
4198 | return; | |
4199 | ||
4200 | set_section (name); | |
4201 | stmt_float_cons (kind); | |
4202 | obj_elf_previous (0); | |
4203 | } | |
4204 | ||
4205 | static void | |
4206 | dot_xstringer (zero) | |
4207 | int zero; | |
4208 | { | |
4209 | char *name = parse_section_name (); | |
4210 | if (!name) | |
4211 | return; | |
4212 | ||
4213 | set_section (name); | |
4214 | stringer (zero); | |
4215 | obj_elf_previous (0); | |
4216 | } | |
4217 | ||
4218 | static void | |
4219 | dot_xdata_ua (size) | |
4220 | int size; | |
4221 | { | |
4222 | int saved_auto_align = md.auto_align; | |
4223 | char *name = parse_section_name (); | |
4224 | if (!name) | |
4225 | return; | |
4226 | ||
4227 | set_section (name); | |
4228 | md.auto_align = 0; | |
4229 | cons (size); | |
4230 | md.auto_align = saved_auto_align; | |
4231 | obj_elf_previous (0); | |
4232 | } | |
4233 | ||
4234 | static void | |
4235 | dot_xfloat_cons_ua (kind) | |
4236 | int kind; | |
4237 | { | |
4238 | int saved_auto_align = md.auto_align; | |
4239 | char *name = parse_section_name (); | |
4240 | if (!name) | |
4241 | return; | |
4242 | ||
4243 | set_section (name); | |
4244 | md.auto_align = 0; | |
4245 | stmt_float_cons (kind); | |
4246 | md.auto_align = saved_auto_align; | |
4247 | obj_elf_previous (0); | |
4248 | } | |
4249 | ||
4250 | /* .reg.val <regname>,value */ | |
542d6675 | 4251 | |
800eeca4 JW |
4252 | static void |
4253 | dot_reg_val (dummy) | |
2434f565 | 4254 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
4255 | { |
4256 | expressionS reg; | |
4257 | ||
4258 | expression (®); | |
4259 | if (reg.X_op != O_register) | |
4260 | { | |
4261 | as_bad (_("Register name expected")); | |
4262 | ignore_rest_of_line (); | |
4263 | } | |
4264 | else if (*input_line_pointer++ != ',') | |
4265 | { | |
4266 | as_bad (_("Comma expected")); | |
4267 | ignore_rest_of_line (); | |
4268 | } | |
197865e8 | 4269 | else |
800eeca4 JW |
4270 | { |
4271 | valueT value = get_absolute_expression (); | |
4272 | int regno = reg.X_add_number; | |
542d6675 KH |
4273 | if (regno < REG_GR || regno > REG_GR + 128) |
4274 | as_warn (_("Register value annotation ignored")); | |
800eeca4 | 4275 | else |
542d6675 KH |
4276 | { |
4277 | gr_values[regno - REG_GR].known = 1; | |
4278 | gr_values[regno - REG_GR].value = value; | |
4279 | gr_values[regno - REG_GR].path = md.path; | |
4280 | } | |
800eeca4 JW |
4281 | } |
4282 | demand_empty_rest_of_line (); | |
4283 | } | |
4284 | ||
197865e8 | 4285 | /* select dv checking mode |
800eeca4 JW |
4286 | .auto |
4287 | .explicit | |
4288 | .default | |
4289 | ||
197865e8 | 4290 | A stop is inserted when changing modes |
800eeca4 | 4291 | */ |
542d6675 | 4292 | |
800eeca4 JW |
4293 | static void |
4294 | dot_dv_mode (type) | |
542d6675 | 4295 | int type; |
800eeca4 JW |
4296 | { |
4297 | if (md.manual_bundling) | |
4298 | as_warn (_("Directive invalid within a bundle")); | |
4299 | ||
4300 | if (type == 'E' || type == 'A') | |
4301 | md.mode_explicitly_set = 0; | |
4302 | else | |
4303 | md.mode_explicitly_set = 1; | |
4304 | ||
4305 | md.detect_dv = 1; | |
4306 | switch (type) | |
4307 | { | |
4308 | case 'A': | |
4309 | case 'a': | |
4310 | if (md.explicit_mode) | |
542d6675 | 4311 | insn_group_break (1, 0, 0); |
800eeca4 JW |
4312 | md.explicit_mode = 0; |
4313 | break; | |
4314 | case 'E': | |
4315 | case 'e': | |
4316 | if (!md.explicit_mode) | |
542d6675 | 4317 | insn_group_break (1, 0, 0); |
800eeca4 JW |
4318 | md.explicit_mode = 1; |
4319 | break; | |
4320 | default: | |
4321 | case 'd': | |
4322 | if (md.explicit_mode != md.default_explicit_mode) | |
542d6675 | 4323 | insn_group_break (1, 0, 0); |
800eeca4 JW |
4324 | md.explicit_mode = md.default_explicit_mode; |
4325 | md.mode_explicitly_set = 0; | |
4326 | break; | |
4327 | } | |
4328 | } | |
4329 | ||
4330 | static void | |
4331 | print_prmask (mask) | |
542d6675 | 4332 | valueT mask; |
800eeca4 JW |
4333 | { |
4334 | int regno; | |
4335 | char *comma = ""; | |
542d6675 | 4336 | for (regno = 0; regno < 64; regno++) |
800eeca4 | 4337 | { |
542d6675 KH |
4338 | if (mask & ((valueT) 1 << regno)) |
4339 | { | |
4340 | fprintf (stderr, "%s p%d", comma, regno); | |
4341 | comma = ","; | |
4342 | } | |
800eeca4 JW |
4343 | } |
4344 | } | |
4345 | ||
4346 | /* | |
4347 | .pred.rel.clear [p1 [,p2 [,...]]] (also .pred.rel "clear") | |
4348 | .pred.rel.imply p1, p2 (also .pred.rel "imply") | |
4349 | .pred.rel.mutex p1, p2 [,...] (also .pred.rel "mutex") | |
4350 | .pred.safe_across_calls p1 [, p2 [,...]] | |
4351 | */ | |
542d6675 | 4352 | |
800eeca4 JW |
4353 | static void |
4354 | dot_pred_rel (type) | |
542d6675 | 4355 | int type; |
800eeca4 JW |
4356 | { |
4357 | valueT mask = 0; | |
4358 | int count = 0; | |
4359 | int p1 = -1, p2 = -1; | |
4360 | ||
4361 | if (type == 0) | |
4362 | { | |
4363 | if (*input_line_pointer != '"') | |
542d6675 KH |
4364 | { |
4365 | as_bad (_("Missing predicate relation type")); | |
4366 | ignore_rest_of_line (); | |
4367 | return; | |
4368 | } | |
197865e8 | 4369 | else |
542d6675 KH |
4370 | { |
4371 | int len; | |
4372 | char *form = demand_copy_C_string (&len); | |
4373 | if (strcmp (form, "mutex") == 0) | |
4374 | type = 'm'; | |
4375 | else if (strcmp (form, "clear") == 0) | |
4376 | type = 'c'; | |
4377 | else if (strcmp (form, "imply") == 0) | |
4378 | type = 'i'; | |
4379 | else | |
4380 | { | |
4381 | as_bad (_("Unrecognized predicate relation type")); | |
4382 | ignore_rest_of_line (); | |
4383 | return; | |
4384 | } | |
4385 | } | |
800eeca4 | 4386 | if (*input_line_pointer == ',') |
542d6675 | 4387 | ++input_line_pointer; |
800eeca4 JW |
4388 | SKIP_WHITESPACE (); |
4389 | } | |
4390 | ||
4391 | SKIP_WHITESPACE (); | |
4392 | while (1) | |
4393 | { | |
4394 | valueT bit = 1; | |
4395 | int regno; | |
197865e8 | 4396 | |
800eeca4 | 4397 | if (toupper (*input_line_pointer) != 'P' |
542d6675 KH |
4398 | || (regno = atoi (++input_line_pointer)) < 0 |
4399 | || regno > 63) | |
4400 | { | |
4401 | as_bad (_("Predicate register expected")); | |
4402 | ignore_rest_of_line (); | |
4403 | return; | |
4404 | } | |
800eeca4 | 4405 | while (isdigit (*input_line_pointer)) |
542d6675 | 4406 | ++input_line_pointer; |
800eeca4 | 4407 | if (p1 == -1) |
542d6675 | 4408 | p1 = regno; |
800eeca4 | 4409 | else if (p2 == -1) |
542d6675 | 4410 | p2 = regno; |
800eeca4 JW |
4411 | bit <<= regno; |
4412 | if (mask & bit) | |
542d6675 KH |
4413 | as_warn (_("Duplicate predicate register ignored")); |
4414 | mask |= bit; | |
4415 | count++; | |
4416 | /* See if it's a range. */ | |
800eeca4 | 4417 | if (*input_line_pointer == '-') |
542d6675 KH |
4418 | { |
4419 | valueT stop = 1; | |
4420 | ++input_line_pointer; | |
4421 | ||
4422 | if (toupper (*input_line_pointer) != 'P' | |
4423 | || (regno = atoi (++input_line_pointer)) < 0 | |
4424 | || regno > 63) | |
4425 | { | |
4426 | as_bad (_("Predicate register expected")); | |
4427 | ignore_rest_of_line (); | |
4428 | return; | |
4429 | } | |
4430 | while (isdigit (*input_line_pointer)) | |
4431 | ++input_line_pointer; | |
4432 | stop <<= regno; | |
4433 | if (bit >= stop) | |
4434 | { | |
4435 | as_bad (_("Bad register range")); | |
4436 | ignore_rest_of_line (); | |
4437 | return; | |
4438 | } | |
4439 | while (bit < stop) | |
4440 | { | |
4441 | bit <<= 1; | |
4442 | mask |= bit; | |
4443 | count++; | |
4444 | } | |
4445 | SKIP_WHITESPACE (); | |
4446 | } | |
800eeca4 | 4447 | if (*input_line_pointer != ',') |
542d6675 | 4448 | break; |
800eeca4 JW |
4449 | ++input_line_pointer; |
4450 | SKIP_WHITESPACE (); | |
4451 | } | |
4452 | ||
4453 | switch (type) | |
4454 | { | |
4455 | case 'c': | |
4456 | if (count == 0) | |
542d6675 | 4457 | mask = ~(valueT) 0; |
800eeca4 | 4458 | clear_qp_mutex (mask); |
197865e8 | 4459 | clear_qp_implies (mask, (valueT) 0); |
800eeca4 JW |
4460 | break; |
4461 | case 'i': | |
4462 | if (count != 2 || p1 == -1 || p2 == -1) | |
542d6675 | 4463 | as_bad (_("Predicate source and target required")); |
800eeca4 | 4464 | else if (p1 == 0 || p2 == 0) |
542d6675 | 4465 | as_bad (_("Use of p0 is not valid in this context")); |
800eeca4 | 4466 | else |
542d6675 | 4467 | add_qp_imply (p1, p2); |
800eeca4 JW |
4468 | break; |
4469 | case 'm': | |
4470 | if (count < 2) | |
542d6675 KH |
4471 | { |
4472 | as_bad (_("At least two PR arguments expected")); | |
4473 | break; | |
4474 | } | |
800eeca4 | 4475 | else if (mask & 1) |
542d6675 KH |
4476 | { |
4477 | as_bad (_("Use of p0 is not valid in this context")); | |
4478 | break; | |
4479 | } | |
800eeca4 JW |
4480 | add_qp_mutex (mask); |
4481 | break; | |
4482 | case 's': | |
4483 | /* note that we don't override any existing relations */ | |
4484 | if (count == 0) | |
542d6675 KH |
4485 | { |
4486 | as_bad (_("At least one PR argument expected")); | |
4487 | break; | |
4488 | } | |
800eeca4 | 4489 | if (md.debug_dv) |
542d6675 KH |
4490 | { |
4491 | fprintf (stderr, "Safe across calls: "); | |
4492 | print_prmask (mask); | |
4493 | fprintf (stderr, "\n"); | |
4494 | } | |
800eeca4 JW |
4495 | qp_safe_across_calls = mask; |
4496 | break; | |
4497 | } | |
4498 | demand_empty_rest_of_line (); | |
4499 | } | |
4500 | ||
4501 | /* .entry label [, label [, ...]] | |
4502 | Hint to DV code that the given labels are to be considered entry points. | |
542d6675 KH |
4503 | Otherwise, only global labels are considered entry points. */ |
4504 | ||
800eeca4 JW |
4505 | static void |
4506 | dot_entry (dummy) | |
2434f565 | 4507 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
4508 | { |
4509 | const char *err; | |
4510 | char *name; | |
4511 | int c; | |
4512 | symbolS *symbolP; | |
4513 | ||
4514 | do | |
4515 | { | |
4516 | name = input_line_pointer; | |
4517 | c = get_symbol_end (); | |
4518 | symbolP = symbol_find_or_make (name); | |
4519 | ||
4520 | err = hash_insert (md.entry_hash, S_GET_NAME (symbolP), (PTR) symbolP); | |
4521 | if (err) | |
542d6675 KH |
4522 | as_fatal (_("Inserting \"%s\" into entry hint table failed: %s"), |
4523 | name, err); | |
800eeca4 JW |
4524 | |
4525 | *input_line_pointer = c; | |
4526 | SKIP_WHITESPACE (); | |
4527 | c = *input_line_pointer; | |
4528 | if (c == ',') | |
4529 | { | |
4530 | input_line_pointer++; | |
4531 | SKIP_WHITESPACE (); | |
4532 | if (*input_line_pointer == '\n') | |
4533 | c = '\n'; | |
4534 | } | |
4535 | } | |
4536 | while (c == ','); | |
4537 | ||
4538 | demand_empty_rest_of_line (); | |
4539 | } | |
4540 | ||
197865e8 | 4541 | /* .mem.offset offset, base |
542d6675 KH |
4542 | "base" is used to distinguish between offsets from a different base. */ |
4543 | ||
800eeca4 JW |
4544 | static void |
4545 | dot_mem_offset (dummy) | |
2434f565 | 4546 | int dummy ATTRIBUTE_UNUSED; |
800eeca4 JW |
4547 | { |
4548 | md.mem_offset.hint = 1; | |
4549 | md.mem_offset.offset = get_absolute_expression (); | |
4550 | if (*input_line_pointer != ',') | |
4551 | { | |
4552 | as_bad (_("Comma expected")); | |
4553 | ignore_rest_of_line (); | |
4554 | return; | |
4555 | } | |
4556 | ++input_line_pointer; | |
4557 | md.mem_offset.base = get_absolute_expression (); | |
4558 | demand_empty_rest_of_line (); | |
4559 | } | |
4560 | ||
542d6675 | 4561 | /* ia64-specific pseudo-ops: */ |
800eeca4 JW |
4562 | const pseudo_typeS md_pseudo_table[] = |
4563 | { | |
4564 | { "radix", dot_radix, 0 }, | |
4565 | { "lcomm", s_lcomm_bytes, 1 }, | |
4566 | { "bss", dot_special_section, SPECIAL_SECTION_BSS }, | |
4567 | { "sbss", dot_special_section, SPECIAL_SECTION_SBSS }, | |
4568 | { "sdata", dot_special_section, SPECIAL_SECTION_SDATA }, | |
4569 | { "rodata", dot_special_section, SPECIAL_SECTION_RODATA }, | |
4570 | { "comment", dot_special_section, SPECIAL_SECTION_COMMENT }, | |
4571 | { "ia_64.unwind", dot_special_section, SPECIAL_SECTION_UNWIND }, | |
4572 | { "ia_64.unwind_info", dot_special_section, SPECIAL_SECTION_UNWIND_INFO }, | |
4573 | { "proc", dot_proc, 0 }, | |
4574 | { "body", dot_body, 0 }, | |
4575 | { "prologue", dot_prologue, 0 }, | |
2434f565 JW |
4576 | { "endp", dot_endp, 0 }, |
4577 | { "file", dwarf2_directive_file, 0 }, | |
4578 | { "loc", dwarf2_directive_loc, 0 }, | |
4579 | ||
4580 | { "fframe", dot_fframe, 0 }, | |
4581 | { "vframe", dot_vframe, 0 }, | |
4582 | { "vframesp", dot_vframesp, 0 }, | |
4583 | { "vframepsp", dot_vframepsp, 0 }, | |
4584 | { "save", dot_save, 0 }, | |
4585 | { "restore", dot_restore, 0 }, | |
4586 | { "restorereg", dot_restorereg, 0 }, | |
4587 | { "restorereg.p", dot_restorereg_p, 0 }, | |
4588 | { "handlerdata", dot_handlerdata, 0 }, | |
4589 | { "unwentry", dot_unwentry, 0 }, | |
4590 | { "altrp", dot_altrp, 0 }, | |
e0c9811a JW |
4591 | { "savesp", dot_savemem, 0 }, |
4592 | { "savepsp", dot_savemem, 1 }, | |
2434f565 JW |
4593 | { "save.g", dot_saveg, 0 }, |
4594 | { "save.f", dot_savef, 0 }, | |
4595 | { "save.b", dot_saveb, 0 }, | |
4596 | { "save.gf", dot_savegf, 0 }, | |
4597 | { "spill", dot_spill, 0 }, | |
4598 | { "spillreg", dot_spillreg, 0 }, | |
e0c9811a JW |
4599 | { "spillsp", dot_spillmem, 0 }, |
4600 | { "spillpsp", dot_spillmem, 1 }, | |
2434f565 | 4601 | { "spillreg.p", dot_spillreg_p, 0 }, |
e0c9811a JW |
4602 | { "spillsp.p", dot_spillmem_p, 0 }, |
4603 | { "spillpsp.p", dot_spillmem_p, 1 }, | |
2434f565 JW |
4604 | { "label_state", dot_label_state, 0 }, |
4605 | { "copy_state", dot_copy_state, 0 }, | |
4606 | { "unwabi", dot_unwabi, 0 }, | |
4607 | { "personality", dot_personality, 0 }, | |
800eeca4 | 4608 | #if 0 |
2434f565 | 4609 | { "estate", dot_estate, 0 }, |
800eeca4 JW |
4610 | #endif |
4611 | { "mii", dot_template, 0x0 }, | |
4612 | { "mli", dot_template, 0x2 }, /* old format, for compatibility */ | |
4613 | { "mlx", dot_template, 0x2 }, | |
4614 | { "mmi", dot_template, 0x4 }, | |
4615 | { "mfi", dot_template, 0x6 }, | |
4616 | { "mmf", dot_template, 0x7 }, | |
4617 | { "mib", dot_template, 0x8 }, | |
4618 | { "mbb", dot_template, 0x9 }, | |
4619 | { "bbb", dot_template, 0xb }, | |
4620 | { "mmb", dot_template, 0xc }, | |
4621 | { "mfb", dot_template, 0xe }, | |
4622 | #if 0 | |
4623 | { "lb", dot_scope, 0 }, | |
4624 | { "le", dot_scope, 1 }, | |
4625 | #endif | |
4626 | { "align", s_align_bytes, 0 }, | |
4627 | { "regstk", dot_regstk, 0 }, | |
4628 | { "rotr", dot_rot, DYNREG_GR }, | |
4629 | { "rotf", dot_rot, DYNREG_FR }, | |
4630 | { "rotp", dot_rot, DYNREG_PR }, | |
4631 | { "lsb", dot_byteorder, 0 }, | |
4632 | { "msb", dot_byteorder, 1 }, | |
4633 | { "psr", dot_psr, 0 }, | |
4634 | { "alias", dot_alias, 0 }, | |
4635 | { "ln", dot_ln, 0 }, /* source line info (for debugging) */ | |
4636 | ||
4637 | { "xdata1", dot_xdata, 1 }, | |
4638 | { "xdata2", dot_xdata, 2 }, | |
4639 | { "xdata4", dot_xdata, 4 }, | |
4640 | { "xdata8", dot_xdata, 8 }, | |
4641 | { "xreal4", dot_xfloat_cons, 'f' }, | |
4642 | { "xreal8", dot_xfloat_cons, 'd' }, | |
4643 | { "xreal10", dot_xfloat_cons, 'x' }, | |
4644 | { "xstring", dot_xstringer, 0 }, | |
4645 | { "xstringz", dot_xstringer, 1 }, | |
4646 | ||
542d6675 | 4647 | /* unaligned versions: */ |
800eeca4 JW |
4648 | { "xdata2.ua", dot_xdata_ua, 2 }, |
4649 | { "xdata4.ua", dot_xdata_ua, 4 }, | |
4650 | { "xdata8.ua", dot_xdata_ua, 8 }, | |
4651 | { "xreal4.ua", dot_xfloat_cons_ua, 'f' }, | |
4652 | { "xreal8.ua", dot_xfloat_cons_ua, 'd' }, | |
4653 | { "xreal10.ua", dot_xfloat_cons_ua, 'x' }, | |
4654 | ||
4655 | /* annotations/DV checking support */ | |
4656 | { "entry", dot_entry, 0 }, | |
2434f565 | 4657 | { "mem.offset", dot_mem_offset, 0 }, |
800eeca4 JW |
4658 | { "pred.rel", dot_pred_rel, 0 }, |
4659 | { "pred.rel.clear", dot_pred_rel, 'c' }, | |
4660 | { "pred.rel.imply", dot_pred_rel, 'i' }, | |
4661 | { "pred.rel.mutex", dot_pred_rel, 'm' }, | |
4662 | { "pred.safe_across_calls", dot_pred_rel, 's' }, | |
2434f565 | 4663 | { "reg.val", dot_reg_val, 0 }, |
800eeca4 JW |
4664 | { "auto", dot_dv_mode, 'a' }, |
4665 | { "explicit", dot_dv_mode, 'e' }, | |
4666 | { "default", dot_dv_mode, 'd' }, | |
4667 | ||
4668 | { NULL, 0, 0 } | |
4669 | }; | |
4670 | ||
4671 | static const struct pseudo_opcode | |
4672 | { | |
4673 | const char *name; | |
4674 | void (*handler) (int); | |
4675 | int arg; | |
4676 | } | |
4677 | pseudo_opcode[] = | |
4678 | { | |
4679 | /* these are more like pseudo-ops, but don't start with a dot */ | |
4680 | { "data1", cons, 1 }, | |
4681 | { "data2", cons, 2 }, | |
4682 | { "data4", cons, 4 }, | |
4683 | { "data8", cons, 8 }, | |
4684 | { "real4", stmt_float_cons, 'f' }, | |
4685 | { "real8", stmt_float_cons, 'd' }, | |
4686 | { "real10", stmt_float_cons, 'x' }, | |
4687 | { "string", stringer, 0 }, | |
4688 | { "stringz", stringer, 1 }, | |
4689 | ||
542d6675 | 4690 | /* unaligned versions: */ |
800eeca4 JW |
4691 | { "data2.ua", stmt_cons_ua, 2 }, |
4692 | { "data4.ua", stmt_cons_ua, 4 }, | |
4693 | { "data8.ua", stmt_cons_ua, 8 }, | |
4694 | { "real4.ua", float_cons, 'f' }, | |
4695 | { "real8.ua", float_cons, 'd' }, | |
4696 | { "real10.ua", float_cons, 'x' }, | |
4697 | }; | |
4698 | ||
4699 | /* Declare a register by creating a symbol for it and entering it in | |
4700 | the symbol table. */ | |
542d6675 KH |
4701 | |
4702 | static symbolS * | |
800eeca4 JW |
4703 | declare_register (name, regnum) |
4704 | const char *name; | |
4705 | int regnum; | |
4706 | { | |
4707 | const char *err; | |
4708 | symbolS *sym; | |
4709 | ||
4710 | sym = symbol_new (name, reg_section, regnum, &zero_address_frag); | |
4711 | ||
4712 | err = hash_insert (md.reg_hash, S_GET_NAME (sym), (PTR) sym); | |
4713 | if (err) | |
4714 | as_fatal ("Inserting \"%s\" into register table failed: %s", | |
4715 | name, err); | |
4716 | ||
4717 | return sym; | |
4718 | } | |
4719 | ||
4720 | static void | |
4721 | declare_register_set (prefix, num_regs, base_regnum) | |
4722 | const char *prefix; | |
4723 | int num_regs; | |
4724 | int base_regnum; | |
4725 | { | |
4726 | char name[8]; | |
4727 | int i; | |
4728 | ||
4729 | for (i = 0; i < num_regs; ++i) | |
4730 | { | |
4731 | sprintf (name, "%s%u", prefix, i); | |
4732 | declare_register (name, base_regnum + i); | |
4733 | } | |
4734 | } | |
4735 | ||
4736 | static unsigned int | |
4737 | operand_width (opnd) | |
4738 | enum ia64_opnd opnd; | |
4739 | { | |
4740 | const struct ia64_operand *odesc = &elf64_ia64_operands[opnd]; | |
4741 | unsigned int bits = 0; | |
4742 | int i; | |
4743 | ||
4744 | bits = 0; | |
4745 | for (i = 0; i < NELEMS (odesc->field) && odesc->field[i].bits; ++i) | |
4746 | bits += odesc->field[i].bits; | |
4747 | ||
4748 | return bits; | |
4749 | } | |
4750 | ||
87f8eb97 | 4751 | static enum operand_match_result |
800eeca4 JW |
4752 | operand_match (idesc, index, e) |
4753 | const struct ia64_opcode *idesc; | |
4754 | int index; | |
4755 | expressionS *e; | |
4756 | { | |
4757 | enum ia64_opnd opnd = idesc->operands[index]; | |
4758 | int bits, relocatable = 0; | |
4759 | struct insn_fix *fix; | |
4760 | bfd_signed_vma val; | |
4761 | ||
4762 | switch (opnd) | |
4763 | { | |
542d6675 | 4764 | /* constants: */ |
800eeca4 JW |
4765 | |
4766 | case IA64_OPND_AR_CCV: | |
4767 | if (e->X_op == O_register && e->X_add_number == REG_AR + 32) | |
87f8eb97 | 4768 | return OPERAND_MATCH; |
800eeca4 JW |
4769 | break; |
4770 | ||
4771 | case IA64_OPND_AR_PFS: | |
4772 | if (e->X_op == O_register && e->X_add_number == REG_AR + 64) | |
87f8eb97 | 4773 | return OPERAND_MATCH; |
800eeca4 JW |
4774 | break; |
4775 | ||
4776 | case IA64_OPND_GR0: | |
4777 | if (e->X_op == O_register && e->X_add_number == REG_GR + 0) | |
87f8eb97 | 4778 | return OPERAND_MATCH; |
800eeca4 JW |
4779 | break; |
4780 | ||
4781 | case IA64_OPND_IP: | |
4782 | if (e->X_op == O_register && e->X_add_number == REG_IP) | |
87f8eb97 | 4783 | return OPERAND_MATCH; |
800eeca4 JW |
4784 | break; |
4785 | ||
4786 | case IA64_OPND_PR: | |
4787 | if (e->X_op == O_register && e->X_add_number == REG_PR) | |
87f8eb97 | 4788 | return OPERAND_MATCH; |
800eeca4 JW |
4789 | break; |
4790 | ||
4791 | case IA64_OPND_PR_ROT: | |
4792 | if (e->X_op == O_register && e->X_add_number == REG_PR_ROT) | |
87f8eb97 | 4793 | return OPERAND_MATCH; |
800eeca4 JW |
4794 | break; |
4795 | ||
4796 | case IA64_OPND_PSR: | |
4797 | if (e->X_op == O_register && e->X_add_number == REG_PSR) | |
87f8eb97 | 4798 | return OPERAND_MATCH; |
800eeca4 JW |
4799 | break; |
4800 | ||
4801 | case IA64_OPND_PSR_L: | |
4802 | if (e->X_op == O_register && e->X_add_number == REG_PSR_L) | |
87f8eb97 | 4803 | return OPERAND_MATCH; |
800eeca4 JW |
4804 | break; |
4805 | ||
4806 | case IA64_OPND_PSR_UM: | |
4807 | if (e->X_op == O_register && e->X_add_number == REG_PSR_UM) | |
87f8eb97 | 4808 | return OPERAND_MATCH; |
800eeca4 JW |
4809 | break; |
4810 | ||
4811 | case IA64_OPND_C1: | |
87f8eb97 JW |
4812 | if (e->X_op == O_constant) |
4813 | { | |
4814 | if (e->X_add_number == 1) | |
4815 | return OPERAND_MATCH; | |
4816 | else | |
4817 | return OPERAND_OUT_OF_RANGE; | |
4818 | } | |
800eeca4 JW |
4819 | break; |
4820 | ||
4821 | case IA64_OPND_C8: | |
87f8eb97 JW |
4822 | if (e->X_op == O_constant) |
4823 | { | |
4824 | if (e->X_add_number == 8) | |
4825 | return OPERAND_MATCH; | |
4826 | else | |
4827 | return OPERAND_OUT_OF_RANGE; | |
4828 | } | |
800eeca4 JW |
4829 | break; |
4830 | ||
4831 | case IA64_OPND_C16: | |
87f8eb97 JW |
4832 | if (e->X_op == O_constant) |
4833 | { | |
4834 | if (e->X_add_number == 16) | |
4835 | return OPERAND_MATCH; | |
4836 | else | |
4837 | return OPERAND_OUT_OF_RANGE; | |
4838 | } | |
800eeca4 JW |
4839 | break; |
4840 | ||
542d6675 | 4841 | /* register operands: */ |
800eeca4 JW |
4842 | |
4843 | case IA64_OPND_AR3: | |
4844 | if (e->X_op == O_register && e->X_add_number >= REG_AR | |
4845 | && e->X_add_number < REG_AR + 128) | |
87f8eb97 | 4846 | return OPERAND_MATCH; |
800eeca4 JW |
4847 | break; |
4848 | ||
4849 | case IA64_OPND_B1: | |
4850 | case IA64_OPND_B2: | |
4851 | if (e->X_op == O_register && e->X_add_number >= REG_BR | |
4852 | && e->X_add_number < REG_BR + 8) | |
87f8eb97 | 4853 | return OPERAND_MATCH; |
800eeca4 JW |
4854 | break; |
4855 | ||
4856 | case IA64_OPND_CR3: | |
4857 | if (e->X_op == O_register && e->X_add_number >= REG_CR | |
4858 | && e->X_add_number < REG_CR + 128) | |
87f8eb97 | 4859 | return OPERAND_MATCH; |
800eeca4 JW |
4860 | break; |
4861 | ||
4862 | case IA64_OPND_F1: | |
4863 | case IA64_OPND_F2: | |
4864 | case IA64_OPND_F3: | |
4865 | case IA64_OPND_F4: | |
4866 | if (e->X_op == O_register && e->X_add_number >= REG_FR | |
4867 | && e->X_add_number < REG_FR + 128) | |
87f8eb97 | 4868 | return OPERAND_MATCH; |
800eeca4 JW |
4869 | break; |
4870 | ||
4871 | case IA64_OPND_P1: | |
4872 | case IA64_OPND_P2: | |
4873 | if (e->X_op == O_register && e->X_add_number >= REG_P | |
4874 | && e->X_add_number < REG_P + 64) | |
87f8eb97 | 4875 | return OPERAND_MATCH; |
800eeca4 JW |
4876 | break; |
4877 | ||
4878 | case IA64_OPND_R1: | |
4879 | case IA64_OPND_R2: | |
4880 | case IA64_OPND_R3: | |
4881 | if (e->X_op == O_register && e->X_add_number >= REG_GR | |
4882 | && e->X_add_number < REG_GR + 128) | |
87f8eb97 | 4883 | return OPERAND_MATCH; |
800eeca4 JW |
4884 | break; |
4885 | ||
4886 | case IA64_OPND_R3_2: | |
87f8eb97 JW |
4887 | if (e->X_op == O_register && e->X_add_number >= REG_GR) |
4888 | { | |
4889 | if (e->X_add_number < REG_GR + 4) | |
4890 | return OPERAND_MATCH; | |
4891 | else if (e->X_add_number < REG_GR + 128) | |
4892 | return OPERAND_OUT_OF_RANGE; | |
4893 | } | |
800eeca4 JW |
4894 | break; |
4895 | ||
542d6675 | 4896 | /* indirect operands: */ |
800eeca4 JW |
4897 | case IA64_OPND_CPUID_R3: |
4898 | case IA64_OPND_DBR_R3: | |
4899 | case IA64_OPND_DTR_R3: | |
4900 | case IA64_OPND_ITR_R3: | |
4901 | case IA64_OPND_IBR_R3: | |
4902 | case IA64_OPND_MSR_R3: | |
4903 | case IA64_OPND_PKR_R3: | |
4904 | case IA64_OPND_PMC_R3: | |
4905 | case IA64_OPND_PMD_R3: | |
4906 | case IA64_OPND_RR_R3: | |
4907 | if (e->X_op == O_index && e->X_op_symbol | |
4908 | && (S_GET_VALUE (e->X_op_symbol) - IND_CPUID | |
4909 | == opnd - IA64_OPND_CPUID_R3)) | |
87f8eb97 | 4910 | return OPERAND_MATCH; |
800eeca4 JW |
4911 | break; |
4912 | ||
4913 | case IA64_OPND_MR3: | |
4914 | if (e->X_op == O_index && !e->X_op_symbol) | |
87f8eb97 | 4915 | return OPERAND_MATCH; |
800eeca4 JW |
4916 | break; |
4917 | ||
542d6675 | 4918 | /* immediate operands: */ |
800eeca4 JW |
4919 | case IA64_OPND_CNT2a: |
4920 | case IA64_OPND_LEN4: | |
4921 | case IA64_OPND_LEN6: | |
4922 | bits = operand_width (idesc->operands[index]); | |
87f8eb97 JW |
4923 | if (e->X_op == O_constant) |
4924 | { | |
4925 | if ((bfd_vma) (e->X_add_number - 1) < ((bfd_vma) 1 << bits)) | |
4926 | return OPERAND_MATCH; | |
4927 | else | |
4928 | return OPERAND_OUT_OF_RANGE; | |
4929 | } | |
800eeca4 JW |
4930 | break; |
4931 | ||
4932 | case IA64_OPND_CNT2b: | |
87f8eb97 JW |
4933 | if (e->X_op == O_constant) |
4934 | { | |
4935 | if ((bfd_vma) (e->X_add_number - 1) < 3) | |
4936 | return OPERAND_MATCH; | |
4937 | else | |
4938 | return OPERAND_OUT_OF_RANGE; | |
4939 | } | |
800eeca4 JW |
4940 | break; |
4941 | ||
4942 | case IA64_OPND_CNT2c: | |
4943 | val = e->X_add_number; | |
87f8eb97 JW |
4944 | if (e->X_op == O_constant) |
4945 | { | |
4946 | if ((val == 0 || val == 7 || val == 15 || val == 16)) | |
4947 | return OPERAND_MATCH; | |
4948 | else | |
4949 | return OPERAND_OUT_OF_RANGE; | |
4950 | } | |
800eeca4 JW |
4951 | break; |
4952 | ||
4953 | case IA64_OPND_SOR: | |
4954 | /* SOR must be an integer multiple of 8 */ | |
87f8eb97 JW |
4955 | if (e->X_op == O_constant && e->X_add_number & 0x7) |
4956 | return OPERAND_OUT_OF_RANGE; | |
800eeca4 JW |
4957 | case IA64_OPND_SOF: |
4958 | case IA64_OPND_SOL: | |
87f8eb97 JW |
4959 | if (e->X_op == O_constant) |
4960 | { | |
4961 | if ((bfd_vma) e->X_add_number <= 96) | |
4962 | return OPERAND_MATCH; | |
4963 | else | |
4964 | return OPERAND_OUT_OF_RANGE; | |
4965 | } | |
800eeca4 JW |
4966 | break; |
4967 | ||
4968 | case IA64_OPND_IMMU62: | |
4969 | if (e->X_op == O_constant) | |
542d6675 | 4970 | { |
800eeca4 | 4971 | if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << 62)) |
87f8eb97 JW |
4972 | return OPERAND_MATCH; |
4973 | else | |
4974 | return OPERAND_OUT_OF_RANGE; | |
542d6675 | 4975 | } |
197865e8 | 4976 | else |
542d6675 KH |
4977 | { |
4978 | /* FIXME -- need 62-bit relocation type */ | |
4979 | as_bad (_("62-bit relocation not yet implemented")); | |
4980 | } | |
800eeca4 JW |
4981 | break; |
4982 | ||
4983 | case IA64_OPND_IMMU64: | |
4984 | if (e->X_op == O_symbol || e->X_op == O_pseudo_fixup | |
4985 | || e->X_op == O_subtract) | |
4986 | { | |
4987 | fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups; | |
4988 | fix->code = BFD_RELOC_IA64_IMM64; | |
4989 | if (e->X_op != O_subtract) | |
4990 | { | |
4991 | fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code); | |
4992 | if (e->X_op == O_pseudo_fixup) | |
4993 | e->X_op = O_symbol; | |
4994 | } | |
4995 | ||
4996 | fix->opnd = idesc->operands[index]; | |
4997 | fix->expr = *e; | |
4998 | fix->is_pcrel = 0; | |
4999 | ++CURR_SLOT.num_fixups; | |
87f8eb97 | 5000 | return OPERAND_MATCH; |
800eeca4 JW |
5001 | } |
5002 | else if (e->X_op == O_constant) | |
87f8eb97 | 5003 | return OPERAND_MATCH; |
800eeca4 JW |
5004 | break; |
5005 | ||
5006 | case IA64_OPND_CCNT5: | |
5007 | case IA64_OPND_CNT5: | |
5008 | case IA64_OPND_CNT6: | |
5009 | case IA64_OPND_CPOS6a: | |
5010 | case IA64_OPND_CPOS6b: | |
5011 | case IA64_OPND_CPOS6c: | |
5012 | case IA64_OPND_IMMU2: | |
5013 | case IA64_OPND_IMMU7a: | |
5014 | case IA64_OPND_IMMU7b: | |
800eeca4 JW |
5015 | case IA64_OPND_IMMU21: |
5016 | case IA64_OPND_IMMU24: | |
5017 | case IA64_OPND_MBTYPE4: | |
5018 | case IA64_OPND_MHTYPE8: | |
5019 | case IA64_OPND_POS6: | |
5020 | bits = operand_width (idesc->operands[index]); | |
87f8eb97 JW |
5021 | if (e->X_op == O_constant) |
5022 | { | |
5023 | if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits)) | |
5024 | return OPERAND_MATCH; | |
5025 | else | |
5026 | return OPERAND_OUT_OF_RANGE; | |
5027 | } | |
800eeca4 JW |
5028 | break; |
5029 | ||
bf3ca999 TW |
5030 | case IA64_OPND_IMMU9: |
5031 | bits = operand_width (idesc->operands[index]); | |
87f8eb97 | 5032 | if (e->X_op == O_constant) |
542d6675 | 5033 | { |
87f8eb97 JW |
5034 | if ((bfd_vma) e->X_add_number < ((bfd_vma) 1 << bits)) |
5035 | { | |
5036 | int lobits = e->X_add_number & 0x3; | |
5037 | if (((bfd_vma) e->X_add_number & 0x3C) != 0 && lobits == 0) | |
5038 | e->X_add_number |= (bfd_vma) 0x3; | |
5039 | return OPERAND_MATCH; | |
5040 | } | |
5041 | else | |
5042 | return OPERAND_OUT_OF_RANGE; | |
542d6675 | 5043 | } |
bf3ca999 TW |
5044 | break; |
5045 | ||
800eeca4 JW |
5046 | case IA64_OPND_IMM44: |
5047 | /* least 16 bits must be zero */ | |
5048 | if ((e->X_add_number & 0xffff) != 0) | |
87f8eb97 JW |
5049 | /* XXX technically, this is wrong: we should not be issuing warning |
5050 | messages until we're sure this instruction pattern is going to | |
5051 | be used! */ | |
542d6675 | 5052 | as_warn (_("lower 16 bits of mask ignored")); |
800eeca4 | 5053 | |
87f8eb97 | 5054 | if (e->X_op == O_constant) |
542d6675 | 5055 | { |
87f8eb97 JW |
5056 | if (((e->X_add_number >= 0 |
5057 | && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 44)) | |
5058 | || (e->X_add_number < 0 | |
5059 | && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 44)))) | |
542d6675 | 5060 | { |
87f8eb97 JW |
5061 | /* sign-extend */ |
5062 | if (e->X_add_number >= 0 | |
5063 | && (e->X_add_number & ((bfd_vma) 1 << 43)) != 0) | |
5064 | { | |
5065 | e->X_add_number |= ~(((bfd_vma) 1 << 44) - 1); | |
5066 | } | |
5067 | return OPERAND_MATCH; | |
542d6675 | 5068 | } |
87f8eb97 JW |
5069 | else |
5070 | return OPERAND_OUT_OF_RANGE; | |
542d6675 | 5071 | } |
800eeca4 JW |
5072 | break; |
5073 | ||
5074 | case IA64_OPND_IMM17: | |
5075 | /* bit 0 is a don't care (pr0 is hardwired to 1) */ | |
87f8eb97 | 5076 | if (e->X_op == O_constant) |
542d6675 | 5077 | { |
87f8eb97 JW |
5078 | if (((e->X_add_number >= 0 |
5079 | && (bfd_vma) e->X_add_number < ((bfd_vma) 1 << 17)) | |
5080 | || (e->X_add_number < 0 | |
5081 | && (bfd_vma) -e->X_add_number <= ((bfd_vma) 1 << 17)))) | |
542d6675 | 5082 | { |
87f8eb97 JW |
5083 | /* sign-extend */ |
5084 | if (e->X_add_number >= 0 | |
5085 | && (e->X_add_number & ((bfd_vma) 1 << 16)) != 0) | |
5086 | { | |
5087 | e->X_add_number |= ~(((bfd_vma) 1 << 17) - 1); | |
5088 | } | |
5089 | return OPERAND_MATCH; | |
542d6675 | 5090 | } |
87f8eb97 JW |
5091 | else |
5092 | return OPERAND_OUT_OF_RANGE; | |
542d6675 | 5093 | } |
800eeca4 JW |
5094 | break; |
5095 | ||
5096 | case IA64_OPND_IMM14: | |
5097 | case IA64_OPND_IMM22: | |
5098 | relocatable = 1; | |
5099 | case IA64_OPND_IMM1: | |
5100 | case IA64_OPND_IMM8: | |
5101 | case IA64_OPND_IMM8U4: | |
5102 | case IA64_OPND_IMM8M1: | |
5103 | case IA64_OPND_IMM8M1U4: | |
5104 | case IA64_OPND_IMM8M1U8: | |
5105 | case IA64_OPND_IMM9a: | |
5106 | case IA64_OPND_IMM9b: | |
5107 | bits = operand_width (idesc->operands[index]); | |
5108 | if (relocatable && (e->X_op == O_symbol | |
5109 | || e->X_op == O_subtract | |
5110 | || e->X_op == O_pseudo_fixup)) | |
5111 | { | |
5112 | fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups; | |
5113 | ||
5114 | if (idesc->operands[index] == IA64_OPND_IMM14) | |
5115 | fix->code = BFD_RELOC_IA64_IMM14; | |
5116 | else | |
5117 | fix->code = BFD_RELOC_IA64_IMM22; | |
5118 | ||
5119 | if (e->X_op != O_subtract) | |
5120 | { | |
5121 | fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code); | |
5122 | if (e->X_op == O_pseudo_fixup) | |
5123 | e->X_op = O_symbol; | |
5124 | } | |
5125 | ||
5126 | fix->opnd = idesc->operands[index]; | |
5127 | fix->expr = *e; | |
5128 | fix->is_pcrel = 0; | |
5129 | ++CURR_SLOT.num_fixups; | |
87f8eb97 | 5130 | return OPERAND_MATCH; |
800eeca4 JW |
5131 | } |
5132 | else if (e->X_op != O_constant | |
5133 | && ! (e->X_op == O_big && opnd == IA64_OPND_IMM8M1U8)) | |
87f8eb97 | 5134 | return OPERAND_MISMATCH; |
800eeca4 JW |
5135 | |
5136 | if (opnd == IA64_OPND_IMM8M1U4) | |
5137 | { | |
5138 | /* Zero is not valid for unsigned compares that take an adjusted | |
5139 | constant immediate range. */ | |
5140 | if (e->X_add_number == 0) | |
87f8eb97 | 5141 | return OPERAND_OUT_OF_RANGE; |
800eeca4 JW |
5142 | |
5143 | /* Sign-extend 32-bit unsigned numbers, so that the following range | |
5144 | checks will work. */ | |
5145 | val = e->X_add_number; | |
197865e8 KH |
5146 | if (((val & (~(bfd_vma) 0 << 32)) == 0) |
5147 | && ((val & ((bfd_vma) 1 << 31)) != 0)) | |
800eeca4 JW |
5148 | val = ((val << 32) >> 32); |
5149 | ||
5150 | /* Check for 0x100000000. This is valid because | |
5151 | 0x100000000-1 is the same as ((uint32_t) -1). */ | |
5152 | if (val == ((bfd_signed_vma) 1 << 32)) | |
87f8eb97 | 5153 | return OPERAND_MATCH; |
800eeca4 JW |
5154 | |
5155 | val = val - 1; | |
5156 | } | |
5157 | else if (opnd == IA64_OPND_IMM8M1U8) | |
5158 | { | |
5159 | /* Zero is not valid for unsigned compares that take an adjusted | |
5160 | constant immediate range. */ | |
5161 | if (e->X_add_number == 0) | |
87f8eb97 | 5162 | return OPERAND_OUT_OF_RANGE; |
800eeca4 JW |
5163 | |
5164 | /* Check for 0x10000000000000000. */ | |
5165 | if (e->X_op == O_big) | |
5166 | { | |
5167 | if (generic_bignum[0] == 0 | |
5168 | && generic_bignum[1] == 0 | |
5169 | && generic_bignum[2] == 0 | |
5170 | && generic_bignum[3] == 0 | |
5171 | && generic_bignum[4] == 1) | |
87f8eb97 | 5172 | return OPERAND_MATCH; |
800eeca4 | 5173 | else |
87f8eb97 | 5174 | return OPERAND_OUT_OF_RANGE; |
800eeca4 JW |
5175 | } |
5176 | else | |
5177 | val = e->X_add_number - 1; | |
5178 | } | |
5179 | else if (opnd == IA64_OPND_IMM8M1) | |
5180 | val = e->X_add_number - 1; | |
5181 | else if (opnd == IA64_OPND_IMM8U4) | |
5182 | { | |
5183 | /* Sign-extend 32-bit unsigned numbers, so that the following range | |
5184 | checks will work. */ | |
5185 | val = e->X_add_number; | |
197865e8 KH |
5186 | if (((val & (~(bfd_vma) 0 << 32)) == 0) |
5187 | && ((val & ((bfd_vma) 1 << 31)) != 0)) | |
800eeca4 JW |
5188 | val = ((val << 32) >> 32); |
5189 | } | |
5190 | else | |
5191 | val = e->X_add_number; | |
5192 | ||
2434f565 JW |
5193 | if ((val >= 0 && (bfd_vma) val < ((bfd_vma) 1 << (bits - 1))) |
5194 | || (val < 0 && (bfd_vma) -val <= ((bfd_vma) 1 << (bits - 1)))) | |
87f8eb97 JW |
5195 | return OPERAND_MATCH; |
5196 | else | |
5197 | return OPERAND_OUT_OF_RANGE; | |
800eeca4 JW |
5198 | |
5199 | case IA64_OPND_INC3: | |
5200 | /* +/- 1, 4, 8, 16 */ | |
5201 | val = e->X_add_number; | |
5202 | if (val < 0) | |
5203 | val = -val; | |
87f8eb97 JW |
5204 | if (e->X_op == O_constant) |
5205 | { | |
5206 | if ((val == 1 || val == 4 || val == 8 || val == 16)) | |
5207 | return OPERAND_MATCH; | |
5208 | else | |
5209 | return OPERAND_OUT_OF_RANGE; | |
5210 | } | |
800eeca4 JW |
5211 | break; |
5212 | ||
5213 | case IA64_OPND_TGT25: | |
5214 | case IA64_OPND_TGT25b: | |
5215 | case IA64_OPND_TGT25c: | |
5216 | case IA64_OPND_TGT64: | |
5217 | if (e->X_op == O_symbol) | |
5218 | { | |
5219 | fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups; | |
5220 | if (opnd == IA64_OPND_TGT25) | |
5221 | fix->code = BFD_RELOC_IA64_PCREL21F; | |
5222 | else if (opnd == IA64_OPND_TGT25b) | |
5223 | fix->code = BFD_RELOC_IA64_PCREL21M; | |
5224 | else if (opnd == IA64_OPND_TGT25c) | |
5225 | fix->code = BFD_RELOC_IA64_PCREL21B; | |
542d6675 | 5226 | else if (opnd == IA64_OPND_TGT64) |
c67e42c9 RH |
5227 | fix->code = BFD_RELOC_IA64_PCREL60B; |
5228 | else | |
5229 | abort (); | |
5230 | ||
800eeca4 JW |
5231 | fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code); |
5232 | fix->opnd = idesc->operands[index]; | |
5233 | fix->expr = *e; | |
5234 | fix->is_pcrel = 1; | |
5235 | ++CURR_SLOT.num_fixups; | |
87f8eb97 | 5236 | return OPERAND_MATCH; |
800eeca4 JW |
5237 | } |
5238 | case IA64_OPND_TAG13: | |
5239 | case IA64_OPND_TAG13b: | |
5240 | switch (e->X_op) | |
5241 | { | |
5242 | case O_constant: | |
87f8eb97 | 5243 | return OPERAND_MATCH; |
800eeca4 JW |
5244 | |
5245 | case O_symbol: | |
5246 | fix = CURR_SLOT.fixup + CURR_SLOT.num_fixups; | |
fa1cb89c JW |
5247 | /* There are no external relocs for TAG13/TAG13b fields, so we |
5248 | create a dummy reloc. This will not live past md_apply_fix3. */ | |
5249 | fix->code = BFD_RELOC_UNUSED; | |
5250 | fix->code = ia64_gen_real_reloc_type (e->X_op_symbol, fix->code); | |
800eeca4 JW |
5251 | fix->opnd = idesc->operands[index]; |
5252 | fix->expr = *e; | |
5253 | fix->is_pcrel = 1; | |
5254 | ++CURR_SLOT.num_fixups; | |
87f8eb97 | 5255 | return OPERAND_MATCH; |
800eeca4 JW |
5256 | |
5257 | default: | |
5258 | break; | |
5259 | } | |
5260 | break; | |
5261 | ||
5262 | default: | |
5263 | break; | |
5264 | } | |
87f8eb97 | 5265 | return OPERAND_MISMATCH; |
800eeca4 JW |
5266 | } |
5267 | ||
5268 | static int | |
5269 | parse_operand (e) | |
5270 | expressionS *e; | |
5271 | { | |
5272 | int sep = '\0'; | |
5273 | ||
5274 | memset (e, 0, sizeof (*e)); | |
5275 | e->X_op = O_absent; | |
5276 | SKIP_WHITESPACE (); | |
5277 | if (*input_line_pointer != '}') | |
5278 | expression (e); | |
5279 | sep = *input_line_pointer++; | |
5280 | ||
5281 | if (sep == '}') | |
5282 | { | |
5283 | if (!md.manual_bundling) | |
5284 | as_warn ("Found '}' when manual bundling is off"); | |
5285 | else | |
5286 | CURR_SLOT.manual_bundling_off = 1; | |
5287 | md.manual_bundling = 0; | |
5288 | sep = '\0'; | |
5289 | } | |
5290 | return sep; | |
5291 | } | |
5292 | ||
5293 | /* Returns the next entry in the opcode table that matches the one in | |
5294 | IDESC, and frees the entry in IDESC. If no matching entry is | |
197865e8 | 5295 | found, NULL is returned instead. */ |
800eeca4 JW |
5296 | |
5297 | static struct ia64_opcode * | |
5298 | get_next_opcode (struct ia64_opcode *idesc) | |
5299 | { | |
5300 | struct ia64_opcode *next = ia64_find_next_opcode (idesc); | |
5301 | ia64_free_opcode (idesc); | |
5302 | return next; | |
5303 | } | |
5304 | ||
5305 | /* Parse the operands for the opcode and find the opcode variant that | |
5306 | matches the specified operands, or NULL if no match is possible. */ | |
542d6675 KH |
5307 | |
5308 | static struct ia64_opcode * | |
800eeca4 JW |
5309 | parse_operands (idesc) |
5310 | struct ia64_opcode *idesc; | |
5311 | { | |
5312 | int i = 0, highest_unmatched_operand, num_operands = 0, num_outputs = 0; | |
87f8eb97 | 5313 | int error_pos, out_of_range_pos, curr_out_of_range_pos, sep = 0; |
800eeca4 | 5314 | enum ia64_opnd expected_operand = IA64_OPND_NIL; |
87f8eb97 | 5315 | enum operand_match_result result; |
800eeca4 JW |
5316 | char mnemonic[129]; |
5317 | char *first_arg = 0, *end, *saved_input_pointer; | |
5318 | unsigned int sof; | |
5319 | ||
5320 | assert (strlen (idesc->name) <= 128); | |
5321 | ||
5322 | strcpy (mnemonic, idesc->name); | |
5323 | if (idesc->operands[2] == IA64_OPND_SOF) | |
5324 | { | |
5325 | /* To make the common idiom "alloc loc?=ar.pfs,0,1,0,0" work, we | |
5326 | can't parse the first operand until we have parsed the | |
5327 | remaining operands of the "alloc" instruction. */ | |
5328 | SKIP_WHITESPACE (); | |
5329 | first_arg = input_line_pointer; | |
5330 | end = strchr (input_line_pointer, '='); | |
5331 | if (!end) | |
5332 | { | |
5333 | as_bad ("Expected separator `='"); | |
5334 | return 0; | |
5335 | } | |
5336 | input_line_pointer = end + 1; | |
5337 | ++i; | |
5338 | ++num_outputs; | |
5339 | } | |
5340 | ||
5341 | for (; i < NELEMS (CURR_SLOT.opnd); ++i) | |
5342 | { | |
5343 | sep = parse_operand (CURR_SLOT.opnd + i); | |
5344 | if (CURR_SLOT.opnd[i].X_op == O_absent) | |
5345 | break; | |
5346 | ||
5347 | ++num_operands; | |
5348 | ||
5349 | if (sep != '=' && sep != ',') | |
5350 | break; | |
5351 | ||
5352 | if (sep == '=') | |
5353 | { | |
5354 | if (num_outputs > 0) | |
5355 | as_bad ("Duplicate equal sign (=) in instruction"); | |
5356 | else | |
5357 | num_outputs = i + 1; | |
5358 | } | |
5359 | } | |
5360 | if (sep != '\0') | |
5361 | { | |
5362 | as_bad ("Illegal operand separator `%c'", sep); | |
5363 | return 0; | |
5364 | } | |
197865e8 | 5365 | |
800eeca4 JW |
5366 | if (idesc->operands[2] == IA64_OPND_SOF) |
5367 | { | |
5368 | /* map alloc r1=ar.pfs,i,l,o,r to alloc r1=ar.pfs,(i+l+o),(i+l),r */ | |
5369 | know (strcmp (idesc->name, "alloc") == 0); | |
5370 | if (num_operands == 5 /* first_arg not included in this count! */ | |
5371 | && CURR_SLOT.opnd[2].X_op == O_constant | |
5372 | && CURR_SLOT.opnd[3].X_op == O_constant | |
5373 | && CURR_SLOT.opnd[4].X_op == O_constant | |
5374 | && CURR_SLOT.opnd[5].X_op == O_constant) | |
5375 | { | |
5376 | sof = set_regstack (CURR_SLOT.opnd[2].X_add_number, | |
5377 | CURR_SLOT.opnd[3].X_add_number, | |
5378 | CURR_SLOT.opnd[4].X_add_number, | |
5379 | CURR_SLOT.opnd[5].X_add_number); | |
5380 | ||
542d6675 | 5381 | /* now we can parse the first arg: */ |
800eeca4 JW |
5382 | saved_input_pointer = input_line_pointer; |
5383 | input_line_pointer = first_arg; | |
5384 | sep = parse_operand (CURR_SLOT.opnd + 0); | |
5385 | if (sep != '=') | |
5386 | --num_outputs; /* force error */ | |
5387 | input_line_pointer = saved_input_pointer; | |
5388 | ||
5389 | CURR_SLOT.opnd[2].X_add_number = sof; | |
5390 | CURR_SLOT.opnd[3].X_add_number | |
5391 | = sof - CURR_SLOT.opnd[4].X_add_number; | |
5392 | CURR_SLOT.opnd[4] = CURR_SLOT.opnd[5]; | |
5393 | } | |
5394 | } | |
5395 | ||
5396 | highest_unmatched_operand = 0; | |
87f8eb97 JW |
5397 | curr_out_of_range_pos = -1; |
5398 | error_pos = 0; | |
800eeca4 JW |
5399 | expected_operand = idesc->operands[0]; |
5400 | for (; idesc; idesc = get_next_opcode (idesc)) | |
5401 | { | |
5402 | if (num_outputs != idesc->num_outputs) | |
5403 | continue; /* mismatch in # of outputs */ | |
5404 | ||
5405 | CURR_SLOT.num_fixups = 0; | |
87f8eb97 JW |
5406 | |
5407 | /* Try to match all operands. If we see an out-of-range operand, | |
5408 | then continue trying to match the rest of the operands, since if | |
5409 | the rest match, then this idesc will give the best error message. */ | |
5410 | ||
5411 | out_of_range_pos = -1; | |
800eeca4 | 5412 | for (i = 0; i < num_operands && idesc->operands[i]; ++i) |
87f8eb97 JW |
5413 | { |
5414 | result = operand_match (idesc, i, CURR_SLOT.opnd + i); | |
5415 | if (result != OPERAND_MATCH) | |
5416 | { | |
5417 | if (result != OPERAND_OUT_OF_RANGE) | |
5418 | break; | |
5419 | if (out_of_range_pos < 0) | |
5420 | /* remember position of the first out-of-range operand: */ | |
5421 | out_of_range_pos = i; | |
5422 | } | |
5423 | } | |
800eeca4 | 5424 | |
87f8eb97 JW |
5425 | /* If we did not match all operands, or if at least one operand was |
5426 | out-of-range, then this idesc does not match. Keep track of which | |
5427 | idesc matched the most operands before failing. If we have two | |
5428 | idescs that failed at the same position, and one had an out-of-range | |
5429 | operand, then prefer the out-of-range operand. Thus if we have | |
5430 | "add r0=0x1000000,r1" we get an error saying the constant is out | |
5431 | of range instead of an error saying that the constant should have been | |
5432 | a register. */ | |
5433 | ||
5434 | if (i != num_operands || out_of_range_pos >= 0) | |
800eeca4 | 5435 | { |
87f8eb97 JW |
5436 | if (i > highest_unmatched_operand |
5437 | || (i == highest_unmatched_operand | |
5438 | && out_of_range_pos > curr_out_of_range_pos)) | |
800eeca4 JW |
5439 | { |
5440 | highest_unmatched_operand = i; | |
87f8eb97 JW |
5441 | if (out_of_range_pos >= 0) |
5442 | { | |
5443 | expected_operand = idesc->operands[out_of_range_pos]; | |
5444 | error_pos = out_of_range_pos; | |
5445 | } | |
5446 | else | |
5447 | { | |
5448 | expected_operand = idesc->operands[i]; | |
5449 | error_pos = i; | |
5450 | } | |
5451 | curr_out_of_range_pos = out_of_range_pos; | |
800eeca4 JW |
5452 | } |
5453 | continue; | |
5454 | } | |
5455 | ||
5456 | if (num_operands < NELEMS (idesc->operands) | |
5457 | && idesc->operands[num_operands]) | |
5458 | continue; /* mismatch in number of arguments */ | |
5459 | ||
5460 | break; | |
5461 | } | |
5462 | if (!idesc) | |
5463 | { | |
5464 | if (expected_operand) | |
5465 | as_bad ("Operand %u of `%s' should be %s", | |
87f8eb97 | 5466 | error_pos + 1, mnemonic, |
800eeca4 JW |
5467 | elf64_ia64_operands[expected_operand].desc); |
5468 | else | |
5469 | as_bad ("Operand mismatch"); | |
5470 | return 0; | |
5471 | } | |
5472 | return idesc; | |
5473 | } | |
5474 | ||
88be23ec BS |
5475 | /* Keep track of state necessary to determine whether a NOP is necessary |
5476 | to avoid an erratum in A and B step Itanium chips, and return 1 if we | |
5477 | detect a case where additional NOPs may be necessary. */ | |
5478 | static int | |
5479 | errata_nop_necessary_p (slot, insn_unit) | |
5480 | struct slot *slot; | |
5481 | enum ia64_unit insn_unit; | |
5482 | { | |
5483 | int i; | |
5484 | struct group *this_group = md.last_groups + md.group_idx; | |
5485 | struct group *prev_group = md.last_groups + (md.group_idx + 2) % 3; | |
5486 | struct ia64_opcode *idesc = slot->idesc; | |
5487 | ||
5488 | /* Test whether this could be the first insn in a problematic sequence. */ | |
5489 | if (insn_unit == IA64_UNIT_F) | |
5490 | { | |
5491 | for (i = 0; i < idesc->num_outputs; i++) | |
5492 | if (idesc->operands[i] == IA64_OPND_P1 | |
5493 | || idesc->operands[i] == IA64_OPND_P2) | |
5494 | { | |
5495 | int regno = slot->opnd[i].X_add_number - REG_P; | |
3557da92 | 5496 | /* Ignore invalid operands; they generate errors elsewhere. */ |
ca683b78 | 5497 | if (regno >= 64) |
3557da92 | 5498 | return 0; |
88be23ec BS |
5499 | this_group->p_reg_set[regno] = 1; |
5500 | } | |
5501 | } | |
5502 | ||
5503 | /* Test whether this could be the second insn in a problematic sequence. */ | |
5504 | if (insn_unit == IA64_UNIT_M && slot->qp_regno > 0 | |
5505 | && prev_group->p_reg_set[slot->qp_regno]) | |
5506 | { | |
5507 | for (i = 0; i < idesc->num_outputs; i++) | |
5508 | if (idesc->operands[i] == IA64_OPND_R1 | |
5509 | || idesc->operands[i] == IA64_OPND_R2 | |
5510 | || idesc->operands[i] == IA64_OPND_R3) | |
5511 | { | |
5512 | int regno = slot->opnd[i].X_add_number - REG_GR; | |
3557da92 | 5513 | /* Ignore invalid operands; they generate errors elsewhere. */ |
ca683b78 | 5514 | if (regno >= 128) |
3557da92 | 5515 | return 0; |
88be23ec BS |
5516 | if (strncmp (idesc->name, "add", 3) != 0 |
5517 | && strncmp (idesc->name, "sub", 3) != 0 | |
5518 | && strncmp (idesc->name, "shladd", 6) != 0 | |
5519 | && (idesc->flags & IA64_OPCODE_POSTINC) == 0) | |
5520 | this_group->g_reg_set_conditionally[regno] = 1; | |
5521 | } | |
5522 | } | |
5523 | ||
5524 | /* Test whether this could be the third insn in a problematic sequence. */ | |
5525 | for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; i++) | |
5526 | { | |
5527 | if (/* For fc, ptc, ptr, tak, thash, tpa, ttag, probe, ptr, ptc. */ | |
5528 | idesc->operands[i] == IA64_OPND_R3 | |
5529 | /* For mov indirect. */ | |
5530 | || idesc->operands[i] == IA64_OPND_RR_R3 | |
5531 | || idesc->operands[i] == IA64_OPND_DBR_R3 | |
5532 | || idesc->operands[i] == IA64_OPND_IBR_R3 | |
5533 | || idesc->operands[i] == IA64_OPND_PKR_R3 | |
5534 | || idesc->operands[i] == IA64_OPND_PMC_R3 | |
5535 | || idesc->operands[i] == IA64_OPND_PMD_R3 | |
5536 | || idesc->operands[i] == IA64_OPND_MSR_R3 | |
5537 | || idesc->operands[i] == IA64_OPND_CPUID_R3 | |
5538 | /* For itr. */ | |
5539 | || idesc->operands[i] == IA64_OPND_ITR_R3 | |
5540 | || idesc->operands[i] == IA64_OPND_DTR_R3 | |
5541 | /* Normal memory addresses (load, store, xchg, cmpxchg, etc.). */ | |
5542 | || idesc->operands[i] == IA64_OPND_MR3) | |
5543 | { | |
5544 | int regno = slot->opnd[i].X_add_number - REG_GR; | |
3557da92 | 5545 | /* Ignore invalid operands; they generate errors elsewhere. */ |
ca683b78 | 5546 | if (regno >= 128) |
3557da92 | 5547 | return 0; |
88be23ec BS |
5548 | if (idesc->operands[i] == IA64_OPND_R3) |
5549 | { | |
5550 | if (strcmp (idesc->name, "fc") != 0 | |
5551 | && strcmp (idesc->name, "tak") != 0 | |
5552 | && strcmp (idesc->name, "thash") != 0 | |
5553 | && strcmp (idesc->name, "tpa") != 0 | |
5554 | && strcmp (idesc->name, "ttag") != 0 | |
5555 | && strncmp (idesc->name, "ptr", 3) != 0 | |
5556 | && strncmp (idesc->name, "ptc", 3) != 0 | |
5557 | && strncmp (idesc->name, "probe", 5) != 0) | |
5558 | return 0; | |
5559 | } | |
bc805888 | 5560 | if (prev_group->g_reg_set_conditionally[regno]) |
88be23ec BS |
5561 | return 1; |
5562 | } | |
5563 | } | |
5564 | return 0; | |
5565 | } | |
5566 | ||
800eeca4 JW |
5567 | static void |
5568 | build_insn (slot, insnp) | |
5569 | struct slot *slot; | |
5570 | bfd_vma *insnp; | |
5571 | { | |
5572 | const struct ia64_operand *odesc, *o2desc; | |
5573 | struct ia64_opcode *idesc = slot->idesc; | |
5574 | bfd_signed_vma insn, val; | |
5575 | const char *err; | |
5576 | int i; | |
5577 | ||
5578 | insn = idesc->opcode | slot->qp_regno; | |
5579 | ||
5580 | for (i = 0; i < NELEMS (idesc->operands) && idesc->operands[i]; ++i) | |
5581 | { | |
c67e42c9 RH |
5582 | if (slot->opnd[i].X_op == O_register |
5583 | || slot->opnd[i].X_op == O_constant | |
5584 | || slot->opnd[i].X_op == O_index) | |
5585 | val = slot->opnd[i].X_add_number; | |
5586 | else if (slot->opnd[i].X_op == O_big) | |
800eeca4 | 5587 | { |
c67e42c9 RH |
5588 | /* This must be the value 0x10000000000000000. */ |
5589 | assert (idesc->operands[i] == IA64_OPND_IMM8M1U8); | |
5590 | val = 0; | |
5591 | } | |
5592 | else | |
5593 | val = 0; | |
5594 | ||
5595 | switch (idesc->operands[i]) | |
5596 | { | |
5597 | case IA64_OPND_IMMU64: | |
800eeca4 JW |
5598 | *insnp++ = (val >> 22) & 0x1ffffffffffLL; |
5599 | insn |= (((val & 0x7f) << 13) | (((val >> 7) & 0x1ff) << 27) | |
5600 | | (((val >> 16) & 0x1f) << 22) | (((val >> 21) & 0x1) << 21) | |
5601 | | (((val >> 63) & 0x1) << 36)); | |
c67e42c9 RH |
5602 | continue; |
5603 | ||
5604 | case IA64_OPND_IMMU62: | |
542d6675 KH |
5605 | val &= 0x3fffffffffffffffULL; |
5606 | if (val != slot->opnd[i].X_add_number) | |
5607 | as_warn (_("Value truncated to 62 bits")); | |
5608 | *insnp++ = (val >> 21) & 0x1ffffffffffLL; | |
5609 | insn |= (((val & 0xfffff) << 6) | (((val >> 20) & 0x1) << 36)); | |
c67e42c9 | 5610 | continue; |
800eeca4 | 5611 | |
c67e42c9 RH |
5612 | case IA64_OPND_TGT64: |
5613 | val >>= 4; | |
5614 | *insnp++ = ((val >> 20) & 0x7fffffffffLL) << 2; | |
5615 | insn |= ((((val >> 59) & 0x1) << 36) | |
5616 | | (((val >> 0) & 0xfffff) << 13)); | |
5617 | continue; | |
800eeca4 | 5618 | |
c67e42c9 RH |
5619 | case IA64_OPND_AR3: |
5620 | val -= REG_AR; | |
5621 | break; | |
5622 | ||
5623 | case IA64_OPND_B1: | |
5624 | case IA64_OPND_B2: | |
5625 | val -= REG_BR; | |
5626 | break; | |
5627 | ||
5628 | case IA64_OPND_CR3: | |
5629 | val -= REG_CR; | |
5630 | break; | |
5631 | ||
5632 | case IA64_OPND_F1: | |
5633 | case IA64_OPND_F2: | |
5634 | case IA64_OPND_F3: | |
5635 | case IA64_OPND_F4: | |
5636 | val -= REG_FR; | |
5637 | break; | |
5638 | ||
5639 | case IA64_OPND_P1: | |
5640 | case IA64_OPND_P2: | |
5641 | val -= REG_P; | |
5642 | break; | |
5643 | ||
5644 | case IA64_OPND_R1: | |
5645 | case IA64_OPND_R2: | |
5646 | case IA64_OPND_R3: | |
5647 | case IA64_OPND_R3_2: | |
5648 | case IA64_OPND_CPUID_R3: | |
5649 | case IA64_OPND_DBR_R3: | |
5650 | case IA64_OPND_DTR_R3: | |
5651 | case IA64_OPND_ITR_R3: | |
5652 | case IA64_OPND_IBR_R3: | |
5653 | case IA64_OPND_MR3: | |
5654 | case IA64_OPND_MSR_R3: | |
5655 | case IA64_OPND_PKR_R3: | |
5656 | case IA64_OPND_PMC_R3: | |
5657 | case IA64_OPND_PMD_R3: | |
197865e8 | 5658 | case IA64_OPND_RR_R3: |
c67e42c9 RH |
5659 | val -= REG_GR; |
5660 | break; | |
5661 | ||
5662 | default: | |
5663 | break; | |
5664 | } | |
5665 | ||
5666 | odesc = elf64_ia64_operands + idesc->operands[i]; | |
5667 | err = (*odesc->insert) (odesc, val, &insn); | |
5668 | if (err) | |
5669 | as_bad_where (slot->src_file, slot->src_line, | |
5670 | "Bad operand value: %s", err); | |
5671 | if (idesc->flags & IA64_OPCODE_PSEUDO) | |
5672 | { | |
5673 | if ((idesc->flags & IA64_OPCODE_F2_EQ_F3) | |
5674 | && odesc == elf64_ia64_operands + IA64_OPND_F3) | |
5675 | { | |
5676 | o2desc = elf64_ia64_operands + IA64_OPND_F2; | |
5677 | (*o2desc->insert) (o2desc, val, &insn); | |
800eeca4 | 5678 | } |
c67e42c9 RH |
5679 | if ((idesc->flags & IA64_OPCODE_LEN_EQ_64MCNT) |
5680 | && (odesc == elf64_ia64_operands + IA64_OPND_CPOS6a | |
5681 | || odesc == elf64_ia64_operands + IA64_OPND_POS6)) | |
800eeca4 | 5682 | { |
c67e42c9 RH |
5683 | o2desc = elf64_ia64_operands + IA64_OPND_LEN6; |
5684 | (*o2desc->insert) (o2desc, 64 - val, &insn); | |
800eeca4 JW |
5685 | } |
5686 | } | |
5687 | } | |
5688 | *insnp = insn; | |
5689 | } | |
5690 | ||
5691 | static void | |
5692 | emit_one_bundle () | |
5693 | { | |
5694 | unsigned int manual_bundling_on = 0, manual_bundling_off = 0; | |
5695 | unsigned int manual_bundling = 0; | |
5696 | enum ia64_unit required_unit, insn_unit = 0; | |
5697 | enum ia64_insn_type type[3], insn_type; | |
5698 | unsigned int template, orig_template; | |
542d6675 | 5699 | bfd_vma insn[3] = { -1, -1, -1 }; |
800eeca4 JW |
5700 | struct ia64_opcode *idesc; |
5701 | int end_of_insn_group = 0, user_template = -1; | |
5702 | int n, i, j, first, curr; | |
2434f565 | 5703 | unw_rec_list *ptr; |
800eeca4 JW |
5704 | bfd_vma t0 = 0, t1 = 0; |
5705 | struct label_fix *lfix; | |
5706 | struct insn_fix *ifix; | |
5707 | char mnemonic[16]; | |
5708 | fixS *fix; | |
5709 | char *f; | |
5710 | ||
5711 | first = (md.curr_slot + NUM_SLOTS - md.num_slots_in_use) % NUM_SLOTS; | |
5712 | know (first >= 0 & first < NUM_SLOTS); | |
5713 | n = MIN (3, md.num_slots_in_use); | |
5714 | ||
5715 | /* Determine template: user user_template if specified, best match | |
542d6675 | 5716 | otherwise: */ |
800eeca4 JW |
5717 | |
5718 | if (md.slot[first].user_template >= 0) | |
5719 | user_template = template = md.slot[first].user_template; | |
5720 | else | |
5721 | { | |
032efc85 | 5722 | /* Auto select appropriate template. */ |
800eeca4 JW |
5723 | memset (type, 0, sizeof (type)); |
5724 | curr = first; | |
5725 | for (i = 0; i < n; ++i) | |
5726 | { | |
032efc85 RH |
5727 | if (md.slot[curr].label_fixups && i != 0) |
5728 | break; | |
800eeca4 JW |
5729 | type[i] = md.slot[curr].idesc->type; |
5730 | curr = (curr + 1) % NUM_SLOTS; | |
5731 | } | |
5732 | template = best_template[type[0]][type[1]][type[2]]; | |
5733 | } | |
5734 | ||
542d6675 | 5735 | /* initialize instructions with appropriate nops: */ |
800eeca4 JW |
5736 | for (i = 0; i < 3; ++i) |
5737 | insn[i] = nop[ia64_templ_desc[template].exec_unit[i]]; | |
5738 | ||
5739 | f = frag_more (16); | |
5740 | ||
542d6675 | 5741 | /* now fill in slots with as many insns as possible: */ |
800eeca4 JW |
5742 | curr = first; |
5743 | idesc = md.slot[curr].idesc; | |
5744 | end_of_insn_group = 0; | |
5745 | for (i = 0; i < 3 && md.num_slots_in_use > 0; ++i) | |
5746 | { | |
e0c9811a JW |
5747 | /* Set the slot number for prologue/body records now as those |
5748 | refer to the current point, not the point after the | |
542d6675 | 5749 | instruction has been issued: */ |
10850f29 JW |
5750 | /* Don't try to delete prologue/body records here, as that will cause |
5751 | them to also be deleted from the master list of unwind records. */ | |
e0c9811a | 5752 | for (ptr = md.slot[curr].unwind_record; ptr; ptr = ptr->next) |
10850f29 JW |
5753 | if (ptr->r.type == prologue || ptr->r.type == prologue_gr |
5754 | || ptr->r.type == body) | |
f5a30c2e JW |
5755 | { |
5756 | ptr->slot_number = (unsigned long) f + i; | |
5757 | ptr->slot_frag = frag_now; | |
5758 | } | |
e0c9811a | 5759 | |
800eeca4 JW |
5760 | if (idesc->flags & IA64_OPCODE_SLOT2) |
5761 | { | |
5762 | if (manual_bundling && i != 2) | |
5763 | as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line, | |
5764 | "`%s' must be last in bundle", idesc->name); | |
5765 | else | |
5766 | i = 2; | |
5767 | } | |
5768 | if (idesc->flags & IA64_OPCODE_LAST) | |
5769 | { | |
2434f565 JW |
5770 | int required_slot; |
5771 | unsigned int required_template; | |
800eeca4 JW |
5772 | |
5773 | /* If we need a stop bit after an M slot, our only choice is | |
5774 | template 5 (M;;MI). If we need a stop bit after a B | |
5775 | slot, our only choice is to place it at the end of the | |
5776 | bundle, because the only available templates are MIB, | |
5777 | MBB, BBB, MMB, and MFB. We don't handle anything other | |
5778 | than M and B slots because these are the only kind of | |
5779 | instructions that can have the IA64_OPCODE_LAST bit set. */ | |
5780 | required_template = template; | |
5781 | switch (idesc->type) | |
5782 | { | |
5783 | case IA64_TYPE_M: | |
5784 | required_slot = 0; | |
5785 | required_template = 5; | |
5786 | break; | |
5787 | ||
5788 | case IA64_TYPE_B: | |
5789 | required_slot = 2; | |
5790 | break; | |
5791 | ||
5792 | default: | |
5793 | as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line, | |
5794 | "Internal error: don't know how to force %s to end" | |
5795 | "of instruction group", idesc->name); | |
5796 | required_slot = i; | |
5797 | break; | |
5798 | } | |
5799 | if (manual_bundling && i != required_slot) | |
5800 | as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line, | |
5801 | "`%s' must be last in instruction group", | |
5802 | idesc->name); | |
5803 | if (required_slot < i) | |
5804 | /* Can't fit this instruction. */ | |
5805 | break; | |
5806 | ||
5807 | i = required_slot; | |
5808 | if (required_template != template) | |
5809 | { | |
5810 | /* If we switch the template, we need to reset the NOPs | |
5811 | after slot i. The slot-types of the instructions ahead | |
5812 | of i never change, so we don't need to worry about | |
5813 | changing NOPs in front of this slot. */ | |
5814 | for (j = i; j < 3; ++j) | |
5815 | insn[j] = nop[ia64_templ_desc[required_template].exec_unit[j]]; | |
5816 | } | |
5817 | template = required_template; | |
5818 | } | |
5819 | if (curr != first && md.slot[curr].label_fixups) | |
5820 | { | |
5821 | if (manual_bundling_on) | |
5822 | as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line, | |
5823 | "Label must be first in a bundle"); | |
5824 | /* This insn must go into the first slot of a bundle. */ | |
5825 | break; | |
5826 | } | |
5827 | ||
5828 | manual_bundling_on = md.slot[curr].manual_bundling_on; | |
5829 | manual_bundling_off = md.slot[curr].manual_bundling_off; | |
5830 | ||
5831 | if (manual_bundling_on) | |
5832 | { | |
5833 | if (curr == first) | |
5834 | manual_bundling = 1; | |
5835 | else | |
5836 | break; /* need to start a new bundle */ | |
5837 | } | |
5838 | ||
5839 | if (end_of_insn_group && md.num_slots_in_use >= 1) | |
5840 | { | |
5841 | /* We need an instruction group boundary in the middle of a | |
5842 | bundle. See if we can switch to an other template with | |
5843 | an appropriate boundary. */ | |
5844 | ||
5845 | orig_template = template; | |
5846 | if (i == 1 && (user_template == 4 | |
5847 | || (user_template < 0 | |
5848 | && (ia64_templ_desc[template].exec_unit[0] | |
5849 | == IA64_UNIT_M)))) | |
5850 | { | |
5851 | template = 5; | |
5852 | end_of_insn_group = 0; | |
5853 | } | |
5854 | else if (i == 2 && (user_template == 0 | |
5855 | || (user_template < 0 | |
5856 | && (ia64_templ_desc[template].exec_unit[1] | |
5857 | == IA64_UNIT_I))) | |
5858 | /* This test makes sure we don't switch the template if | |
5859 | the next instruction is one that needs to be first in | |
5860 | an instruction group. Since all those instructions are | |
5861 | in the M group, there is no way such an instruction can | |
5862 | fit in this bundle even if we switch the template. The | |
5863 | reason we have to check for this is that otherwise we | |
5864 | may end up generating "MI;;I M.." which has the deadly | |
5865 | effect that the second M instruction is no longer the | |
5866 | first in the bundle! --davidm 99/12/16 */ | |
5867 | && (idesc->flags & IA64_OPCODE_FIRST) == 0) | |
5868 | { | |
5869 | template = 1; | |
5870 | end_of_insn_group = 0; | |
5871 | } | |
5872 | else if (curr != first) | |
5873 | /* can't fit this insn */ | |
5874 | break; | |
5875 | ||
5876 | if (template != orig_template) | |
5877 | /* if we switch the template, we need to reset the NOPs | |
5878 | after slot i. The slot-types of the instructions ahead | |
5879 | of i never change, so we don't need to worry about | |
5880 | changing NOPs in front of this slot. */ | |
5881 | for (j = i; j < 3; ++j) | |
5882 | insn[j] = nop[ia64_templ_desc[template].exec_unit[j]]; | |
5883 | } | |
5884 | required_unit = ia64_templ_desc[template].exec_unit[i]; | |
5885 | ||
542d6675 | 5886 | /* resolve dynamic opcodes such as "break" and "nop": */ |
800eeca4 JW |
5887 | if (idesc->type == IA64_TYPE_DYN) |
5888 | { | |
5889 | if ((strcmp (idesc->name, "nop") == 0) | |
5890 | || (strcmp (idesc->name, "break") == 0)) | |
5891 | insn_unit = required_unit; | |
5892 | else if (strcmp (idesc->name, "chk.s") == 0) | |
5893 | { | |
5894 | insn_unit = IA64_UNIT_M; | |
5895 | if (required_unit == IA64_UNIT_I) | |
5896 | insn_unit = IA64_UNIT_I; | |
5897 | } | |
5898 | else | |
5899 | as_fatal ("emit_one_bundle: unexpected dynamic op"); | |
5900 | ||
5901 | sprintf (mnemonic, "%s.%c", idesc->name, "?imbf??"[insn_unit]); | |
3d56ab85 | 5902 | ia64_free_opcode (idesc); |
800eeca4 JW |
5903 | md.slot[curr].idesc = idesc = ia64_find_opcode (mnemonic); |
5904 | #if 0 | |
5905 | know (!idesc->next); /* no resolved dynamic ops have collisions */ | |
5906 | #endif | |
5907 | } | |
5908 | else | |
5909 | { | |
5910 | insn_type = idesc->type; | |
5911 | insn_unit = IA64_UNIT_NIL; | |
5912 | switch (insn_type) | |
5913 | { | |
5914 | case IA64_TYPE_A: | |
5915 | if (required_unit == IA64_UNIT_I || required_unit == IA64_UNIT_M) | |
5916 | insn_unit = required_unit; | |
5917 | break; | |
542d6675 | 5918 | case IA64_TYPE_X: insn_unit = IA64_UNIT_L; break; |
800eeca4 JW |
5919 | case IA64_TYPE_I: insn_unit = IA64_UNIT_I; break; |
5920 | case IA64_TYPE_M: insn_unit = IA64_UNIT_M; break; | |
5921 | case IA64_TYPE_B: insn_unit = IA64_UNIT_B; break; | |
5922 | case IA64_TYPE_F: insn_unit = IA64_UNIT_F; break; | |
5923 | default: break; | |
5924 | } | |
5925 | } | |
5926 | ||
5927 | if (insn_unit != required_unit) | |
5928 | { | |
5929 | if (required_unit == IA64_UNIT_L | |
542d6675 | 5930 | && insn_unit == IA64_UNIT_I |
800eeca4 JW |
5931 | && !(idesc->flags & IA64_OPCODE_X_IN_MLX)) |
5932 | { | |
5933 | /* we got ourselves an MLX template but the current | |
197865e8 | 5934 | instruction isn't an X-unit, or an I-unit instruction |
800eeca4 JW |
5935 | that can go into the X slot of an MLX template. Duh. */ |
5936 | if (md.num_slots_in_use >= NUM_SLOTS) | |
5937 | { | |
5938 | as_bad_where (md.slot[curr].src_file, | |
5939 | md.slot[curr].src_line, | |
5940 | "`%s' can't go in X slot of " | |
5941 | "MLX template", idesc->name); | |
542d6675 | 5942 | /* drop this insn so we don't livelock: */ |
800eeca4 JW |
5943 | --md.num_slots_in_use; |
5944 | } | |
5945 | break; | |
5946 | } | |
5947 | continue; /* try next slot */ | |
5948 | } | |
5949 | ||
800eeca4 JW |
5950 | { |
5951 | bfd_vma addr; | |
5952 | ||
f1bcba5b | 5953 | addr = frag_now->fr_address + frag_now_fix () - 16 + i; |
800eeca4 JW |
5954 | dwarf2_gen_line_info (addr, &md.slot[curr].debug_line); |
5955 | } | |
5956 | ||
88be23ec BS |
5957 | if (errata_nop_necessary_p (md.slot + curr, insn_unit)) |
5958 | as_warn (_("Additional NOP may be necessary to workaround Itanium processor A/B step errata")); | |
5959 | ||
800eeca4 JW |
5960 | build_insn (md.slot + curr, insn + i); |
5961 | ||
10850f29 JW |
5962 | /* Set slot counts for non prologue/body unwind records. */ |
5963 | for (ptr = md.slot[curr].unwind_record; ptr; ptr = ptr->next) | |
5964 | if (ptr->r.type != prologue && ptr->r.type != prologue_gr | |
5965 | && ptr->r.type != body) | |
f5a30c2e JW |
5966 | { |
5967 | ptr->slot_number = (unsigned long) f + i; | |
5968 | ptr->slot_frag = frag_now; | |
5969 | } | |
10850f29 | 5970 | md.slot[curr].unwind_record = NULL; |
10850f29 | 5971 | |
800eeca4 JW |
5972 | if (required_unit == IA64_UNIT_L) |
5973 | { | |
5974 | know (i == 1); | |
5975 | /* skip one slot for long/X-unit instructions */ | |
5976 | ++i; | |
5977 | } | |
5978 | --md.num_slots_in_use; | |
5979 | ||
542d6675 | 5980 | /* now is a good time to fix up the labels for this insn: */ |
800eeca4 JW |
5981 | for (lfix = md.slot[curr].label_fixups; lfix; lfix = lfix->next) |
5982 | { | |
5983 | S_SET_VALUE (lfix->sym, frag_now_fix () - 16); | |
5984 | symbol_set_frag (lfix->sym, frag_now); | |
5985 | } | |
f1bcba5b JW |
5986 | /* and fix up the tags also. */ |
5987 | for (lfix = md.slot[curr].tag_fixups; lfix; lfix = lfix->next) | |
5988 | { | |
5989 | S_SET_VALUE (lfix->sym, frag_now_fix () - 16 + i); | |
5990 | symbol_set_frag (lfix->sym, frag_now); | |
5991 | } | |
800eeca4 JW |
5992 | |
5993 | for (j = 0; j < md.slot[curr].num_fixups; ++j) | |
5994 | { | |
5995 | ifix = md.slot[curr].fixup + j; | |
5a080f89 | 5996 | fix = fix_new_exp (frag_now, frag_now_fix () - 16 + i, 8, |
800eeca4 JW |
5997 | &ifix->expr, ifix->is_pcrel, ifix->code); |
5998 | fix->tc_fix_data.opnd = ifix->opnd; | |
5999 | fix->fx_plt = (fix->fx_r_type == BFD_RELOC_IA64_PLTOFF22); | |
6000 | fix->fx_file = md.slot[curr].src_file; | |
6001 | fix->fx_line = md.slot[curr].src_line; | |
6002 | } | |
6003 | ||
6004 | end_of_insn_group = md.slot[curr].end_of_insn_group; | |
6005 | ||
88be23ec BS |
6006 | if (end_of_insn_group) |
6007 | { | |
6008 | md.group_idx = (md.group_idx + 1) % 3; | |
6009 | memset (md.last_groups + md.group_idx, 0, sizeof md.last_groups[0]); | |
6010 | } | |
6011 | ||
542d6675 | 6012 | /* clear slot: */ |
800eeca4 JW |
6013 | ia64_free_opcode (md.slot[curr].idesc); |
6014 | memset (md.slot + curr, 0, sizeof (md.slot[curr])); | |
6015 | md.slot[curr].user_template = -1; | |
6016 | ||
6017 | if (manual_bundling_off) | |
6018 | { | |
6019 | manual_bundling = 0; | |
6020 | break; | |
6021 | } | |
6022 | curr = (curr + 1) % NUM_SLOTS; | |
6023 | idesc = md.slot[curr].idesc; | |
6024 | } | |
6025 | if (manual_bundling) | |
6026 | { | |
6027 | if (md.num_slots_in_use > 0) | |
6028 | as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line, | |
6029 | "`%s' does not fit into %s template", | |
6030 | idesc->name, ia64_templ_desc[template].name); | |
6031 | else | |
6032 | as_bad_where (md.slot[curr].src_file, md.slot[curr].src_line, | |
6033 | "Missing '}' at end of file"); | |
6034 | } | |
6035 | know (md.num_slots_in_use < NUM_SLOTS); | |
6036 | ||
6037 | t0 = end_of_insn_group | (template << 1) | (insn[0] << 5) | (insn[1] << 46); | |
6038 | t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23); | |
6039 | ||
44f5c83a JW |
6040 | number_to_chars_littleendian (f + 0, t0, 8); |
6041 | number_to_chars_littleendian (f + 8, t1, 8); | |
f5a30c2e JW |
6042 | |
6043 | unwind.next_slot_number = (unsigned long) f + 16; | |
6044 | unwind.next_slot_frag = frag_now; | |
800eeca4 JW |
6045 | } |
6046 | ||
6047 | int | |
6048 | md_parse_option (c, arg) | |
6049 | int c; | |
6050 | char *arg; | |
6051 | { | |
800eeca4 JW |
6052 | switch (c) |
6053 | { | |
c43c2cc5 | 6054 | /* Switches from the Intel assembler. */ |
44f5c83a | 6055 | case 'm': |
800eeca4 JW |
6056 | if (strcmp (arg, "ilp64") == 0 |
6057 | || strcmp (arg, "lp64") == 0 | |
6058 | || strcmp (arg, "p64") == 0) | |
6059 | { | |
6060 | md.flags |= EF_IA_64_ABI64; | |
6061 | } | |
6062 | else if (strcmp (arg, "ilp32") == 0) | |
6063 | { | |
6064 | md.flags &= ~EF_IA_64_ABI64; | |
6065 | } | |
6066 | else if (strcmp (arg, "le") == 0) | |
6067 | { | |
6068 | md.flags &= ~EF_IA_64_BE; | |
6069 | } | |
6070 | else if (strcmp (arg, "be") == 0) | |
6071 | { | |
6072 | md.flags |= EF_IA_64_BE; | |
6073 | } | |
6074 | else | |
6075 | return 0; | |
6076 | break; | |
6077 | ||
6078 | case 'N': | |
6079 | if (strcmp (arg, "so") == 0) | |
6080 | { | |
542d6675 | 6081 | /* Suppress signon message. */ |
800eeca4 JW |
6082 | } |
6083 | else if (strcmp (arg, "pi") == 0) | |
6084 | { | |
6085 | /* Reject privileged instructions. FIXME */ | |
6086 | } | |
6087 | else if (strcmp (arg, "us") == 0) | |
6088 | { | |
6089 | /* Allow union of signed and unsigned range. FIXME */ | |
6090 | } | |
6091 | else if (strcmp (arg, "close_fcalls") == 0) | |
6092 | { | |
6093 | /* Do not resolve global function calls. */ | |
6094 | } | |
6095 | else | |
6096 | return 0; | |
6097 | break; | |
6098 | ||
6099 | case 'C': | |
6100 | /* temp[="prefix"] Insert temporary labels into the object file | |
6101 | symbol table prefixed by "prefix". | |
6102 | Default prefix is ":temp:". | |
6103 | */ | |
6104 | break; | |
6105 | ||
6106 | case 'a': | |
800eeca4 JW |
6107 | /* indirect=<tgt> Assume unannotated indirect branches behavior |
6108 | according to <tgt> -- | |
6109 | exit: branch out from the current context (default) | |
6110 | labels: all labels in context may be branch targets | |
6111 | */ | |
85b40035 L |
6112 | if (strncmp (arg, "indirect=", 9) != 0) |
6113 | return 0; | |
800eeca4 JW |
6114 | break; |
6115 | ||
6116 | case 'x': | |
6117 | /* -X conflicts with an ignored option, use -x instead */ | |
6118 | md.detect_dv = 1; | |
6119 | if (!arg || strcmp (arg, "explicit") == 0) | |
542d6675 KH |
6120 | { |
6121 | /* set default mode to explicit */ | |
6122 | md.default_explicit_mode = 1; | |
6123 | break; | |
6124 | } | |
800eeca4 | 6125 | else if (strcmp (arg, "auto") == 0) |
542d6675 KH |
6126 | { |
6127 | md.default_explicit_mode = 0; | |
6128 | } | |
800eeca4 | 6129 | else if (strcmp (arg, "debug") == 0) |
542d6675 KH |
6130 | { |
6131 | md.debug_dv = 1; | |
6132 | } | |
800eeca4 | 6133 | else if (strcmp (arg, "debugx") == 0) |
542d6675 KH |
6134 | { |
6135 | md.default_explicit_mode = 1; | |
6136 | md.debug_dv = 1; | |
6137 | } | |
800eeca4 | 6138 | else |
542d6675 KH |
6139 | { |
6140 | as_bad (_("Unrecognized option '-x%s'"), arg); | |
6141 | } | |
800eeca4 JW |
6142 | break; |
6143 | ||
6144 | case 'S': | |
6145 | /* nops Print nops statistics. */ | |
6146 | break; | |
6147 | ||
c43c2cc5 JW |
6148 | /* GNU specific switches for gcc. */ |
6149 | case OPTION_MCONSTANT_GP: | |
6150 | md.flags |= EF_IA_64_CONS_GP; | |
6151 | break; | |
6152 | ||
6153 | case OPTION_MAUTO_PIC: | |
6154 | md.flags |= EF_IA_64_NOFUNCDESC_CONS_GP; | |
6155 | break; | |
6156 | ||
800eeca4 JW |
6157 | default: |
6158 | return 0; | |
6159 | } | |
6160 | ||
6161 | return 1; | |
6162 | } | |
6163 | ||
6164 | void | |
6165 | md_show_usage (stream) | |
6166 | FILE *stream; | |
6167 | { | |
542d6675 | 6168 | fputs (_("\ |
800eeca4 | 6169 | IA-64 options:\n\ |
44f5c83a JW |
6170 | -milp32|-milp64|-mlp64|-mp64 select data model (default -mlp64)\n\ |
6171 | -mle | -mbe select little- or big-endian byte order (default -mle)\n\ | |
800eeca4 JW |
6172 | -x | -xexplicit turn on dependency violation checking (default)\n\ |
6173 | -xauto automagically remove dependency violations\n\ | |
6174 | -xdebug debug dependency violation checker\n"), | |
6175 | stream); | |
6176 | } | |
6177 | ||
44576e1f RH |
6178 | /* Return true if TYPE fits in TEMPL at SLOT. */ |
6179 | ||
6180 | static int | |
800eeca4 JW |
6181 | match (int templ, int type, int slot) |
6182 | { | |
6183 | enum ia64_unit unit; | |
6184 | int result; | |
6185 | ||
6186 | unit = ia64_templ_desc[templ].exec_unit[slot]; | |
6187 | switch (type) | |
6188 | { | |
6189 | case IA64_TYPE_DYN: result = 1; break; /* for nop and break */ | |
6190 | case IA64_TYPE_A: | |
6191 | result = (unit == IA64_UNIT_I || unit == IA64_UNIT_M); | |
6192 | break; | |
6193 | case IA64_TYPE_X: result = (unit == IA64_UNIT_L); break; | |
6194 | case IA64_TYPE_I: result = (unit == IA64_UNIT_I); break; | |
6195 | case IA64_TYPE_M: result = (unit == IA64_UNIT_M); break; | |
6196 | case IA64_TYPE_B: result = (unit == IA64_UNIT_B); break; | |
6197 | case IA64_TYPE_F: result = (unit == IA64_UNIT_F); break; | |
6198 | default: result = 0; break; | |
6199 | } | |
6200 | return result; | |
6201 | } | |
6202 | ||
44576e1f RH |
6203 | /* Add a bit of extra goodness if a nop of type F or B would fit |
6204 | in TEMPL at SLOT. */ | |
6205 | ||
6206 | static inline int | |
6207 | extra_goodness (int templ, int slot) | |
6208 | { | |
ebeeafe6 | 6209 | if (slot == 1 && match (templ, IA64_TYPE_F, slot)) |
44576e1f | 6210 | return 2; |
ebeeafe6 | 6211 | if (slot == 2 && match (templ, IA64_TYPE_B, slot)) |
44576e1f RH |
6212 | return 1; |
6213 | return 0; | |
6214 | } | |
6215 | ||
800eeca4 JW |
6216 | /* This function is called once, at assembler startup time. It sets |
6217 | up all the tables, etc. that the MD part of the assembler will need | |
6218 | that can be determined before arguments are parsed. */ | |
6219 | void | |
6220 | md_begin () | |
6221 | { | |
44f5c83a | 6222 | int i, j, k, t, total, ar_base, cr_base, goodness, best, regnum, ok; |
800eeca4 JW |
6223 | const char *err; |
6224 | char name[8]; | |
6225 | ||
6226 | md.auto_align = 1; | |
6227 | md.explicit_mode = md.default_explicit_mode; | |
6228 | ||
6229 | bfd_set_section_alignment (stdoutput, text_section, 4); | |
6230 | ||
44f5c83a | 6231 | target_big_endian = TARGET_BYTES_BIG_ENDIAN; |
800eeca4 | 6232 | pseudo_func[FUNC_FPTR_RELATIVE].u.sym = |
542d6675 KH |
6233 | symbol_new (".<fptr>", undefined_section, FUNC_FPTR_RELATIVE, |
6234 | &zero_address_frag); | |
800eeca4 JW |
6235 | |
6236 | pseudo_func[FUNC_GP_RELATIVE].u.sym = | |
542d6675 KH |
6237 | symbol_new (".<gprel>", undefined_section, FUNC_GP_RELATIVE, |
6238 | &zero_address_frag); | |
800eeca4 JW |
6239 | |
6240 | pseudo_func[FUNC_LT_RELATIVE].u.sym = | |
542d6675 KH |
6241 | symbol_new (".<ltoff>", undefined_section, FUNC_LT_RELATIVE, |
6242 | &zero_address_frag); | |
800eeca4 | 6243 | |
c67e42c9 | 6244 | pseudo_func[FUNC_PC_RELATIVE].u.sym = |
542d6675 KH |
6245 | symbol_new (".<pcrel>", undefined_section, FUNC_PC_RELATIVE, |
6246 | &zero_address_frag); | |
c67e42c9 | 6247 | |
800eeca4 | 6248 | pseudo_func[FUNC_PLT_RELATIVE].u.sym = |
542d6675 KH |
6249 | symbol_new (".<pltoff>", undefined_section, FUNC_PLT_RELATIVE, |
6250 | &zero_address_frag); | |
800eeca4 JW |
6251 | |
6252 | pseudo_func[FUNC_SEC_RELATIVE].u.sym = | |
542d6675 KH |
6253 | symbol_new (".<secrel>", undefined_section, FUNC_SEC_RELATIVE, |
6254 | &zero_address_frag); | |
800eeca4 JW |
6255 | |
6256 | pseudo_func[FUNC_SEG_RELATIVE].u.sym = | |
542d6675 KH |
6257 | symbol_new (".<segrel>", undefined_section, FUNC_SEG_RELATIVE, |
6258 | &zero_address_frag); | |
800eeca4 JW |
6259 | |
6260 | pseudo_func[FUNC_LTV_RELATIVE].u.sym = | |
542d6675 KH |
6261 | symbol_new (".<ltv>", undefined_section, FUNC_LTV_RELATIVE, |
6262 | &zero_address_frag); | |
800eeca4 JW |
6263 | |
6264 | pseudo_func[FUNC_LT_FPTR_RELATIVE].u.sym = | |
542d6675 KH |
6265 | symbol_new (".<ltoff.fptr>", undefined_section, FUNC_LT_FPTR_RELATIVE, |
6266 | &zero_address_frag); | |
800eeca4 | 6267 | |
197865e8 | 6268 | /* Compute the table of best templates. We compute goodness as a |
44576e1f RH |
6269 | base 4 value, in which each match counts for 3, each F counts |
6270 | for 2, each B counts for 1. This should maximize the number of | |
6271 | F and B nops in the chosen bundles, which is good because these | |
6272 | pipelines are least likely to be overcommitted. */ | |
800eeca4 JW |
6273 | for (i = 0; i < IA64_NUM_TYPES; ++i) |
6274 | for (j = 0; j < IA64_NUM_TYPES; ++j) | |
6275 | for (k = 0; k < IA64_NUM_TYPES; ++k) | |
6276 | { | |
6277 | best = 0; | |
6278 | for (t = 0; t < NELEMS (ia64_templ_desc); ++t) | |
6279 | { | |
6280 | goodness = 0; | |
6281 | if (match (t, i, 0)) | |
6282 | { | |
6283 | if (match (t, j, 1)) | |
6284 | { | |
6285 | if (match (t, k, 2)) | |
44576e1f | 6286 | goodness = 3 + 3 + 3; |
800eeca4 | 6287 | else |
44576e1f | 6288 | goodness = 3 + 3 + extra_goodness (t, 2); |
800eeca4 JW |
6289 | } |
6290 | else if (match (t, j, 2)) | |
44576e1f | 6291 | goodness = 3 + 3 + extra_goodness (t, 1); |
800eeca4 | 6292 | else |
44576e1f RH |
6293 | { |
6294 | goodness = 3; | |
6295 | goodness += extra_goodness (t, 1); | |
6296 | goodness += extra_goodness (t, 2); | |
6297 | } | |
800eeca4 JW |
6298 | } |
6299 | else if (match (t, i, 1)) | |
6300 | { | |
6301 | if (match (t, j, 2)) | |
44576e1f | 6302 | goodness = 3 + 3; |
800eeca4 | 6303 | else |
44576e1f | 6304 | goodness = 3 + extra_goodness (t, 2); |
800eeca4 JW |
6305 | } |
6306 | else if (match (t, i, 2)) | |
44576e1f | 6307 | goodness = 3 + extra_goodness (t, 1); |
800eeca4 JW |
6308 | |
6309 | if (goodness > best) | |
6310 | { | |
6311 | best = goodness; | |
6312 | best_template[i][j][k] = t; | |
6313 | } | |
6314 | } | |
6315 | } | |
6316 | ||
6317 | for (i = 0; i < NUM_SLOTS; ++i) | |
6318 | md.slot[i].user_template = -1; | |
6319 | ||
6320 | md.pseudo_hash = hash_new (); | |
6321 | for (i = 0; i < NELEMS (pseudo_opcode); ++i) | |
6322 | { | |
6323 | err = hash_insert (md.pseudo_hash, pseudo_opcode[i].name, | |
6324 | (void *) (pseudo_opcode + i)); | |
6325 | if (err) | |
6326 | as_fatal ("ia64.md_begin: can't hash `%s': %s", | |
6327 | pseudo_opcode[i].name, err); | |
6328 | } | |
6329 | ||
6330 | md.reg_hash = hash_new (); | |
6331 | md.dynreg_hash = hash_new (); | |
6332 | md.const_hash = hash_new (); | |
6333 | md.entry_hash = hash_new (); | |
6334 | ||
542d6675 | 6335 | /* general registers: */ |
800eeca4 JW |
6336 | |
6337 | total = 128; | |
6338 | for (i = 0; i < total; ++i) | |
6339 | { | |
6340 | sprintf (name, "r%d", i - REG_GR); | |
6341 | md.regsym[i] = declare_register (name, i); | |
6342 | } | |
6343 | ||
542d6675 | 6344 | /* floating point registers: */ |
800eeca4 JW |
6345 | total += 128; |
6346 | for (; i < total; ++i) | |
6347 | { | |
6348 | sprintf (name, "f%d", i - REG_FR); | |
6349 | md.regsym[i] = declare_register (name, i); | |
6350 | } | |
6351 | ||
542d6675 | 6352 | /* application registers: */ |
800eeca4 JW |
6353 | total += 128; |
6354 | ar_base = i; | |
6355 | for (; i < total; ++i) | |
6356 | { | |
6357 | sprintf (name, "ar%d", i - REG_AR); | |
6358 | md.regsym[i] = declare_register (name, i); | |
6359 | } | |
6360 | ||
542d6675 | 6361 | /* control registers: */ |
800eeca4 JW |
6362 | total += 128; |
6363 | cr_base = i; | |
6364 | for (; i < total; ++i) | |
6365 | { | |
6366 | sprintf (name, "cr%d", i - REG_CR); | |
6367 | md.regsym[i] = declare_register (name, i); | |
6368 | } | |
6369 | ||
542d6675 | 6370 | /* predicate registers: */ |
800eeca4 JW |
6371 | total += 64; |
6372 | for (; i < total; ++i) | |
6373 | { | |
6374 | sprintf (name, "p%d", i - REG_P); | |
6375 | md.regsym[i] = declare_register (name, i); | |
6376 | } | |
6377 | ||
542d6675 | 6378 | /* branch registers: */ |
800eeca4 JW |
6379 | total += 8; |
6380 | for (; i < total; ++i) | |
6381 | { | |
6382 | sprintf (name, "b%d", i - REG_BR); | |
6383 | md.regsym[i] = declare_register (name, i); | |
6384 | } | |
6385 | ||
6386 | md.regsym[REG_IP] = declare_register ("ip", REG_IP); | |
6387 | md.regsym[REG_CFM] = declare_register ("cfm", REG_CFM); | |
6388 | md.regsym[REG_PR] = declare_register ("pr", REG_PR); | |
6389 | md.regsym[REG_PR_ROT] = declare_register ("pr.rot", REG_PR_ROT); | |
6390 | md.regsym[REG_PSR] = declare_register ("psr", REG_PSR); | |
6391 | md.regsym[REG_PSR_L] = declare_register ("psr.l", REG_PSR_L); | |
6392 | md.regsym[REG_PSR_UM] = declare_register ("psr.um", REG_PSR_UM); | |
6393 | ||
6394 | for (i = 0; i < NELEMS (indirect_reg); ++i) | |
6395 | { | |
6396 | regnum = indirect_reg[i].regnum; | |
6397 | md.regsym[regnum] = declare_register (indirect_reg[i].name, regnum); | |
6398 | } | |
6399 | ||
542d6675 | 6400 | /* define synonyms for application registers: */ |
800eeca4 JW |
6401 | for (i = REG_AR; i < REG_AR + NELEMS (ar); ++i) |
6402 | md.regsym[i] = declare_register (ar[i - REG_AR].name, | |
6403 | REG_AR + ar[i - REG_AR].regnum); | |
6404 | ||
542d6675 | 6405 | /* define synonyms for control registers: */ |
800eeca4 JW |
6406 | for (i = REG_CR; i < REG_CR + NELEMS (cr); ++i) |
6407 | md.regsym[i] = declare_register (cr[i - REG_CR].name, | |
6408 | REG_CR + cr[i - REG_CR].regnum); | |
6409 | ||
6410 | declare_register ("gp", REG_GR + 1); | |
6411 | declare_register ("sp", REG_GR + 12); | |
6412 | declare_register ("rp", REG_BR + 0); | |
6413 | ||
542d6675 | 6414 | /* pseudo-registers used to specify unwind info: */ |
e0c9811a JW |
6415 | declare_register ("psp", REG_PSP); |
6416 | ||
800eeca4 JW |
6417 | declare_register_set ("ret", 4, REG_GR + 8); |
6418 | declare_register_set ("farg", 8, REG_FR + 8); | |
6419 | declare_register_set ("fret", 8, REG_FR + 8); | |
6420 | ||
6421 | for (i = 0; i < NELEMS (const_bits); ++i) | |
6422 | { | |
6423 | err = hash_insert (md.const_hash, const_bits[i].name, | |
6424 | (PTR) (const_bits + i)); | |
6425 | if (err) | |
6426 | as_fatal ("Inserting \"%s\" into constant hash table failed: %s", | |
6427 | name, err); | |
6428 | } | |
6429 | ||
44f5c83a JW |
6430 | /* Set the architecture and machine depending on defaults and command line |
6431 | options. */ | |
6432 | if (md.flags & EF_IA_64_ABI64) | |
6433 | ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf64); | |
6434 | else | |
6435 | ok = bfd_set_arch_mach (stdoutput, bfd_arch_ia64, bfd_mach_ia64_elf32); | |
6436 | ||
6437 | if (! ok) | |
6438 | as_warn (_("Could not set architecture and machine")); | |
800eeca4 JW |
6439 | |
6440 | md.mem_offset.hint = 0; | |
6441 | md.path = 0; | |
6442 | md.maxpaths = 0; | |
6443 | md.entry_labels = NULL; | |
6444 | } | |
6445 | ||
44f5c83a JW |
6446 | /* Set the elf type to 64 bit ABI by default. Cannot do this in md_begin |
6447 | because that is called after md_parse_option which is where we do the | |
6448 | dynamic changing of md.flags based on -mlp64 or -milp32. Also, set the | |
6449 | default endianness. */ | |
6450 | ||
6451 | void | |
6452 | ia64_init (argc, argv) | |
2434f565 JW |
6453 | int argc ATTRIBUTE_UNUSED; |
6454 | char **argv ATTRIBUTE_UNUSED; | |
44f5c83a JW |
6455 | { |
6456 | md.flags = EF_IA_64_ABI64; | |
6457 | if (TARGET_BYTES_BIG_ENDIAN) | |
6458 | md.flags |= EF_IA_64_BE; | |
6459 | } | |
6460 | ||
6461 | /* Return a string for the target object file format. */ | |
6462 | ||
6463 | const char * | |
6464 | ia64_target_format () | |
6465 | { | |
6466 | if (OUTPUT_FLAVOR == bfd_target_elf_flavour) | |
6467 | { | |
72a76794 JW |
6468 | if (md.flags & EF_IA_64_BE) |
6469 | { | |
6470 | if (md.flags & EF_IA_64_ABI64) | |
6471 | return "elf64-ia64-big"; | |
6472 | else | |
6473 | return "elf32-ia64-big"; | |
6474 | } | |
44f5c83a | 6475 | else |
72a76794 JW |
6476 | { |
6477 | if (md.flags & EF_IA_64_ABI64) | |
6478 | return "elf64-ia64-little"; | |
6479 | else | |
6480 | return "elf32-ia64-little"; | |
6481 | } | |
44f5c83a JW |
6482 | } |
6483 | else | |
6484 | return "unknown-format"; | |
6485 | } | |
6486 | ||
800eeca4 JW |
6487 | void |
6488 | ia64_end_of_source () | |
6489 | { | |
542d6675 | 6490 | /* terminate insn group upon reaching end of file: */ |
800eeca4 JW |
6491 | insn_group_break (1, 0, 0); |
6492 | ||
542d6675 | 6493 | /* emits slots we haven't written yet: */ |
800eeca4 JW |
6494 | ia64_flush_insns (); |
6495 | ||
6496 | bfd_set_private_flags (stdoutput, md.flags); | |
6497 | ||
800eeca4 JW |
6498 | md.mem_offset.hint = 0; |
6499 | } | |
6500 | ||
6501 | void | |
6502 | ia64_start_line () | |
6503 | { | |
f1bcba5b JW |
6504 | if (md.qp.X_op == O_register) |
6505 | as_bad ("qualifying predicate not followed by instruction"); | |
800eeca4 JW |
6506 | md.qp.X_op = O_absent; |
6507 | ||
6508 | if (ignore_input ()) | |
6509 | return; | |
6510 | ||
6511 | if (input_line_pointer[0] == ';' && input_line_pointer[-1] == ';') | |
6512 | { | |
6513 | if (md.detect_dv && !md.explicit_mode) | |
542d6675 | 6514 | as_warn (_("Explicit stops are ignored in auto mode")); |
800eeca4 | 6515 | else |
542d6675 | 6516 | insn_group_break (1, 0, 0); |
800eeca4 JW |
6517 | } |
6518 | } | |
6519 | ||
f1bcba5b JW |
6520 | /* This is a hook for ia64_frob_label, so that it can distinguish tags from |
6521 | labels. */ | |
6522 | static int defining_tag = 0; | |
6523 | ||
800eeca4 JW |
6524 | int |
6525 | ia64_unrecognized_line (ch) | |
6526 | int ch; | |
6527 | { | |
6528 | switch (ch) | |
6529 | { | |
6530 | case '(': | |
6531 | expression (&md.qp); | |
6532 | if (*input_line_pointer++ != ')') | |
6533 | { | |
6534 | as_bad ("Expected ')'"); | |
6535 | return 0; | |
6536 | } | |
6537 | if (md.qp.X_op != O_register) | |
6538 | { | |
6539 | as_bad ("Qualifying predicate expected"); | |
6540 | return 0; | |
6541 | } | |
6542 | if (md.qp.X_add_number < REG_P || md.qp.X_add_number >= REG_P + 64) | |
6543 | { | |
6544 | as_bad ("Predicate register expected"); | |
6545 | return 0; | |
6546 | } | |
6547 | return 1; | |
6548 | ||
6549 | case '{': | |
6550 | if (md.manual_bundling) | |
6551 | as_warn ("Found '{' when manual bundling is already turned on"); | |
6552 | else | |
6553 | CURR_SLOT.manual_bundling_on = 1; | |
6554 | md.manual_bundling = 1; | |
6555 | ||
542d6675 KH |
6556 | /* Bundling is only acceptable in explicit mode |
6557 | or when in default automatic mode. */ | |
800eeca4 | 6558 | if (md.detect_dv && !md.explicit_mode) |
542d6675 KH |
6559 | { |
6560 | if (!md.mode_explicitly_set | |
6561 | && !md.default_explicit_mode) | |
6562 | dot_dv_mode ('E'); | |
6563 | else | |
6564 | as_warn (_("Found '{' after explicit switch to automatic mode")); | |
6565 | } | |
800eeca4 JW |
6566 | return 1; |
6567 | ||
6568 | case '}': | |
6569 | if (!md.manual_bundling) | |
6570 | as_warn ("Found '}' when manual bundling is off"); | |
6571 | else | |
6572 | PREV_SLOT.manual_bundling_off = 1; | |
6573 | md.manual_bundling = 0; | |
6574 | ||
6575 | /* switch back to automatic mode, if applicable */ | |
197865e8 | 6576 | if (md.detect_dv |
542d6675 KH |
6577 | && md.explicit_mode |
6578 | && !md.mode_explicitly_set | |
6579 | && !md.default_explicit_mode) | |
6580 | dot_dv_mode ('A'); | |
800eeca4 JW |
6581 | |
6582 | /* Allow '{' to follow on the same line. We also allow ";;", but that | |
6583 | happens automatically because ';' is an end of line marker. */ | |
6584 | SKIP_WHITESPACE (); | |
6585 | if (input_line_pointer[0] == '{') | |
6586 | { | |
6587 | input_line_pointer++; | |
6588 | return ia64_unrecognized_line ('{'); | |
6589 | } | |
6590 | ||
6591 | demand_empty_rest_of_line (); | |
6592 | return 1; | |
6593 | ||
f1bcba5b JW |
6594 | case '[': |
6595 | { | |
6596 | char *s; | |
6597 | char c; | |
6598 | symbolS *tag; | |
6599 | ||
6600 | if (md.qp.X_op == O_register) | |
6601 | { | |
6602 | as_bad ("Tag must come before qualifying predicate."); | |
6603 | return 0; | |
6604 | } | |
6605 | s = input_line_pointer; | |
6606 | c = get_symbol_end (); | |
6607 | if (c != ':') | |
6608 | { | |
6609 | /* Put ':' back for error messages' sake. */ | |
6610 | *input_line_pointer++ = ':'; | |
6611 | as_bad ("Expected ':'"); | |
6612 | return 0; | |
6613 | } | |
6614 | defining_tag = 1; | |
6615 | tag = colon (s); | |
6616 | defining_tag = 0; | |
6617 | /* Put ':' back for error messages' sake. */ | |
6618 | *input_line_pointer++ = ':'; | |
6619 | if (*input_line_pointer++ != ']') | |
6620 | { | |
6621 | as_bad ("Expected ']'"); | |
6622 | return 0; | |
6623 | } | |
6624 | if (! tag) | |
6625 | { | |
6626 | as_bad ("Tag name expected"); | |
6627 | return 0; | |
6628 | } | |
6629 | return 1; | |
6630 | } | |
6631 | ||
800eeca4 JW |
6632 | default: |
6633 | break; | |
6634 | } | |
542d6675 KH |
6635 | |
6636 | /* Not a valid line. */ | |
6637 | return 0; | |
800eeca4 JW |
6638 | } |
6639 | ||
6640 | void | |
6641 | ia64_frob_label (sym) | |
6642 | struct symbol *sym; | |
6643 | { | |
6644 | struct label_fix *fix; | |
6645 | ||
f1bcba5b JW |
6646 | /* Tags need special handling since they are not bundle breaks like |
6647 | labels. */ | |
6648 | if (defining_tag) | |
6649 | { | |
6650 | fix = obstack_alloc (¬es, sizeof (*fix)); | |
6651 | fix->sym = sym; | |
6652 | fix->next = CURR_SLOT.tag_fixups; | |
6653 | CURR_SLOT.tag_fixups = fix; | |
6654 | ||
6655 | return; | |
6656 | } | |
6657 | ||
800eeca4 JW |
6658 | if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) |
6659 | { | |
6660 | md.last_text_seg = now_seg; | |
6661 | fix = obstack_alloc (¬es, sizeof (*fix)); | |
6662 | fix->sym = sym; | |
6663 | fix->next = CURR_SLOT.label_fixups; | |
6664 | CURR_SLOT.label_fixups = fix; | |
6665 | ||
542d6675 | 6666 | /* Keep track of how many code entry points we've seen. */ |
800eeca4 | 6667 | if (md.path == md.maxpaths) |
542d6675 KH |
6668 | { |
6669 | md.maxpaths += 20; | |
6670 | md.entry_labels = (const char **) | |
6671 | xrealloc ((void *) md.entry_labels, | |
6672 | md.maxpaths * sizeof (char *)); | |
6673 | } | |
800eeca4 JW |
6674 | md.entry_labels[md.path++] = S_GET_NAME (sym); |
6675 | } | |
6676 | } | |
6677 | ||
6678 | void | |
6679 | ia64_flush_pending_output () | |
6680 | { | |
6681 | if (bfd_get_section_flags (stdoutput, now_seg) & SEC_CODE) | |
6682 | { | |
6683 | /* ??? This causes many unnecessary stop bits to be emitted. | |
6684 | Unfortunately, it isn't clear if it is safe to remove this. */ | |
6685 | insn_group_break (1, 0, 0); | |
6686 | ia64_flush_insns (); | |
6687 | } | |
6688 | } | |
6689 | ||
6690 | /* Do ia64-specific expression optimization. All that's done here is | |
6691 | to transform index expressions that are either due to the indexing | |
6692 | of rotating registers or due to the indexing of indirect register | |
6693 | sets. */ | |
6694 | int | |
6695 | ia64_optimize_expr (l, op, r) | |
6696 | expressionS *l; | |
6697 | operatorT op; | |
6698 | expressionS *r; | |
6699 | { | |
6700 | unsigned num_regs; | |
6701 | ||
6702 | if (op == O_index) | |
6703 | { | |
6704 | if (l->X_op == O_register && r->X_op == O_constant) | |
6705 | { | |
6706 | num_regs = (l->X_add_number >> 16); | |
6707 | if ((unsigned) r->X_add_number >= num_regs) | |
6708 | { | |
6709 | if (!num_regs) | |
6710 | as_bad ("No current frame"); | |
6711 | else | |
6712 | as_bad ("Index out of range 0..%u", num_regs - 1); | |
6713 | r->X_add_number = 0; | |
6714 | } | |
6715 | l->X_add_number = (l->X_add_number & 0xffff) + r->X_add_number; | |
6716 | return 1; | |
6717 | } | |
6718 | else if (l->X_op == O_register && r->X_op == O_register) | |
6719 | { | |
6720 | if (l->X_add_number < IND_CPUID || l->X_add_number > IND_RR | |
6721 | || l->X_add_number == IND_MEM) | |
6722 | { | |
6723 | as_bad ("Indirect register set name expected"); | |
6724 | l->X_add_number = IND_CPUID; | |
6725 | } | |
6726 | l->X_op = O_index; | |
6727 | l->X_op_symbol = md.regsym[l->X_add_number]; | |
6728 | l->X_add_number = r->X_add_number; | |
6729 | return 1; | |
6730 | } | |
6731 | } | |
6732 | return 0; | |
6733 | } | |
6734 | ||
6735 | int | |
6736 | ia64_parse_name (name, e) | |
6737 | char *name; | |
6738 | expressionS *e; | |
6739 | { | |
6740 | struct const_desc *cdesc; | |
6741 | struct dynreg *dr = 0; | |
6742 | unsigned int regnum; | |
6743 | struct symbol *sym; | |
6744 | char *end; | |
6745 | ||
542d6675 | 6746 | /* first see if NAME is a known register name: */ |
800eeca4 JW |
6747 | sym = hash_find (md.reg_hash, name); |
6748 | if (sym) | |
6749 | { | |
6750 | e->X_op = O_register; | |
6751 | e->X_add_number = S_GET_VALUE (sym); | |
6752 | return 1; | |
6753 | } | |
6754 | ||
6755 | cdesc = hash_find (md.const_hash, name); | |
6756 | if (cdesc) | |
6757 | { | |
6758 | e->X_op = O_constant; | |
6759 | e->X_add_number = cdesc->value; | |
6760 | return 1; | |
6761 | } | |
6762 | ||
542d6675 | 6763 | /* check for inN, locN, or outN: */ |
800eeca4 JW |
6764 | switch (name[0]) |
6765 | { | |
6766 | case 'i': | |
6767 | if (name[1] == 'n' && isdigit (name[2])) | |
6768 | { | |
6769 | dr = &md.in; | |
6770 | name += 2; | |
6771 | } | |
6772 | break; | |
6773 | ||
6774 | case 'l': | |
6775 | if (name[1] == 'o' && name[2] == 'c' && isdigit (name[3])) | |
6776 | { | |
6777 | dr = &md.loc; | |
6778 | name += 3; | |
6779 | } | |
6780 | break; | |
6781 | ||
6782 | case 'o': | |
6783 | if (name[1] == 'u' && name[2] == 't' && isdigit (name[3])) | |
6784 | { | |
6785 | dr = &md.out; | |
6786 | name += 3; | |
6787 | } | |
6788 | break; | |
6789 | ||
6790 | default: | |
6791 | break; | |
6792 | } | |
6793 | ||
6794 | if (dr) | |
6795 | { | |
542d6675 | 6796 | /* The name is inN, locN, or outN; parse the register number. */ |
800eeca4 JW |
6797 | regnum = strtoul (name, &end, 10); |
6798 | if (end > name && *end == '\0') | |
6799 | { | |
6800 | if ((unsigned) regnum >= dr->num_regs) | |
6801 | { | |
6802 | if (!dr->num_regs) | |
6803 | as_bad ("No current frame"); | |
6804 | else | |
542d6675 KH |
6805 | as_bad ("Register number out of range 0..%u", |
6806 | dr->num_regs - 1); | |
800eeca4 JW |
6807 | regnum = 0; |
6808 | } | |
6809 | e->X_op = O_register; | |
6810 | e->X_add_number = dr->base + regnum; | |
6811 | return 1; | |
6812 | } | |
6813 | } | |
6814 | ||
6815 | if ((dr = hash_find (md.dynreg_hash, name))) | |
6816 | { | |
6817 | /* We've got ourselves the name of a rotating register set. | |
542d6675 KH |
6818 | Store the base register number in the low 16 bits of |
6819 | X_add_number and the size of the register set in the top 16 | |
6820 | bits. */ | |
800eeca4 JW |
6821 | e->X_op = O_register; |
6822 | e->X_add_number = dr->base | (dr->num_regs << 16); | |
6823 | return 1; | |
6824 | } | |
6825 | return 0; | |
6826 | } | |
6827 | ||
6828 | /* Remove the '#' suffix that indicates a symbol as opposed to a register. */ | |
6829 | ||
6830 | char * | |
6831 | ia64_canonicalize_symbol_name (name) | |
6832 | char *name; | |
6833 | { | |
542d6675 KH |
6834 | size_t len = strlen (name); |
6835 | if (len > 1 && name[len - 1] == '#') | |
6836 | name[len - 1] = '\0'; | |
800eeca4 JW |
6837 | return name; |
6838 | } | |
6839 | ||
6840 | static int | |
6841 | is_conditional_branch (idesc) | |
542d6675 | 6842 | struct ia64_opcode *idesc; |
800eeca4 JW |
6843 | { |
6844 | return (strncmp (idesc->name, "br", 2) == 0 | |
542d6675 KH |
6845 | && (strcmp (idesc->name, "br") == 0 |
6846 | || strncmp (idesc->name, "br.cond", 7) == 0 | |
6847 | || strncmp (idesc->name, "br.call", 7) == 0 | |
6848 | || strncmp (idesc->name, "br.ret", 6) == 0 | |
6849 | || strcmp (idesc->name, "brl") == 0 | |
6850 | || strncmp (idesc->name, "brl.cond", 7) == 0 | |
6851 | || strncmp (idesc->name, "brl.call", 7) == 0 | |
6852 | || strncmp (idesc->name, "brl.ret", 6) == 0)); | |
800eeca4 JW |
6853 | } |
6854 | ||
6855 | /* Return whether the given opcode is a taken branch. If there's any doubt, | |
542d6675 KH |
6856 | returns zero. */ |
6857 | ||
800eeca4 JW |
6858 | static int |
6859 | is_taken_branch (idesc) | |
542d6675 | 6860 | struct ia64_opcode *idesc; |
800eeca4 JW |
6861 | { |
6862 | return ((is_conditional_branch (idesc) && CURR_SLOT.qp_regno == 0) | |
542d6675 | 6863 | || strncmp (idesc->name, "br.ia", 5) == 0); |
800eeca4 JW |
6864 | } |
6865 | ||
6866 | /* Return whether the given opcode is an interruption or rfi. If there's any | |
542d6675 KH |
6867 | doubt, returns zero. */ |
6868 | ||
800eeca4 JW |
6869 | static int |
6870 | is_interruption_or_rfi (idesc) | |
542d6675 | 6871 | struct ia64_opcode *idesc; |
800eeca4 JW |
6872 | { |
6873 | if (strcmp (idesc->name, "rfi") == 0) | |
6874 | return 1; | |
6875 | return 0; | |
6876 | } | |
6877 | ||
6878 | /* Returns the index of the given dependency in the opcode's list of chks, or | |
6879 | -1 if there is no dependency. */ | |
542d6675 | 6880 | |
800eeca4 JW |
6881 | static int |
6882 | depends_on (depind, idesc) | |
542d6675 KH |
6883 | int depind; |
6884 | struct ia64_opcode *idesc; | |
800eeca4 JW |
6885 | { |
6886 | int i; | |
6887 | const struct ia64_opcode_dependency *dep = idesc->dependencies; | |
542d6675 | 6888 | for (i = 0; i < dep->nchks; i++) |
800eeca4 | 6889 | { |
542d6675 KH |
6890 | if (depind == DEP (dep->chks[i])) |
6891 | return i; | |
800eeca4 JW |
6892 | } |
6893 | return -1; | |
6894 | } | |
6895 | ||
6896 | /* Determine a set of specific resources used for a particular resource | |
6897 | class. Returns the number of specific resources identified For those | |
6898 | cases which are not determinable statically, the resource returned is | |
197865e8 | 6899 | marked nonspecific. |
800eeca4 JW |
6900 | |
6901 | Meanings of value in 'NOTE': | |
6902 | 1) only read/write when the register number is explicitly encoded in the | |
6903 | insn. | |
6904 | 2) only read CFM when accessing a rotating GR, FR, or PR. mov pr only | |
197865e8 | 6905 | accesses CFM when qualifying predicate is in the rotating region. |
800eeca4 JW |
6906 | 3) general register value is used to specify an indirect register; not |
6907 | determinable statically. | |
6908 | 4) only read the given resource when bits 7:0 of the indirect index | |
6909 | register value does not match the register number of the resource; not | |
6910 | determinable statically. | |
6911 | 5) all rules are implementation specific. | |
6912 | 6) only when both the index specified by the reader and the index specified | |
6913 | by the writer have the same value in bits 63:61; not determinable | |
197865e8 | 6914 | statically. |
800eeca4 | 6915 | 7) only access the specified resource when the corresponding mask bit is |
197865e8 | 6916 | set |
800eeca4 JW |
6917 | 8) PSR.dfh is only read when these insns reference FR32-127. PSR.dfl is |
6918 | only read when these insns reference FR2-31 | |
6919 | 9) PSR.mfl is only written when these insns write FR2-31. PSR.mfh is only | |
6920 | written when these insns write FR32-127 | |
6921 | 10) The PSR.bn bit is only accessed when one of GR16-31 is specified in the | |
6922 | instruction | |
6923 | 11) The target predicates are written independently of PR[qp], but source | |
6924 | registers are only read if PR[qp] is true. Since the state of PR[qp] | |
6925 | cannot statically be determined, all source registers are marked used. | |
6926 | 12) This insn only reads the specified predicate register when that | |
6927 | register is the PR[qp]. | |
6928 | 13) This reference to ld-c only applies to teh GR whose value is loaded | |
197865e8 | 6929 | with data returned from memory, not the post-incremented address register. |
800eeca4 JW |
6930 | 14) The RSE resource includes the implementation-specific RSE internal |
6931 | state resources. At least one (and possibly more) of these resources are | |
6932 | read by each instruction listed in IC:rse-readers. At least one (and | |
6933 | possibly more) of these resources are written by each insn listed in | |
197865e8 | 6934 | IC:rse-writers. |
800eeca4 | 6935 | 15+16) Represents reserved instructions, which the assembler does not |
197865e8 | 6936 | generate. |
800eeca4 JW |
6937 | |
6938 | Memory resources (i.e. locations in memory) are *not* marked or tracked by | |
6939 | this code; there are no dependency violations based on memory access. | |
800eeca4 JW |
6940 | */ |
6941 | ||
6942 | #define MAX_SPECS 256 | |
6943 | #define DV_CHK 1 | |
6944 | #define DV_REG 0 | |
6945 | ||
6946 | static int | |
6947 | specify_resource (dep, idesc, type, specs, note, path) | |
542d6675 KH |
6948 | const struct ia64_dependency *dep; |
6949 | struct ia64_opcode *idesc; | |
6950 | int type; /* is this a DV chk or a DV reg? */ | |
6951 | struct rsrc specs[MAX_SPECS]; /* returned specific resources */ | |
6952 | int note; /* resource note for this insn's usage */ | |
6953 | int path; /* which execution path to examine */ | |
800eeca4 JW |
6954 | { |
6955 | int count = 0; | |
6956 | int i; | |
6957 | int rsrc_write = 0; | |
6958 | struct rsrc tmpl; | |
197865e8 | 6959 | |
800eeca4 JW |
6960 | if (dep->mode == IA64_DV_WAW |
6961 | || (dep->mode == IA64_DV_RAW && type == DV_REG) | |
6962 | || (dep->mode == IA64_DV_WAR && type == DV_CHK)) | |
6963 | rsrc_write = 1; | |
6964 | ||
6965 | /* template for any resources we identify */ | |
6966 | tmpl.dependency = dep; | |
6967 | tmpl.note = note; | |
6968 | tmpl.insn_srlz = tmpl.data_srlz = 0; | |
6969 | tmpl.qp_regno = CURR_SLOT.qp_regno; | |
6970 | tmpl.link_to_qp_branch = 1; | |
6971 | tmpl.mem_offset.hint = 0; | |
6972 | tmpl.specific = 1; | |
6973 | tmpl.index = 0; | |
7484b8e6 | 6974 | tmpl.cmp_type = CMP_NONE; |
800eeca4 JW |
6975 | |
6976 | #define UNHANDLED \ | |
6977 | as_warn (_("Unhandled dependency %s for %s (%s), note %d"), \ | |
6978 | dep->name, idesc->name, (rsrc_write?"write":"read"), note) | |
6979 | #define KNOWN(REG) (gr_values[REG].known && gr_values[REG].path >= path) | |
6980 | ||
6981 | /* we don't need to track these */ | |
6982 | if (dep->semantics == IA64_DVS_NONE) | |
6983 | return 0; | |
6984 | ||
6985 | switch (dep->specifier) | |
6986 | { | |
6987 | case IA64_RS_AR_K: | |
6988 | if (note == 1) | |
542d6675 KH |
6989 | { |
6990 | if (idesc->operands[!rsrc_write] == IA64_OPND_AR3) | |
6991 | { | |
6992 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR; | |
6993 | if (regno >= 0 && regno <= 7) | |
6994 | { | |
6995 | specs[count] = tmpl; | |
6996 | specs[count++].index = regno; | |
6997 | } | |
6998 | } | |
6999 | } | |
800eeca4 | 7000 | else if (note == 0) |
542d6675 KH |
7001 | { |
7002 | for (i = 0; i < 8; i++) | |
7003 | { | |
7004 | specs[count] = tmpl; | |
7005 | specs[count++].index = i; | |
7006 | } | |
7007 | } | |
800eeca4 | 7008 | else |
542d6675 KH |
7009 | { |
7010 | UNHANDLED; | |
7011 | } | |
800eeca4 JW |
7012 | break; |
7013 | ||
7014 | case IA64_RS_AR_UNAT: | |
7015 | /* This is a mov =AR or mov AR= instruction. */ | |
7016 | if (idesc->operands[!rsrc_write] == IA64_OPND_AR3) | |
7017 | { | |
7018 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR; | |
7019 | if (regno == AR_UNAT) | |
7020 | { | |
7021 | specs[count++] = tmpl; | |
7022 | } | |
7023 | } | |
7024 | else | |
7025 | { | |
7026 | /* This is a spill/fill, or other instruction that modifies the | |
7027 | unat register. */ | |
7028 | ||
7029 | /* Unless we can determine the specific bits used, mark the whole | |
7030 | thing; bits 8:3 of the memory address indicate the bit used in | |
7031 | UNAT. The .mem.offset hint may be used to eliminate a small | |
7032 | subset of conflicts. */ | |
7033 | specs[count] = tmpl; | |
7034 | if (md.mem_offset.hint) | |
7035 | { | |
542d6675 KH |
7036 | if (md.debug_dv) |
7037 | fprintf (stderr, " Using hint for spill/fill\n"); | |
7038 | /* The index isn't actually used, just set it to something | |
7039 | approximating the bit index. */ | |
800eeca4 JW |
7040 | specs[count].index = (md.mem_offset.offset >> 3) & 0x3F; |
7041 | specs[count].mem_offset.hint = 1; | |
7042 | specs[count].mem_offset.offset = md.mem_offset.offset; | |
7043 | specs[count++].mem_offset.base = md.mem_offset.base; | |
7044 | } | |
7045 | else | |
7046 | { | |
7047 | specs[count++].specific = 0; | |
7048 | } | |
7049 | } | |
7050 | break; | |
7051 | ||
7052 | case IA64_RS_AR: | |
7053 | if (note == 1) | |
542d6675 KH |
7054 | { |
7055 | if (idesc->operands[!rsrc_write] == IA64_OPND_AR3) | |
7056 | { | |
7057 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR; | |
7058 | if ((regno >= 8 && regno <= 15) | |
7059 | || (regno >= 20 && regno <= 23) | |
7060 | || (regno >= 31 && regno <= 39) | |
7061 | || (regno >= 41 && regno <= 47) | |
7062 | || (regno >= 67 && regno <= 111)) | |
7063 | { | |
7064 | specs[count] = tmpl; | |
7065 | specs[count++].index = regno; | |
7066 | } | |
7067 | } | |
7068 | } | |
800eeca4 | 7069 | else |
542d6675 KH |
7070 | { |
7071 | UNHANDLED; | |
7072 | } | |
800eeca4 JW |
7073 | break; |
7074 | ||
7075 | case IA64_RS_ARb: | |
7076 | if (note == 1) | |
542d6675 KH |
7077 | { |
7078 | if (idesc->operands[!rsrc_write] == IA64_OPND_AR3) | |
7079 | { | |
7080 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR; | |
7081 | if ((regno >= 48 && regno <= 63) | |
7082 | || (regno >= 112 && regno <= 127)) | |
7083 | { | |
7084 | specs[count] = tmpl; | |
7085 | specs[count++].index = regno; | |
7086 | } | |
7087 | } | |
7088 | } | |
800eeca4 | 7089 | else if (note == 0) |
542d6675 KH |
7090 | { |
7091 | for (i = 48; i < 64; i++) | |
7092 | { | |
7093 | specs[count] = tmpl; | |
7094 | specs[count++].index = i; | |
7095 | } | |
7096 | for (i = 112; i < 128; i++) | |
7097 | { | |
7098 | specs[count] = tmpl; | |
7099 | specs[count++].index = i; | |
7100 | } | |
7101 | } | |
197865e8 | 7102 | else |
542d6675 KH |
7103 | { |
7104 | UNHANDLED; | |
7105 | } | |
800eeca4 JW |
7106 | break; |
7107 | ||
7108 | case IA64_RS_BR: | |
7109 | if (note != 1) | |
542d6675 KH |
7110 | { |
7111 | UNHANDLED; | |
7112 | } | |
800eeca4 | 7113 | else |
542d6675 KH |
7114 | { |
7115 | if (rsrc_write) | |
7116 | { | |
7117 | for (i = 0; i < idesc->num_outputs; i++) | |
7118 | if (idesc->operands[i] == IA64_OPND_B1 | |
7119 | || idesc->operands[i] == IA64_OPND_B2) | |
7120 | { | |
7121 | specs[count] = tmpl; | |
7122 | specs[count++].index = | |
7123 | CURR_SLOT.opnd[i].X_add_number - REG_BR; | |
7124 | } | |
7125 | } | |
7126 | else | |
7127 | { | |
7128 | for (i = idesc->num_outputs;i < NELEMS (idesc->operands); i++) | |
7129 | if (idesc->operands[i] == IA64_OPND_B1 | |
7130 | || idesc->operands[i] == IA64_OPND_B2) | |
7131 | { | |
7132 | specs[count] = tmpl; | |
7133 | specs[count++].index = | |
7134 | CURR_SLOT.opnd[i].X_add_number - REG_BR; | |
7135 | } | |
7136 | } | |
7137 | } | |
800eeca4 JW |
7138 | break; |
7139 | ||
7140 | case IA64_RS_CPUID: /* four or more registers */ | |
7141 | if (note == 3) | |
542d6675 KH |
7142 | { |
7143 | if (idesc->operands[!rsrc_write] == IA64_OPND_CPUID_R3) | |
7144 | { | |
7145 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR; | |
7146 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7147 | && KNOWN (regno)) | |
7148 | { | |
7149 | specs[count] = tmpl; | |
7150 | specs[count++].index = gr_values[regno].value & 0xFF; | |
7151 | } | |
7152 | else | |
7153 | { | |
7154 | specs[count] = tmpl; | |
7155 | specs[count++].specific = 0; | |
7156 | } | |
7157 | } | |
7158 | } | |
800eeca4 | 7159 | else |
542d6675 KH |
7160 | { |
7161 | UNHANDLED; | |
7162 | } | |
800eeca4 JW |
7163 | break; |
7164 | ||
7165 | case IA64_RS_DBR: /* four or more registers */ | |
7166 | if (note == 3) | |
542d6675 KH |
7167 | { |
7168 | if (idesc->operands[!rsrc_write] == IA64_OPND_DBR_R3) | |
7169 | { | |
7170 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR; | |
7171 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7172 | && KNOWN (regno)) | |
7173 | { | |
7174 | specs[count] = tmpl; | |
7175 | specs[count++].index = gr_values[regno].value & 0xFF; | |
7176 | } | |
7177 | else | |
7178 | { | |
7179 | specs[count] = tmpl; | |
7180 | specs[count++].specific = 0; | |
7181 | } | |
7182 | } | |
7183 | } | |
800eeca4 | 7184 | else if (note == 0 && !rsrc_write) |
542d6675 KH |
7185 | { |
7186 | specs[count] = tmpl; | |
7187 | specs[count++].specific = 0; | |
7188 | } | |
800eeca4 | 7189 | else |
542d6675 KH |
7190 | { |
7191 | UNHANDLED; | |
7192 | } | |
800eeca4 JW |
7193 | break; |
7194 | ||
7195 | case IA64_RS_IBR: /* four or more registers */ | |
7196 | if (note == 3) | |
542d6675 KH |
7197 | { |
7198 | if (idesc->operands[!rsrc_write] == IA64_OPND_IBR_R3) | |
7199 | { | |
7200 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR; | |
7201 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7202 | && KNOWN (regno)) | |
7203 | { | |
7204 | specs[count] = tmpl; | |
7205 | specs[count++].index = gr_values[regno].value & 0xFF; | |
7206 | } | |
7207 | else | |
7208 | { | |
7209 | specs[count] = tmpl; | |
7210 | specs[count++].specific = 0; | |
7211 | } | |
7212 | } | |
7213 | } | |
800eeca4 | 7214 | else |
542d6675 KH |
7215 | { |
7216 | UNHANDLED; | |
7217 | } | |
800eeca4 JW |
7218 | break; |
7219 | ||
7220 | case IA64_RS_MSR: | |
7221 | if (note == 5) | |
7222 | { | |
7223 | /* These are implementation specific. Force all references to | |
7224 | conflict with all other references. */ | |
7225 | specs[count] = tmpl; | |
7226 | specs[count++].specific = 0; | |
7227 | } | |
7228 | else | |
7229 | { | |
7230 | UNHANDLED; | |
7231 | } | |
7232 | break; | |
7233 | ||
7234 | case IA64_RS_PKR: /* 16 or more registers */ | |
7235 | if (note == 3 || note == 4) | |
542d6675 KH |
7236 | { |
7237 | if (idesc->operands[!rsrc_write] == IA64_OPND_PKR_R3) | |
7238 | { | |
7239 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR; | |
7240 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7241 | && KNOWN (regno)) | |
7242 | { | |
7243 | if (note == 3) | |
7244 | { | |
7245 | specs[count] = tmpl; | |
7246 | specs[count++].index = gr_values[regno].value & 0xFF; | |
7247 | } | |
7248 | else | |
7249 | for (i = 0; i < NELEMS (gr_values); i++) | |
7250 | { | |
7251 | /* Uses all registers *except* the one in R3. */ | |
2434f565 | 7252 | if ((unsigned)i != (gr_values[regno].value & 0xFF)) |
542d6675 KH |
7253 | { |
7254 | specs[count] = tmpl; | |
7255 | specs[count++].index = i; | |
7256 | } | |
7257 | } | |
7258 | } | |
7259 | else | |
7260 | { | |
7261 | specs[count] = tmpl; | |
7262 | specs[count++].specific = 0; | |
7263 | } | |
7264 | } | |
7265 | } | |
7266 | else if (note == 0) | |
7267 | { | |
7268 | /* probe et al. */ | |
7269 | specs[count] = tmpl; | |
7270 | specs[count++].specific = 0; | |
7271 | } | |
7272 | break; | |
7273 | ||
7274 | case IA64_RS_PMC: /* four or more registers */ | |
7275 | if (note == 3) | |
7276 | { | |
7277 | if (idesc->operands[!rsrc_write] == IA64_OPND_PMC_R3 | |
7278 | || (!rsrc_write && idesc->operands[1] == IA64_OPND_PMD_R3)) | |
7279 | ||
7280 | { | |
7281 | int index = ((idesc->operands[1] == IA64_OPND_R3 && !rsrc_write) | |
7282 | ? 1 : !rsrc_write); | |
7283 | int regno = CURR_SLOT.opnd[index].X_add_number - REG_GR; | |
7284 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7285 | && KNOWN (regno)) | |
7286 | { | |
7287 | specs[count] = tmpl; | |
7288 | specs[count++].index = gr_values[regno].value & 0xFF; | |
7289 | } | |
7290 | else | |
7291 | { | |
7292 | specs[count] = tmpl; | |
7293 | specs[count++].specific = 0; | |
7294 | } | |
7295 | } | |
7296 | } | |
7297 | else | |
7298 | { | |
7299 | UNHANDLED; | |
7300 | } | |
800eeca4 JW |
7301 | break; |
7302 | ||
7303 | case IA64_RS_PMD: /* four or more registers */ | |
7304 | if (note == 3) | |
542d6675 KH |
7305 | { |
7306 | if (idesc->operands[!rsrc_write] == IA64_OPND_PMD_R3) | |
7307 | { | |
7308 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR; | |
7309 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7310 | && KNOWN (regno)) | |
7311 | { | |
7312 | specs[count] = tmpl; | |
7313 | specs[count++].index = gr_values[regno].value & 0xFF; | |
7314 | } | |
7315 | else | |
7316 | { | |
7317 | specs[count] = tmpl; | |
7318 | specs[count++].specific = 0; | |
7319 | } | |
7320 | } | |
7321 | } | |
800eeca4 | 7322 | else |
542d6675 KH |
7323 | { |
7324 | UNHANDLED; | |
7325 | } | |
800eeca4 JW |
7326 | break; |
7327 | ||
7328 | case IA64_RS_RR: /* eight registers */ | |
7329 | if (note == 6) | |
542d6675 KH |
7330 | { |
7331 | if (idesc->operands[!rsrc_write] == IA64_OPND_RR_R3) | |
7332 | { | |
7333 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_GR; | |
7334 | if (regno >= 0 && regno < NELEMS (gr_values) | |
7335 | && KNOWN (regno)) | |
7336 | { | |
7337 | specs[count] = tmpl; | |
7338 | specs[count++].index = (gr_values[regno].value >> 61) & 0x7; | |
7339 | } | |
7340 | else | |
7341 | { | |
7342 | specs[count] = tmpl; | |
7343 | specs[count++].specific = 0; | |
7344 | } | |
7345 | } | |
7346 | } | |
800eeca4 | 7347 | else if (note == 0 && !rsrc_write) |
542d6675 KH |
7348 | { |
7349 | specs[count] = tmpl; | |
7350 | specs[count++].specific = 0; | |
7351 | } | |
197865e8 | 7352 | else |
542d6675 KH |
7353 | { |
7354 | UNHANDLED; | |
7355 | } | |
800eeca4 JW |
7356 | break; |
7357 | ||
7358 | case IA64_RS_CR_IRR: | |
197865e8 | 7359 | if (note == 0) |
542d6675 KH |
7360 | { |
7361 | /* handle mov-from-CR-IVR; it's a read that writes CR[IRR] */ | |
7362 | int regno = CURR_SLOT.opnd[1].X_add_number - REG_CR; | |
7363 | if (rsrc_write | |
7364 | && idesc->operands[1] == IA64_OPND_CR3 | |
7365 | && regno == CR_IVR) | |
7366 | { | |
7367 | for (i = 0; i < 4; i++) | |
7368 | { | |
7369 | specs[count] = tmpl; | |
7370 | specs[count++].index = CR_IRR0 + i; | |
7371 | } | |
7372 | } | |
7373 | } | |
800eeca4 | 7374 | else if (note == 1) |
542d6675 KH |
7375 | { |
7376 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR; | |
7377 | if (idesc->operands[!rsrc_write] == IA64_OPND_CR3 | |
7378 | && regno >= CR_IRR0 | |
7379 | && regno <= CR_IRR3) | |
7380 | { | |
7381 | specs[count] = tmpl; | |
7382 | specs[count++].index = regno; | |
7383 | } | |
7384 | } | |
800eeca4 | 7385 | else |
542d6675 KH |
7386 | { |
7387 | UNHANDLED; | |
7388 | } | |
800eeca4 JW |
7389 | break; |
7390 | ||
7391 | case IA64_RS_CR_LRR: | |
7392 | if (note != 1) | |
542d6675 KH |
7393 | { |
7394 | UNHANDLED; | |
7395 | } | |
197865e8 | 7396 | else |
542d6675 KH |
7397 | { |
7398 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR; | |
7399 | if (idesc->operands[!rsrc_write] == IA64_OPND_CR3 | |
7400 | && (regno == CR_LRR0 || regno == CR_LRR1)) | |
7401 | { | |
7402 | specs[count] = tmpl; | |
7403 | specs[count++].index = regno; | |
7404 | } | |
7405 | } | |
800eeca4 JW |
7406 | break; |
7407 | ||
7408 | case IA64_RS_CR: | |
7409 | if (note == 1) | |
542d6675 KH |
7410 | { |
7411 | if (idesc->operands[!rsrc_write] == IA64_OPND_CR3) | |
7412 | { | |
7413 | specs[count] = tmpl; | |
7414 | specs[count++].index = | |
7415 | CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR; | |
7416 | } | |
7417 | } | |
800eeca4 | 7418 | else |
542d6675 KH |
7419 | { |
7420 | UNHANDLED; | |
7421 | } | |
800eeca4 JW |
7422 | break; |
7423 | ||
7424 | case IA64_RS_FR: | |
7425 | case IA64_RS_FRb: | |
7426 | if (note != 1) | |
542d6675 KH |
7427 | { |
7428 | UNHANDLED; | |
7429 | } | |
800eeca4 | 7430 | else if (rsrc_write) |
542d6675 KH |
7431 | { |
7432 | if (dep->specifier == IA64_RS_FRb | |
7433 | && idesc->operands[0] == IA64_OPND_F1) | |
7434 | { | |
7435 | specs[count] = tmpl; | |
7436 | specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_FR; | |
7437 | } | |
7438 | } | |
800eeca4 | 7439 | else |
542d6675 KH |
7440 | { |
7441 | for (i = idesc->num_outputs; i < NELEMS (idesc->operands); i++) | |
7442 | { | |
7443 | if (idesc->operands[i] == IA64_OPND_F2 | |
7444 | || idesc->operands[i] == IA64_OPND_F3 | |
7445 | || idesc->operands[i] == IA64_OPND_F4) | |
7446 | { | |
7447 | specs[count] = tmpl; | |
7448 | specs[count++].index = | |
7449 | CURR_SLOT.opnd[i].X_add_number - REG_FR; | |
7450 | } | |
7451 | } | |
7452 | } | |
800eeca4 JW |
7453 | break; |
7454 | ||
7455 | case IA64_RS_GR: | |
7456 | if (note == 13) | |
542d6675 KH |
7457 | { |
7458 | /* This reference applies only to the GR whose value is loaded with | |
7459 | data returned from memory. */ | |
7460 | specs[count] = tmpl; | |
7461 | specs[count++].index = CURR_SLOT.opnd[0].X_add_number - REG_GR; | |
7462 | } | |
800eeca4 | 7463 | else if (note == 1) |
542d6675 KH |
7464 | { |
7465 | if (rsrc_write) | |
7466 | { | |
7467 | for (i = 0; i < idesc->num_outputs; i++) | |
50b81f19 JW |
7468 | if (idesc->operands[i] == IA64_OPND_R1 |
7469 | || idesc->operands[i] == IA64_OPND_R2 | |
7470 | || idesc->operands[i] == IA64_OPND_R3) | |
7471 | { | |
7472 | specs[count] = tmpl; | |
197865e8 | 7473 | specs[count++].index = |
50b81f19 JW |
7474 | CURR_SLOT.opnd[i].X_add_number - REG_GR; |
7475 | } | |
7476 | if (idesc->flags & IA64_OPCODE_POSTINC) | |
7477 | for (i = 0; i < NELEMS (idesc->operands); i++) | |
7478 | if (idesc->operands[i] == IA64_OPND_MR3) | |
7479 | { | |
7480 | specs[count] = tmpl; | |
7481 | specs[count++].index = | |
7482 | CURR_SLOT.opnd[i].X_add_number - REG_GR; | |
7483 | } | |
542d6675 KH |
7484 | } |
7485 | else | |
7486 | { | |
7487 | /* Look for anything that reads a GR. */ | |
7488 | for (i = 0; i < NELEMS (idesc->operands); i++) | |
7489 | { | |
7490 | if (idesc->operands[i] == IA64_OPND_MR3 | |
7491 | || idesc->operands[i] == IA64_OPND_CPUID_R3 | |
7492 | || idesc->operands[i] == IA64_OPND_DBR_R3 | |
7493 | || idesc->operands[i] == IA64_OPND_IBR_R3 | |
800eeca4 | 7494 | || idesc->operands[i] == IA64_OPND_MSR_R3 |
542d6675 KH |
7495 | || idesc->operands[i] == IA64_OPND_PKR_R3 |
7496 | || idesc->operands[i] == IA64_OPND_PMC_R3 | |
7497 | || idesc->operands[i] == IA64_OPND_PMD_R3 | |
7498 | || idesc->operands[i] == IA64_OPND_RR_R3 | |
7499 | || ((i >= idesc->num_outputs) | |
7500 | && (idesc->operands[i] == IA64_OPND_R1 | |
7501 | || idesc->operands[i] == IA64_OPND_R2 | |
7502 | || idesc->operands[i] == IA64_OPND_R3 | |
50b81f19 JW |
7503 | /* addl source register. */ |
7504 | || idesc->operands[i] == IA64_OPND_R3_2))) | |
542d6675 KH |
7505 | { |
7506 | specs[count] = tmpl; | |
7507 | specs[count++].index = | |
7508 | CURR_SLOT.opnd[i].X_add_number - REG_GR; | |
7509 | } | |
7510 | } | |
7511 | } | |
7512 | } | |
197865e8 | 7513 | else |
542d6675 KH |
7514 | { |
7515 | UNHANDLED; | |
7516 | } | |
800eeca4 JW |
7517 | break; |
7518 | ||
139368c9 JW |
7519 | /* This is the same as IA64_RS_PRr, except that the register range is |
7520 | from 1 - 15, and there are no rotating register reads/writes here. */ | |
800eeca4 JW |
7521 | case IA64_RS_PR: |
7522 | if (note == 0) | |
542d6675 | 7523 | { |
139368c9 | 7524 | for (i = 1; i < 16; i++) |
542d6675 | 7525 | { |
139368c9 JW |
7526 | specs[count] = tmpl; |
7527 | specs[count++].index = i; | |
7528 | } | |
7529 | } | |
7530 | else if (note == 7) | |
7531 | { | |
7532 | valueT mask = 0; | |
7533 | /* Mark only those registers indicated by the mask. */ | |
7534 | if (rsrc_write) | |
7535 | { | |
7536 | mask = CURR_SLOT.opnd[2].X_add_number; | |
7537 | for (i = 1; i < 16; i++) | |
7538 | if (mask & ((valueT) 1 << i)) | |
7539 | { | |
7540 | specs[count] = tmpl; | |
7541 | specs[count++].index = i; | |
7542 | } | |
7543 | } | |
7544 | else | |
7545 | { | |
7546 | UNHANDLED; | |
7547 | } | |
7548 | } | |
7549 | else if (note == 11) /* note 11 implies note 1 as well */ | |
7550 | { | |
7551 | if (rsrc_write) | |
7552 | { | |
7553 | for (i = 0; i < idesc->num_outputs; i++) | |
7554 | { | |
7555 | if (idesc->operands[i] == IA64_OPND_P1 | |
7556 | || idesc->operands[i] == IA64_OPND_P2) | |
7557 | { | |
7558 | int regno = CURR_SLOT.opnd[i].X_add_number - REG_P; | |
7559 | if (regno >= 1 && regno < 16) | |
7560 | { | |
7561 | specs[count] = tmpl; | |
7562 | specs[count++].index = regno; | |
7563 | } | |
7564 | } | |
7565 | } | |
7566 | } | |
7567 | else | |
7568 | { | |
7569 | UNHANDLED; | |
7570 | } | |
7571 | } | |
7572 | else if (note == 12) | |
7573 | { | |
7574 | if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16) | |
7575 | { | |
7576 | specs[count] = tmpl; | |
7577 | specs[count++].index = CURR_SLOT.qp_regno; | |
7578 | } | |
7579 | } | |
7580 | else if (note == 1) | |
7581 | { | |
7582 | if (rsrc_write) | |
7583 | { | |
7584 | int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P; | |
7585 | int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P; | |
7586 | int or_andcm = strstr(idesc->name, "or.andcm") != NULL; | |
7587 | int and_orcm = strstr(idesc->name, "and.orcm") != NULL; | |
7588 | ||
7589 | if ((idesc->operands[0] == IA64_OPND_P1 | |
7590 | || idesc->operands[0] == IA64_OPND_P2) | |
7591 | && p1 >= 1 && p1 < 16) | |
542d6675 KH |
7592 | { |
7593 | specs[count] = tmpl; | |
139368c9 JW |
7594 | specs[count].cmp_type = |
7595 | (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE)); | |
7596 | specs[count++].index = p1; | |
7597 | } | |
7598 | if ((idesc->operands[1] == IA64_OPND_P1 | |
7599 | || idesc->operands[1] == IA64_OPND_P2) | |
7600 | && p2 >= 1 && p2 < 16) | |
7601 | { | |
7602 | specs[count] = tmpl; | |
7603 | specs[count].cmp_type = | |
7604 | (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE)); | |
7605 | specs[count++].index = p2; | |
542d6675 KH |
7606 | } |
7607 | } | |
7608 | else | |
7609 | { | |
139368c9 | 7610 | if (CURR_SLOT.qp_regno >= 1 && CURR_SLOT.qp_regno < 16) |
542d6675 KH |
7611 | { |
7612 | specs[count] = tmpl; | |
139368c9 JW |
7613 | specs[count++].index = CURR_SLOT.qp_regno; |
7614 | } | |
7615 | if (idesc->operands[1] == IA64_OPND_PR) | |
7616 | { | |
7617 | for (i = 1; i < 16; i++) | |
7618 | { | |
7619 | specs[count] = tmpl; | |
7620 | specs[count++].index = i; | |
7621 | } | |
542d6675 KH |
7622 | } |
7623 | } | |
7624 | } | |
139368c9 JW |
7625 | else |
7626 | { | |
7627 | UNHANDLED; | |
7628 | } | |
7629 | break; | |
7630 | ||
7631 | /* This is the general case for PRs. IA64_RS_PR and IA64_RS_PR63 are | |
7632 | simplified cases of this. */ | |
7633 | case IA64_RS_PRr: | |
7634 | if (note == 0) | |
7635 | { | |
7636 | for (i = 16; i < 63; i++) | |
7637 | { | |
7638 | specs[count] = tmpl; | |
7639 | specs[count++].index = i; | |
7640 | } | |
7641 | } | |
800eeca4 | 7642 | else if (note == 7) |
542d6675 KH |
7643 | { |
7644 | valueT mask = 0; | |
7645 | /* Mark only those registers indicated by the mask. */ | |
7646 | if (rsrc_write | |
7647 | && idesc->operands[0] == IA64_OPND_PR) | |
7648 | { | |
7649 | mask = CURR_SLOT.opnd[2].X_add_number; | |
139368c9 JW |
7650 | if (mask & ((valueT) 1<<16)) |
7651 | for (i = 16; i < 63; i++) | |
7652 | { | |
7653 | specs[count] = tmpl; | |
7654 | specs[count++].index = i; | |
7655 | } | |
542d6675 KH |
7656 | } |
7657 | else if (rsrc_write | |
7658 | && idesc->operands[0] == IA64_OPND_PR_ROT) | |
7659 | { | |
7660 | for (i = 16; i < 63; i++) | |
7661 | { | |
7662 | specs[count] = tmpl; | |
7663 | specs[count++].index = i; | |
7664 | } | |
7665 | } | |
7666 | else | |
7667 | { | |
7668 | UNHANDLED; | |
7669 | } | |
7670 | } | |
800eeca4 | 7671 | else if (note == 11) /* note 11 implies note 1 as well */ |
542d6675 KH |
7672 | { |
7673 | if (rsrc_write) | |
7674 | { | |
7675 | for (i = 0; i < idesc->num_outputs; i++) | |
7676 | { | |
7677 | if (idesc->operands[i] == IA64_OPND_P1 | |
7678 | || idesc->operands[i] == IA64_OPND_P2) | |
7679 | { | |
7680 | int regno = CURR_SLOT.opnd[i].X_add_number - REG_P; | |
139368c9 | 7681 | if (regno >= 16 && regno < 63) |
542d6675 KH |
7682 | { |
7683 | specs[count] = tmpl; | |
7684 | specs[count++].index = regno; | |
7685 | } | |
7686 | } | |
7687 | } | |
7688 | } | |
7689 | else | |
7690 | { | |
7691 | UNHANDLED; | |
7692 | } | |
7693 | } | |
800eeca4 | 7694 | else if (note == 12) |
542d6675 | 7695 | { |
139368c9 | 7696 | if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63) |
542d6675 KH |
7697 | { |
7698 | specs[count] = tmpl; | |
7699 | specs[count++].index = CURR_SLOT.qp_regno; | |
7700 | } | |
7701 | } | |
800eeca4 | 7702 | else if (note == 1) |
542d6675 KH |
7703 | { |
7704 | if (rsrc_write) | |
7705 | { | |
7706 | int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P; | |
7707 | int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P; | |
7484b8e6 TW |
7708 | int or_andcm = strstr(idesc->name, "or.andcm") != NULL; |
7709 | int and_orcm = strstr(idesc->name, "and.orcm") != NULL; | |
7710 | ||
542d6675 KH |
7711 | if ((idesc->operands[0] == IA64_OPND_P1 |
7712 | || idesc->operands[0] == IA64_OPND_P2) | |
139368c9 | 7713 | && p1 >= 16 && p1 < 63) |
542d6675 KH |
7714 | { |
7715 | specs[count] = tmpl; | |
4a4f25cf | 7716 | specs[count].cmp_type = |
7484b8e6 | 7717 | (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE)); |
542d6675 KH |
7718 | specs[count++].index = p1; |
7719 | } | |
7720 | if ((idesc->operands[1] == IA64_OPND_P1 | |
7721 | || idesc->operands[1] == IA64_OPND_P2) | |
139368c9 | 7722 | && p2 >= 16 && p2 < 63) |
542d6675 KH |
7723 | { |
7724 | specs[count] = tmpl; | |
4a4f25cf | 7725 | specs[count].cmp_type = |
7484b8e6 | 7726 | (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE)); |
542d6675 KH |
7727 | specs[count++].index = p2; |
7728 | } | |
7729 | } | |
7730 | else | |
7731 | { | |
139368c9 | 7732 | if (CURR_SLOT.qp_regno >= 16 && CURR_SLOT.qp_regno < 63) |
542d6675 KH |
7733 | { |
7734 | specs[count] = tmpl; | |
7735 | specs[count++].index = CURR_SLOT.qp_regno; | |
7736 | } | |
7737 | if (idesc->operands[1] == IA64_OPND_PR) | |
7738 | { | |
139368c9 | 7739 | for (i = 16; i < 63; i++) |
542d6675 KH |
7740 | { |
7741 | specs[count] = tmpl; | |
7742 | specs[count++].index = i; | |
7743 | } | |
7744 | } | |
7745 | } | |
7746 | } | |
197865e8 | 7747 | else |
542d6675 KH |
7748 | { |
7749 | UNHANDLED; | |
7750 | } | |
800eeca4 JW |
7751 | break; |
7752 | ||
7753 | case IA64_RS_PSR: | |
197865e8 | 7754 | /* Verify that the instruction is using the PSR bit indicated in |
542d6675 | 7755 | dep->regindex. */ |
800eeca4 | 7756 | if (note == 0) |
542d6675 KH |
7757 | { |
7758 | if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_UM) | |
7759 | { | |
7760 | if (dep->regindex < 6) | |
7761 | { | |
7762 | specs[count++] = tmpl; | |
7763 | } | |
7764 | } | |
7765 | else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR) | |
7766 | { | |
7767 | if (dep->regindex < 32 | |
7768 | || dep->regindex == 35 | |
7769 | || dep->regindex == 36 | |
7770 | || (!rsrc_write && dep->regindex == PSR_CPL)) | |
7771 | { | |
7772 | specs[count++] = tmpl; | |
7773 | } | |
7774 | } | |
7775 | else if (idesc->operands[!rsrc_write] == IA64_OPND_PSR_L) | |
7776 | { | |
7777 | if (dep->regindex < 32 | |
7778 | || dep->regindex == 35 | |
7779 | || dep->regindex == 36 | |
7780 | || (rsrc_write && dep->regindex == PSR_CPL)) | |
7781 | { | |
7782 | specs[count++] = tmpl; | |
7783 | } | |
7784 | } | |
7785 | else | |
7786 | { | |
7787 | /* Several PSR bits have very specific dependencies. */ | |
7788 | switch (dep->regindex) | |
7789 | { | |
7790 | default: | |
7791 | specs[count++] = tmpl; | |
7792 | break; | |
7793 | case PSR_IC: | |
7794 | if (rsrc_write) | |
7795 | { | |
7796 | specs[count++] = tmpl; | |
7797 | } | |
7798 | else | |
7799 | { | |
7800 | /* Only certain CR accesses use PSR.ic */ | |
7801 | if (idesc->operands[0] == IA64_OPND_CR3 | |
7802 | || idesc->operands[1] == IA64_OPND_CR3) | |
7803 | { | |
7804 | int index = | |
7805 | ((idesc->operands[0] == IA64_OPND_CR3) | |
7806 | ? 0 : 1); | |
7807 | int regno = | |
7808 | CURR_SLOT.opnd[index].X_add_number - REG_CR; | |
7809 | ||
7810 | switch (regno) | |
7811 | { | |
7812 | default: | |
7813 | break; | |
7814 | case CR_ITIR: | |
7815 | case CR_IFS: | |
7816 | case CR_IIM: | |
7817 | case CR_IIP: | |
7818 | case CR_IPSR: | |
7819 | case CR_ISR: | |
7820 | case CR_IFA: | |
7821 | case CR_IHA: | |
7822 | case CR_IIPA: | |
7823 | specs[count++] = tmpl; | |
7824 | break; | |
7825 | } | |
7826 | } | |
7827 | } | |
7828 | break; | |
7829 | case PSR_CPL: | |
7830 | if (rsrc_write) | |
7831 | { | |
7832 | specs[count++] = tmpl; | |
7833 | } | |
7834 | else | |
7835 | { | |
7836 | /* Only some AR accesses use cpl */ | |
7837 | if (idesc->operands[0] == IA64_OPND_AR3 | |
7838 | || idesc->operands[1] == IA64_OPND_AR3) | |
7839 | { | |
7840 | int index = | |
7841 | ((idesc->operands[0] == IA64_OPND_AR3) | |
7842 | ? 0 : 1); | |
7843 | int regno = | |
7844 | CURR_SLOT.opnd[index].X_add_number - REG_AR; | |
7845 | ||
7846 | if (regno == AR_ITC | |
7847 | || (index == 0 | |
7848 | && (regno == AR_ITC | |
7849 | || regno == AR_RSC | |
7850 | || (regno >= AR_K0 | |
7851 | && regno <= AR_K7)))) | |
7852 | { | |
7853 | specs[count++] = tmpl; | |
7854 | } | |
7855 | } | |
7856 | else | |
7857 | { | |
7858 | specs[count++] = tmpl; | |
7859 | } | |
7860 | break; | |
7861 | } | |
7862 | } | |
7863 | } | |
7864 | } | |
800eeca4 | 7865 | else if (note == 7) |
542d6675 KH |
7866 | { |
7867 | valueT mask = 0; | |
7868 | if (idesc->operands[0] == IA64_OPND_IMMU24) | |
7869 | { | |
7870 | mask = CURR_SLOT.opnd[0].X_add_number; | |
7871 | } | |
7872 | else | |
7873 | { | |
7874 | UNHANDLED; | |
7875 | } | |
7876 | if (mask & ((valueT) 1 << dep->regindex)) | |
7877 | { | |
7878 | specs[count++] = tmpl; | |
7879 | } | |
7880 | } | |
800eeca4 | 7881 | else if (note == 8) |
542d6675 KH |
7882 | { |
7883 | int min = dep->regindex == PSR_DFL ? 2 : 32; | |
7884 | int max = dep->regindex == PSR_DFL ? 31 : 127; | |
7885 | /* dfh is read on FR32-127; dfl is read on FR2-31 */ | |
7886 | for (i = 0; i < NELEMS (idesc->operands); i++) | |
7887 | { | |
7888 | if (idesc->operands[i] == IA64_OPND_F1 | |
7889 | || idesc->operands[i] == IA64_OPND_F2 | |
7890 | || idesc->operands[i] == IA64_OPND_F3 | |
7891 | || idesc->operands[i] == IA64_OPND_F4) | |
7892 | { | |
7893 | int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR; | |
7894 | if (reg >= min && reg <= max) | |
7895 | { | |
7896 | specs[count++] = tmpl; | |
7897 | } | |
7898 | } | |
7899 | } | |
7900 | } | |
800eeca4 | 7901 | else if (note == 9) |
542d6675 KH |
7902 | { |
7903 | int min = dep->regindex == PSR_MFL ? 2 : 32; | |
7904 | int max = dep->regindex == PSR_MFL ? 31 : 127; | |
7905 | /* mfh is read on writes to FR32-127; mfl is read on writes to | |
7906 | FR2-31 */ | |
7907 | for (i = 0; i < idesc->num_outputs; i++) | |
7908 | { | |
7909 | if (idesc->operands[i] == IA64_OPND_F1) | |
7910 | { | |
7911 | int reg = CURR_SLOT.opnd[i].X_add_number - REG_FR; | |
7912 | if (reg >= min && reg <= max) | |
7913 | { | |
7914 | specs[count++] = tmpl; | |
7915 | } | |
7916 | } | |
7917 | } | |
7918 | } | |
800eeca4 | 7919 | else if (note == 10) |
542d6675 KH |
7920 | { |
7921 | for (i = 0; i < NELEMS (idesc->operands); i++) | |
7922 | { | |
7923 | if (idesc->operands[i] == IA64_OPND_R1 | |
7924 | || idesc->operands[i] == IA64_OPND_R2 | |
7925 | || idesc->operands[i] == IA64_OPND_R3) | |
7926 | { | |
7927 | int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR; | |
7928 | if (regno >= 16 && regno <= 31) | |
7929 | { | |
7930 | specs[count++] = tmpl; | |
7931 | } | |
7932 | } | |
7933 | } | |
7934 | } | |
800eeca4 | 7935 | else |
542d6675 KH |
7936 | { |
7937 | UNHANDLED; | |
7938 | } | |
800eeca4 JW |
7939 | break; |
7940 | ||
7941 | case IA64_RS_AR_FPSR: | |
7942 | if (idesc->operands[!rsrc_write] == IA64_OPND_AR3) | |
542d6675 KH |
7943 | { |
7944 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR; | |
7945 | if (regno == AR_FPSR) | |
7946 | { | |
7947 | specs[count++] = tmpl; | |
7948 | } | |
7949 | } | |
800eeca4 | 7950 | else |
542d6675 KH |
7951 | { |
7952 | specs[count++] = tmpl; | |
7953 | } | |
800eeca4 JW |
7954 | break; |
7955 | ||
197865e8 | 7956 | case IA64_RS_ARX: |
800eeca4 JW |
7957 | /* Handle all AR[REG] resources */ |
7958 | if (note == 0 || note == 1) | |
542d6675 KH |
7959 | { |
7960 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_AR; | |
7961 | if (idesc->operands[!rsrc_write] == IA64_OPND_AR3 | |
7962 | && regno == dep->regindex) | |
7963 | { | |
7964 | specs[count++] = tmpl; | |
7965 | } | |
7966 | /* other AR[REG] resources may be affected by AR accesses */ | |
7967 | else if (idesc->operands[0] == IA64_OPND_AR3) | |
7968 | { | |
7969 | /* AR[] writes */ | |
7970 | regno = CURR_SLOT.opnd[0].X_add_number - REG_AR; | |
7971 | switch (dep->regindex) | |
7972 | { | |
7973 | default: | |
7974 | break; | |
7975 | case AR_BSP: | |
7976 | case AR_RNAT: | |
7977 | if (regno == AR_BSPSTORE) | |
7978 | { | |
7979 | specs[count++] = tmpl; | |
7980 | } | |
7981 | case AR_RSC: | |
7982 | if (!rsrc_write && | |
7983 | (regno == AR_BSPSTORE | |
7984 | || regno == AR_RNAT)) | |
7985 | { | |
7986 | specs[count++] = tmpl; | |
7987 | } | |
7988 | break; | |
7989 | } | |
7990 | } | |
7991 | else if (idesc->operands[1] == IA64_OPND_AR3) | |
7992 | { | |
7993 | /* AR[] reads */ | |
7994 | regno = CURR_SLOT.opnd[1].X_add_number - REG_AR; | |
7995 | switch (dep->regindex) | |
7996 | { | |
7997 | default: | |
7998 | break; | |
7999 | case AR_RSC: | |
8000 | if (regno == AR_BSPSTORE || regno == AR_RNAT) | |
8001 | { | |
8002 | specs[count++] = tmpl; | |
8003 | } | |
8004 | break; | |
8005 | } | |
8006 | } | |
8007 | else | |
8008 | { | |
8009 | specs[count++] = tmpl; | |
8010 | } | |
8011 | } | |
800eeca4 | 8012 | else |
542d6675 KH |
8013 | { |
8014 | UNHANDLED; | |
8015 | } | |
800eeca4 JW |
8016 | break; |
8017 | ||
8018 | case IA64_RS_CRX: | |
8019 | /* Handle all CR[REG] resources */ | |
8020 | if (note == 0 || note == 1) | |
542d6675 KH |
8021 | { |
8022 | if (idesc->operands[!rsrc_write] == IA64_OPND_CR3) | |
8023 | { | |
8024 | int regno = CURR_SLOT.opnd[!rsrc_write].X_add_number - REG_CR; | |
8025 | if (regno == dep->regindex) | |
8026 | { | |
8027 | specs[count++] = tmpl; | |
8028 | } | |
8029 | else if (!rsrc_write) | |
8030 | { | |
8031 | /* Reads from CR[IVR] affect other resources. */ | |
8032 | if (regno == CR_IVR) | |
8033 | { | |
8034 | if ((dep->regindex >= CR_IRR0 | |
8035 | && dep->regindex <= CR_IRR3) | |
8036 | || dep->regindex == CR_TPR) | |
8037 | { | |
8038 | specs[count++] = tmpl; | |
8039 | } | |
8040 | } | |
8041 | } | |
8042 | } | |
8043 | else | |
8044 | { | |
8045 | specs[count++] = tmpl; | |
8046 | } | |
8047 | } | |
800eeca4 | 8048 | else |
542d6675 KH |
8049 | { |
8050 | UNHANDLED; | |
8051 | } | |
800eeca4 JW |
8052 | break; |
8053 | ||
8054 | case IA64_RS_INSERVICE: | |
8055 | /* look for write of EOI (67) or read of IVR (65) */ | |
8056 | if ((idesc->operands[0] == IA64_OPND_CR3 | |
542d6675 KH |
8057 | && CURR_SLOT.opnd[0].X_add_number - REG_CR == CR_EOI) |
8058 | || (idesc->operands[1] == IA64_OPND_CR3 | |
8059 | && CURR_SLOT.opnd[1].X_add_number - REG_CR == CR_IVR)) | |
8060 | { | |
8061 | specs[count++] = tmpl; | |
8062 | } | |
800eeca4 JW |
8063 | break; |
8064 | ||
8065 | case IA64_RS_GR0: | |
8066 | if (note == 1) | |
542d6675 KH |
8067 | { |
8068 | specs[count++] = tmpl; | |
8069 | } | |
800eeca4 | 8070 | else |
542d6675 KH |
8071 | { |
8072 | UNHANDLED; | |
8073 | } | |
800eeca4 JW |
8074 | break; |
8075 | ||
8076 | case IA64_RS_CFM: | |
8077 | if (note != 2) | |
542d6675 KH |
8078 | { |
8079 | specs[count++] = tmpl; | |
8080 | } | |
800eeca4 | 8081 | else |
542d6675 KH |
8082 | { |
8083 | /* Check if any of the registers accessed are in the rotating region. | |
8084 | mov to/from pr accesses CFM only when qp_regno is in the rotating | |
8085 | region */ | |
8086 | for (i = 0; i < NELEMS (idesc->operands); i++) | |
8087 | { | |
8088 | if (idesc->operands[i] == IA64_OPND_R1 | |
8089 | || idesc->operands[i] == IA64_OPND_R2 | |
8090 | || idesc->operands[i] == IA64_OPND_R3) | |
8091 | { | |
8092 | int num = CURR_SLOT.opnd[i].X_add_number - REG_GR; | |
8093 | /* Assumes that md.rot.num_regs is always valid */ | |
8094 | if (md.rot.num_regs > 0 | |
8095 | && num > 31 | |
8096 | && num < 31 + md.rot.num_regs) | |
8097 | { | |
8098 | specs[count] = tmpl; | |
8099 | specs[count++].specific = 0; | |
8100 | } | |
8101 | } | |
8102 | else if (idesc->operands[i] == IA64_OPND_F1 | |
8103 | || idesc->operands[i] == IA64_OPND_F2 | |
8104 | || idesc->operands[i] == IA64_OPND_F3 | |
8105 | || idesc->operands[i] == IA64_OPND_F4) | |
8106 | { | |
8107 | int num = CURR_SLOT.opnd[i].X_add_number - REG_FR; | |
8108 | if (num > 31) | |
8109 | { | |
8110 | specs[count] = tmpl; | |
8111 | specs[count++].specific = 0; | |
8112 | } | |
8113 | } | |
8114 | else if (idesc->operands[i] == IA64_OPND_P1 | |
8115 | || idesc->operands[i] == IA64_OPND_P2) | |
8116 | { | |
8117 | int num = CURR_SLOT.opnd[i].X_add_number - REG_P; | |
8118 | if (num > 15) | |
8119 | { | |
8120 | specs[count] = tmpl; | |
8121 | specs[count++].specific = 0; | |
8122 | } | |
8123 | } | |
8124 | } | |
8125 | if (CURR_SLOT.qp_regno > 15) | |
8126 | { | |
8127 | specs[count] = tmpl; | |
8128 | specs[count++].specific = 0; | |
8129 | } | |
8130 | } | |
800eeca4 JW |
8131 | break; |
8132 | ||
139368c9 JW |
8133 | /* This is the same as IA64_RS_PRr, except simplified to account for |
8134 | the fact that there is only one register. */ | |
800eeca4 JW |
8135 | case IA64_RS_PR63: |
8136 | if (note == 0) | |
542d6675 KH |
8137 | { |
8138 | specs[count++] = tmpl; | |
8139 | } | |
139368c9 JW |
8140 | else if (note == 7) |
8141 | { | |
8142 | valueT mask = 0; | |
8143 | if (idesc->operands[2] == IA64_OPND_IMM17) | |
8144 | mask = CURR_SLOT.opnd[2].X_add_number; | |
8145 | if (mask & ((valueT) 1 << 63)) | |
8146 | specs[count++] = tmpl; | |
8147 | } | |
800eeca4 | 8148 | else if (note == 11) |
542d6675 KH |
8149 | { |
8150 | if ((idesc->operands[0] == IA64_OPND_P1 | |
8151 | && CURR_SLOT.opnd[0].X_add_number - REG_P == 63) | |
8152 | || (idesc->operands[1] == IA64_OPND_P2 | |
8153 | && CURR_SLOT.opnd[1].X_add_number - REG_P == 63)) | |
8154 | { | |
8155 | specs[count++] = tmpl; | |
8156 | } | |
8157 | } | |
800eeca4 | 8158 | else if (note == 12) |
542d6675 KH |
8159 | { |
8160 | if (CURR_SLOT.qp_regno == 63) | |
8161 | { | |
8162 | specs[count++] = tmpl; | |
8163 | } | |
8164 | } | |
800eeca4 | 8165 | else if (note == 1) |
542d6675 KH |
8166 | { |
8167 | if (rsrc_write) | |
8168 | { | |
7484b8e6 TW |
8169 | int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P; |
8170 | int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P; | |
8171 | int or_andcm = strstr(idesc->name, "or.andcm") != NULL; | |
8172 | int and_orcm = strstr(idesc->name, "and.orcm") != NULL; | |
8173 | ||
4a4f25cf | 8174 | if (p1 == 63 |
7484b8e6 TW |
8175 | && (idesc->operands[0] == IA64_OPND_P1 |
8176 | || idesc->operands[0] == IA64_OPND_P2)) | |
8177 | { | |
8178 | specs[count] = tmpl; | |
4a4f25cf | 8179 | specs[count++].cmp_type = |
7484b8e6 TW |
8180 | (or_andcm ? CMP_OR : (and_orcm ? CMP_AND : CMP_NONE)); |
8181 | } | |
8182 | if (p2 == 63 | |
8183 | && (idesc->operands[1] == IA64_OPND_P1 | |
8184 | || idesc->operands[1] == IA64_OPND_P2)) | |
8185 | { | |
8186 | specs[count] = tmpl; | |
4a4f25cf | 8187 | specs[count++].cmp_type = |
7484b8e6 TW |
8188 | (or_andcm ? CMP_AND : (and_orcm ? CMP_OR : CMP_NONE)); |
8189 | } | |
542d6675 KH |
8190 | } |
8191 | else | |
8192 | { | |
8193 | if (CURR_SLOT.qp_regno == 63) | |
8194 | { | |
8195 | specs[count++] = tmpl; | |
8196 | } | |
8197 | } | |
8198 | } | |
800eeca4 | 8199 | else |
542d6675 KH |
8200 | { |
8201 | UNHANDLED; | |
8202 | } | |
800eeca4 JW |
8203 | break; |
8204 | ||
8205 | case IA64_RS_RSE: | |
8206 | /* FIXME we can identify some individual RSE written resources, but RSE | |
542d6675 KH |
8207 | read resources have not yet been completely identified, so for now |
8208 | treat RSE as a single resource */ | |
800eeca4 | 8209 | if (strncmp (idesc->name, "mov", 3) == 0) |
542d6675 KH |
8210 | { |
8211 | if (rsrc_write) | |
8212 | { | |
8213 | if (idesc->operands[0] == IA64_OPND_AR3 | |
8214 | && CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE) | |
8215 | { | |
8216 | specs[count] = tmpl; | |
8217 | specs[count++].index = 0; /* IA64_RSE_BSPLOAD/RNATBITINDEX */ | |
8218 | } | |
8219 | } | |
8220 | else | |
8221 | { | |
8222 | if (idesc->operands[0] == IA64_OPND_AR3) | |
8223 | { | |
8224 | if (CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_BSPSTORE | |
8225 | || CURR_SLOT.opnd[0].X_add_number - REG_AR == AR_RNAT) | |
8226 | { | |
8227 | specs[count++] = tmpl; | |
8228 | } | |
8229 | } | |
8230 | else if (idesc->operands[1] == IA64_OPND_AR3) | |
8231 | { | |
8232 | if (CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSP | |
8233 | || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_BSPSTORE | |
8234 | || CURR_SLOT.opnd[1].X_add_number - REG_AR == AR_RNAT) | |
8235 | { | |
8236 | specs[count++] = tmpl; | |
8237 | } | |
8238 | } | |
8239 | } | |
8240 | } | |
197865e8 | 8241 | else |
542d6675 KH |
8242 | { |
8243 | specs[count++] = tmpl; | |
8244 | } | |
800eeca4 JW |
8245 | break; |
8246 | ||
8247 | case IA64_RS_ANY: | |
8248 | /* FIXME -- do any of these need to be non-specific? */ | |
8249 | specs[count++] = tmpl; | |
8250 | break; | |
8251 | ||
8252 | default: | |
8253 | as_bad (_("Unrecognized dependency specifier %d\n"), dep->specifier); | |
8254 | break; | |
8255 | } | |
8256 | ||
8257 | return count; | |
8258 | } | |
8259 | ||
8260 | /* Clear branch flags on marked resources. This breaks the link between the | |
542d6675 KH |
8261 | QP of the marking instruction and a subsequent branch on the same QP. */ |
8262 | ||
800eeca4 JW |
8263 | static void |
8264 | clear_qp_branch_flag (mask) | |
542d6675 | 8265 | valueT mask; |
800eeca4 JW |
8266 | { |
8267 | int i; | |
542d6675 | 8268 | for (i = 0; i < regdepslen; i++) |
800eeca4 | 8269 | { |
197865e8 | 8270 | valueT bit = ((valueT) 1 << regdeps[i].qp_regno); |
800eeca4 | 8271 | if ((bit & mask) != 0) |
542d6675 KH |
8272 | { |
8273 | regdeps[i].link_to_qp_branch = 0; | |
8274 | } | |
800eeca4 JW |
8275 | } |
8276 | } | |
8277 | ||
197865e8 | 8278 | /* Remove any mutexes which contain any of the PRs indicated in the mask. |
800eeca4 | 8279 | |
542d6675 KH |
8280 | Any changes to a PR clears the mutex relations which include that PR. */ |
8281 | ||
800eeca4 JW |
8282 | static void |
8283 | clear_qp_mutex (mask) | |
542d6675 | 8284 | valueT mask; |
800eeca4 JW |
8285 | { |
8286 | int i; | |
8287 | ||
8288 | i = 0; | |
8289 | while (i < qp_mutexeslen) | |
8290 | { | |
8291 | if ((qp_mutexes[i].prmask & mask) != 0) | |
542d6675 KH |
8292 | { |
8293 | if (md.debug_dv) | |
8294 | { | |
8295 | fprintf (stderr, " Clearing mutex relation"); | |
8296 | print_prmask (qp_mutexes[i].prmask); | |
8297 | fprintf (stderr, "\n"); | |
8298 | } | |
8299 | qp_mutexes[i] = qp_mutexes[--qp_mutexeslen]; | |
8300 | } | |
800eeca4 | 8301 | else |
542d6675 | 8302 | ++i; |
800eeca4 JW |
8303 | } |
8304 | } | |
8305 | ||
8306 | /* Clear implies relations which contain PRs in the given masks. | |
8307 | P1_MASK indicates the source of the implies relation, while P2_MASK | |
542d6675 KH |
8308 | indicates the implied PR. */ |
8309 | ||
800eeca4 JW |
8310 | static void |
8311 | clear_qp_implies (p1_mask, p2_mask) | |
542d6675 KH |
8312 | valueT p1_mask; |
8313 | valueT p2_mask; | |
800eeca4 JW |
8314 | { |
8315 | int i; | |
8316 | ||
8317 | i = 0; | |
8318 | while (i < qp_implieslen) | |
8319 | { | |
197865e8 | 8320 | if ((((valueT) 1 << qp_implies[i].p1) & p1_mask) != 0 |
542d6675 KH |
8321 | || (((valueT) 1 << qp_implies[i].p2) & p2_mask) != 0) |
8322 | { | |
8323 | if (md.debug_dv) | |
8324 | fprintf (stderr, "Clearing implied relation PR%d->PR%d\n", | |
8325 | qp_implies[i].p1, qp_implies[i].p2); | |
8326 | qp_implies[i] = qp_implies[--qp_implieslen]; | |
8327 | } | |
197865e8 | 8328 | else |
542d6675 | 8329 | ++i; |
800eeca4 JW |
8330 | } |
8331 | } | |
8332 | ||
542d6675 KH |
8333 | /* Add the PRs specified to the list of implied relations. */ |
8334 | ||
800eeca4 JW |
8335 | static void |
8336 | add_qp_imply (p1, p2) | |
542d6675 | 8337 | int p1, p2; |
800eeca4 JW |
8338 | { |
8339 | valueT mask; | |
8340 | valueT bit; | |
8341 | int i; | |
8342 | ||
542d6675 | 8343 | /* p0 is not meaningful here. */ |
800eeca4 JW |
8344 | if (p1 == 0 || p2 == 0) |
8345 | abort (); | |
8346 | ||
8347 | if (p1 == p2) | |
8348 | return; | |
8349 | ||
542d6675 KH |
8350 | /* If it exists already, ignore it. */ |
8351 | for (i = 0; i < qp_implieslen; i++) | |
800eeca4 | 8352 | { |
197865e8 | 8353 | if (qp_implies[i].p1 == p1 |
542d6675 KH |
8354 | && qp_implies[i].p2 == p2 |
8355 | && qp_implies[i].path == md.path | |
8356 | && !qp_implies[i].p2_branched) | |
8357 | return; | |
800eeca4 JW |
8358 | } |
8359 | ||
8360 | if (qp_implieslen == qp_impliestotlen) | |
8361 | { | |
8362 | qp_impliestotlen += 20; | |
8363 | qp_implies = (struct qp_imply *) | |
542d6675 KH |
8364 | xrealloc ((void *) qp_implies, |
8365 | qp_impliestotlen * sizeof (struct qp_imply)); | |
800eeca4 JW |
8366 | } |
8367 | if (md.debug_dv) | |
8368 | fprintf (stderr, " Registering PR%d implies PR%d\n", p1, p2); | |
8369 | qp_implies[qp_implieslen].p1 = p1; | |
8370 | qp_implies[qp_implieslen].p2 = p2; | |
8371 | qp_implies[qp_implieslen].path = md.path; | |
8372 | qp_implies[qp_implieslen++].p2_branched = 0; | |
8373 | ||
8374 | /* Add in the implied transitive relations; for everything that p2 implies, | |
8375 | make p1 imply that, too; for everything that implies p1, make it imply p2 | |
197865e8 | 8376 | as well. */ |
542d6675 | 8377 | for (i = 0; i < qp_implieslen; i++) |
800eeca4 JW |
8378 | { |
8379 | if (qp_implies[i].p1 == p2) | |
542d6675 | 8380 | add_qp_imply (p1, qp_implies[i].p2); |
800eeca4 | 8381 | if (qp_implies[i].p2 == p1) |
542d6675 | 8382 | add_qp_imply (qp_implies[i].p1, p2); |
800eeca4 JW |
8383 | } |
8384 | /* Add in mutex relations implied by this implies relation; for each mutex | |
197865e8 KH |
8385 | relation containing p2, duplicate it and replace p2 with p1. */ |
8386 | bit = (valueT) 1 << p1; | |
8387 | mask = (valueT) 1 << p2; | |
542d6675 | 8388 | for (i = 0; i < qp_mutexeslen; i++) |
800eeca4 JW |
8389 | { |
8390 | if (qp_mutexes[i].prmask & mask) | |
542d6675 | 8391 | add_qp_mutex ((qp_mutexes[i].prmask & ~mask) | bit); |
800eeca4 JW |
8392 | } |
8393 | } | |
8394 | ||
800eeca4 JW |
8395 | /* Add the PRs specified in the mask to the mutex list; this means that only |
8396 | one of the PRs can be true at any time. PR0 should never be included in | |
8397 | the mask. */ | |
542d6675 | 8398 | |
800eeca4 JW |
8399 | static void |
8400 | add_qp_mutex (mask) | |
542d6675 | 8401 | valueT mask; |
800eeca4 JW |
8402 | { |
8403 | if (mask & 0x1) | |
8404 | abort (); | |
8405 | ||
8406 | if (qp_mutexeslen == qp_mutexestotlen) | |
8407 | { | |
8408 | qp_mutexestotlen += 20; | |
8409 | qp_mutexes = (struct qpmutex *) | |
542d6675 KH |
8410 | xrealloc ((void *) qp_mutexes, |
8411 | qp_mutexestotlen * sizeof (struct qpmutex)); | |
800eeca4 JW |
8412 | } |
8413 | if (md.debug_dv) | |
8414 | { | |
8415 | fprintf (stderr, " Registering mutex on"); | |
8416 | print_prmask (mask); | |
8417 | fprintf (stderr, "\n"); | |
8418 | } | |
8419 | qp_mutexes[qp_mutexeslen].path = md.path; | |
8420 | qp_mutexes[qp_mutexeslen++].prmask = mask; | |
8421 | } | |
8422 | ||
8423 | static void | |
8424 | clear_register_values () | |
8425 | { | |
8426 | int i; | |
8427 | if (md.debug_dv) | |
8428 | fprintf (stderr, " Clearing register values\n"); | |
542d6675 | 8429 | for (i = 1; i < NELEMS (gr_values); i++) |
800eeca4 JW |
8430 | gr_values[i].known = 0; |
8431 | } | |
8432 | ||
8433 | /* Keep track of register values/changes which affect DV tracking. | |
8434 | ||
8435 | optimization note: should add a flag to classes of insns where otherwise we | |
542d6675 | 8436 | have to examine a group of strings to identify them. */ |
800eeca4 | 8437 | |
800eeca4 JW |
8438 | static void |
8439 | note_register_values (idesc) | |
542d6675 | 8440 | struct ia64_opcode *idesc; |
800eeca4 JW |
8441 | { |
8442 | valueT qp_changemask = 0; | |
8443 | int i; | |
8444 | ||
542d6675 KH |
8445 | /* Invalidate values for registers being written to. */ |
8446 | for (i = 0; i < idesc->num_outputs; i++) | |
800eeca4 | 8447 | { |
197865e8 | 8448 | if (idesc->operands[i] == IA64_OPND_R1 |
542d6675 KH |
8449 | || idesc->operands[i] == IA64_OPND_R2 |
8450 | || idesc->operands[i] == IA64_OPND_R3) | |
8451 | { | |
8452 | int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR; | |
8453 | if (regno > 0 && regno < NELEMS (gr_values)) | |
8454 | gr_values[regno].known = 0; | |
8455 | } | |
50b81f19 JW |
8456 | else if (idesc->operands[i] == IA64_OPND_R3_2) |
8457 | { | |
8458 | int regno = CURR_SLOT.opnd[i].X_add_number - REG_GR; | |
8459 | if (regno > 0 && regno < 4) | |
8460 | gr_values[regno].known = 0; | |
8461 | } | |
197865e8 | 8462 | else if (idesc->operands[i] == IA64_OPND_P1 |
542d6675 KH |
8463 | || idesc->operands[i] == IA64_OPND_P2) |
8464 | { | |
8465 | int regno = CURR_SLOT.opnd[i].X_add_number - REG_P; | |
8466 | qp_changemask |= (valueT) 1 << regno; | |
8467 | } | |
800eeca4 | 8468 | else if (idesc->operands[i] == IA64_OPND_PR) |
542d6675 KH |
8469 | { |
8470 | if (idesc->operands[2] & (valueT) 0x10000) | |
8471 | qp_changemask = ~(valueT) 0x1FFFF | idesc->operands[2]; | |
8472 | else | |
8473 | qp_changemask = idesc->operands[2]; | |
8474 | break; | |
8475 | } | |
800eeca4 | 8476 | else if (idesc->operands[i] == IA64_OPND_PR_ROT) |
542d6675 KH |
8477 | { |
8478 | if (idesc->operands[1] & ((valueT) 1 << 43)) | |
8479 | qp_changemask = ~(valueT) 0xFFFFFFFFFFF | idesc->operands[1]; | |
8480 | else | |
8481 | qp_changemask = idesc->operands[1]; | |
8482 | qp_changemask &= ~(valueT) 0xFFFF; | |
8483 | break; | |
8484 | } | |
8485 | } | |
8486 | ||
8487 | /* Always clear qp branch flags on any PR change. */ | |
8488 | /* FIXME there may be exceptions for certain compares. */ | |
800eeca4 JW |
8489 | clear_qp_branch_flag (qp_changemask); |
8490 | ||
542d6675 | 8491 | /* Invalidate rotating registers on insns which affect RRBs in CFM. */ |
800eeca4 JW |
8492 | if (idesc->flags & IA64_OPCODE_MOD_RRBS) |
8493 | { | |
197865e8 | 8494 | qp_changemask |= ~(valueT) 0xFFFF; |
800eeca4 | 8495 | if (strcmp (idesc->name, "clrrrb.pr") != 0) |
542d6675 KH |
8496 | { |
8497 | for (i = 32; i < 32 + md.rot.num_regs; i++) | |
8498 | gr_values[i].known = 0; | |
8499 | } | |
800eeca4 JW |
8500 | clear_qp_mutex (qp_changemask); |
8501 | clear_qp_implies (qp_changemask, qp_changemask); | |
8502 | } | |
542d6675 KH |
8503 | /* After a call, all register values are undefined, except those marked |
8504 | as "safe". */ | |
800eeca4 | 8505 | else if (strncmp (idesc->name, "br.call", 6) == 0 |
542d6675 | 8506 | || strncmp (idesc->name, "brl.call", 7) == 0) |
800eeca4 | 8507 | { |
56d27c17 | 8508 | /* FIXME keep GR values which are marked as "safe_across_calls" */ |
800eeca4 JW |
8509 | clear_register_values (); |
8510 | clear_qp_mutex (~qp_safe_across_calls); | |
8511 | clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls); | |
8512 | clear_qp_branch_flag (~qp_safe_across_calls); | |
8513 | } | |
e9718fe1 | 8514 | else if (is_interruption_or_rfi (idesc) |
542d6675 | 8515 | || is_taken_branch (idesc)) |
e9718fe1 TW |
8516 | { |
8517 | clear_register_values (); | |
197865e8 KH |
8518 | clear_qp_mutex (~(valueT) 0); |
8519 | clear_qp_implies (~(valueT) 0, ~(valueT) 0); | |
e9718fe1 | 8520 | } |
542d6675 | 8521 | /* Look for mutex and implies relations. */ |
197865e8 | 8522 | else if ((idesc->operands[0] == IA64_OPND_P1 |
542d6675 KH |
8523 | || idesc->operands[0] == IA64_OPND_P2) |
8524 | && (idesc->operands[1] == IA64_OPND_P1 | |
8525 | || idesc->operands[1] == IA64_OPND_P2)) | |
800eeca4 JW |
8526 | { |
8527 | int p1 = CURR_SLOT.opnd[0].X_add_number - REG_P; | |
197865e8 KH |
8528 | int p2 = CURR_SLOT.opnd[1].X_add_number - REG_P; |
8529 | valueT p1mask = (valueT) 1 << p1; | |
8530 | valueT p2mask = (valueT) 1 << p2; | |
800eeca4 | 8531 | |
542d6675 | 8532 | /* If one of the PRs is PR0, we can't really do anything. */ |
800eeca4 | 8533 | if (p1 == 0 || p2 == 0) |
542d6675 KH |
8534 | { |
8535 | if (md.debug_dv) | |
8536 | fprintf (stderr, " Ignoring PRs due to inclusion of p0\n"); | |
8537 | } | |
800eeca4 | 8538 | /* In general, clear mutexes and implies which include P1 or P2, |
542d6675 | 8539 | with the following exceptions. */ |
800eeca4 | 8540 | else if (strstr (idesc->name, ".or.andcm") != NULL) |
542d6675 KH |
8541 | { |
8542 | add_qp_mutex (p1mask | p2mask); | |
8543 | clear_qp_implies (p2mask, p1mask); | |
8544 | } | |
800eeca4 | 8545 | else if (strstr (idesc->name, ".and.orcm") != NULL) |
542d6675 KH |
8546 | { |
8547 | add_qp_mutex (p1mask | p2mask); | |
8548 | clear_qp_implies (p1mask, p2mask); | |
8549 | } | |
800eeca4 | 8550 | else if (strstr (idesc->name, ".and") != NULL) |
542d6675 KH |
8551 | { |
8552 | clear_qp_implies (0, p1mask | p2mask); | |
8553 | } | |
800eeca4 | 8554 | else if (strstr (idesc->name, ".or") != NULL) |
542d6675 KH |
8555 | { |
8556 | clear_qp_mutex (p1mask | p2mask); | |
8557 | clear_qp_implies (p1mask | p2mask, 0); | |
8558 | } | |
800eeca4 | 8559 | else |
542d6675 KH |
8560 | { |
8561 | clear_qp_implies (p1mask | p2mask, p1mask | p2mask); | |
8562 | if (strstr (idesc->name, ".unc") != NULL) | |
8563 | { | |
8564 | add_qp_mutex (p1mask | p2mask); | |
8565 | if (CURR_SLOT.qp_regno != 0) | |
8566 | { | |
8567 | add_qp_imply (CURR_SLOT.opnd[0].X_add_number - REG_P, | |
8568 | CURR_SLOT.qp_regno); | |
8569 | add_qp_imply (CURR_SLOT.opnd[1].X_add_number - REG_P, | |
8570 | CURR_SLOT.qp_regno); | |
8571 | } | |
8572 | } | |
8573 | else if (CURR_SLOT.qp_regno == 0) | |
8574 | { | |
8575 | add_qp_mutex (p1mask | p2mask); | |
8576 | } | |
8577 | else | |
8578 | { | |
8579 | clear_qp_mutex (p1mask | p2mask); | |
8580 | } | |
8581 | } | |
8582 | } | |
8583 | /* Look for mov imm insns into GRs. */ | |
800eeca4 | 8584 | else if (idesc->operands[0] == IA64_OPND_R1 |
542d6675 KH |
8585 | && (idesc->operands[1] == IA64_OPND_IMM22 |
8586 | || idesc->operands[1] == IA64_OPND_IMMU64) | |
8587 | && (strcmp (idesc->name, "mov") == 0 | |
8588 | || strcmp (idesc->name, "movl") == 0)) | |
800eeca4 JW |
8589 | { |
8590 | int regno = CURR_SLOT.opnd[0].X_add_number - REG_GR; | |
542d6675 KH |
8591 | if (regno > 0 && regno < NELEMS (gr_values)) |
8592 | { | |
8593 | gr_values[regno].known = 1; | |
8594 | gr_values[regno].value = CURR_SLOT.opnd[1].X_add_number; | |
8595 | gr_values[regno].path = md.path; | |
8596 | if (md.debug_dv) | |
2434f565 JW |
8597 | { |
8598 | fprintf (stderr, " Know gr%d = ", regno); | |
8599 | fprintf_vma (stderr, gr_values[regno].value); | |
8600 | fputs ("\n", stderr); | |
8601 | } | |
542d6675 | 8602 | } |
800eeca4 | 8603 | } |
197865e8 | 8604 | else |
800eeca4 JW |
8605 | { |
8606 | clear_qp_mutex (qp_changemask); | |
8607 | clear_qp_implies (qp_changemask, qp_changemask); | |
8608 | } | |
8609 | } | |
8610 | ||
542d6675 KH |
8611 | /* Return whether the given predicate registers are currently mutex. */ |
8612 | ||
800eeca4 JW |
8613 | static int |
8614 | qp_mutex (p1, p2, path) | |
542d6675 KH |
8615 | int p1; |
8616 | int p2; | |
8617 | int path; | |
800eeca4 JW |
8618 | { |
8619 | int i; | |
8620 | valueT mask; | |
8621 | ||
8622 | if (p1 != p2) | |
8623 | { | |
542d6675 KH |
8624 | mask = ((valueT) 1 << p1) | (valueT) 1 << p2; |
8625 | for (i = 0; i < qp_mutexeslen; i++) | |
8626 | { | |
8627 | if (qp_mutexes[i].path >= path | |
8628 | && (qp_mutexes[i].prmask & mask) == mask) | |
8629 | return 1; | |
8630 | } | |
800eeca4 JW |
8631 | } |
8632 | return 0; | |
8633 | } | |
8634 | ||
8635 | /* Return whether the given resource is in the given insn's list of chks | |
8636 | Return 1 if the conflict is absolutely determined, 2 if it's a potential | |
542d6675 KH |
8637 | conflict. */ |
8638 | ||
800eeca4 JW |
8639 | static int |
8640 | resources_match (rs, idesc, note, qp_regno, path) | |
542d6675 KH |
8641 | struct rsrc *rs; |
8642 | struct ia64_opcode *idesc; | |
8643 | int note; | |
8644 | int qp_regno; | |
8645 | int path; | |
800eeca4 JW |
8646 | { |
8647 | struct rsrc specs[MAX_SPECS]; | |
8648 | int count; | |
8649 | ||
8650 | /* If the marked resource's qp_regno and the given qp_regno are mutex, | |
8651 | we don't need to check. One exception is note 11, which indicates that | |
8652 | target predicates are written regardless of PR[qp]. */ | |
197865e8 | 8653 | if (qp_mutex (rs->qp_regno, qp_regno, path) |
800eeca4 JW |
8654 | && note != 11) |
8655 | return 0; | |
8656 | ||
8657 | count = specify_resource (rs->dependency, idesc, DV_CHK, specs, note, path); | |
8658 | while (count-- > 0) | |
8659 | { | |
8660 | /* UNAT checking is a bit more specific than other resources */ | |
8661 | if (rs->dependency->specifier == IA64_RS_AR_UNAT | |
542d6675 KH |
8662 | && specs[count].mem_offset.hint |
8663 | && rs->mem_offset.hint) | |
8664 | { | |
8665 | if (rs->mem_offset.base == specs[count].mem_offset.base) | |
8666 | { | |
8667 | if (((rs->mem_offset.offset >> 3) & 0x3F) == | |
8668 | ((specs[count].mem_offset.offset >> 3) & 0x3F)) | |
8669 | return 1; | |
8670 | else | |
8671 | continue; | |
8672 | } | |
8673 | } | |
800eeca4 | 8674 | |
7484b8e6 | 8675 | /* Skip apparent PR write conflicts where both writes are an AND or both |
4a4f25cf | 8676 | writes are an OR. */ |
7484b8e6 | 8677 | if (rs->dependency->specifier == IA64_RS_PR |
afa680f8 | 8678 | || rs->dependency->specifier == IA64_RS_PRr |
7484b8e6 TW |
8679 | || rs->dependency->specifier == IA64_RS_PR63) |
8680 | { | |
8681 | if (specs[count].cmp_type != CMP_NONE | |
8682 | && specs[count].cmp_type == rs->cmp_type) | |
8683 | { | |
8684 | if (md.debug_dv) | |
8685 | fprintf (stderr, " %s on parallel compare allowed (PR%d)\n", | |
8686 | dv_mode[rs->dependency->mode], | |
afa680f8 | 8687 | rs->dependency->specifier != IA64_RS_PR63 ? |
7484b8e6 TW |
8688 | specs[count].index : 63); |
8689 | continue; | |
8690 | } | |
8691 | if (md.debug_dv) | |
4a4f25cf | 8692 | fprintf (stderr, |
7484b8e6 TW |
8693 | " %s on parallel compare conflict %s vs %s on PR%d\n", |
8694 | dv_mode[rs->dependency->mode], | |
4a4f25cf | 8695 | dv_cmp_type[rs->cmp_type], |
7484b8e6 | 8696 | dv_cmp_type[specs[count].cmp_type], |
afa680f8 | 8697 | rs->dependency->specifier != IA64_RS_PR63 ? |
7484b8e6 | 8698 | specs[count].index : 63); |
4a4f25cf | 8699 | |
7484b8e6 TW |
8700 | } |
8701 | ||
800eeca4 | 8702 | /* If either resource is not specific, conservatively assume a conflict |
197865e8 | 8703 | */ |
800eeca4 | 8704 | if (!specs[count].specific || !rs->specific) |
542d6675 | 8705 | return 2; |
800eeca4 | 8706 | else if (specs[count].index == rs->index) |
542d6675 | 8707 | return 1; |
800eeca4 JW |
8708 | } |
8709 | #if 0 | |
8710 | if (md.debug_dv) | |
8711 | fprintf (stderr, " No %s conflicts\n", rs->dependency->name); | |
8712 | #endif | |
8713 | ||
8714 | return 0; | |
8715 | } | |
8716 | ||
8717 | /* Indicate an instruction group break; if INSERT_STOP is non-zero, then | |
8718 | insert a stop to create the break. Update all resource dependencies | |
8719 | appropriately. If QP_REGNO is non-zero, only apply the break to resources | |
8720 | which use the same QP_REGNO and have the link_to_qp_branch flag set. | |
8721 | If SAVE_CURRENT is non-zero, don't affect resources marked by the current | |
542d6675 | 8722 | instruction. */ |
800eeca4 JW |
8723 | |
8724 | static void | |
8725 | insn_group_break (insert_stop, qp_regno, save_current) | |
542d6675 KH |
8726 | int insert_stop; |
8727 | int qp_regno; | |
8728 | int save_current; | |
800eeca4 JW |
8729 | { |
8730 | int i; | |
8731 | ||
8732 | if (insert_stop && md.num_slots_in_use > 0) | |
8733 | PREV_SLOT.end_of_insn_group = 1; | |
8734 | ||
8735 | if (md.debug_dv) | |
8736 | { | |
197865e8 | 8737 | fprintf (stderr, " Insn group break%s", |
542d6675 | 8738 | (insert_stop ? " (w/stop)" : "")); |
800eeca4 | 8739 | if (qp_regno != 0) |
542d6675 | 8740 | fprintf (stderr, " effective for QP=%d", qp_regno); |
800eeca4 JW |
8741 | fprintf (stderr, "\n"); |
8742 | } | |
8743 | ||
8744 | i = 0; | |
8745 | while (i < regdepslen) | |
8746 | { | |
8747 | const struct ia64_dependency *dep = regdeps[i].dependency; | |
8748 | ||
8749 | if (qp_regno != 0 | |
542d6675 KH |
8750 | && regdeps[i].qp_regno != qp_regno) |
8751 | { | |
8752 | ++i; | |
8753 | continue; | |
8754 | } | |
800eeca4 JW |
8755 | |
8756 | if (save_current | |
542d6675 KH |
8757 | && CURR_SLOT.src_file == regdeps[i].file |
8758 | && CURR_SLOT.src_line == regdeps[i].line) | |
8759 | { | |
8760 | ++i; | |
8761 | continue; | |
8762 | } | |
800eeca4 JW |
8763 | |
8764 | /* clear dependencies which are automatically cleared by a stop, or | |
542d6675 | 8765 | those that have reached the appropriate state of insn serialization */ |
800eeca4 | 8766 | if (dep->semantics == IA64_DVS_IMPLIED |
542d6675 KH |
8767 | || dep->semantics == IA64_DVS_IMPLIEDF |
8768 | || regdeps[i].insn_srlz == STATE_SRLZ) | |
8769 | { | |
8770 | print_dependency ("Removing", i); | |
8771 | regdeps[i] = regdeps[--regdepslen]; | |
8772 | } | |
800eeca4 | 8773 | else |
542d6675 KH |
8774 | { |
8775 | if (dep->semantics == IA64_DVS_DATA | |
8776 | || dep->semantics == IA64_DVS_INSTR | |
800eeca4 | 8777 | || dep->semantics == IA64_DVS_SPECIFIC) |
542d6675 KH |
8778 | { |
8779 | if (regdeps[i].insn_srlz == STATE_NONE) | |
8780 | regdeps[i].insn_srlz = STATE_STOP; | |
8781 | if (regdeps[i].data_srlz == STATE_NONE) | |
8782 | regdeps[i].data_srlz = STATE_STOP; | |
8783 | } | |
8784 | ++i; | |
8785 | } | |
800eeca4 JW |
8786 | } |
8787 | } | |
8788 | ||
542d6675 KH |
8789 | /* Add the given resource usage spec to the list of active dependencies. */ |
8790 | ||
197865e8 | 8791 | static void |
800eeca4 | 8792 | mark_resource (idesc, dep, spec, depind, path) |
2434f565 JW |
8793 | struct ia64_opcode *idesc ATTRIBUTE_UNUSED; |
8794 | const struct ia64_dependency *dep ATTRIBUTE_UNUSED; | |
542d6675 KH |
8795 | struct rsrc *spec; |
8796 | int depind; | |
8797 | int path; | |
800eeca4 JW |
8798 | { |
8799 | if (regdepslen == regdepstotlen) | |
8800 | { | |
8801 | regdepstotlen += 20; | |
8802 | regdeps = (struct rsrc *) | |
542d6675 | 8803 | xrealloc ((void *) regdeps, |
bc805888 | 8804 | regdepstotlen * sizeof (struct rsrc)); |
800eeca4 JW |
8805 | } |
8806 | ||
8807 | regdeps[regdepslen] = *spec; | |
8808 | regdeps[regdepslen].depind = depind; | |
8809 | regdeps[regdepslen].path = path; | |
8810 | regdeps[regdepslen].file = CURR_SLOT.src_file; | |
8811 | regdeps[regdepslen].line = CURR_SLOT.src_line; | |
8812 | ||
8813 | print_dependency ("Adding", regdepslen); | |
8814 | ||
8815 | ++regdepslen; | |
8816 | } | |
8817 | ||
8818 | static void | |
8819 | print_dependency (action, depind) | |
542d6675 KH |
8820 | const char *action; |
8821 | int depind; | |
800eeca4 JW |
8822 | { |
8823 | if (md.debug_dv) | |
8824 | { | |
197865e8 | 8825 | fprintf (stderr, " %s %s '%s'", |
542d6675 KH |
8826 | action, dv_mode[(regdeps[depind].dependency)->mode], |
8827 | (regdeps[depind].dependency)->name); | |
800eeca4 | 8828 | if (regdeps[depind].specific && regdeps[depind].index != 0) |
542d6675 | 8829 | fprintf (stderr, " (%d)", regdeps[depind].index); |
800eeca4 | 8830 | if (regdeps[depind].mem_offset.hint) |
2434f565 JW |
8831 | { |
8832 | fputs (" ", stderr); | |
8833 | fprintf_vma (stderr, regdeps[depind].mem_offset.base); | |
8834 | fputs ("+", stderr); | |
8835 | fprintf_vma (stderr, regdeps[depind].mem_offset.offset); | |
8836 | } | |
800eeca4 JW |
8837 | fprintf (stderr, "\n"); |
8838 | } | |
8839 | } | |
8840 | ||
8841 | static void | |
8842 | instruction_serialization () | |
8843 | { | |
8844 | int i; | |
8845 | if (md.debug_dv) | |
8846 | fprintf (stderr, " Instruction serialization\n"); | |
542d6675 | 8847 | for (i = 0; i < regdepslen; i++) |
800eeca4 JW |
8848 | if (regdeps[i].insn_srlz == STATE_STOP) |
8849 | regdeps[i].insn_srlz = STATE_SRLZ; | |
8850 | } | |
8851 | ||
8852 | static void | |
8853 | data_serialization () | |
8854 | { | |
8855 | int i = 0; | |
8856 | if (md.debug_dv) | |
8857 | fprintf (stderr, " Data serialization\n"); | |
8858 | while (i < regdepslen) | |
8859 | { | |
8860 | if (regdeps[i].data_srlz == STATE_STOP | |
542d6675 KH |
8861 | /* Note: as of 991210, all "other" dependencies are cleared by a |
8862 | data serialization. This might change with new tables */ | |
8863 | || (regdeps[i].dependency)->semantics == IA64_DVS_OTHER) | |
8864 | { | |
8865 | print_dependency ("Removing", i); | |
8866 | regdeps[i] = regdeps[--regdepslen]; | |
8867 | } | |
800eeca4 | 8868 | else |
542d6675 | 8869 | ++i; |
800eeca4 JW |
8870 | } |
8871 | } | |
8872 | ||
542d6675 KH |
8873 | /* Insert stops and serializations as needed to avoid DVs. */ |
8874 | ||
800eeca4 JW |
8875 | static void |
8876 | remove_marked_resource (rs) | |
542d6675 | 8877 | struct rsrc *rs; |
800eeca4 JW |
8878 | { |
8879 | switch (rs->dependency->semantics) | |
8880 | { | |
8881 | case IA64_DVS_SPECIFIC: | |
8882 | if (md.debug_dv) | |
8883 | fprintf (stderr, "Implementation-specific, assume worst case...\n"); | |
197865e8 | 8884 | /* ...fall through... */ |
800eeca4 JW |
8885 | case IA64_DVS_INSTR: |
8886 | if (md.debug_dv) | |
542d6675 | 8887 | fprintf (stderr, "Inserting instr serialization\n"); |
800eeca4 | 8888 | if (rs->insn_srlz < STATE_STOP) |
542d6675 | 8889 | insn_group_break (1, 0, 0); |
800eeca4 | 8890 | if (rs->insn_srlz < STATE_SRLZ) |
542d6675 KH |
8891 | { |
8892 | int oldqp = CURR_SLOT.qp_regno; | |
8893 | struct ia64_opcode *oldidesc = CURR_SLOT.idesc; | |
8894 | /* Manually jam a srlz.i insn into the stream */ | |
8895 | CURR_SLOT.qp_regno = 0; | |
8896 | CURR_SLOT.idesc = ia64_find_opcode ("srlz.i"); | |
8897 | instruction_serialization (); | |
8898 | md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS; | |
8899 | if (++md.num_slots_in_use >= NUM_SLOTS) | |
8900 | emit_one_bundle (); | |
8901 | CURR_SLOT.qp_regno = oldqp; | |
8902 | CURR_SLOT.idesc = oldidesc; | |
8903 | } | |
800eeca4 JW |
8904 | insn_group_break (1, 0, 0); |
8905 | break; | |
8906 | case IA64_DVS_OTHER: /* as of rev2 (991220) of the DV tables, all | |
542d6675 KH |
8907 | "other" types of DV are eliminated |
8908 | by a data serialization */ | |
800eeca4 JW |
8909 | case IA64_DVS_DATA: |
8910 | if (md.debug_dv) | |
542d6675 | 8911 | fprintf (stderr, "Inserting data serialization\n"); |
800eeca4 | 8912 | if (rs->data_srlz < STATE_STOP) |
542d6675 | 8913 | insn_group_break (1, 0, 0); |
800eeca4 | 8914 | { |
542d6675 KH |
8915 | int oldqp = CURR_SLOT.qp_regno; |
8916 | struct ia64_opcode *oldidesc = CURR_SLOT.idesc; | |
8917 | /* Manually jam a srlz.d insn into the stream */ | |
8918 | CURR_SLOT.qp_regno = 0; | |
8919 | CURR_SLOT.idesc = ia64_find_opcode ("srlz.d"); | |
8920 | data_serialization (); | |
8921 | md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS; | |
8922 | if (++md.num_slots_in_use >= NUM_SLOTS) | |
8923 | emit_one_bundle (); | |
8924 | CURR_SLOT.qp_regno = oldqp; | |
8925 | CURR_SLOT.idesc = oldidesc; | |
800eeca4 JW |
8926 | } |
8927 | break; | |
8928 | case IA64_DVS_IMPLIED: | |
8929 | case IA64_DVS_IMPLIEDF: | |
8930 | if (md.debug_dv) | |
542d6675 | 8931 | fprintf (stderr, "Inserting stop\n"); |
800eeca4 JW |
8932 | insn_group_break (1, 0, 0); |
8933 | break; | |
8934 | default: | |
8935 | break; | |
8936 | } | |
8937 | } | |
8938 | ||
8939 | /* Check the resources used by the given opcode against the current dependency | |
197865e8 | 8940 | list. |
800eeca4 JW |
8941 | |
8942 | The check is run once for each execution path encountered. In this case, | |
8943 | a unique execution path is the sequence of instructions following a code | |
8944 | entry point, e.g. the following has three execution paths, one starting | |
8945 | at L0, one at L1, and one at L2. | |
197865e8 | 8946 | |
800eeca4 JW |
8947 | L0: nop |
8948 | L1: add | |
8949 | L2: add | |
197865e8 | 8950 | br.ret |
800eeca4 | 8951 | */ |
542d6675 | 8952 | |
800eeca4 JW |
8953 | static void |
8954 | check_dependencies (idesc) | |
542d6675 | 8955 | struct ia64_opcode *idesc; |
800eeca4 JW |
8956 | { |
8957 | const struct ia64_opcode_dependency *opdeps = idesc->dependencies; | |
8958 | int path; | |
8959 | int i; | |
8960 | ||
8961 | /* Note that the number of marked resources may change within the | |
197865e8 | 8962 | loop if in auto mode. */ |
800eeca4 JW |
8963 | i = 0; |
8964 | while (i < regdepslen) | |
8965 | { | |
8966 | struct rsrc *rs = ®deps[i]; | |
8967 | const struct ia64_dependency *dep = rs->dependency; | |
8968 | int chkind; | |
8969 | int note; | |
8970 | int start_over = 0; | |
8971 | ||
8972 | if (dep->semantics == IA64_DVS_NONE | |
542d6675 KH |
8973 | || (chkind = depends_on (rs->depind, idesc)) == -1) |
8974 | { | |
8975 | ++i; | |
8976 | continue; | |
8977 | } | |
8978 | ||
8979 | note = NOTE (opdeps->chks[chkind]); | |
8980 | ||
8981 | /* Check this resource against each execution path seen thus far. */ | |
8982 | for (path = 0; path <= md.path; path++) | |
8983 | { | |
8984 | int matchtype; | |
8985 | ||
8986 | /* If the dependency wasn't on the path being checked, ignore it. */ | |
8987 | if (rs->path < path) | |
8988 | continue; | |
8989 | ||
8990 | /* If the QP for this insn implies a QP which has branched, don't | |
8991 | bother checking. Ed. NOTE: I don't think this check is terribly | |
8992 | useful; what's the point of generating code which will only be | |
8993 | reached if its QP is zero? | |
8994 | This code was specifically inserted to handle the following code, | |
8995 | based on notes from Intel's DV checking code, where p1 implies p2. | |
8996 | ||
8997 | mov r4 = 2 | |
8998 | (p2) br.cond L | |
8999 | (p1) mov r4 = 7 | |
9000 | */ | |
9001 | if (CURR_SLOT.qp_regno != 0) | |
9002 | { | |
9003 | int skip = 0; | |
9004 | int implies; | |
9005 | for (implies = 0; implies < qp_implieslen; implies++) | |
9006 | { | |
9007 | if (qp_implies[implies].path >= path | |
9008 | && qp_implies[implies].p1 == CURR_SLOT.qp_regno | |
9009 | && qp_implies[implies].p2_branched) | |
9010 | { | |
9011 | skip = 1; | |
9012 | break; | |
9013 | } | |
9014 | } | |
9015 | if (skip) | |
9016 | continue; | |
9017 | } | |
9018 | ||
9019 | if ((matchtype = resources_match (rs, idesc, note, | |
9020 | CURR_SLOT.qp_regno, path)) != 0) | |
9021 | { | |
9022 | char msg[1024]; | |
9023 | char pathmsg[256] = ""; | |
9024 | char indexmsg[256] = ""; | |
9025 | int certain = (matchtype == 1 && CURR_SLOT.qp_regno == 0); | |
9026 | ||
9027 | if (path != 0) | |
9028 | sprintf (pathmsg, " when entry is at label '%s'", | |
9029 | md.entry_labels[path - 1]); | |
9030 | if (rs->specific && rs->index != 0) | |
9031 | sprintf (indexmsg, ", specific resource number is %d", | |
9032 | rs->index); | |
9033 | sprintf (msg, "Use of '%s' %s %s dependency '%s' (%s)%s%s", | |
9034 | idesc->name, | |
9035 | (certain ? "violates" : "may violate"), | |
9036 | dv_mode[dep->mode], dep->name, | |
9037 | dv_sem[dep->semantics], | |
9038 | pathmsg, indexmsg); | |
9039 | ||
9040 | if (md.explicit_mode) | |
9041 | { | |
9042 | as_warn ("%s", msg); | |
9043 | if (path < md.path) | |
9044 | as_warn (_("Only the first path encountering the conflict " | |
9045 | "is reported")); | |
9046 | as_warn_where (rs->file, rs->line, | |
9047 | _("This is the location of the " | |
9048 | "conflicting usage")); | |
9049 | /* Don't bother checking other paths, to avoid duplicating | |
9050 | the same warning */ | |
9051 | break; | |
9052 | } | |
9053 | else | |
9054 | { | |
9055 | if (md.debug_dv) | |
9056 | fprintf (stderr, "%s @ %s:%d\n", msg, rs->file, rs->line); | |
9057 | ||
9058 | remove_marked_resource (rs); | |
9059 | ||
9060 | /* since the set of dependencies has changed, start over */ | |
9061 | /* FIXME -- since we're removing dvs as we go, we | |
9062 | probably don't really need to start over... */ | |
9063 | start_over = 1; | |
9064 | break; | |
9065 | } | |
9066 | } | |
9067 | } | |
800eeca4 | 9068 | if (start_over) |
542d6675 | 9069 | i = 0; |
800eeca4 | 9070 | else |
542d6675 | 9071 | ++i; |
800eeca4 JW |
9072 | } |
9073 | } | |
9074 | ||
542d6675 KH |
9075 | /* Register new dependencies based on the given opcode. */ |
9076 | ||
800eeca4 JW |
9077 | static void |
9078 | mark_resources (idesc) | |
542d6675 | 9079 | struct ia64_opcode *idesc; |
800eeca4 JW |
9080 | { |
9081 | int i; | |
9082 | const struct ia64_opcode_dependency *opdeps = idesc->dependencies; | |
9083 | int add_only_qp_reads = 0; | |
9084 | ||
9085 | /* A conditional branch only uses its resources if it is taken; if it is | |
9086 | taken, we stop following that path. The other branch types effectively | |
9087 | *always* write their resources. If it's not taken, register only QP | |
197865e8 | 9088 | reads. */ |
800eeca4 JW |
9089 | if (is_conditional_branch (idesc) || is_interruption_or_rfi (idesc)) |
9090 | { | |
9091 | add_only_qp_reads = 1; | |
9092 | } | |
9093 | ||
9094 | if (md.debug_dv) | |
9095 | fprintf (stderr, "Registering '%s' resource usage\n", idesc->name); | |
9096 | ||
542d6675 | 9097 | for (i = 0; i < opdeps->nregs; i++) |
800eeca4 JW |
9098 | { |
9099 | const struct ia64_dependency *dep; | |
9100 | struct rsrc specs[MAX_SPECS]; | |
9101 | int note; | |
9102 | int path; | |
9103 | int count; | |
197865e8 | 9104 | |
800eeca4 | 9105 | dep = ia64_find_dependency (opdeps->regs[i]); |
542d6675 | 9106 | note = NOTE (opdeps->regs[i]); |
800eeca4 JW |
9107 | |
9108 | if (add_only_qp_reads | |
542d6675 KH |
9109 | && !(dep->mode == IA64_DV_WAR |
9110 | && (dep->specifier == IA64_RS_PR | |
139368c9 | 9111 | || dep->specifier == IA64_RS_PRr |
542d6675 KH |
9112 | || dep->specifier == IA64_RS_PR63))) |
9113 | continue; | |
800eeca4 JW |
9114 | |
9115 | count = specify_resource (dep, idesc, DV_REG, specs, note, md.path); | |
9116 | ||
9117 | #if 0 | |
9118 | if (md.debug_dv && !count) | |
542d6675 KH |
9119 | fprintf (stderr, " No %s %s usage found (path %d)\n", |
9120 | dv_mode[dep->mode], dep->name, md.path); | |
800eeca4 | 9121 | #endif |
197865e8 | 9122 | |
800eeca4 | 9123 | while (count-- > 0) |
542d6675 KH |
9124 | { |
9125 | mark_resource (idesc, dep, &specs[count], | |
9126 | DEP (opdeps->regs[i]), md.path); | |
9127 | } | |
800eeca4 JW |
9128 | |
9129 | /* The execution path may affect register values, which may in turn | |
542d6675 | 9130 | affect which indirect-access resources are accessed. */ |
800eeca4 | 9131 | switch (dep->specifier) |
542d6675 KH |
9132 | { |
9133 | default: | |
9134 | break; | |
9135 | case IA64_RS_CPUID: | |
9136 | case IA64_RS_DBR: | |
9137 | case IA64_RS_IBR: | |
800eeca4 | 9138 | case IA64_RS_MSR: |
542d6675 KH |
9139 | case IA64_RS_PKR: |
9140 | case IA64_RS_PMC: | |
9141 | case IA64_RS_PMD: | |
9142 | case IA64_RS_RR: | |
9143 | for (path = 0; path < md.path; path++) | |
9144 | { | |
9145 | count = specify_resource (dep, idesc, DV_REG, specs, note, path); | |
9146 | while (count-- > 0) | |
9147 | mark_resource (idesc, dep, &specs[count], | |
9148 | DEP (opdeps->regs[i]), path); | |
9149 | } | |
9150 | break; | |
9151 | } | |
9152 | } | |
9153 | } | |
9154 | ||
9155 | /* Remove dependencies when they no longer apply. */ | |
9156 | ||
800eeca4 JW |
9157 | static void |
9158 | update_dependencies (idesc) | |
542d6675 | 9159 | struct ia64_opcode *idesc; |
800eeca4 JW |
9160 | { |
9161 | int i; | |
9162 | ||
9163 | if (strcmp (idesc->name, "srlz.i") == 0) | |
9164 | { | |
9165 | instruction_serialization (); | |
9166 | } | |
9167 | else if (strcmp (idesc->name, "srlz.d") == 0) | |
9168 | { | |
9169 | data_serialization (); | |
9170 | } | |
9171 | else if (is_interruption_or_rfi (idesc) | |
542d6675 | 9172 | || is_taken_branch (idesc)) |
800eeca4 | 9173 | { |
542d6675 KH |
9174 | /* Although technically the taken branch doesn't clear dependencies |
9175 | which require a srlz.[id], we don't follow the branch; the next | |
9176 | instruction is assumed to start with a clean slate. */ | |
800eeca4 | 9177 | regdepslen = 0; |
800eeca4 JW |
9178 | md.path = 0; |
9179 | } | |
9180 | else if (is_conditional_branch (idesc) | |
542d6675 | 9181 | && CURR_SLOT.qp_regno != 0) |
800eeca4 JW |
9182 | { |
9183 | int is_call = strstr (idesc->name, ".call") != NULL; | |
9184 | ||
542d6675 KH |
9185 | for (i = 0; i < qp_implieslen; i++) |
9186 | { | |
9187 | /* If the conditional branch's predicate is implied by the predicate | |
9188 | in an existing dependency, remove that dependency. */ | |
9189 | if (qp_implies[i].p2 == CURR_SLOT.qp_regno) | |
9190 | { | |
9191 | int depind = 0; | |
9192 | /* Note that this implied predicate takes a branch so that if | |
9193 | a later insn generates a DV but its predicate implies this | |
9194 | one, we can avoid the false DV warning. */ | |
9195 | qp_implies[i].p2_branched = 1; | |
9196 | while (depind < regdepslen) | |
9197 | { | |
9198 | if (regdeps[depind].qp_regno == qp_implies[i].p1) | |
9199 | { | |
9200 | print_dependency ("Removing", depind); | |
9201 | regdeps[depind] = regdeps[--regdepslen]; | |
9202 | } | |
9203 | else | |
9204 | ++depind; | |
9205 | } | |
9206 | } | |
9207 | } | |
800eeca4 | 9208 | /* Any marked resources which have this same predicate should be |
542d6675 KH |
9209 | cleared, provided that the QP hasn't been modified between the |
9210 | marking instruction and the branch. */ | |
800eeca4 | 9211 | if (is_call) |
542d6675 KH |
9212 | { |
9213 | insn_group_break (0, CURR_SLOT.qp_regno, 1); | |
9214 | } | |
800eeca4 | 9215 | else |
542d6675 KH |
9216 | { |
9217 | i = 0; | |
9218 | while (i < regdepslen) | |
9219 | { | |
9220 | if (regdeps[i].qp_regno == CURR_SLOT.qp_regno | |
9221 | && regdeps[i].link_to_qp_branch | |
9222 | && (regdeps[i].file != CURR_SLOT.src_file | |
9223 | || regdeps[i].line != CURR_SLOT.src_line)) | |
9224 | { | |
9225 | /* Treat like a taken branch */ | |
9226 | print_dependency ("Removing", i); | |
9227 | regdeps[i] = regdeps[--regdepslen]; | |
9228 | } | |
9229 | else | |
9230 | ++i; | |
9231 | } | |
9232 | } | |
800eeca4 JW |
9233 | } |
9234 | } | |
9235 | ||
9236 | /* Examine the current instruction for dependency violations. */ | |
542d6675 | 9237 | |
800eeca4 JW |
9238 | static int |
9239 | check_dv (idesc) | |
542d6675 | 9240 | struct ia64_opcode *idesc; |
800eeca4 JW |
9241 | { |
9242 | if (md.debug_dv) | |
9243 | { | |
197865e8 | 9244 | fprintf (stderr, "Checking %s for violations (line %d, %d/%d)\n", |
542d6675 KH |
9245 | idesc->name, CURR_SLOT.src_line, |
9246 | idesc->dependencies->nchks, | |
9247 | idesc->dependencies->nregs); | |
800eeca4 JW |
9248 | } |
9249 | ||
197865e8 | 9250 | /* Look through the list of currently marked resources; if the current |
800eeca4 | 9251 | instruction has the dependency in its chks list which uses that resource, |
542d6675 | 9252 | check against the specific resources used. */ |
800eeca4 JW |
9253 | check_dependencies (idesc); |
9254 | ||
542d6675 KH |
9255 | /* Look up the instruction's regdeps (RAW writes, WAW writes, and WAR reads), |
9256 | then add them to the list of marked resources. */ | |
800eeca4 JW |
9257 | mark_resources (idesc); |
9258 | ||
9259 | /* There are several types of dependency semantics, and each has its own | |
197865e8 KH |
9260 | requirements for being cleared |
9261 | ||
800eeca4 JW |
9262 | Instruction serialization (insns separated by interruption, rfi, or |
9263 | writer + srlz.i + reader, all in separate groups) clears DVS_INSTR. | |
9264 | ||
9265 | Data serialization (instruction serialization, or writer + srlz.d + | |
9266 | reader, where writer and srlz.d are in separate groups) clears | |
9267 | DVS_DATA. (This also clears DVS_OTHER, but that is not guaranteed to | |
9268 | always be the case). | |
9269 | ||
9270 | Instruction group break (groups separated by stop, taken branch, | |
9271 | interruption or rfi) clears DVS_IMPLIED and DVS_IMPLIEDF. | |
9272 | */ | |
9273 | update_dependencies (idesc); | |
9274 | ||
9275 | /* Sometimes, knowing a register value allows us to avoid giving a false DV | |
197865e8 | 9276 | warning. Keep track of as many as possible that are useful. */ |
800eeca4 JW |
9277 | note_register_values (idesc); |
9278 | ||
197865e8 | 9279 | /* We don't need or want this anymore. */ |
800eeca4 JW |
9280 | md.mem_offset.hint = 0; |
9281 | ||
9282 | return 0; | |
9283 | } | |
9284 | ||
9285 | /* Translate one line of assembly. Pseudo ops and labels do not show | |
9286 | here. */ | |
9287 | void | |
9288 | md_assemble (str) | |
9289 | char *str; | |
9290 | { | |
9291 | char *saved_input_line_pointer, *mnemonic; | |
9292 | const struct pseudo_opcode *pdesc; | |
9293 | struct ia64_opcode *idesc; | |
9294 | unsigned char qp_regno; | |
9295 | unsigned int flags; | |
9296 | int ch; | |
9297 | ||
9298 | saved_input_line_pointer = input_line_pointer; | |
9299 | input_line_pointer = str; | |
9300 | ||
542d6675 | 9301 | /* extract the opcode (mnemonic): */ |
800eeca4 JW |
9302 | |
9303 | mnemonic = input_line_pointer; | |
9304 | ch = get_symbol_end (); | |
9305 | pdesc = (struct pseudo_opcode *) hash_find (md.pseudo_hash, mnemonic); | |
9306 | if (pdesc) | |
9307 | { | |
9308 | *input_line_pointer = ch; | |
9309 | (*pdesc->handler) (pdesc->arg); | |
9310 | goto done; | |
9311 | } | |
9312 | ||
542d6675 | 9313 | /* Find the instruction descriptor matching the arguments. */ |
800eeca4 JW |
9314 | |
9315 | idesc = ia64_find_opcode (mnemonic); | |
9316 | *input_line_pointer = ch; | |
9317 | if (!idesc) | |
9318 | { | |
9319 | as_bad ("Unknown opcode `%s'", mnemonic); | |
9320 | goto done; | |
9321 | } | |
9322 | ||
9323 | idesc = parse_operands (idesc); | |
9324 | if (!idesc) | |
9325 | goto done; | |
9326 | ||
542d6675 | 9327 | /* Handle the dynamic ops we can handle now: */ |
800eeca4 JW |
9328 | if (idesc->type == IA64_TYPE_DYN) |
9329 | { | |
9330 | if (strcmp (idesc->name, "add") == 0) | |
9331 | { | |
9332 | if (CURR_SLOT.opnd[2].X_op == O_register | |
9333 | && CURR_SLOT.opnd[2].X_add_number < 4) | |
9334 | mnemonic = "addl"; | |
9335 | else | |
9336 | mnemonic = "adds"; | |
3d56ab85 | 9337 | ia64_free_opcode (idesc); |
800eeca4 JW |
9338 | idesc = ia64_find_opcode (mnemonic); |
9339 | #if 0 | |
9340 | know (!idesc->next); | |
9341 | #endif | |
9342 | } | |
9343 | else if (strcmp (idesc->name, "mov") == 0) | |
9344 | { | |
9345 | enum ia64_opnd opnd1, opnd2; | |
9346 | int rop; | |
9347 | ||
9348 | opnd1 = idesc->operands[0]; | |
9349 | opnd2 = idesc->operands[1]; | |
9350 | if (opnd1 == IA64_OPND_AR3) | |
9351 | rop = 0; | |
9352 | else if (opnd2 == IA64_OPND_AR3) | |
9353 | rop = 1; | |
9354 | else | |
9355 | abort (); | |
9356 | if (CURR_SLOT.opnd[rop].X_op == O_register | |
9357 | && ar_is_in_integer_unit (CURR_SLOT.opnd[rop].X_add_number)) | |
9358 | mnemonic = "mov.i"; | |
9359 | else | |
9360 | mnemonic = "mov.m"; | |
3d56ab85 | 9361 | ia64_free_opcode (idesc); |
800eeca4 JW |
9362 | idesc = ia64_find_opcode (mnemonic); |
9363 | while (idesc != NULL | |
9364 | && (idesc->operands[0] != opnd1 | |
9365 | || idesc->operands[1] != opnd2)) | |
9366 | idesc = get_next_opcode (idesc); | |
9367 | } | |
9368 | } | |
9369 | ||
9370 | qp_regno = 0; | |
9371 | if (md.qp.X_op == O_register) | |
f1bcba5b JW |
9372 | { |
9373 | qp_regno = md.qp.X_add_number - REG_P; | |
9374 | md.qp.X_op = O_absent; | |
9375 | } | |
800eeca4 JW |
9376 | |
9377 | flags = idesc->flags; | |
9378 | ||
9379 | if ((flags & IA64_OPCODE_FIRST) != 0) | |
9380 | insn_group_break (1, 0, 0); | |
9381 | ||
9382 | if ((flags & IA64_OPCODE_NO_PRED) != 0 && qp_regno != 0) | |
9383 | { | |
9384 | as_bad ("`%s' cannot be predicated", idesc->name); | |
9385 | goto done; | |
9386 | } | |
9387 | ||
542d6675 | 9388 | /* Build the instruction. */ |
800eeca4 JW |
9389 | CURR_SLOT.qp_regno = qp_regno; |
9390 | CURR_SLOT.idesc = idesc; | |
9391 | as_where (&CURR_SLOT.src_file, &CURR_SLOT.src_line); | |
4dc7ead9 | 9392 | dwarf2_where (&CURR_SLOT.debug_line); |
800eeca4 JW |
9393 | |
9394 | /* Add unwind entry, if there is one. */ | |
e0c9811a | 9395 | if (unwind.current_entry) |
800eeca4 | 9396 | { |
e0c9811a JW |
9397 | CURR_SLOT.unwind_record = unwind.current_entry; |
9398 | unwind.current_entry = NULL; | |
800eeca4 JW |
9399 | } |
9400 | ||
542d6675 | 9401 | /* Check for dependency violations. */ |
800eeca4 | 9402 | if (md.detect_dv) |
542d6675 | 9403 | check_dv (idesc); |
800eeca4 JW |
9404 | |
9405 | md.curr_slot = (md.curr_slot + 1) % NUM_SLOTS; | |
9406 | if (++md.num_slots_in_use >= NUM_SLOTS) | |
9407 | emit_one_bundle (); | |
9408 | ||
9409 | if ((flags & IA64_OPCODE_LAST) != 0) | |
9410 | insn_group_break (1, 0, 0); | |
9411 | ||
9412 | md.last_text_seg = now_seg; | |
9413 | ||
9414 | done: | |
9415 | input_line_pointer = saved_input_line_pointer; | |
9416 | } | |
9417 | ||
9418 | /* Called when symbol NAME cannot be found in the symbol table. | |
9419 | Should be used for dynamic valued symbols only. */ | |
542d6675 KH |
9420 | |
9421 | symbolS * | |
800eeca4 | 9422 | md_undefined_symbol (name) |
2434f565 | 9423 | char *name ATTRIBUTE_UNUSED; |
800eeca4 JW |
9424 | { |
9425 | return 0; | |
9426 | } | |
9427 | ||
9428 | /* Called for any expression that can not be recognized. When the | |
9429 | function is called, `input_line_pointer' will point to the start of | |
9430 | the expression. */ | |
542d6675 | 9431 | |
800eeca4 JW |
9432 | void |
9433 | md_operand (e) | |
9434 | expressionS *e; | |
9435 | { | |
9436 | enum pseudo_type pseudo_type; | |
e0c9811a | 9437 | const char *name; |
800eeca4 JW |
9438 | size_t len; |
9439 | int ch, i; | |
9440 | ||
9441 | switch (*input_line_pointer) | |
9442 | { | |
9443 | case '@': | |
542d6675 | 9444 | /* Find what relocation pseudo-function we're dealing with. */ |
800eeca4 JW |
9445 | pseudo_type = 0; |
9446 | ch = *++input_line_pointer; | |
9447 | for (i = 0; i < NELEMS (pseudo_func); ++i) | |
9448 | if (pseudo_func[i].name && pseudo_func[i].name[0] == ch) | |
9449 | { | |
9450 | len = strlen (pseudo_func[i].name); | |
9451 | if (strncmp (pseudo_func[i].name + 1, | |
9452 | input_line_pointer + 1, len - 1) == 0 | |
9453 | && !is_part_of_name (input_line_pointer[len])) | |
9454 | { | |
9455 | input_line_pointer += len; | |
9456 | pseudo_type = pseudo_func[i].type; | |
9457 | break; | |
9458 | } | |
9459 | } | |
9460 | switch (pseudo_type) | |
9461 | { | |
9462 | case PSEUDO_FUNC_RELOC: | |
9463 | SKIP_WHITESPACE (); | |
9464 | if (*input_line_pointer != '(') | |
9465 | { | |
9466 | as_bad ("Expected '('"); | |
9467 | goto err; | |
9468 | } | |
542d6675 KH |
9469 | /* Skip '('. */ |
9470 | ++input_line_pointer; | |
800eeca4 JW |
9471 | expression (e); |
9472 | if (*input_line_pointer++ != ')') | |
9473 | { | |
9474 | as_bad ("Missing ')'"); | |
9475 | goto err; | |
9476 | } | |
9477 | if (e->X_op != O_symbol) | |
9478 | { | |
9479 | if (e->X_op != O_pseudo_fixup) | |
9480 | { | |
9481 | as_bad ("Not a symbolic expression"); | |
9482 | goto err; | |
9483 | } | |
9484 | if (S_GET_VALUE (e->X_op_symbol) == FUNC_FPTR_RELATIVE | |
9485 | && i == FUNC_LT_RELATIVE) | |
9486 | i = FUNC_LT_FPTR_RELATIVE; | |
9487 | else | |
9488 | { | |
9489 | as_bad ("Illegal combination of relocation functions"); | |
9490 | goto err; | |
9491 | } | |
9492 | } | |
542d6675 KH |
9493 | /* Make sure gas doesn't get rid of local symbols that are used |
9494 | in relocs. */ | |
800eeca4 JW |
9495 | e->X_op = O_pseudo_fixup; |
9496 | e->X_op_symbol = pseudo_func[i].u.sym; | |
9497 | break; | |
9498 | ||
9499 | case PSEUDO_FUNC_CONST: | |
9500 | e->X_op = O_constant; | |
9501 | e->X_add_number = pseudo_func[i].u.ival; | |
9502 | break; | |
9503 | ||
e0c9811a JW |
9504 | case PSEUDO_FUNC_REG: |
9505 | e->X_op = O_register; | |
9506 | e->X_add_number = pseudo_func[i].u.ival; | |
9507 | break; | |
9508 | ||
800eeca4 | 9509 | default: |
e0c9811a JW |
9510 | name = input_line_pointer - 1; |
9511 | get_symbol_end (); | |
9512 | as_bad ("Unknown pseudo function `%s'", name); | |
800eeca4 JW |
9513 | goto err; |
9514 | } | |
9515 | break; | |
9516 | ||
9517 | case '[': | |
9518 | ++input_line_pointer; | |
9519 | expression (e); | |
9520 | if (*input_line_pointer != ']') | |
9521 | { | |
9522 | as_bad ("Closing bracket misssing"); | |
9523 | goto err; | |
9524 | } | |
9525 | else | |
9526 | { | |
9527 | if (e->X_op != O_register) | |
9528 | as_bad ("Register expected as index"); | |
9529 | ||
9530 | ++input_line_pointer; | |
9531 | e->X_op = O_index; | |
9532 | } | |
9533 | break; | |
9534 | ||
9535 | default: | |
9536 | break; | |
9537 | } | |
9538 | return; | |
9539 | ||
9540 | err: | |
9541 | ignore_rest_of_line (); | |
9542 | } | |
9543 | ||
9544 | /* Return 1 if it's OK to adjust a reloc by replacing the symbol with | |
9545 | a section symbol plus some offset. For relocs involving @fptr(), | |
9546 | directives we don't want such adjustments since we need to have the | |
9547 | original symbol's name in the reloc. */ | |
9548 | int | |
9549 | ia64_fix_adjustable (fix) | |
9550 | fixS *fix; | |
9551 | { | |
9552 | /* Prevent all adjustments to global symbols */ | |
9553 | if (S_IS_EXTERN (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy)) | |
9554 | return 0; | |
9555 | ||
9556 | switch (fix->fx_r_type) | |
9557 | { | |
9558 | case BFD_RELOC_IA64_FPTR64I: | |
9559 | case BFD_RELOC_IA64_FPTR32MSB: | |
9560 | case BFD_RELOC_IA64_FPTR32LSB: | |
9561 | case BFD_RELOC_IA64_FPTR64MSB: | |
9562 | case BFD_RELOC_IA64_FPTR64LSB: | |
9563 | case BFD_RELOC_IA64_LTOFF_FPTR22: | |
9564 | case BFD_RELOC_IA64_LTOFF_FPTR64I: | |
9565 | return 0; | |
9566 | default: | |
9567 | break; | |
9568 | } | |
9569 | ||
9570 | return 1; | |
9571 | } | |
9572 | ||
9573 | int | |
9574 | ia64_force_relocation (fix) | |
9575 | fixS *fix; | |
9576 | { | |
9577 | switch (fix->fx_r_type) | |
9578 | { | |
9579 | case BFD_RELOC_IA64_FPTR64I: | |
9580 | case BFD_RELOC_IA64_FPTR32MSB: | |
9581 | case BFD_RELOC_IA64_FPTR32LSB: | |
9582 | case BFD_RELOC_IA64_FPTR64MSB: | |
9583 | case BFD_RELOC_IA64_FPTR64LSB: | |
9584 | ||
9585 | case BFD_RELOC_IA64_LTOFF22: | |
9586 | case BFD_RELOC_IA64_LTOFF64I: | |
9587 | case BFD_RELOC_IA64_LTOFF_FPTR22: | |
9588 | case BFD_RELOC_IA64_LTOFF_FPTR64I: | |
9589 | case BFD_RELOC_IA64_PLTOFF22: | |
9590 | case BFD_RELOC_IA64_PLTOFF64I: | |
9591 | case BFD_RELOC_IA64_PLTOFF64MSB: | |
9592 | case BFD_RELOC_IA64_PLTOFF64LSB: | |
9593 | return 1; | |
9594 | ||
9595 | default: | |
9596 | return 0; | |
9597 | } | |
9598 | return 0; | |
9599 | } | |
9600 | ||
9601 | /* Decide from what point a pc-relative relocation is relative to, | |
9602 | relative to the pc-relative fixup. Er, relatively speaking. */ | |
9603 | long | |
9604 | ia64_pcrel_from_section (fix, sec) | |
9605 | fixS *fix; | |
9606 | segT sec; | |
9607 | { | |
9608 | unsigned long off = fix->fx_frag->fr_address + fix->fx_where; | |
197865e8 | 9609 | |
800eeca4 JW |
9610 | if (bfd_get_section_flags (stdoutput, sec) & SEC_CODE) |
9611 | off &= ~0xfUL; | |
9612 | ||
9613 | return off; | |
9614 | } | |
9615 | ||
9616 | /* This is called whenever some data item (not an instruction) needs a | |
9617 | fixup. We pick the right reloc code depending on the byteorder | |
9618 | currently in effect. */ | |
9619 | void | |
9620 | ia64_cons_fix_new (f, where, nbytes, exp) | |
9621 | fragS *f; | |
9622 | int where; | |
9623 | int nbytes; | |
9624 | expressionS *exp; | |
9625 | { | |
9626 | bfd_reloc_code_real_type code; | |
9627 | fixS *fix; | |
9628 | ||
9629 | switch (nbytes) | |
9630 | { | |
9631 | /* There are no reloc for 8 and 16 bit quantities, but we allow | |
9632 | them here since they will work fine as long as the expression | |
9633 | is fully defined at the end of the pass over the source file. */ | |
9634 | case 1: code = BFD_RELOC_8; break; | |
9635 | case 2: code = BFD_RELOC_16; break; | |
9636 | case 4: | |
9637 | if (target_big_endian) | |
9638 | code = BFD_RELOC_IA64_DIR32MSB; | |
9639 | else | |
9640 | code = BFD_RELOC_IA64_DIR32LSB; | |
9641 | break; | |
9642 | ||
9643 | case 8: | |
9644 | if (target_big_endian) | |
9645 | code = BFD_RELOC_IA64_DIR64MSB; | |
9646 | else | |
9647 | code = BFD_RELOC_IA64_DIR64LSB; | |
9648 | break; | |
9649 | ||
9650 | default: | |
9651 | as_bad ("Unsupported fixup size %d", nbytes); | |
9652 | ignore_rest_of_line (); | |
9653 | return; | |
9654 | } | |
9655 | if (exp->X_op == O_pseudo_fixup) | |
9656 | { | |
9657 | /* ??? */ | |
9658 | exp->X_op = O_symbol; | |
9659 | code = ia64_gen_real_reloc_type (exp->X_op_symbol, code); | |
9660 | } | |
9661 | fix = fix_new_exp (f, where, nbytes, exp, 0, code); | |
9662 | /* We need to store the byte order in effect in case we're going | |
9663 | to fix an 8 or 16 bit relocation (for which there no real | |
9664 | relocs available). See md_apply_fix(). */ | |
9665 | fix->tc_fix_data.bigendian = target_big_endian; | |
9666 | } | |
9667 | ||
9668 | /* Return the actual relocation we wish to associate with the pseudo | |
9669 | reloc described by SYM and R_TYPE. SYM should be one of the | |
197865e8 | 9670 | symbols in the pseudo_func array, or NULL. */ |
800eeca4 JW |
9671 | |
9672 | static bfd_reloc_code_real_type | |
9673 | ia64_gen_real_reloc_type (sym, r_type) | |
9674 | struct symbol *sym; | |
9675 | bfd_reloc_code_real_type r_type; | |
9676 | { | |
9677 | bfd_reloc_code_real_type new = 0; | |
9678 | ||
9679 | if (sym == NULL) | |
9680 | { | |
9681 | return r_type; | |
9682 | } | |
9683 | ||
9684 | switch (S_GET_VALUE (sym)) | |
9685 | { | |
9686 | case FUNC_FPTR_RELATIVE: | |
9687 | switch (r_type) | |
9688 | { | |
9689 | case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_FPTR64I; break; | |
9690 | case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_FPTR32MSB; break; | |
9691 | case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_FPTR32LSB; break; | |
9692 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_FPTR64MSB; break; | |
9693 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_FPTR64LSB; break; | |
9694 | default: break; | |
9695 | } | |
9696 | break; | |
9697 | ||
9698 | case FUNC_GP_RELATIVE: | |
9699 | switch (r_type) | |
9700 | { | |
9701 | case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_GPREL22; break; | |
9702 | case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_GPREL64I; break; | |
9703 | case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_GPREL32MSB; break; | |
9704 | case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_GPREL32LSB; break; | |
9705 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_GPREL64MSB; break; | |
9706 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_GPREL64LSB; break; | |
9707 | default: break; | |
9708 | } | |
9709 | break; | |
9710 | ||
9711 | case FUNC_LT_RELATIVE: | |
9712 | switch (r_type) | |
9713 | { | |
9714 | case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_LTOFF22; break; | |
9715 | case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_LTOFF64I; break; | |
9716 | default: break; | |
9717 | } | |
9718 | break; | |
9719 | ||
c67e42c9 RH |
9720 | case FUNC_PC_RELATIVE: |
9721 | switch (r_type) | |
9722 | { | |
9723 | case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PCREL22; break; | |
9724 | case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PCREL64I; break; | |
9725 | case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_PCREL32MSB; break; | |
9726 | case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_PCREL32LSB; break; | |
9727 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PCREL64MSB; break; | |
9728 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PCREL64LSB; break; | |
9729 | default: break; | |
9730 | } | |
9731 | break; | |
9732 | ||
800eeca4 JW |
9733 | case FUNC_PLT_RELATIVE: |
9734 | switch (r_type) | |
9735 | { | |
9736 | case BFD_RELOC_IA64_IMM22: new = BFD_RELOC_IA64_PLTOFF22; break; | |
9737 | case BFD_RELOC_IA64_IMM64: new = BFD_RELOC_IA64_PLTOFF64I; break; | |
9738 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_PLTOFF64MSB;break; | |
9739 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_PLTOFF64LSB;break; | |
9740 | default: break; | |
9741 | } | |
9742 | break; | |
9743 | ||
9744 | case FUNC_SEC_RELATIVE: | |
9745 | switch (r_type) | |
9746 | { | |
9747 | case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SECREL32MSB;break; | |
9748 | case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SECREL32LSB;break; | |
9749 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SECREL64MSB;break; | |
9750 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SECREL64LSB;break; | |
9751 | default: break; | |
9752 | } | |
9753 | break; | |
9754 | ||
9755 | case FUNC_SEG_RELATIVE: | |
9756 | switch (r_type) | |
9757 | { | |
9758 | case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_SEGREL32MSB;break; | |
9759 | case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_SEGREL32LSB;break; | |
9760 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_SEGREL64MSB;break; | |
9761 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_SEGREL64LSB;break; | |
9762 | default: break; | |
9763 | } | |
9764 | break; | |
9765 | ||
9766 | case FUNC_LTV_RELATIVE: | |
9767 | switch (r_type) | |
9768 | { | |
9769 | case BFD_RELOC_IA64_DIR32MSB: new = BFD_RELOC_IA64_LTV32MSB; break; | |
9770 | case BFD_RELOC_IA64_DIR32LSB: new = BFD_RELOC_IA64_LTV32LSB; break; | |
9771 | case BFD_RELOC_IA64_DIR64MSB: new = BFD_RELOC_IA64_LTV64MSB; break; | |
9772 | case BFD_RELOC_IA64_DIR64LSB: new = BFD_RELOC_IA64_LTV64LSB; break; | |
9773 | default: break; | |
9774 | } | |
9775 | break; | |
9776 | ||
9777 | case FUNC_LT_FPTR_RELATIVE: | |
9778 | switch (r_type) | |
9779 | { | |
9780 | case BFD_RELOC_IA64_IMM22: | |
9781 | new = BFD_RELOC_IA64_LTOFF_FPTR22; break; | |
9782 | case BFD_RELOC_IA64_IMM64: | |
9783 | new = BFD_RELOC_IA64_LTOFF_FPTR64I; break; | |
9784 | default: | |
9785 | break; | |
9786 | } | |
9787 | break; | |
9788 | default: | |
9789 | abort (); | |
9790 | } | |
9791 | /* Hmmmm. Should this ever occur? */ | |
9792 | if (new) | |
9793 | return new; | |
9794 | else | |
9795 | return r_type; | |
9796 | } | |
9797 | ||
9798 | /* Here is where generate the appropriate reloc for pseudo relocation | |
9799 | functions. */ | |
9800 | void | |
9801 | ia64_validate_fix (fix) | |
9802 | fixS *fix; | |
9803 | { | |
9804 | switch (fix->fx_r_type) | |
9805 | { | |
9806 | case BFD_RELOC_IA64_FPTR64I: | |
9807 | case BFD_RELOC_IA64_FPTR32MSB: | |
9808 | case BFD_RELOC_IA64_FPTR64LSB: | |
9809 | case BFD_RELOC_IA64_LTOFF_FPTR22: | |
9810 | case BFD_RELOC_IA64_LTOFF_FPTR64I: | |
9811 | if (fix->fx_offset != 0) | |
9812 | as_bad_where (fix->fx_file, fix->fx_line, | |
9813 | "No addend allowed in @fptr() relocation"); | |
9814 | break; | |
9815 | default: | |
9816 | break; | |
9817 | } | |
9818 | ||
9819 | return; | |
9820 | } | |
9821 | ||
9822 | static void | |
9823 | fix_insn (fix, odesc, value) | |
9824 | fixS *fix; | |
9825 | const struct ia64_operand *odesc; | |
9826 | valueT value; | |
9827 | { | |
9828 | bfd_vma insn[3], t0, t1, control_bits; | |
9829 | const char *err; | |
9830 | char *fixpos; | |
9831 | long slot; | |
9832 | ||
9833 | slot = fix->fx_where & 0x3; | |
9834 | fixpos = fix->fx_frag->fr_literal + (fix->fx_where - slot); | |
9835 | ||
c67e42c9 | 9836 | /* Bundles are always in little-endian byte order */ |
800eeca4 JW |
9837 | t0 = bfd_getl64 (fixpos); |
9838 | t1 = bfd_getl64 (fixpos + 8); | |
9839 | control_bits = t0 & 0x1f; | |
9840 | insn[0] = (t0 >> 5) & 0x1ffffffffffLL; | |
9841 | insn[1] = ((t0 >> 46) & 0x3ffff) | ((t1 & 0x7fffff) << 18); | |
9842 | insn[2] = (t1 >> 23) & 0x1ffffffffffLL; | |
9843 | ||
c67e42c9 RH |
9844 | err = NULL; |
9845 | if (odesc - elf64_ia64_operands == IA64_OPND_IMMU64) | |
800eeca4 | 9846 | { |
c67e42c9 RH |
9847 | insn[1] = (value >> 22) & 0x1ffffffffffLL; |
9848 | insn[2] |= (((value & 0x7f) << 13) | |
9849 | | (((value >> 7) & 0x1ff) << 27) | |
9850 | | (((value >> 16) & 0x1f) << 22) | |
9851 | | (((value >> 21) & 0x1) << 21) | |
9852 | | (((value >> 63) & 0x1) << 36)); | |
800eeca4 | 9853 | } |
c67e42c9 RH |
9854 | else if (odesc - elf64_ia64_operands == IA64_OPND_IMMU62) |
9855 | { | |
9856 | if (value & ~0x3fffffffffffffffULL) | |
9857 | err = "integer operand out of range"; | |
9858 | insn[1] = (value >> 21) & 0x1ffffffffffLL; | |
9859 | insn[2] |= (((value & 0xfffff) << 6) | (((value >> 20) & 0x1) << 36)); | |
9860 | } | |
9861 | else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64) | |
9862 | { | |
9863 | value >>= 4; | |
9864 | insn[1] = ((value >> 20) & 0x7fffffffffLL) << 2; | |
9865 | insn[2] |= ((((value >> 59) & 0x1) << 36) | |
9866 | | (((value >> 0) & 0xfffff) << 13)); | |
9867 | } | |
9868 | else | |
9869 | err = (*odesc->insert) (odesc, value, insn + slot); | |
9870 | ||
9871 | if (err) | |
9872 | as_bad_where (fix->fx_file, fix->fx_line, err); | |
800eeca4 JW |
9873 | |
9874 | t0 = control_bits | (insn[0] << 5) | (insn[1] << 46); | |
9875 | t1 = ((insn[1] >> 18) & 0x7fffff) | (insn[2] << 23); | |
44f5c83a JW |
9876 | number_to_chars_littleendian (fixpos + 0, t0, 8); |
9877 | number_to_chars_littleendian (fixpos + 8, t1, 8); | |
800eeca4 JW |
9878 | } |
9879 | ||
9880 | /* Attempt to simplify or even eliminate a fixup. The return value is | |
9881 | ignored; perhaps it was once meaningful, but now it is historical. | |
9882 | To indicate that a fixup has been eliminated, set FIXP->FX_DONE. | |
9883 | ||
9884 | If fixp->fx_addsy is non-NULL, we'll have to generate a reloc entry | |
197865e8 | 9885 | (if possible). */ |
800eeca4 JW |
9886 | int |
9887 | md_apply_fix3 (fix, valuep, seg) | |
9888 | fixS *fix; | |
9889 | valueT *valuep; | |
2434f565 | 9890 | segT seg ATTRIBUTE_UNUSED; |
800eeca4 JW |
9891 | { |
9892 | char *fixpos; | |
9893 | valueT value = *valuep; | |
9894 | int adjust = 0; | |
9895 | ||
9896 | fixpos = fix->fx_frag->fr_literal + fix->fx_where; | |
9897 | ||
9898 | if (fix->fx_pcrel) | |
9899 | { | |
9900 | switch (fix->fx_r_type) | |
9901 | { | |
9902 | case BFD_RELOC_IA64_DIR32MSB: | |
9903 | fix->fx_r_type = BFD_RELOC_IA64_PCREL32MSB; | |
9904 | adjust = 1; | |
9905 | break; | |
9906 | ||
9907 | case BFD_RELOC_IA64_DIR32LSB: | |
9908 | fix->fx_r_type = BFD_RELOC_IA64_PCREL32LSB; | |
9909 | adjust = 1; | |
9910 | break; | |
9911 | ||
9912 | case BFD_RELOC_IA64_DIR64MSB: | |
9913 | fix->fx_r_type = BFD_RELOC_IA64_PCREL64MSB; | |
9914 | adjust = 1; | |
9915 | break; | |
9916 | ||
9917 | case BFD_RELOC_IA64_DIR64LSB: | |
9918 | fix->fx_r_type = BFD_RELOC_IA64_PCREL64LSB; | |
9919 | adjust = 1; | |
9920 | break; | |
9921 | ||
9922 | default: | |
9923 | break; | |
9924 | } | |
9925 | } | |
9926 | if (fix->fx_addsy) | |
9927 | { | |
fa1cb89c | 9928 | if (fix->fx_r_type == (int) BFD_RELOC_UNUSED) |
800eeca4 | 9929 | { |
fa1cb89c JW |
9930 | /* This must be a TAG13 or TAG13b operand. There are no external |
9931 | relocs defined for them, so we must give an error. */ | |
800eeca4 JW |
9932 | as_bad_where (fix->fx_file, fix->fx_line, |
9933 | "%s must have a constant value", | |
9934 | elf64_ia64_operands[fix->tc_fix_data.opnd].desc); | |
fa1cb89c JW |
9935 | fix->fx_done = 1; |
9936 | return 1; | |
800eeca4 JW |
9937 | } |
9938 | ||
9939 | /* ??? This is a hack copied from tc-i386.c to make PCREL relocs | |
542d6675 | 9940 | work. There should be a better way to handle this. */ |
800eeca4 JW |
9941 | if (adjust) |
9942 | fix->fx_offset += fix->fx_where + fix->fx_frag->fr_address; | |
9943 | } | |
9944 | else if (fix->tc_fix_data.opnd == IA64_OPND_NIL) | |
9945 | { | |
9946 | if (fix->tc_fix_data.bigendian) | |
9947 | number_to_chars_bigendian (fixpos, value, fix->fx_size); | |
9948 | else | |
9949 | number_to_chars_littleendian (fixpos, value, fix->fx_size); | |
9950 | fix->fx_done = 1; | |
9951 | return 1; | |
9952 | } | |
9953 | else | |
9954 | { | |
9955 | fix_insn (fix, elf64_ia64_operands + fix->tc_fix_data.opnd, value); | |
9956 | fix->fx_done = 1; | |
9957 | return 1; | |
9958 | } | |
9959 | return 1; | |
9960 | } | |
9961 | ||
9962 | /* Generate the BFD reloc to be stuck in the object file from the | |
9963 | fixup used internally in the assembler. */ | |
542d6675 KH |
9964 | |
9965 | arelent * | |
800eeca4 | 9966 | tc_gen_reloc (sec, fixp) |
2434f565 | 9967 | asection *sec ATTRIBUTE_UNUSED; |
800eeca4 JW |
9968 | fixS *fixp; |
9969 | { | |
9970 | arelent *reloc; | |
9971 | ||
9972 | reloc = xmalloc (sizeof (*reloc)); | |
9973 | reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *)); | |
9974 | *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy); | |
9975 | reloc->address = fixp->fx_frag->fr_address + fixp->fx_where; | |
9976 | reloc->addend = fixp->fx_offset; | |
9977 | reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type); | |
9978 | ||
9979 | if (!reloc->howto) | |
9980 | { | |
9981 | as_bad_where (fixp->fx_file, fixp->fx_line, | |
9982 | "Cannot represent %s relocation in object file", | |
9983 | bfd_get_reloc_code_name (fixp->fx_r_type)); | |
9984 | } | |
9985 | return reloc; | |
9986 | } | |
9987 | ||
9988 | /* Turn a string in input_line_pointer into a floating point constant | |
bc0d738a NC |
9989 | of type TYPE, and store the appropriate bytes in *LIT. The number |
9990 | of LITTLENUMS emitted is stored in *SIZE. An error message is | |
800eeca4 JW |
9991 | returned, or NULL on OK. */ |
9992 | ||
9993 | #define MAX_LITTLENUMS 5 | |
9994 | ||
542d6675 | 9995 | char * |
800eeca4 JW |
9996 | md_atof (type, lit, size) |
9997 | int type; | |
9998 | char *lit; | |
9999 | int *size; | |
10000 | { | |
10001 | LITTLENUM_TYPE words[MAX_LITTLENUMS]; | |
10002 | LITTLENUM_TYPE *word; | |
10003 | char *t; | |
10004 | int prec; | |
10005 | ||
10006 | switch (type) | |
10007 | { | |
10008 | /* IEEE floats */ | |
10009 | case 'f': | |
10010 | case 'F': | |
10011 | case 's': | |
10012 | case 'S': | |
10013 | prec = 2; | |
10014 | break; | |
10015 | ||
10016 | case 'd': | |
10017 | case 'D': | |
10018 | case 'r': | |
10019 | case 'R': | |
10020 | prec = 4; | |
10021 | break; | |
10022 | ||
10023 | case 'x': | |
10024 | case 'X': | |
10025 | case 'p': | |
10026 | case 'P': | |
10027 | prec = 5; | |
10028 | break; | |
10029 | ||
10030 | default: | |
10031 | *size = 0; | |
10032 | return "Bad call to MD_ATOF()"; | |
10033 | } | |
10034 | t = atof_ieee (input_line_pointer, type, words); | |
10035 | if (t) | |
10036 | input_line_pointer = t; | |
10037 | *size = prec * sizeof (LITTLENUM_TYPE); | |
10038 | ||
10039 | for (word = words + prec - 1; prec--;) | |
10040 | { | |
10041 | md_number_to_chars (lit, (long) (*word--), sizeof (LITTLENUM_TYPE)); | |
10042 | lit += sizeof (LITTLENUM_TYPE); | |
10043 | } | |
10044 | return 0; | |
10045 | } | |
10046 | ||
10047 | /* Round up a section's size to the appropriate boundary. */ | |
10048 | valueT | |
10049 | md_section_align (seg, size) | |
10050 | segT seg; | |
10051 | valueT size; | |
10052 | { | |
10053 | int align = bfd_get_section_alignment (stdoutput, seg); | |
197865e8 | 10054 | valueT mask = ((valueT) 1 << align) - 1; |
800eeca4 JW |
10055 | |
10056 | return (size + mask) & ~mask; | |
10057 | } | |
10058 | ||
10059 | /* Handle ia64 specific semantics of the align directive. */ | |
10060 | ||
0a9ef439 | 10061 | void |
800eeca4 | 10062 | ia64_md_do_align (n, fill, len, max) |
91a2ae2a RH |
10063 | int n ATTRIBUTE_UNUSED; |
10064 | const char *fill ATTRIBUTE_UNUSED; | |
2434f565 | 10065 | int len ATTRIBUTE_UNUSED; |
91a2ae2a | 10066 | int max ATTRIBUTE_UNUSED; |
800eeca4 | 10067 | { |
0a9ef439 | 10068 | if (subseg_text_p (now_seg)) |
800eeca4 | 10069 | ia64_flush_insns (); |
0a9ef439 | 10070 | } |
800eeca4 | 10071 | |
0a9ef439 RH |
10072 | /* This is called from HANDLE_ALIGN in write.c. Fill in the contents |
10073 | of an rs_align_code fragment. */ | |
800eeca4 | 10074 | |
0a9ef439 RH |
10075 | void |
10076 | ia64_handle_align (fragp) | |
10077 | fragS *fragp; | |
10078 | { | |
10079 | /* Use mfi bundle of nops with no stop bits. */ | |
10080 | static const unsigned char be_nop[] | |
10081 | = { 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, | |
10082 | 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c}; | |
10083 | static const unsigned char le_nop[] | |
10084 | = { 0x0c, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, | |
10085 | 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00}; | |
10086 | ||
10087 | int bytes; | |
10088 | char *p; | |
10089 | ||
10090 | if (fragp->fr_type != rs_align_code) | |
10091 | return; | |
10092 | ||
10093 | bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix; | |
10094 | p = fragp->fr_literal + fragp->fr_fix; | |
10095 | ||
10096 | /* Make sure we are on a 16-byte boundary, in case someone has been | |
10097 | putting data into a text section. */ | |
10098 | if (bytes & 15) | |
10099 | { | |
10100 | int fix = bytes & 15; | |
10101 | memset (p, 0, fix); | |
10102 | p += fix; | |
10103 | bytes -= fix; | |
10104 | fragp->fr_fix += fix; | |
800eeca4 JW |
10105 | } |
10106 | ||
0a9ef439 RH |
10107 | memcpy (p, (target_big_endian ? be_nop : le_nop), 16); |
10108 | fragp->fr_var = 16; | |
800eeca4 | 10109 | } |