1 /* tc-mcore.c -- Assemble code for M*Core
2 Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS 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 2, or (at your option)
11 GAS 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 GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
26 #include "../opcodes/mcore-opc.h"
31 #include "elf/mcore.h"
35 #define streq(a,b) (strcmp (a, b) == 0)
38 /* Forward declarations for dumb compilers. */
39 static void mcore_s_literals
PARAMS ((int));
40 static void mcore_cons
PARAMS ((int));
41 static void mcore_float_cons
PARAMS ((int));
42 static void mcore_stringer
PARAMS ((int));
43 static void mcore_fill
PARAMS ((int));
44 static int log2
PARAMS ((unsigned int));
45 static char * parse_reg
PARAMS ((char *, unsigned *));
46 static char * parse_creg
PARAMS ((char *, unsigned *));
47 static char * parse_exp
PARAMS ((char *, expressionS
*));
48 static char * parse_rt
PARAMS ((char *, char **, int, expressionS
*));
49 static char * parse_imm
PARAMS ((char *, unsigned *, unsigned, unsigned));
50 static char * parse_mem
PARAMS ((char *, unsigned *, unsigned *, unsigned));
51 static char * parse_psrmod
PARAMS ((char *, unsigned *));
52 static void make_name
PARAMS ((char *, char *, int));
53 static int enter_literal
PARAMS ((expressionS
*, int));
54 static void dump_literals
PARAMS ((int));
55 static void check_literals
PARAMS ((int, int));
56 static void mcore_s_text
PARAMS ((int));
57 static void mcore_s_data
PARAMS ((int));
58 static void mcore_s_section
PARAMS ((int));
59 static void mcore_s_bss
PARAMS ((int));
61 static void mcore_s_comm
PARAMS ((int));
64 /* Several places in this file insert raw instructions into the
65 object. They should use MCORE_INST_XXX macros to get the opcodes
66 and then use these two macros to crack the MCORE_INST value into
67 the appropriate byte values. */
68 #define INST_BYTE0(x) (target_big_endian ? (((x) >> 8) & 0xFF) : ((x) & 0xFF))
69 #define INST_BYTE1(x) (target_big_endian ? ((x) & 0xFF) : (((x) >> 8) & 0xFF))
71 const char comment_chars
[] = "#/";
72 const char line_separator_chars
[] = ";";
73 const char line_comment_chars
[] = "#/";
75 const int md_reloc_size
= 8;
77 static int do_jsri2bsr
= 0; /* Change here from 1 by Cruess 19 August 97. */
78 static int sifilter_mode
= 0;
80 const char EXP_CHARS
[] = "eE";
82 /* Chars that mean this number is a floating point constant
85 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
87 #define C(what,length) (((what) << 2) + (length))
88 #define GET_WHAT(x) ((x >> 2))
90 /* These are the two types of relaxable instruction */
97 #define UNDEF_WORD_DISP 3
100 #define C32_LEN 10 /* allow for align */
102 #define U32_LEN 8 /* allow for align */
113 /* Initialize the relax table. */
114 const relax_typeS md_relax_table
[] = {
121 { 0, 0, 0, 0 }, /* UNDEF_DISP */
122 { 2048, -2046, C12_LEN
, C(COND_JUMP
, DISP32
) }, /* DISP12 */
123 { 0, 0, C32_LEN
, 0 }, /* DISP32 */
124 { 0, 0, C32_LEN
, 0 }, /* UNDEF_WORD_DISP */
127 { 0, 0, 0, 0 }, /* UNDEF_DISP */
128 { 2048, -2046, U12_LEN
, C(UNCD_JUMP
, DISP32
) }, /* DISP12 */
129 { 0, 0, U32_LEN
, 0 }, /* DISP32 */
130 { 0, 0, U32_LEN
, 0 } /* UNDEF_WORD_DISP */
134 /* Literal pool data structures. */
137 unsigned short refcnt
;
138 unsigned char ispcrel
;
139 unsigned char unused
;
143 #define MAX_POOL_SIZE (1024/4)
144 static struct literal litpool
[MAX_POOL_SIZE
];
145 static unsigned poolsize
;
146 static unsigned poolnumber
;
147 static unsigned long poolspan
;
149 /* SPANPANIC: the point at which we get too scared and force a dump
150 of the literal pool, and perhaps put a branch in place.
152 1024 span of lrw/jmpi/jsri insn (actually span+1)
153 -2 possible alignment at the insn.
154 -2 possible alignment to get the table aligned.
155 -2 an inserted branch around the table.
157 at 1018, we might be in trouble.
158 -- so we have to be smaller than 1018 and since we deal with 2-byte
159 instructions, the next good choice is 1016.
160 -- Note we have a test case that fails when we've got 1018 here. */
161 #define SPANPANIC (1016) /* 1024 - 1 entry - 2 byte rounding. */
162 #define SPANCLOSE (900)
163 #define SPANEXIT (600)
164 static symbolS
* poolsym
; /* label for current pool. */
165 static char poolname
[8];
166 static struct hash_control
* opcode_hash_control
; /* Opcode mnemonics. */
168 /* This table describes all the machine specific pseudo-ops the assembler
169 has to support. The fields are:
170 Pseudo-op name without dot
171 Function to call to execute this pseudo-op
172 Integer arg to pass to the function. */
173 const pseudo_typeS md_pseudo_table
[] =
175 { "export", s_globl
, 0 },
176 { "import", s_ignore
, 0 },
177 { "literals", mcore_s_literals
, 0 },
178 { "page", listing_eject
, 0 },
180 /* The following are to intercept the placement of data into the text
181 section (eg addresses for a switch table), so that the space they
182 occupy can be taken into account when deciding whether or not to
183 dump the current literal pool.
184 XXX - currently we do not cope with the .space and .dcb.d directives. */
185 { "ascii", mcore_stringer
, 0 },
186 { "asciz", mcore_stringer
, 1 },
187 { "byte", mcore_cons
, 1 },
188 { "dc", mcore_cons
, 2 },
189 { "dc.b", mcore_cons
, 1 },
190 { "dc.d", mcore_float_cons
, 'd'},
191 { "dc.l", mcore_cons
, 4 },
192 { "dc.s", mcore_float_cons
, 'f'},
193 { "dc.w", mcore_cons
, 2 },
194 { "dc.x", mcore_float_cons
, 'x'},
195 { "double", mcore_float_cons
, 'd'},
196 { "float", mcore_float_cons
, 'f'},
197 { "hword", mcore_cons
, 2 },
198 { "int", mcore_cons
, 4 },
199 { "long", mcore_cons
, 4 },
200 { "octa", mcore_cons
, 16 },
201 { "quad", mcore_cons
, 8 },
202 { "short", mcore_cons
, 2 },
203 { "single", mcore_float_cons
, 'f'},
204 { "string", mcore_stringer
, 1 },
205 { "word", mcore_cons
, 2 },
206 { "fill", mcore_fill
, 0 },
208 /* Allow for the effect of section changes. */
209 { "text", mcore_s_text
, 0 },
210 { "data", mcore_s_data
, 0 },
211 { "bss", mcore_s_bss
, 1 },
213 { "comm", mcore_s_comm
, 0 },
215 { "section", mcore_s_section
, 0 },
216 { "section.s", mcore_s_section
, 0 },
217 { "sect", mcore_s_section
, 0 },
218 { "sect.s", mcore_s_section
, 0 },
224 mcore_s_literals (ignore
)
228 demand_empty_rest_of_line ();
235 if (now_seg
== text_section
)
237 char * ptr
= input_line_pointer
;
240 /* Count the number of commas on the line. */
241 while (! is_end_of_line
[(unsigned char) * ptr
])
242 commas
+= * ptr
++ == ',';
244 poolspan
+= nbytes
* commas
;
249 /* In theory we ought to call check_literals (2,0) here in case
250 we need to dump the literal table. We cannot do this however,
251 as the directives that we are intercepting may be being used
252 to build a switch table, and we must not interfere with its
253 contents. Instead we cross our fingers and pray... */
257 mcore_float_cons (float_type
)
260 if (now_seg
== text_section
)
262 char * ptr
= input_line_pointer
;
265 #ifdef REPEAT_CONS_EXPRESSIONS
266 #error REPEAT_CONS_EXPRESSIONS not handled
269 /* Count the number of commas on the line. */
270 while (! is_end_of_line
[(unsigned char) * ptr
])
271 commas
+= * ptr
++ == ',';
273 /* We would like to compute "hex_float (float_type) * commas"
274 but hex_float is not exported from read.c */
275 float_type
== 'f' ? 4 : (float_type
== 'd' ? 8 : 12);
276 poolspan
+= float_type
* commas
;
279 float_cons (float_type
);
281 /* See the comment in mcore_cons () about calling check_literals.
282 It is unlikely that a switch table will be constructed using
283 floating point values, but it is still likely that an indexed
284 table of floating point constants is being created by these
285 directives, so again we must not interfere with their placement. */
289 mcore_stringer (append_zero
)
292 if (now_seg
== text_section
)
294 char * ptr
= input_line_pointer
;
296 /* In theory we should compute how many bytes are going to
297 be occupied by the string(s) and add this to the poolspan.
298 To keep things simple however, we just add the number of
299 bytes left on the current line. This will be an over-
300 estimate, which is OK, and automatically allows for the
301 appending a zero byte, since the real string(s) is/are
302 required to be enclosed in double quotes. */
303 while (! is_end_of_line
[(unsigned char) * ptr
])
306 poolspan
+= ptr
- input_line_pointer
;
309 stringer (append_zero
);
311 /* We call check_literals here in case a large number of strings are
312 being placed into the text section with a sequence of stringer
313 directives. In theory we could be upsetting something if these
314 strings are actually in an indexed table instead of referenced by
315 individual labels. Let us hope that that never happens. */
316 check_literals (2, 0);
323 if (now_seg
== text_section
)
325 char * str
= input_line_pointer
;
331 /* Look to see if a size has been specified. */
332 while (*str
!= '\n' && *str
!= 0 && *str
!= ',')
337 size
= atoi (str
+ 1);
345 poolspan
+= size
* repeat
;
350 check_literals (2, 0);
353 /* Handle the section changing pseudo-ops. These call through to the
354 normal implementations, but they dump the literal pool first. */
356 mcore_s_text (ignore
)
362 obj_elf_text (ignore
);
369 mcore_s_data (ignore
)
375 obj_elf_data (ignore
);
382 mcore_s_section (ignore
)
385 /* Scan forwards to find the name of the section. If the section
386 being switched to is ".line" then this is a DWARF1 debug section
387 which is arbitarily placed inside generated code. In this case
388 do not dump the literal pool because it is a) inefficient and
389 b) would require the generation of extra code to jump around the
391 char * ilp
= input_line_pointer
;
393 while (*ilp
!= 0 && isspace(*ilp
))
396 if (strncmp (ilp
, ".line", 5) == 0
397 && (isspace (ilp
[5]) || *ilp
== '\n' || *ilp
== '\r'))
403 obj_elf_section (ignore
);
406 obj_coff_section (ignore
);
411 mcore_s_bss (needs_align
)
416 s_lcomm_bytes (needs_align
);
421 mcore_s_comm (needs_align
)
426 obj_elf_common (needs_align
);
430 /* This function is called once, at assembler startup time. This should
431 set up all the tables, etc that the MD part of the assembler needs. */
435 mcore_opcode_info
* opcode
;
436 char * prev_name
= "";
438 opcode_hash_control
= hash_new ();
440 /* Insert unique names into hash table */
441 for (opcode
= mcore_table
; opcode
->name
; opcode
++)
443 if (streq (prev_name
, opcode
->name
))
445 /* Make all the opcodes with the same name point to the same
447 opcode
->name
= prev_name
;
451 prev_name
= opcode
->name
;
452 hash_insert (opcode_hash_control
, opcode
->name
, (char *) opcode
);
459 static expressionS immediate
; /* absolute expression */
461 /* Get a log2(val). */
476 /* Try to parse a reg name. */
482 /* Strip leading whitespace. */
483 while (isspace (* s
))
486 if (tolower (s
[0]) == 'r')
488 if (s
[1] == '1' && s
[2] >= '0' && s
[2] <= '5')
490 *reg
= 10 + s
[2] - '0';
494 if (s
[1] >= '0' && s
[1] <= '9')
500 else if ( tolower (s
[0]) == 's'
501 && tolower (s
[1]) == 'p'
508 as_bad (_("register expected, but saw '%.6s'"), s
);
542 /* Strip leading whitespace. */
543 while (isspace (* s
))
546 if ((tolower (s
[0]) == 'c' && tolower (s
[1]) == 'r'))
548 if (s
[2] == '3' && s
[3] >= '0' && s
[3] <= '1')
550 *reg
= 30 + s
[3] - '0';
554 if (s
[2] == '2' && s
[3] >= '0' && s
[3] <= '9')
556 *reg
= 20 + s
[3] - '0';
560 if (s
[2] == '1' && s
[3] >= '0' && s
[3] <= '9')
562 *reg
= 10 + s
[3] - '0';
566 if (s
[2] >= '0' && s
[2] <= '9')
573 /* Look at alternate creg names before giving error. */
574 for (i
= 0; cregs
[i
].name
[0] != '\0'; i
++)
580 length
= strlen (cregs
[i
].name
);
582 for (j
= 0; j
< length
; j
++)
583 buf
[j
] = tolower (s
[j
]);
585 if (strncmp (cregs
[i
].name
, buf
, length
) == 0)
587 *reg
= cregs
[i
].crnum
;
592 as_bad (_("control register expected, but saw '%.6s'"), s
);
598 parse_psrmod (s
, reg
)
604 static struct psrmods
614 { "af", 8 } /* Really 0 and non-combinable. */
617 for (i
= 0; i
< 2; i
++)
618 buf
[i
] = isascii (s
[i
]) ? tolower (s
[i
]) : 0;
620 for (i
= sizeof (psrmods
) / sizeof (psrmods
[0]); i
--;)
622 if (! strncmp (psrmods
[i
].name
, buf
, 2))
624 * reg
= psrmods
[i
].value
;
630 as_bad (_("bad/missing psr specifier"));
645 /* Skip whitespace. */
646 while (isspace (* s
))
649 save
= input_line_pointer
;
650 input_line_pointer
= s
;
654 if (e
->X_op
== O_absent
)
655 as_bad (_("missing operand"));
657 new = input_line_pointer
;
658 input_line_pointer
= save
;
669 static const char hex
[] = "0123456789ABCDEF";
674 s
[3] = hex
[(n
>> 12) & 0xF];
675 s
[4] = hex
[(n
>> 8) & 0xF];
676 s
[5] = hex
[(n
>> 4) & 0xF];
677 s
[6] = hex
[(n
) & 0xF];
681 #define POOL_END_LABEL ".LE"
682 #define POOL_START_LABEL ".LS"
685 dump_literals (isforce
)
695 /* Must we branch around the literal table? */
701 make_name (brarname
, POOL_END_LABEL
, poolnumber
);
703 brarsym
= symbol_make (brarname
);
705 symbol_table_insert (brarsym
);
707 output
= frag_var (rs_machine_dependent
,
708 md_relax_table
[C (UNCD_JUMP
, DISP32
)].rlx_length
,
709 md_relax_table
[C (UNCD_JUMP
, DISP12
)].rlx_length
,
710 C (UNCD_JUMP
, 0), brarsym
, 0, 0);
711 output
[0] = INST_BYTE0 (MCORE_INST_BR
); /* br .+xxx */
712 output
[1] = INST_BYTE1 (MCORE_INST_BR
);
715 /* Make sure that the section is sufficiently aligned and that
716 the literal table is aligned within it. */
717 record_alignment (now_seg
, 2);
718 frag_align (2, 0, 0);
720 colon (S_GET_NAME (poolsym
));
722 for (i
= 0, p
= litpool
; i
< poolsize
; i
++, p
++)
723 emit_expr (& p
->e
, 4);
726 colon (S_GET_NAME (brarsym
));
732 check_literals (kind
, offset
)
738 /* SPANCLOSE and SPANEXIT are smaller numbers than SPANPANIC.
739 SPANPANIC means that we must dump now.
740 kind == 0 is any old instruction.
741 kind > 0 means we just had a control transfer instruction.
742 kind == 1 means within a function
743 kind == 2 means we just left a function
745 The dump_literals (1) call inserts a branch around the table, so
746 we first look to see if its a situation where we won't have to
747 insert a branch (e.g., the previous instruction was an unconditional
750 SPANPANIC is the point where we must dump a single-entry pool.
751 it accounts for alignments and an inserted branch.
752 the 'poolsize*2' accounts for the scenario where we do:
753 lrw r1,lit1; lrw r2,lit2; lrw r3,lit3
754 Note that the 'lit2' reference is 2 bytes further along
755 but the literal it references will be 4 bytes further along,
756 so we must consider the poolsize into this equation.
757 This is slightly over-cautious, but guarantees that we won't
758 panic because a relocation is too distant. */
760 if (poolspan
> SPANCLOSE
&& kind
> 0)
762 else if (poolspan
> SPANEXIT
&& kind
> 1)
764 else if (poolspan
>= (SPANPANIC
- poolsize
* 2))
769 enter_literal (e
, ispcrel
)
776 if (poolsize
>= MAX_POOL_SIZE
- 2)
778 /* The literal pool is as full as we can handle. We have
779 to be 2 entries shy of the 1024/4=256 entries because we
780 have to allow for the branch (2 bytes) and the alignment
781 (2 bytes before the first insn referencing the pool and
782 2 bytes before the pool itself) == 6 bytes, rounds up
789 /* Create new literal pool. */
790 if (++ poolnumber
> 0xFFFF)
791 as_fatal (_("more than 65K literal pools"));
793 make_name (poolname
, POOL_START_LABEL
, poolnumber
);
794 poolsym
= symbol_make (poolname
);
795 symbol_table_insert (poolsym
);
799 /* Search pool for value so we don't have duplicates. */
800 for (p
= litpool
, i
= 0; i
< poolsize
; i
++, p
++)
802 if (e
->X_op
== p
->e
.X_op
803 && e
->X_add_symbol
== p
->e
.X_add_symbol
804 && e
->X_add_number
== p
->e
.X_add_number
805 && ispcrel
== p
->ispcrel
)
813 p
->ispcrel
= ispcrel
;
821 /* Parse a literal specification. -- either new or old syntax.
822 old syntax: the user supplies the label and places the literal.
823 new syntax: we put it into the literal pool. */
825 parse_rt (s
, outputp
, ispcrel
, ep
)
835 /* Indicate nothing there. */
840 s
= parse_exp (s
+ 1, & e
);
845 as_bad (_("missing ']'"));
849 s
= parse_exp (s
, & e
);
851 n
= enter_literal (& e
, ispcrel
);
856 /* Create a reference to pool entry. */
858 e
.X_add_symbol
= poolsym
;
859 e
.X_add_number
= n
<< 2;
862 * outputp
= frag_more (2);
864 fix_new_exp (frag_now
, (*outputp
) - frag_now
->fr_literal
, 2, & e
, 1,
865 BFD_RELOC_MCORE_PCREL_IMM8BY4
);
871 parse_imm (s
, val
, min
, max
)
880 new = parse_exp (s
, & e
);
882 if (e
.X_op
== O_absent
)
883 ; /* An error message has already been emitted. */
884 else if (e
.X_op
!= O_constant
)
885 as_bad (_("operand must be a constant"));
886 else if (e
.X_add_number
< min
|| e
.X_add_number
> max
)
887 as_bad (_("operand must be absolute in range %d..%d, not %d"),
888 min
, max
, e
.X_add_number
);
890 * val
= e
.X_add_number
;
896 parse_mem (s
, reg
, off
, siz
)
906 while (isspace (* s
))
911 s
= parse_reg (s
+ 1, reg
);
913 while (isspace (* s
))
918 s
= parse_imm (s
+ 1, off
, 0, 63);
925 as_bad (_("operand must be a multiple of 4"));
932 as_bad (_("operand must be a multiple of 2"));
939 while (isspace (* s
))
946 as_bad (_("base register expected"));
951 /* This is the guts of the machine-dependent assembler. STR points to a
952 machine dependent instruction. This function is supposed to emit
953 the frags/bytes it assembles to. */
961 mcore_opcode_info
* opcode
;
971 /* Drop leading whitespace. */
972 while (isspace (* str
))
975 /* Find the op code end. */
976 for (op_start
= op_end
= str
;
977 nlen
< 20 && !is_end_of_line
[(unsigned char) *op_end
] && *op_end
!= ' ';
980 name
[nlen
] = op_start
[nlen
];
988 as_bad (_("can't find opcode "));
992 opcode
= (mcore_opcode_info
*) hash_find (opcode_hash_control
, name
);
995 as_bad (_("unknown opcode \"%s\""), name
);
1002 switch (opcode
->opclass
)
1005 output
= frag_more (2);
1009 op_end
= parse_imm (op_end
+ 1, & reg
, 0, 3);
1011 output
= frag_more (2);
1015 op_end
= parse_reg (op_end
+ 1, & reg
);
1017 output
= frag_more (2);
1021 op_end
= parse_reg (op_end
+ 1, & reg
);
1023 output
= frag_more (2);
1024 /* In a sifilter mode, we emit this insn 2 times,
1025 fixes problem of an interrupt during a jmp.. */
1028 output
[0] = INST_BYTE0 (inst
);
1029 output
[1] = INST_BYTE1 (inst
);
1030 output
= frag_more (2);
1035 op_end
= parse_reg (op_end
+ 1, & reg
);
1038 as_bad (_("invalid register: r15 illegal"));
1041 output
= frag_more (2);
1045 /* Replace with: bsr .+2 ; addi r15,6; jmp rx ; jmp rx */
1046 inst
= MCORE_INST_BSR
; /* with 0 displacement */
1047 output
[0] = INST_BYTE0 (inst
);
1048 output
[1] = INST_BYTE1 (inst
);
1050 output
= frag_more (2);
1051 inst
= MCORE_INST_ADDI
;
1052 inst
|= 15; /* addi r15,6 */
1053 inst
|= (6 - 1) << 4; /* over the jmp's */
1054 output
[0] = INST_BYTE0 (inst
);
1055 output
[1] = INST_BYTE1 (inst
);
1057 output
= frag_more (2);
1058 inst
= MCORE_INST_JMP
| reg
;
1059 output
[0] = INST_BYTE0 (inst
);
1060 output
[1] = INST_BYTE1 (inst
);
1062 output
= frag_more (2); /* 2nd emitted in fallthru */
1067 op_end
= parse_reg (op_end
+ 1, & reg
);
1070 /* Skip whitespace. */
1071 while (isspace (* op_end
))
1076 op_end
= parse_creg (op_end
+ 1, & reg
);
1080 output
= frag_more (2);
1086 as_bad (_("M340 specific opcode used when assembling for M210"));
1089 /* drop through... */
1091 op_end
= parse_reg (op_end
+ 1, & reg
);
1094 /* Skip whitespace. */
1095 while (isspace (* op_end
))
1098 if (* op_end
== ',')
1100 op_end
= parse_reg (op_end
+ 1, & reg
);
1104 as_bad (_("second operand missing"));
1106 output
= frag_more (2);
1109 case X1
: /* Handle both syntax-> xtrb- r1,rx OR xtrb- rx */
1110 op_end
= parse_reg (op_end
+ 1, & reg
);
1112 /* Skip whitespace. */
1113 while (isspace (* op_end
))
1116 if (* op_end
== ',') /* xtrb- r1,rx */
1119 as_bad (_("destination register must be r1"));
1121 op_end
= parse_reg (op_end
+ 1, & reg
);
1125 output
= frag_more (2);
1128 case O1R1
: /* div- rx,r1 */
1129 op_end
= parse_reg (op_end
+ 1, & reg
);
1132 /* Skip whitespace. */
1133 while (isspace (* op_end
))
1136 if (* op_end
== ',')
1138 op_end
= parse_reg (op_end
+ 1, & reg
);
1140 as_bad (_("source register must be r1"));
1143 as_bad (_("second operand missing"));
1145 output
= frag_more (2);
1149 op_end
= parse_reg (op_end
+ 1, & reg
);
1152 /* Skip whitespace. */
1153 while (isspace (* op_end
))
1156 if (* op_end
== ',')
1158 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 32);
1159 inst
|= (reg
- 1) << 4;
1162 as_bad (_("second operand missing"));
1164 output
= frag_more (2);
1168 op_end
= parse_reg (op_end
+ 1, & reg
);
1171 /* Skip whitespace. */
1172 while (isspace (* op_end
))
1175 if (* op_end
== ',')
1177 op_end
= parse_imm (op_end
+ 1, & reg
, 0, 31);
1181 as_bad (_("second operand missing"));
1183 output
= frag_more (2);
1186 case OB2
: /* like OB, but arg is 2^n instead of n */
1187 op_end
= parse_reg (op_end
+ 1, & reg
);
1190 /* Skip whitespace. */
1191 while (isspace (* op_end
))
1194 if (* op_end
== ',')
1196 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 1 << 31);
1197 /* Further restrict the immediate to a power of two. */
1198 if ((reg
& (reg
- 1)) == 0)
1203 as_bad (_("immediate is not a power of two"));
1208 as_bad (_("second operand missing"));
1210 output
= frag_more (2);
1213 case OBRa
: /* Specific for bgeni: imm of 0->6 translate to movi. */
1216 op_end
= parse_reg (op_end
+ 1, & reg
);
1219 /* Skip whitespace. */
1220 while (isspace (* op_end
))
1223 if (* op_end
== ',')
1225 op_end
= parse_imm (op_end
+ 1, & reg
, 0, 31);
1226 /* immediate values of 0 -> 6 translate to movi */
1229 inst
= (inst
& 0xF) | MCORE_INST_BGENI_ALT
;
1231 as_warn (_("translating bgeni to movi"));
1237 as_bad (_("second operand missing"));
1239 output
= frag_more (2);
1242 case OBR2
: /* like OBR, but arg is 2^n instead of n */
1243 op_end
= parse_reg (op_end
+ 1, & reg
);
1246 /* Skip whitespace. */
1247 while (isspace (* op_end
))
1250 if (* op_end
== ',')
1252 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 1 << 31);
1254 /* Further restrict the immediate to a power of two. */
1255 if ((reg
& (reg
- 1)) == 0)
1260 as_bad (_("immediate is not a power of two"));
1263 /* Immediate values of 0 -> 6 translate to movi. */
1266 inst
= (inst
& 0xF) | MCORE_INST_BGENI_ALT
;
1268 as_warn (_("translating mgeni to movi"));
1274 as_bad (_("second operand missing"));
1276 output
= frag_more (2);
1279 case OMa
: /* Specific for bmaski: imm 1->7 translate to movi. */
1282 op_end
= parse_reg (op_end
+ 1, & reg
);
1285 /* Skip whitespace. */
1286 while (isspace (* op_end
))
1289 if (* op_end
== ',')
1291 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 32);
1293 /* Immediate values of 1 -> 7 translate to movi. */
1296 inst
= (inst
& 0xF) | MCORE_INST_BMASKI_ALT
;
1297 reg
= (0x1 << reg
) - 1;
1300 as_warn (_("translating bmaski to movi"));
1305 inst
|= (reg
& 0x1F) << 4;
1309 as_bad (_("second operand missing"));
1311 output
= frag_more (2);
1315 op_end
= parse_reg (op_end
+ 1, & reg
);
1318 /* Skip whitespace. */
1319 while (isspace (* op_end
))
1322 if (* op_end
== ',')
1324 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 31);
1328 as_bad (_("second operand missing"));
1330 output
= frag_more (2);
1334 op_end
= parse_reg (op_end
+ 1, & reg
);
1337 /* Skip whitespace. */
1338 while (isspace (* op_end
))
1341 if (* op_end
== ',')
1343 op_end
= parse_imm (op_end
+ 1, & reg
, 0, 0x7F);
1347 as_bad (_("second operand missing"));
1349 output
= frag_more (2);
1353 op_end
= parse_reg (op_end
+ 1, & reg
);
1356 /* Skip whitespace. */
1357 while (isspace (* op_end
))
1360 if (* op_end
== ',')
1364 if ((inst
& 0x6000) == 0)
1366 else if ((inst
& 0x6000) == 0x4000)
1368 else if ((inst
& 0x6000) == 0x2000)
1371 op_end
= parse_mem (op_end
+ 1, & reg
, & off
, size
);
1374 as_bad (_("displacement too large (%d)"), off
);
1376 inst
|= (reg
) | (off
<< 4);
1379 as_bad (_("second operand missing"));
1381 output
= frag_more (2);
1385 op_end
= parse_reg (op_end
+ 1, & reg
);
1387 if (reg
== 0 || reg
== 15)
1388 as_bad (_("Invalid register: r0 and r15 illegal"));
1392 /* Skip whitespace. */
1393 while (isspace (* op_end
))
1396 if (* op_end
== ',')
1398 /* parse_rt calls frag_more() for us. */
1399 input_line_pointer
= parse_rt (op_end
+ 1, & output
, 0, 0);
1400 op_end
= input_line_pointer
;
1404 as_bad (_("second operand missing"));
1405 output
= frag_more (2); /* save its space */
1410 input_line_pointer
= parse_rt (op_end
+ 1, & output
, 1, 0);
1411 /* parse_rt() calls frag_more() for us. */
1412 op_end
= input_line_pointer
;
1416 op_end
= parse_reg (op_end
+ 1, & reg
);
1418 if (reg
== 0 || reg
== 15)
1419 as_bad (_("bad starting register: r0 and r15 invalid"));
1423 /* Skip whitespace. */
1424 while (isspace (* op_end
))
1427 if (* op_end
== '-')
1429 op_end
= parse_reg (op_end
+ 1, & reg
);
1432 as_bad (_("ending register must be r15"));
1434 /* Skip whitespace. */
1435 while (isspace (* op_end
))
1439 if (* op_end
== ',')
1443 /* Skip whitespace. */
1444 while (isspace (* op_end
))
1447 if (* op_end
== '(')
1449 op_end
= parse_reg (op_end
+ 1, & reg
);
1452 as_bad (_("bad base register: must be r0"));
1454 if (* op_end
== ')')
1458 as_bad (_("base register expected"));
1461 as_bad (_("second operand missing"));
1463 output
= frag_more (2);
1467 op_end
= parse_reg (op_end
+ 1, & reg
);
1470 as_fatal (_("first register must be r4"));
1472 /* Skip whitespace. */
1473 while (isspace (* op_end
))
1476 if (* op_end
== '-')
1478 op_end
= parse_reg (op_end
+ 1, & reg
);
1481 as_fatal (_("last register must be r7"));
1483 /* Skip whitespace. */
1484 while (isspace (* op_end
))
1487 if (* op_end
== ',')
1491 /* Skip whitespace. */
1492 while (isspace (* op_end
))
1495 if (* op_end
== '(')
1497 op_end
= parse_reg (op_end
+ 1, & reg
);
1499 if (reg
>= 4 && reg
<= 7)
1500 as_fatal ("base register cannot be r4, r5, r6, or r7");
1504 /* Skip whitespace. */
1505 while (isspace (* op_end
))
1508 if (* op_end
== ')')
1512 as_bad (_("base register expected"));
1515 as_bad (_("second operand missing"));
1518 as_bad (_("reg-reg expected"));
1520 output
= frag_more (2);
1524 input_line_pointer
= parse_exp (op_end
+ 1, & e
);
1525 op_end
= input_line_pointer
;
1527 output
= frag_more (2);
1529 fix_new_exp (frag_now
, output
-frag_now
->fr_literal
,
1530 2, & e
, 1, BFD_RELOC_MCORE_PCREL_IMM11BY2
);
1534 op_end
= parse_reg (op_end
+ 1, & reg
);
1537 /* Skip whitespace. */
1538 while (isspace (* op_end
))
1541 if (* op_end
== ',')
1543 op_end
= parse_exp (op_end
+ 1, & e
);
1544 output
= frag_more (2);
1546 fix_new_exp (frag_now
, output
-frag_now
->fr_literal
,
1547 2, & e
, 1, BFD_RELOC_MCORE_PCREL_IMM4BY2
);
1551 as_bad (_("second operand missing"));
1552 output
= frag_more (2);
1557 input_line_pointer
= parse_exp (op_end
+ 1, & e
);
1558 op_end
= input_line_pointer
;
1560 output
= frag_var (rs_machine_dependent
,
1561 md_relax_table
[C (COND_JUMP
, DISP32
)].rlx_length
,
1562 md_relax_table
[C (COND_JUMP
, DISP12
)].rlx_length
,
1563 C (COND_JUMP
, 0), e
.X_add_symbol
, e
.X_add_number
, 0);
1568 input_line_pointer
= parse_exp (op_end
+ 1, & e
);
1569 op_end
= input_line_pointer
;
1571 output
= frag_var (rs_machine_dependent
,
1572 md_relax_table
[C (UNCD_JUMP
, DISP32
)].rlx_length
,
1573 md_relax_table
[C (UNCD_JUMP
, DISP12
)].rlx_length
,
1574 C (UNCD_JUMP
, 0), e
.X_add_symbol
, e
.X_add_number
, 0);
1579 inst
= MCORE_INST_JSRI
; /* jsri */
1580 input_line_pointer
= parse_rt (op_end
+ 1, & output
, 1, & e
);
1581 /* parse_rt() calls frag_more for us. */
1582 op_end
= input_line_pointer
;
1584 /* Only do this if we know how to do it ... */
1585 if (e
.X_op
!= O_absent
&& do_jsri2bsr
)
1587 /* Look at adding the R_PCREL_JSRIMM11BY2. */
1588 fix_new_exp (frag_now
, output
-frag_now
->fr_literal
,
1589 2, & e
, 1, BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2
);
1593 case RSI
: /* SI, but imm becomes 32-imm */
1594 op_end
= parse_reg (op_end
+ 1, & reg
);
1597 /* Skip whitespace. */
1598 while (isspace (* op_end
))
1601 if (* op_end
== ',')
1603 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 31);
1609 as_bad (_("second operand missing"));
1611 output
= frag_more (2);
1614 case DO21
: /* O2, dup rd, lit must be 1 */
1615 op_end
= parse_reg (op_end
+ 1, & reg
);
1619 /* Skip whitespace. */
1620 while (isspace (* op_end
))
1623 if (* op_end
== ',')
1625 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 31);
1628 as_bad (_("second operand must be 1"));
1631 as_bad (_("second operand missing"));
1633 output
= frag_more (2);
1637 op_end
= parse_reg (op_end
+ 1, & reg
);
1640 /* Skip whitespace. */
1641 while (isspace (* op_end
))
1644 if (* op_end
== ',')
1646 op_end
= parse_imm (op_end
+ 1, & reg
, 1, 31);
1649 as_bad (_("zero used as immediate value"));
1654 as_bad (_("second operand missing"));
1656 output
= frag_more (2);
1662 as_bad (_("M340 specific opcode used when assembling for M210"));
1666 op_end
= parse_psrmod (op_end
+ 1, & reg
);
1668 /* Look for further selectors. */
1669 while (* op_end
== ',')
1673 op_end
= parse_psrmod (op_end
+ 1, & value
);
1676 as_bad (_("duplicated psr bit specifier"));
1682 as_bad (_("`af' must appear alone"));
1684 inst
|= (reg
& 0x7);
1685 output
= frag_more (2);
1689 as_bad (_("unimplemented opcode \"%s\""), name
);
1692 /* Drop whitespace after all the operands have been parsed. */
1693 while (isspace (* op_end
))
1696 /* Give warning message if the insn has more operands than required. */
1697 if (strcmp (op_end
, opcode
->name
) && strcmp (op_end
, ""))
1698 as_warn (_("ignoring operands: %s "), op_end
);
1700 output
[0] = INST_BYTE0 (inst
);
1701 output
[1] = INST_BYTE1 (inst
);
1703 check_literals (opcode
->transfer
, isize
);
1707 md_undefined_symbol (name
)
1717 subseg_set (text_section
, 0);
1720 /* Various routines to kill one day. */
1721 /* Equal to MAX_PRECISION in atof-ieee.c */
1722 #define MAX_LITTLENUMS 6
1724 /* Turn a string in input_line_pointer into a floating point constant of type
1725 type, and store the appropriate bytes in *litP. The number of LITTLENUMS
1726 emitted is stored in *sizeP. An error message is returned, or NULL on OK.*/
1728 md_atof (type
, litP
, sizeP
)
1734 LITTLENUM_TYPE words
[MAX_LITTLENUMS
];
1737 char * atof_ieee ();
1767 return _("Bad call to MD_NTOF()");
1770 t
= atof_ieee (input_line_pointer
, type
, words
);
1773 input_line_pointer
= t
;
1775 *sizeP
= prec
* sizeof (LITTLENUM_TYPE
);
1777 if (! target_big_endian
)
1779 for (i
= prec
- 1; i
>= 0; i
--)
1781 md_number_to_chars (litP
, (valueT
) words
[i
],
1782 sizeof (LITTLENUM_TYPE
));
1783 litP
+= sizeof (LITTLENUM_TYPE
);
1787 for (i
= 0; i
< prec
; i
++)
1789 md_number_to_chars (litP
, (valueT
) words
[i
],
1790 sizeof (LITTLENUM_TYPE
));
1791 litP
+= sizeof (LITTLENUM_TYPE
);
1797 CONST
char * md_shortopts
= "";
1799 #define OPTION_JSRI2BSR_ON (OPTION_MD_BASE + 0)
1800 #define OPTION_JSRI2BSR_OFF (OPTION_MD_BASE + 1)
1801 #define OPTION_SIFILTER_ON (OPTION_MD_BASE + 2)
1802 #define OPTION_SIFILTER_OFF (OPTION_MD_BASE + 3)
1803 #define OPTION_CPU (OPTION_MD_BASE + 4)
1804 #define OPTION_EB (OPTION_MD_BASE + 5)
1805 #define OPTION_EL (OPTION_MD_BASE + 6)
1807 struct option md_longopts
[] =
1809 { "no-jsri2bsr", no_argument
, NULL
, OPTION_JSRI2BSR_OFF
},
1810 { "jsri2bsr", no_argument
, NULL
, OPTION_JSRI2BSR_ON
},
1811 { "sifilter", no_argument
, NULL
, OPTION_SIFILTER_ON
},
1812 { "no-sifilter", no_argument
, NULL
, OPTION_SIFILTER_OFF
},
1813 { "cpu", required_argument
, NULL
, OPTION_CPU
},
1814 { "EB", no_argument
, NULL
, OPTION_EB
},
1815 { "EL", no_argument
, NULL
, OPTION_EL
},
1816 { NULL
, no_argument
, NULL
, 0}
1819 size_t md_longopts_size
= sizeof (md_longopts
);
1822 md_parse_option (c
, arg
)
1832 if (streq (arg
, "210"))
1835 target_big_endian
= 1;
1837 else if (streq (arg
, "340"))
1840 as_warn (_("unrecognised cpu type '%s'"), arg
);
1843 case OPTION_EB
: target_big_endian
= 1; break;
1844 case OPTION_EL
: target_big_endian
= 0; cpu
= M340
; break;
1845 case OPTION_JSRI2BSR_ON
: do_jsri2bsr
= 1; break;
1846 case OPTION_JSRI2BSR_OFF
: do_jsri2bsr
= 0; break;
1847 case OPTION_SIFILTER_ON
: sifilter_mode
= 1; break;
1848 case OPTION_SIFILTER_OFF
: sifilter_mode
= 0; break;
1856 md_show_usage (stream
)
1859 fprintf (stream
, _("\
1860 MCORE specific options:\n\
1861 -{no-}jsri2bsr {dis}able jsri to bsr transformation (def: dis)\n\
1862 -{no-}sifilter {dis}able silicon filter behavior (def: dis)\n\
1863 -cpu=[210|340] select CPU type\n\
1864 -EB assemble for a big endian system (default)\n\
1865 -EL assemble for a little endian system\n"));
1868 int md_short_jump_size
;
1871 md_create_short_jump (ptr
, from_Nddr
, to_Nddr
, frag
, to_symbol
)
1876 symbolS
* to_symbol
;
1878 as_fatal (_("failed sanity check: short_jump"));
1882 md_create_long_jump (ptr
, from_Nddr
, to_Nddr
, frag
, to_symbol
)
1887 symbolS
* to_symbol
;
1889 as_fatal (_("failed sanity check: long_jump"));
1892 /* Called after relaxing, change the frags so they know how big they are. */
1894 md_convert_frag (abfd
, sec
, fragP
)
1897 register fragS
* fragP
;
1899 unsigned char * buffer
;
1900 int targ_addr
= S_GET_VALUE (fragP
->fr_symbol
) + fragP
->fr_offset
;
1902 buffer
= (unsigned char *) (fragP
->fr_fix
+ fragP
->fr_literal
);
1904 switch (fragP
->fr_subtype
)
1906 case C (COND_JUMP
, DISP12
):
1907 case C (UNCD_JUMP
, DISP12
):
1909 /* Get the address of the end of the instruction. */
1910 int next_inst
= fragP
->fr_fix
+ fragP
->fr_address
+ 2;
1912 int disp
= targ_addr
- next_inst
;
1915 as_bad (_("odd displacement at %x"), next_inst
- 2);
1919 if (! target_big_endian
)
1921 t0
= buffer
[1] & 0xF8;
1923 md_number_to_chars (buffer
, disp
, 2);
1925 buffer
[1] = (buffer
[1] & 0x07) | t0
;
1929 t0
= buffer
[0] & 0xF8;
1931 md_number_to_chars (buffer
, disp
, 2);
1933 buffer
[0] = (buffer
[0] & 0x07) | t0
;
1940 case C (COND_JUMP
, DISP32
):
1941 case C (COND_JUMP
, UNDEF_WORD_DISP
):
1943 /* A conditional branch wont fit into 12 bits so:
1950 * if the b!cond is 4 byte aligned, the literal which would
1951 * go at x+4 will also be aligned.
1953 int first_inst
= fragP
->fr_fix
+ fragP
->fr_address
;
1954 int needpad
= (first_inst
& 3);
1956 if (! target_big_endian
)
1959 buffer
[0] ^= 0x08; /* Toggle T/F bit */
1961 buffer
[2] = INST_BYTE0 (MCORE_INST_JMPI
); /* Build jmpi */
1962 buffer
[3] = INST_BYTE1 (MCORE_INST_JMPI
);
1966 if (! target_big_endian
)
1968 buffer
[0] = 4; /* branch over jmpi, pad, and ptr */
1969 buffer
[2] = 1; /* jmpi offset of 1 gets the pointer */
1973 buffer
[1] = 4; /* branch over jmpi, pad, and ptr */
1974 buffer
[3] = 1; /* jmpi offset of 1 gets the pointer */
1977 buffer
[4] = 0; /* alignment/pad */
1979 buffer
[6] = 0; /* space for 32 bit address */
1984 /* Make reloc for the long disp */
1985 fix_new (fragP
, fragP
->fr_fix
+ 6, 4,
1986 fragP
->fr_symbol
, fragP
->fr_offset
, 0, BFD_RELOC_32
);
1988 fragP
->fr_fix
+= C32_LEN
;
1992 /* See comment below about this given gas' limitations for
1993 shrinking the fragment. '3' is the amount of code that
1994 we inserted here, but '4' is right for the space we reserved
1995 for this fragment. */
1996 if (! target_big_endian
)
1998 buffer
[0] = 3; /* branch over jmpi, and ptr */
1999 buffer
[2] = 0; /* jmpi offset of 0 gets the pointer */
2003 buffer
[1] = 3; /* branch over jmpi, and ptr */
2004 buffer
[3] = 0; /* jmpi offset of 0 gets the pointer */
2007 buffer
[4] = 0; /* space for 32 bit address */
2012 /* Make reloc for the long disp. */
2013 fix_new (fragP
, fragP
->fr_fix
+ 4, 4,
2014 fragP
->fr_symbol
, fragP
->fr_offset
, 0, BFD_RELOC_32
);
2015 fragP
->fr_fix
+= C32_LEN
;
2017 /* Frag is actually shorter (see the other side of this ifdef)
2018 but gas isn't prepared for that. We have to re-adjust
2019 the branch displacement so that it goes beyond the
2020 full length of the fragment, not just what we actually
2022 if (! target_big_endian
)
2023 buffer
[0] = 4; /* jmpi, ptr, and the 'tail pad' */
2025 buffer
[1] = 4; /* jmpi, ptr, and the 'tail pad' */
2030 case C (UNCD_JUMP
, DISP32
):
2031 case C (UNCD_JUMP
, UNDEF_WORD_DISP
):
2033 /* An unconditional branch will not fit in 12 bits, make code which
2038 we need a pad if "first_inst" is 4 byte aligned.
2039 [because the natural literal place is x + 2] */
2040 int first_inst
= fragP
->fr_fix
+ fragP
->fr_address
;
2041 int needpad
= !(first_inst
& 3);
2043 buffer
[0] = INST_BYTE0 (MCORE_INST_JMPI
); /* Build jmpi */
2044 buffer
[1] = INST_BYTE1 (MCORE_INST_JMPI
);
2048 if (! target_big_endian
)
2049 buffer
[0] = 1; /* jmpi offset of 1 since padded */
2051 buffer
[1] = 1; /* jmpi offset of 1 since padded */
2052 buffer
[2] = 0; /* alignment */
2054 buffer
[4] = 0; /* space for 32 bit address */
2059 /* Make reloc for the long disp. */
2060 fix_new (fragP
, fragP
->fr_fix
+ 4, 4,
2061 fragP
->fr_symbol
, fragP
->fr_offset
, 0, BFD_RELOC_32
);
2063 fragP
->fr_fix
+= U32_LEN
;
2067 if (! target_big_endian
)
2068 buffer
[0] = 0; /* jmpi offset of 0 if no pad */
2070 buffer
[1] = 0; /* jmpi offset of 0 if no pad */
2071 buffer
[2] = 0; /* space for 32 bit address */
2076 /* Make reloc for the long disp. */
2077 fix_new (fragP
, fragP
->fr_fix
+ 2, 4,
2078 fragP
->fr_symbol
, fragP
->fr_offset
, 0, BFD_RELOC_32
);
2079 fragP
->fr_fix
+= U32_LEN
;
2089 /* Applies the desired value to the specified location.
2090 Also sets up addends for 'rela' type relocations. */
2092 md_apply_fix3 (fixP
, valp
, segment
)
2097 char * buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
2098 char * file
= fixP
->fx_file
? fixP
->fx_file
: _("unknown");
2099 const char * symname
;
2100 /* Note: use offsetT because it is signed, valueT is unsigned. */
2101 offsetT val
= (offsetT
) * valp
;
2103 symname
= fixP
->fx_addsy
? S_GET_NAME (fixP
->fx_addsy
) : _("<unknown>");
2104 /* Save this for the addend in the relocation record. */
2105 fixP
->fx_addnumber
= val
;
2107 /* If the fix is relative to a symbol which is not defined, or not
2108 in the same segment as the fix, we cannot resolve it here. */
2109 if (fixP
->fx_addsy
!= NULL
2110 && ( ! S_IS_DEFINED (fixP
->fx_addsy
)
2111 || (S_GET_SEGMENT (fixP
->fx_addsy
) != segment
)))
2115 /* For ELF we can just return and let the reloc that will be generated
2116 take care of everything. For COFF we still have to insert 'val'
2117 into the insn since the addend field will be ignored. */
2124 switch (fixP
->fx_r_type
)
2126 case BFD_RELOC_MCORE_PCREL_IMM11BY2
: /* second byte of 2 byte opcode */
2128 as_bad_where (file
, fixP
->fx_line
,
2129 _("odd distance branch (0x%x bytes)"), val
);
2131 if (((val
& ~0x3ff) != 0) && ((val
| 0x3ff) != -1))
2132 as_bad_where (file
, fixP
->fx_line
,
2133 _("pcrel for branch to %s too far (0x%x)"),
2135 if (target_big_endian
)
2137 buf
[0] |= ((val
>> 8) & 0x7);
2138 buf
[1] |= (val
& 0xff);
2142 buf
[1] |= ((val
>> 8) & 0x7);
2143 buf
[0] |= (val
& 0xff);
2147 case BFD_RELOC_MCORE_PCREL_IMM8BY4
: /* lower 8 bits of 2 byte opcode */
2151 as_bad_where (file
, fixP
->fx_line
,
2152 _("pcrel for lrw/jmpi/jsri to %s too far (0x%x)"),
2154 else if (! target_big_endian
)
2155 buf
[0] |= (val
& 0xff);
2157 buf
[1] |= (val
& 0xff);
2160 case BFD_RELOC_MCORE_PCREL_IMM4BY2
: /* loopt instruction */
2161 if ((val
< -32) || (val
> -2))
2162 as_bad_where (file
, fixP
->fx_line
,
2163 _("pcrel for loopt too far (0x%x)"), val
);
2165 if (! target_big_endian
)
2166 buf
[0] |= (val
& 0xf);
2168 buf
[1] |= (val
& 0xf);
2171 case BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2
:
2172 /* Conditional linker map jsri to bsr. */
2173 /* If its a local target and close enough, fix it.
2174 NB: >= -2k for backwards bsr; < 2k for forwards... */
2175 if (fixP
->fx_addsy
== 0 && val
>= -2048 && val
< 2048)
2177 long nval
= (val
/ 2) & 0x7ff;
2178 nval
|= MCORE_INST_BSR
;
2180 /* REPLACE the instruction, don't just modify it. */
2181 buf
[0] = INST_BYTE0 (nval
);
2182 buf
[1] = INST_BYTE1 (nval
);
2188 case BFD_RELOC_MCORE_PCREL_32
:
2189 case BFD_RELOC_VTABLE_INHERIT
:
2190 case BFD_RELOC_VTABLE_ENTRY
:
2195 if (fixP
->fx_addsy
!= NULL
)
2197 /* If the fix is an absolute reloc based on a symbol's
2198 address, then it cannot be resolved until the final link. */
2205 if (fixP
->fx_size
== 4)
2207 else if (fixP
->fx_size
== 2 && val
>= -32768 && val
<= 32767)
2209 else if (fixP
->fx_size
== 1 && val
>= -256 && val
<= 255)
2213 md_number_to_chars (buf
, val
, fixP
->fx_size
);
2218 return 0; /* Return value is ignored. */
2222 md_operand (expressionP
)
2223 expressionS
* expressionP
;
2225 /* Ignore leading hash symbol, if poresent. */
2226 if (* input_line_pointer
== '#')
2228 input_line_pointer
++;
2229 expression (expressionP
);
2233 int md_long_jump_size
;
2235 /* Called just before address relaxation, return the length
2236 by which a fragment must grow to reach it's destination. */
2238 md_estimate_size_before_relax (fragP
, segment_type
)
2239 register fragS
* fragP
;
2240 register segT segment_type
;
2242 switch (fragP
->fr_subtype
)
2247 case C (UNCD_JUMP
, UNDEF_DISP
):
2248 /* Used to be a branch to somewhere which was unknown. */
2249 if (!fragP
->fr_symbol
)
2251 fragP
->fr_subtype
= C (UNCD_JUMP
, DISP12
);
2253 else if (S_GET_SEGMENT (fragP
->fr_symbol
) == segment_type
)
2255 fragP
->fr_subtype
= C (UNCD_JUMP
, DISP12
);
2259 fragP
->fr_subtype
= C (UNCD_JUMP
, UNDEF_WORD_DISP
);
2263 case C (COND_JUMP
, UNDEF_DISP
):
2264 /* Used to be a branch to somewhere which was unknown. */
2265 if (fragP
->fr_symbol
2266 && S_GET_SEGMENT (fragP
->fr_symbol
) == segment_type
)
2268 /* Got a symbol and it's defined in this segment, become byte
2269 sized - maybe it will fix up */
2270 fragP
->fr_subtype
= C (COND_JUMP
, DISP12
);
2272 else if (fragP
->fr_symbol
)
2274 /* Its got a segment, but its not ours, so it will always be long. */
2275 fragP
->fr_subtype
= C (COND_JUMP
, UNDEF_WORD_DISP
);
2279 /* We know the abs value. */
2280 fragP
->fr_subtype
= C (COND_JUMP
, DISP12
);
2284 case C (UNCD_JUMP
, DISP12
):
2285 case C (UNCD_JUMP
, DISP32
):
2286 case C (UNCD_JUMP
, UNDEF_WORD_DISP
):
2287 case C (COND_JUMP
, DISP12
):
2288 case C (COND_JUMP
, DISP32
):
2289 case C (COND_JUMP
, UNDEF_WORD_DISP
):
2290 /* When relaxing a section for the second time, we don't need to
2291 do anything besides return the current size. */
2295 return md_relax_table
[fragP
->fr_subtype
].rlx_length
;
2298 /* Put number into target byte order. */
2300 md_number_to_chars (ptr
, use
, nbytes
)
2305 if (! target_big_endian
)
2308 case 4: ptr
[3] = (use
>> 24) & 0xff; /* fall through */
2309 case 3: ptr
[2] = (use
>> 16) & 0xff; /* fall through */
2310 case 2: ptr
[1] = (use
>> 8) & 0xff; /* fall through */
2311 case 1: ptr
[0] = (use
>> 0) & 0xff; break;
2317 case 4: *ptr
++ = (use
>> 24) & 0xff; /* fall through */
2318 case 3: *ptr
++ = (use
>> 16) & 0xff; /* fall through */
2319 case 2: *ptr
++ = (use
>> 8) & 0xff; /* fall through */
2320 case 1: *ptr
++ = (use
>> 0) & 0xff; break;
2325 /* Round up a section size to the appropriate boundary. */
2327 md_section_align (segment
, size
)
2331 return size
; /* Byte alignment is fine */
2334 /* The location from which a PC relative jump should be calculated,
2335 given a PC relative reloc. */
2337 md_pcrel_from_section (fixp
, sec
)
2342 /* If the symbol is undefined or defined in another section
2343 we leave the add number alone for the linker to fix it later.
2344 Only account for the PC pre-bump (which is 2 bytes on the MCore). */
2345 if (fixp
->fx_addsy
!= (symbolS
*) NULL
2346 && (! S_IS_DEFINED (fixp
->fx_addsy
)
2347 || (S_GET_SEGMENT (fixp
->fx_addsy
) != sec
)))
2350 assert (fixp
->fx_size
== 2); /* must be an insn */
2351 return fixp
->fx_size
;
2355 /* The case where we are going to resolve things... */
2356 return fixp
->fx_size
+ fixp
->fx_where
+ fixp
->fx_frag
->fr_address
;
2359 #define F(SZ,PCREL) (((SZ) << 1) + (PCREL))
2360 #define MAP(SZ,PCREL,TYPE) case F (SZ, PCREL): code = (TYPE); break
2363 tc_gen_reloc (section
, fixp
)
2368 bfd_reloc_code_real_type code
;
2371 switch (fixp
->fx_r_type
)
2373 /* These confuse the size/pcrel macro approach. */
2374 case BFD_RELOC_VTABLE_INHERIT
:
2375 case BFD_RELOC_VTABLE_ENTRY
:
2376 case BFD_RELOC_MCORE_PCREL_IMM4BY2
:
2377 case BFD_RELOC_MCORE_PCREL_IMM8BY4
:
2378 case BFD_RELOC_MCORE_PCREL_IMM11BY2
:
2379 case BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2
:
2381 code
= fixp
->fx_r_type
;
2385 switch (F (fixp
->fx_size
, fixp
->fx_pcrel
))
2387 MAP (1, 0, BFD_RELOC_8
);
2388 MAP (2, 0, BFD_RELOC_16
);
2389 MAP (4, 0, BFD_RELOC_32
);
2390 MAP (1, 1, BFD_RELOC_8_PCREL
);
2391 MAP (2, 1, BFD_RELOC_16_PCREL
);
2392 MAP (4, 1, BFD_RELOC_32_PCREL
);
2394 code
= fixp
->fx_r_type
;
2395 as_bad (_("Can not do %d byte %srelocation"),
2397 fixp
->fx_pcrel
? _("pc-relative") : "");
2402 rel
= (arelent
*) xmalloc (sizeof (arelent
));
2403 rel
->sym_ptr_ptr
= (asymbol
**) xmalloc (sizeof (asymbol
*));
2404 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
2405 rel
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
2406 /* Always pass the addend along! */
2407 rel
->addend
= fixp
->fx_addnumber
;
2409 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, code
);
2411 if (rel
->howto
== NULL
)
2413 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
2414 _("Cannot represent relocation type %s"),
2415 bfd_get_reloc_code_name (code
));
2417 /* Set howto to a garbage value so that we can keep going. */
2418 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_32
);
2419 assert (rel
->howto
!= NULL
);
2426 /* See whether we need to force a relocation into the output file.
2427 This is used to force out switch and PC relative relocations when
2430 mcore_force_relocation (fix
)
2433 if ( fix
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
2434 || fix
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
2435 || fix
->fx_r_type
== BFD_RELOC_RVA
)
2441 /* Return true if the fix can be handled by GAS, false if it must
2442 be passed through to the linker. */
2444 mcore_fix_adjustable (fixP
)
2447 if (fixP
->fx_addsy
== NULL
)
2450 /* We need the symbol name for the VTABLE entries. */
2451 if ( fixP
->fx_r_type
== BFD_RELOC_VTABLE_INHERIT
2452 || fixP
->fx_r_type
== BFD_RELOC_VTABLE_ENTRY
)
2457 #endif /* OBJ_ELF */