1 /* CGEN generic assembler support code.
3 Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
5 This file is part of the GNU Binutils and GDB, the GNU debugger.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 #include "libiberty.h"
25 #include "safe-ctype.h"
28 #include "opcode/cgen.h"
31 static CGEN_INSN_LIST
* hash_insn_array
PARAMS ((CGEN_CPU_DESC
, const CGEN_INSN
*, int, int, CGEN_INSN_LIST
**, CGEN_INSN_LIST
*));
32 static CGEN_INSN_LIST
* hash_insn_list
PARAMS ((CGEN_CPU_DESC
, const CGEN_INSN_LIST
*, CGEN_INSN_LIST
**, CGEN_INSN_LIST
*));
33 static void build_asm_hash_table
PARAMS ((CGEN_CPU_DESC
));
35 /* Set the cgen_parse_operand_fn callback. */
38 cgen_set_parse_operand_fn (cd
, fn
)
40 cgen_parse_operand_fn fn
;
42 cd
->parse_operand_fn
= fn
;
45 /* Called whenever starting to parse an insn. */
48 cgen_init_parse_operand (cd
)
51 /* This tells the callback to re-initialize. */
52 (void) (* cd
->parse_operand_fn
)
53 (cd
, CGEN_PARSE_OPERAND_INIT
, NULL
, 0, 0, NULL
, NULL
);
56 /* Subroutine of build_asm_hash_table to add INSNS to the hash table.
58 COUNT is the number of elements in INSNS.
59 ENTSIZE is sizeof (CGEN_IBASE) for the target.
60 ??? No longer used but leave in for now.
61 HTABLE points to the hash table.
62 HENTBUF is a pointer to sufficiently large buffer of hash entries.
63 The result is a pointer to the next entry to use.
65 The table is scanned backwards as additions are made to the front of the
66 list and we want earlier ones to be prefered. */
68 static CGEN_INSN_LIST
*
69 hash_insn_array (cd
, insns
, count
, entsize
, htable
, hentbuf
)
71 const CGEN_INSN
*insns
;
73 int entsize ATTRIBUTE_UNUSED
;
74 CGEN_INSN_LIST
**htable
;
75 CGEN_INSN_LIST
*hentbuf
;
79 for (i
= count
- 1; i
>= 0; --i
, ++hentbuf
)
82 const CGEN_INSN
*insn
= &insns
[i
];
84 if (! (* cd
->asm_hash_p
) (insn
))
86 hash
= (* cd
->asm_hash
) (CGEN_INSN_MNEMONIC (insn
));
87 hentbuf
->next
= htable
[hash
];
89 htable
[hash
] = hentbuf
;
95 /* Subroutine of build_asm_hash_table to add INSNS to the hash table.
96 This function is identical to hash_insn_array except the insns are
99 static CGEN_INSN_LIST
*
100 hash_insn_list (cd
, insns
, htable
, hentbuf
)
102 const CGEN_INSN_LIST
*insns
;
103 CGEN_INSN_LIST
**htable
;
104 CGEN_INSN_LIST
*hentbuf
;
106 const CGEN_INSN_LIST
*ilist
;
108 for (ilist
= insns
; ilist
!= NULL
; ilist
= ilist
->next
, ++ hentbuf
)
112 if (! (* cd
->asm_hash_p
) (ilist
->insn
))
114 hash
= (* cd
->asm_hash
) (CGEN_INSN_MNEMONIC (ilist
->insn
));
115 hentbuf
->next
= htable
[hash
];
116 hentbuf
->insn
= ilist
->insn
;
117 htable
[hash
] = hentbuf
;
123 /* Build the assembler instruction hash table. */
126 build_asm_hash_table (cd
)
129 int count
= cgen_insn_count (cd
) + cgen_macro_insn_count (cd
);
130 CGEN_INSN_TABLE
*insn_table
= &cd
->insn_table
;
131 CGEN_INSN_TABLE
*macro_insn_table
= &cd
->macro_insn_table
;
132 unsigned int hash_size
= cd
->asm_hash_size
;
133 CGEN_INSN_LIST
*hash_entry_buf
;
134 CGEN_INSN_LIST
**asm_hash_table
;
135 CGEN_INSN_LIST
*asm_hash_table_entries
;
137 /* The space allocated for the hash table consists of two parts:
138 the hash table and the hash lists. */
140 asm_hash_table
= (CGEN_INSN_LIST
**)
141 xmalloc (hash_size
* sizeof (CGEN_INSN_LIST
*));
142 memset (asm_hash_table
, 0, hash_size
* sizeof (CGEN_INSN_LIST
*));
143 asm_hash_table_entries
= hash_entry_buf
= (CGEN_INSN_LIST
*)
144 xmalloc (count
* sizeof (CGEN_INSN_LIST
));
146 /* Add compiled in insns.
147 Don't include the first one as it is a reserved entry. */
148 /* ??? It was the end of all hash chains, and also the special
149 "invalid insn" marker. May be able to do it differently now. */
151 hash_entry_buf
= hash_insn_array (cd
,
152 insn_table
->init_entries
+ 1,
153 insn_table
->num_init_entries
- 1,
154 insn_table
->entry_size
,
155 asm_hash_table
, hash_entry_buf
);
157 /* Add compiled in macro-insns. */
159 hash_entry_buf
= hash_insn_array (cd
, macro_insn_table
->init_entries
,
160 macro_insn_table
->num_init_entries
,
161 macro_insn_table
->entry_size
,
162 asm_hash_table
, hash_entry_buf
);
164 /* Add runtime added insns.
165 Later added insns will be prefered over earlier ones. */
167 hash_entry_buf
= hash_insn_list (cd
, insn_table
->new_entries
,
168 asm_hash_table
, hash_entry_buf
);
170 /* Add runtime added macro-insns. */
172 hash_insn_list (cd
, macro_insn_table
->new_entries
,
173 asm_hash_table
, hash_entry_buf
);
175 cd
->asm_hash_table
= asm_hash_table
;
176 cd
->asm_hash_table_entries
= asm_hash_table_entries
;
179 /* Return the first entry in the hash list for INSN. */
182 cgen_asm_lookup_insn (cd
, insn
)
188 if (cd
->asm_hash_table
== NULL
)
189 build_asm_hash_table (cd
);
191 hash
= (* cd
->asm_hash
) (insn
);
192 return cd
->asm_hash_table
[hash
];
196 The result is NULL upon success or an error message.
197 If successful, *STRP is updated to point passed the keyword.
199 ??? At present we have a static notion of how to pick out a keyword.
200 Later we can allow a target to customize this if necessary [say by
201 recording something in the keyword table]. */
204 cgen_parse_keyword (cd
, strp
, keyword_table
, valuep
)
205 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
207 CGEN_KEYWORD
*keyword_table
;
210 const CGEN_KEYWORD_ENTRY
*ke
;
212 const char *p
,*start
;
214 if (keyword_table
->name_hash_table
== NULL
)
215 (void) cgen_keyword_search_init (keyword_table
, NULL
);
219 /* Allow any first character. This is to make life easier for
220 the fairly common case of suffixes, eg. 'ld.b.w', where the first
221 character of the suffix ('.') is special. */
225 /* Allow letters, digits, and any special characters. */
226 while (((p
- start
) < (int) sizeof (buf
))
230 || strchr (keyword_table
->nonalpha_chars
, *p
)))
233 if (p
- start
>= (int) sizeof (buf
))
235 /* All non-empty CGEN keywords can fit into BUF. The only thing
236 we can match here is the empty keyword. */
241 memcpy (buf
, start
, p
- start
);
245 ke
= cgen_keyword_lookup_name (keyword_table
, buf
);
250 /* Don't advance pointer if we recognized the null keyword. */
251 if (ke
->name
[0] != 0)
256 return "unrecognized keyword/register name";
259 /* Parse a small signed integer parser.
260 ??? VALUEP is not a bfd_vma * on purpose, though this is confusing.
261 Note that if the caller expects a bfd_vma result, it should call
262 cgen_parse_address. */
265 cgen_parse_signed_integer (cd
, strp
, opindex
, valuep
)
272 enum cgen_parse_operand_result result
;
275 errmsg
= (* cd
->parse_operand_fn
)
276 (cd
, CGEN_PARSE_OPERAND_INTEGER
, strp
, opindex
, BFD_RELOC_NONE
,
278 /* FIXME: Examine `result'. */
284 /* Parse a small unsigned integer parser.
285 ??? VALUEP is not a bfd_vma * on purpose, though this is confusing.
286 Note that if the caller expects a bfd_vma result, it should call
287 cgen_parse_address. */
290 cgen_parse_unsigned_integer (cd
, strp
, opindex
, valuep
)
294 unsigned long *valuep
;
297 enum cgen_parse_operand_result result
;
300 errmsg
= (* cd
->parse_operand_fn
)
301 (cd
, CGEN_PARSE_OPERAND_INTEGER
, strp
, opindex
, BFD_RELOC_NONE
,
303 /* FIXME: Examine `result'. */
309 /* Address parser. */
312 cgen_parse_address (cd
, strp
, opindex
, opinfo
, resultp
, valuep
)
317 enum cgen_parse_operand_result
*resultp
;
321 enum cgen_parse_operand_result result_type
;
324 errmsg
= (* cd
->parse_operand_fn
)
325 (cd
, CGEN_PARSE_OPERAND_ADDRESS
, strp
, opindex
, opinfo
,
326 &result_type
, &value
);
327 /* FIXME: Examine `result'. */
331 *resultp
= result_type
;
337 /* Signed integer validation routine. */
340 cgen_validate_signed_integer (value
, min
, max
)
341 long value
, min
, max
;
343 if (value
< min
|| value
> max
)
345 static char buf
[100];
347 /* xgettext:c-format */
348 sprintf (buf
, _("operand out of range (%ld not between %ld and %ld)"),
356 /* Unsigned integer validation routine.
357 Supplying `min' here may seem unnecessary, but we also want to handle
358 cases where min != 0 (and max > LONG_MAX). */
361 cgen_validate_unsigned_integer (value
, min
, max
)
362 unsigned long value
, min
, max
;
364 if (value
< min
|| value
> max
)
366 static char buf
[100];
368 /* xgettext:c-format */
369 sprintf (buf
, _("operand out of range (%lu not between %lu and %lu)"),