1 /* tc-tilegx.c -- Assemble for a Tile-Gx chip.
2 Copyright (C) 2011-2024 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. */
24 #include "elf/tilegx.h"
25 #include "opcode/tilegx.h"
27 #include "dwarf2dbg.h"
28 #include "dw2gencfi.h"
30 #include "safe-ctype.h"
33 /* Special registers. */
43 /* Generic assembler global variables which must be defined by all
46 /* The dwarf2 data alignment, adjusted for 32 or 64 bit. */
47 int tilegx_cie_data_alignment
;
49 /* Characters which always start a comment. */
50 const char comment_chars
[] = "#";
52 /* Characters which start a comment at the beginning of a line. */
53 const char line_comment_chars
[] = "#";
55 /* Characters which may be used to separate multiple commands on a
57 const char line_separator_chars
[] = ";";
59 /* Characters which are used to indicate an exponent in a floating
61 const char EXP_CHARS
[] = "eE";
63 /* Characters which mean that a number is a floating point constant,
65 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
67 /* Either 32 or 64. */
68 static int tilegx_arch_size
= 64;
72 tilegx_target_format (void)
74 if (target_big_endian
) {
75 return tilegx_arch_size
== 64 ? "elf64-tilegx-be" : "elf32-tilegx-be";
77 return tilegx_arch_size
== 64 ? "elf64-tilegx-le" : "elf32-tilegx-le";
82 #define OPTION_32 (OPTION_MD_BASE + 0)
83 #define OPTION_64 (OPTION_MD_BASE + 1)
84 #define OPTION_EB (OPTION_MD_BASE + 2)
85 #define OPTION_EL (OPTION_MD_BASE + 3)
87 const char md_shortopts
[] = "VQ:";
89 const struct option md_longopts
[] =
91 {"32", no_argument
, NULL
, OPTION_32
},
92 {"64", no_argument
, NULL
, OPTION_64
},
93 {"EB", no_argument
, NULL
, OPTION_EB
},
94 {"EL", no_argument
, NULL
, OPTION_EL
},
95 {NULL
, no_argument
, NULL
, 0}
98 const size_t md_longopts_size
= sizeof (md_longopts
);
101 md_parse_option (int c
, const char *arg ATTRIBUTE_UNUSED
)
105 /* -Qy, -Qn: SVR4 arguments controlling whether a .comment section
106 should be emitted or not. FIXME: Not implemented. */
110 /* -V: SVR4 argument to print version ID. */
116 tilegx_arch_size
= 32;
120 tilegx_arch_size
= 64;
124 target_big_endian
= 1;
128 target_big_endian
= 0;
139 md_show_usage (FILE *stream
)
141 fprintf (stream
, _("\
143 -V print assembler version number\n\
144 -EB/-EL generate big-endian/little-endian code\n\
145 --32/--64 generate 32bit/64bit code\n"));
149 /* Extra expression types. */
155 #define O_hw0_last O_md5
156 #define O_hw1_last O_md6
157 #define O_hw2_last O_md7
158 #define O_hw0_got O_md8
159 #define O_hw0_last_got O_md9
160 #define O_hw1_last_got O_md10
162 #define O_hw0_tls_gd O_md12
163 #define O_hw0_last_tls_gd O_md13
164 #define O_hw1_last_tls_gd O_md14
165 #define O_hw0_tls_ie O_md15
166 #define O_hw0_last_tls_ie O_md16
167 #define O_hw1_last_tls_ie O_md17
168 #define O_hw0_tls_le O_md18
169 #define O_hw0_last_tls_le O_md19
170 #define O_hw1_last_tls_le O_md20
171 #define O_tls_gd_call O_md21
172 #define O_tls_gd_add O_md22
173 #define O_tls_ie_load O_md23
174 #define O_tls_add O_md24
175 #define O_hw0_plt O_md25
176 #define O_hw1_plt O_md26
177 #define O_hw1_last_plt O_md27
178 #define O_hw2_last_plt O_md28
180 static htab_t special_operator_hash
;
182 /* Hash tables for instruction mnemonic lookup. */
183 static htab_t op_hash
;
185 /* Hash table for spr lookup. */
186 static htab_t spr_hash
;
188 /* True temporarily while parsing an SPR expression. This changes the
189 * namespace to include SPR names. */
190 static int parsing_spr
;
192 /* Are we currently inside `{ ... }'? */
193 static int inside_bundle
;
195 struct tilegx_instruction
197 const struct tilegx_opcode
*opcode
;
198 tilegx_pipeline pipe
;
199 expressionS operand_values
[TILEGX_MAX_OPERANDS
];
202 /* This keeps track of the current bundle being built up. */
203 static struct tilegx_instruction current_bundle
[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE
];
205 /* Index in current_bundle for the next instruction to parse. */
206 static int current_bundle_index
;
208 /* Allow 'r63' in addition to 'zero', etc. Normally we disallow this as
209 'zero' is not a real register, so using it accidentally would be a
210 nasty bug. For other registers, such as 'sp', code using multiple names
211 for the same physical register is excessively confusing.
213 The '.require_canonical_reg_names' pseudo-op turns this error on,
214 and the '.no_require_canonical_reg_names' pseudo-op turns this off.
215 By default the error is on. */
216 static int require_canonical_reg_names
;
218 /* Allow bundles that do undefined or suspicious things like write
219 two different values to the same register at the same time.
221 The '.no_allow_suspicious_bundles' pseudo-op turns this error on,
222 and the '.allow_suspicious_bundles' pseudo-op turns this off. */
223 static int allow_suspicious_bundles
;
226 /* A hash table of main processor registers, mapping each register name
229 Furthermore, if the register number is greater than the number
230 of registers for that processor, the user used an illegal alias
231 for that register (e.g. r63 instead of zero), so we should generate
232 a warning. The attempted register number can be found by clearing
233 NONCANONICAL_REG_NAME_FLAG. */
234 static htab_t main_reg_hash
;
237 /* We cannot unambiguously store a 0 in a hash table and look it up,
238 so we OR in this flag to every canonical register. */
239 #define CANONICAL_REG_NAME_FLAG 0x1000
241 /* By default we disallow register aliases like r63, but we record
242 them in the hash table in case the .no_require_canonical_reg_names
243 directive is used. Noncanonical names have this value added to them. */
244 #define NONCANONICAL_REG_NAME_FLAG 0x2000
246 /* Discards flags for register hash table entries and returns the
248 #define EXTRACT_REGNO(p) ((p) & 63)
250 /* This function is called once, at assembler startup time. It should
251 set up all the tables, etc., that the MD part of the assembler will
257 const struct tilegx_opcode
*op
;
259 int mach
= (tilegx_arch_size
== 64) ? bfd_mach_tilegx
: bfd_mach_tilegx32
;
261 if (! bfd_set_arch_mach (stdoutput
, bfd_arch_tilegx
, mach
))
262 as_warn (_("Could not set architecture and machine"));
264 /* Guarantee text section is aligned. */
265 bfd_set_section_alignment (text_section
,
266 TILEGX_LOG2_BUNDLE_ALIGNMENT_IN_BYTES
);
268 require_canonical_reg_names
= 1;
269 allow_suspicious_bundles
= 0;
270 current_bundle_index
= 0;
273 tilegx_cie_data_alignment
= (tilegx_arch_size
== 64 ? -8 : -4);
275 /* Initialize special operator hash table. */
276 special_operator_hash
= str_htab_create ();
277 #define INSERT_SPECIAL_OP(name) \
278 str_hash_insert (special_operator_hash, #name, (void *) O_##name, 0)
280 INSERT_SPECIAL_OP (hw0
);
281 INSERT_SPECIAL_OP (hw1
);
282 INSERT_SPECIAL_OP (hw2
);
283 INSERT_SPECIAL_OP (hw3
);
284 INSERT_SPECIAL_OP (hw0_last
);
285 INSERT_SPECIAL_OP (hw1_last
);
286 INSERT_SPECIAL_OP (hw2_last
);
287 /* hw3_last is a convenience alias for the equivalent hw3. */
288 str_hash_insert (special_operator_hash
, "hw3_last", (void *) O_hw3
, 0);
289 INSERT_SPECIAL_OP (hw0_got
);
290 INSERT_SPECIAL_OP (hw0_last_got
);
291 INSERT_SPECIAL_OP (hw1_last_got
);
292 INSERT_SPECIAL_OP(plt
);
293 INSERT_SPECIAL_OP (hw0_tls_gd
);
294 INSERT_SPECIAL_OP (hw0_last_tls_gd
);
295 INSERT_SPECIAL_OP (hw1_last_tls_gd
);
296 INSERT_SPECIAL_OP (hw0_tls_ie
);
297 INSERT_SPECIAL_OP (hw0_last_tls_ie
);
298 INSERT_SPECIAL_OP (hw1_last_tls_ie
);
299 INSERT_SPECIAL_OP (hw0_tls_le
);
300 INSERT_SPECIAL_OP (hw0_last_tls_le
);
301 INSERT_SPECIAL_OP (hw1_last_tls_le
);
302 INSERT_SPECIAL_OP (tls_gd_call
);
303 INSERT_SPECIAL_OP (tls_gd_add
);
304 INSERT_SPECIAL_OP (tls_ie_load
);
305 INSERT_SPECIAL_OP (tls_add
);
306 INSERT_SPECIAL_OP (hw0_plt
);
307 INSERT_SPECIAL_OP (hw1_plt
);
308 INSERT_SPECIAL_OP (hw1_last_plt
);
309 INSERT_SPECIAL_OP (hw2_last_plt
);
310 #undef INSERT_SPECIAL_OP
312 /* Initialize op_hash hash table. */
313 op_hash
= str_htab_create ();
314 for (op
= &tilegx_opcodes
[0]; op
->name
!= NULL
; op
++)
315 if (str_hash_insert (op_hash
, op
->name
, op
, 0) != NULL
)
316 as_fatal (_("duplicate %s"), op
->name
);
318 /* Initialize the spr hash table. */
320 spr_hash
= str_htab_create ();
321 for (i
= 0; i
< tilegx_num_sprs
; i
++)
322 str_hash_insert (spr_hash
, tilegx_sprs
[i
].name
, &tilegx_sprs
[i
], 0);
324 /* Set up the main_reg_hash table. We use this instead of
325 creating a symbol in the register section to avoid ambiguities
326 with labels that have the same names as registers. */
327 main_reg_hash
= str_htab_create ();
328 for (i
= 0; i
< TILEGX_NUM_REGISTERS
; i
++)
332 str_hash_insert (main_reg_hash
, tilegx_register_names
[i
],
333 (void *) (long) (i
| CANONICAL_REG_NAME_FLAG
), 0);
335 /* See if we should insert a noncanonical alias, like r63. */
336 sprintf (buf
, "r%d", i
);
337 if (strcmp (buf
, tilegx_register_names
[i
]) != 0)
338 str_hash_insert (main_reg_hash
, xstrdup (buf
),
339 (void *) (long) (i
| NONCANONICAL_REG_NAME_FLAG
), 0);
343 #define BUNDLE_TEMPLATE_MASK(p0, p1, p2) \
344 ((p0) | ((p1) << 8) | ((p2) << 16))
345 #define BUNDLE_TEMPLATE(p0, p1, p2) \
346 { { (p0), (p1), (p2) }, \
347 BUNDLE_TEMPLATE_MASK(1 << (p0), 1 << (p1), (1 << (p2))) \
350 #define NO_PIPELINE TILEGX_NUM_PIPELINE_ENCODINGS
352 struct bundle_template
354 tilegx_pipeline pipe
[TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE
];
355 unsigned int pipe_mask
;
358 static const struct bundle_template bundle_templates
[] =
360 /* In Y format we must always have something in Y2, since it has
361 no fnop, so this conveys that Y2 must always be used. */
362 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y0
, TILEGX_PIPELINE_Y2
, NO_PIPELINE
),
363 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y1
, TILEGX_PIPELINE_Y2
, NO_PIPELINE
),
364 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2
, TILEGX_PIPELINE_Y0
, NO_PIPELINE
),
365 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2
, TILEGX_PIPELINE_Y1
, NO_PIPELINE
),
367 /* Y format has three instructions. */
368 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y0
,TILEGX_PIPELINE_Y1
,TILEGX_PIPELINE_Y2
),
369 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y0
,TILEGX_PIPELINE_Y2
,TILEGX_PIPELINE_Y1
),
370 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y1
,TILEGX_PIPELINE_Y0
,TILEGX_PIPELINE_Y2
),
371 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y1
,TILEGX_PIPELINE_Y2
,TILEGX_PIPELINE_Y0
),
372 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2
,TILEGX_PIPELINE_Y0
,TILEGX_PIPELINE_Y1
),
373 BUNDLE_TEMPLATE(TILEGX_PIPELINE_Y2
,TILEGX_PIPELINE_Y1
,TILEGX_PIPELINE_Y0
),
375 /* X format has only two instructions. */
376 BUNDLE_TEMPLATE(TILEGX_PIPELINE_X0
, TILEGX_PIPELINE_X1
, NO_PIPELINE
),
377 BUNDLE_TEMPLATE(TILEGX_PIPELINE_X1
, TILEGX_PIPELINE_X0
, NO_PIPELINE
)
382 prepend_nop_to_bundle (tilegx_mnemonic mnemonic
)
384 memmove (¤t_bundle
[1], ¤t_bundle
[0],
385 current_bundle_index
* sizeof current_bundle
[0]);
386 current_bundle
[0].opcode
= &tilegx_opcodes
[mnemonic
];
387 ++current_bundle_index
;
390 static tilegx_bundle_bits
391 insert_operand (tilegx_bundle_bits bits
,
392 const struct tilegx_operand
*operand
,
397 /* Range-check the immediate. */
398 int num_bits
= operand
->num_bits
;
400 operand_value
>>= operand
->rightshift
;
402 if (bfd_check_overflow (operand
->is_signed
403 ? complain_overflow_signed
404 : complain_overflow_unsigned
,
407 bfd_arch_bits_per_address (stdoutput
),
412 if (operand
->is_signed
)
414 min
= -(1 << (num_bits
- 1));
415 max
= (1 << (num_bits
- 1)) - 1;
420 max
= (1 << num_bits
) - 1;
422 as_bad_value_out_of_range (_("operand"), operand_value
, min
, max
,
426 /* Write out the bits for the immediate. */
427 return bits
| operand
->insert (operand_value
);
432 apply_special_operator (operatorT op
, offsetT num
, const char *file
,
436 int check_shift
= -1;
444 ret
= (signed short)num
;
451 ret
= (signed short)(num
>> 16);
458 ret
= (signed short)(num
>> 32);
462 ret
= (signed short)(num
>> 48);
470 if (check_shift
>= 0 && ret
!= (num
>> check_shift
))
472 as_bad_value_out_of_range (_("operand"), num
,
473 ~0ULL << (check_shift
+ 16 - 1),
474 ~0ULL >> (64 - (check_shift
+ 16 - 1)),
481 static tilegx_bundle_bits
482 emit_tilegx_instruction (tilegx_bundle_bits bits
,
484 const unsigned char *operands
,
485 expressionS
*operand_values
,
490 for (i
= 0; i
< num_operands
; i
++)
492 const struct tilegx_operand
*operand
=
493 &tilegx_operands
[operands
[i
]];
494 expressionS
*operand_exp
= &operand_values
[i
];
495 int is_pc_relative
= operand
->is_pc_relative
;
497 if (operand_exp
->X_op
== O_register
498 || (operand_exp
->X_op
== O_constant
&& !is_pc_relative
))
500 /* We know what the bits are right now, so insert them. */
501 bits
= insert_operand (bits
, operand
, operand_exp
->X_add_number
,
506 bfd_reloc_code_real_type reloc
= operand
->default_reloc
;
508 int die
= 0, use_subexp
= 0, require_symbol
= 0;
511 /* Take an expression like hw0(x) and turn it into x with
512 a different reloc type. */
513 switch (operand_exp
->X_op
)
515 #define HANDLE_OP16(suffix) \
518 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST: \
519 reloc = BFD_RELOC_TILEGX_IMM16_X0_##suffix; \
521 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST: \
522 reloc = BFD_RELOC_TILEGX_IMM16_X1_##suffix; \
547 HANDLE_OP16 (HW0_LAST
);
551 HANDLE_OP16 (HW1_LAST
);
555 HANDLE_OP16 (HW2_LAST
);
559 HANDLE_OP16 (HW0_GOT
);
564 HANDLE_OP16 (HW0_LAST_GOT
);
569 HANDLE_OP16 (HW1_LAST_GOT
);
574 HANDLE_OP16 (HW0_TLS_GD
);
578 case O_hw0_last_tls_gd
:
579 HANDLE_OP16 (HW0_LAST_TLS_GD
);
583 case O_hw1_last_tls_gd
:
584 HANDLE_OP16 (HW1_LAST_TLS_GD
);
589 HANDLE_OP16 (HW0_TLS_IE
);
593 case O_hw0_last_tls_ie
:
594 HANDLE_OP16 (HW0_LAST_TLS_IE
);
598 case O_hw1_last_tls_ie
:
599 HANDLE_OP16 (HW1_LAST_TLS_IE
);
604 HANDLE_OP16 (HW0_TLS_LE
);
608 case O_hw0_last_tls_le
:
609 HANDLE_OP16 (HW0_LAST_TLS_LE
);
613 case O_hw1_last_tls_le
:
614 HANDLE_OP16 (HW1_LAST_TLS_LE
);
619 HANDLE_OP16 (HW0_PLT_PCREL
);
623 HANDLE_OP16 (HW1_PLT_PCREL
);
627 HANDLE_OP16 (HW1_LAST_PLT_PCREL
);
631 HANDLE_OP16 (HW2_LAST_PLT_PCREL
);
639 case BFD_RELOC_TILEGX_JUMPOFF_X1
:
640 reloc
= BFD_RELOC_TILEGX_JUMPOFF_X1_PLT
;
653 case BFD_RELOC_TILEGX_JUMPOFF_X1
:
654 reloc
= BFD_RELOC_TILEGX_TLS_GD_CALL
;
667 case BFD_RELOC_TILEGX_IMM8_X0
:
668 reloc
= BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD
;
670 case BFD_RELOC_TILEGX_IMM8_X1
:
671 reloc
= BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD
;
673 case BFD_RELOC_TILEGX_IMM8_Y0
:
674 reloc
= BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD
;
676 case BFD_RELOC_TILEGX_IMM8_Y1
:
677 reloc
= BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD
;
690 case BFD_RELOC_TILEGX_IMM8_X1
:
691 reloc
= BFD_RELOC_TILEGX_TLS_IE_LOAD
;
704 case BFD_RELOC_TILEGX_IMM8_X0
:
705 reloc
= BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD
;
707 case BFD_RELOC_TILEGX_IMM8_X1
:
708 reloc
= BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD
;
710 case BFD_RELOC_TILEGX_IMM8_Y0
:
711 reloc
= BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD
;
713 case BFD_RELOC_TILEGX_IMM8_Y1
:
714 reloc
= BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD
;
731 as_bad (_("Invalid operator for operand."));
735 expressionS
*sval
= NULL
;
736 /* Now that we've changed the reloc, change ha16(x) into x,
739 if (symbol_symbolS (operand_exp
->X_add_symbol
))
740 sval
= symbol_get_value_expression (operand_exp
->X_add_symbol
);
741 if (sval
&& sval
->X_md
)
743 /* HACK: We used X_md to mark this symbol as a fake wrapper
744 around a real expression. To unwrap it, we just grab its
750 /* Look at the expression, and reject it if it's not a
752 if (operand_exp
->X_op
!= O_symbol
753 || operand_exp
->X_add_number
!= 0)
754 as_bad (_("Operator may only be applied to symbols."));
759 /* The value of this expression is an actual symbol, so
760 turn that into an expression. */
761 memset (&subexp
, 0, sizeof subexp
);
762 subexp
.X_op
= O_symbol
;
763 subexp
.X_add_symbol
= operand_exp
->X_add_symbol
;
764 operand_exp
= &subexp
;
768 /* Create a fixup to handle this later. */
769 fixP
= fix_new_exp (frag_now
,
770 bundle_start
- frag_now
->fr_literal
,
771 (operand
->num_bits
+ 7) >> 3,
775 fixP
->tc_fix_data
= operand
;
777 /* Don't do overflow checking if we are applying a function like
779 fixP
->fx_no_overflow
|= use_subexp
;
786 /* Detects and complains if two instructions in current_bundle write
787 to the same register, either implicitly or explicitly, or if a
788 read-only register is written. */
790 check_illegal_reg_writes (void)
792 uint64_t all_regs_written
= 0;
795 for (j
= 0; j
< current_bundle_index
; j
++)
797 const struct tilegx_instruction
*instr
= ¤t_bundle
[j
];
800 (uint64_t) 1 << instr
->opcode
->implicitly_written_register
;
803 for (k
= 0; k
< instr
->opcode
->num_operands
; k
++)
805 const struct tilegx_operand
*operand
=
806 &tilegx_operands
[instr
->opcode
->operands
[instr
->pipe
][k
]];
808 if (operand
->is_dest_reg
)
810 int regno
= instr
->operand_values
[k
].X_add_number
;
811 uint64_t mask
= (uint64_t) 1 << regno
;
813 if ((mask
& ( ((uint64_t) 1 << TREG_IDN1
)
814 | ((uint64_t) 1 << TREG_UDN1
)
815 | ((uint64_t) 1 << TREG_UDN2
)
816 | ((uint64_t) 1 << TREG_UDN3
))) != 0
817 && !allow_suspicious_bundles
)
819 as_bad (_("Writes to register '%s' are not allowed."),
820 tilegx_register_names
[regno
]);
827 /* Writing to the zero register doesn't count. */
828 regs
&= ~((uint64_t) 1 << TREG_ZERO
);
830 conflict
= all_regs_written
& regs
;
831 if (conflict
!= 0 && !allow_suspicious_bundles
)
833 /* Find which register caused the conflict. */
834 const char *conflicting_reg_name
= "???";
837 for (i
= 0; i
< TILEGX_NUM_REGISTERS
; i
++)
839 if (((conflict
>> i
) & 1) != 0)
841 conflicting_reg_name
= tilegx_register_names
[i
];
846 as_bad (_("Two instructions in the same bundle both write "
847 "to register %s, which is not allowed."),
848 conflicting_reg_name
);
851 all_regs_written
|= regs
;
857 tilegx_flush_bundle (void)
862 unsigned compatible_pipes
;
863 const struct bundle_template
*match
;
868 switch (current_bundle_index
)
871 /* No instructions. */
874 if (current_bundle
[0].opcode
->can_bundle
)
876 /* Simplify later logic by adding an explicit fnop. */
877 prepend_nop_to_bundle (TILEGX_OPC_FNOP
);
881 /* This instruction cannot be bundled with anything else.
882 Prepend an explicit 'nop', rather than an 'fnop', because
883 fnops can be replaced by later binary-processing tools while
885 prepend_nop_to_bundle (TILEGX_OPC_NOP
);
889 if (!allow_suspicious_bundles
)
891 /* Make sure all instructions can be bundled with other
893 const struct tilegx_opcode
*cannot_bundle
= NULL
;
894 bool seen_non_nop
= false;
896 for (j
= 0; j
< current_bundle_index
; j
++)
898 const struct tilegx_opcode
*op
= current_bundle
[j
].opcode
;
900 if (!op
->can_bundle
&& cannot_bundle
== NULL
)
902 else if (op
->mnemonic
!= TILEGX_OPC_NOP
903 && op
->mnemonic
!= TILEGX_OPC_INFO
904 && op
->mnemonic
!= TILEGX_OPC_INFOL
)
908 if (cannot_bundle
!= NULL
&& seen_non_nop
)
910 current_bundle_index
= 0;
911 as_bad (_("'%s' may not be bundled with other instructions."),
912 cannot_bundle
->name
);
920 BUNDLE_TEMPLATE_MASK(current_bundle
[0].opcode
->pipes
,
921 current_bundle
[1].opcode
->pipes
,
922 (current_bundle_index
== 3
923 ? current_bundle
[2].opcode
->pipes
924 : (1 << NO_PIPELINE
)));
926 /* Find a template that works, if any. */
928 for (i
= 0; i
< sizeof bundle_templates
/ sizeof bundle_templates
[0]; i
++)
930 const struct bundle_template
*b
= &bundle_templates
[i
];
931 if ((b
->pipe_mask
& compatible_pipes
) == b
->pipe_mask
)
940 current_bundle_index
= 0;
941 as_bad (_("Invalid combination of instructions for bundle."));
945 /* If the section seems to have no alignment set yet, go ahead and
946 make it large enough to hold code. */
947 if (bfd_section_alignment (now_seg
) == 0)
948 bfd_set_section_alignment (now_seg
,
949 TILEGX_LOG2_BUNDLE_ALIGNMENT_IN_BYTES
);
951 for (j
= 0; j
< current_bundle_index
; j
++)
952 current_bundle
[j
].pipe
= match
->pipe
[j
];
954 if (current_bundle_index
== 2 && !tilegx_is_x_pipeline (match
->pipe
[0]))
956 /* We are in Y mode with only two instructions, so add an FNOP. */
957 prepend_nop_to_bundle (TILEGX_OPC_FNOP
);
959 /* Figure out what pipe the fnop must be in via arithmetic.
960 * p0 + p1 + p2 must sum to the sum of TILEGX_PIPELINE_Y[012]. */
961 current_bundle
[0].pipe
=
962 (tilegx_pipeline
)((TILEGX_PIPELINE_Y0
964 + TILEGX_PIPELINE_Y2
) -
965 (current_bundle
[1].pipe
+ current_bundle
[2].pipe
));
968 check_illegal_reg_writes ();
970 f
= frag_more (TILEGX_BUNDLE_SIZE_IN_BYTES
);
972 /* Check to see if this bundle is at an offset that is a multiple of 8-bytes
973 from the start of the frag. */
974 addr_mod
= frag_now_fix () & (TILEGX_BUNDLE_ALIGNMENT_IN_BYTES
- 1);
975 if (frag_now
->has_code
&& frag_now
->insn_addr
!= addr_mod
)
976 as_bad (_("instruction address is not a multiple of 8"));
977 frag_now
->insn_addr
= addr_mod
;
978 frag_now
->has_code
= 1;
980 tilegx_bundle_bits bits
= 0;
981 for (j
= 0; j
< current_bundle_index
; j
++)
983 struct tilegx_instruction
*instr
= ¤t_bundle
[j
];
984 tilegx_pipeline pipeline
= instr
->pipe
;
985 const struct tilegx_opcode
*opcode
= instr
->opcode
;
987 bits
|= emit_tilegx_instruction (opcode
->fixed_bit_values
[pipeline
],
988 opcode
->num_operands
,
989 &opcode
->operands
[pipeline
][0],
990 instr
->operand_values
,
994 number_to_chars_littleendian (f
, bits
, 8);
995 current_bundle_index
= 0;
997 /* Emit DWARF2 debugging information. */
998 dwarf2_emit_insn (TILEGX_BUNDLE_SIZE_IN_BYTES
);
1002 /* Extend the expression parser to handle hw0(label), etc.
1003 as well as SPR names when in the context of parsing an SPR. */
1006 tilegx_parse_name (char *name
, expressionS
*e
, char *nextcharP
)
1008 operatorT op
= O_illegal
;
1012 void* val
= str_hash_find (spr_hash
, name
);
1016 memset (e
, 0, sizeof *e
);
1017 e
->X_op
= O_constant
;
1018 e
->X_add_number
= ((const struct tilegx_spr
*)val
)->number
;
1022 if (*nextcharP
!= '(')
1024 /* hw0, etc. not followed by a paren is just a label with that name. */
1029 /* Look up the operator in our table. */
1030 void* val
= str_hash_find (special_operator_hash
, name
);
1033 op
= (operatorT
)(long)val
;
1036 /* Restore old '(' and skip it. */
1037 *input_line_pointer
= '(';
1038 ++input_line_pointer
;
1042 if (*input_line_pointer
!= ')')
1044 as_bad (_("Missing ')'"));
1045 *nextcharP
= *input_line_pointer
;
1049 ++input_line_pointer
;
1051 if (e
->X_op
== O_register
|| e
->X_op
== O_absent
)
1053 as_bad (_("Invalid expression."));
1054 e
->X_op
= O_constant
;
1055 e
->X_add_number
= 0;
1059 /* Wrap subexpression with a unary operator. */
1060 symbolS
*sym
= make_expr_symbol (e
);
1062 if (sym
!= e
->X_add_symbol
)
1064 /* HACK: mark this symbol as a temporary wrapper around a proper
1065 expression, so we can unwrap it later once we have communicated
1066 the relocation type. */
1067 symbol_get_value_expression (sym
)->X_md
= 1;
1070 memset (e
, 0, sizeof *e
);
1072 e
->X_add_symbol
= sym
;
1073 e
->X_add_number
= 0;
1076 *nextcharP
= *input_line_pointer
;
1081 /* Parses an expression which must be a register name. */
1084 parse_reg_expression (expressionS
* expression
)
1087 char terminating_char
;
1089 int regno_and_flags
;
1092 /* Zero everything to make sure we don't miss any flags. */
1093 memset (expression
, 0, sizeof *expression
);
1095 terminating_char
= get_symbol_name (®name
);
1097 pval
= str_hash_find (main_reg_hash
, regname
);
1099 as_bad (_("Expected register, got '%s'."), regname
);
1101 regno_and_flags
= (int)(size_t)pval
;
1102 regno
= EXTRACT_REGNO(regno_and_flags
);
1104 if ((regno_and_flags
& NONCANONICAL_REG_NAME_FLAG
)
1105 && require_canonical_reg_names
)
1106 as_warn (_("Found use of non-canonical register name %s; "
1108 regname
, tilegx_register_names
[regno
]);
1110 /* Restore the old character following the register name. */
1111 (void) restore_line_pointer (terminating_char
);
1113 /* Fill in the expression fields to indicate it's a register. */
1114 expression
->X_op
= O_register
;
1115 expression
->X_add_number
= regno
;
1119 /* Parses and type-checks comma-separated operands in input_line_pointer. */
1122 parse_operands (const char *opcode_name
,
1123 const unsigned char *operands
,
1125 expressionS
*operand_values
)
1129 memset (operand_values
, 0, num_operands
* sizeof operand_values
[0]);
1132 for (i
= 0; i
< num_operands
; i
++)
1134 tilegx_operand_type type
= tilegx_operands
[operands
[i
]].type
;
1138 if (type
== TILEGX_OP_TYPE_REGISTER
)
1140 parse_reg_expression (&operand_values
[i
]);
1142 else if (*input_line_pointer
== '}')
1144 operand_values
[i
].X_op
= O_absent
;
1146 else if (type
== TILEGX_OP_TYPE_SPR
)
1148 /* Modify the expression parser to add SPRs to the namespace. */
1150 expression (&operand_values
[i
]);
1155 expression (&operand_values
[i
]);
1160 if (i
+ 1 < num_operands
)
1162 int separator
= (unsigned char)*input_line_pointer
++;
1164 if (is_end_of_line
[separator
] || (separator
== '}'))
1166 as_bad (_("Too few operands to '%s'."), opcode_name
);
1169 else if (separator
!= ',')
1171 as_bad (_("Unexpected character '%c' after operand %d to %s."),
1172 (char)separator
, i
+ 1, opcode_name
);
1177 /* Arbitrarily use the first valid pipe to get the operand type,
1178 since they are all the same. */
1179 switch (tilegx_operands
[operands
[i
]].type
)
1181 case TILEGX_OP_TYPE_REGISTER
:
1182 /* Handled in parse_reg_expression already. */
1184 case TILEGX_OP_TYPE_SPR
:
1186 case TILEGX_OP_TYPE_IMMEDIATE
:
1188 case TILEGX_OP_TYPE_ADDRESS
:
1189 if ( operand_values
[i
].X_op
== O_register
1190 || operand_values
[i
].X_op
== O_illegal
1191 || operand_values
[i
].X_op
== O_absent
)
1192 as_bad (_("Expected immediate expression"));
1199 if (!is_end_of_line
[(unsigned char)*input_line_pointer
])
1201 switch (*input_line_pointer
)
1205 as_bad (_("Found '}' when not bundling."));
1206 ++input_line_pointer
;
1208 demand_empty_rest_of_line ();
1212 as_bad (_("Too many operands"));
1216 /* Use default error for unrecognized garbage. */
1217 demand_empty_rest_of_line ();
1224 /* This is the guts of the machine-dependent assembler. STR points to a
1225 machine dependent instruction. This function is supposed to emit the
1226 frags/bytes it assembles to. */
1229 md_assemble (char *str
)
1233 char *old_input_line_pointer
;
1234 const struct tilegx_opcode
*op
;
1237 /* Split off the opcode and look it up. */
1238 opname_len
= strcspn (str
, " {}");
1239 old_char
= str
[opname_len
];
1240 str
[opname_len
] = '\0';
1242 op
= str_hash_find (op_hash
, str
);
1243 str
[opname_len
] = old_char
;
1246 as_bad (_("Unknown opcode `%.*s'."), (int)opname_len
, str
);
1250 /* Prepare to parse the operands. */
1251 old_input_line_pointer
= input_line_pointer
;
1252 input_line_pointer
= str
+ opname_len
;
1255 if (current_bundle_index
== TILEGX_MAX_INSTRUCTIONS_PER_BUNDLE
)
1257 as_bad (_("Too many instructions for bundle."));
1258 tilegx_flush_bundle ();
1261 /* Make sure we have room for the upcoming bundle before we
1262 create any fixups. Otherwise if we have to switch to a new
1263 frag the fixup dot_value fields will be wrong. */
1264 frag_grow (TILEGX_BUNDLE_SIZE_IN_BYTES
);
1266 /* Find a valid pipe for this opcode. */
1267 for (first_pipe
= 0; (op
->pipes
& (1 << first_pipe
)) == 0; first_pipe
++)
1270 /* Call the function that assembles this instruction. */
1271 current_bundle
[current_bundle_index
].opcode
= op
;
1272 parse_operands (op
->name
,
1273 &op
->operands
[first_pipe
][0],
1275 current_bundle
[current_bundle_index
].operand_values
);
1276 ++current_bundle_index
;
1278 /* Restore the saved value of input_line_pointer. */
1279 input_line_pointer
= old_input_line_pointer
;
1281 /* If we weren't inside curly braces, go ahead and emit
1282 this lone instruction as a bundle right now. */
1284 tilegx_flush_bundle ();
1289 s_require_canonical_reg_names (int require
)
1291 demand_empty_rest_of_line ();
1292 require_canonical_reg_names
= require
;
1296 s_allow_suspicious_bundles (int allow
)
1298 demand_empty_rest_of_line ();
1299 allow_suspicious_bundles
= allow
;
1302 const pseudo_typeS md_pseudo_table
[] =
1304 {"align", s_align_bytes
, 0}, /* Defaulting is invalid (0). */
1306 {"require_canonical_reg_names", s_require_canonical_reg_names
, 1 },
1307 {"no_require_canonical_reg_names", s_require_canonical_reg_names
, 0 },
1308 {"allow_suspicious_bundles", s_allow_suspicious_bundles
, 1 },
1309 {"no_allow_suspicious_bundles", s_allow_suspicious_bundles
, 0 },
1314 md_number_to_chars (char * buf
, valueT val
, int n
)
1316 if (target_big_endian
)
1317 number_to_chars_bigendian (buf
, val
, n
);
1319 number_to_chars_littleendian (buf
, val
, n
);
1322 /* Turn the string pointed to by litP into a floating point constant
1323 of type TYPE, and emit the appropriate bytes. The number of
1324 LITTLENUMS emitted is stored in *SIZEP. An error message is
1325 returned, or NULL on OK. */
1328 md_atof (int type
, char *litP
, int *sizeP
)
1331 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
1332 LITTLENUM_TYPE
*wordP
;
1349 return _("Bad call to md_atof ()");
1351 t
= atof_ieee (input_line_pointer
, type
, words
);
1353 input_line_pointer
= t
;
1355 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
1356 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
1357 the bigendian 386. */
1358 for (wordP
= words
+ prec
- 1; prec
--;)
1360 md_number_to_chars (litP
, (valueT
) (*wordP
--), sizeof (LITTLENUM_TYPE
));
1361 litP
+= sizeof (LITTLENUM_TYPE
);
1367 /* We have no need to default values of symbols. */
1370 md_undefined_symbol (char *name ATTRIBUTE_UNUSED
)
1377 tilegx_cons_fix_new (fragS
*frag
,
1383 bfd_reloc_code_real_type reloc
= BFD_RELOC_NONE
;
1384 int no_overflow
= 0;
1387 /* See if it's one of our special functions. */
1391 reloc
= BFD_RELOC_TILEGX_HW0
;
1395 reloc
= BFD_RELOC_TILEGX_HW1
;
1399 reloc
= BFD_RELOC_TILEGX_HW2
;
1403 reloc
= BFD_RELOC_TILEGX_HW3
;
1407 reloc
= BFD_RELOC_TILEGX_HW0_LAST
;
1410 reloc
= BFD_RELOC_TILEGX_HW1_LAST
;
1413 reloc
= BFD_RELOC_TILEGX_HW2_LAST
;
1421 if (reloc
!= BFD_RELOC_NONE
)
1425 as_bad (_("This operator only produces two byte values."));
1429 memset (&subexp
, 0, sizeof subexp
);
1430 subexp
.X_op
= O_symbol
;
1431 subexp
.X_add_symbol
= exp
->X_add_symbol
;
1439 reloc
= BFD_RELOC_8
;
1442 reloc
= BFD_RELOC_16
;
1445 reloc
= BFD_RELOC_32
;
1448 reloc
= BFD_RELOC_64
;
1451 as_bad (_("unsupported BFD relocation size %d"), nbytes
);
1452 reloc
= BFD_RELOC_64
;
1457 fixP
= fix_new_exp (frag
, where
, nbytes
, exp
, 0, reloc
);
1458 fixP
->tc_fix_data
= NULL
;
1459 fixP
->fx_no_overflow
|= no_overflow
;
1464 md_apply_fix (fixS
*fixP
, valueT
* valP
, segT seg ATTRIBUTE_UNUSED
)
1466 const struct tilegx_operand
*operand
;
1467 valueT value
= *valP
;
1471 /* Leave these for the linker. */
1472 if (fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
1473 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
1476 if (fixP
->fx_subsy
!= (symbolS
*) NULL
)
1478 /* We can't actually support subtracting a symbol. */
1479 as_bad_subtract (fixP
);
1482 /* Correct relocation types for pc-relativeness. */
1483 switch (fixP
->fx_r_type
)
1485 #define FIX_PCREL(rtype) \
1487 if (fixP->fx_pcrel) \
1488 fixP->fx_r_type = rtype##_PCREL; \
1491 case rtype##_PCREL: \
1492 if (!fixP->fx_pcrel) \
1493 fixP->fx_r_type = rtype; \
1496 #define FIX_PLT_PCREL(rtype) \
1497 case rtype##_PLT_PCREL: \
1498 if (!fixP->fx_pcrel) \
1499 fixP->fx_r_type = rtype; \
1503 FIX_PCREL (BFD_RELOC_8
);
1504 FIX_PCREL (BFD_RELOC_16
);
1505 FIX_PCREL (BFD_RELOC_32
);
1506 FIX_PCREL (BFD_RELOC_64
);
1507 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0
);
1508 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0
);
1509 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1
);
1510 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1
);
1511 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2
);
1512 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2
);
1513 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW3
);
1514 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW3
);
1515 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST
);
1516 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST
);
1517 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST
);
1518 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST
);
1519 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST
);
1520 FIX_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST
);
1521 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW0
);
1522 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW0
);
1523 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1
);
1524 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1
);
1525 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST
);
1526 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST
);
1527 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST
);
1528 FIX_PLT_PCREL (BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST
);
1537 if (fixP
->fx_addsy
!= NULL
)
1540 switch (fixP
->fx_r_type
)
1542 case BFD_RELOC_TILEGX_IMM8_X0_TLS_ADD
:
1543 case BFD_RELOC_TILEGX_IMM8_X1_TLS_ADD
:
1544 case BFD_RELOC_TILEGX_IMM8_Y0_TLS_ADD
:
1545 case BFD_RELOC_TILEGX_IMM8_Y1_TLS_ADD
:
1546 case BFD_RELOC_TILEGX_IMM8_X0_TLS_GD_ADD
:
1547 case BFD_RELOC_TILEGX_IMM8_X1_TLS_GD_ADD
:
1548 case BFD_RELOC_TILEGX_IMM8_Y0_TLS_GD_ADD
:
1549 case BFD_RELOC_TILEGX_IMM8_Y1_TLS_GD_ADD
:
1550 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_GD
:
1551 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_GD
:
1552 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_GD
:
1553 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_GD
:
1554 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_GD
:
1555 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_GD
:
1556 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_IE
:
1557 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_IE
:
1558 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_IE
:
1559 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_IE
:
1560 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_IE
:
1561 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_IE
:
1562 case BFD_RELOC_TILEGX_IMM16_X0_HW0_TLS_LE
:
1563 case BFD_RELOC_TILEGX_IMM16_X1_HW0_TLS_LE
:
1564 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_TLS_LE
:
1565 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_TLS_LE
:
1566 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_TLS_LE
:
1567 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_TLS_LE
:
1568 case BFD_RELOC_TILEGX_TLS_GD_CALL
:
1569 case BFD_RELOC_TILEGX_TLS_IE_LOAD
:
1570 case BFD_RELOC_TILEGX_TLS_DTPMOD64
:
1571 case BFD_RELOC_TILEGX_TLS_DTPOFF64
:
1572 case BFD_RELOC_TILEGX_TLS_TPOFF64
:
1573 case BFD_RELOC_TILEGX_TLS_DTPMOD32
:
1574 case BFD_RELOC_TILEGX_TLS_DTPOFF32
:
1575 case BFD_RELOC_TILEGX_TLS_TPOFF32
:
1576 S_SET_THREAD_LOCAL (fixP
->fx_addsy
);
1587 /* Apply hw0, etc. */
1588 special
= O_illegal
;
1589 switch (fixP
->fx_r_type
)
1591 case BFD_RELOC_TILEGX_HW0
:
1592 case BFD_RELOC_TILEGX_IMM16_X0_HW0
:
1593 case BFD_RELOC_TILEGX_IMM16_X1_HW0
:
1594 case BFD_RELOC_TILEGX_IMM16_X0_HW0_PCREL
:
1595 case BFD_RELOC_TILEGX_IMM16_X1_HW0_PCREL
:
1596 case BFD_RELOC_TILEGX_IMM16_X0_HW0_PLT_PCREL
:
1597 case BFD_RELOC_TILEGX_IMM16_X1_HW0_PLT_PCREL
:
1601 case BFD_RELOC_TILEGX_HW0_LAST
:
1602 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST
:
1603 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST
:
1604 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PCREL
:
1605 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PCREL
:
1606 case BFD_RELOC_TILEGX_IMM16_X0_HW0_LAST_PLT_PCREL
:
1607 case BFD_RELOC_TILEGX_IMM16_X1_HW0_LAST_PLT_PCREL
:
1608 special
= O_hw0_last
;
1611 case BFD_RELOC_TILEGX_HW1
:
1612 case BFD_RELOC_TILEGX_IMM16_X0_HW1
:
1613 case BFD_RELOC_TILEGX_IMM16_X1_HW1
:
1614 case BFD_RELOC_TILEGX_IMM16_X0_HW1_PCREL
:
1615 case BFD_RELOC_TILEGX_IMM16_X1_HW1_PCREL
:
1616 case BFD_RELOC_TILEGX_IMM16_X0_HW1_PLT_PCREL
:
1617 case BFD_RELOC_TILEGX_IMM16_X1_HW1_PLT_PCREL
:
1621 case BFD_RELOC_TILEGX_HW1_LAST
:
1622 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST
:
1623 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST
:
1624 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PCREL
:
1625 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PCREL
:
1626 case BFD_RELOC_TILEGX_IMM16_X0_HW1_LAST_PLT_PCREL
:
1627 case BFD_RELOC_TILEGX_IMM16_X1_HW1_LAST_PLT_PCREL
:
1628 special
= O_hw1_last
;
1631 case BFD_RELOC_TILEGX_HW2
:
1632 case BFD_RELOC_TILEGX_IMM16_X0_HW2
:
1633 case BFD_RELOC_TILEGX_IMM16_X1_HW2
:
1634 case BFD_RELOC_TILEGX_IMM16_X0_HW2_PCREL
:
1635 case BFD_RELOC_TILEGX_IMM16_X1_HW2_PCREL
:
1636 case BFD_RELOC_TILEGX_IMM16_X0_HW2_PLT_PCREL
:
1637 case BFD_RELOC_TILEGX_IMM16_X1_HW2_PLT_PCREL
:
1641 case BFD_RELOC_TILEGX_HW2_LAST
:
1642 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST
:
1643 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST
:
1644 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PCREL
:
1645 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PCREL
:
1646 case BFD_RELOC_TILEGX_IMM16_X0_HW2_LAST_PLT_PCREL
:
1647 case BFD_RELOC_TILEGX_IMM16_X1_HW2_LAST_PLT_PCREL
:
1648 special
= O_hw2_last
;
1651 case BFD_RELOC_TILEGX_HW3
:
1652 case BFD_RELOC_TILEGX_IMM16_X0_HW3
:
1653 case BFD_RELOC_TILEGX_IMM16_X1_HW3
:
1654 case BFD_RELOC_TILEGX_IMM16_X0_HW3_PCREL
:
1655 case BFD_RELOC_TILEGX_IMM16_X1_HW3_PCREL
:
1656 case BFD_RELOC_TILEGX_IMM16_X0_HW3_PLT_PCREL
:
1657 case BFD_RELOC_TILEGX_IMM16_X1_HW3_PLT_PCREL
:
1666 if (special
!= O_illegal
)
1668 *valP
= value
= apply_special_operator (special
, value
,
1669 fixP
->fx_file
, fixP
->fx_line
);
1672 p
= fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
1674 operand
= fixP
->tc_fix_data
;
1675 if (operand
!= NULL
)
1677 /* It's an instruction operand. */
1678 tilegx_bundle_bits bits
=
1679 insert_operand (0, operand
, value
, fixP
->fx_file
, fixP
->fx_line
);
1681 /* Note that we might either be writing out bits for a bundle
1682 or a static network instruction, which are different sizes, so it's
1683 important to stop touching memory once we run out of bits.
1684 ORing in values is OK since we know the existing bits for
1685 this operand are zero. */
1686 for (; bits
!= 0; bits
>>= 8)
1691 /* Some other kind of relocation. */
1692 switch (fixP
->fx_r_type
)
1695 case BFD_RELOC_8_PCREL
:
1696 md_number_to_chars (p
, value
, 1);
1700 case BFD_RELOC_16_PCREL
:
1701 md_number_to_chars (p
, value
, 2);
1705 case BFD_RELOC_32_PCREL
:
1706 md_number_to_chars (p
, value
, 4);
1710 case BFD_RELOC_64_PCREL
:
1711 md_number_to_chars (p
, value
, 8);
1715 /* Leave it for the linker. */
1724 /* Generate the BFD reloc to be stuck in the object file from the
1725 fixup used internally in the assembler. */
1728 tc_gen_reloc (asection
*sec ATTRIBUTE_UNUSED
, fixS
*fixp
)
1732 reloc
= XNEW (arelent
);
1733 reloc
->sym_ptr_ptr
= XNEW (asymbol
*);
1734 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
1735 reloc
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
1737 /* Make sure none of our internal relocations make it this far.
1738 They'd better have been fully resolved by this point. */
1739 gas_assert ((int) fixp
->fx_r_type
> 0);
1741 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixp
->fx_r_type
);
1742 if (reloc
->howto
== NULL
)
1744 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
1745 _("cannot represent `%s' relocation in object file"),
1746 bfd_get_reloc_code_name (fixp
->fx_r_type
));
1750 if (!fixp
->fx_pcrel
!= !reloc
->howto
->pc_relative
)
1752 as_fatal (_("internal error? cannot generate `%s' relocation (%d, %d)"),
1753 bfd_get_reloc_code_name (fixp
->fx_r_type
),
1754 fixp
->fx_pcrel
, reloc
->howto
->pc_relative
);
1756 gas_assert (!fixp
->fx_pcrel
== !reloc
->howto
->pc_relative
);
1758 reloc
->addend
= fixp
->fx_offset
;
1764 /* The location from which a PC relative jump should be calculated,
1765 given a PC relative reloc. */
1768 md_pcrel_from (fixS
*fixP
)
1770 return fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
1774 /* Return 1 if it's OK to adjust a reloc by replacing the symbol with
1775 a section symbol plus some offset. */
1777 tilegx_fix_adjustable (fixS
*fix
)
1779 /* Prevent all adjustments to global symbols */
1780 if (S_IS_EXTERNAL (fix
->fx_addsy
) || S_IS_WEAK (fix
->fx_addsy
))
1788 tilegx_unrecognized_line (int ch
)
1795 as_bad (_("Found '{' when already bundling."));
1800 current_bundle_index
= 0;
1807 as_bad (_("Found '}' when not bundling."));
1811 tilegx_flush_bundle ();
1814 /* Allow '{' to follow on the same line. We also allow ";;", but that
1815 happens automatically because ';' is an end of line marker. */
1817 if (input_line_pointer
[0] == '{')
1819 input_line_pointer
++;
1820 return tilegx_unrecognized_line ('{');
1823 demand_empty_rest_of_line ();
1830 /* Not a valid line. */
1835 /* This is called from HANDLE_ALIGN in write.c. Fill in the contents
1836 of an rs_align_code fragment. */
1839 tilegx_handle_align (fragS
*fragp
)
1841 addressT bytes
, fix
;
1844 if (fragp
->fr_type
!= rs_align_code
)
1847 bytes
= fragp
->fr_next
->fr_address
- fragp
->fr_address
- fragp
->fr_fix
;
1848 p
= fragp
->fr_literal
+ fragp
->fr_fix
;
1851 /* Determine the bits for NOP. */
1852 const struct tilegx_opcode
*nop_opcode
=
1853 &tilegx_opcodes
[TILEGX_OPC_NOP
];
1854 tilegx_bundle_bits nop
=
1855 ( nop_opcode
->fixed_bit_values
[TILEGX_PIPELINE_X0
]
1856 | nop_opcode
->fixed_bit_values
[TILEGX_PIPELINE_X1
]);
1858 if ((bytes
& (TILEGX_BUNDLE_SIZE_IN_BYTES
- 1)) != 0)
1860 fix
= bytes
& (TILEGX_BUNDLE_SIZE_IN_BYTES
- 1);
1866 number_to_chars_littleendian (p
, nop
, 8);
1867 fragp
->fr_fix
+= fix
;
1868 fragp
->fr_var
= TILEGX_BUNDLE_SIZE_IN_BYTES
;
1871 /* Standard calling conventions leave the CFA at SP on entry. */
1873 tilegx_cfi_frame_initial_instructions (void)
1875 cfi_add_CFA_def_cfa_register (54);
1879 tc_tilegx_regname_to_dw2regnum (char *regname
)
1882 for (i
= 0; i
< TILEGX_NUM_REGISTERS
; i
++)
1884 if (!strcmp (regname
, tilegx_register_names
[i
]))