1 /* Assembler interface for targets using CGEN. -*- C -*-
2 CGEN: Cpu tools GENerator
4 THIS FILE IS MACHINE GENERATED WITH CGEN.
5 - the resultant file is machine generated, cgen-asm.in isn't
7 Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
9 This file is part of the GNU Binutils and GDB, the GNU debugger.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software Foundation, Inc.,
23 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 /* ??? Eventually more and more of this stuff can go to cpu-independent files.
33 #include "xstormy16-desc.h"
34 #include "xstormy16-opc.h"
37 #include "libiberty.h"
38 #include "safe-ctype.h"
41 #define min(a,b) ((a) < (b) ? (a) : (b))
43 #define max(a,b) ((a) > (b) ? (a) : (b))
45 static const char * parse_insn_normal
46 PARAMS ((CGEN_CPU_DESC
, const CGEN_INSN
*, const char **, CGEN_FIELDS
*));
48 /* -- assembler routines inserted here. */
51 static const char * parse_mem8
52 PARAMS ((CGEN_CPU_DESC
, const char **, int, unsigned long *));
53 static const char * parse_small_immediate
54 PARAMS ((CGEN_CPU_DESC
, const char **, int, unsigned long *));
55 static const char * parse_immediate16
56 PARAMS ((CGEN_CPU_DESC
, const char **, int, unsigned long *));
58 /* The machine-independent code doesn't know how to disambiguate
62 where 'foo' is a label. This helps it out. */
65 parse_mem8 (cd
, strp
, opindex
, valuep
)
69 unsigned long *valuep
;
73 const char *s
= *strp
;
75 if (s
[1] == '-' && s
[2] == '-')
76 return _("Bad register in preincrement");
78 while (ISALNUM (*++s
))
80 if (s
[0] == '+' && s
[1] == '+' && (s
[2] == ')' || s
[2] == ','))
81 return _("Bad register in postincrement");
82 if (s
[0] == ',' || s
[0] == ')')
83 return _("Bad register name");
85 else if (cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_names
,
87 return _("Label conflicts with register name");
88 else if (strncasecmp (*strp
, "rx,", 3) == 0
89 || strncasecmp (*strp
, "rxl,", 3) == 0
90 || strncasecmp (*strp
, "rxh,", 3) == 0)
91 return _("Label conflicts with `Rx'");
92 else if (**strp
== '#')
93 return _("Bad immediate expression");
95 return cgen_parse_unsigned_integer (cd
, strp
, opindex
, valuep
);
98 /* For the add and subtract instructions, there are two immediate forms,
99 one for small operands and one for large ones. We want to use
100 the small one when possible, but we do not want to generate relocs
101 of the small size. This is somewhat tricky. */
104 parse_small_immediate (cd
, strp
, opindex
, valuep
)
108 unsigned long *valuep
;
111 enum cgen_parse_operand_result result
;
115 return _("No relocation for small immediate");
117 errmsg
= (* cd
->parse_operand_fn
)
118 (cd
, CGEN_PARSE_OPERAND_INTEGER
, strp
, opindex
, BFD_RELOC_NONE
,
124 if (result
!= CGEN_PARSE_OPERAND_RESULT_NUMBER
)
125 return _("Small operand was not an immediate number");
131 /* Literal scan be either a normal literal, a @hi() or @lo relocation. */
134 parse_immediate16 (cd
, strp
, opindex
, valuep
)
138 unsigned long *valuep
;
141 enum cgen_parse_operand_result result
;
142 bfd_reloc_code_real_type code
= BFD_RELOC_NONE
;
145 if (strncmp (*strp
, "@hi(", 4) == 0)
148 code
= BFD_RELOC_HI16
;
151 if (strncmp (*strp
, "@lo(", 4) == 0)
154 code
= BFD_RELOC_LO16
;
157 if (code
== BFD_RELOC_NONE
)
158 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, opindex
, valuep
);
161 errmsg
= cgen_parse_address (cd
, strp
, opindex
, code
, &result
, &value
);
162 if ((errmsg
== NULL
) &&
163 (result
!= CGEN_PARSE_OPERAND_RESULT_QUEUED
))
164 errmsg
= _("Operand is not a symbol");
167 if ((code
== BFD_RELOC_HI16
|| code
== BFD_RELOC_LO16
)
172 errmsg
= _("Syntax error: No trailing ')'");
180 const char * xstormy16_cgen_parse_operand
181 PARAMS ((CGEN_CPU_DESC
, int, const char **, CGEN_FIELDS
*));
183 /* Main entry point for operand parsing.
185 This function is basically just a big switch statement. Earlier versions
186 used tables to look up the function to use, but
187 - if the table contains both assembler and disassembler functions then
188 the disassembler contains much of the assembler and vice-versa,
189 - there's a lot of inlining possibilities as things grow,
190 - using a switch statement avoids the function call overhead.
192 This function could be moved into `parse_insn_normal', but keeping it
193 separate makes clear the interface between `parse_insn_normal' and each of
197 xstormy16_cgen_parse_operand (cd
, opindex
, strp
, fields
)
201 CGEN_FIELDS
* fields
;
203 const char * errmsg
= NULL
;
204 /* Used by scalar operands that still need to be parsed. */
205 long junk ATTRIBUTE_UNUSED
;
209 case XSTORMY16_OPERAND_RB
:
210 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_Rb_names
, & fields
->f_Rb
);
212 case XSTORMY16_OPERAND_RBJ
:
213 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_Rb_names
, & fields
->f_Rbj
);
215 case XSTORMY16_OPERAND_RD
:
216 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_names
, & fields
->f_Rd
);
218 case XSTORMY16_OPERAND_RDM
:
219 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_names
, & fields
->f_Rdm
);
221 case XSTORMY16_OPERAND_RM
:
222 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_names
, & fields
->f_Rm
);
224 case XSTORMY16_OPERAND_RS
:
225 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_gr_names
, & fields
->f_Rs
);
227 case XSTORMY16_OPERAND_ABS24
:
228 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_ABS24
, &fields
->f_abs24
);
230 case XSTORMY16_OPERAND_BCOND2
:
231 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_h_branchcond
, & fields
->f_op2
);
233 case XSTORMY16_OPERAND_BCOND5
:
234 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_h_branchcond
, & fields
->f_op5
);
236 case XSTORMY16_OPERAND_HMEM8
:
237 errmsg
= parse_mem8 (cd
, strp
, XSTORMY16_OPERAND_HMEM8
, &fields
->f_hmem8
);
239 case XSTORMY16_OPERAND_IMM12
:
240 errmsg
= cgen_parse_signed_integer (cd
, strp
, XSTORMY16_OPERAND_IMM12
, &fields
->f_imm12
);
242 case XSTORMY16_OPERAND_IMM16
:
243 errmsg
= parse_immediate16 (cd
, strp
, XSTORMY16_OPERAND_IMM16
, &fields
->f_imm16
);
245 case XSTORMY16_OPERAND_IMM2
:
246 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_IMM2
, &fields
->f_imm2
);
248 case XSTORMY16_OPERAND_IMM3
:
249 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_IMM3
, &fields
->f_imm3
);
251 case XSTORMY16_OPERAND_IMM3B
:
252 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_IMM3B
, &fields
->f_imm3b
);
254 case XSTORMY16_OPERAND_IMM4
:
255 errmsg
= parse_small_immediate (cd
, strp
, XSTORMY16_OPERAND_IMM4
, &fields
->f_imm4
);
257 case XSTORMY16_OPERAND_IMM8
:
258 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_IMM8
, &fields
->f_imm8
);
260 case XSTORMY16_OPERAND_IMM8SMALL
:
261 errmsg
= parse_small_immediate (cd
, strp
, XSTORMY16_OPERAND_IMM8SMALL
, &fields
->f_imm8
);
263 case XSTORMY16_OPERAND_LMEM8
:
264 errmsg
= parse_mem8 (cd
, strp
, XSTORMY16_OPERAND_LMEM8
, &fields
->f_lmem8
);
266 case XSTORMY16_OPERAND_REL12
:
267 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_REL12
, &fields
->f_rel12
);
269 case XSTORMY16_OPERAND_REL12A
:
270 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_REL12A
, &fields
->f_rel12a
);
272 case XSTORMY16_OPERAND_REL8_2
:
273 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_REL8_2
, &fields
->f_rel8_2
);
275 case XSTORMY16_OPERAND_REL8_4
:
276 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, XSTORMY16_OPERAND_REL8_4
, &fields
->f_rel8_4
);
278 case XSTORMY16_OPERAND_WS2
:
279 errmsg
= cgen_parse_keyword (cd
, strp
, & xstormy16_cgen_opval_h_wordsize
, & fields
->f_op2m
);
283 /* xgettext:c-format */
284 fprintf (stderr
, _("Unrecognized field %d while parsing.\n"), opindex
);
291 cgen_parse_fn
* const xstormy16_cgen_parse_handlers
[] =
297 xstormy16_cgen_init_asm (cd
)
300 xstormy16_cgen_init_opcode_table (cd
);
301 xstormy16_cgen_init_ibld_table (cd
);
302 cd
->parse_handlers
= & xstormy16_cgen_parse_handlers
[0];
303 cd
->parse_operand
= xstormy16_cgen_parse_operand
;
308 /* Regex construction routine.
310 This translates an opcode syntax string into a regex string,
311 by replacing any non-character syntax element (such as an
312 opcode) with the pattern '.*'
314 It then compiles the regex and stores it in the opcode, for
315 later use by xstormy16_cgen_assemble_insn
317 Returns NULL for success, an error message for failure. */
320 xstormy16_cgen_build_insn_regex (insn
)
323 CGEN_OPCODE
*opc
= (CGEN_OPCODE
*) CGEN_INSN_OPCODE (insn
);
324 const char *mnem
= CGEN_INSN_MNEMONIC (insn
);
325 char rxbuf
[CGEN_MAX_RX_ELEMENTS
];
327 const CGEN_SYNTAX_CHAR_TYPE
*syn
;
330 syn
= CGEN_SYNTAX_STRING (CGEN_OPCODE_SYNTAX (opc
));
332 /* Mnemonics come first in the syntax string. */
333 if (! CGEN_SYNTAX_MNEMONIC_P (* syn
))
334 return _("missing mnemonic in syntax string");
337 /* Generate a case sensitive regular expression that emulates case
338 insensitive matching in the "C" locale. We cannot generate a case
339 insensitive regular expression because in Turkish locales, 'i' and 'I'
340 are not equal modulo case conversion. */
342 /* Copy the literal mnemonic out of the insn. */
343 for (; *mnem
; mnem
++)
358 /* Copy any remaining literals from the syntax string into the rx. */
359 for(; * syn
!= 0 && rx
<= rxbuf
+ (CGEN_MAX_RX_ELEMENTS
- 7 - 4); ++syn
)
361 if (CGEN_SYNTAX_CHAR_P (* syn
))
363 char c
= CGEN_SYNTAX_CHAR (* syn
);
367 /* Escape any regex metacharacters in the syntax. */
368 case '.': case '[': case '\\':
369 case '*': case '^': case '$':
371 #ifdef CGEN_ESCAPE_EXTENDED_REGEX
372 case '?': case '{': case '}':
373 case '(': case ')': case '*':
374 case '|': case '+': case ']':
395 /* Replace non-syntax fields with globs. */
401 /* Trailing whitespace ok. */
408 /* But anchor it after that. */
412 CGEN_INSN_RX (insn
) = xmalloc (sizeof (regex_t
));
413 reg_err
= regcomp ((regex_t
*) CGEN_INSN_RX (insn
), rxbuf
, REG_NOSUB
);
421 regerror (reg_err
, (regex_t
*) CGEN_INSN_RX (insn
), msg
, 80);
422 regfree ((regex_t
*) CGEN_INSN_RX (insn
));
423 free (CGEN_INSN_RX (insn
));
424 (CGEN_INSN_RX (insn
)) = NULL
;
430 /* Default insn parser.
432 The syntax string is scanned and operands are parsed and stored in FIELDS.
433 Relocs are queued as we go via other callbacks.
435 ??? Note that this is currently an all-or-nothing parser. If we fail to
436 parse the instruction, we return 0 and the caller will start over from
437 the beginning. Backtracking will be necessary in parsing subexpressions,
438 but that can be handled there. Not handling backtracking here may get
439 expensive in the case of the m68k. Deal with later.
441 Returns NULL for success, an error message for failure. */
444 parse_insn_normal (cd
, insn
, strp
, fields
)
446 const CGEN_INSN
*insn
;
450 /* ??? Runtime added insns not handled yet. */
451 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
452 const char *str
= *strp
;
455 const CGEN_SYNTAX_CHAR_TYPE
* syn
;
456 #ifdef CGEN_MNEMONIC_OPERANDS
461 /* For now we assume the mnemonic is first (there are no leading operands).
462 We can parse it without needing to set up operand parsing.
463 GAS's input scrubber will ensure mnemonics are lowercase, but we may
464 not be called from GAS. */
465 p
= CGEN_INSN_MNEMONIC (insn
);
466 while (*p
&& TOLOWER (*p
) == TOLOWER (*str
))
470 return _("unrecognized instruction");
472 #ifndef CGEN_MNEMONIC_OPERANDS
473 if (* str
&& ! ISSPACE (* str
))
474 return _("unrecognized instruction");
477 CGEN_INIT_PARSE (cd
);
478 cgen_init_parse_operand (cd
);
479 #ifdef CGEN_MNEMONIC_OPERANDS
483 /* We don't check for (*str != '\0') here because we want to parse
484 any trailing fake arguments in the syntax string. */
485 syn
= CGEN_SYNTAX_STRING (syntax
);
487 /* Mnemonics come first for now, ensure valid string. */
488 if (! CGEN_SYNTAX_MNEMONIC_P (* syn
))
495 /* Non operand chars must match exactly. */
496 if (CGEN_SYNTAX_CHAR_P (* syn
))
498 /* FIXME: While we allow for non-GAS callers above, we assume the
499 first char after the mnemonic part is a space. */
500 /* FIXME: We also take inappropriate advantage of the fact that
501 GAS's input scrubber will remove extraneous blanks. */
502 if (TOLOWER (*str
) == TOLOWER (CGEN_SYNTAX_CHAR (* syn
)))
504 #ifdef CGEN_MNEMONIC_OPERANDS
505 if (CGEN_SYNTAX_CHAR(* syn
) == ' ')
513 /* Syntax char didn't match. Can't be this insn. */
514 static char msg
[80];
516 /* xgettext:c-format */
517 sprintf (msg
, _("syntax error (expected char `%c', found `%c')"),
518 CGEN_SYNTAX_CHAR(*syn
), *str
);
523 /* Ran out of input. */
524 static char msg
[80];
526 /* xgettext:c-format */
527 sprintf (msg
, _("syntax error (expected char `%c', found end of instruction)"),
528 CGEN_SYNTAX_CHAR(*syn
));
534 /* We have an operand of some sort. */
535 errmsg
= cd
->parse_operand (cd
, CGEN_SYNTAX_FIELD (*syn
),
540 /* Done with this operand, continue with next one. */
544 /* If we're at the end of the syntax string, we're done. */
547 /* FIXME: For the moment we assume a valid `str' can only contain
548 blanks now. IE: We needn't try again with a longer version of
549 the insn and it is assumed that longer versions of insns appear
550 before shorter ones (eg: lsr r2,r3,1 vs lsr r2,r3). */
551 while (ISSPACE (* str
))
555 return _("junk at end of line"); /* FIXME: would like to include `str' */
560 /* We couldn't parse it. */
561 return _("unrecognized instruction");
565 This routine is called for each instruction to be assembled.
566 STR points to the insn to be assembled.
567 We assume all necessary tables have been initialized.
568 The assembled instruction, less any fixups, is stored in BUF.
569 Remember that if CGEN_INT_INSN_P then BUF is an int and thus the value
570 still needs to be converted to target byte order, otherwise BUF is an array
571 of bytes in target byte order.
572 The result is a pointer to the insn's entry in the opcode table,
573 or NULL if an error occured (an error message will have already been
576 Note that when processing (non-alias) macro-insns,
577 this function recurses.
579 ??? It's possible to make this cpu-independent.
580 One would have to deal with a few minor things.
581 At this point in time doing so would be more of a curiosity than useful
582 [for example this file isn't _that_ big], but keeping the possibility in
583 mind helps keep the design clean. */
586 xstormy16_cgen_assemble_insn (cd
, str
, fields
, buf
, errmsg
)
590 CGEN_INSN_BYTES_PTR buf
;
594 CGEN_INSN_LIST
*ilist
;
595 const char *parse_errmsg
= NULL
;
596 const char *insert_errmsg
= NULL
;
597 int recognized_mnemonic
= 0;
599 /* Skip leading white space. */
600 while (ISSPACE (* str
))
603 /* The instructions are stored in hashed lists.
604 Get the first in the list. */
605 ilist
= CGEN_ASM_LOOKUP_INSN (cd
, str
);
607 /* Keep looking until we find a match. */
609 for ( ; ilist
!= NULL
; ilist
= CGEN_ASM_NEXT_INSN (ilist
))
611 const CGEN_INSN
*insn
= ilist
->insn
;
612 recognized_mnemonic
= 1;
614 #ifdef CGEN_VALIDATE_INSN_SUPPORTED
615 /* Not usually needed as unsupported opcodes
616 shouldn't be in the hash lists. */
617 /* Is this insn supported by the selected cpu? */
618 if (! xstormy16_cgen_insn_supported (cd
, insn
))
621 /* If the RELAX attribute is set, this is an insn that shouldn't be
622 chosen immediately. Instead, it is used during assembler/linker
623 relaxation if possible. */
624 if (CGEN_INSN_ATTR_VALUE (insn
, CGEN_INSN_RELAX
) != 0)
629 /* Skip this insn if str doesn't look right lexically. */
630 if (CGEN_INSN_RX (insn
) != NULL
&&
631 regexec ((regex_t
*) CGEN_INSN_RX (insn
), str
, 0, NULL
, 0) == REG_NOMATCH
)
634 /* Allow parse/insert handlers to obtain length of insn. */
635 CGEN_FIELDS_BITSIZE (fields
) = CGEN_INSN_BITSIZE (insn
);
637 parse_errmsg
= CGEN_PARSE_FN (cd
, insn
) (cd
, insn
, & str
, fields
);
638 if (parse_errmsg
!= NULL
)
641 /* ??? 0 is passed for `pc'. */
642 insert_errmsg
= CGEN_INSERT_FN (cd
, insn
) (cd
, insn
, fields
, buf
,
644 if (insert_errmsg
!= NULL
)
647 /* It is up to the caller to actually output the insn and any
653 static char errbuf
[150];
654 #ifdef CGEN_VERBOSE_ASSEMBLER_ERRORS
655 const char *tmp_errmsg
;
657 /* If requesting verbose error messages, use insert_errmsg.
658 Failing that, use parse_errmsg. */
659 tmp_errmsg
= (insert_errmsg
? insert_errmsg
:
660 parse_errmsg
? parse_errmsg
:
661 recognized_mnemonic
?
662 _("unrecognized form of instruction") :
663 _("unrecognized instruction"));
665 if (strlen (start
) > 50)
666 /* xgettext:c-format */
667 sprintf (errbuf
, "%s `%.50s...'", tmp_errmsg
, start
);
669 /* xgettext:c-format */
670 sprintf (errbuf
, "%s `%.50s'", tmp_errmsg
, start
);
672 if (strlen (start
) > 50)
673 /* xgettext:c-format */
674 sprintf (errbuf
, _("bad instruction `%.50s...'"), start
);
676 /* xgettext:c-format */
677 sprintf (errbuf
, _("bad instruction `%.50s'"), start
);
685 #if 0 /* This calls back to GAS which we can't do without care. */
687 /* Record each member of OPVALS in the assembler's symbol table.
688 This lets GAS parse registers for us.
689 ??? Interesting idea but not currently used. */
691 /* Record each member of OPVALS in the assembler's symbol table.
692 FIXME: Not currently used. */
695 xstormy16_cgen_asm_hash_keywords (cd
, opvals
)
697 CGEN_KEYWORD
*opvals
;
699 CGEN_KEYWORD_SEARCH search
= cgen_keyword_search_init (opvals
, NULL
);
700 const CGEN_KEYWORD_ENTRY
* ke
;
702 while ((ke
= cgen_keyword_search_next (& search
)) != NULL
)
704 #if 0 /* Unnecessary, should be done in the search routine. */
705 if (! xstormy16_cgen_opval_supported (ke
))
708 cgen_asm_record_register (cd
, ke
->name
, ke
->value
);