Fix regression from change
[binutils.git] / gas / config / tc-tilegx.c
blobb2d94205be1a06752015e159bcf48b83e88a9281
1 /* tc-tilegx.c -- Assemble for a Tile-Gx chip.
2 Copyright 2011 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
21 #include "as.h"
22 #include "struc-symbol.h"
23 #include "subsegs.h"
25 #include "elf/tilegx.h"
26 #include "opcode/tilegx.h"
28 #include "dwarf2dbg.h"
29 #include "dw2gencfi.h"
31 #include "safe-ctype.h"
34 /* Special registers. */
35 #define TREG_IDN0 57
36 #define TREG_IDN1 58
37 #define TREG_UDN0 59
38 #define TREG_UDN1 60
39 #define TREG_UDN2 61
40 #define TREG_UDN3 62
41 #define TREG_ZERO 63
44 /* Generic assembler global variables which must be defined by all
45 targets. */
47 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
48 int tilegx_cie_data_alignment;
50 /* Characters which always start a comment. */
51 const char comment_chars[] = "#";
53 /* Characters which start a comment at the beginning of a line. */
54 const char line_comment_chars[] = "#";
56 /* Characters which may be used to separate multiple commands on a
57 single line. */
58 const char line_separator_chars[] = ";";
60 /* Characters which are used to indicate an exponent in a floating
61 point number. */
62 const char EXP_CHARS[] = "eE";
64 /* Characters which mean that a number is a floating point constant,
65 as in 0d1.0. */
66 const char FLT_CHARS[] = "rRsSfFdDxXpP";
68 /* Either 32 or 64. */
69 static int tilegx_arch_size = 64;
72 const char *
73 tilegx_target_format (void)
75 if (target_big_endian) {
76 return tilegx_arch_size == 64 ? "elf64-tilegx-be" : "elf32-tilegx-be";
77 } else {
78 return tilegx_arch_size == 64 ? "elf64-tilegx-le" : "elf32-tilegx-le";
83 #define OPTION_32 (OPTION_MD_BASE + 0)
84 #define OPTION_64 (OPTION_MD_BASE + 1)
85 #define OPTION_EB (OPTION_MD_BASE + 2)
86 #define OPTION_EL (OPTION_MD_BASE + 3)
88 const char *md_shortopts = "VQ:";
90 struct option md_longopts[] =
92 {"32", no_argument, NULL, OPTION_32},
93 {"64", no_argument, NULL, OPTION_64},
94 {"EB", no_argument, NULL, OPTION_EB },
95 {"EL", no_argument, NULL, OPTION_EL },
96 {NULL, no_argument, NULL, 0}
99 size_t md_longopts_size = sizeof (md_longopts);
102 md_parse_option (int c, char *arg ATTRIBUTE_UNUSED)
104 switch (c)
106 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
107 should be emitted or not. FIXME: Not implemented. */
108 case 'Q':
109 break;
111 /* -V: SVR4 argument to print version ID. */
112 case 'V':
113 print_version_id ();
114 break;
116 case OPTION_32:
117 tilegx_arch_size = 32;
118 break;
120 case OPTION_64:
121 tilegx_arch_size = 64;
122 break;
124 case OPTION_EB:
125 target_big_endian = 1;
126 break;
128 case OPTION_EL:
129 target_big_endian = 0;
130 break;
132 default:
133 return 0;
136 return 1;
139 void
140 md_show_usage (FILE *stream)
142 fprintf (stream, _("\
143 -Q ignored\n\
144 -V print assembler version number\n\
145 -EB/-EL generate big-endian/little-endian code\n\
146 --32/--64 generate 32bit/64bit code\n"));
150 /* Extra expression types. */
152 #define O_hw0 O_md1
153 #define O_hw1 O_md2
154 #define O_hw2 O_md3
155 #define O_hw3 O_md4
156 #define O_hw0_last O_md5
157 #define O_hw1_last O_md6
158 #define O_hw2_last O_md7
159 #define O_hw0_got O_md8
160 #define O_hw0_last_got O_md9
161 #define O_hw1_last_got O_md10
162 #define O_plt O_md11
163 #define O_hw0_tls_gd O_md12
164 #define O_hw0_last_tls_gd O_md13
165 #define O_hw1_last_tls_gd O_md14
166 #define O_hw0_tls_ie O_md15
167 #define O_hw0_last_tls_ie O_md16
168 #define O_hw1_last_tls_ie O_md17
169 #define O_hw0_tls_le O_md18
170 #define O_hw0_last_tls_le O_md19
171 #define O_hw1_last_tls_le O_md20
172 #define O_tls_gd_call O_md21
173 #define O_tls_gd_add O_md22
174 #define O_tls_ie_load O_md23
175 #define O_tls_add O_md24
177 static struct hash_control *special_operator_hash;
179 /* Hash tables for instruction mnemonic lookup. */
180 static struct hash_control *op_hash;
182 /* Hash table for spr lookup. */
183 static struct hash_control *spr_hash;
185 /* True temporarily while parsing an SPR expression. This changes the
186 * namespace to include SPR names. */
187 static int parsing_spr;
189 /* Are we currently inside `{ ... }'? */
190 static int inside_bundle;
192 struct tilegx_instruction
194 const struct tilegx_opcode *opcode;
195 tilegx_pipeline pipe;
196 expressionS operand_values[TILEGX_MAX_OPERANDS];
199 /* This keeps track of the current bundle being built up. */
200 static struct tilegx_instruction current_bundle[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE];
202 /* Index in current_bundle for the next instruction to parse. */
203 static int current_bundle_index;
205 /* Allow 'r63' in addition to 'zero', etc. Normally we disallow this as
206 'zero' is not a real register, so using it accidentally would be a
207 nasty bug. For other registers, such as 'sp', code using multiple names
208 for the same physical register is excessively confusing.
210 The '.require_canonical_reg_names' pseudo-op turns this error on,
211 and the '.no_require_canonical_reg_names' pseudo-op turns this off.
212 By default the error is on. */
213 static int require_canonical_reg_names;
215 /* Allow bundles that do undefined or suspicious things like write
216 two different values to the same register at the same time.
218 The '.no_allow_suspicious_bundles' pseudo-op turns this error on,
219 and the '.allow_suspicious_bundles' pseudo-op turns this off. */
220 static int allow_suspicious_bundles;
223 /* A hash table of main processor registers, mapping each register name
224 to its index.
226 Furthermore, if the register number is greater than the number
227 of registers for that processor, the user used an illegal alias
228 for that register (e.g. r63 instead of zero), so we should generate
229 a warning. The attempted register number can be found by clearing
230 NONCANONICAL_REG_NAME_FLAG. */
231 static struct hash_control *main_reg_hash;
234 /* We cannot unambiguously store a 0 in a hash table and look it up,
235 so we OR in this flag to every canonical register. */
236 #define CANONICAL_REG_NAME_FLAG 0x1000
238 /* By default we disallow register aliases like r63, but we record
239 them in the hash table in case the .no_require_canonical_reg_names
240 directive is used. Noncanonical names have this value added to them. */
241 #define NONCANONICAL_REG_NAME_FLAG 0x2000
243 /* Discards flags for register hash table entries and returns the
244 reg number. */
245 #define EXTRACT_REGNO(p) ((p) & 63)
247 /* This function is called once, at assembler startup time. It should
248 set up all the tables, etc., that the MD part of the assembler will
249 need. */
251 void
252 md_begin (void)
254 const struct tilegx_opcode *op;
255 int i;
256 int mach = (tilegx_arch_size == 64) ? bfd_mach_tilegx : bfd_mach_tilegx32;
258 if (! bfd_set_arch_mach (stdoutput, bfd_arch_tilegx, mach))
259 as_warn (_("Could not set architecture and machine"));
261 /* Guarantee text section is aligned. */
262 bfd_set_section_alignment (stdoutput, text_section,
263 TILEGX_LOG2_BUNDLE_ALIGNMENT_IN_BYTES);
265 require_canonical_reg_names = 1;
266 allow_suspicious_bundles = 0;
267 current_bundle_index = 0;
268 inside_bundle = 0;
270 tilegx_cie_data_alignment = (tilegx_arch_size == 64 ? -8 : -4);
272 /* Initialize special operator hash table. */
273 special_operator_hash = hash_new ();
274 #define INSERT_SPECIAL_OP(name) \
275 hash_insert (special_operator_hash, #name, (void *)O_##name)
277 INSERT_SPECIAL_OP (hw0);
278 INSERT_SPECIAL_OP (hw1);
279 INSERT_SPECIAL_OP (hw2);
280 INSERT_SPECIAL_OP (hw3);
281 INSERT_SPECIAL_OP (hw0_last);
282 INSERT_SPECIAL_OP (hw1_last);
283 INSERT_SPECIAL_OP (hw2_last);
284 /* hw3_last is a convenience alias for the equivalent hw3. */
285 hash_insert (special_operator_hash, "hw3_last", (void*)O_hw3);
286 INSERT_SPECIAL_OP (hw0_got);
287 INSERT_SPECIAL_OP (hw0_last_got);
288 INSERT_SPECIAL_OP (hw1_last_got);
289 INSERT_SPECIAL_OP(plt);
290 INSERT_SPECIAL_OP (hw0_tls_gd);
291 INSERT_SPECIAL_OP (hw0_last_tls_gd);
292 INSERT_SPECIAL_OP (hw1_last_tls_gd);
293 INSERT_SPECIAL_OP (hw0_tls_ie);
294 INSERT_SPECIAL_OP (hw0_last_tls_ie);
295 INSERT_SPECIAL_OP (hw1_last_tls_ie);
296 INSERT_SPECIAL_OP (hw0_tls_le);
297 INSERT_SPECIAL_OP (hw0_last_tls_le);
298 INSERT_SPECIAL_OP (hw1_last_tls_le);
299 INSERT_SPECIAL_OP (tls_gd_call);
300 INSERT_SPECIAL_OP (tls_gd_add);
301 INSERT_SPECIAL_OP (tls_ie_load);
302 INSERT_SPECIAL_OP (tls_add);
303 #undef INSERT_SPECIAL_OP
305 /* Initialize op_hash hash table. */
306 op_hash = hash_new ();
307 for (op = &tilegx_opcodes[0]; op->name != NULL; op++)
309 const char *hash_err = hash_insert (op_hash, op->name, (void *)op);
310 if (hash_err != NULL)
311 as_fatal (_("Internal Error: Can't hash %s: %s"), op->name, hash_err);
314 /* Initialize the spr hash table. */
315 parsing_spr = 0;
316 spr_hash = hash_new ();
317 for (i = 0; i < tilegx_num_sprs; i++)
318 hash_insert (spr_hash, tilegx_sprs[i].name,
319 (void *) &tilegx_sprs[i]);
321 /* Set up the main_reg_hash table. We use this instead of
322 creating a symbol in the register section to avoid ambiguities
323 with labels that have the same names as registers. */
324 main_reg_hash = hash_new ();
325 for (i = 0; i < TILEGX_NUM_REGISTERS; i++)
327 char buf[64];
329 hash_insert (main_reg_hash, tilegx_register_names[i],
330 (void *) (long) (i | CANONICAL_REG_NAME_FLAG));
332 /* See if we should insert a noncanonical alias, like r63. */
333 sprintf (buf, "r%d", i);
334 if (strcmp (buf, tilegx_register_names[i]) != 0)
335 hash_insert (main_reg_hash, xstrdup (buf),
336 (void *) (long) (i | NONCANONICAL_REG_NAME_FLAG));
340 #define BUNDLE_TEMPLATE_MASK(p0, p1, p2) \
341 ((p0) | ((p1) << 8) | ((p2) << 16))
342 #define BUNDLE_TEMPLATE(p0, p1, p2) \
343 { { (p0), (p1), (p2) }, \
344 BUNDLE_TEMPLATE_MASK(1 << (p0), 1 << (p1), (1 << (p2))) \
347 #define NO_PIPELINE TILEGX_NUM_PIPELINE_ENCODINGS
349 struct bundle_template
351 tilegx_pipeline pipe[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE];
352 unsigned int pipe_mask;
355 static const struct bundle_template bundle_templates[] =
357 /* In Y format we must always have something in Y2, since it has
358 no fnop, so this conveys that Y2 must always be used. */
359 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y0, TILEGX_PIPELINE_Y2, NO_PIPELINE),
360 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y1, TILEGX_PIPELINE_Y2, NO_PIPELINE),
361 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2, TILEGX_PIPELINE_Y0, NO_PIPELINE),
362 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2, TILEGX_PIPELINE_Y1, NO_PIPELINE),
364 /* Y format has three instructions. */
365 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y0,TILEGX_PIPELINE_Y1,TILEGX_PIPELINE_Y2),
366 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y0,TILEGX_PIPELINE_Y2,TILEGX_PIPELINE_Y1),
367 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y1,TILEGX_PIPELINE_Y0,TILEGX_PIPELINE_Y2),
368 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y1,TILEGX_PIPELINE_Y2,TILEGX_PIPELINE_Y0),
369 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2,TILEGX_PIPELINE_Y0,TILEGX_PIPELINE_Y1),
370 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2,TILEGX_PIPELINE_Y1,TILEGX_PIPELINE_Y0),
372 /* X format has only two instructions. */
373 BUNDLE_TEMPLATE(TILEGX_PIPELINE_X0, TILEGX_PIPELINE_X1, NO_PIPELINE),
374 BUNDLE_TEMPLATE(TILEGX_PIPELINE_X1, TILEGX_PIPELINE_X0, NO_PIPELINE)
378 static void
379 prepend_nop_to_bundle (tilegx_mnemonic mnemonic)
381 memmove (&current_bundle[1], &current_bundle[0],
382 current_bundle_index * sizeof current_bundle[0]);
383 current_bundle[0].opcode = &tilegx_opcodes[mnemonic];
384 ++current_bundle_index;
387 static tilegx_bundle_bits
388 insert_operand (tilegx_bundle_bits bits,
389 const struct tilegx_operand *operand,
390 int operand_value,
391 char *file,
392 unsigned lineno)
394 /* Range-check the immediate. */
395 int num_bits = operand->num_bits;
397 operand_value >>= operand->rightshift;
399 if (bfd_check_overflow (operand->is_signed
400 ? complain_overflow_signed
401 : complain_overflow_unsigned,
402 num_bits,
404 bfd_arch_bits_per_address (stdoutput),
405 operand_value)
406 != bfd_reloc_ok)
408 offsetT min, max;
409 if (operand->is_signed)
411 min = -(1 << (num_bits - 1));
412 max = (1 << (num_bits - 1)) - 1;
414 else
416 min = 0;
417 max = (1 << num_bits) - 1;
419 as_bad_value_out_of_range (_("operand"), operand_value, min, max,
420 file, lineno);
423 /* Write out the bits for the immediate. */
424 return bits | operand->insert (operand_value);
428 static int
429 apply_special_operator (operatorT op, offsetT num, char *file, unsigned lineno)
431 int ret;
432 int check_shift = -1;
434 switch (op)
436 case O_hw0_last:
437 check_shift = 0;
438 /* Fall through. */
439 case O_hw0:
440 ret = (signed short)num;
441 break;
443 case O_hw1_last:
444 check_shift = 16;
445 /* Fall through. */
446 case O_hw1:
447 ret = (signed short)(num >> 16);
448 break;
450 case O_hw2_last:
451 check_shift = 32;
452 /* Fall through. */
453 case O_hw2:
454 ret = (signed short)(num >> 32);
455 break;
457 case O_hw3:
458 ret = (signed short)(num >> 48);
459 break;
461 default:
462 abort ();
463 break;
466 if (check_shift >= 0 && ret != (num >> check_shift))
468 as_bad_value_out_of_range (_("operand"), num,
469 ~0ULL << (check_shift + 16 - 1),
470 ~0ULL >> (64 - (check_shift + 16 - 1)),
471 file, lineno);
474 return ret;
477 static tilegx_bundle_bits
478 emit_tilegx_instruction (tilegx_bundle_bits bits,
479 int num_operands,
480 const unsigned char *operands,
481 expressionS *operand_values,
482 char *bundle_start)
484 int i;
486 for (i = 0; i < num_operands; i++)
488 const struct tilegx_operand *operand =
489 &tilegx_operands[operands[i]];
490 expressionS *operand_exp = &operand_values[i];
491 int is_pc_relative = operand->is_pc_relative;
493 if (operand_exp->X_op == O_register
494 || (operand_exp->X_op == O_constant && !is_pc_relative))
496 /* We know what the bits are right now, so insert them. */
497 bits = insert_operand (bits, operand, operand_exp->X_add_number,
498 NULL, 0);
500 else
502 bfd_reloc_code_real_type reloc = operand->default_reloc;
503 expressionS subexp;
504 int die = 0, use_subexp = 0, require_symbol = 0;
505 fixS *fixP;
507 /* Take an expression like hw0(x) and turn it into x with
508 a different reloc type. */
509 switch (operand_exp->X_op)
511 #define HANDLE_OP16(suffix) \
512 switch (reloc) \
514 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: \
515 reloc = BFD_RELOC_TILEGX_IMM16_X0_##suffix; \
516 break; \
517 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: \
518 reloc = BFD_RELOC_TILEGX_IMM16_X1_##suffix; \
519 break; \
520 default: \
521 die = 1; \
522 break; \
524 use_subexp = 1
526 case O_hw0:
527 HANDLE_OP16 (HW0);
528 break;
530 case O_hw1:
531 HANDLE_OP16 (HW1);
532 break;
534 case O_hw2:
535 HANDLE_OP16 (HW2);
536 break;
538 case O_hw3:
539 HANDLE_OP16 (HW3);
540 break;
542 case O_hw0_last:
543 HANDLE_OP16 (HW0_LAST);
544 break;
546 case O_hw1_last:
547 HANDLE_OP16 (HW1_LAST);
548 break;
550 case O_hw2_last:
551 HANDLE_OP16 (HW2_LAST);
552 break;
554 case O_hw0_got:
555 HANDLE_OP16 (HW0_GOT);
556 require_symbol = 1;
557 break;
559 case O_hw0_last_got:
560 HANDLE_OP16 (HW0_LAST_GOT);
561 require_symbol = 1;
562 break;
564 case O_hw1_last_got:
565 HANDLE_OP16 (HW1_LAST_GOT);
566 require_symbol = 1;
567 break;
569 case O_hw0_tls_gd:
570 HANDLE_OP16 (HW0_TLS_GD);
571 require_symbol = 1;
572 break;
574 case O_hw0_last_tls_gd:
575 HANDLE_OP16 (HW0_LAST_TLS_GD);
576 require_symbol = 1;
577 break;
579 case O_hw1_last_tls_gd:
580 HANDLE_OP16 (HW1_LAST_TLS_GD);
581 require_symbol = 1;
582 break;
584 case O_hw0_tls_ie:
585 HANDLE_OP16 (HW0_TLS_IE);
586 require_symbol = 1;
587 break;
589 case O_hw0_last_tls_ie:
590 HANDLE_OP16 (HW0_LAST_TLS_IE);
591 require_symbol = 1;
592 break;
594 case O_hw1_last_tls_ie:
595 HANDLE_OP16 (HW1_LAST_TLS_IE);
596 require_symbol = 1;
597 break;
599 case O_hw0_tls_le:
600 HANDLE_OP16 (HW0_TLS_LE);
601 require_symbol = 1;
602 break;
604 case O_hw0_last_tls_le:
605 HANDLE_OP16 (HW0_LAST_TLS_LE);
606 require_symbol = 1;
607 break;
609 case O_hw1_last_tls_le:
610 HANDLE_OP16 (HW1_LAST_TLS_LE);
611 require_symbol = 1;
612 break;
614 #undef HANDLE_OP16
616 case O_plt:
617 switch (reloc)
619 case BFD_RELOC_TILEGX_JUMPOFF_X1:
620 reloc = BFD_RELOC_TILEGX_JUMPOFF_X1_PLT;
621 break;
622 default:
623 die = 1;
624 break;
626 use_subexp = 1;
627 require_symbol = 1;
628 break;
630 case O_tls_gd_call:
631 switch (reloc)
633 case BFD_RELOC_TILEGX_JUMPOFF_X1:
634 reloc = BFD_RELOC_TILEGX_TLS_GD_CALL;
635 break;
636 default:
637 die = 1;
638 break;
640 use_subexp = 1;
641 require_symbol = 1;
642 break;
644 case O_tls_gd_add:
645 switch (reloc)
647 case BFD_RELOC_TILEGX_IMM8_X0:
648 reloc = BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD;
649 break;
650 case BFD_RELOC_TILEGX_IMM8_X1:
651 reloc = BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD;
652 break;
653 case BFD_RELOC_TILEGX_IMM8_Y0:
654 reloc = BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD;
655 break;
656 case BFD_RELOC_TILEGX_IMM8_Y1:
657 reloc = BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD;
658 break;
659 default:
660 die = 1;
661 break;
663 use_subexp = 1;
664 require_symbol = 1;
665 break;
667 case O_tls_ie_load:
668 switch (reloc)
670 case BFD_RELOC_TILEGX_IMM8_X1:
671 reloc = BFD_RELOC_TILEGX_TLS_IE_LOAD;
672 break;
673 default:
674 die = 1;
675 break;
677 use_subexp = 1;
678 require_symbol = 1;
679 break;
681 case O_tls_add:
682 switch (reloc)
684 case BFD_RELOC_TILEGX_IMM8_X0:
685 reloc = BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD;
686 break;
687 case BFD_RELOC_TILEGX_IMM8_X1:
688 reloc = BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD;
689 break;
690 case BFD_RELOC_TILEGX_IMM8_Y0:
691 reloc = BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD;
692 break;
693 case BFD_RELOC_TILEGX_IMM8_Y1:
694 reloc = BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD;
695 break;
696 default:
697 die = 1;
698 break;
700 use_subexp = 1;
701 require_symbol = 1;
702 break;
704 default:
705 /* Do nothing. */
706 break;
709 if (die)
711 as_bad (_("Invalid operator for operand."));
713 else if (use_subexp)
715 /* Now that we've changed the reloc, change ha16(x) into x,
716 etc. */
718 if (!operand_exp->X_add_symbol->sy_flags.sy_local_symbol
719 && operand_exp->X_add_symbol->sy_value.X_md)
721 /* HACK: We used X_md to mark this symbol as a fake wrapper
722 around a real expression. To unwrap it, we just grab its
723 value here. */
724 operand_exp = &operand_exp->X_add_symbol->sy_value;
726 if (require_symbol)
728 /* Look at the expression, and reject it if it's not a
729 plain symbol. */
730 if (operand_exp->X_op != O_symbol
731 || operand_exp->X_add_number != 0)
732 as_bad (_("Operator may only be applied to symbols."));
735 else
737 /* The value of this expression is an actual symbol, so
738 turn that into an expression. */
739 memset (&subexp, 0, sizeof subexp);
740 subexp.X_op = O_symbol;
741 subexp.X_add_symbol = operand_exp->X_add_symbol;
742 operand_exp = &subexp;
746 /* Create a fixup to handle this later. */
747 fixP = fix_new_exp (frag_now,
748 bundle_start - frag_now->fr_literal,
749 (operand->num_bits + 7) >> 3,
750 operand_exp,
751 is_pc_relative,
752 reloc);
753 fixP->tc_fix_data = operand;
755 /* Don't do overflow checking if we are applying a function like
756 ha16. */
757 fixP->fx_no_overflow |= use_subexp;
760 return bits;
764 /* Detects and complains if two instructions in current_bundle write
765 to the same register, either implicitly or explicitly, or if a
766 read-only register is written. */
767 static void
768 check_illegal_reg_writes (void)
770 BFD_HOST_U_64_BIT all_regs_written = 0;
771 int j;
773 for (j = 0; j < current_bundle_index; j++)
775 const struct tilegx_instruction *instr = &current_bundle[j];
776 int k;
777 BFD_HOST_U_64_BIT regs =
778 ((BFD_HOST_U_64_BIT)1) << instr->opcode->implicitly_written_register;
779 BFD_HOST_U_64_BIT conflict;
781 for (k = 0; k < instr->opcode->num_operands; k++)
783 const struct tilegx_operand *operand =
784 &tilegx_operands[instr->opcode->operands[instr->pipe][k]];
786 if (operand->is_dest_reg)
788 int regno = instr->operand_values[k].X_add_number;
789 BFD_HOST_U_64_BIT mask = ((BFD_HOST_U_64_BIT)1) << regno;
791 if ((mask & ( (((BFD_HOST_U_64_BIT)1) << TREG_IDN1)
792 | (((BFD_HOST_U_64_BIT)1) << TREG_UDN1)
793 | (((BFD_HOST_U_64_BIT)1) << TREG_UDN2)
794 | (((BFD_HOST_U_64_BIT)1) << TREG_UDN3))) != 0
795 && !allow_suspicious_bundles)
797 as_bad (_("Writes to register '%s' are not allowed."),
798 tilegx_register_names[regno]);
801 regs |= mask;
805 /* Writing to the zero register doesn't count. */
806 regs &= ~(((BFD_HOST_U_64_BIT)1) << TREG_ZERO);
808 conflict = all_regs_written & regs;
809 if (conflict != 0 && !allow_suspicious_bundles)
811 /* Find which register caused the conflict. */
812 const char *conflicting_reg_name = "???";
813 int i;
815 for (i = 0; i < TILEGX_NUM_REGISTERS; i++)
817 if (((conflict >> i) & 1) != 0)
819 conflicting_reg_name = tilegx_register_names[i];
820 break;
824 as_bad (_("Two instructions in the same bundle both write "
825 "to register %s, which is not allowed."),
826 conflicting_reg_name);
829 all_regs_written |= regs;
834 static void
835 tilegx_flush_bundle (void)
837 unsigned i;
838 int j;
839 addressT addr_mod;
840 unsigned compatible_pipes;
841 const struct bundle_template *match;
842 char *f;
844 inside_bundle = 0;
846 switch (current_bundle_index)
848 case 0:
849 /* No instructions. */
850 return;
851 case 1:
852 if (current_bundle[0].opcode->can_bundle)
854 /* Simplify later logic by adding an explicit fnop. */
855 prepend_nop_to_bundle (TILEGX_OPC_FNOP);
857 else
859 /* This instruction cannot be bundled with anything else.
860 Prepend an explicit 'nop', rather than an 'fnop', because
861 fnops can be replaced by later binary-processing tools while
862 nops cannot. */
863 prepend_nop_to_bundle (TILEGX_OPC_NOP);
865 break;
866 default:
867 if (!allow_suspicious_bundles)
869 /* Make sure all instructions can be bundled with other
870 instructions. */
871 const struct tilegx_opcode *cannot_bundle = NULL;
872 bfd_boolean seen_non_nop = FALSE;
874 for (j = 0; j < current_bundle_index; j++)
876 const struct tilegx_opcode *op = current_bundle[j].opcode;
878 if (!op->can_bundle && cannot_bundle == NULL)
879 cannot_bundle = op;
880 else if (op->mnemonic != TILEGX_OPC_NOP
881 && op->mnemonic != TILEGX_OPC_INFO
882 && op->mnemonic != TILEGX_OPC_INFOL)
883 seen_non_nop = TRUE;
886 if (cannot_bundle != NULL && seen_non_nop)
888 current_bundle_index = 0;
889 as_bad (_("'%s' may not be bundled with other instructions."),
890 cannot_bundle->name);
891 return;
894 break;
897 compatible_pipes =
898 BUNDLE_TEMPLATE_MASK(current_bundle[0].opcode->pipes,
899 current_bundle[1].opcode->pipes,
900 (current_bundle_index == 3
901 ? current_bundle[2].opcode->pipes
902 : (1 << NO_PIPELINE)));
904 /* Find a template that works, if any. */
905 match = NULL;
906 for (i = 0; i < sizeof bundle_templates / sizeof bundle_templates[0]; i++)
908 const struct bundle_template *b = &bundle_templates[i];
909 if ((b->pipe_mask & compatible_pipes) == b->pipe_mask)
911 match = b;
912 break;
916 if (match == NULL)
918 current_bundle_index = 0;
919 as_bad (_("Invalid combination of instructions for bundle."));
920 return;
923 /* If the section seems to have no alignment set yet, go ahead and
924 make it large enough to hold code. */
925 if (bfd_get_section_alignment (stdoutput, now_seg) == 0)
926 bfd_set_section_alignment (stdoutput, now_seg,
927 TILEGX_LOG2_BUNDLE_ALIGNMENT_IN_BYTES);
929 for (j = 0; j < current_bundle_index; j++)
930 current_bundle[j].pipe = match->pipe[j];
932 if (current_bundle_index == 2 && !tilegx_is_x_pipeline (match->pipe[0]))
934 /* We are in Y mode with only two instructions, so add an FNOP. */
935 prepend_nop_to_bundle (TILEGX_OPC_FNOP);
937 /* Figure out what pipe the fnop must be in via arithmetic.
938 * p0 + p1 + p2 must sum to the sum of TILEGX_PIPELINE_Y[012]. */
939 current_bundle[0].pipe =
940 (tilegx_pipeline)((TILEGX_PIPELINE_Y0
941 + TILEGX_PIPELINE_Y1
942 + TILEGX_PIPELINE_Y2) -
943 (current_bundle[1].pipe + current_bundle[2].pipe));
946 check_illegal_reg_writes ();
948 f = frag_more (TILEGX_BUNDLE_SIZE_IN_BYTES);
950 /* Check to see if this bundle is at an offset that is a multiple of 8-bytes
951 from the start of the frag. */
952 addr_mod = frag_now_fix () & (TILEGX_BUNDLE_ALIGNMENT_IN_BYTES - 1);
953 if (frag_now->has_code && frag_now->insn_addr != addr_mod)
954 as_bad (_("instruction address is not a multiple of 8"));
955 frag_now->insn_addr = addr_mod;
956 frag_now->has_code = 1;
958 tilegx_bundle_bits bits = 0;
959 for (j = 0; j < current_bundle_index; j++)
961 struct tilegx_instruction *instr = &current_bundle[j];
962 tilegx_pipeline pipeline = instr->pipe;
963 const struct tilegx_opcode *opcode = instr->opcode;
965 bits |= emit_tilegx_instruction (opcode->fixed_bit_values[pipeline],
966 opcode->num_operands,
967 &opcode->operands[pipeline][0],
968 instr->operand_values,
972 number_to_chars_littleendian (f, bits, 8);
973 current_bundle_index = 0;
975 /* Emit DWARF2 debugging information. */
976 dwarf2_emit_insn (TILEGX_BUNDLE_SIZE_IN_BYTES);
980 /* Extend the expression parser to handle hw0(label), etc.
981 as well as SPR names when in the context of parsing an SPR. */
984 tilegx_parse_name (char *name, expressionS *e, char *nextcharP)
986 operatorT op = O_illegal;
988 if (parsing_spr)
990 void* val = hash_find (spr_hash, name);
991 if (val == NULL)
992 return 0;
994 memset (e, 0, sizeof *e);
995 e->X_op = O_constant;
996 e->X_add_number = ((const struct tilegx_spr *)val)->number;
997 return 1;
1000 if (*nextcharP != '(')
1002 /* hw0, etc. not followed by a paren is just a label with that name. */
1003 return 0;
1005 else
1007 /* Look up the operator in our table. */
1008 void* val = hash_find (special_operator_hash, name);
1009 if (val == 0)
1010 return 0;
1011 op = (operatorT)(long)val;
1014 /* Restore old '(' and skip it. */
1015 *input_line_pointer = '(';
1016 ++input_line_pointer;
1018 expression (e);
1020 if (*input_line_pointer != ')')
1022 as_bad (_("Missing ')'"));
1023 *nextcharP = *input_line_pointer;
1024 return 0;
1026 /* Skip ')'. */
1027 ++input_line_pointer;
1029 if (e->X_op == O_register || e->X_op == O_absent)
1031 as_bad (_("Invalid expression."));
1032 e->X_op = O_constant;
1033 e->X_add_number = 0;
1035 else
1037 /* Wrap subexpression with a unary operator. */
1038 symbolS *sym = make_expr_symbol (e);
1040 if (sym != e->X_add_symbol)
1042 /* HACK: mark this symbol as a temporary wrapper around a proper
1043 expression, so we can unwrap it later once we have communicated
1044 the relocation type. */
1045 sym->sy_value.X_md = 1;
1048 memset (e, 0, sizeof *e);
1049 e->X_op = op;
1050 e->X_add_symbol = sym;
1051 e->X_add_number = 0;
1054 *nextcharP = *input_line_pointer;
1055 return 1;
1059 /* Parses an expression which must be a register name. */
1061 static void
1062 parse_reg_expression (expressionS* expression)
1064 /* Zero everything to make sure we don't miss any flags. */
1065 memset (expression, 0, sizeof *expression);
1067 char* regname = input_line_pointer;
1068 char terminating_char = get_symbol_end ();
1070 void* pval = hash_find (main_reg_hash, regname);
1072 if (pval == NULL)
1074 as_bad (_("Expected register, got '%s'."), regname);
1077 int regno_and_flags = (int)(size_t)pval;
1078 int regno = EXTRACT_REGNO(regno_and_flags);
1080 if ((regno_and_flags & NONCANONICAL_REG_NAME_FLAG)
1081 && require_canonical_reg_names)
1083 as_warn (_("Found use of non-canonical register name %s; "
1084 "use %s instead."),
1085 regname,
1086 tilegx_register_names[regno]);
1089 /* Restore the old character following the register name. */
1090 *input_line_pointer = terminating_char;
1092 /* Fill in the expression fields to indicate it's a register. */
1093 expression->X_op = O_register;
1094 expression->X_add_number = regno;
1098 /* Parses and type-checks comma-separated operands in input_line_pointer. */
1100 static void
1101 parse_operands (const char *opcode_name,
1102 const unsigned char *operands,
1103 int num_operands,
1104 expressionS *operand_values)
1106 int i;
1108 memset (operand_values, 0, num_operands * sizeof operand_values[0]);
1110 SKIP_WHITESPACE ();
1111 for (i = 0; i < num_operands; i++)
1113 tilegx_operand_type type = tilegx_operands[operands[i]].type;
1115 SKIP_WHITESPACE ();
1117 if (type == TILEGX_OP_TYPE_REGISTER)
1119 parse_reg_expression (&operand_values[i]);
1121 else if (*input_line_pointer == '}')
1123 operand_values[i].X_op = O_absent;
1125 else if (type == TILEGX_OP_TYPE_SPR)
1127 /* Modify the expression parser to add SPRs to the namespace. */
1128 parsing_spr = 1;
1129 expression (&operand_values[i]);
1130 parsing_spr = 0;
1132 else
1134 expression (&operand_values[i]);
1137 SKIP_WHITESPACE ();
1139 if (i + 1 < num_operands)
1141 int separator = (unsigned char)*input_line_pointer++;
1143 if (is_end_of_line[separator] || (separator == '}'))
1145 as_bad (_("Too few operands to '%s'."), opcode_name);
1146 return;
1148 else if (separator != ',')
1150 as_bad (_("Unexpected character '%c' after operand %d to %s."),
1151 (char)separator, i + 1, opcode_name);
1152 return;
1156 /* Arbitrarily use the first valid pipe to get the operand type,
1157 since they are all the same. */
1158 switch (tilegx_operands[operands[i]].type)
1160 case TILEGX_OP_TYPE_REGISTER:
1161 /* Handled in parse_reg_expression already. */
1162 break;
1163 case TILEGX_OP_TYPE_SPR:
1164 /* Fall through */
1165 case TILEGX_OP_TYPE_IMMEDIATE:
1166 /* Fall through */
1167 case TILEGX_OP_TYPE_ADDRESS:
1168 if ( operand_values[i].X_op == O_register
1169 || operand_values[i].X_op == O_illegal
1170 || operand_values[i].X_op == O_absent)
1171 as_bad (_("Expected immediate expression"));
1172 break;
1173 default:
1174 abort();
1178 if (!is_end_of_line[(unsigned char)*input_line_pointer])
1180 switch (*input_line_pointer)
1182 case '}':
1183 if (!inside_bundle)
1184 as_bad (_("Found '}' when not bundling."));
1185 ++input_line_pointer;
1186 inside_bundle = 0;
1187 demand_empty_rest_of_line ();
1188 break;
1190 case ',':
1191 as_bad (_("Too many operands"));
1192 break;
1194 default:
1195 /* Use default error for unrecognized garbage. */
1196 demand_empty_rest_of_line ();
1197 break;
1203 /* This is the guts of the machine-dependent assembler. STR points to a
1204 machine dependent instruction. This function is supposed to emit the
1205 frags/bytes it assembles to. */
1207 void
1208 md_assemble (char *str)
1210 char old_char;
1211 size_t opname_len;
1212 char *old_input_line_pointer;
1213 const struct tilegx_opcode *op;
1214 int first_pipe;
1216 /* Split off the opcode and look it up. */
1217 opname_len = strcspn (str, " {}");
1218 old_char = str[opname_len];
1219 str[opname_len] = '\0';
1221 op = hash_find(op_hash, str);
1222 str[opname_len] = old_char;
1223 if (op == NULL)
1225 as_bad (_("Unknown opcode `%.*s'."), (int)opname_len, str);
1226 return;
1229 /* Prepare to parse the operands. */
1230 old_input_line_pointer = input_line_pointer;
1231 input_line_pointer = str + opname_len;
1232 SKIP_WHITESPACE ();
1234 if (current_bundle_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
1236 as_bad (_("Too many instructions for bundle."));
1237 tilegx_flush_bundle ();
1240 /* Make sure we have room for the upcoming bundle before we
1241 create any fixups. Otherwise if we have to switch to a new
1242 frag the fixup dot_value fields will be wrong. */
1243 frag_grow (TILEGX_BUNDLE_SIZE_IN_BYTES);
1245 /* Find a valid pipe for this opcode. */
1246 for (first_pipe = 0; (op->pipes & (1 << first_pipe)) == 0; first_pipe++)
1249 /* Call the function that assembles this instruction. */
1250 current_bundle[current_bundle_index].opcode = op;
1251 parse_operands (op->name,
1252 &op->operands[first_pipe][0],
1253 op->num_operands,
1254 current_bundle[current_bundle_index].operand_values);
1255 ++current_bundle_index;
1257 /* Restore the saved value of input_line_pointer. */
1258 input_line_pointer = old_input_line_pointer;
1260 /* If we weren't inside curly braces, go ahead and emit
1261 this lone instruction as a bundle right now. */
1262 if (!inside_bundle)
1263 tilegx_flush_bundle ();
1267 static void
1268 s_require_canonical_reg_names (int require)
1270 demand_empty_rest_of_line ();
1271 require_canonical_reg_names = require;
1274 static void
1275 s_allow_suspicious_bundles (int allow)
1277 demand_empty_rest_of_line ();
1278 allow_suspicious_bundles = allow;
1281 const pseudo_typeS md_pseudo_table[] =
1283 {"align", s_align_bytes, 0}, /* Defaulting is invalid (0). */
1284 {"word", cons, 4},
1285 {"require_canonical_reg_names", s_require_canonical_reg_names, 1 },
1286 {"no_require_canonical_reg_names", s_require_canonical_reg_names, 0 },
1287 {"allow_suspicious_bundles", s_allow_suspicious_bundles, 1 },
1288 {"no_allow_suspicious_bundles", s_allow_suspicious_bundles, 0 },
1289 { NULL, 0, 0 }
1292 /* Equal to MAX_PRECISION in atof-ieee.c */
1293 #define MAX_LITTLENUMS 6
1295 void
1296 md_number_to_chars (char * buf, valueT val, int n)
1298 if (target_big_endian)
1299 number_to_chars_bigendian (buf, val, n);
1300 else
1301 number_to_chars_littleendian (buf, val, n);
1304 /* Turn the string pointed to by litP into a floating point constant
1305 of type TYPE, and emit the appropriate bytes. The number of
1306 LITTLENUMS emitted is stored in *SIZEP. An error message is
1307 returned, or NULL on OK. */
1309 char *
1310 md_atof (int type, char *litP, int *sizeP)
1312 int prec;
1313 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1314 LITTLENUM_TYPE *wordP;
1315 char *t;
1317 switch (type)
1319 case 'f':
1320 case 'F':
1321 prec = 2;
1322 break;
1324 case 'd':
1325 case 'D':
1326 prec = 4;
1327 break;
1329 default:
1330 *sizeP = 0;
1331 return _("Bad call to md_atof ()");
1333 t = atof_ieee (input_line_pointer, type, words);
1334 if (t)
1335 input_line_pointer = t;
1337 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1338 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
1339 the bigendian 386. */
1340 for (wordP = words + prec - 1; prec--;)
1342 md_number_to_chars (litP, (valueT) (*wordP--), sizeof (LITTLENUM_TYPE));
1343 litP += sizeof (LITTLENUM_TYPE);
1345 return 0;
1349 /* We have no need to default values of symbols. */
1351 symbolS *
1352 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
1354 return NULL;
1358 void
1359 tilegx_cons_fix_new (fragS *frag,
1360 int where,
1361 int nbytes,
1362 expressionS *exp)
1364 expressionS subexp;
1365 bfd_reloc_code_real_type reloc = BFD_RELOC_NONE;
1366 int no_overflow = 0;
1367 fixS *fixP;
1369 /* See if it's one of our special functions. */
1370 switch (exp->X_op)
1372 case O_hw0:
1373 reloc = BFD_RELOC_TILEGX_HW0;
1374 no_overflow = 1;
1375 break;
1376 case O_hw1:
1377 reloc = BFD_RELOC_TILEGX_HW1;
1378 no_overflow = 1;
1379 break;
1380 case O_hw2:
1381 reloc = BFD_RELOC_TILEGX_HW2;
1382 no_overflow = 1;
1383 break;
1384 case O_hw3:
1385 reloc = BFD_RELOC_TILEGX_HW3;
1386 no_overflow = 1;
1387 break;
1388 case O_hw0_last:
1389 reloc = BFD_RELOC_TILEGX_HW0_LAST;
1390 break;
1391 case O_hw1_last:
1392 reloc = BFD_RELOC_TILEGX_HW1_LAST;
1393 break;
1394 case O_hw2_last:
1395 reloc = BFD_RELOC_TILEGX_HW2_LAST;
1396 break;
1398 default:
1399 /* Do nothing. */
1400 break;
1403 if (reloc != BFD_RELOC_NONE)
1405 if (nbytes != 2)
1407 as_bad (_("This operator only produces two byte values."));
1408 nbytes = 2;
1411 memset (&subexp, 0, sizeof subexp);
1412 subexp.X_op = O_symbol;
1413 subexp.X_add_symbol = exp->X_add_symbol;
1414 exp = &subexp;
1416 else
1418 switch (nbytes)
1420 case 1:
1421 reloc = BFD_RELOC_8;
1422 break;
1423 case 2:
1424 reloc = BFD_RELOC_16;
1425 break;
1426 case 4:
1427 reloc = BFD_RELOC_32;
1428 break;
1429 case 8:
1430 reloc = BFD_RELOC_64;
1431 break;
1432 default:
1433 as_bad (_("unsupported BFD relocation size %d"), nbytes);
1434 reloc = BFD_RELOC_64;
1435 break;
1439 fixP = fix_new_exp (frag, where, nbytes, exp, 0, reloc);
1440 fixP->tc_fix_data = NULL;
1441 fixP->fx_no_overflow |= no_overflow;
1445 void
1446 md_apply_fix (fixS *fixP, valueT * valP, segT seg ATTRIBUTE_UNUSED)
1448 const struct tilegx_operand *operand;
1449 valueT value = *valP;
1450 operatorT special;
1451 char *p;
1453 /* Leave these for the linker. */
1454 if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1455 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1456 return;
1458 if (fixP->fx_subsy != (symbolS *) NULL)
1460 /* We can't actually support subtracting a symbol. */
1461 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
1464 /* Correct relocation types for pc-relativeness. */
1465 switch (fixP->fx_r_type)
1467 #define FIX_PCREL(rtype) \
1468 case rtype: \
1469 if (fixP->fx_pcrel) \
1470 fixP->fx_r_type = rtype##_PCREL; \
1471 break; \
1473 case rtype##_PCREL: \
1474 if (!fixP->fx_pcrel) \
1475 fixP->fx_r_type = rtype; \
1476 break
1478 FIX_PCREL (BFD_RELOC_8);
1479 FIX_PCREL (BFD_RELOC_16);
1480 FIX_PCREL (BFD_RELOC_32);
1481 FIX_PCREL (BFD_RELOC_64);
1482 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0);
1483 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0);
1484 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1);
1485 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1);
1486 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2);
1487 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2);
1488 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW3);
1489 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW3);
1490 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST);
1491 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST);
1492 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST);
1493 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST);
1494 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST);
1495 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST);
1497 #undef FIX_PCREL
1499 default:
1500 /* Do nothing */
1501 break;
1504 if (fixP->fx_addsy != NULL)
1506 #ifdef OBJ_ELF
1507 switch (fixP->fx_r_type)
1509 case BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD:
1510 case BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD:
1511 case BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD:
1512 case BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD:
1513 case BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD:
1514 case BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD:
1515 case BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD:
1516 case BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD:
1517 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD:
1518 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD:
1519 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD:
1520 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD:
1521 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD:
1522 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD:
1523 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE:
1524 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE:
1525 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE:
1526 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE:
1527 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE:
1528 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE:
1529 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE:
1530 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE:
1531 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE:
1532 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE:
1533 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE:
1534 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE:
1535 case BFD_RELOC_TILEGX_TLS_GD_CALL:
1536 case BFD_RELOC_TILEGX_TLS_IE_LOAD:
1537 case BFD_RELOC_TILEGX_TLS_DTPMOD64:
1538 case BFD_RELOC_TILEGX_TLS_DTPOFF64:
1539 case BFD_RELOC_TILEGX_TLS_TPOFF64:
1540 case BFD_RELOC_TILEGX_TLS_DTPMOD32:
1541 case BFD_RELOC_TILEGX_TLS_DTPOFF32:
1542 case BFD_RELOC_TILEGX_TLS_TPOFF32:
1543 S_SET_THREAD_LOCAL (fixP->fx_addsy);
1544 break;
1546 default:
1547 /* Do nothing */
1548 break;
1550 #endif
1551 return;
1554 /* Apply hw0, etc. */
1555 special = O_illegal;
1556 switch (fixP->fx_r_type)
1558 case BFD_RELOC_TILEGX_HW0:
1559 case BFD_RELOC_TILEGX_IMM16_X0_HW0:
1560 case BFD_RELOC_TILEGX_IMM16_X1_HW0:
1561 case BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL:
1562 case BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL:
1563 special = O_hw0;
1564 break;
1566 case BFD_RELOC_TILEGX_HW0_LAST:
1567 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST:
1568 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST:
1569 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL:
1570 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL:
1571 special = O_hw0_last;
1572 break;
1574 case BFD_RELOC_TILEGX_HW1:
1575 case BFD_RELOC_TILEGX_IMM16_X0_HW1:
1576 case BFD_RELOC_TILEGX_IMM16_X1_HW1:
1577 case BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL:
1578 case BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL:
1579 special = O_hw1;
1580 break;
1582 case BFD_RELOC_TILEGX_HW1_LAST:
1583 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST:
1584 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST:
1585 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL:
1586 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL:
1587 special = O_hw1_last;
1588 break;
1590 case BFD_RELOC_TILEGX_HW2:
1591 case BFD_RELOC_TILEGX_IMM16_X0_HW2:
1592 case BFD_RELOC_TILEGX_IMM16_X1_HW2:
1593 case BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL:
1594 case BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL:
1595 special = O_hw2;
1596 break;
1598 case BFD_RELOC_TILEGX_HW2_LAST:
1599 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST:
1600 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST:
1601 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL:
1602 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL:
1603 special = O_hw2_last;
1604 break;
1606 case BFD_RELOC_TILEGX_HW3:
1607 case BFD_RELOC_TILEGX_IMM16_X0_HW3:
1608 case BFD_RELOC_TILEGX_IMM16_X1_HW3:
1609 case BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL:
1610 case BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL:
1611 special = O_hw3;
1612 break;
1614 default:
1615 /* Do nothing */
1616 break;
1619 if (special != O_illegal)
1621 *valP = value = apply_special_operator (special, value,
1622 fixP->fx_file, fixP->fx_line);
1625 p = fixP->fx_frag->fr_literal + fixP->fx_where;
1627 operand = fixP->tc_fix_data;
1628 if (operand != NULL)
1630 /* It's an instruction operand. */
1631 tilegx_bundle_bits bits =
1632 insert_operand (0, operand, value, fixP->fx_file, fixP->fx_line);
1634 /* Note that we might either be writing out bits for a bundle
1635 or a static network instruction, which are different sizes, so it's
1636 important to stop touching memory once we run out of bits.
1637 ORing in values is OK since we know the existing bits for
1638 this operand are zero. */
1639 for (; bits != 0; bits >>= 8)
1640 *p++ |= (char)bits;
1642 else
1644 /* Some other kind of relocation. */
1645 switch (fixP->fx_r_type)
1647 case BFD_RELOC_8:
1648 case BFD_RELOC_8_PCREL:
1649 md_number_to_chars (p, value, 1);
1650 break;
1652 case BFD_RELOC_16:
1653 case BFD_RELOC_16_PCREL:
1654 md_number_to_chars (p, value, 2);
1655 break;
1657 case BFD_RELOC_32:
1658 case BFD_RELOC_32_PCREL:
1659 md_number_to_chars (p, value, 4);
1660 break;
1662 case BFD_RELOC_64:
1663 case BFD_RELOC_64_PCREL:
1664 md_number_to_chars (p, value, 8);
1665 break;
1667 default:
1668 /* Leave it for the linker. */
1669 return;
1673 fixP->fx_done = 1;
1677 /* Generate the BFD reloc to be stuck in the object file from the
1678 fixup used internally in the assembler. */
1680 arelent *
1681 tc_gen_reloc (asection *sec ATTRIBUTE_UNUSED, fixS *fixp)
1683 arelent *reloc;
1685 reloc = (arelent *) xmalloc (sizeof (arelent));
1686 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
1687 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1688 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1690 /* Make sure none of our internal relocations make it this far.
1691 They'd better have been fully resolved by this point. */
1692 gas_assert ((int) fixp->fx_r_type > 0);
1694 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1695 if (reloc->howto == NULL)
1697 as_bad_where (fixp->fx_file, fixp->fx_line,
1698 _("cannot represent `%s' relocation in object file"),
1699 bfd_get_reloc_code_name (fixp->fx_r_type));
1700 return NULL;
1703 if (!fixp->fx_pcrel != !reloc->howto->pc_relative)
1705 as_fatal (_("internal error? cannot generate `%s' relocation (%d, %d)"),
1706 bfd_get_reloc_code_name (fixp->fx_r_type),
1707 fixp->fx_pcrel, reloc->howto->pc_relative);
1709 gas_assert (!fixp->fx_pcrel == !reloc->howto->pc_relative);
1711 reloc->addend = fixp->fx_offset;
1713 return reloc;
1717 /* The location from which a PC relative jump should be calculated,
1718 given a PC relative reloc. */
1720 long
1721 md_pcrel_from (fixS *fixP)
1723 return fixP->fx_frag->fr_address + fixP->fx_where;
1727 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
1728 a section symbol plus some offset. */
1730 tilegx_fix_adjustable (fixS *fix)
1732 /* Prevent all adjustments to global symbols */
1733 if (S_IS_EXTERNAL (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy))
1734 return 0;
1736 return 1;
1741 tilegx_unrecognized_line (int ch)
1743 switch (ch)
1745 case '{':
1746 if (inside_bundle)
1748 as_bad (_("Found '{' when already bundling."));
1750 else
1752 inside_bundle = 1;
1753 current_bundle_index = 0;
1755 return 1;
1757 case '}':
1758 if (!inside_bundle)
1760 as_bad (_("Found '}' when not bundling."));
1762 else
1764 tilegx_flush_bundle ();
1767 /* Allow '{' to follow on the same line. We also allow ";;", but that
1768 happens automatically because ';' is an end of line marker. */
1769 SKIP_WHITESPACE ();
1770 if (input_line_pointer[0] == '{')
1772 input_line_pointer++;
1773 return tilegx_unrecognized_line ('{');
1776 demand_empty_rest_of_line ();
1777 return 1;
1779 default:
1780 break;
1783 /* Not a valid line. */
1784 return 0;
1788 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
1789 of an rs_align_code fragment. */
1791 void
1792 tilegx_handle_align (fragS *fragp)
1794 addressT bytes, fix;
1795 char *p;
1797 if (fragp->fr_type != rs_align_code)
1798 return;
1800 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
1801 p = fragp->fr_literal + fragp->fr_fix;
1802 fix = 0;
1804 /* Determine the bits for NOP. */
1805 const struct tilegx_opcode *nop_opcode =
1806 &tilegx_opcodes[TILEGX_OPC_NOP];
1807 tilegx_bundle_bits nop =
1808 ( nop_opcode->fixed_bit_values[TILEGX_PIPELINE_X0]
1809 | nop_opcode->fixed_bit_values[TILEGX_PIPELINE_X1]);
1811 if ((bytes & (TILEGX_BUNDLE_SIZE_IN_BYTES - 1)) != 0)
1813 fix = bytes & (TILEGX_BUNDLE_SIZE_IN_BYTES - 1);
1814 memset (p, 0, fix);
1815 p += fix;
1816 bytes -= fix;
1819 number_to_chars_littleendian (p, nop, 8);
1820 fragp->fr_fix += fix;
1821 fragp->fr_var = TILEGX_BUNDLE_SIZE_IN_BYTES;
1824 /* Standard calling conventions leave the CFA at SP on entry. */
1825 void
1826 tilegx_cfi_frame_initial_instructions (void)
1828 cfi_add_CFA_def_cfa_register (54);
1832 tc_tilegx_regname_to_dw2regnum (char *regname)
1834 int i;
1835 for (i = 0; i < TILEGX_NUM_REGISTERS; i++)
1837 if (!strcmp (regname, tilegx_register_names[i]))
1838 return i;
1841 return -1;