* cgen-opc.in (@arch@_cgen_lookup_insn): Update call to
[deliverable/binutils-gdb.git] / opcodes / m32r-asm.c
1 /* Assembler interface for targets using CGEN. -*- C -*-
2 CGEN: Cpu tools GENerator
3
4 THIS FILE IS USED TO GENERATE m32r-asm.c.
5
6 Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
7
8 This file is part of the GNU Binutils and GDB, the GNU debugger.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software Foundation, Inc.,
22 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23
24 #include "sysdep.h"
25 #include <ctype.h>
26 #include <stdio.h>
27 #include "ansidecl.h"
28 #include "bfd.h"
29 #include "symcat.h"
30 #include "m32r-opc.h"
31 #include "opintl.h"
32
33 /* ??? The layout of this stuff is still work in progress.
34 For speed in assembly/disassembly, we use inline functions. That of course
35 will only work for GCC. When this stuff is finished, we can decide whether
36 to keep the inline functions (and only get the performance increase when
37 compiled with GCC), or switch to macros, or use something else.
38 */
39
40 static const char * insert_normal
41 PARAMS ((long, unsigned int, int, int, int, char *));
42 static const char * parse_insn_normal
43 PARAMS ((const CGEN_INSN *, const char **, CGEN_FIELDS *));
44 static const char * insert_insn_normal
45 PARAMS ((const CGEN_INSN *, CGEN_FIELDS *, cgen_insn_t *, bfd_vma));
46 \f
47 /* -- assembler routines inserted here */
48 /* -- asm.c */
49
50 /* Handle '#' prefixes (i.e. skip over them). */
51
52 static const char *
53 parse_hash (strp, opindex, valuep)
54 const char **strp;
55 int opindex;
56 unsigned long *valuep;
57 {
58 if (**strp == '#')
59 ++*strp;
60 return NULL;
61 }
62
63 /* Handle shigh(), high(). */
64
65 static const char *
66 parse_hi16 (strp, opindex, valuep)
67 const char **strp;
68 int opindex;
69 unsigned long *valuep;
70 {
71 const char *errmsg;
72 enum cgen_parse_operand_result result_type;
73
74 if (**strp == '#')
75 ++*strp;
76
77 if (strncasecmp (*strp, "high(", 5) == 0)
78 {
79 *strp += 5;
80 errmsg = cgen_parse_address (strp, opindex, BFD_RELOC_M32R_HI16_ULO,
81 &result_type, valuep);
82 if (**strp != ')')
83 return "missing `)'";
84 ++*strp;
85 if (errmsg == NULL
86 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
87 *valuep >>= 16;
88 return errmsg;
89 }
90 else if (strncasecmp (*strp, "shigh(", 6) == 0)
91 {
92 *strp += 6;
93 errmsg = cgen_parse_address (strp, opindex, BFD_RELOC_M32R_HI16_SLO,
94 &result_type, valuep);
95 if (**strp != ')')
96 return "missing `)'";
97 ++*strp;
98 if (errmsg == NULL
99 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
100 *valuep = (*valuep >> 16) + ((*valuep) & 0x8000 ? 1 : 0);
101 return errmsg;
102 }
103
104 return cgen_parse_unsigned_integer (strp, opindex, valuep);
105 }
106
107 /* Handle low() in a signed context. Also handle sda().
108 The signedness of the value doesn't matter to low(), but this also
109 handles the case where low() isn't present. */
110
111 static const char *
112 parse_slo16 (strp, opindex, valuep)
113 const char **strp;
114 int opindex;
115 long *valuep;
116 {
117 const char *errmsg;
118 enum cgen_parse_operand_result result_type;
119
120 if (**strp == '#')
121 ++*strp;
122
123 if (strncasecmp (*strp, "low(", 4) == 0)
124 {
125 *strp += 4;
126 errmsg = cgen_parse_address (strp, opindex, BFD_RELOC_M32R_LO16,
127 &result_type, valuep);
128 if (**strp != ')')
129 return "missing `)'";
130 ++*strp;
131 if (errmsg == NULL
132 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
133 *valuep &= 0xffff;
134 return errmsg;
135 }
136
137 if (strncasecmp (*strp, "sda(", 4) == 0)
138 {
139 *strp += 4;
140 errmsg = cgen_parse_address (strp, opindex, BFD_RELOC_M32R_SDA16, NULL, valuep);
141 if (**strp != ')')
142 return "missing `)'";
143 ++*strp;
144 return errmsg;
145 }
146
147 return cgen_parse_signed_integer (strp, opindex, valuep);
148 }
149
150 /* Handle low() in an unsigned context.
151 The signedness of the value doesn't matter to low(), but this also
152 handles the case where low() isn't present. */
153
154 static const char *
155 parse_ulo16 (strp, opindex, valuep)
156 const char **strp;
157 int opindex;
158 unsigned long *valuep;
159 {
160 const char *errmsg;
161 enum cgen_parse_operand_result result_type;
162
163 if (**strp == '#')
164 ++*strp;
165
166 if (strncasecmp (*strp, "low(", 4) == 0)
167 {
168 *strp += 4;
169 errmsg = cgen_parse_address (strp, opindex, BFD_RELOC_M32R_LO16,
170 &result_type, valuep);
171 if (**strp != ')')
172 return "missing `)'";
173 ++*strp;
174 if (errmsg == NULL
175 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
176 *valuep &= 0xffff;
177 return errmsg;
178 }
179
180 return cgen_parse_unsigned_integer (strp, opindex, valuep);
181 }
182
183 /* -- */
184
185 /* Main entry point for operand parsing.
186
187 This function is basically just a big switch statement. Earlier versions
188 used tables to look up the function to use, but
189 - if the table contains both assembler and disassembler functions then
190 the disassembler contains much of the assembler and vice-versa,
191 - there's a lot of inlining possibilities as things grow,
192 - using a switch statement avoids the function call overhead.
193
194 This function could be moved into `parse_insn_normal', but keeping it
195 separate makes clear the interface between `parse_insn_normal' and each of
196 the handlers.
197 */
198
199 const char *
200 m32r_cgen_parse_operand (opindex, strp, fields)
201 int opindex;
202 const char ** strp;
203 CGEN_FIELDS * fields;
204 {
205 const char * errmsg;
206
207 switch (opindex)
208 {
209 case M32R_OPERAND_SR :
210 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_gr, & fields->f_r2);
211 break;
212 case M32R_OPERAND_DR :
213 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_gr, & fields->f_r1);
214 break;
215 case M32R_OPERAND_SRC1 :
216 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_gr, & fields->f_r1);
217 break;
218 case M32R_OPERAND_SRC2 :
219 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_gr, & fields->f_r2);
220 break;
221 case M32R_OPERAND_SCR :
222 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_cr, & fields->f_r2);
223 break;
224 case M32R_OPERAND_DCR :
225 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_cr, & fields->f_r1);
226 break;
227 case M32R_OPERAND_SIMM8 :
228 errmsg = cgen_parse_signed_integer (strp, M32R_OPERAND_SIMM8, &fields->f_simm8);
229 break;
230 case M32R_OPERAND_SIMM16 :
231 errmsg = cgen_parse_signed_integer (strp, M32R_OPERAND_SIMM16, &fields->f_simm16);
232 break;
233 case M32R_OPERAND_UIMM4 :
234 errmsg = cgen_parse_unsigned_integer (strp, M32R_OPERAND_UIMM4, &fields->f_uimm4);
235 break;
236 case M32R_OPERAND_UIMM5 :
237 errmsg = cgen_parse_unsigned_integer (strp, M32R_OPERAND_UIMM5, &fields->f_uimm5);
238 break;
239 case M32R_OPERAND_UIMM16 :
240 errmsg = cgen_parse_unsigned_integer (strp, M32R_OPERAND_UIMM16, &fields->f_uimm16);
241 break;
242 /* start-sanitize-m32rx */
243 case M32R_OPERAND_IMM1 :
244 errmsg = cgen_parse_unsigned_integer (strp, M32R_OPERAND_IMM1, &fields->f_imm1);
245 break;
246 /* end-sanitize-m32rx */
247 /* start-sanitize-m32rx */
248 case M32R_OPERAND_ACCD :
249 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_accums, & fields->f_accd);
250 break;
251 /* end-sanitize-m32rx */
252 /* start-sanitize-m32rx */
253 case M32R_OPERAND_ACCS :
254 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_accums, & fields->f_accs);
255 break;
256 /* end-sanitize-m32rx */
257 /* start-sanitize-m32rx */
258 case M32R_OPERAND_ACC :
259 errmsg = cgen_parse_keyword (strp, & m32r_cgen_opval_h_accums, & fields->f_acc);
260 break;
261 /* end-sanitize-m32rx */
262 case M32R_OPERAND_HASH :
263 errmsg = parse_hash (strp, M32R_OPERAND_HASH, &fields->f_nil);
264 break;
265 case M32R_OPERAND_HI16 :
266 errmsg = parse_hi16 (strp, M32R_OPERAND_HI16, &fields->f_hi16);
267 break;
268 case M32R_OPERAND_SLO16 :
269 errmsg = parse_slo16 (strp, M32R_OPERAND_SLO16, &fields->f_simm16);
270 break;
271 case M32R_OPERAND_ULO16 :
272 errmsg = parse_ulo16 (strp, M32R_OPERAND_ULO16, &fields->f_uimm16);
273 break;
274 case M32R_OPERAND_UIMM24 :
275 errmsg = cgen_parse_address (strp, M32R_OPERAND_UIMM24, 0, NULL, & fields->f_uimm24);
276 break;
277 case M32R_OPERAND_DISP8 :
278 errmsg = cgen_parse_address (strp, M32R_OPERAND_DISP8, 0, NULL, & fields->f_disp8);
279 break;
280 case M32R_OPERAND_DISP16 :
281 errmsg = cgen_parse_address (strp, M32R_OPERAND_DISP16, 0, NULL, & fields->f_disp16);
282 break;
283 case M32R_OPERAND_DISP24 :
284 errmsg = cgen_parse_address (strp, M32R_OPERAND_DISP24, 0, NULL, & fields->f_disp24);
285 break;
286
287 default :
288 /* xgettext:c-format */
289 fprintf (stderr, _("Unrecognized field %d while parsing.\n"), opindex);
290 abort ();
291 }
292
293 return errmsg;
294 }
295
296 /* Main entry point for operand insertion.
297
298 This function is basically just a big switch statement. Earlier versions
299 used tables to look up the function to use, but
300 - if the table contains both assembler and disassembler functions then
301 the disassembler contains much of the assembler and vice-versa,
302 - there's a lot of inlining possibilities as things grow,
303 - using a switch statement avoids the function call overhead.
304
305 This function could be moved into `parse_insn_normal', but keeping it
306 separate makes clear the interface between `parse_insn_normal' and each of
307 the handlers. It's also needed by GAS to insert operands that couldn't be
308 resolved during parsing.
309 */
310
311 const char *
312 m32r_cgen_insert_operand (opindex, fields, buffer, pc)
313 int opindex;
314 CGEN_FIELDS * fields;
315 char * buffer;
316 bfd_vma pc;
317 {
318 const char * errmsg;
319
320 switch (opindex)
321 {
322 case M32R_OPERAND_SR :
323 errmsg = insert_normal (fields->f_r2, 0|(1<<CGEN_OPERAND_UNSIGNED), 12, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
324 break;
325 case M32R_OPERAND_DR :
326 errmsg = insert_normal (fields->f_r1, 0|(1<<CGEN_OPERAND_UNSIGNED), 4, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
327 break;
328 case M32R_OPERAND_SRC1 :
329 errmsg = insert_normal (fields->f_r1, 0|(1<<CGEN_OPERAND_UNSIGNED), 4, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
330 break;
331 case M32R_OPERAND_SRC2 :
332 errmsg = insert_normal (fields->f_r2, 0|(1<<CGEN_OPERAND_UNSIGNED), 12, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
333 break;
334 case M32R_OPERAND_SCR :
335 errmsg = insert_normal (fields->f_r2, 0|(1<<CGEN_OPERAND_UNSIGNED), 12, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
336 break;
337 case M32R_OPERAND_DCR :
338 errmsg = insert_normal (fields->f_r1, 0|(1<<CGEN_OPERAND_UNSIGNED), 4, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
339 break;
340 case M32R_OPERAND_SIMM8 :
341 errmsg = insert_normal (fields->f_simm8, 0|(1<<CGEN_OPERAND_HASH_PREFIX), 8, 8, CGEN_FIELDS_BITSIZE (fields), buffer);
342 break;
343 case M32R_OPERAND_SIMM16 :
344 errmsg = insert_normal (fields->f_simm16, 0|(1<<CGEN_OPERAND_HASH_PREFIX), 16, 16, CGEN_FIELDS_BITSIZE (fields), buffer);
345 break;
346 case M32R_OPERAND_UIMM4 :
347 errmsg = insert_normal (fields->f_uimm4, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_UNSIGNED), 12, 4, CGEN_FIELDS_BITSIZE (fields), buffer);
348 break;
349 case M32R_OPERAND_UIMM5 :
350 errmsg = insert_normal (fields->f_uimm5, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_UNSIGNED), 11, 5, CGEN_FIELDS_BITSIZE (fields), buffer);
351 break;
352 case M32R_OPERAND_UIMM16 :
353 errmsg = insert_normal (fields->f_uimm16, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_UNSIGNED), 16, 16, CGEN_FIELDS_BITSIZE (fields), buffer);
354 break;
355 /* start-sanitize-m32rx */
356 case M32R_OPERAND_IMM1 :
357 {
358 long value = fields->f_imm1;
359 value = ((value) - (1));
360 errmsg = insert_normal (value, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_UNSIGNED), 15, 1, CGEN_FIELDS_BITSIZE (fields), buffer);
361 }
362 break;
363 /* end-sanitize-m32rx */
364 /* start-sanitize-m32rx */
365 case M32R_OPERAND_ACCD :
366 errmsg = insert_normal (fields->f_accd, 0|(1<<CGEN_OPERAND_UNSIGNED), 4, 2, CGEN_FIELDS_BITSIZE (fields), buffer);
367 break;
368 /* end-sanitize-m32rx */
369 /* start-sanitize-m32rx */
370 case M32R_OPERAND_ACCS :
371 errmsg = insert_normal (fields->f_accs, 0|(1<<CGEN_OPERAND_UNSIGNED), 12, 2, CGEN_FIELDS_BITSIZE (fields), buffer);
372 break;
373 /* end-sanitize-m32rx */
374 /* start-sanitize-m32rx */
375 case M32R_OPERAND_ACC :
376 errmsg = insert_normal (fields->f_acc, 0|(1<<CGEN_OPERAND_UNSIGNED), 8, 1, CGEN_FIELDS_BITSIZE (fields), buffer);
377 break;
378 /* end-sanitize-m32rx */
379 case M32R_OPERAND_HASH :
380 errmsg = insert_normal (fields->f_nil, 0, 0, 0, CGEN_FIELDS_BITSIZE (fields), buffer);
381 break;
382 case M32R_OPERAND_HI16 :
383 errmsg = insert_normal (fields->f_hi16, 0|(1<<CGEN_OPERAND_SIGN_OPT)|(1<<CGEN_OPERAND_UNSIGNED), 16, 16, CGEN_FIELDS_BITSIZE (fields), buffer);
384 break;
385 case M32R_OPERAND_SLO16 :
386 errmsg = insert_normal (fields->f_simm16, 0, 16, 16, CGEN_FIELDS_BITSIZE (fields), buffer);
387 break;
388 case M32R_OPERAND_ULO16 :
389 errmsg = insert_normal (fields->f_uimm16, 0|(1<<CGEN_OPERAND_UNSIGNED), 16, 16, CGEN_FIELDS_BITSIZE (fields), buffer);
390 break;
391 case M32R_OPERAND_UIMM24 :
392 errmsg = insert_normal (fields->f_uimm24, 0|(1<<CGEN_OPERAND_HASH_PREFIX)|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_ABS_ADDR)|(1<<CGEN_OPERAND_UNSIGNED), 8, 24, CGEN_FIELDS_BITSIZE (fields), buffer);
393 break;
394 case M32R_OPERAND_DISP8 :
395 {
396 long value = fields->f_disp8;
397 value = ((((value) - (((pc) & (-4))))) >> (2));
398 errmsg = insert_normal (value, 0|(1<<CGEN_OPERAND_RELAX)|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_PCREL_ADDR), 8, 8, CGEN_FIELDS_BITSIZE (fields), buffer);
399 }
400 break;
401 case M32R_OPERAND_DISP16 :
402 {
403 long value = fields->f_disp16;
404 value = ((((value) - (pc))) >> (2));
405 errmsg = insert_normal (value, 0|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_PCREL_ADDR), 16, 16, CGEN_FIELDS_BITSIZE (fields), buffer);
406 }
407 break;
408 case M32R_OPERAND_DISP24 :
409 {
410 long value = fields->f_disp24;
411 value = ((((value) - (pc))) >> (2));
412 errmsg = insert_normal (value, 0|(1<<CGEN_OPERAND_RELAX)|(1<<CGEN_OPERAND_RELOC)|(1<<CGEN_OPERAND_PCREL_ADDR), 8, 24, CGEN_FIELDS_BITSIZE (fields), buffer);
413 }
414 break;
415
416 default :
417 /* xgettext:c-format */
418 fprintf (stderr, _("Unrecognized field %d while building insn.\n"),
419 opindex);
420 abort ();
421 }
422
423 return errmsg;
424 }
425
426 cgen_parse_fn * m32r_cgen_parse_handlers[] =
427 {
428 0, /* default */
429 parse_insn_normal,
430 };
431
432 cgen_insert_fn * m32r_cgen_insert_handlers[] =
433 {
434 0, /* default */
435 insert_insn_normal,
436 };
437
438 void
439 m32r_cgen_init_asm (mach, endian)
440 int mach;
441 enum cgen_endian endian;
442 {
443 m32r_cgen_init_tables (mach);
444 cgen_set_cpu (& m32r_cgen_opcode_table, mach, endian);
445 cgen_asm_init ();
446 }
447
448 \f
449 /* Default insertion routine.
450
451 ATTRS is a mask of the boolean attributes.
452 LENGTH is the length of VALUE in bits.
453 TOTAL_LENGTH is the total length of the insn (currently 8,16,32).
454
455 The result is an error message or NULL if success. */
456
457 /* ??? This duplicates functionality with bfd's howto table and
458 bfd_install_relocation. */
459 /* ??? For architectures where insns can be representable as ints,
460 store insn in `field' struct and add registers, etc. while parsing? */
461
462 static const char *
463 insert_normal (value, attrs, start, length, total_length, buffer)
464 long value;
465 unsigned int attrs;
466 int start;
467 int length;
468 int total_length;
469 char * buffer;
470 {
471 bfd_vma x;
472 static char buf[100];
473 /* Written this way to avoid undefined behaviour.
474 Yes, `long' will be bfd_vma but not yet. */
475 long mask = (((1L << (length - 1)) - 1) << 1) | 1;
476
477 /* If LENGTH is zero, this operand doesn't contribute to the value. */
478 if (length == 0)
479 return NULL;
480
481 /* Ensure VALUE will fit. */
482 if ((attrs & CGEN_ATTR_MASK (CGEN_OPERAND_UNSIGNED)) != 0)
483 {
484 unsigned long max = mask;
485 if ((unsigned long) value > max)
486 {
487 /* xgettext:c-format */
488 sprintf (buf, _("operand out of range (%lu not between 0 and %lu)"),
489 value, max);
490 return buf;
491 }
492 }
493 else
494 {
495 long min = - (1L << (length - 1));
496 long max = (1L << (length - 1)) - 1;
497 if (value < min || value > max)
498 {
499 sprintf
500 /* xgettext:c-format */
501 (buf, _("operand out of range (%ld not between %ld and %ld)"),
502 value, min, max);
503 return buf;
504 }
505 }
506
507 #if 0 /*def CGEN_INT_INSN*/
508 *buffer |= (value & mask) << (total_length - (start + length));
509 #else
510 switch (total_length)
511 {
512 case 8:
513 x = * (unsigned char *) buffer;
514 break;
515 case 16:
516 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
517 x = bfd_getb16 (buffer);
518 else
519 x = bfd_getl16 (buffer);
520 break;
521 case 32:
522 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
523 x = bfd_getb32 (buffer);
524 else
525 x = bfd_getl32 (buffer);
526 break;
527 default :
528 abort ();
529 }
530
531 x |= (value & mask) << (total_length - (start + length));
532
533 switch (total_length)
534 {
535 case 8:
536 * buffer = value;
537 break;
538 case 16:
539 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
540 bfd_putb16 (x, buffer);
541 else
542 bfd_putl16 (x, buffer);
543 break;
544 case 32:
545 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
546 bfd_putb32 (x, buffer);
547 else
548 bfd_putl32 (x, buffer);
549 break;
550 default :
551 abort ();
552 }
553 #endif
554
555 return NULL;
556 }
557 \f
558 /* Default insn parser.
559
560 The syntax string is scanned and operands are parsed and stored in FIELDS.
561 Relocs are queued as we go via other callbacks.
562
563 ??? Note that this is currently an all-or-nothing parser. If we fail to
564 parse the instruction, we return 0 and the caller will start over from
565 the beginning. Backtracking will be necessary in parsing subexpressions,
566 but that can be handled there. Not handling backtracking here may get
567 expensive in the case of the m68k. Deal with later.
568
569 Returns NULL for success, an error message for failure.
570 */
571
572 static const char *
573 parse_insn_normal (insn, strp, fields)
574 const CGEN_INSN * insn;
575 const char ** strp;
576 CGEN_FIELDS * fields;
577 {
578 const CGEN_SYNTAX * syntax = CGEN_INSN_SYNTAX (insn);
579 const char * str = *strp;
580 const char * errmsg;
581 const char * p;
582 const unsigned char * syn;
583 #ifdef CGEN_MNEMONIC_OPERANDS
584 /* FIXME: wip */
585 int past_opcode_p;
586 #endif
587
588 /* For now we assume the mnemonic is first (there are no leading operands).
589 We can parse it without needing to set up operand parsing. */
590 p = CGEN_INSN_MNEMONIC (insn);
591 while (* p && * p == * str)
592 ++ p, ++ str;
593
594 if (* p || (* str && !isspace (* str)))
595 return _("unrecognized instruction");
596
597 CGEN_INIT_PARSE ();
598 cgen_init_parse_operand ();
599 #ifdef CGEN_MNEMONIC_OPERANDS
600 past_opcode_p = 0;
601 #endif
602
603 /* We don't check for (*str != '\0') here because we want to parse
604 any trailing fake arguments in the syntax string. */
605 syn = CGEN_SYNTAX_STRING (CGEN_INSN_SYNTAX (insn));
606
607 /* Mnemonics come first for now, ensure valid string. */
608 if (! CGEN_SYNTAX_MNEMONIC_P (* syn))
609 abort ();
610
611 ++syn;
612
613 while (* syn != 0)
614 {
615 /* Non operand chars must match exactly. */
616 if (CGEN_SYNTAX_CHAR_P (* syn))
617 {
618 if (*str == CGEN_SYNTAX_CHAR (* syn))
619 {
620 #ifdef CGEN_MNEMONIC_OPERANDS
621 if (* syn == ' ')
622 past_opcode_p = 1;
623 #endif
624 ++ syn;
625 ++ str;
626 }
627 else
628 {
629 /* Syntax char didn't match. Can't be this insn. */
630 /* FIXME: would like to return something like
631 "expected char `c'" */
632 return _("syntax error");
633 }
634 continue;
635 }
636
637 /* We have an operand of some sort. */
638 errmsg = m32r_cgen_parse_operand (CGEN_SYNTAX_FIELD (*syn),
639 &str, fields);
640 if (errmsg)
641 return errmsg;
642
643 /* Done with this operand, continue with next one. */
644 ++ syn;
645 }
646
647 /* If we're at the end of the syntax string, we're done. */
648 if (* syn == '\0')
649 {
650 /* FIXME: For the moment we assume a valid `str' can only contain
651 blanks now. IE: We needn't try again with a longer version of
652 the insn and it is assumed that longer versions of insns appear
653 before shorter ones (eg: lsr r2,r3,1 vs lsr r2,r3). */
654 while (isspace (* str))
655 ++ str;
656
657 if (* str != '\0')
658 return _("junk at end of line"); /* FIXME: would like to include `str' */
659
660 return NULL;
661 }
662
663 /* We couldn't parse it. */
664 return "unrecognized instruction";
665 }
666
667 /* Default insn builder (insert handler).
668 The instruction is recorded in target byte order.
669 The result is an error message or NULL if success. */
670 /* FIXME: change buffer to char *? */
671
672 static const char *
673 insert_insn_normal (insn, fields, buffer, pc)
674 const CGEN_INSN * insn;
675 CGEN_FIELDS * fields;
676 cgen_insn_t * buffer;
677 bfd_vma pc;
678 {
679 const CGEN_SYNTAX * syntax = CGEN_INSN_SYNTAX (insn);
680 bfd_vma value;
681 const unsigned char * syn;
682
683 CGEN_INIT_INSERT ();
684 value = CGEN_INSN_VALUE (insn);
685
686 /* If we're recording insns as numbers (rather than a string of bytes),
687 target byte order handling is deferred until later. */
688 #undef min
689 #define min(a,b) ((a) < (b) ? (a) : (b))
690 #if 0 /*def CGEN_INT_INSN*/
691 *buffer = value;
692 #else
693 switch (min (CGEN_BASE_INSN_BITSIZE, CGEN_FIELDS_BITSIZE (fields)))
694 {
695 case 8:
696 * buffer = value;
697 break;
698 case 16:
699 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
700 bfd_putb16 (value, (char *) buffer);
701 else
702 bfd_putl16 (value, (char *) buffer);
703 break;
704 case 32:
705 if (CGEN_CURRENT_ENDIAN == CGEN_ENDIAN_BIG)
706 bfd_putb32 (value, (char *) buffer);
707 else
708 bfd_putl32 (value, (char *) buffer);
709 break;
710 default:
711 abort ();
712 }
713 #endif
714
715 /* ??? Rather than scanning the syntax string again, we could store
716 in `fields' a null terminated list of the fields that are present. */
717
718 for (syn = CGEN_SYNTAX_STRING (syntax); * syn != '\0'; ++ syn)
719 {
720 const char *errmsg;
721
722 if (CGEN_SYNTAX_CHAR_P (* syn))
723 continue;
724
725 errmsg = m32r_cgen_insert_operand (CGEN_SYNTAX_FIELD (*syn), fields,
726 (char *) buffer, pc);
727 if (errmsg)
728 return errmsg;
729 }
730
731 return NULL;
732 }
733 \f
734 /* Main entry point.
735 This routine is called for each instruction to be assembled.
736 STR points to the insn to be assembled.
737 We assume all necessary tables have been initialized.
738 The assembled instruction, less any fixups, is stored in buf.
739 [??? What byte order?]
740 The result is a pointer to the insn's entry in the opcode table,
741 or NULL if an error occured (an error message will have already been
742 printed).
743
744 Note that when processing (non-alias) macro-insns,
745 this function recurses. */
746
747 const CGEN_INSN *
748 m32r_cgen_assemble_insn (str, fields, buf, errmsg)
749 const char * str;
750 CGEN_FIELDS * fields;
751 cgen_insn_t * buf;
752 char ** errmsg;
753 {
754 const char * start;
755 CGEN_INSN_LIST * ilist;
756
757 /* Skip leading white space. */
758 while (isspace (* str))
759 ++ str;
760
761 /* The instructions are stored in hashed lists.
762 Get the first in the list. */
763 ilist = CGEN_ASM_LOOKUP_INSN (str);
764
765 /* Keep looking until we find a match. */
766
767 start = str;
768 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
769 {
770 const CGEN_INSN *insn = ilist->insn;
771
772 #if 0 /* not needed as unsupported opcodes shouldn't be in the hash lists */
773 /* Is this insn supported by the selected cpu? */
774 if (! m32r_cgen_insn_supported (insn))
775 continue;
776 #endif
777
778 /* If the RELAX attribute is set, this is an insn that shouldn't be
779 chosen immediately. Instead, it is used during assembler/linker
780 relaxation if possible. */
781 if (CGEN_INSN_ATTR (insn, CGEN_INSN_RELAX) != 0)
782 continue;
783
784 str = start;
785
786 /* Record a default length for the insn. This will get set to the
787 correct value while parsing. */
788 /* FIXME: wip */
789 CGEN_FIELDS_BITSIZE (fields) = CGEN_INSN_BITSIZE (insn);
790
791 if (! CGEN_PARSE_FN (insn) (insn, & str, fields))
792 {
793 /* ??? 0 is passed for `pc' */
794 if (CGEN_INSERT_FN (insn) (insn, fields, buf, (bfd_vma) 0) != NULL)
795 continue;
796 /* It is up to the caller to actually output the insn and any
797 queued relocs. */
798 return insn;
799 }
800
801 /* Try the next entry. */
802 }
803
804 /* FIXME: We can return a better error message than this.
805 Need to track why it failed and pick the right one. */
806 {
807 static char errbuf[100];
808 if (strlen (start) > 50)
809 /* xgettext:c-format */
810 sprintf (errbuf, _("bad instruction `%.50s...'"), start);
811 else
812 /* xgettext:c-format */
813 sprintf (errbuf, _("bad instruction `%.50s'"), start);
814
815 *errmsg = errbuf;
816 return NULL;
817 }
818 }
819 \f
820 #if 0 /* This calls back to GAS which we can't do without care. */
821
822 /* Record each member of OPVALS in the assembler's symbol table.
823 This lets GAS parse registers for us.
824 ??? Interesting idea but not currently used. */
825
826 /* Record each member of OPVALS in the assembler's symbol table.
827 FIXME: Not currently used. */
828
829 void
830 m32r_cgen_asm_hash_keywords (opvals)
831 CGEN_KEYWORD * opvals;
832 {
833 CGEN_KEYWORD_SEARCH search = cgen_keyword_search_init (opvals, NULL);
834 const CGEN_KEYWORD_ENTRY * ke;
835
836 while ((ke = cgen_keyword_search_next (& search)) != NULL)
837 {
838 #if 0 /* Unnecessary, should be done in the search routine. */
839 if (! m32r_cgen_opval_supported (ke))
840 continue;
841 #endif
842 cgen_asm_record_register (ke->name, ke->value);
843 }
844 }
845
846 #endif /* 0 */
This page took 0.082288 seconds and 5 git commands to generate.