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 "iq2000-desc.h"
34 #include "iq2000-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_mimm
PARAMS ((CGEN_CPU_DESC
, const char **, int, long *));
52 static const char * parse_imm
PARAMS ((CGEN_CPU_DESC
, const char **, int, unsigned long *));
53 static const char * parse_hi16
PARAMS ((CGEN_CPU_DESC
, const char **, int, unsigned long *));
54 static const char * parse_lo16
PARAMS ((CGEN_CPU_DESC
, const char **, int, long *));
56 /* Special check to ensure that instruction exists for given machine */
58 iq2000_cgen_insn_supported (cd
, insn
)
62 int machs
= cd
->machs
;
64 return ((CGEN_INSN_ATTR_VALUE (insn
, CGEN_INSN_MACH
) & machs
) != 0);
67 static int iq2000_cgen_isa_register (strp
)
72 if (**strp
== 'r' || **strp
== 'R')
78 if ('0' <= ch1
&& ch1
<= '9')
85 if (('1' <= ch1
&& ch1
<= '2') && ('0' <= ch2
&& ch2
<= '9'))
87 if ('3' == ch1
&& (ch2
== '0' || ch2
== '1'))
91 if (**strp
== '%' && tolower((*strp
)[1]) != 'l' && tolower((*strp
)[1]) != 'h')
96 /* Handle negated literal. */
99 parse_mimm (cd
, strp
, opindex
, valuep
)
108 /* Verify this isn't a register */
109 if (iq2000_cgen_isa_register (strp
))
110 errmsg
= _("immediate value cannot be register");
115 errmsg
= cgen_parse_signed_integer (cd
, strp
, opindex
, & value
);
118 long x
= (-value
) & 0xFFFF0000;
119 if (x
!= 0 && x
!= 0xFFFF0000)
120 errmsg
= _("immediate value out of range");
122 *valuep
= (-value
& 0xFFFF);
128 /* Handle signed/unsigned literal. */
131 parse_imm (cd
, strp
, opindex
, valuep
)
135 unsigned long *valuep
;
140 if (iq2000_cgen_isa_register (strp
))
141 errmsg
= _("immediate value cannot be register");
146 errmsg
= cgen_parse_signed_integer (cd
, strp
, opindex
, & value
);
149 long x
= value
& 0xFFFF0000;
150 if (x
!= 0 && x
!= 0xFFFF0000)
151 errmsg
= _("immediate value out of range");
153 *valuep
= (value
& 0xFFFF);
159 /* Handle iq10 21-bit jmp offset. */
162 parse_jtargq10 (cd
, strp
, opindex
, reloc
, type_addr
, valuep
)
167 enum cgen_parse_operand_result
*type_addr
;
168 unsigned long *valuep
;
172 enum cgen_parse_operand_result result_type
= CGEN_PARSE_OPERAND_RESULT_NUMBER
;
174 errmsg
= cgen_parse_address (cd
, strp
, opindex
, BFD_RELOC_IQ2000_OFFSET_21
,
175 &result_type
, &value
);
176 if (errmsg
== NULL
&& result_type
== CGEN_PARSE_OPERAND_RESULT_NUMBER
)
178 /* check value is within 23-bits (remembering that 2-bit shift right will occur) */
179 if (value
> 0x7fffff)
180 return _("21-bit offset out of range");
182 *valuep
= (value
& 0x7FFFFF);
189 parse_hi16 (cd
, strp
, opindex
, valuep
)
193 unsigned long *valuep
;
195 if (strncasecmp (*strp
, "%hi(", 4) == 0)
197 enum cgen_parse_operand_result result_type
;
202 errmsg
= cgen_parse_address (cd
, strp
, opindex
, BFD_RELOC_HI16
,
203 &result_type
, &value
);
205 return _("missing `)'");
209 && result_type
== CGEN_PARSE_OPERAND_RESULT_NUMBER
)
211 /* if value has top-bit of %lo on, then it will
212 sign-propagate and so we compensate by adding
213 1 to the resultant %hi value */
223 /* we add %uhi in case a user just wants the high 16-bits or is using
224 an insn like ori for %lo which does not sign-propagate */
225 if (strncasecmp (*strp
, "%uhi(", 5) == 0)
227 enum cgen_parse_operand_result result_type
;
232 errmsg
= cgen_parse_address (cd
, strp
, opindex
, BFD_RELOC_IQ2000_UHI16
,
233 &result_type
, &value
);
235 return _("missing `)'");
239 && result_type
== CGEN_PARSE_OPERAND_RESULT_NUMBER
)
248 return parse_imm (cd
, strp
, opindex
, valuep
);
251 /* Handle %lo in a signed context.
252 The signedness of the value doesn't matter to %lo(), but this also
253 handles the case where %lo() isn't present. */
256 parse_lo16 (cd
, strp
, opindex
, valuep
)
262 if (strncasecmp (*strp
, "%lo(", 4) == 0)
265 enum cgen_parse_operand_result result_type
;
269 errmsg
= cgen_parse_address (cd
, strp
, opindex
, BFD_RELOC_LO16
,
270 &result_type
, &value
);
272 return _("missing `)'");
275 && result_type
== CGEN_PARSE_OPERAND_RESULT_NUMBER
)
281 return parse_imm (cd
, strp
, opindex
, valuep
);
284 /* Handle %lo in a negated signed context.
285 The signedness of the value doesn't matter to %lo(), but this also
286 handles the case where %lo() isn't present. */
289 parse_mlo16 (cd
, strp
, opindex
, valuep
)
295 if (strncasecmp (*strp
, "%lo(", 4) == 0)
298 enum cgen_parse_operand_result result_type
;
302 errmsg
= cgen_parse_address (cd
, strp
, opindex
, BFD_RELOC_LO16
,
303 &result_type
, &value
);
305 return _("missing `)'");
308 && result_type
== CGEN_PARSE_OPERAND_RESULT_NUMBER
)
309 value
= (-value
) & 0xffff;
314 return parse_mimm (cd
, strp
, opindex
, valuep
);
319 const char * iq2000_cgen_parse_operand
320 PARAMS ((CGEN_CPU_DESC
, int, const char **, CGEN_FIELDS
*));
322 /* Main entry point for operand parsing.
324 This function is basically just a big switch statement. Earlier versions
325 used tables to look up the function to use, but
326 - if the table contains both assembler and disassembler functions then
327 the disassembler contains much of the assembler and vice-versa,
328 - there's a lot of inlining possibilities as things grow,
329 - using a switch statement avoids the function call overhead.
331 This function could be moved into `parse_insn_normal', but keeping it
332 separate makes clear the interface between `parse_insn_normal' and each of
336 iq2000_cgen_parse_operand (cd
, opindex
, strp
, fields
)
340 CGEN_FIELDS
* fields
;
342 const char * errmsg
= NULL
;
343 /* Used by scalar operands that still need to be parsed. */
344 long junk ATTRIBUTE_UNUSED
;
348 case IQ2000_OPERAND_BASE
:
349 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rs
);
351 case IQ2000_OPERAND_BASEOFF
:
354 errmsg
= cgen_parse_address (cd
, strp
, IQ2000_OPERAND_BASEOFF
, 0, NULL
, & value
);
355 fields
->f_imm
= value
;
358 case IQ2000_OPERAND_BITNUM
:
359 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_BITNUM
, &fields
->f_rt
);
361 case IQ2000_OPERAND_BYTECOUNT
:
362 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_BYTECOUNT
, &fields
->f_bytecount
);
364 case IQ2000_OPERAND_CAM_Y
:
365 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_CAM_Y
, &fields
->f_cam_y
);
367 case IQ2000_OPERAND_CAM_Z
:
368 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_CAM_Z
, &fields
->f_cam_z
);
370 case IQ2000_OPERAND_CM_3FUNC
:
371 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_CM_3FUNC
, &fields
->f_cm_3func
);
373 case IQ2000_OPERAND_CM_3Z
:
374 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_CM_3Z
, &fields
->f_cm_3z
);
376 case IQ2000_OPERAND_CM_4FUNC
:
377 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_CM_4FUNC
, &fields
->f_cm_4func
);
379 case IQ2000_OPERAND_CM_4Z
:
380 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_CM_4Z
, &fields
->f_cm_4z
);
382 case IQ2000_OPERAND_COUNT
:
383 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_COUNT
, &fields
->f_count
);
385 case IQ2000_OPERAND_EXECODE
:
386 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_EXECODE
, &fields
->f_excode
);
388 case IQ2000_OPERAND_F_INDEX
:
389 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_F_INDEX
, &fields
->f_index
);
391 case IQ2000_OPERAND_HI16
:
392 errmsg
= parse_hi16 (cd
, strp
, IQ2000_OPERAND_HI16
, &fields
->f_imm
);
394 case IQ2000_OPERAND_IMM
:
395 errmsg
= parse_imm (cd
, strp
, IQ2000_OPERAND_IMM
, &fields
->f_imm
);
397 case IQ2000_OPERAND_JMPTARG
:
400 errmsg
= cgen_parse_address (cd
, strp
, IQ2000_OPERAND_JMPTARG
, 0, NULL
, & value
);
401 fields
->f_jtarg
= value
;
404 case IQ2000_OPERAND_JMPTARGQ10
:
407 errmsg
= parse_jtargq10 (cd
, strp
, IQ2000_OPERAND_JMPTARGQ10
, 0, NULL
, & value
);
408 fields
->f_jtargq10
= value
;
411 case IQ2000_OPERAND_LO16
:
412 errmsg
= parse_lo16 (cd
, strp
, IQ2000_OPERAND_LO16
, &fields
->f_imm
);
414 case IQ2000_OPERAND_MASK
:
415 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_MASK
, &fields
->f_mask
);
417 case IQ2000_OPERAND_MASKL
:
418 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_MASKL
, &fields
->f_maskl
);
420 case IQ2000_OPERAND_MASKQ10
:
421 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_MASKQ10
, &fields
->f_maskq10
);
423 case IQ2000_OPERAND_MASKR
:
424 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_MASKR
, &fields
->f_rs
);
426 case IQ2000_OPERAND_MLO16
:
427 errmsg
= parse_mlo16 (cd
, strp
, IQ2000_OPERAND_MLO16
, &fields
->f_imm
);
429 case IQ2000_OPERAND_OFFSET
:
432 errmsg
= cgen_parse_address (cd
, strp
, IQ2000_OPERAND_OFFSET
, 0, NULL
, & value
);
433 fields
->f_offset
= value
;
436 case IQ2000_OPERAND_RD
:
437 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rd
);
439 case IQ2000_OPERAND_RD_RS
:
440 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rd_rs
);
442 case IQ2000_OPERAND_RD_RT
:
443 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rd_rt
);
445 case IQ2000_OPERAND_RS
:
446 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rs
);
448 case IQ2000_OPERAND_RT
:
449 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rt
);
451 case IQ2000_OPERAND_RT_RS
:
452 errmsg
= cgen_parse_keyword (cd
, strp
, & iq2000_cgen_opval_gr_names
, & fields
->f_rt_rs
);
454 case IQ2000_OPERAND_SHAMT
:
455 errmsg
= cgen_parse_unsigned_integer (cd
, strp
, IQ2000_OPERAND_SHAMT
, &fields
->f_shamt
);
459 /* xgettext:c-format */
460 fprintf (stderr
, _("Unrecognized field %d while parsing.\n"), opindex
);
467 cgen_parse_fn
* const iq2000_cgen_parse_handlers
[] =
473 iq2000_cgen_init_asm (cd
)
476 iq2000_cgen_init_opcode_table (cd
);
477 iq2000_cgen_init_ibld_table (cd
);
478 cd
->parse_handlers
= & iq2000_cgen_parse_handlers
[0];
479 cd
->parse_operand
= iq2000_cgen_parse_operand
;
484 /* Regex construction routine.
486 This translates an opcode syntax string into a regex string,
487 by replacing any non-character syntax element (such as an
488 opcode) with the pattern '.*'
490 It then compiles the regex and stores it in the opcode, for
491 later use by iq2000_cgen_assemble_insn
493 Returns NULL for success, an error message for failure. */
496 iq2000_cgen_build_insn_regex (insn
)
499 CGEN_OPCODE
*opc
= (CGEN_OPCODE
*) CGEN_INSN_OPCODE (insn
);
500 const char *mnem
= CGEN_INSN_MNEMONIC (insn
);
501 char rxbuf
[CGEN_MAX_RX_ELEMENTS
];
503 const CGEN_SYNTAX_CHAR_TYPE
*syn
;
506 syn
= CGEN_SYNTAX_STRING (CGEN_OPCODE_SYNTAX (opc
));
508 /* Mnemonics come first in the syntax string. */
509 if (! CGEN_SYNTAX_MNEMONIC_P (* syn
))
510 return _("missing mnemonic in syntax string");
513 /* Generate a case sensitive regular expression that emulates case
514 insensitive matching in the "C" locale. We cannot generate a case
515 insensitive regular expression because in Turkish locales, 'i' and 'I'
516 are not equal modulo case conversion. */
518 /* Copy the literal mnemonic out of the insn. */
519 for (; *mnem
; mnem
++)
534 /* Copy any remaining literals from the syntax string into the rx. */
535 for(; * syn
!= 0 && rx
<= rxbuf
+ (CGEN_MAX_RX_ELEMENTS
- 7 - 4); ++syn
)
537 if (CGEN_SYNTAX_CHAR_P (* syn
))
539 char c
= CGEN_SYNTAX_CHAR (* syn
);
543 /* Escape any regex metacharacters in the syntax. */
544 case '.': case '[': case '\\':
545 case '*': case '^': case '$':
547 #ifdef CGEN_ESCAPE_EXTENDED_REGEX
548 case '?': case '{': case '}':
549 case '(': case ')': case '*':
550 case '|': case '+': case ']':
571 /* Replace non-syntax fields with globs. */
577 /* Trailing whitespace ok. */
584 /* But anchor it after that. */
588 CGEN_INSN_RX (insn
) = xmalloc (sizeof (regex_t
));
589 reg_err
= regcomp ((regex_t
*) CGEN_INSN_RX (insn
), rxbuf
, REG_NOSUB
);
597 regerror (reg_err
, (regex_t
*) CGEN_INSN_RX (insn
), msg
, 80);
598 regfree ((regex_t
*) CGEN_INSN_RX (insn
));
599 free (CGEN_INSN_RX (insn
));
600 (CGEN_INSN_RX (insn
)) = NULL
;
606 /* Default insn parser.
608 The syntax string is scanned and operands are parsed and stored in FIELDS.
609 Relocs are queued as we go via other callbacks.
611 ??? Note that this is currently an all-or-nothing parser. If we fail to
612 parse the instruction, we return 0 and the caller will start over from
613 the beginning. Backtracking will be necessary in parsing subexpressions,
614 but that can be handled there. Not handling backtracking here may get
615 expensive in the case of the m68k. Deal with later.
617 Returns NULL for success, an error message for failure. */
620 parse_insn_normal (cd
, insn
, strp
, fields
)
622 const CGEN_INSN
*insn
;
626 /* ??? Runtime added insns not handled yet. */
627 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
628 const char *str
= *strp
;
631 const CGEN_SYNTAX_CHAR_TYPE
* syn
;
632 #ifdef CGEN_MNEMONIC_OPERANDS
637 /* For now we assume the mnemonic is first (there are no leading operands).
638 We can parse it without needing to set up operand parsing.
639 GAS's input scrubber will ensure mnemonics are lowercase, but we may
640 not be called from GAS. */
641 p
= CGEN_INSN_MNEMONIC (insn
);
642 while (*p
&& TOLOWER (*p
) == TOLOWER (*str
))
646 return _("unrecognized instruction");
648 #ifndef CGEN_MNEMONIC_OPERANDS
649 if (* str
&& ! ISSPACE (* str
))
650 return _("unrecognized instruction");
653 CGEN_INIT_PARSE (cd
);
654 cgen_init_parse_operand (cd
);
655 #ifdef CGEN_MNEMONIC_OPERANDS
659 /* We don't check for (*str != '\0') here because we want to parse
660 any trailing fake arguments in the syntax string. */
661 syn
= CGEN_SYNTAX_STRING (syntax
);
663 /* Mnemonics come first for now, ensure valid string. */
664 if (! CGEN_SYNTAX_MNEMONIC_P (* syn
))
671 /* Non operand chars must match exactly. */
672 if (CGEN_SYNTAX_CHAR_P (* syn
))
674 /* FIXME: While we allow for non-GAS callers above, we assume the
675 first char after the mnemonic part is a space. */
676 /* FIXME: We also take inappropriate advantage of the fact that
677 GAS's input scrubber will remove extraneous blanks. */
678 if (TOLOWER (*str
) == TOLOWER (CGEN_SYNTAX_CHAR (* syn
)))
680 #ifdef CGEN_MNEMONIC_OPERANDS
681 if (CGEN_SYNTAX_CHAR(* syn
) == ' ')
689 /* Syntax char didn't match. Can't be this insn. */
690 static char msg
[80];
692 /* xgettext:c-format */
693 sprintf (msg
, _("syntax error (expected char `%c', found `%c')"),
694 CGEN_SYNTAX_CHAR(*syn
), *str
);
699 /* Ran out of input. */
700 static char msg
[80];
702 /* xgettext:c-format */
703 sprintf (msg
, _("syntax error (expected char `%c', found end of instruction)"),
704 CGEN_SYNTAX_CHAR(*syn
));
710 /* We have an operand of some sort. */
711 errmsg
= cd
->parse_operand (cd
, CGEN_SYNTAX_FIELD (*syn
),
716 /* Done with this operand, continue with next one. */
720 /* If we're at the end of the syntax string, we're done. */
723 /* FIXME: For the moment we assume a valid `str' can only contain
724 blanks now. IE: We needn't try again with a longer version of
725 the insn and it is assumed that longer versions of insns appear
726 before shorter ones (eg: lsr r2,r3,1 vs lsr r2,r3). */
727 while (ISSPACE (* str
))
731 return _("junk at end of line"); /* FIXME: would like to include `str' */
736 /* We couldn't parse it. */
737 return _("unrecognized instruction");
741 This routine is called for each instruction to be assembled.
742 STR points to the insn to be assembled.
743 We assume all necessary tables have been initialized.
744 The assembled instruction, less any fixups, is stored in BUF.
745 Remember that if CGEN_INT_INSN_P then BUF is an int and thus the value
746 still needs to be converted to target byte order, otherwise BUF is an array
747 of bytes in target byte order.
748 The result is a pointer to the insn's entry in the opcode table,
749 or NULL if an error occured (an error message will have already been
752 Note that when processing (non-alias) macro-insns,
753 this function recurses.
755 ??? It's possible to make this cpu-independent.
756 One would have to deal with a few minor things.
757 At this point in time doing so would be more of a curiosity than useful
758 [for example this file isn't _that_ big], but keeping the possibility in
759 mind helps keep the design clean. */
762 iq2000_cgen_assemble_insn (cd
, str
, fields
, buf
, errmsg
)
766 CGEN_INSN_BYTES_PTR buf
;
770 CGEN_INSN_LIST
*ilist
;
771 const char *parse_errmsg
= NULL
;
772 const char *insert_errmsg
= NULL
;
773 int recognized_mnemonic
= 0;
775 /* Skip leading white space. */
776 while (ISSPACE (* str
))
779 /* The instructions are stored in hashed lists.
780 Get the first in the list. */
781 ilist
= CGEN_ASM_LOOKUP_INSN (cd
, str
);
783 /* Keep looking until we find a match. */
785 for ( ; ilist
!= NULL
; ilist
= CGEN_ASM_NEXT_INSN (ilist
))
787 const CGEN_INSN
*insn
= ilist
->insn
;
788 recognized_mnemonic
= 1;
790 #ifdef CGEN_VALIDATE_INSN_SUPPORTED
791 /* Not usually needed as unsupported opcodes
792 shouldn't be in the hash lists. */
793 /* Is this insn supported by the selected cpu? */
794 if (! iq2000_cgen_insn_supported (cd
, insn
))
797 /* If the RELAX attribute is set, this is an insn that shouldn't be
798 chosen immediately. Instead, it is used during assembler/linker
799 relaxation if possible. */
800 if (CGEN_INSN_ATTR_VALUE (insn
, CGEN_INSN_RELAX
) != 0)
805 /* Skip this insn if str doesn't look right lexically. */
806 if (CGEN_INSN_RX (insn
) != NULL
&&
807 regexec ((regex_t
*) CGEN_INSN_RX (insn
), str
, 0, NULL
, 0) == REG_NOMATCH
)
810 /* Allow parse/insert handlers to obtain length of insn. */
811 CGEN_FIELDS_BITSIZE (fields
) = CGEN_INSN_BITSIZE (insn
);
813 parse_errmsg
= CGEN_PARSE_FN (cd
, insn
) (cd
, insn
, & str
, fields
);
814 if (parse_errmsg
!= NULL
)
817 /* ??? 0 is passed for `pc'. */
818 insert_errmsg
= CGEN_INSERT_FN (cd
, insn
) (cd
, insn
, fields
, buf
,
820 if (insert_errmsg
!= NULL
)
823 /* It is up to the caller to actually output the insn and any
829 static char errbuf
[150];
830 #ifdef CGEN_VERBOSE_ASSEMBLER_ERRORS
831 const char *tmp_errmsg
;
833 /* If requesting verbose error messages, use insert_errmsg.
834 Failing that, use parse_errmsg. */
835 tmp_errmsg
= (insert_errmsg
? insert_errmsg
:
836 parse_errmsg
? parse_errmsg
:
837 recognized_mnemonic
?
838 _("unrecognized form of instruction") :
839 _("unrecognized instruction"));
841 if (strlen (start
) > 50)
842 /* xgettext:c-format */
843 sprintf (errbuf
, "%s `%.50s...'", tmp_errmsg
, start
);
845 /* xgettext:c-format */
846 sprintf (errbuf
, "%s `%.50s'", tmp_errmsg
, start
);
848 if (strlen (start
) > 50)
849 /* xgettext:c-format */
850 sprintf (errbuf
, _("bad instruction `%.50s...'"), start
);
852 /* xgettext:c-format */
853 sprintf (errbuf
, _("bad instruction `%.50s'"), start
);
861 #if 0 /* This calls back to GAS which we can't do without care. */
863 /* Record each member of OPVALS in the assembler's symbol table.
864 This lets GAS parse registers for us.
865 ??? Interesting idea but not currently used. */
867 /* Record each member of OPVALS in the assembler's symbol table.
868 FIXME: Not currently used. */
871 iq2000_cgen_asm_hash_keywords (cd
, opvals
)
873 CGEN_KEYWORD
*opvals
;
875 CGEN_KEYWORD_SEARCH search
= cgen_keyword_search_init (opvals
, NULL
);
876 const CGEN_KEYWORD_ENTRY
* ke
;
878 while ((ke
= cgen_keyword_search_next (& search
)) != NULL
)
880 #if 0 /* Unnecessary, should be done in the search routine. */
881 if (! iq2000_cgen_opval_supported (ke
))
884 cgen_asm_record_register (cd
, ke
->name
, ke
->value
);