1 /* tc-pj.c -- Assemble code for Pico Java
2 Copyright (C) 1999-2018 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 3, 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
18 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
19 Boston, MA 02110-1301, USA. */
21 /* Contributed by Steve Chamberlain of Transmeta <sac@pobox.com>. */
24 #include "safe-ctype.h"
25 #include "opcode/pj.h"
27 extern const pj_opc_info_t pj_opc_info
[512];
29 const char comment_chars
[] = "!/";
30 const char line_separator_chars
[] = ";";
31 const char line_comment_chars
[] = "/!#";
33 static int pending_reloc
;
34 static struct hash_control
*opcode_hash_control
;
37 little (int ignore ATTRIBUTE_UNUSED
)
39 target_big_endian
= 0;
43 big (int ignore ATTRIBUTE_UNUSED
)
45 target_big_endian
= 1;
48 const pseudo_typeS md_pseudo_table
[] =
55 const char FLT_CHARS
[] = "rRsSfFdDxXpP";
56 const char EXP_CHARS
[] = "eE";
59 md_operand (expressionS
*op
)
61 if (strncmp (input_line_pointer
, "%hi16", 5) == 0)
64 as_bad (_("confusing relocation expressions"));
65 pending_reloc
= BFD_RELOC_PJ_CODE_HI16
;
66 input_line_pointer
+= 5;
70 if (strncmp (input_line_pointer
, "%lo16", 5) == 0)
73 as_bad (_("confusing relocation expressions"));
74 pending_reloc
= BFD_RELOC_PJ_CODE_LO16
;
75 input_line_pointer
+= 5;
80 /* Parse an expression and then restore the input line pointer. */
83 parse_exp_save_ilp (char *s
, expressionS
*op
)
85 char *save
= input_line_pointer
;
87 input_line_pointer
= s
;
89 s
= input_line_pointer
;
90 input_line_pointer
= save
;
94 /* This is called by emit_expr via TC_CONS_FIX_NEW when creating a
95 reloc for a cons. We could use the definition there, except that
96 we want to handle magic pending reloc expressions specially. */
99 pj_cons_fix_new_pj (fragS
*frag
, int where
, int nbytes
, expressionS
*exp
,
100 bfd_reloc_code_real_type r ATTRIBUTE_UNUSED
)
102 static int rv
[5][2] =
104 { BFD_RELOC_8
, BFD_RELOC_8
},
105 { BFD_RELOC_PJ_CODE_DIR16
, BFD_RELOC_16
},
107 { BFD_RELOC_PJ_CODE_DIR32
, BFD_RELOC_32
}};
109 fix_new_exp (frag
, where
, nbytes
, exp
, 0,
110 pending_reloc
? pending_reloc
111 : rv
[nbytes
][(now_seg
->flags
& SEC_CODE
) ? 0 : 1]);
116 /* Turn a reloc description character from the pj-opc.h table into
117 code which BFD can handle. */
125 return BFD_RELOC_8_PCREL
;
130 return BFD_RELOC_PJ_CODE_REL16
;
133 return BFD_RELOC_PJ_CODE_DIR16
;
135 return BFD_RELOC_PJ_CODE_REL32
;
137 return BFD_RELOC_PJ_CODE_DIR32
;
143 /* Handler for the ipush fake opcode,
144 turns ipush <foo> into sipush lo16<foo>, sethi hi16<foo>. */
147 ipush_code (pj_opc_info_t
*opcode ATTRIBUTE_UNUSED
, char *str
)
149 char *b
= frag_more (6);
154 parse_exp_save_ilp (str
+ 1, &arg
);
157 as_bad (_("can't have relocation for ipush"));
161 fix_new_exp (frag_now
, b
- frag_now
->fr_literal
+ 1, 2,
162 &arg
, 0, BFD_RELOC_PJ_CODE_DIR16
);
163 fix_new_exp (frag_now
, b
- frag_now
->fr_literal
+ 4, 2,
164 &arg
, 0, BFD_RELOC_PJ_CODE_HI16
);
167 /* Insert names into the opcode table which are really mini macros,
168 not opcodes. The fakeness is indicated with an opcode of -1. */
171 fake_opcode (const char *name
,
172 void (*func
) (struct pj_opc_info_t
*, char *))
174 pj_opc_info_t
* fake
= XNEW (pj_opc_info_t
);
177 fake
->opcode_next
= -1;
179 hash_insert (opcode_hash_control
, name
, (char *) fake
);
182 /* Enter another entry into the opcode hash table so the same opcode
183 can have another name. */
186 alias (const char *new_name
, const char *old
)
188 hash_insert (opcode_hash_control
, new_name
,
189 (char *) hash_find (opcode_hash_control
, old
));
192 /* This function is called once, at assembler startup time. It sets
193 up the hash table with all the opcodes in it, and also initializes
194 some aliases for compatibility with other assemblers. */
199 const pj_opc_info_t
*opcode
;
200 opcode_hash_control
= hash_new ();
202 /* Insert names into hash table. */
203 for (opcode
= pj_opc_info
; opcode
->u
.name
; opcode
++)
204 hash_insert (opcode_hash_control
, opcode
->u
.name
, (char *) opcode
);
206 /* Insert the only fake opcode. */
207 fake_opcode ("ipush", ipush_code
);
209 /* Add some aliases for opcode names. */
210 alias ("ifeq_s", "ifeq");
211 alias ("ifne_s", "ifne");
212 alias ("if_icmpge_s", "if_icmpge");
213 alias ("if_icmpne_s", "if_icmpne");
214 alias ("if_icmpeq_s", "if_icmpeq");
215 alias ("if_icmpgt_s", "if_icmpgt");
216 alias ("goto_s", "goto");
218 bfd_set_arch_mach (stdoutput
, TARGET_ARCH
, 0);
221 /* This is the guts of the machine-dependent assembler. STR points to
222 a machine dependent instruction. This function is supposed to emit
223 the frags/bytes it assembles to. */
226 md_assemble (char *str
)
231 pj_opc_info_t
*opcode
;
238 /* Drop leading whitespace. */
242 /* Find the op code end. */
245 *op_end
&& !is_end_of_line
[*op_end
& 0xff] && *op_end
!= ' ';
253 as_bad (_("can't find opcode "));
255 opcode
= (pj_opc_info_t
*) hash_find (opcode_hash_control
, op_start
);
260 as_bad (_("unknown opcode %s"), op_start
);
264 dwarf2_emit_insn (0);
265 if (opcode
->opcode
== -1)
267 /* It's a fake opcode. Dig out the args and pretend that was
268 what we were passed. */
269 (*opcode
->u
.func
) (opcode
, op_end
);
275 output
= frag_more (opcode
->len
);
276 output
[idx
++] = opcode
->opcode
;
278 if (opcode
->opcode_next
!= -1)
279 output
[idx
++] = opcode
->opcode_next
;
281 for (an
= 0; opcode
->arg
[an
]; an
++)
285 if (*op_end
== ',' && an
!= 0)
289 as_bad (_("expected expression"));
291 op_end
= parse_exp_save_ilp (op_end
, &arg
);
293 fix_new_exp (frag_now
,
294 output
- frag_now
->fr_literal
+ idx
,
295 ASIZE (opcode
->arg
[an
]),
297 PCREL (opcode
->arg
[an
]),
298 pending_reloc
? pending_reloc
: c_to_r (opcode
->arg
[an
]));
300 idx
+= ASIZE (opcode
->arg
[an
]);
304 while (ISSPACE (*op_end
))
308 as_warn (_("extra stuff on line ignored"));
313 as_bad (_("Something forgot to clean up\n"));
317 md_atof (int type
, char *litP
, int *sizeP
)
319 return ieee_md_atof (type
, litP
, sizeP
, target_big_endian
);
322 const char *md_shortopts
= "";
324 struct option md_longopts
[] =
326 #define OPTION_LITTLE (OPTION_MD_BASE)
327 #define OPTION_BIG (OPTION_LITTLE + 1)
329 {"little", no_argument
, NULL
, OPTION_LITTLE
},
330 {"big", no_argument
, NULL
, OPTION_BIG
},
331 {NULL
, no_argument
, NULL
, 0}
333 size_t md_longopts_size
= sizeof (md_longopts
);
336 md_parse_option (int c
, const char *arg ATTRIBUTE_UNUSED
)
353 md_show_usage (FILE *stream
)
355 fprintf (stream
, _("\
357 -little generate little endian code\n\
358 -big generate big endian code\n"));
361 /* Apply a fixup to the object file. */
364 md_apply_fix (fixS
*fixP
, valueT
* valP
, segT seg ATTRIBUTE_UNUSED
)
366 char *buf
= fixP
->fx_where
+ fixP
->fx_frag
->fr_literal
;
371 switch (fixP
->fx_r_type
)
373 case BFD_RELOC_VTABLE_INHERIT
:
374 case BFD_RELOC_VTABLE_ENTRY
:
378 case BFD_RELOC_PJ_CODE_REL16
:
379 if (val
< -0x8000 || val
>= 0x7fff)
380 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("pcrel too far"));
381 buf
[0] |= (val
>> 8) & 0xff;
385 case BFD_RELOC_PJ_CODE_HI16
:
388 fixP
->fx_addnumber
= val
& 0xffff;
391 case BFD_RELOC_PJ_CODE_DIR16
:
392 case BFD_RELOC_PJ_CODE_LO16
:
406 case BFD_RELOC_PJ_CODE_DIR32
:
414 if (target_big_endian
)
431 if (target_big_endian
)
443 case BFD_RELOC_PJ_CODE_REL32
:
451 if (max
!= 0 && (val
< min
|| val
> max
))
452 as_bad_where (fixP
->fx_file
, fixP
->fx_line
, _("offset out of range"));
454 if (fixP
->fx_addsy
== NULL
&& fixP
->fx_pcrel
== 0)
458 /* Put number into target byte order. Always put values in an
459 executable section into big endian order. */
462 md_number_to_chars (char *ptr
, valueT use
, int nbytes
)
464 if (target_big_endian
|| now_seg
->flags
& SEC_CODE
)
465 number_to_chars_bigendian (ptr
, use
, nbytes
);
467 number_to_chars_littleendian (ptr
, use
, nbytes
);
470 /* Translate internal representation of relocation info to BFD target
474 tc_gen_reloc (asection
*section ATTRIBUTE_UNUSED
, fixS
*fixp
)
477 bfd_reloc_code_real_type r_type
;
479 rel
= XNEW (arelent
);
480 rel
->sym_ptr_ptr
= XNEW (asymbol
*);
481 *rel
->sym_ptr_ptr
= symbol_get_bfdsym (fixp
->fx_addsy
);
482 rel
->address
= fixp
->fx_frag
->fr_address
+ fixp
->fx_where
;
484 r_type
= fixp
->fx_r_type
;
485 rel
->addend
= fixp
->fx_addnumber
;
486 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, r_type
);
488 if (rel
->howto
== NULL
)
490 as_bad_where (fixp
->fx_file
, fixp
->fx_line
,
491 _("Cannot represent relocation type %s"),
492 bfd_get_reloc_code_name (r_type
));
493 /* Set howto to a garbage value so that we can keep going. */
494 rel
->howto
= bfd_reloc_type_lookup (stdoutput
, BFD_RELOC_32
);
495 gas_assert (rel
->howto
!= NULL
);