Improve TLS support on TILE-Gx/TILEPro:
[binutils.git] / gas / config / tc-tilegx.c
blobeda36c0d18c9a14be56dbe6cddd0272f955fa7ed
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_value.X_md)
720 /* HACK: We used X_md to mark this symbol as a fake wrapper
721 around a real expression. To unwrap it, we just grab its
722 value here. */
723 operand_exp = &operand_exp->X_add_symbol->sy_value;
725 if (require_symbol)
727 /* Look at the expression, and reject it if it's not a
728 plain symbol. */
729 if (operand_exp->X_op != O_symbol
730 || operand_exp->X_add_number != 0)
731 as_bad (_("Operator may only be applied to symbols."));
734 else
736 /* The value of this expression is an actual symbol, so
737 turn that into an expression. */
738 memset (&subexp, 0, sizeof subexp);
739 subexp.X_op = O_symbol;
740 subexp.X_add_symbol = operand_exp->X_add_symbol;
741 operand_exp = &subexp;
745 /* Create a fixup to handle this later. */
746 fixP = fix_new_exp (frag_now,
747 bundle_start - frag_now->fr_literal,
748 (operand->num_bits + 7) >> 3,
749 operand_exp,
750 is_pc_relative,
751 reloc);
752 fixP->tc_fix_data = operand;
754 /* Don't do overflow checking if we are applying a function like
755 ha16. */
756 fixP->fx_no_overflow |= use_subexp;
759 return bits;
763 /* Detects and complains if two instructions in current_bundle write
764 to the same register, either implicitly or explicitly, or if a
765 read-only register is written. */
766 static void
767 check_illegal_reg_writes (void)
769 BFD_HOST_U_64_BIT all_regs_written = 0;
770 int j;
772 for (j = 0; j < current_bundle_index; j++)
774 const struct tilegx_instruction *instr = &current_bundle[j];
775 int k;
776 BFD_HOST_U_64_BIT regs =
777 ((BFD_HOST_U_64_BIT)1) << instr->opcode->implicitly_written_register;
778 BFD_HOST_U_64_BIT conflict;
780 for (k = 0; k < instr->opcode->num_operands; k++)
782 const struct tilegx_operand *operand =
783 &tilegx_operands[instr->opcode->operands[instr->pipe][k]];
785 if (operand->is_dest_reg)
787 int regno = instr->operand_values[k].X_add_number;
788 BFD_HOST_U_64_BIT mask = ((BFD_HOST_U_64_BIT)1) << regno;
790 if ((mask & ( (((BFD_HOST_U_64_BIT)1) << TREG_IDN1)
791 | (((BFD_HOST_U_64_BIT)1) << TREG_UDN1)
792 | (((BFD_HOST_U_64_BIT)1) << TREG_UDN2)
793 | (((BFD_HOST_U_64_BIT)1) << TREG_UDN3))) != 0
794 && !allow_suspicious_bundles)
796 as_bad (_("Writes to register '%s' are not allowed."),
797 tilegx_register_names[regno]);
800 regs |= mask;
804 /* Writing to the zero register doesn't count. */
805 regs &= ~(((BFD_HOST_U_64_BIT)1) << TREG_ZERO);
807 conflict = all_regs_written & regs;
808 if (conflict != 0 && !allow_suspicious_bundles)
810 /* Find which register caused the conflict. */
811 const char *conflicting_reg_name = "???";
812 int i;
814 for (i = 0; i < TILEGX_NUM_REGISTERS; i++)
816 if (((conflict >> i) & 1) != 0)
818 conflicting_reg_name = tilegx_register_names[i];
819 break;
823 as_bad (_("Two instructions in the same bundle both write "
824 "to register %s, which is not allowed."),
825 conflicting_reg_name);
828 all_regs_written |= regs;
833 static void
834 tilegx_flush_bundle (void)
836 unsigned i;
837 int j;
838 addressT addr_mod;
839 unsigned compatible_pipes;
840 const struct bundle_template *match;
841 char *f;
843 inside_bundle = 0;
845 switch (current_bundle_index)
847 case 0:
848 /* No instructions. */
849 return;
850 case 1:
851 if (current_bundle[0].opcode->can_bundle)
853 /* Simplify later logic by adding an explicit fnop. */
854 prepend_nop_to_bundle (TILEGX_OPC_FNOP);
856 else
858 /* This instruction cannot be bundled with anything else.
859 Prepend an explicit 'nop', rather than an 'fnop', because
860 fnops can be replaced by later binary-processing tools while
861 nops cannot. */
862 prepend_nop_to_bundle (TILEGX_OPC_NOP);
864 break;
865 default:
866 if (!allow_suspicious_bundles)
868 /* Make sure all instructions can be bundled with other
869 instructions. */
870 const struct tilegx_opcode *cannot_bundle = NULL;
871 bfd_boolean seen_non_nop = FALSE;
873 for (j = 0; j < current_bundle_index; j++)
875 const struct tilegx_opcode *op = current_bundle[j].opcode;
877 if (!op->can_bundle && cannot_bundle == NULL)
878 cannot_bundle = op;
879 else if (op->mnemonic != TILEGX_OPC_NOP
880 && op->mnemonic != TILEGX_OPC_INFO
881 && op->mnemonic != TILEGX_OPC_INFOL)
882 seen_non_nop = TRUE;
885 if (cannot_bundle != NULL && seen_non_nop)
887 current_bundle_index = 0;
888 as_bad (_("'%s' may not be bundled with other instructions."),
889 cannot_bundle->name);
890 return;
893 break;
896 compatible_pipes =
897 BUNDLE_TEMPLATE_MASK(current_bundle[0].opcode->pipes,
898 current_bundle[1].opcode->pipes,
899 (current_bundle_index == 3
900 ? current_bundle[2].opcode->pipes
901 : (1 << NO_PIPELINE)));
903 /* Find a template that works, if any. */
904 match = NULL;
905 for (i = 0; i < sizeof bundle_templates / sizeof bundle_templates[0]; i++)
907 const struct bundle_template *b = &bundle_templates[i];
908 if ((b->pipe_mask & compatible_pipes) == b->pipe_mask)
910 match = b;
911 break;
915 if (match == NULL)
917 current_bundle_index = 0;
918 as_bad (_("Invalid combination of instructions for bundle."));
919 return;
922 /* If the section seems to have no alignment set yet, go ahead and
923 make it large enough to hold code. */
924 if (bfd_get_section_alignment (stdoutput, now_seg) == 0)
925 bfd_set_section_alignment (stdoutput, now_seg,
926 TILEGX_LOG2_BUNDLE_ALIGNMENT_IN_BYTES);
928 for (j = 0; j < current_bundle_index; j++)
929 current_bundle[j].pipe = match->pipe[j];
931 if (current_bundle_index == 2 && !tilegx_is_x_pipeline (match->pipe[0]))
933 /* We are in Y mode with only two instructions, so add an FNOP. */
934 prepend_nop_to_bundle (TILEGX_OPC_FNOP);
936 /* Figure out what pipe the fnop must be in via arithmetic.
937 * p0 + p1 + p2 must sum to the sum of TILEGX_PIPELINE_Y[012]. */
938 current_bundle[0].pipe =
939 (tilegx_pipeline)((TILEGX_PIPELINE_Y0
940 + TILEGX_PIPELINE_Y1
941 + TILEGX_PIPELINE_Y2) -
942 (current_bundle[1].pipe + current_bundle[2].pipe));
945 check_illegal_reg_writes ();
947 f = frag_more (TILEGX_BUNDLE_SIZE_IN_BYTES);
949 /* Check to see if this bundle is at an offset that is a multiple of 8-bytes
950 from the start of the frag. */
951 addr_mod = frag_now_fix () & (TILEGX_BUNDLE_ALIGNMENT_IN_BYTES - 1);
952 if (frag_now->has_code && frag_now->insn_addr != addr_mod)
953 as_bad (_("instruction address is not a multiple of 8"));
954 frag_now->insn_addr = addr_mod;
955 frag_now->has_code = 1;
957 tilegx_bundle_bits bits = 0;
958 for (j = 0; j < current_bundle_index; j++)
960 struct tilegx_instruction *instr = &current_bundle[j];
961 tilegx_pipeline pipeline = instr->pipe;
962 const struct tilegx_opcode *opcode = instr->opcode;
964 bits |= emit_tilegx_instruction (opcode->fixed_bit_values[pipeline],
965 opcode->num_operands,
966 &opcode->operands[pipeline][0],
967 instr->operand_values,
971 number_to_chars_littleendian (f, bits, 8);
972 current_bundle_index = 0;
974 /* Emit DWARF2 debugging information. */
975 dwarf2_emit_insn (TILEGX_BUNDLE_SIZE_IN_BYTES);
979 /* Extend the expression parser to handle hw0(label), etc.
980 as well as SPR names when in the context of parsing an SPR. */
983 tilegx_parse_name (char *name, expressionS *e, char *nextcharP)
985 operatorT op = O_illegal;
987 if (parsing_spr)
989 void* val = hash_find (spr_hash, name);
990 if (val == NULL)
991 return 0;
993 memset (e, 0, sizeof *e);
994 e->X_op = O_constant;
995 e->X_add_number = ((const struct tilegx_spr *)val)->number;
996 return 1;
999 if (*nextcharP != '(')
1001 /* hw0, etc. not followed by a paren is just a label with that name. */
1002 return 0;
1004 else
1006 /* Look up the operator in our table. */
1007 void* val = hash_find (special_operator_hash, name);
1008 if (val == 0)
1009 return 0;
1010 op = (operatorT)(long)val;
1013 /* Restore old '(' and skip it. */
1014 *input_line_pointer = '(';
1015 ++input_line_pointer;
1017 expression (e);
1019 if (*input_line_pointer != ')')
1021 as_bad (_("Missing ')'"));
1022 *nextcharP = *input_line_pointer;
1023 return 0;
1025 /* Skip ')'. */
1026 ++input_line_pointer;
1028 if (e->X_op == O_register || e->X_op == O_absent)
1030 as_bad (_("Invalid expression."));
1031 e->X_op = O_constant;
1032 e->X_add_number = 0;
1034 else
1036 /* Wrap subexpression with a unary operator. */
1037 symbolS *sym = make_expr_symbol (e);
1039 if (sym != e->X_add_symbol)
1041 /* HACK: mark this symbol as a temporary wrapper around a proper
1042 expression, so we can unwrap it later once we have communicated
1043 the relocation type. */
1044 sym->sy_value.X_md = 1;
1047 memset (e, 0, sizeof *e);
1048 e->X_op = op;
1049 e->X_add_symbol = sym;
1050 e->X_add_number = 0;
1053 *nextcharP = *input_line_pointer;
1054 return 1;
1058 /* Parses an expression which must be a register name. */
1060 static void
1061 parse_reg_expression (expressionS* expression)
1063 /* Zero everything to make sure we don't miss any flags. */
1064 memset (expression, 0, sizeof *expression);
1066 char* regname = input_line_pointer;
1067 char terminating_char = get_symbol_end ();
1069 void* pval = hash_find (main_reg_hash, regname);
1071 if (pval == NULL)
1073 as_bad (_("Expected register, got '%s'."), regname);
1076 int regno_and_flags = (int)(size_t)pval;
1077 int regno = EXTRACT_REGNO(regno_and_flags);
1079 if ((regno_and_flags & NONCANONICAL_REG_NAME_FLAG)
1080 && require_canonical_reg_names)
1082 as_warn (_("Found use of non-canonical register name %s; "
1083 "use %s instead."),
1084 regname,
1085 tilegx_register_names[regno]);
1088 /* Restore the old character following the register name. */
1089 *input_line_pointer = terminating_char;
1091 /* Fill in the expression fields to indicate it's a register. */
1092 expression->X_op = O_register;
1093 expression->X_add_number = regno;
1097 /* Parses and type-checks comma-separated operands in input_line_pointer. */
1099 static void
1100 parse_operands (const char *opcode_name,
1101 const unsigned char *operands,
1102 int num_operands,
1103 expressionS *operand_values)
1105 int i;
1107 memset (operand_values, 0, num_operands * sizeof operand_values[0]);
1109 SKIP_WHITESPACE ();
1110 for (i = 0; i < num_operands; i++)
1112 tilegx_operand_type type = tilegx_operands[operands[i]].type;
1114 SKIP_WHITESPACE ();
1116 if (type == TILEGX_OP_TYPE_REGISTER)
1118 parse_reg_expression (&operand_values[i]);
1120 else if (*input_line_pointer == '}')
1122 operand_values[i].X_op = O_absent;
1124 else if (type == TILEGX_OP_TYPE_SPR)
1126 /* Modify the expression parser to add SPRs to the namespace. */
1127 parsing_spr = 1;
1128 expression (&operand_values[i]);
1129 parsing_spr = 0;
1131 else
1133 expression (&operand_values[i]);
1136 SKIP_WHITESPACE ();
1138 if (i + 1 < num_operands)
1140 int separator = (unsigned char)*input_line_pointer++;
1142 if (is_end_of_line[separator] || (separator == '}'))
1144 as_bad (_("Too few operands to '%s'."), opcode_name);
1145 return;
1147 else if (separator != ',')
1149 as_bad (_("Unexpected character '%c' after operand %d to %s."),
1150 (char)separator, i + 1, opcode_name);
1151 return;
1155 /* Arbitrarily use the first valid pipe to get the operand type,
1156 since they are all the same. */
1157 switch (tilegx_operands[operands[i]].type)
1159 case TILEGX_OP_TYPE_REGISTER:
1160 /* Handled in parse_reg_expression already. */
1161 break;
1162 case TILEGX_OP_TYPE_SPR:
1163 /* Fall through */
1164 case TILEGX_OP_TYPE_IMMEDIATE:
1165 /* Fall through */
1166 case TILEGX_OP_TYPE_ADDRESS:
1167 if ( operand_values[i].X_op == O_register
1168 || operand_values[i].X_op == O_illegal
1169 || operand_values[i].X_op == O_absent)
1170 as_bad (_("Expected immediate expression"));
1171 break;
1172 default:
1173 abort();
1177 if (!is_end_of_line[(unsigned char)*input_line_pointer])
1179 switch (*input_line_pointer)
1181 case '}':
1182 if (!inside_bundle)
1183 as_bad (_("Found '}' when not bundling."));
1184 ++input_line_pointer;
1185 inside_bundle = 0;
1186 demand_empty_rest_of_line ();
1187 break;
1189 case ',':
1190 as_bad (_("Too many operands"));
1191 break;
1193 default:
1194 /* Use default error for unrecognized garbage. */
1195 demand_empty_rest_of_line ();
1196 break;
1202 /* This is the guts of the machine-dependent assembler. STR points to a
1203 machine dependent instruction. This function is supposed to emit the
1204 frags/bytes it assembles to. */
1206 void
1207 md_assemble (char *str)
1209 char old_char;
1210 size_t opname_len;
1211 char *old_input_line_pointer;
1212 const struct tilegx_opcode *op;
1213 int first_pipe;
1215 /* Split off the opcode and look it up. */
1216 opname_len = strcspn (str, " {}");
1217 old_char = str[opname_len];
1218 str[opname_len] = '\0';
1220 op = hash_find(op_hash, str);
1221 str[opname_len] = old_char;
1222 if (op == NULL)
1224 as_bad (_("Unknown opcode `%.*s'."), (int)opname_len, str);
1225 return;
1228 /* Prepare to parse the operands. */
1229 old_input_line_pointer = input_line_pointer;
1230 input_line_pointer = str + opname_len;
1231 SKIP_WHITESPACE ();
1233 if (current_bundle_index == TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE)
1235 as_bad (_("Too many instructions for bundle."));
1236 tilegx_flush_bundle ();
1239 /* Make sure we have room for the upcoming bundle before we
1240 create any fixups. Otherwise if we have to switch to a new
1241 frag the fixup dot_value fields will be wrong. */
1242 frag_grow (TILEGX_BUNDLE_SIZE_IN_BYTES);
1244 /* Find a valid pipe for this opcode. */
1245 for (first_pipe = 0; (op->pipes & (1 << first_pipe)) == 0; first_pipe++)
1248 /* Call the function that assembles this instruction. */
1249 current_bundle[current_bundle_index].opcode = op;
1250 parse_operands (op->name,
1251 &op->operands[first_pipe][0],
1252 op->num_operands,
1253 current_bundle[current_bundle_index].operand_values);
1254 ++current_bundle_index;
1256 /* Restore the saved value of input_line_pointer. */
1257 input_line_pointer = old_input_line_pointer;
1259 /* If we weren't inside curly braces, go ahead and emit
1260 this lone instruction as a bundle right now. */
1261 if (!inside_bundle)
1262 tilegx_flush_bundle ();
1266 static void
1267 s_require_canonical_reg_names (int require)
1269 demand_empty_rest_of_line ();
1270 require_canonical_reg_names = require;
1273 static void
1274 s_allow_suspicious_bundles (int allow)
1276 demand_empty_rest_of_line ();
1277 allow_suspicious_bundles = allow;
1280 const pseudo_typeS md_pseudo_table[] =
1282 {"align", s_align_bytes, 0}, /* Defaulting is invalid (0). */
1283 {"word", cons, 4},
1284 {"require_canonical_reg_names", s_require_canonical_reg_names, 1 },
1285 {"no_require_canonical_reg_names", s_require_canonical_reg_names, 0 },
1286 {"allow_suspicious_bundles", s_allow_suspicious_bundles, 1 },
1287 {"no_allow_suspicious_bundles", s_allow_suspicious_bundles, 0 },
1288 { NULL, 0, 0 }
1291 /* Equal to MAX_PRECISION in atof-ieee.c */
1292 #define MAX_LITTLENUMS 6
1294 void
1295 md_number_to_chars (char * buf, valueT val, int n)
1297 if (target_big_endian)
1298 number_to_chars_bigendian (buf, val, n);
1299 else
1300 number_to_chars_littleendian (buf, val, n);
1303 /* Turn the string pointed to by litP into a floating point constant
1304 of type TYPE, and emit the appropriate bytes. The number of
1305 LITTLENUMS emitted is stored in *SIZEP. An error message is
1306 returned, or NULL on OK. */
1308 char *
1309 md_atof (int type, char *litP, int *sizeP)
1311 int prec;
1312 LITTLENUM_TYPE words[MAX_LITTLENUMS];
1313 LITTLENUM_TYPE *wordP;
1314 char *t;
1316 switch (type)
1318 case 'f':
1319 case 'F':
1320 prec = 2;
1321 break;
1323 case 'd':
1324 case 'D':
1325 prec = 4;
1326 break;
1328 default:
1329 *sizeP = 0;
1330 return _("Bad call to md_atof ()");
1332 t = atof_ieee (input_line_pointer, type, words);
1333 if (t)
1334 input_line_pointer = t;
1336 *sizeP = prec * sizeof (LITTLENUM_TYPE);
1337 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
1338 the bigendian 386. */
1339 for (wordP = words + prec - 1; prec--;)
1341 md_number_to_chars (litP, (valueT) (*wordP--), sizeof (LITTLENUM_TYPE));
1342 litP += sizeof (LITTLENUM_TYPE);
1344 return 0;
1348 /* We have no need to default values of symbols. */
1350 symbolS *
1351 md_undefined_symbol (char *name ATTRIBUTE_UNUSED)
1353 return NULL;
1357 void
1358 tilegx_cons_fix_new (fragS *frag,
1359 int where,
1360 int nbytes,
1361 expressionS *exp)
1363 expressionS subexp;
1364 bfd_reloc_code_real_type reloc = BFD_RELOC_NONE;
1365 int no_overflow = 0;
1366 fixS *fixP;
1368 /* See if it's one of our special functions. */
1369 switch (exp->X_op)
1371 case O_hw0:
1372 reloc = BFD_RELOC_TILEGX_HW0;
1373 no_overflow = 1;
1374 break;
1375 case O_hw1:
1376 reloc = BFD_RELOC_TILEGX_HW1;
1377 no_overflow = 1;
1378 break;
1379 case O_hw2:
1380 reloc = BFD_RELOC_TILEGX_HW2;
1381 no_overflow = 1;
1382 break;
1383 case O_hw3:
1384 reloc = BFD_RELOC_TILEGX_HW3;
1385 no_overflow = 1;
1386 break;
1387 case O_hw0_last:
1388 reloc = BFD_RELOC_TILEGX_HW0_LAST;
1389 break;
1390 case O_hw1_last:
1391 reloc = BFD_RELOC_TILEGX_HW1_LAST;
1392 break;
1393 case O_hw2_last:
1394 reloc = BFD_RELOC_TILEGX_HW2_LAST;
1395 break;
1397 default:
1398 /* Do nothing. */
1399 break;
1402 if (reloc != BFD_RELOC_NONE)
1404 if (nbytes != 2)
1406 as_bad (_("This operator only produces two byte values."));
1407 nbytes = 2;
1410 memset (&subexp, 0, sizeof subexp);
1411 subexp.X_op = O_symbol;
1412 subexp.X_add_symbol = exp->X_add_symbol;
1413 exp = &subexp;
1415 else
1417 switch (nbytes)
1419 case 1:
1420 reloc = BFD_RELOC_8;
1421 break;
1422 case 2:
1423 reloc = BFD_RELOC_16;
1424 break;
1425 case 4:
1426 reloc = BFD_RELOC_32;
1427 break;
1428 case 8:
1429 reloc = BFD_RELOC_64;
1430 break;
1431 default:
1432 as_bad (_("unsupported BFD relocation size %d"), nbytes);
1433 reloc = BFD_RELOC_64;
1434 break;
1438 fixP = fix_new_exp (frag, where, nbytes, exp, 0, reloc);
1439 fixP->tc_fix_data = NULL;
1440 fixP->fx_no_overflow |= no_overflow;
1444 void
1445 md_apply_fix (fixS *fixP, valueT * valP, segT seg ATTRIBUTE_UNUSED)
1447 const struct tilegx_operand *operand;
1448 valueT value = *valP;
1449 operatorT special;
1450 char *p;
1452 /* Leave these for the linker. */
1453 if (fixP->fx_r_type == BFD_RELOC_VTABLE_INHERIT
1454 || fixP->fx_r_type == BFD_RELOC_VTABLE_ENTRY)
1455 return;
1457 if (fixP->fx_subsy != (symbolS *) NULL)
1459 /* We can't actually support subtracting a symbol. */
1460 as_bad_where (fixP->fx_file, fixP->fx_line, _("expression too complex"));
1463 /* Correct relocation types for pc-relativeness. */
1464 switch (fixP->fx_r_type)
1466 #define FIX_PCREL(rtype) \
1467 case rtype: \
1468 if (fixP->fx_pcrel) \
1469 fixP->fx_r_type = rtype##_PCREL; \
1470 break; \
1472 case rtype##_PCREL: \
1473 if (!fixP->fx_pcrel) \
1474 fixP->fx_r_type = rtype; \
1475 break
1477 FIX_PCREL (BFD_RELOC_8);
1478 FIX_PCREL (BFD_RELOC_16);
1479 FIX_PCREL (BFD_RELOC_32);
1480 FIX_PCREL (BFD_RELOC_64);
1481 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0);
1482 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0);
1483 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1);
1484 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1);
1485 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2);
1486 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2);
1487 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW3);
1488 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW3);
1489 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST);
1490 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST);
1491 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST);
1492 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST);
1493 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST);
1494 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST);
1496 #undef FIX_PCREL
1498 default:
1499 /* Do nothing */
1500 break;
1503 if (fixP->fx_addsy != NULL)
1505 #ifdef OBJ_ELF
1506 switch (fixP->fx_r_type)
1508 case BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD:
1509 case BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD:
1510 case BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD:
1511 case BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD:
1512 case BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD:
1513 case BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD:
1514 case BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD:
1515 case BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD:
1516 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD:
1517 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD:
1518 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD:
1519 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD:
1520 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD:
1521 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD:
1522 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE:
1523 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE:
1524 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE:
1525 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE:
1526 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE:
1527 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE:
1528 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE:
1529 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE:
1530 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE:
1531 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE:
1532 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE:
1533 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE:
1534 case BFD_RELOC_TILEGX_TLS_GD_CALL:
1535 case BFD_RELOC_TILEGX_TLS_IE_LOAD:
1536 case BFD_RELOC_TILEGX_TLS_DTPMOD64:
1537 case BFD_RELOC_TILEGX_TLS_DTPOFF64:
1538 case BFD_RELOC_TILEGX_TLS_TPOFF64:
1539 case BFD_RELOC_TILEGX_TLS_DTPMOD32:
1540 case BFD_RELOC_TILEGX_TLS_DTPOFF32:
1541 case BFD_RELOC_TILEGX_TLS_TPOFF32:
1542 S_SET_THREAD_LOCAL (fixP->fx_addsy);
1543 break;
1545 default:
1546 /* Do nothing */
1547 break;
1549 #endif
1550 return;
1553 /* Apply hw0, etc. */
1554 special = O_illegal;
1555 switch (fixP->fx_r_type)
1557 case BFD_RELOC_TILEGX_HW0:
1558 case BFD_RELOC_TILEGX_IMM16_X0_HW0:
1559 case BFD_RELOC_TILEGX_IMM16_X1_HW0:
1560 case BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL:
1561 case BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL:
1562 special = O_hw0;
1563 break;
1565 case BFD_RELOC_TILEGX_HW0_LAST:
1566 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST:
1567 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST:
1568 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL:
1569 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL:
1570 special = O_hw0_last;
1571 break;
1573 case BFD_RELOC_TILEGX_HW1:
1574 case BFD_RELOC_TILEGX_IMM16_X0_HW1:
1575 case BFD_RELOC_TILEGX_IMM16_X1_HW1:
1576 case BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL:
1577 case BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL:
1578 special = O_hw1;
1579 break;
1581 case BFD_RELOC_TILEGX_HW1_LAST:
1582 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST:
1583 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST:
1584 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL:
1585 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL:
1586 special = O_hw1_last;
1587 break;
1589 case BFD_RELOC_TILEGX_HW2:
1590 case BFD_RELOC_TILEGX_IMM16_X0_HW2:
1591 case BFD_RELOC_TILEGX_IMM16_X1_HW2:
1592 case BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL:
1593 case BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL:
1594 special = O_hw2;
1595 break;
1597 case BFD_RELOC_TILEGX_HW2_LAST:
1598 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST:
1599 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST:
1600 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL:
1601 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL:
1602 special = O_hw2_last;
1603 break;
1605 case BFD_RELOC_TILEGX_HW3:
1606 case BFD_RELOC_TILEGX_IMM16_X0_HW3:
1607 case BFD_RELOC_TILEGX_IMM16_X1_HW3:
1608 case BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL:
1609 case BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL:
1610 special = O_hw3;
1611 break;
1613 default:
1614 /* Do nothing */
1615 break;
1618 if (special != O_illegal)
1620 *valP = value = apply_special_operator (special, value,
1621 fixP->fx_file, fixP->fx_line);
1624 p = fixP->fx_frag->fr_literal + fixP->fx_where;
1626 operand = fixP->tc_fix_data;
1627 if (operand != NULL)
1629 /* It's an instruction operand. */
1630 tilegx_bundle_bits bits =
1631 insert_operand (0, operand, value, fixP->fx_file, fixP->fx_line);
1633 /* Note that we might either be writing out bits for a bundle
1634 or a static network instruction, which are different sizes, so it's
1635 important to stop touching memory once we run out of bits.
1636 ORing in values is OK since we know the existing bits for
1637 this operand are zero. */
1638 for (; bits != 0; bits >>= 8)
1639 *p++ |= (char)bits;
1641 else
1643 /* Some other kind of relocation. */
1644 switch (fixP->fx_r_type)
1646 case BFD_RELOC_8:
1647 case BFD_RELOC_8_PCREL:
1648 md_number_to_chars (p, value, 1);
1649 break;
1651 case BFD_RELOC_16:
1652 case BFD_RELOC_16_PCREL:
1653 md_number_to_chars (p, value, 2);
1654 break;
1656 case BFD_RELOC_32:
1657 case BFD_RELOC_32_PCREL:
1658 md_number_to_chars (p, value, 4);
1659 break;
1661 case BFD_RELOC_64:
1662 case BFD_RELOC_64_PCREL:
1663 md_number_to_chars (p, value, 8);
1664 break;
1666 default:
1667 /* Leave it for the linker. */
1668 return;
1672 fixP->fx_done = 1;
1676 /* Generate the BFD reloc to be stuck in the object file from the
1677 fixup used internally in the assembler. */
1679 arelent *
1680 tc_gen_reloc (asection *sec ATTRIBUTE_UNUSED, fixS *fixp)
1682 arelent *reloc;
1684 reloc = (arelent *) xmalloc (sizeof (arelent));
1685 reloc->sym_ptr_ptr = (asymbol **) xmalloc (sizeof (asymbol *));
1686 *reloc->sym_ptr_ptr = symbol_get_bfdsym (fixp->fx_addsy);
1687 reloc->address = fixp->fx_frag->fr_address + fixp->fx_where;
1689 /* Make sure none of our internal relocations make it this far.
1690 They'd better have been fully resolved by this point. */
1691 gas_assert ((int) fixp->fx_r_type > 0);
1693 reloc->howto = bfd_reloc_type_lookup (stdoutput, fixp->fx_r_type);
1694 if (reloc->howto == NULL)
1696 as_bad_where (fixp->fx_file, fixp->fx_line,
1697 _("cannot represent `%s' relocation in object file"),
1698 bfd_get_reloc_code_name (fixp->fx_r_type));
1699 return NULL;
1702 if (!fixp->fx_pcrel != !reloc->howto->pc_relative)
1704 as_fatal (_("internal error? cannot generate `%s' relocation (%d, %d)"),
1705 bfd_get_reloc_code_name (fixp->fx_r_type),
1706 fixp->fx_pcrel, reloc->howto->pc_relative);
1708 gas_assert (!fixp->fx_pcrel == !reloc->howto->pc_relative);
1710 reloc->addend = fixp->fx_offset;
1712 return reloc;
1716 /* The location from which a PC relative jump should be calculated,
1717 given a PC relative reloc. */
1719 long
1720 md_pcrel_from (fixS *fixP)
1722 return fixP->fx_frag->fr_address + fixP->fx_where;
1726 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
1727 a section symbol plus some offset. */
1729 tilegx_fix_adjustable (fixS *fix)
1731 /* Prevent all adjustments to global symbols */
1732 if (S_IS_EXTERNAL (fix->fx_addsy) || S_IS_WEAK (fix->fx_addsy))
1733 return 0;
1735 return 1;
1740 tilegx_unrecognized_line (int ch)
1742 switch (ch)
1744 case '{':
1745 if (inside_bundle)
1747 as_bad (_("Found '{' when already bundling."));
1749 else
1751 inside_bundle = 1;
1752 current_bundle_index = 0;
1754 return 1;
1756 case '}':
1757 if (!inside_bundle)
1759 as_bad (_("Found '}' when not bundling."));
1761 else
1763 tilegx_flush_bundle ();
1766 /* Allow '{' to follow on the same line. We also allow ";;", but that
1767 happens automatically because ';' is an end of line marker. */
1768 SKIP_WHITESPACE ();
1769 if (input_line_pointer[0] == '{')
1771 input_line_pointer++;
1772 return tilegx_unrecognized_line ('{');
1775 demand_empty_rest_of_line ();
1776 return 1;
1778 default:
1779 break;
1782 /* Not a valid line. */
1783 return 0;
1787 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
1788 of an rs_align_code fragment. */
1790 void
1791 tilegx_handle_align (fragS *fragp)
1793 addressT bytes, fix;
1794 char *p;
1796 if (fragp->fr_type != rs_align_code)
1797 return;
1799 bytes = fragp->fr_next->fr_address - fragp->fr_address - fragp->fr_fix;
1800 p = fragp->fr_literal + fragp->fr_fix;
1801 fix = 0;
1803 /* Determine the bits for NOP. */
1804 const struct tilegx_opcode *nop_opcode =
1805 &tilegx_opcodes[TILEGX_OPC_NOP];
1806 tilegx_bundle_bits nop =
1807 ( nop_opcode->fixed_bit_values[TILEGX_PIPELINE_X0]
1808 | nop_opcode->fixed_bit_values[TILEGX_PIPELINE_X1]);
1810 if ((bytes & (TILEGX_BUNDLE_SIZE_IN_BYTES - 1)) != 0)
1812 fix = bytes & (TILEGX_BUNDLE_SIZE_IN_BYTES - 1);
1813 memset (p, 0, fix);
1814 p += fix;
1815 bytes -= fix;
1818 number_to_chars_littleendian (p, nop, 8);
1819 fragp->fr_fix += fix;
1820 fragp->fr_var = TILEGX_BUNDLE_SIZE_IN_BYTES;
1823 /* Standard calling conventions leave the CFA at SP on entry. */
1824 void
1825 tilegx_cfi_frame_initial_instructions (void)
1827 cfi_add_CFA_def_cfa_register (54);
1831 tc_tilegx_regname_to_dw2regnum (char *regname)
1833 int i;
1834 for (i = 0; i < TILEGX_NUM_REGISTERS; i++)
1836 if (!strcmp (regname, tilegx_register_names[i]))
1837 return i;
1840 return -1;