* config/obj-elf.c: (obj_elf_change_section): Add "group" param.
[deliverable/binutils-gdb.git] / opcodes / m32r-asm.c
CommitLineData
252b5132
RH
1/* Assembler interface for targets using CGEN. -*- C -*-
2 CGEN: Cpu tools GENerator
3
4THIS FILE IS MACHINE GENERATED WITH CGEN.
5- the resultant file is machine generated, cgen-asm.in isn't
6
060d22b0 7Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
252b5132
RH
8
9This file is part of the GNU Binutils and GDB, the GNU debugger.
10
11This program is free software; you can redistribute it and/or modify
12it under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2, or (at your option)
14any later version.
15
16This program is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with this program; if not, write to the Free Software Foundation, Inc.,
2359 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24
25/* ??? Eventually more and more of this stuff can go to cpu-independent files.
26 Keep that in mind. */
27
28#include "sysdep.h"
252b5132
RH
29#include <stdio.h>
30#include "ansidecl.h"
3882b010 31#include "safe-ctype.h"
252b5132
RH
32#include "bfd.h"
33#include "symcat.h"
34#include "m32r-desc.h"
35#include "m32r-opc.h"
36#include "opintl.h"
fc7bc883 37#include "xregex.h"
fc05c67f 38#include "libiberty.h"
252b5132
RH
39
40#undef min
41#define min(a,b) ((a) < (b) ? (a) : (b))
42#undef max
43#define max(a,b) ((a) > (b) ? (a) : (b))
44
fc05c67f
NC
45static const char * parse_insn_normal PARAMS ((CGEN_CPU_DESC, const CGEN_INSN *, const char **, CGEN_FIELDS *));
46static const char * parse_hash PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
47static const char * parse_hi16 PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
48static const char * parse_slo16 PARAMS ((CGEN_CPU_DESC, const char **, int, long *));
49static const char * parse_ulo16 PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
50 const char * m32r_cgen_parse_operand PARAMS ((CGEN_CPU_DESC, int, const char **, CGEN_FIELDS *));
252b5132
RH
51\f
52/* -- assembler routines inserted here */
53
54/* -- asm.c */
55
56/* Handle '#' prefixes (i.e. skip over them). */
57
58static const char *
59parse_hash (cd, strp, opindex, valuep)
fc05c67f 60 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED;
252b5132 61 const char **strp;
fc05c67f
NC
62 int opindex ATTRIBUTE_UNUSED;
63 unsigned long *valuep ATTRIBUTE_UNUSED;
252b5132
RH
64{
65 if (**strp == '#')
66 ++*strp;
67 return NULL;
68}
69
70/* Handle shigh(), high(). */
71
72static const char *
73parse_hi16 (cd, strp, opindex, valuep)
74 CGEN_CPU_DESC cd;
75 const char **strp;
76 int opindex;
77 unsigned long *valuep;
78{
79 const char *errmsg;
80 enum cgen_parse_operand_result result_type;
81 bfd_vma value;
82
83 if (**strp == '#')
84 ++*strp;
85
86 if (strncasecmp (*strp, "high(", 5) == 0)
87 {
88 *strp += 5;
89 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_HI16_ULO,
90 &result_type, &value);
91 if (**strp != ')')
92 return "missing `)'";
93 ++*strp;
94 if (errmsg == NULL
95 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
96 value >>= 16;
97 *valuep = value;
98 return errmsg;
99 }
100 else if (strncasecmp (*strp, "shigh(", 6) == 0)
101 {
102 *strp += 6;
103 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_HI16_SLO,
104 &result_type, &value);
105 if (**strp != ')')
106 return "missing `)'";
107 ++*strp;
108 if (errmsg == NULL
109 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
110 value = (value >> 16) + (value & 0x8000 ? 1 : 0);
111 *valuep = value;
112 return errmsg;
113 }
114
115 return cgen_parse_unsigned_integer (cd, strp, opindex, valuep);
116}
117
118/* Handle low() in a signed context. Also handle sda().
119 The signedness of the value doesn't matter to low(), but this also
120 handles the case where low() isn't present. */
121
122static const char *
123parse_slo16 (cd, strp, opindex, valuep)
124 CGEN_CPU_DESC cd;
125 const char **strp;
126 int opindex;
127 long *valuep;
128{
129 const char *errmsg;
130 enum cgen_parse_operand_result result_type;
131 bfd_vma value;
132
133 if (**strp == '#')
134 ++*strp;
135
136 if (strncasecmp (*strp, "low(", 4) == 0)
137 {
138 *strp += 4;
139 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_LO16,
140 &result_type, &value);
141 if (**strp != ')')
142 return "missing `)'";
143 ++*strp;
144 if (errmsg == NULL
145 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
146 value &= 0xffff;
147 *valuep = value;
148 return errmsg;
149 }
150
151 if (strncasecmp (*strp, "sda(", 4) == 0)
152 {
153 *strp += 4;
154 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_SDA16,
155 NULL, &value);
156 if (**strp != ')')
157 return "missing `)'";
158 ++*strp;
159 *valuep = value;
160 return errmsg;
161 }
162
163 return cgen_parse_signed_integer (cd, strp, opindex, valuep);
164}
165
166/* Handle low() in an unsigned context.
167 The signedness of the value doesn't matter to low(), but this also
168 handles the case where low() isn't present. */
169
170static const char *
171parse_ulo16 (cd, strp, opindex, valuep)
172 CGEN_CPU_DESC cd;
173 const char **strp;
174 int opindex;
175 unsigned long *valuep;
176{
177 const char *errmsg;
178 enum cgen_parse_operand_result result_type;
179 bfd_vma value;
180
181 if (**strp == '#')
182 ++*strp;
183
184 if (strncasecmp (*strp, "low(", 4) == 0)
185 {
186 *strp += 4;
187 errmsg = cgen_parse_address (cd, strp, opindex, BFD_RELOC_M32R_LO16,
188 &result_type, &value);
189 if (**strp != ')')
190 return "missing `)'";
191 ++*strp;
192 if (errmsg == NULL
193 && result_type == CGEN_PARSE_OPERAND_RESULT_NUMBER)
194 value &= 0xffff;
195 *valuep = value;
196 return errmsg;
197 }
198
199 return cgen_parse_unsigned_integer (cd, strp, opindex, valuep);
200}
201
202/* -- */
203
204/* Main entry point for operand parsing.
205
206 This function is basically just a big switch statement. Earlier versions
207 used tables to look up the function to use, but
208 - if the table contains both assembler and disassembler functions then
209 the disassembler contains much of the assembler and vice-versa,
210 - there's a lot of inlining possibilities as things grow,
211 - using a switch statement avoids the function call overhead.
212
213 This function could be moved into `parse_insn_normal', but keeping it
214 separate makes clear the interface between `parse_insn_normal' and each of
215 the handlers.
216*/
217
218const char *
219m32r_cgen_parse_operand (cd, opindex, strp, fields)
220 CGEN_CPU_DESC cd;
221 int opindex;
222 const char ** strp;
223 CGEN_FIELDS * fields;
224{
eb1b03df
DE
225 const char * errmsg = NULL;
226 /* Used by scalar operands that still need to be parsed. */
227 long junk;
252b5132
RH
228
229 switch (opindex)
230 {
1fa60b5d
DE
231 case M32R_OPERAND_ACC :
232 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_h_accums, & fields->f_acc);
233 break;
234 case M32R_OPERAND_ACCD :
235 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_h_accums, & fields->f_accd);
236 break;
237 case M32R_OPERAND_ACCS :
238 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_h_accums, & fields->f_accs);
239 break;
252b5132
RH
240 case M32R_OPERAND_DCR :
241 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_cr_names, & fields->f_r1);
242 break;
243 case M32R_OPERAND_DISP16 :
244 {
245 bfd_vma value;
246 errmsg = cgen_parse_address (cd, strp, M32R_OPERAND_DISP16, 0, NULL, & value);
247 fields->f_disp16 = value;
248 }
249 break;
250 case M32R_OPERAND_DISP24 :
251 {
252 bfd_vma value;
253 errmsg = cgen_parse_address (cd, strp, M32R_OPERAND_DISP24, 0, NULL, & value);
254 fields->f_disp24 = value;
255 }
256 break;
257 case M32R_OPERAND_DISP8 :
258 {
259 bfd_vma value;
260 errmsg = cgen_parse_address (cd, strp, M32R_OPERAND_DISP8, 0, NULL, & value);
261 fields->f_disp8 = value;
262 }
263 break;
264 case M32R_OPERAND_DR :
265 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_gr_names, & fields->f_r1);
266 break;
267 case M32R_OPERAND_HASH :
eb1b03df 268 errmsg = parse_hash (cd, strp, M32R_OPERAND_HASH, &junk);
252b5132
RH
269 break;
270 case M32R_OPERAND_HI16 :
271 errmsg = parse_hi16 (cd, strp, M32R_OPERAND_HI16, &fields->f_hi16);
272 break;
1fa60b5d
DE
273 case M32R_OPERAND_IMM1 :
274 errmsg = cgen_parse_unsigned_integer (cd, strp, M32R_OPERAND_IMM1, &fields->f_imm1);
275 break;
252b5132
RH
276 case M32R_OPERAND_SCR :
277 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_cr_names, & fields->f_r2);
278 break;
279 case M32R_OPERAND_SIMM16 :
280 errmsg = cgen_parse_signed_integer (cd, strp, M32R_OPERAND_SIMM16, &fields->f_simm16);
281 break;
282 case M32R_OPERAND_SIMM8 :
283 errmsg = cgen_parse_signed_integer (cd, strp, M32R_OPERAND_SIMM8, &fields->f_simm8);
284 break;
285 case M32R_OPERAND_SLO16 :
286 errmsg = parse_slo16 (cd, strp, M32R_OPERAND_SLO16, &fields->f_simm16);
287 break;
288 case M32R_OPERAND_SR :
289 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_gr_names, & fields->f_r2);
290 break;
291 case M32R_OPERAND_SRC1 :
292 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_gr_names, & fields->f_r1);
293 break;
294 case M32R_OPERAND_SRC2 :
295 errmsg = cgen_parse_keyword (cd, strp, & m32r_cgen_opval_gr_names, & fields->f_r2);
296 break;
297 case M32R_OPERAND_UIMM16 :
298 errmsg = cgen_parse_unsigned_integer (cd, strp, M32R_OPERAND_UIMM16, &fields->f_uimm16);
299 break;
300 case M32R_OPERAND_UIMM24 :
301 {
302 bfd_vma value;
303 errmsg = cgen_parse_address (cd, strp, M32R_OPERAND_UIMM24, 0, NULL, & value);
304 fields->f_uimm24 = value;
305 }
306 break;
307 case M32R_OPERAND_UIMM4 :
308 errmsg = cgen_parse_unsigned_integer (cd, strp, M32R_OPERAND_UIMM4, &fields->f_uimm4);
309 break;
310 case M32R_OPERAND_UIMM5 :
311 errmsg = cgen_parse_unsigned_integer (cd, strp, M32R_OPERAND_UIMM5, &fields->f_uimm5);
312 break;
313 case M32R_OPERAND_ULO16 :
314 errmsg = parse_ulo16 (cd, strp, M32R_OPERAND_ULO16, &fields->f_uimm16);
315 break;
316
317 default :
318 /* xgettext:c-format */
319 fprintf (stderr, _("Unrecognized field %d while parsing.\n"), opindex);
320 abort ();
321 }
322
323 return errmsg;
324}
325
326cgen_parse_fn * const m32r_cgen_parse_handlers[] =
327{
328 parse_insn_normal,
329};
330
331void
332m32r_cgen_init_asm (cd)
333 CGEN_CPU_DESC cd;
334{
335 m32r_cgen_init_opcode_table (cd);
336 m32r_cgen_init_ibld_table (cd);
337 cd->parse_handlers = & m32r_cgen_parse_handlers[0];
338 cd->parse_operand = m32r_cgen_parse_operand;
339}
340
fc7bc883
RH
341\f
342
343/*
344 Regex construction routine.
345
346 This translates an opcode syntax string into a regex string,
347 by replacing any non-character syntax element (such as an
348 opcode) with the pattern '.*'
349
350 It then compiles the regex and stores it in the opcode, for
351 later use by m32r_cgen_assemble_insn
352
353 returns NULL for success, an error message for failure
354*/
355
356char *
357m32r_cgen_build_insn_regex (insn)
358 CGEN_INSN *insn;
359{
fc05c67f 360 CGEN_OPCODE *opc = (CGEN_OPCODE *) CGEN_INSN_OPCODE (insn);
fc7bc883
RH
361 const char *mnem = CGEN_INSN_MNEMONIC (insn);
362 int mnem_len;
363 char rxbuf[CGEN_MAX_RX_ELEMENTS];
364 char *rx = rxbuf;
365 const CGEN_SYNTAX_CHAR_TYPE *syn;
366 int reg_err;
367
368 syn = CGEN_SYNTAX_STRING (CGEN_OPCODE_SYNTAX (opc));
369
370 /* Mnemonics come first in the syntax string */
371 if (! CGEN_SYNTAX_MNEMONIC_P (* syn)) return "missing mnemonic in syntax string";
372 ++syn;
373
374 /* copy the literal mnemonic out of the insn */
375 memset (rx, 0, CGEN_MAX_RX_ELEMENTS);
376 mnem_len = strlen(mnem);
377 memcpy (rx, mnem, mnem_len);
378 rx += mnem_len;
379
380 /* copy any remaining literals from the syntax string into the rx */
381 for(; * syn != 0 && rx < rxbuf + (CGEN_MAX_RX_ELEMENTS - 9); ++syn, ++rx)
382 {
383 if (CGEN_SYNTAX_CHAR_P (* syn))
384 {
385 char tmp = CGEN_SYNTAX_CHAR (* syn);
386 switch (tmp)
387 {
388 /* escape any regex metacharacters in the syntax */
389 case '.': case '[': case '\\':
390 case '*': case '^': case '$':
391
392#ifdef CGEN_ESCAPE_EXTENDED_REGEX
393 case '?': case '{': case '}':
394 case '(': case ')': case '*':
395 case '|': case '+': case ']':
396#endif
397
398 * rx++ = '\\';
399 break;
400 }
401 /* insert syntax char into rx */
402 * rx = tmp;
403 }
404 else
405 {
406 /* replace non-syntax fields with globs */
407 * rx = '.';
408 * ++rx = '*';
409 }
410 }
411
412 /* trailing whitespace ok */
413 * rx++ = '[';
414 * rx++ = ' ';
415 * rx++ = '\t';
416 * rx++ = ']';
417 * rx++ = '*';
418
419 /* but anchor it after that */
420 * rx++ = '$';
421 * rx = '\0';
422
423 CGEN_INSN_RX (insn) = xmalloc (sizeof (regex_t));
424 reg_err = regcomp ((regex_t *) CGEN_INSN_RX (insn), rxbuf, REG_NOSUB|REG_ICASE);
425
426 if (reg_err == 0)
427 return NULL;
428 else
429 {
430 static char msg[80];
431 regerror (reg_err, (regex_t *) CGEN_INSN_RX (insn), msg, 80);
432 regfree ((regex_t *) CGEN_INSN_RX (insn));
433 free (CGEN_INSN_RX (insn));
434 (CGEN_INSN_RX (insn)) = NULL;
435 return msg;
436 }
437}
438
252b5132
RH
439\f
440/* Default insn parser.
441
442 The syntax string is scanned and operands are parsed and stored in FIELDS.
443 Relocs are queued as we go via other callbacks.
444
445 ??? Note that this is currently an all-or-nothing parser. If we fail to
446 parse the instruction, we return 0 and the caller will start over from
447 the beginning. Backtracking will be necessary in parsing subexpressions,
448 but that can be handled there. Not handling backtracking here may get
449 expensive in the case of the m68k. Deal with later.
450
451 Returns NULL for success, an error message for failure.
452*/
453
454static const char *
455parse_insn_normal (cd, insn, strp, fields)
456 CGEN_CPU_DESC cd;
457 const CGEN_INSN *insn;
458 const char **strp;
459 CGEN_FIELDS *fields;
460{
461 /* ??? Runtime added insns not handled yet. */
462 const CGEN_SYNTAX *syntax = CGEN_INSN_SYNTAX (insn);
463 const char *str = *strp;
464 const char *errmsg;
465 const char *p;
b3466c39 466 const CGEN_SYNTAX_CHAR_TYPE * syn;
252b5132
RH
467#ifdef CGEN_MNEMONIC_OPERANDS
468 /* FIXME: wip */
469 int past_opcode_p;
470#endif
471
472 /* For now we assume the mnemonic is first (there are no leading operands).
473 We can parse it without needing to set up operand parsing.
474 GAS's input scrubber will ensure mnemonics are lowercase, but we may
475 not be called from GAS. */
476 p = CGEN_INSN_MNEMONIC (insn);
3882b010 477 while (*p && TOLOWER (*p) == TOLOWER (*str))
252b5132 478 ++p, ++str;
1fa60b5d
DE
479
480 if (* p)
481 return _("unrecognized instruction");
482
483#ifndef CGEN_MNEMONIC_OPERANDS
3882b010 484 if (* str && !ISSPACE (* str))
252b5132 485 return _("unrecognized instruction");
1fa60b5d 486#endif
252b5132
RH
487
488 CGEN_INIT_PARSE (cd);
489 cgen_init_parse_operand (cd);
490#ifdef CGEN_MNEMONIC_OPERANDS
491 past_opcode_p = 0;
492#endif
493
494 /* We don't check for (*str != '\0') here because we want to parse
495 any trailing fake arguments in the syntax string. */
496 syn = CGEN_SYNTAX_STRING (syntax);
497
498 /* Mnemonics come first for now, ensure valid string. */
499 if (! CGEN_SYNTAX_MNEMONIC_P (* syn))
500 abort ();
501
502 ++syn;
503
504 while (* syn != 0)
505 {
506 /* Non operand chars must match exactly. */
507 if (CGEN_SYNTAX_CHAR_P (* syn))
508 {
1fa60b5d
DE
509 /* FIXME: While we allow for non-GAS callers above, we assume the
510 first char after the mnemonic part is a space. */
511 /* FIXME: We also take inappropriate advantage of the fact that
512 GAS's input scrubber will remove extraneous blanks. */
3882b010 513 if (TOLOWER (*str) == TOLOWER (CGEN_SYNTAX_CHAR (* syn)))
252b5132
RH
514 {
515#ifdef CGEN_MNEMONIC_OPERANDS
b3466c39 516 if (CGEN_SYNTAX_CHAR(* syn) == ' ')
252b5132
RH
517 past_opcode_p = 1;
518#endif
519 ++ syn;
520 ++ str;
521 }
b3466c39 522 else if (*str)
252b5132
RH
523 {
524 /* Syntax char didn't match. Can't be this insn. */
6bb95a0f
DB
525 static char msg [80];
526 /* xgettext:c-format */
527 sprintf (msg, _("syntax error (expected char `%c', found `%c')"),
b3466c39
DB
528 CGEN_SYNTAX_CHAR(*syn), *str);
529 return msg;
530 }
531 else
532 {
533 /* Ran out of input. */
534 static char msg [80];
535 /* xgettext:c-format */
536 sprintf (msg, _("syntax error (expected char `%c', found end of instruction)"),
537 CGEN_SYNTAX_CHAR(*syn));
6bb95a0f 538 return msg;
252b5132
RH
539 }
540 continue;
541 }
542
543 /* We have an operand of some sort. */
544 errmsg = m32r_cgen_parse_operand (cd, CGEN_SYNTAX_FIELD (*syn),
545 &str, fields);
546 if (errmsg)
547 return errmsg;
548
549 /* Done with this operand, continue with next one. */
550 ++ syn;
551 }
552
553 /* If we're at the end of the syntax string, we're done. */
b3466c39 554 if (* syn == 0)
252b5132
RH
555 {
556 /* FIXME: For the moment we assume a valid `str' can only contain
557 blanks now. IE: We needn't try again with a longer version of
558 the insn and it is assumed that longer versions of insns appear
559 before shorter ones (eg: lsr r2,r3,1 vs lsr r2,r3). */
3882b010 560 while (ISSPACE (* str))
252b5132
RH
561 ++ str;
562
563 if (* str != '\0')
564 return _("junk at end of line"); /* FIXME: would like to include `str' */
565
566 return NULL;
567 }
568
569 /* We couldn't parse it. */
570 return _("unrecognized instruction");
571}
572\f
573/* Main entry point.
574 This routine is called for each instruction to be assembled.
575 STR points to the insn to be assembled.
576 We assume all necessary tables have been initialized.
577 The assembled instruction, less any fixups, is stored in BUF.
578 Remember that if CGEN_INT_INSN_P then BUF is an int and thus the value
579 still needs to be converted to target byte order, otherwise BUF is an array
580 of bytes in target byte order.
581 The result is a pointer to the insn's entry in the opcode table,
582 or NULL if an error occured (an error message will have already been
583 printed).
584
585 Note that when processing (non-alias) macro-insns,
586 this function recurses.
587
588 ??? It's possible to make this cpu-independent.
589 One would have to deal with a few minor things.
590 At this point in time doing so would be more of a curiosity than useful
591 [for example this file isn't _that_ big], but keeping the possibility in
592 mind helps keep the design clean. */
593
594const CGEN_INSN *
595m32r_cgen_assemble_insn (cd, str, fields, buf, errmsg)
596 CGEN_CPU_DESC cd;
597 const char *str;
598 CGEN_FIELDS *fields;
599 CGEN_INSN_BYTES_PTR buf;
600 char **errmsg;
601{
602 const char *start;
603 CGEN_INSN_LIST *ilist;
b3466c39
DB
604 const char *parse_errmsg = NULL;
605 const char *insert_errmsg = NULL;
fc7bc883 606 int recognized_mnemonic = 0;
252b5132
RH
607
608 /* Skip leading white space. */
3882b010 609 while (ISSPACE (* str))
252b5132
RH
610 ++ str;
611
612 /* The instructions are stored in hashed lists.
613 Get the first in the list. */
614 ilist = CGEN_ASM_LOOKUP_INSN (cd, str);
615
616 /* Keep looking until we find a match. */
617
618 start = str;
619 for ( ; ilist != NULL ; ilist = CGEN_ASM_NEXT_INSN (ilist))
620 {
621 const CGEN_INSN *insn = ilist->insn;
fc7bc883 622 recognized_mnemonic = 1;
252b5132 623
cfcdbe97
AH
624#ifdef CGEN_VALIDATE_INSN_SUPPORTED
625 /* not usually needed as unsupported opcodes shouldn't be in the hash lists */
252b5132
RH
626 /* Is this insn supported by the selected cpu? */
627 if (! m32r_cgen_insn_supported (cd, insn))
628 continue;
629#endif
630
631 /* If the RELAX attribute is set, this is an insn that shouldn't be
632 chosen immediately. Instead, it is used during assembler/linker
633 relaxation if possible. */
634 if (CGEN_INSN_ATTR_VALUE (insn, CGEN_INSN_RELAX) != 0)
635 continue;
636
637 str = start;
638
fc7bc883
RH
639 /* skip this insn if str doesn't look right lexically */
640 if (CGEN_INSN_RX (insn) != NULL &&
641 regexec ((regex_t *) CGEN_INSN_RX (insn), str, 0, NULL, 0) == REG_NOMATCH)
642 continue;
643
252b5132
RH
644 /* Allow parse/insert handlers to obtain length of insn. */
645 CGEN_FIELDS_BITSIZE (fields) = CGEN_INSN_BITSIZE (insn);
646
b3466c39
DB
647 parse_errmsg = CGEN_PARSE_FN (cd, insn) (cd, insn, & str, fields);
648 if (parse_errmsg != NULL)
6bb95a0f 649 continue;
252b5132 650
6bb95a0f 651 /* ??? 0 is passed for `pc' */
b3466c39
DB
652 insert_errmsg = CGEN_INSERT_FN (cd, insn) (cd, insn, fields, buf,
653 (bfd_vma) 0);
654 if (insert_errmsg != NULL)
6bb95a0f
DB
655 continue;
656
657 /* It is up to the caller to actually output the insn and any
658 queued relocs. */
659 return insn;
252b5132
RH
660 }
661
252b5132 662 {
cfcdbe97 663 static char errbuf[150];
52646233 664#ifdef CGEN_VERBOSE_ASSEMBLER_ERRORS
b3466c39 665 const char *tmp_errmsg;
cfcdbe97 666
b3466c39
DB
667 /* If requesting verbose error messages, use insert_errmsg.
668 Failing that, use parse_errmsg */
669 tmp_errmsg = (insert_errmsg ? insert_errmsg :
670 parse_errmsg ? parse_errmsg :
fc7bc883 671 recognized_mnemonic ? _("unrecognized form of instruction") :
b3466c39
DB
672 _("unrecognized instruction"));
673
cfcdbe97
AH
674 if (strlen (start) > 50)
675 /* xgettext:c-format */
676 sprintf (errbuf, "%s `%.50s...'", tmp_errmsg, start);
677 else
678 /* xgettext:c-format */
679 sprintf (errbuf, "%s `%.50s'", tmp_errmsg, start);
680#else
252b5132
RH
681 if (strlen (start) > 50)
682 /* xgettext:c-format */
683 sprintf (errbuf, _("bad instruction `%.50s...'"), start);
684 else
685 /* xgettext:c-format */
686 sprintf (errbuf, _("bad instruction `%.50s'"), start);
cfcdbe97 687#endif
252b5132
RH
688
689 *errmsg = errbuf;
690 return NULL;
691 }
692}
693\f
694#if 0 /* This calls back to GAS which we can't do without care. */
695
696/* Record each member of OPVALS in the assembler's symbol table.
697 This lets GAS parse registers for us.
698 ??? Interesting idea but not currently used. */
699
700/* Record each member of OPVALS in the assembler's symbol table.
701 FIXME: Not currently used. */
702
703void
704m32r_cgen_asm_hash_keywords (cd, opvals)
705 CGEN_CPU_DESC cd;
706 CGEN_KEYWORD *opvals;
707{
708 CGEN_KEYWORD_SEARCH search = cgen_keyword_search_init (opvals, NULL);
709 const CGEN_KEYWORD_ENTRY * ke;
710
711 while ((ke = cgen_keyword_search_next (& search)) != NULL)
712 {
713#if 0 /* Unnecessary, should be done in the search routine. */
714 if (! m32r_cgen_opval_supported (ke))
715 continue;
716#endif
717 cgen_asm_record_register (cd, ke->name, ke->value);
718 }
719}
720
721#endif /* 0 */
This page took 0.173008 seconds and 4 git commands to generate.