1 /* tc-tic4x.c -- Assemble for the Texas Instruments TMS320C[34]x.
2 Copyright (C) 1997-2024 Free Software Foundation, Inc.
4 Contributed by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz)
6 This file is part of GAS, the GNU Assembler.
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
21 Boston, MA 02110-1301, USA. */
26 o .align cannot handle fill-data-width larger than 0xFF/8-bits. It
27 should be possible to define a 32-bits pattern.
29 o .align: Implement a 'bu' insn if the number of nop's exceeds 4
30 within the align frag. if(fragsize>4words) insert bu fragend+1
33 o .usect if has symbol on previous line not implemented
35 o .sym, .eos, .stag, .etag, .member not implemented
37 o Evaluation of constant floating point expressions (expr.c needs
40 o Support 'abc' constants (that is 0x616263). */
43 #include "safe-ctype.h"
44 #include "opcode/tic4x.h"
47 /* OK, we accept a syntax similar to the other well known C30
48 assembly tools. With TIC4X_ALT_SYNTAX defined we are more
49 flexible, allowing a more Unix-like syntax: `%' in front of
50 register names, `#' in front of immediate constants, and
51 not requiring `@' in front of direct addresses. */
53 #define TIC4X_ALT_SYNTAX
55 /* Handle of the inst mnemonic hash table. */
56 static htab_t tic4x_op_hash
= NULL
;
58 /* Handle asg pseudo. */
59 static htab_t tic4x_asg_hash
= NULL
;
61 static unsigned int tic4x_cpu
= 0; /* Default to TMS320C40. */
62 static unsigned int tic4x_revision
= 0; /* CPU revision */
63 static unsigned int tic4x_idle2
= 0; /* Idle2 support */
64 static unsigned int tic4x_lowpower
= 0; /* Lowpower support */
65 static unsigned int tic4x_enhanced
= 0; /* Enhanced opcode support */
66 static unsigned int tic4x_big_model
= 0; /* Default to small memory model. */
67 static unsigned int tic4x_reg_args
= 0; /* Default to args passed on stack. */
68 static unsigned long tic4x_oplevel
= 0; /* Opcode level */
70 #define OPTION_CPU 'm'
71 #define OPTION_BIG (OPTION_MD_BASE + 1)
72 #define OPTION_SMALL (OPTION_MD_BASE + 2)
73 #define OPTION_MEMPARM (OPTION_MD_BASE + 3)
74 #define OPTION_REGPARM (OPTION_MD_BASE + 4)
75 #define OPTION_IDLE2 (OPTION_MD_BASE + 5)
76 #define OPTION_LOWPOWER (OPTION_MD_BASE + 6)
77 #define OPTION_ENHANCED (OPTION_MD_BASE + 7)
78 #define OPTION_REV (OPTION_MD_BASE + 8)
80 const char *md_shortopts
= "bm:prs";
81 struct option md_longopts
[] =
83 { "mcpu", required_argument
, NULL
, OPTION_CPU
},
84 { "mdsp", required_argument
, NULL
, OPTION_CPU
},
85 { "mbig", no_argument
, NULL
, OPTION_BIG
},
86 { "msmall", no_argument
, NULL
, OPTION_SMALL
},
87 { "mmemparm", no_argument
, NULL
, OPTION_MEMPARM
},
88 { "mregparm", no_argument
, NULL
, OPTION_REGPARM
},
89 { "midle2", no_argument
, NULL
, OPTION_IDLE2
},
90 { "mlowpower", no_argument
, NULL
, OPTION_LOWPOWER
},
91 { "menhanced", no_argument
, NULL
, OPTION_ENHANCED
},
92 { "mrev", required_argument
, NULL
, OPTION_REV
},
93 { NULL
, no_argument
, NULL
, 0 }
96 size_t md_longopts_size
= sizeof (md_longopts
);
101 M_UNKNOWN
, M_IMMED
, M_DIRECT
, M_REGISTER
, M_INDIRECT
,
102 M_IMMED_F
, M_PARALLEL
, M_HI
106 typedef struct tic4x_operand
108 tic4x_addr_mode_t mode
; /* Addressing mode. */
109 expressionS expr
; /* Expression. */
110 int disp
; /* Displacement for indirect addressing. */
111 int aregno
; /* Aux. register number. */
112 LITTLENUM_TYPE fwords
[MAX_LITTLENUMS
]; /* Float immed. number. */
116 typedef struct tic4x_insn
118 char name
[TIC4X_NAME_MAX
]; /* Mnemonic of instruction. */
119 unsigned int in_use
; /* True if in_use. */
120 unsigned int parallel
; /* True if parallel instruction. */
121 unsigned int nchars
; /* This is always 4 for the C30. */
122 unsigned long opcode
; /* Opcode number. */
123 expressionS exp
; /* Expression required for relocation. */
124 /* Relocation type required. */
125 bfd_reloc_code_real_type reloc
;
126 int pcrel
; /* True if relocation PC relative. */
127 char *pname
; /* Name of instruction in parallel. */
128 unsigned int num_operands
; /* Number of operands in total. */
129 tic4x_inst_t
*inst
; /* Pointer to first template. */
130 tic4x_operand_t operands
[TIC4X_OPERANDS_MAX
];
134 static tic4x_insn_t the_insn
; /* Info about our instruction. */
135 static tic4x_insn_t
*insn
= &the_insn
;
137 static void tic4x_asg (int);
138 static void tic4x_bss (int);
139 static void tic4x_globl (int);
140 static void tic4x_cons (int);
141 static void tic4x_stringer (int);
142 static void tic4x_eval (int);
143 static void tic4x_newblock (int);
144 static void tic4x_sect (int);
145 static void tic4x_set (int);
146 static void tic4x_usect (int);
147 static void tic4x_version (int);
153 {"align", s_align_bytes
, 32},
154 {"ascii", tic4x_stringer
, 1},
155 {"asciz", tic4x_stringer
, 0},
156 {"asg", tic4x_asg
, 0},
157 {"block", s_space
, 4},
158 {"byte", tic4x_cons
, 1},
159 {"bss", tic4x_bss
, 0},
160 {"copy", s_include
, 0},
161 {"def", tic4x_globl
, 0},
162 {"equ", tic4x_set
, 0},
163 {"eval", tic4x_eval
, 0},
164 {"global", tic4x_globl
, 0},
165 {"globl", tic4x_globl
, 0},
166 {"hword", tic4x_cons
, 2},
167 {"ieee", float_cons
, 'i'},
168 {"int", tic4x_cons
, 4}, /* .int allocates 4 bytes. */
169 {"ldouble", float_cons
, 'e'},
170 {"newblock", tic4x_newblock
, 0},
171 {"ref", s_ignore
, 0}, /* All undefined treated as external. */
172 {"set", tic4x_set
, 0},
173 {"sect", tic4x_sect
, 1}, /* Define named section. */
174 {"space", s_space
, 4},
175 {"string", tic4x_stringer
, 0},
176 {"usect", tic4x_usect
, 0}, /* Reserve space in uninit. named sect. */
177 {"version", tic4x_version
, 0},
178 {"word", tic4x_cons
, 4}, /* .word allocates 4 bytes. */
179 {"xdef", tic4x_globl
, 0},
183 int md_short_jump_size
= 4;
184 int md_long_jump_size
= 4;
186 /* This array holds the chars that always start a comment. If the
187 pre-processor is disabled, these aren't very useful. */
188 #ifdef TIC4X_ALT_SYNTAX
189 const char comment_chars
[] = ";!";
191 const char comment_chars
[] = ";";
194 /* This array holds the chars that only start a comment at the beginning of
195 a line. If the line seems to have the form '# 123 filename'
196 .line and .file directives will appear in the pre-processed output.
197 Note that input_file.c hand checks for '#' at the beginning of the
198 first line of the input file. This is because the compiler outputs
199 #NO_APP at the beginning of its output.
200 Also note that comments like this one will always work. */
201 const char line_comment_chars
[] = "#*";
203 /* We needed an unused char for line separation to work around the
204 lack of macros, using sed and such. */
205 const char line_separator_chars
[] = "&";
207 /* Chars that can be used to separate mant from exp in floating point nums. */
208 const char EXP_CHARS
[] = "eE";
210 /* Chars that mean this number is a floating point constant. */
213 const char FLT_CHARS
[] = "fFilsS";
215 /* Also be aware that MAXIMUM_NUMBER_OF_CHARS_FOR_FLOAT may have to be
216 changed in read.c. Ideally it shouldn't have to know about it at
217 all, but nothing is ideal around here. */
219 /* Flonums returned here. */
220 extern FLONUM_TYPE generic_floating_point_number
;
222 /* Precision in LittleNums. */
223 #define MAX_PRECISION (4) /* It's a bit overkill for us, but the code
225 #define S_PRECISION (1) /* Short float constants 16-bit. */
226 #define F_PRECISION (2) /* Float and double types 32-bit. */
227 #define E_PRECISION (4) /* Extended precision, 64-bit (real 40-bit). */
230 /* Turn generic_floating_point_number into a real short/float/double. */
232 tic4x_gen_to_words (FLONUM_TYPE flonum
, LITTLENUM_TYPE
*words
, int precision
)
234 int return_value
= 0;
235 LITTLENUM_TYPE
*p
; /* Littlenum pointer. */
236 int mantissa_bits
; /* Bits in mantissa field. */
237 int exponent_bits
; /* Bits in exponent field. */
239 unsigned int sone
; /* Scaled one. */
240 unsigned int sfract
; /* Scaled fraction. */
241 unsigned int smant
; /* Scaled mantissa. */
243 unsigned int mover
; /* Mantissa overflow bits */
244 unsigned int rbit
; /* Round bit. */
245 int shift
; /* Shift count. */
247 /* NOTE: Svein Seldal <Svein@dev.seldal.com>
248 The code in this function is altered slightly to support floats
249 with 31-bits mantissas, thus the documentation below may be a
250 little bit inaccurate.
252 By Michael P. Hayes <m.hayes@elec.canterbury.ac.nz>
253 Here is how a generic floating point number is stored using
254 flonums (an extension of bignums) where p is a pointer to an
257 For example 2e-3 is stored with exp = -4 and
264 with low = &bits[2], high = &bits[5], and leader = &bits[5].
266 This number can be written as
267 0x0083126e978d4fde.00000000 * 65536**-4 or
268 0x0.0083126e978d4fde * 65536**0 or
269 0x0.83126e978d4fde * 2**-8 = 2e-3
271 Note that low points to the 65536**0 littlenum (bits[2]) and
272 leader points to the most significant non-zero littlenum
275 TMS320C3X floating point numbers are a bit of a strange beast.
276 The 32-bit flavour has the 8 MSBs representing the exponent in
277 twos complement format (-128 to +127). There is then a sign bit
278 followed by 23 bits of mantissa. The mantissa is expressed in
279 twos complement format with the binary point after the most
280 significant non sign bit. The bit after the binary point is
281 suppressed since it is the complement of the sign bit. The
282 effective mantissa is thus 24 bits. Zero is represented by an
285 The 16-bit flavour has the 4 MSBs representing the exponent in
286 twos complement format (-8 to +7). There is then a sign bit
287 followed by 11 bits of mantissa. The mantissa is expressed in
288 twos complement format with the binary point after the most
289 significant non sign bit. The bit after the binary point is
290 suppressed since it is the complement of the sign bit. The
291 effective mantissa is thus 12 bits. Zero is represented by an
292 exponent of -8. For example,
294 number norm mant m x e s i fraction f
295 +0.500 => 1.00000000000 -1 -1 0 1 .00000000000 (1 + 0) * 2^(-1)
296 +0.999 => 1.11111111111 -1 -1 0 1 .11111111111 (1 + 0.99) * 2^(-1)
297 +1.000 => 1.00000000000 0 0 0 1 .00000000000 (1 + 0) * 2^(0)
298 +1.500 => 1.10000000000 0 0 0 1 .10000000000 (1 + 0.5) * 2^(0)
299 +1.999 => 1.11111111111 0 0 0 1 .11111111111 (1 + 0.9) * 2^(0)
300 +2.000 => 1.00000000000 1 1 0 1 .00000000000 (1 + 0) * 2^(1)
301 +4.000 => 1.00000000000 2 2 0 1 .00000000000 (1 + 0) * 2^(2)
302 -0.500 => 1.00000000000 -1 -1 1 0 .10000000000 (-2 + 0) * 2^(-2)
303 -1.000 => 1.00000000000 0 -1 1 0 .00000000000 (-2 + 0) * 2^(-1)
304 -1.500 => 1.10000000000 0 0 1 0 .10000000000 (-2 + 0.5) * 2^(0)
305 -1.999 => 1.11111111111 0 0 1 0 .00000000001 (-2 + 0.11) * 2^(0)
306 -2.000 => 1.00000000000 1 1 1 0 .00000000000 (-2 + 0) * 2^(0)
307 -4.000 => 1.00000000000 2 1 1 0 .00000000000 (-2 + 0) * 2^(1)
309 where e is the exponent, s is the sign bit, i is the implied bit,
310 and f is the fraction stored in the mantissa field.
312 num = (1 + f) * 2^x = m * 2^e if s = 0
313 num = (-2 + f) * 2^x = -m * 2^e if s = 1
314 where 0 <= f < 1.0 and 1.0 <= m < 2.0
316 The fraction (f) and exponent (e) fields for the TMS320C3X format
317 can be derived from the normalised mantissa (m) and exponent (x) using:
319 f = m - 1, e = x if s = 0
320 f = 2 - m, e = x if s = 1 and m != 1.0
321 f = 0, e = x - 1 if s = 1 and m = 1.0
322 f = 0, e = -8 if m = 0
325 OK, the other issue we have to consider is rounding since the
326 mantissa has a much higher potential precision than what we can
327 represent. To do this we add half the smallest storable fraction.
328 We then have to renormalise the number to allow for overflow.
330 To convert a generic flonum into a TMS320C3X floating point
331 number, here's what we try to do....
333 The first thing is to generate a normalised mantissa (m) where
334 1.0 <= m < 2 and to convert the exponent from base 16 to base 2.
335 We desire the binary point to be placed after the most significant
336 non zero bit. This process is done in two steps: firstly, the
337 littlenum with the most significant non zero bit is located (this
338 is done for us since leader points to this littlenum) and the
339 binary point (which is currently after the LSB of the littlenum
340 pointed to by low) is moved to before the MSB of the littlenum
341 pointed to by leader. This requires the exponent to be adjusted
342 by leader - low + 1. In the earlier example, the new exponent is
343 thus -4 + (5 - 2 + 1) = 0 (base 65536). We now need to convert
344 the exponent to base 2 by multiplying the exponent by 16 (log2
345 65536). The exponent base 2 is thus also zero.
347 The second step is to hunt for the most significant non zero bit
348 in the leader littlenum. We do this by left shifting a copy of
349 the leader littlenum until bit 16 is set (0x10000) and counting
350 the number of shifts, S, required. The number of shifts then has to
351 be added to correct the exponent (base 2). For our example, this
352 will require 9 shifts and thus our normalised exponent (base 2) is
353 0 + 9 = 9. Note that the worst case scenario is when the leader
354 littlenum is 1, thus requiring 16 shifts.
356 We now have to left shift the other littlenums by the same amount,
357 propagating the shifted bits into the more significant littlenums.
358 To save a lot of unnecessary shifting we only have to consider
359 two or three littlenums, since the greatest number of mantissa
360 bits required is 24 + 1 rounding bit. While two littlenums
361 provide 32 bits of precision, the most significant littlenum
362 may only contain a single significant bit and thus an extra
363 littlenum is required.
365 Denoting the number of bits in the fraction field as F, we require
366 G = F + 2 bits (one extra bit is for rounding, the other gets
367 suppressed). Say we required S shifts to find the most
368 significant bit in the leader littlenum, the number of left shifts
369 required to move this bit into bit position G - 1 is L = G + S - 17.
370 Note that this shift count may be negative for the short floating
371 point flavour (where F = 11 and thus G = 13 and potentially S < 3).
372 If L > 0 we have to shunt the next littlenum into position. Bit
373 15 (the MSB) of the next littlenum needs to get moved into position
374 L - 1 (If L > 15 we need all the bits of this littlenum and
375 some more from the next one.). We subtract 16 from L and use this
376 as the left shift count; the resultant value we or with the
377 previous result. If L > 0, we repeat this operation. */
379 if (precision
!= S_PRECISION
)
381 if (precision
== E_PRECISION
)
382 words
[2] = words
[3] = 0x0000;
384 /* 0.0e0 or NaN seen. */
385 if (flonum
.low
> flonum
.leader
/* = 0.0e0 */
386 || flonum
.sign
== 0 /* = NaN */
387 || flonum
.sign
== 'Q' || flonum
.sign
== 'q' /* = QNaN */
388 || flonum
.sign
== 'S' || flonum
.sign
== 's') /* = SNaN */
390 if (flonum
.sign
!= '+' && flonum
.sign
!= '-')
391 as_bad (_("Nan, using zero."));
396 if (flonum
.sign
== 'P')
398 /* +INF: Replace with maximum float. */
399 if (precision
== S_PRECISION
)
406 if (precision
== E_PRECISION
)
413 else if (flonum
.sign
== 'N')
415 /* -INF: Replace with maximum float. */
416 if (precision
== S_PRECISION
)
420 if (precision
== E_PRECISION
)
425 exponent
= (flonum
.exponent
+ flonum
.leader
- flonum
.low
+ 1) * 16;
427 if (!(tmp
= *flonum
.leader
))
428 abort (); /* Hmmm. */
429 shift
= 0; /* Find position of first sig. bit. */
432 exponent
-= (16 - shift
); /* Adjust exponent. */
434 if (precision
== S_PRECISION
) /* Allow 1 rounding bit. */
439 else if(precision
== F_PRECISION
)
444 else /* E_PRECISION */
450 shift
= mantissa_bits
- shift
;
455 /* Store the mantissa data into smant and the roundbit into rbit */
456 for (p
= flonum
.leader
; p
>= flonum
.low
&& shift
> -16; p
--)
458 tmp
= shift
>= 0 ? (unsigned) *p
<< shift
: (unsigned) *p
>> -shift
;
459 rbit
= shift
< 0 ? (((unsigned) *p
>> (-shift
-1)) & 0x1) : 0;
464 /* OK, we've got our scaled mantissa so let's round it up */
467 /* If the mantissa is going to overflow when added, lets store
468 the extra bit in mover. */
469 if (smant
== (1u << mantissa_bits
<< 1) - 1)
474 /* Get the scaled one value */
475 sone
= 1u << mantissa_bits
;
477 /* The number may be unnormalised so renormalise it... */
481 smant
|= sone
; /* Insert the bit from mover into smant */
485 /* The binary point is now between bit positions 11 and 10 or 23 and 22,
486 i.e., between mantissa_bits - 1 and mantissa_bits - 2 and the
487 bit at mantissa_bits - 1 should be set. */
489 abort (); /* Ooops. */
491 if (flonum
.sign
== '+')
492 sfract
= smant
- sone
; /* smant - 1.0. */
495 /* This seems to work. */
503 sfract
= -smant
& (sone
-1); /* 2.0 - smant. */
505 sfract
|= sone
; /* Insert sign bit. */
508 if (abs (exponent
) >= (1 << (exponent_bits
- 1)))
509 as_bad (_("Cannot represent exponent in %d bits"), exponent_bits
);
511 /* Force exponent to fit in desired field width. */
512 exponent
&= (1 << (exponent_bits
)) - 1;
514 if (precision
== E_PRECISION
)
516 /* Map the float part first (100% equal format as F_PRECISION) */
517 words
[0] = exponent
<< (mantissa_bits
+1-24);
518 words
[0] |= sfract
>> 24;
519 words
[1] = sfract
>> 8;
521 /* Map the mantissa in the next */
522 words
[2] = sfract
>> 16;
523 words
[3] = sfract
& 0xffff;
527 /* Insert the exponent data into the word */
528 sfract
|= (unsigned) exponent
<< (mantissa_bits
+ 1);
530 if (precision
== S_PRECISION
)
534 words
[0] = sfract
>> 16;
535 words
[1] = sfract
& 0xffff;
542 /* Returns pointer past text consumed. */
544 tic4x_atof (char *str
, char what_kind
, LITTLENUM_TYPE
*words
)
546 /* Extra bits for zeroed low-order bits. The 1st MAX_PRECISION are
547 zeroed, the last contain flonum bits. */
548 static LITTLENUM_TYPE bits
[MAX_PRECISION
+ MAX_PRECISION
+ GUARD
];
550 /* Number of 16-bit words in the format. */
552 FLONUM_TYPE save_gen_flonum
;
554 /* We have to save the generic_floating_point_number because it
555 contains storage allocation about the array of LITTLENUMs where
556 the value is actually stored. We will allocate our own array of
557 littlenums below, but have to restore the global one on exit. */
558 save_gen_flonum
= generic_floating_point_number
;
561 generic_floating_point_number
.low
= bits
+ MAX_PRECISION
;
562 generic_floating_point_number
.high
= NULL
;
563 generic_floating_point_number
.leader
= NULL
;
564 generic_floating_point_number
.exponent
= 0;
565 generic_floating_point_number
.sign
= '\0';
567 /* Use more LittleNums than seems necessary: the highest flonum may
568 have 15 leading 0 bits, so could be useless. */
570 memset (bits
, '\0', sizeof (LITTLENUM_TYPE
) * MAX_PRECISION
);
576 precision
= S_PRECISION
;
583 precision
= F_PRECISION
;
588 precision
= E_PRECISION
;
592 as_bad (_("Invalid floating point number"));
596 generic_floating_point_number
.high
597 = generic_floating_point_number
.low
+ precision
- 1 + GUARD
;
599 if (atof_generic (&return_value
, ".", EXP_CHARS
,
600 &generic_floating_point_number
))
602 as_bad (_("Invalid floating point number"));
606 tic4x_gen_to_words (generic_floating_point_number
,
609 /* Restore the generic_floating_point_number's storage alloc (and
611 generic_floating_point_number
= save_gen_flonum
;
617 tic4x_insert_reg (const char *regname
, int regnum
)
622 symbol_table_insert (symbol_new (regname
, reg_section
,
623 &zero_address_frag
, regnum
));
624 for (i
= 0; regname
[i
]; i
++)
625 buf
[i
] = ISLOWER (regname
[i
]) ? TOUPPER (regname
[i
]) : regname
[i
];
628 symbol_table_insert (symbol_new (buf
, reg_section
,
629 &zero_address_frag
, regnum
));
633 tic4x_insert_sym (const char *symname
, int value
)
637 symbolP
= symbol_new (symname
, absolute_section
,
638 &zero_address_frag
, value
);
639 SF_SET_LOCAL (symbolP
);
640 symbol_table_insert (symbolP
);
644 tic4x_expression (char *str
, expressionS
*exp
)
649 t
= input_line_pointer
; /* Save line pointer. */
650 input_line_pointer
= str
;
652 resolve_register (exp
);
653 s
= input_line_pointer
;
654 input_line_pointer
= t
; /* Restore line pointer. */
655 return s
; /* Return pointer to where parsing stopped. */
659 tic4x_expression_abs (char *str
, offsetT
*value
)
664 t
= input_line_pointer
; /* Save line pointer. */
665 input_line_pointer
= str
;
666 *value
= get_absolute_expression ();
667 s
= input_line_pointer
;
668 input_line_pointer
= t
; /* Restore line pointer. */
673 tic4x_emit_char (char c
, int b
)
677 exp
.X_op
= O_constant
;
678 exp
.X_add_number
= c
;
683 tic4x_seg_alloc (char *name ATTRIBUTE_UNUSED
,
684 segT seg ATTRIBUTE_UNUSED
,
688 /* Note that the size is in words
689 so we multiply it by 4 to get the number of bytes to allocate. */
691 /* If we have symbol: .usect ".fred", size etc.,
692 the symbol needs to point to the first location reserved
699 p
= frag_var (rs_fill
, 1, 1, (relax_substateT
) 0,
701 size
* OCTETS_PER_BYTE
, (char *) 0);
706 /* .asg ["]character-string["], symbol */
708 tic4x_asg (int x ATTRIBUTE_UNUSED
)
716 str
= input_line_pointer
;
718 /* Skip string expression. */
719 while (*input_line_pointer
!= ',' && *input_line_pointer
)
720 input_line_pointer
++;
721 if (*input_line_pointer
!= ',')
723 as_bad (_("Comma expected\n"));
726 len
= input_line_pointer
- str
;
727 str
= notes_memdup (str
, len
, len
+ 1);
728 input_line_pointer
++;
729 c
= get_symbol_name (&name
); /* Get terminator. */
730 name
= notes_strdup (name
);
731 str_hash_insert (tic4x_asg_hash
, name
, str
, 1);
732 (void) restore_line_pointer (c
);
733 demand_empty_rest_of_line ();
736 /* .bss symbol, size */
738 tic4x_bss (int x ATTRIBUTE_UNUSED
)
745 subsegT current_subseg
;
748 current_seg
= now_seg
; /* Save current seg. */
749 current_subseg
= now_subseg
; /* Save current subseg. */
752 c
= get_symbol_name (&name
); /* Get terminator. */
754 c
= * ++ input_line_pointer
;
757 as_bad (_(".bss size argument missing\n"));
762 tic4x_expression_abs (++input_line_pointer
, &size
);
765 as_bad (_(".bss size %ld < 0!"), (long) size
);
768 subseg_set (bss_section
, 0);
769 symbolP
= symbol_find_or_make (name
);
771 if (S_GET_SEGMENT (symbolP
) == bss_section
)
772 symbol_get_frag (symbolP
)->fr_symbol
= 0;
774 symbol_set_frag (symbolP
, frag_now
);
776 p
= frag_var (rs_org
, 1, 1, (relax_substateT
) 0, symbolP
,
777 size
* OCTETS_PER_BYTE
, (char *) 0);
778 *p
= 0; /* Fill char. */
780 S_SET_SEGMENT (symbolP
, bss_section
);
782 /* The symbol may already have been created with a preceding
783 ".globl" directive -- be careful not to step on storage class
784 in that case. Otherwise, set it to static. */
785 if (S_GET_STORAGE_CLASS (symbolP
) != C_EXT
)
786 S_SET_STORAGE_CLASS (symbolP
, C_STAT
);
788 subseg_set (current_seg
, current_subseg
); /* Restore current seg. */
789 demand_empty_rest_of_line ();
793 tic4x_globl (int ignore ATTRIBUTE_UNUSED
)
801 c
= get_symbol_name (&name
);
802 symbolP
= symbol_find_or_make (name
);
803 *input_line_pointer
= c
;
804 SKIP_WHITESPACE_AFTER_NAME ();
805 S_SET_STORAGE_CLASS (symbolP
, C_EXT
);
806 S_SET_EXTERNAL (symbolP
);
809 input_line_pointer
++;
811 if (*input_line_pointer
== '\n')
817 demand_empty_rest_of_line ();
820 /* Handle .byte, .word. .int, .long */
822 tic4x_cons (int bytes
)
828 if (*input_line_pointer
== '"')
830 input_line_pointer
++;
831 while (is_a_char (c
= next_char_of_string ()))
832 tic4x_emit_char (c
, 4);
833 know (input_line_pointer
[-1] == '\"');
839 input_line_pointer
= tic4x_expression (input_line_pointer
, &exp
);
840 if (exp
.X_op
== O_constant
)
845 exp
.X_add_number
&= 255;
848 exp
.X_add_number
&= 65535;
852 /* Perhaps we should disallow .byte and .hword with
853 a non constant expression that will require relocation. */
857 while (*input_line_pointer
++ == ',');
859 input_line_pointer
--; /* Put terminator back into stream. */
860 demand_empty_rest_of_line ();
863 /* Handle .ascii, .asciz, .string */
865 tic4x_stringer (int append_zero
)
874 if (*input_line_pointer
== '"')
876 input_line_pointer
++;
877 while (is_a_char (c
= next_char_of_string ()))
879 tic4x_emit_char (c
, 1);
885 tic4x_emit_char (c
, 1);
889 know (input_line_pointer
[-1] == '\"');
895 input_line_pointer
= tic4x_expression (input_line_pointer
, &exp
);
896 if (exp
.X_op
!= O_constant
)
898 as_bad (_("Non-constant symbols not allowed\n"));
901 exp
.X_add_number
&= 255; /* Limit number to 8-bit */
906 while (*input_line_pointer
++ == ',');
908 /* Fill out the rest of the expression with 0's to fill up a full word */
910 tic4x_emit_char (0, 4-(bytes
&0x3));
912 input_line_pointer
--; /* Put terminator back into stream. */
913 demand_empty_rest_of_line ();
916 /* .eval expression, symbol */
918 tic4x_eval (int x ATTRIBUTE_UNUSED
)
926 tic4x_expression_abs (input_line_pointer
, &value
);
927 if (*input_line_pointer
++ != ',')
929 as_bad (_("Symbol missing\n"));
932 c
= get_symbol_name (&name
); /* Get terminator. */
933 tic4x_insert_sym (name
, value
);
934 (void) restore_line_pointer (c
);
935 demand_empty_rest_of_line ();
938 /* Reset local labels. */
940 tic4x_newblock (int x ATTRIBUTE_UNUSED
)
942 dollar_label_clear ();
945 /* .sect "section-name" [, value] */
946 /* .sect ["]section-name[:subsection-name]["] [, value] */
948 tic4x_sect (int x ATTRIBUTE_UNUSED
)
957 if (*input_line_pointer
== '"')
958 input_line_pointer
++;
959 c
= get_symbol_name (§ion_name
); /* Get terminator. */
961 c
= * ++ input_line_pointer
;
962 input_line_pointer
++; /* Skip null symbol terminator. */
963 name
= xstrdup (section_name
);
965 /* TI C from version 5.0 allows a section name to contain a
966 subsection name as well. The subsection name is separated by a
967 ':' from the section name. Currently we scan the subsection
969 Volker Kuhlmann <v.kuhlmann@elec.canterbury.ac.nz>. */
973 c
= get_symbol_name (&subname
); /* Get terminator. */
975 c
= * ++ input_line_pointer
;
976 input_line_pointer
++; /* Skip null symbol terminator. */
977 as_warn (_(".sect: subsection name ignored"));
980 /* We might still have a '"' to discard, but the character after a
981 symbol name will be overwritten with a \0 by get_symbol_name()
986 tic4x_expression_abs (input_line_pointer
, &num
);
987 else if (*input_line_pointer
== ',')
990 tic4x_expression_abs (++input_line_pointer
, &num
);
995 seg
= subseg_new (name
, num
);
996 if (line_label
!= NULL
)
998 S_SET_SEGMENT (line_label
, seg
);
999 symbol_set_frag (line_label
, frag_now
);
1002 if (bfd_section_flags (seg
) == SEC_NO_FLAGS
)
1004 if (!bfd_set_section_flags (seg
, SEC_DATA
))
1005 as_warn (_("Error setting flags for \"%s\": %s"), name
,
1006 bfd_errmsg (bfd_get_error ()));
1009 /* If the last character overwritten by get_symbol_name() was an
1010 end-of-line, we must restore it or the end of the line will not be
1011 recognised and scanning extends into the next line, stopping with
1012 an error (blame Volker Kuhlmann <v.kuhlmann@elec.canterbury.ac.nz>
1013 if this is not true). */
1014 if (is_end_of_line
[(unsigned char) c
])
1015 *(--input_line_pointer
) = c
;
1017 demand_empty_rest_of_line ();
1020 /* symbol[:] .set value or .set symbol, value */
1022 tic4x_set (int x ATTRIBUTE_UNUSED
)
1027 if ((symbolP
= line_label
) == NULL
)
1032 c
= get_symbol_name (&name
); /* Get terminator. */
1034 c
= * ++ input_line_pointer
;
1037 as_bad (_(".set syntax invalid\n"));
1038 ignore_rest_of_line ();
1041 ++input_line_pointer
;
1042 symbolP
= symbol_find_or_make (name
);
1045 symbol_table_insert (symbolP
);
1047 pseudo_set (symbolP
);
1048 demand_empty_rest_of_line ();
1051 /* [symbol] .usect ["]section-name["], size-in-words [, alignment-flag] */
1053 tic4x_usect (int x ATTRIBUTE_UNUSED
)
1059 offsetT size
, alignment_flag
;
1061 subsegT current_subseg
;
1063 current_seg
= now_seg
; /* save current seg. */
1064 current_subseg
= now_subseg
; /* save current subseg. */
1067 if (*input_line_pointer
== '"')
1068 input_line_pointer
++;
1069 c
= get_symbol_name (§ion_name
); /* Get terminator. */
1071 c
= * ++ input_line_pointer
;
1072 input_line_pointer
++; /* Skip null symbol terminator. */
1073 name
= xstrdup (section_name
);
1076 input_line_pointer
=
1077 tic4x_expression_abs (input_line_pointer
, &size
);
1078 else if (*input_line_pointer
== ',')
1080 input_line_pointer
=
1081 tic4x_expression_abs (++input_line_pointer
, &size
);
1086 /* Read a possibly present third argument (alignment flag) [VK]. */
1087 if (*input_line_pointer
== ',')
1089 input_line_pointer
=
1090 tic4x_expression_abs (++input_line_pointer
, &alignment_flag
);
1095 as_warn (_(".usect: non-zero alignment flag ignored"));
1097 seg
= subseg_new (name
, 0);
1098 if (line_label
!= NULL
)
1100 S_SET_SEGMENT (line_label
, seg
);
1101 symbol_set_frag (line_label
, frag_now
);
1102 S_SET_VALUE (line_label
, frag_now_fix ());
1104 seg_info (seg
)->bss
= 1; /* Uninitialised data. */
1105 if (!bfd_set_section_flags (seg
, SEC_ALLOC
))
1106 as_warn (_("Error setting flags for \"%s\": %s"), name
,
1107 bfd_errmsg (bfd_get_error ()));
1108 tic4x_seg_alloc (name
, seg
, size
, line_label
);
1110 if (S_GET_STORAGE_CLASS (line_label
) != C_EXT
)
1111 S_SET_STORAGE_CLASS (line_label
, C_STAT
);
1113 subseg_set (current_seg
, current_subseg
); /* Restore current seg. */
1114 demand_empty_rest_of_line ();
1117 /* .version cpu-version. */
1119 tic4x_version (int x ATTRIBUTE_UNUSED
)
1123 input_line_pointer
=
1124 tic4x_expression_abs (input_line_pointer
, &temp
);
1125 if (!IS_CPU_TIC3X (temp
) && !IS_CPU_TIC4X (temp
))
1126 as_bad (_("This assembler does not support processor generation %ld"),
1129 if (tic4x_cpu
&& temp
!= (offsetT
) tic4x_cpu
)
1130 as_warn (_("Changing processor generation on fly not supported..."));
1132 demand_empty_rest_of_line ();
1136 tic4x_init_regtable (void)
1140 for (i
= 0; i
< tic3x_num_registers
; i
++)
1141 tic4x_insert_reg (tic3x_registers
[i
].name
,
1142 tic3x_registers
[i
].regno
);
1144 if (IS_CPU_TIC4X (tic4x_cpu
))
1146 /* Add additional Tic4x registers, overriding some C3x ones. */
1147 for (i
= 0; i
< tic4x_num_registers
; i
++)
1148 tic4x_insert_reg (tic4x_registers
[i
].name
,
1149 tic4x_registers
[i
].regno
);
1154 tic4x_init_symbols (void)
1156 /* The TI tools accept case insensitive versions of these symbols,
1161 .TMS320xx 30,31,32,40,or 44 set according to -v flag
1162 .C3X or .C3x 1 or 0 1 if -v30,-v31,or -v32
1163 .C30 1 or 0 1 if -v30
1164 .C31 1 or 0 1 if -v31
1165 .C32 1 or 0 1 if -v32
1166 .C4X or .C4x 1 or 0 1 if -v40, or -v44
1167 .C40 1 or 0 1 if -v40
1168 .C44 1 or 0 1 if -v44
1170 .REGPARM 1 or 0 1 if -mr option used
1171 .BIGMODEL 1 or 0 1 if -mb option used
1173 These symbols are currently supported but will be removed in a
1175 .TMS320C30 1 or 0 1 if -v30,-v31,or -v32
1176 .TMS320C31 1 or 0 1 if -v31
1177 .TMS320C32 1 or 0 1 if -v32
1178 .TMS320C40 1 or 0 1 if -v40, or -v44
1179 .TMS320C44 1 or 0 1 if -v44
1181 Source: TI: TMS320C3x/C4x Assembly Language Tools User's Guide,
1182 1997, SPRU035C, p. 3-17/3-18. */
1183 tic4x_insert_sym (".REGPARM", tic4x_reg_args
);
1184 tic4x_insert_sym (".MEMPARM", !tic4x_reg_args
);
1185 tic4x_insert_sym (".BIGMODEL", tic4x_big_model
);
1186 tic4x_insert_sym (".C30INTERRUPT", 0);
1187 tic4x_insert_sym (".TMS320xx", tic4x_cpu
== 0 ? 40 : tic4x_cpu
);
1188 tic4x_insert_sym (".C3X", tic4x_cpu
== 30 || tic4x_cpu
== 31 || tic4x_cpu
== 32 || tic4x_cpu
== 33);
1189 tic4x_insert_sym (".C3x", tic4x_cpu
== 30 || tic4x_cpu
== 31 || tic4x_cpu
== 32 || tic4x_cpu
== 33);
1190 tic4x_insert_sym (".C4X", tic4x_cpu
== 0 || tic4x_cpu
== 40 || tic4x_cpu
== 44);
1191 tic4x_insert_sym (".C4x", tic4x_cpu
== 0 || tic4x_cpu
== 40 || tic4x_cpu
== 44);
1192 /* Do we need to have the following symbols also in lower case? */
1193 tic4x_insert_sym (".TMS320C30", tic4x_cpu
== 30 || tic4x_cpu
== 31 || tic4x_cpu
== 32 || tic4x_cpu
== 33);
1194 tic4x_insert_sym (".tms320C30", tic4x_cpu
== 30 || tic4x_cpu
== 31 || tic4x_cpu
== 32 || tic4x_cpu
== 33);
1195 tic4x_insert_sym (".TMS320C31", tic4x_cpu
== 31);
1196 tic4x_insert_sym (".tms320C31", tic4x_cpu
== 31);
1197 tic4x_insert_sym (".TMS320C32", tic4x_cpu
== 32);
1198 tic4x_insert_sym (".tms320C32", tic4x_cpu
== 32);
1199 tic4x_insert_sym (".TMS320C33", tic4x_cpu
== 33);
1200 tic4x_insert_sym (".tms320C33", tic4x_cpu
== 33);
1201 tic4x_insert_sym (".TMS320C40", tic4x_cpu
== 40 || tic4x_cpu
== 44 || tic4x_cpu
== 0);
1202 tic4x_insert_sym (".tms320C40", tic4x_cpu
== 40 || tic4x_cpu
== 44 || tic4x_cpu
== 0);
1203 tic4x_insert_sym (".TMS320C44", tic4x_cpu
== 44);
1204 tic4x_insert_sym (".tms320C44", tic4x_cpu
== 44);
1205 tic4x_insert_sym (".TMX320C40", 0); /* C40 first pass silicon ? */
1206 tic4x_insert_sym (".tmx320C40", 0);
1209 /* Insert a new instruction template into hash table. */
1211 tic4x_inst_insert (const tic4x_inst_t
*inst
)
1213 static char prev_name
[16];
1215 /* Only insert the first name if have several similar entries. */
1216 if (!strcmp (inst
->name
, prev_name
) || inst
->name
[0] == '\0')
1219 if (str_hash_insert (tic4x_op_hash
, inst
->name
, inst
, 0) != NULL
)
1220 as_fatal (_("duplicate %s"), inst
->name
);
1222 strcpy (prev_name
, inst
->name
);
1225 /* Make a new instruction template. */
1226 static tic4x_inst_t
*
1227 tic4x_inst_make (const char *name
, unsigned long opcode
, const char *args
)
1229 static tic4x_inst_t
*insts
= NULL
;
1230 static char *names
= NULL
;
1231 static int iindex
= 0;
1235 /* Allocate memory to store name strings. */
1236 names
= XNEWVEC (char, 8192);
1237 /* Allocate memory for additional insts. */
1238 insts
= XNEWVEC (tic4x_inst_t
, 1024);
1240 insts
[iindex
].name
= names
;
1241 insts
[iindex
].opcode
= opcode
;
1242 insts
[iindex
].opmask
= 0xffffffff;
1243 insts
[iindex
].args
= args
;
1250 return &insts
[iindex
- 1];
1253 /* Add instruction template, creating dynamic templates as required. */
1255 tic4x_inst_add (const tic4x_inst_t
*insts
)
1257 const char *s
= insts
->name
;
1264 /* We do not care about INSNs that is not a part of our
1266 if ((insts
->oplevel
& tic4x_oplevel
) == 0)
1275 /* Dynamically create all the conditional insts. */
1276 for (i
= 0; i
< tic4x_num_conds
; i
++)
1280 const char *c
= tic4x_conds
[i
].name
;
1290 /* If instruction found then have already processed it. */
1291 if (str_hash_find (tic4x_op_hash
, name
))
1296 inst
= tic4x_inst_make (name
, insts
[k
].opcode
+
1297 (tic4x_conds
[i
].cond
<<
1298 (*s
== 'B' ? 16 : 23)),
1300 if (k
== 0) /* Save strcmp() with following func. */
1301 tic4x_inst_insert (inst
);
1304 while (!strcmp (insts
->name
,
1310 tic4x_inst_insert (insts
);
1320 /* This function is called once, at assembler startup time. It should
1321 set up all the tables, etc., that the MD part of the assembler will
1328 /* Setup the proper opcode level according to the
1329 commandline parameters */
1330 tic4x_oplevel
= OP_C3X
;
1332 if ( IS_CPU_TIC4X(tic4x_cpu
) )
1333 tic4x_oplevel
|= OP_C4X
;
1335 if ( ( tic4x_cpu
== 31 && tic4x_revision
>= 6)
1336 || (tic4x_cpu
== 32 && tic4x_revision
>= 2)
1337 || (tic4x_cpu
== 33)
1339 tic4x_oplevel
|= OP_ENH
;
1341 if ( ( tic4x_cpu
== 30 && tic4x_revision
>= 7)
1342 || (tic4x_cpu
== 31 && tic4x_revision
>= 5)
1343 || (tic4x_cpu
== 32)
1345 tic4x_oplevel
|= OP_LPWR
;
1347 if ( ( tic4x_cpu
== 30 && tic4x_revision
>= 7)
1348 || (tic4x_cpu
== 31 && tic4x_revision
>= 5)
1349 || (tic4x_cpu
== 32)
1350 || (tic4x_cpu
== 33)
1351 || (tic4x_cpu
== 40 && tic4x_revision
>= 5)
1352 || (tic4x_cpu
== 44)
1354 tic4x_oplevel
|= OP_IDLE2
;
1356 /* Create hash table for mnemonics. */
1357 tic4x_op_hash
= str_htab_create ();
1359 /* Create hash table for asg pseudo. */
1360 tic4x_asg_hash
= str_htab_create ();
1362 /* Add mnemonics to hash table, expanding conditional mnemonics on fly. */
1363 for (i
= 0; i
< tic4x_num_insts
; i
++)
1364 tic4x_inst_add (tic4x_insts
+ i
);
1366 /* Create dummy inst to avoid errors accessing end of table. */
1367 tic4x_inst_make ("", 0, "");
1369 /* Add registers to symbol table. */
1370 tic4x_init_regtable ();
1372 /* Add predefined symbols to symbol table. */
1373 tic4x_init_symbols ();
1377 tic4x_md_finish (void)
1379 bfd_set_arch_mach (stdoutput
, bfd_arch_tic4x
,
1380 IS_CPU_TIC4X (tic4x_cpu
) ? bfd_mach_tic4x
: bfd_mach_tic3x
);
1384 tic4x_indirect_parse (tic4x_operand_t
*operand
,
1385 const tic4x_indirect_t
*indirect
)
1387 const char *n
= indirect
->name
;
1388 char *s
= input_line_pointer
;
1398 case 'a': /* Need to match aux register. */
1400 #ifdef TIC4X_ALT_SYNTAX
1404 while (ISALNUM (*s
))
1407 if (!(symbolP
= symbol_find (name
)))
1410 if (S_GET_SEGMENT (symbolP
) != reg_section
)
1413 operand
->aregno
= S_GET_VALUE (symbolP
);
1414 if (operand
->aregno
>= REG_AR0
&& operand
->aregno
<= REG_AR7
)
1417 as_bad (_("Auxiliary register AR0--AR7 required for indirect"));
1420 case 'd': /* Need to match constant for disp. */
1421 #ifdef TIC4X_ALT_SYNTAX
1422 if (*s
== '%') /* expr() will die if we don't skip this. */
1425 s
= tic4x_expression (s
, &operand
->expr
);
1426 if (operand
->expr
.X_op
!= O_constant
)
1428 operand
->disp
= operand
->expr
.X_add_number
;
1429 if (operand
->disp
< 0 || operand
->disp
> 255)
1431 as_bad (_("Bad displacement %d (require 0--255)\n"),
1437 case 'y': /* Need to match IR0. */
1438 case 'z': /* Need to match IR1. */
1439 #ifdef TIC4X_ALT_SYNTAX
1443 s
= tic4x_expression (s
, &operand
->expr
);
1444 if (operand
->expr
.X_op
!= O_register
)
1446 if (operand
->expr
.X_add_number
!= REG_IR0
1447 && operand
->expr
.X_add_number
!= REG_IR1
)
1449 as_bad (_("Index register IR0,IR1 required for displacement"));
1453 if (*n
== 'y' && operand
->expr
.X_add_number
== REG_IR0
)
1455 if (*n
== 'z' && operand
->expr
.X_add_number
== REG_IR1
)
1460 if (*s
!= '(') /* No displacement, assume to be 1. */
1471 if (TOLOWER (*s
) != *n
)
1476 if (*s
!= ' ' && *s
!= ',' && *s
!= '\0')
1478 input_line_pointer
= s
;
1483 tic4x_operand_parse (char *s
, tic4x_operand_t
*operand
)
1488 expressionS
*exp
= &operand
->expr
;
1489 char *save
= input_line_pointer
;
1492 struct hash_entry
*entry
= NULL
;
1494 input_line_pointer
= s
;
1497 c
= get_symbol_name (&str
); /* Get terminator. */
1498 new_pointer
= input_line_pointer
;
1499 if (strlen (str
) && (entry
= str_hash_find (tic4x_asg_hash
, str
)) != NULL
)
1501 (void) restore_line_pointer (c
);
1502 input_line_pointer
= (char *) entry
;
1506 (void) restore_line_pointer (c
);
1507 input_line_pointer
= str
;
1510 operand
->mode
= M_UNKNOWN
;
1511 switch (*input_line_pointer
)
1513 #ifdef TIC4X_ALT_SYNTAX
1515 input_line_pointer
= tic4x_expression (++input_line_pointer
, exp
);
1516 if (exp
->X_op
!= O_register
)
1517 as_bad (_("Expecting a register name"));
1518 operand
->mode
= M_REGISTER
;
1522 /* Denotes high 16 bits. */
1523 input_line_pointer
= tic4x_expression (++input_line_pointer
, exp
);
1524 if (exp
->X_op
== O_constant
)
1525 operand
->mode
= M_IMMED
;
1526 else if (exp
->X_op
== O_big
)
1528 if (exp
->X_add_number
)
1529 as_bad (_("Number too large")); /* bignum required */
1532 tic4x_gen_to_words (generic_floating_point_number
,
1533 operand
->fwords
, S_PRECISION
);
1534 operand
->mode
= M_IMMED_F
;
1537 /* Allow ori ^foo, ar0 to be equivalent to ldi .hi.foo, ar0 */
1538 /* WARNING : The TI C40 assembler cannot do this. */
1539 else if (exp
->X_op
== O_symbol
)
1540 operand
->mode
= M_HI
;
1542 as_bad (_("Expecting a constant value"));
1546 input_line_pointer
= tic4x_expression (++input_line_pointer
, exp
);
1547 if (exp
->X_op
== O_constant
)
1548 operand
->mode
= M_IMMED
;
1549 else if (exp
->X_op
== O_big
)
1551 if (exp
->X_add_number
> 0)
1552 as_bad (_("Number too large")); /* bignum required. */
1555 tic4x_gen_to_words (generic_floating_point_number
,
1556 operand
->fwords
, S_PRECISION
);
1557 operand
->mode
= M_IMMED_F
;
1560 /* Allow ori foo, ar0 to be equivalent to ldi .lo.foo, ar0 */
1561 /* WARNING : The TI C40 assembler cannot do this. */
1562 else if (exp
->X_op
== O_symbol
)
1563 operand
->mode
= M_IMMED
;
1565 as_bad (_("Expecting a constant value"));
1571 input_line_pointer
= tic4x_expression (++input_line_pointer
, exp
);
1572 if (exp
->X_op
!= O_constant
&& exp
->X_op
!= O_symbol
)
1573 as_bad (_("Bad direct addressing construct %s"), s
);
1574 if (exp
->X_op
== O_constant
)
1576 if (exp
->X_add_number
< 0)
1577 as_bad (_("Direct value of %ld is not suitable"),
1578 (long) exp
->X_add_number
);
1580 operand
->mode
= M_DIRECT
;
1585 for (i
= 0; i
< tic4x_num_indirects
; i
++)
1586 if ((ret
= tic4x_indirect_parse (operand
, &tic4x_indirects
[i
])))
1590 if (i
< tic4x_num_indirects
)
1592 operand
->mode
= M_INDIRECT
;
1593 /* Indirect addressing mode number. */
1594 operand
->expr
.X_add_number
= tic4x_indirects
[i
].modn
;
1595 /* Convert *+ARn(0) to *ARn etc. Maybe we should
1596 squeal about silly ones? */
1597 if (operand
->expr
.X_add_number
< 0x08 && !operand
->disp
)
1598 operand
->expr
.X_add_number
= 0x18;
1601 as_bad (_("Unknown indirect addressing mode"));
1605 operand
->mode
= M_IMMED
; /* Assume immediate. */
1606 str
= input_line_pointer
;
1607 input_line_pointer
= tic4x_expression (input_line_pointer
, exp
);
1608 if (exp
->X_op
== O_register
)
1610 know (exp
->X_add_symbol
== 0);
1611 know (exp
->X_op_symbol
== 0);
1612 operand
->mode
= M_REGISTER
;
1615 else if (exp
->X_op
== O_big
)
1617 if (exp
->X_add_number
> 0)
1618 as_bad (_("Number too large")); /* bignum required. */
1621 tic4x_gen_to_words (generic_floating_point_number
,
1622 operand
->fwords
, S_PRECISION
);
1623 operand
->mode
= M_IMMED_F
;
1627 #ifdef TIC4X_ALT_SYNTAX
1628 /* Allow ldi foo, ar0 to be equivalent to ldi @foo, ar0. */
1629 else if (exp
->X_op
== O_symbol
)
1631 operand
->mode
= M_DIRECT
;
1637 new_pointer
= input_line_pointer
;
1638 input_line_pointer
= save
;
1643 tic4x_operands_match (tic4x_inst_t
*inst
, tic4x_insn_t
*tinsn
, int check
)
1645 const char *args
= inst
->args
;
1646 unsigned long opcode
= inst
->opcode
;
1647 int num_operands
= tinsn
->num_operands
;
1648 tic4x_operand_t
*operand
= tinsn
->operands
;
1649 expressionS
*exp
= &operand
->expr
;
1653 /* Build the opcode, checking as we go to make sure that the
1656 If an operand matches, we modify insn or opcode appropriately,
1657 and do a "continue". If an operand fails to match, we "break". */
1659 tinsn
->nchars
= 4; /* Instructions always 4 bytes. */
1660 tinsn
->reloc
= NO_RELOC
;
1665 tinsn
->opcode
= opcode
;
1666 return num_operands
== 0;
1674 case '\0': /* End of args. */
1675 if (num_operands
== 1)
1677 tinsn
->opcode
= opcode
;
1680 break; /* Too many operands. */
1682 case '#': /* This is only used for ldp. */
1683 if (operand
->mode
!= M_DIRECT
&& operand
->mode
!= M_IMMED
)
1685 /* While this looks like a direct addressing mode, we actually
1686 use an immediate mode form of ldiu or ldpk instruction. */
1687 if (exp
->X_op
== O_constant
)
1689 if( ( IS_CPU_TIC4X (tic4x_cpu
) && exp
->X_add_number
<= 65535 )
1690 || ( IS_CPU_TIC3X (tic4x_cpu
) && exp
->X_add_number
<= 255 ) )
1692 INSERTS (opcode
, exp
->X_add_number
, 15, 0);
1698 as_bad (_("Immediate value of %ld is too large for ldf"),
1699 (long) exp
->X_add_number
);
1704 else if (exp
->X_op
== O_symbol
)
1706 tinsn
->reloc
= BFD_RELOC_HI16
;
1710 break; /* Not direct (dp) addressing. */
1712 case '@': /* direct. */
1713 if (operand
->mode
!= M_DIRECT
)
1715 if (exp
->X_op
== O_constant
)
1717 /* Store only the 16 LSBs of the number. */
1718 INSERTS (opcode
, exp
->X_add_number
, 15, 0);
1721 else if (exp
->X_op
== O_symbol
)
1723 tinsn
->reloc
= BFD_RELOC_LO16
;
1727 break; /* Not direct addressing. */
1730 if (operand
->mode
!= M_REGISTER
)
1732 reg
= exp
->X_add_number
;
1733 if (reg
>= REG_AR0
&& reg
<= REG_AR7
)
1734 INSERTU (opcode
, reg
- REG_AR0
, 24, 22);
1738 as_bad (_("Destination register must be ARn"));
1743 case 'B': /* Unsigned integer immediate. */
1744 /* Allow br label or br @label. */
1745 if (operand
->mode
!= M_IMMED
&& operand
->mode
!= M_DIRECT
)
1747 if (exp
->X_op
== O_constant
)
1749 if (exp
->X_add_number
< (1 << 24))
1751 INSERTU (opcode
, exp
->X_add_number
, 23, 0);
1757 as_bad (_("Immediate value of %ld is too large"),
1758 (long) exp
->X_add_number
);
1763 if (IS_CPU_TIC4X (tic4x_cpu
))
1765 tinsn
->reloc
= BFD_RELOC_24_PCREL
;
1770 tinsn
->reloc
= BFD_RELOC_24
;
1777 if (!IS_CPU_TIC4X (tic4x_cpu
))
1779 if (operand
->mode
!= M_INDIRECT
)
1781 /* Require either *+ARn(disp) or *ARn. */
1782 if (operand
->expr
.X_add_number
!= 0
1783 && operand
->expr
.X_add_number
!= 0x18)
1786 as_bad (_("Invalid indirect addressing mode"));
1790 INSERTU (opcode
, operand
->aregno
- REG_AR0
, 2, 0);
1791 INSERTU (opcode
, operand
->disp
, 7, 3);
1795 if (!(operand
->mode
== M_REGISTER
))
1797 INSERTU (opcode
, exp
->X_add_number
, 7, 0);
1801 if (!(operand
->mode
== M_REGISTER
))
1803 reg
= exp
->X_add_number
;
1804 if ( (reg
>= REG_R0
&& reg
<= REG_R7
)
1805 || (IS_CPU_TIC4X (tic4x_cpu
) && reg
>= REG_R8
&& reg
<= REG_R11
) )
1806 INSERTU (opcode
, reg
, 7, 0);
1810 as_bad (_("Register must be Rn"));
1816 if (operand
->mode
!= M_IMMED_F
1817 && !(operand
->mode
== M_IMMED
&& exp
->X_op
== O_constant
))
1820 if (operand
->mode
!= M_IMMED_F
)
1822 /* OK, we 've got something like cmpf 0, r0
1823 Why can't they stick in a bloody decimal point ?! */
1826 /* Create floating point number string. */
1827 sprintf (string
, "%d.0", (int) exp
->X_add_number
);
1828 tic4x_atof (string
, 's', operand
->fwords
);
1831 INSERTU (opcode
, operand
->fwords
[0], 15, 0);
1835 if (operand
->mode
!= M_REGISTER
)
1837 INSERTU (opcode
, exp
->X_add_number
, 15, 8);
1841 if (operand
->mode
!= M_REGISTER
)
1843 reg
= exp
->X_add_number
;
1844 if ( (reg
>= REG_R0
&& reg
<= REG_R7
)
1845 || (IS_CPU_TIC4X (tic4x_cpu
) && reg
>= REG_R8
&& reg
<= REG_R11
) )
1846 INSERTU (opcode
, reg
, 15, 8);
1850 as_bad (_("Register must be Rn"));
1856 if (operand
->mode
!= M_REGISTER
)
1858 reg
= exp
->X_add_number
;
1859 if (reg
>= REG_R0
&& reg
<= REG_R7
)
1860 INSERTU (opcode
, reg
- REG_R0
, 18, 16);
1864 as_bad (_("Register must be R0--R7"));
1870 if ( operand
->mode
== M_REGISTER
1871 && tic4x_oplevel
& OP_ENH
)
1873 reg
= exp
->X_add_number
;
1874 INSERTU (opcode
, reg
, 4, 0);
1875 INSERTU (opcode
, 7, 7, 5);
1881 if (operand
->mode
!= M_INDIRECT
)
1883 if (operand
->disp
!= 0 && operand
->disp
!= 1)
1885 if (IS_CPU_TIC4X (tic4x_cpu
))
1888 as_bad (_("Invalid indirect addressing mode displacement %d"),
1893 INSERTU (opcode
, operand
->aregno
- REG_AR0
, 2, 0);
1894 INSERTU (opcode
, operand
->expr
.X_add_number
, 7, 3);
1898 if ( operand
->mode
== M_REGISTER
1899 && tic4x_oplevel
& OP_ENH
)
1901 reg
= exp
->X_add_number
;
1902 INSERTU (opcode
, reg
, 12, 8);
1903 INSERTU (opcode
, 7, 15, 13);
1909 if (operand
->mode
!= M_INDIRECT
)
1911 if (operand
->disp
!= 0 && operand
->disp
!= 1)
1913 if (IS_CPU_TIC4X (tic4x_cpu
))
1916 as_bad (_("Invalid indirect addressing mode displacement %d"),
1921 INSERTU (opcode
, operand
->aregno
- REG_AR0
, 10, 8);
1922 INSERTU (opcode
, operand
->expr
.X_add_number
, 15, 11);
1926 if (operand
->mode
!= M_REGISTER
)
1928 reg
= exp
->X_add_number
;
1929 if (reg
>= REG_R0
&& reg
<= REG_R7
)
1930 INSERTU (opcode
, reg
- REG_R0
, 21, 19);
1934 as_bad (_("Register must be R0--R7"));
1940 if (operand
->mode
!= M_REGISTER
)
1942 reg
= exp
->X_add_number
;
1943 if (reg
>= REG_R0
&& reg
<= REG_R7
)
1944 INSERTU (opcode
, reg
- REG_R0
, 24, 22);
1948 as_bad (_("Register must be R0--R7"));
1954 if (operand
->mode
!= M_REGISTER
)
1956 reg
= exp
->X_add_number
;
1957 if (reg
== REG_R2
|| reg
== REG_R3
)
1958 INSERTU (opcode
, reg
- REG_R2
, 22, 22);
1962 as_bad (_("Destination register must be R2 or R3"));
1968 if (operand
->mode
!= M_REGISTER
)
1970 reg
= exp
->X_add_number
;
1971 if (reg
== REG_R0
|| reg
== REG_R1
)
1972 INSERTU (opcode
, reg
- REG_R0
, 23, 23);
1976 as_bad (_("Destination register must be R0 or R1"));
1982 if (!IS_CPU_TIC4X (tic4x_cpu
))
1984 if (operand
->mode
!= M_INDIRECT
)
1986 /* Require either *+ARn(disp) or *ARn. */
1987 if (operand
->expr
.X_add_number
!= 0
1988 && operand
->expr
.X_add_number
!= 0x18)
1991 as_bad (_("Invalid indirect addressing mode"));
1995 INSERTU (opcode
, operand
->aregno
- REG_AR0
, 10, 8);
1996 INSERTU (opcode
, operand
->disp
, 15, 11);
1999 case 'P': /* PC relative displacement. */
2000 /* Allow br label or br @label. */
2001 if (operand
->mode
!= M_IMMED
&& operand
->mode
!= M_DIRECT
)
2003 if (exp
->X_op
== O_constant
)
2005 if (exp
->X_add_number
>= -32768 && exp
->X_add_number
<= 32767)
2007 INSERTS (opcode
, exp
->X_add_number
, 15, 0);
2013 as_bad (_("Displacement value of %ld is too large"),
2014 (long) exp
->X_add_number
);
2019 tinsn
->reloc
= BFD_RELOC_16_PCREL
;
2025 if (operand
->mode
!= M_REGISTER
)
2027 reg
= exp
->X_add_number
;
2028 INSERTU (opcode
, reg
, 15, 0);
2032 if (operand
->mode
!= M_REGISTER
)
2034 reg
= exp
->X_add_number
;
2035 if ( (reg
>= REG_R0
&& reg
<= REG_R7
)
2036 || (IS_CPU_TIC4X (tic4x_cpu
) && reg
>= REG_R8
&& reg
<= REG_R11
) )
2037 INSERTU (opcode
, reg
, 15, 0);
2041 as_bad (_("Register must be Rn"));
2047 if (operand
->mode
!= M_REGISTER
)
2049 reg
= exp
->X_add_number
;
2050 INSERTU (opcode
, reg
, 20, 16);
2054 if (operand
->mode
!= M_REGISTER
)
2056 reg
= exp
->X_add_number
;
2057 if ( (reg
>= REG_R0
&& reg
<= REG_R7
)
2058 || (IS_CPU_TIC4X (tic4x_cpu
) && reg
>= REG_R8
&& reg
<= REG_R11
) )
2059 INSERTU (opcode
, reg
, 20, 16);
2063 as_bad (_("Register must be Rn"));
2068 case 'S': /* Short immediate int. */
2069 if (operand
->mode
!= M_IMMED
&& operand
->mode
!= M_HI
)
2071 if (exp
->X_op
== O_big
)
2074 as_bad (_("Floating point number not valid in expression"));
2078 if (exp
->X_op
== O_constant
)
2080 if (exp
->X_add_number
>= -32768 && exp
->X_add_number
<= 65535)
2082 INSERTS (opcode
, exp
->X_add_number
, 15, 0);
2088 as_bad (_("Signed immediate value %ld too large"),
2089 (long) exp
->X_add_number
);
2094 else if (exp
->X_op
== O_symbol
)
2096 if (operand
->mode
== M_HI
)
2098 tinsn
->reloc
= BFD_RELOC_HI16
;
2102 tinsn
->reloc
= BFD_RELOC_LO16
;
2107 /* Handle cases like ldi foo - $, ar0 where foo
2108 is a forward reference. Perhaps we should check
2109 for X_op == O_symbol and disallow things like
2111 tinsn
->reloc
= BFD_RELOC_16
;
2115 case 'T': /* 5-bit immediate value for tic4x stik. */
2116 if (!IS_CPU_TIC4X (tic4x_cpu
))
2118 if (operand
->mode
!= M_IMMED
)
2120 if (exp
->X_op
== O_constant
)
2122 if (exp
->X_add_number
< 16 && exp
->X_add_number
>= -16)
2124 INSERTS (opcode
, exp
->X_add_number
, 20, 16);
2130 as_bad (_("Immediate value of %ld is too large"),
2131 (long) exp
->X_add_number
);
2136 break; /* No relocations allowed. */
2138 case 'U': /* Unsigned integer immediate. */
2139 if (operand
->mode
!= M_IMMED
&& operand
->mode
!= M_HI
)
2141 if (exp
->X_op
== O_constant
)
2143 if (exp
->X_add_number
< (1 << 16) && exp
->X_add_number
>= 0)
2145 INSERTU (opcode
, exp
->X_add_number
, 15, 0);
2151 as_bad (_("Unsigned immediate value %ld too large"),
2152 (long) exp
->X_add_number
);
2157 else if (exp
->X_op
== O_symbol
)
2159 if (operand
->mode
== M_HI
)
2160 tinsn
->reloc
= BFD_RELOC_HI16
;
2162 tinsn
->reloc
= BFD_RELOC_LO16
;
2167 tinsn
->reloc
= BFD_RELOC_16
;
2171 case 'V': /* Trap numbers (immediate field). */
2172 if (operand
->mode
!= M_IMMED
)
2174 if (exp
->X_op
== O_constant
)
2176 if (exp
->X_add_number
< 512 && IS_CPU_TIC4X (tic4x_cpu
))
2178 INSERTU (opcode
, exp
->X_add_number
, 8, 0);
2181 else if (exp
->X_add_number
< 32 && IS_CPU_TIC3X (tic4x_cpu
))
2183 INSERTU (opcode
, exp
->X_add_number
| 0x20, 5, 0);
2189 as_bad (_("Immediate value of %ld is too large"),
2190 (long) exp
->X_add_number
);
2195 break; /* No relocations allowed. */
2197 case 'W': /* Short immediate int (0--7). */
2198 if (!IS_CPU_TIC4X (tic4x_cpu
))
2200 if (operand
->mode
!= M_IMMED
)
2202 if (exp
->X_op
== O_big
)
2205 as_bad (_("Floating point number not valid in expression"));
2209 if (exp
->X_op
== O_constant
)
2211 if (exp
->X_add_number
>= -256 && exp
->X_add_number
<= 127)
2213 INSERTS (opcode
, exp
->X_add_number
, 7, 0);
2219 as_bad (_("Immediate value %ld too large"),
2220 (long) exp
->X_add_number
);
2225 tinsn
->reloc
= BFD_RELOC_16
;
2229 case 'X': /* Expansion register for tic4x. */
2230 if (operand
->mode
!= M_REGISTER
)
2232 reg
= exp
->X_add_number
;
2233 if (reg
>= REG_IVTP
&& reg
<= REG_TVTP
)
2234 INSERTU (opcode
, reg
- REG_IVTP
, 4, 0);
2238 as_bad (_("Register must be ivtp or tvtp"));
2243 case 'Y': /* Address register for tic4x lda. */
2244 if (operand
->mode
!= M_REGISTER
)
2246 reg
= exp
->X_add_number
;
2247 if (reg
>= REG_AR0
&& reg
<= REG_SP
)
2248 INSERTU (opcode
, reg
, 20, 16);
2252 as_bad (_("Register must be address register"));
2257 case 'Z': /* Expansion register for tic4x. */
2258 if (operand
->mode
!= M_REGISTER
)
2260 reg
= exp
->X_add_number
;
2261 if (reg
>= REG_IVTP
&& reg
<= REG_TVTP
)
2262 INSERTU (opcode
, reg
- REG_IVTP
, 20, 16);
2266 as_bad (_("Register must be ivtp or tvtp"));
2272 if (operand
->mode
!= M_INDIRECT
)
2274 INSERTS (opcode
, operand
->disp
, 7, 0);
2275 INSERTU (opcode
, operand
->aregno
- REG_AR0
, 10, 8);
2276 INSERTU (opcode
, operand
->expr
.X_add_number
, 15, 11);
2279 case '|': /* treat as `,' if have ldi_ldi form. */
2280 if (tinsn
->parallel
)
2282 if (--num_operands
< 0)
2283 break; /* Too few operands. */
2285 if (operand
->mode
!= M_PARALLEL
)
2290 case ',': /* Another operand. */
2291 if (--num_operands
< 0)
2292 break; /* Too few operands. */
2294 exp
= &operand
->expr
;
2297 case ';': /* Another optional operand. */
2298 if (num_operands
== 1 || operand
[1].mode
== M_PARALLEL
)
2300 if (--num_operands
< 0)
2301 break; /* Too few operands. */
2303 exp
= &operand
->expr
;
2314 tic4x_insn_check (tic4x_insn_t
*tinsn
)
2317 if (!strcmp (tinsn
->name
, "lda"))
2319 if (tinsn
->num_operands
< 2 || tinsn
->num_operands
> 2)
2320 as_fatal ("Illegal internal LDA insn definition");
2322 if (tinsn
->operands
[0].mode
== M_REGISTER
2323 && tinsn
->operands
[1].mode
== M_REGISTER
2324 && tinsn
->operands
[0].expr
.X_add_number
== tinsn
->operands
[1].expr
.X_add_number
)
2325 as_bad (_("Source and destination register should not be equal"));
2327 else if (!strcmp (tinsn
->name
, "ldi_ldi")
2328 || !strcmp (tinsn
->name
, "ldi1_ldi2")
2329 || !strcmp (tinsn
->name
, "ldi2_ldi1")
2330 || !strcmp (tinsn
->name
, "ldf_ldf")
2331 || !strcmp (tinsn
->name
, "ldf1_ldf2")
2332 || !strcmp (tinsn
->name
, "ldf2_ldf1") )
2334 if (tinsn
->num_operands
< 4 || tinsn
->num_operands
> 5)
2335 as_fatal ("Illegal internal %s insn definition", tinsn
->name
);
2337 if (tinsn
->operands
[1].mode
== M_REGISTER
2338 && tinsn
->operands
[tinsn
->num_operands
-1].mode
== M_REGISTER
2339 && tinsn
->operands
[1].expr
.X_add_number
== tinsn
->operands
[tinsn
->num_operands
-1].expr
.X_add_number
)
2340 as_warn (_("Equal parallel destination registers, one result will be discarded"));
2345 tic4x_insn_output (tic4x_insn_t
*tinsn
)
2349 /* Grab another fragment for opcode. */
2350 dst
= frag_more (tinsn
->nchars
);
2352 /* Put out opcode word as a series of bytes in little endian order. */
2353 md_number_to_chars (dst
, tinsn
->opcode
, tinsn
->nchars
);
2355 /* Put out the symbol-dependent stuff. */
2356 if (tinsn
->reloc
!= NO_RELOC
)
2358 /* Where is the offset into the fragment for this instruction. */
2359 fix_new_exp (frag_now
,
2360 dst
- frag_now
->fr_literal
, /* where */
2361 tinsn
->nchars
, /* size */
2368 /* Parse the operands. */
2370 tic4x_operands_parse (char *s
, tic4x_operand_t
*operands
, int num_operands
)
2373 return num_operands
;
2376 s
= tic4x_operand_parse (s
, &operands
[num_operands
++]);
2377 while (num_operands
< TIC4X_OPERANDS_MAX
&& *s
++ == ',');
2379 if (num_operands
> TIC4X_OPERANDS_MAX
)
2381 as_bad (_("Too many operands scanned"));
2384 return num_operands
;
2387 /* Assemble a single instruction. Its label has already been handled
2388 by the generic front end. We just parse mnemonic and operands, and
2389 produce the bytes of data and relocation. */
2391 md_assemble (char *str
)
2398 tic4x_inst_t
*inst
; /* Instruction template. */
2399 tic4x_inst_t
*first_inst
;
2401 /* Scan for parallel operators */
2405 while (*s
&& *s
!= '|')
2408 if (*s
&& s
[1]=='|')
2412 as_bad (_("Parallel opcode cannot contain more than two instructions"));
2418 /* Lets take care of the first part of the parallel insn */
2423 /* .. and let the second run though here */
2427 if (str
&& insn
->parallel
)
2429 /* Find mnemonic (second part of parallel instruction). */
2431 /* Skip past instruction mnemonic. */
2432 while (*s
&& *s
!= ' ')
2434 if (*s
) /* Null terminate for str_hash_find. */
2435 *s
++ = '\0'; /* and skip past null. */
2436 len
= strlen (insn
->name
);
2437 snprintf (insn
->name
+ len
, TIC4X_NAME_MAX
- len
, "_%s", str
);
2439 insn
->operands
[insn
->num_operands
++].mode
= M_PARALLEL
;
2441 if ((i
= tic4x_operands_parse
2442 (s
, insn
->operands
, insn
->num_operands
)) < 0)
2448 insn
->num_operands
= i
;
2454 if ((insn
->inst
= (struct tic4x_inst
*)
2455 str_hash_find (tic4x_op_hash
, insn
->name
)) == NULL
)
2457 as_bad (_("Unknown opcode `%s'."), insn
->name
);
2467 ok
= tic4x_operands_match (inst
, insn
, 1);
2475 while (!ok
&& !strcmp (inst
->name
, inst
[1].name
) && inst
++);
2479 tic4x_insn_check (insn
);
2480 tic4x_insn_output (insn
);
2485 tic4x_operands_match (first_inst
, insn
, 0);
2486 as_bad (_("Invalid operands for %s"), insn
->name
);
2489 as_bad (_("Invalid instruction %s"), insn
->name
);
2494 /* Find mnemonic. */
2496 while (*s
&& *s
!= ' ') /* Skip past instruction mnemonic. */
2498 if (*s
) /* Null terminate for str_hash_find. */
2499 *s
++ = '\0'; /* and skip past null. */
2500 strncpy (insn
->name
, str
, TIC4X_NAME_MAX
- 1);
2501 insn
->name
[TIC4X_NAME_MAX
- 1] = '\0';
2503 if ((i
= tic4x_operands_parse (s
, insn
->operands
, 0)) < 0)
2505 insn
->inst
= NULL
; /* Flag that error occurred. */
2510 insn
->num_operands
= i
;
2519 tic4x_cleanup (void)
2525 /* Turn a string in input_line_pointer into a floating point constant
2526 of type type, and store the appropriate bytes in *litP. The number
2527 of chars emitted is stored in *sizeP. An error message is
2528 returned, or NULL on OK. */
2531 md_atof (int type
, char *litP
, int *sizeP
)
2535 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
2536 LITTLENUM_TYPE
*wordP
;
2541 case 's': /* .single */
2547 case 'd': /* .double */
2549 case 'f': /* .float */
2552 prec
= 2; /* 1 32-bit word */
2555 case 'i': /* .ieee */
2559 type
= 'f'; /* Rewrite type to be usable by atof_ieee(). */
2562 case 'e': /* .ldouble */
2564 prec
= 4; /* 2 32-bit words */
2570 return _("Unrecognized or unsupported floating point constant");
2574 t
= atof_ieee (input_line_pointer
, type
, words
);
2576 t
= tic4x_atof (input_line_pointer
, type
, words
);
2578 input_line_pointer
= t
;
2579 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
2581 /* This loops outputs the LITTLENUMs in REVERSE order; in accord with
2582 little endian byte order. */
2583 /* SES: However it is required to put the words (32-bits) out in the
2584 correct order, hence we write 2 and 2 littlenums in little endian
2585 order, while we keep the original order on successive words. */
2586 for (wordP
= words
; wordP
<(words
+prec
) ; wordP
+=2)
2588 if (wordP
< (words
+ prec
- 1)) /* Dump wordP[1] (if we have one). */
2590 md_number_to_chars (litP
, (valueT
) (wordP
[1]),
2591 sizeof (LITTLENUM_TYPE
));
2592 litP
+= sizeof (LITTLENUM_TYPE
);
2596 md_number_to_chars (litP
, (valueT
) (wordP
[0]),
2597 sizeof (LITTLENUM_TYPE
));
2598 litP
+= sizeof (LITTLENUM_TYPE
);
2604 md_apply_fix (fixS
*fixP
, valueT
*value
, segT seg ATTRIBUTE_UNUSED
)
2606 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
2607 valueT val
= *value
;
2609 switch (fixP
->fx_r_type
)
2611 case BFD_RELOC_HI16
:
2615 case BFD_RELOC_LO16
:
2622 switch (fixP
->fx_r_type
)
2628 case BFD_RELOC_24_PCREL
:
2632 case BFD_RELOC_16_PCREL
:
2633 case BFD_RELOC_LO16
:
2634 case BFD_RELOC_HI16
:
2641 as_bad (_("Bad relocation type: 0x%02x"), fixP
->fx_r_type
);
2645 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0) fixP
->fx_done
= 1;
2648 /* Should never be called for tic4x. */
2650 md_convert_frag (bfd
*headers ATTRIBUTE_UNUSED
,
2651 segT sec ATTRIBUTE_UNUSED
,
2652 fragS
*fragP ATTRIBUTE_UNUSED
)
2654 as_fatal ("md_convert_frag");
2657 /* Should never be called for tic4x. */
2659 md_create_short_jump (char *ptr ATTRIBUTE_UNUSED
,
2660 addressT from_addr ATTRIBUTE_UNUSED
,
2661 addressT to_addr ATTRIBUTE_UNUSED
,
2662 fragS
*frag ATTRIBUTE_UNUSED
,
2663 symbolS
*to_symbol ATTRIBUTE_UNUSED
)
2665 as_fatal ("md_create_short_jmp\n");
2668 /* Should never be called for tic4x. */
2670 md_create_long_jump (char *ptr ATTRIBUTE_UNUSED
,
2671 addressT from_addr ATTRIBUTE_UNUSED
,
2672 addressT to_addr ATTRIBUTE_UNUSED
,
2673 fragS
*frag ATTRIBUTE_UNUSED
,
2674 symbolS
*to_symbol ATTRIBUTE_UNUSED
)
2676 as_fatal ("md_create_long_jump\n");
2679 /* Should never be called for tic4x. */
2681 md_estimate_size_before_relax (fragS
*fragP ATTRIBUTE_UNUSED
,
2682 segT segtype ATTRIBUTE_UNUSED
)
2684 as_fatal ("md_estimate_size_before_relax\n");
2690 md_parse_option (int c
, const char *arg
)
2694 case OPTION_CPU
: /* cpu brand */
2695 if (TOLOWER (*arg
) == 'c')
2697 tic4x_cpu
= atoi (arg
);
2698 if (!IS_CPU_TIC3X (tic4x_cpu
) && !IS_CPU_TIC4X (tic4x_cpu
))
2699 as_warn (_("Unsupported processor generation %d"), tic4x_cpu
);
2702 case OPTION_REV
: /* cpu revision */
2703 tic4x_revision
= atoi (arg
);
2707 as_warn (_("Option -b is depreciated, please use -mbig"));
2709 case OPTION_BIG
: /* big model */
2710 tic4x_big_model
= 1;
2714 as_warn (_("Option -p is depreciated, please use -mmemparm"));
2716 case OPTION_MEMPARM
: /* push args */
2721 as_warn (_("Option -r is depreciated, please use -mregparm"));
2723 case OPTION_REGPARM
: /* register args */
2728 as_warn (_("Option -s is depreciated, please use -msmall"));
2730 case OPTION_SMALL
: /* small model */
2731 tic4x_big_model
= 0;
2738 case OPTION_LOWPOWER
:
2742 case OPTION_ENHANCED
:
2754 md_show_usage (FILE *stream
)
2757 _("\nTIC4X options:\n"
2758 " -mcpu=CPU -mCPU select architecture variant. CPU can be:\n"
2760 " 31 - TMS320C31, TMS320LC31\n"
2762 " 33 - TMS320VC33\n"
2765 " -mrev=REV set cpu hardware revision (integer numbers).\n"
2766 " Combinations of -mcpu and -mrev will enable/disable\n"
2767 " the appropriate options (-midle2, -mlowpower and\n"
2768 " -menhanced) according to the selected type\n"
2769 " -mbig select big memory model\n"
2770 " -msmall select small memory model (default)\n"
2771 " -mregparm select register parameters (default)\n"
2772 " -mmemparm select memory parameters\n"
2773 " -midle2 enable IDLE2 support\n"
2774 " -mlowpower enable LOPOWER and MAXSPEED support\n"
2775 " -menhanced enable enhanced opcode support\n"));
2778 /* This is called when a line is unrecognized. This is used to handle
2779 definitions of TI C3x tools style local labels $n where n is a single
2782 tic4x_unrecognized_line (int c
)
2787 if (c
!= '$' || ! ISDIGIT (input_line_pointer
[0]))
2790 s
= input_line_pointer
;
2792 /* Let's allow multiple digit local labels. */
2794 while (ISDIGIT (*s
))
2796 lab
= lab
* 10 + *s
- '0';
2800 if (dollar_label_defined (lab
))
2802 as_bad (_("Label \"$%d\" redefined"), lab
);
2806 define_dollar_label (lab
);
2807 colon (dollar_label_name (lab
, 0));
2808 input_line_pointer
= s
+ 1;
2813 /* Handle local labels peculiar to us referred to in an expression. */
2815 md_undefined_symbol (char *name
)
2817 /* Look for local labels of the form $n. */
2818 if (name
[0] == '$' && ISDIGIT (name
[1]))
2824 while (ISDIGIT ((unsigned char) *s
))
2826 lab
= lab
* 10 + *s
- '0';
2829 if (dollar_label_defined (lab
))
2831 name
= dollar_label_name (lab
, 0);
2832 symbolP
= symbol_find (name
);
2836 name
= dollar_label_name (lab
, 1);
2837 symbolP
= symbol_find_or_make (name
);
2845 /* Parse an operand that is machine-specific. */
2847 md_operand (expressionS
*expressionP ATTRIBUTE_UNUSED
)
2851 /* Round up a section size to the appropriate boundary---do we need this? */
2853 md_section_align (segT segment ATTRIBUTE_UNUSED
, valueT size
)
2855 return size
; /* Byte (i.e., 32-bit) alignment is fine? */
2859 tic4x_pc_offset (unsigned int op
)
2861 /* Determine the PC offset for a C[34]x instruction.
2862 This could be simplified using some boolean algebra
2863 but at the expense of readability. */
2867 case 0x62: /* call (C4x) */
2868 case 0x64: /* rptb (C4x) */
2870 case 0x61: /* brd */
2871 case 0x63: /* laj */
2872 case 0x65: /* rptbd (C4x) */
2874 case 0x66: /* swi */
2881 switch ((op
& 0xffe00000) >> 20)
2883 case 0x6a0: /* bB */
2884 case 0x720: /* callB */
2885 case 0x740: /* trapB */
2888 case 0x6a2: /* bBd */
2889 case 0x6a6: /* bBat */
2890 case 0x6aa: /* bBaf */
2891 case 0x722: /* lajB */
2892 case 0x748: /* latB */
2893 case 0x798: /* rptbd */
2900 switch ((op
& 0xfe200000) >> 20)
2902 case 0x6e0: /* dbB */
2905 case 0x6e2: /* dbBd */
2915 /* Exactly what point is a PC-relative offset relative TO?
2916 With the C3x we have the following:
2917 DBcond, Bcond disp + PC + 1 => PC
2918 DBcondD, BcondD disp + PC + 3 => PC
2921 md_pcrel_from (fixS
*fixP
)
2926 buf
= (unsigned char *) fixP
->fx_frag
->fr_literal
+ fixP
->fx_where
;
2927 op
= ((unsigned) buf
[3] << 24) | (buf
[2] << 16) | (buf
[1] << 8) | buf
[0];
2929 return ((fixP
->fx_where
+ fixP
->fx_frag
->fr_address
) >> 2) +
2930 tic4x_pc_offset (op
);
2933 /* Fill the alignment area with NOP's on .text, unless fill-data
2936 tic4x_do_align (int alignment
,
2941 /* Because we are talking lwords, not bytes, adjust alignment to do words */
2944 if (alignment
!= 0 && !need_pass_2
)
2948 if (subseg_text_p (now_seg
))
2952 md_number_to_chars (nop
, TIC_NOP_OPCODE
, 4);
2953 frag_align_pattern (alignment
, nop
, sizeof (nop
), max
);
2956 frag_align (alignment
, 0, max
);
2959 frag_align (alignment
, *fill
, max
);
2961 frag_align_pattern (alignment
, fill
, len
, max
);
2964 /* Return 1 to skip the default alignment function */
2968 /* Look for and remove parallel instruction operator ||. */
2970 tic4x_start_line (void)
2972 char *s
= input_line_pointer
;
2976 /* If parallel instruction prefix found at start of line, skip it. */
2977 if (*input_line_pointer
== '|' && input_line_pointer
[1] == '|')
2982 input_line_pointer
++;
2983 *input_line_pointer
= ' ';
2984 /* So line counters get bumped. */
2985 input_line_pointer
[-1] = '\n';
2990 /* Write out the previous insn here */
2993 input_line_pointer
= s
;
2998 tc_gen_reloc (asection
*seg ATTRIBUTE_UNUSED
, fixS
*fixP
)
3002 reloc
= XNEW (arelent
);
3004 reloc
->sym_ptr_ptr
= XNEW (asymbol
*);
3005 *reloc
->sym_ptr_ptr
= symbol_get_bfdsym (fixP
->fx_addsy
);
3006 reloc
->address
= fixP
->fx_frag
->fr_address
+ fixP
->fx_where
;
3007 reloc
->address
/= OCTETS_PER_BYTE
;
3008 reloc
->howto
= bfd_reloc_type_lookup (stdoutput
, fixP
->fx_r_type
);
3009 if (reloc
->howto
== (reloc_howto_type
*) NULL
)
3011 as_bad_where (fixP
->fx_file
, fixP
->fx_line
,
3012 _("Reloc %d not supported by object file format"),
3013 (int) fixP
->fx_r_type
);
3017 if (fixP
->fx_r_type
== BFD_RELOC_HI16
)
3018 reloc
->addend
= fixP
->fx_offset
;
3020 reloc
->addend
= fixP
->fx_addnumber
;