1 /* Header file for targets using CGEN: Cpu tools GENerator.
3 Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
5 This file is part of GDB, the GNU debugger, and the GNU Binutils.
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 of the License, or
10 (at your option) any later version.
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 /* ??? This file requires bfd.h but only to get bfd_vma.
25 Seems like an awful lot to require just to get such a fundamental type.
26 Perhaps the definition of bfd_vma can be moved outside of bfd.h.
27 Or perhaps one could duplicate its definition in another file.
28 Until such time, this file conditionally compiles definitions that require
29 bfd_vma using BFD_VERSION. */
31 /* Enums must be defined before they can be used.
32 Allow them to be used in struct definitions, even though the enum must
34 If CGEN_ARCH isn't defined, this file is being included by something other
35 than <arch>-desc.h. */
37 /* Prepend the arch name, defined in <arch>-desc.h, and _cgen_ to symbol S.
38 The lack of spaces in the arg list is important for non-stdc systems.
39 This file is included by <arch>-desc.h.
40 It can be included independently of <arch>-desc.h, in which case the arch
41 dependent portions will be declared as "unknown_cgen_foo". */
44 #define CGEN_SYM(s) CONCAT3 (unknown,_cgen_,s)
47 /* This file contains the static (unchanging) pieces and as much other stuff
48 as we can reasonably put here. It's generally cleaner to put stuff here
49 rather than having it machine generated if possible. */
51 /* The assembler syntax is made up of expressions (duh...).
52 At the lowest level the values are mnemonics, register names, numbers, etc.
53 Above that are subexpressions, if any (an example might be the
54 "effective address" in m68k cpus). Subexpressions are wip.
55 At the second highest level are the insns themselves. Above that are
56 pseudo-insns, synthetic insns, and macros, if any. */
58 /* Lots of cpu's have a fixed insn size, or one which rarely changes,
59 and it's generally easier to handle these by treating the insn as an
60 integer type, rather than an array of characters. So we allow targets
61 to control this. When an integer type the value is in host byte order,
62 when an array of characters the value is in target byte order. */
64 typedef unsigned int CGEN_INSN_INT;
66 typedef CGEN_INSN_INT CGEN_INSN_BYTES;
67 typedef CGEN_INSN_INT *CGEN_INSN_BYTES_PTR;
69 typedef unsigned char *CGEN_INSN_BYTES;
70 typedef unsigned char *CGEN_INSN_BYTES_PTR;
74 #define CGEN_INLINE __inline__
88 typedef struct cgen_insn CGEN_INSN;
90 /* Opaque pointer version for use by external world. */
92 typedef struct cgen_cpu_desc *CGEN_CPU_DESC;
95 Attributes are used to describe various random things associated with
96 an object (ifield, hardware, operand, insn, whatever) and are specified
98 Integer attributes computed at compile time are currently all that's
99 supported, though adding string attributes and run-time computation is
100 straightforward. Integer attribute values are always host int's
101 (signed or unsigned). For portability, this means 32 bits.
102 Integer attributes are further categorized as boolean, bitset, integer,
103 and enum types. Boolean attributes appear frequently enough that they're
104 recorded in one host int. This limits the maximum number of boolean
105 attributes to 32, though that's a *lot* of attributes. */
107 /* Type of attribute values. */
109 typedef int CGEN_ATTR_VALUE_TYPE;
111 /* Struct to record attribute information. */
115 /* Number of non-boolean attributes. */
116 unsigned int num_nonbools;
117 /* Boolean attributes. */
119 /* Non-boolean integer attributes. */
120 CGEN_ATTR_VALUE_TYPE nonbool[1];
123 /* Define a structure member for attributes with N non-boolean entries.
124 The attributes are sorted so that the non-boolean ones come first.
125 There is no maximum number of non-boolean attributes.
126 There is a maximum of 32 boolean attributes (since they are all recorded
129 #define CGEN_ATTR_TYPE(n) \
130 struct { unsigned int num_nonbools; \
132 CGEN_ATTR_VALUE_TYPE nonbool[(n) ? (n) : 1]; }
134 /* Return the boolean attributes. */
136 #define CGEN_ATTR_BOOLS(a) ((a)->bool)
138 /* Boolean attribute numbers are offset by this much. */
140 #define CGEN_ATTR_BOOL_OFFSET 32
142 /* Given a boolean attribute number, return its mask. */
144 #define CGEN_ATTR_MASK(attr) (1 << ((attr) - CGEN_ATTR_BOOL_OFFSET))
146 /* Return the value of boolean attribute ATTR in ATTRS. */
148 #define CGEN_BOOL_ATTR(attrs, attr) ((CGEN_ATTR_MASK (attr) & (attrs)) != 0)
150 /* Return value of attribute ATTR in ATTR_TABLE for OBJ.
151 OBJ is a pointer to the entity that has the attributes (not used at present
152 but is reserved for future purposes). */
154 #define CGEN_ATTR_VALUE(obj, attr_table, attr) \
155 ((unsigned int) (attr) < CGEN_ATTR_BOOL_OFFSET \
156 ? ((attr_table)->nonbool[attr]) \
157 : ((CGEN_ATTR_BOOLS (attr_table) & CGEN_ATTR_MASK (attr)) != 0))
159 /* Attribute name/value tables.
160 These are used to assist parsing of descriptions at run-time. */
165 CGEN_ATTR_VALUE_TYPE value;
168 /* For each domain (ifld,hw,operand,insn), list of attributes. */
173 const CGEN_ATTR_ENTRY * dfault;
174 const CGEN_ATTR_ENTRY * vals;
177 /* Parse result (also extraction result).
179 The result of parsing an insn is stored here.
180 To generate the actual insn, this is passed to the insert handler.
181 When printing an insn, the result of extraction is stored here.
182 To print the insn, this is passed to the print handler.
184 It is machine generated so we don't define it here,
185 but we do need a forward decl for the handler fns.
187 There is one member for each possible field in the insn.
188 The type depends on the field.
189 Also recorded here is the computed length of the insn for architectures
193 typedef struct cgen_fields CGEN_FIELDS;
195 /* Total length of the insn, as recorded in the `fields' struct. */
196 /* ??? The field insert handler has lots of opportunities for optimization
197 if it ever gets inlined. On architectures where insns all have the same
198 size, may wish to detect that and make this macro a constant - to allow
199 further optimizations. */
201 #define CGEN_FIELDS_BITSIZE(fields) ((fields)->length)
203 /* Extraction support for variable length insn sets. */
205 /* When disassembling we don't know the number of bytes to read at the start.
206 So the first CGEN_BASE_INSN_SIZE bytes are read at the start and the rest
207 are read when needed. This struct controls this. It is basically the
208 disassemble_info stuff, except that we provide a cache for values already
209 read (since bytes can typically be read several times to fetch multiple
210 operands that may be in them), and that extraction of fields is needed
211 in contexts other than disassembly. */
214 /* A pointer to the disassemble_info struct.
215 We don't require dis-asm.h so we use PTR for the type here.
216 If NULL, BYTES is full of valid data (VALID == -1). */
218 /* Points to a working buffer of sufficient size. */
219 unsigned char *insn_bytes;
220 /* Mask of bytes that are valid in INSN_BYTES. */
224 /* Associated with each insn or expression is a set of "handlers" for
225 performing operations like parsing, printing, etc. These require a bfd_vma
226 value to be passed around but we don't want all applications to need bfd.h.
227 So this stuff is only provided if bfd.h has been included. */
230 CD is a cpu table descriptor.
231 INSN is a pointer to a struct describing the insn being parsed.
232 STRP is a pointer to a pointer to the text being parsed.
233 FIELDS is a pointer to a cgen_fields struct in which the results are placed.
234 If the expression is successfully parsed, *STRP is updated.
235 If not it is left alone.
236 The result is NULL if success or an error message. */
237 typedef const char * (cgen_parse_fn)
238 PARAMS ((CGEN_CPU_DESC, const CGEN_INSN *insn_,
239 const char **strp_, CGEN_FIELDS *fields_));
242 CD is a cpu table descriptor.
243 INSN is a pointer to a struct describing the insn being parsed.
244 FIELDS is a pointer to a cgen_fields struct from which the values
246 INSNP is a pointer to a buffer in which to place the insn.
247 PC is the pc value of the insn.
248 The result is an error message or NULL if success. */
251 typedef const char * (cgen_insert_fn)
252 PARAMS ((CGEN_CPU_DESC, const CGEN_INSN *insn_,
253 CGEN_FIELDS *fields_, CGEN_INSN_BYTES_PTR insnp_,
256 typedef const char * (cgen_insert_fn) ();
260 CD is a cpu table descriptor.
261 INSN is a pointer to a struct describing the insn being parsed.
262 The second argument is a pointer to a struct controlling extraction
263 (only used for variable length insns).
264 EX_INFO is a pointer to a struct for controlling reading of further
266 BASE_INSN is the first CGEN_BASE_INSN_SIZE bytes (host order).
267 FIELDS is a pointer to a cgen_fields struct in which the results are placed.
268 PC is the pc value of the insn.
269 The result is the length of the insn in bits or zero if not recognized. */
272 typedef int (cgen_extract_fn)
273 PARAMS ((CGEN_CPU_DESC, const CGEN_INSN *insn_,
274 CGEN_EXTRACT_INFO *ex_info_, CGEN_INSN_INT base_insn_,
275 CGEN_FIELDS *fields_, bfd_vma pc_));
277 typedef int (cgen_extract_fn) ();
281 CD is a cpu table descriptor.
282 INFO is a pointer to the disassembly info.
283 Eg: disassemble_info. It's defined as `PTR' so this file can be included
285 INSN is a pointer to a struct describing the insn being printed.
286 FIELDS is a pointer to a cgen_fields struct.
287 PC is the pc value of the insn.
288 LEN is the length of the insn, in bits. */
291 typedef void (cgen_print_fn)
292 PARAMS ((CGEN_CPU_DESC, PTR info_, const CGEN_INSN *insn_,
293 CGEN_FIELDS *fields_, bfd_vma pc_, int len_));
295 typedef void (cgen_print_fn) ();
298 /* Parse/insert/extract/print handlers.
300 Indices into the handler tables.
301 We could use pointers here instead, but 90% of them are generally identical
302 and that's a lot of redundant data. Making these unsigned char indices
303 into tables of pointers saves a bit of space.
304 Using indices also keeps assembler code out of the disassembler and
307 struct cgen_opcode_handler
309 unsigned char parse, insert, extract, print;
312 /* Assembler interface.
314 The interface to the assembler is intended to be clean in the sense that
315 libopcodes.a is a standalone entity and could be used with any assembler.
316 Not that one would necessarily want to do that but rather that it helps
317 keep a clean interface. The interface will obviously be slanted towards
318 GAS, but at least it's a start.
319 ??? Note that one possible user of the assembler besides GAS is GDB.
321 Parsing is controlled by the assembler which calls
322 CGEN_SYM (assemble_insn). If it can parse and build the entire insn
323 it doesn't call back to the assembler. If it needs/wants to call back
324 to the assembler, cgen_parse_operand_fn is called which can either
326 - return a number to be inserted in the insn
327 - return a "register" value to be inserted
328 (the register might not be a register per pe)
329 - queue the argument and return a marker saying the expression has been
330 queued (eg: a fix-up)
331 - return an error message indicating the expression wasn't recognizable
333 The result is an error message or NULL for success.
334 The parsed value is stored in the bfd_vma *. */
336 /* Values for indicating what the caller wants. */
338 enum cgen_parse_operand_type
340 CGEN_PARSE_OPERAND_INIT,
341 CGEN_PARSE_OPERAND_INTEGER,
342 CGEN_PARSE_OPERAND_ADDRESS
345 /* Values for indicating what was parsed. */
347 enum cgen_parse_operand_result
349 CGEN_PARSE_OPERAND_RESULT_NUMBER,
350 CGEN_PARSE_OPERAND_RESULT_REGISTER,
351 CGEN_PARSE_OPERAND_RESULT_QUEUED,
352 CGEN_PARSE_OPERAND_RESULT_ERROR
355 #ifdef BFD_VERSION /* Don't require bfd.h unnecessarily. */
356 typedef const char * (cgen_parse_operand_fn)
357 PARAMS ((CGEN_CPU_DESC,
358 enum cgen_parse_operand_type, const char **, int, int,
359 enum cgen_parse_operand_result *, bfd_vma *));
361 typedef const char * (cgen_parse_operand_fn) ();
364 /* Set the cgen_parse_operand_fn callback. */
366 extern void cgen_set_parse_operand_fn
367 PARAMS ((CGEN_CPU_DESC, cgen_parse_operand_fn));
369 /* Called before trying to match a table entry with the insn. */
371 extern void cgen_init_parse_operand PARAMS ((CGEN_CPU_DESC));
373 /* Operand values (keywords, integers, symbols, etc.) */
375 /* Types of assembler elements. */
379 CGEN_ASM_KEYWORD, CGEN_ASM_MAX
382 /* List of hardware elements. */
384 typedef struct cgen_hw_entry
386 /* The type of this entry, one of `enum hw_type'.
387 This is an int and not the enum as the latter may not be declared yet. */
389 const struct cgen_hw_entry * next;
391 enum cgen_asm_type asm_type;
393 #ifndef CGEN_HW_NBOOL_ATTRS
394 #define CGEN_HW_NBOOL_ATTRS 1
396 CGEN_ATTR_TYPE (CGEN_HW_NBOOL_ATTRS) attrs;
397 #define CGEN_HW_ATTRS(hw) (&(hw)->attrs)
400 /* Return value of attribute ATTR in HW. */
402 #define CGEN_HW_ATTR_VALUE(hw, attr) \
403 CGEN_ATTR_VALUE ((hw), CGEN_HW_ATTRS (hw), (attr))
405 extern const CGEN_HW_ENTRY * cgen_hw_lookup_by_name
406 PARAMS ((CGEN_CPU_DESC, const char *));
407 extern const CGEN_HW_ENTRY * cgen_hw_lookup_by_num
408 PARAMS ((CGEN_CPU_DESC, int));
410 /* The operand instance table refers to this directly. */
411 extern const CGEN_HW_ENTRY CGEN_SYM (hw_table)[];
413 /* This struct is used to describe things like register names, etc. */
415 typedef struct cgen_keyword_entry
417 /* Name (as in register name). */
420 /* Value (as in register number).
421 The value cannot be -1 as that is used to indicate "not found".
422 IDEA: Have "FUNCTION" attribute? [function is called to fetch value]. */
426 This should, but technically needn't, appear last. It is a variable sized
427 array in that one architecture may have 1 nonbool attribute and another
428 may have more. Having this last means the non-architecture specific code
429 needn't care. The goal is to eventually record
430 attributes in their raw form, evaluate them at run-time, and cache the
431 values, so this worry will go away anyway. */
432 /* ??? Moving this last should be done by treating keywords like insn lists
433 and moving the `next' fields into a CGEN_KEYWORD_LIST struct. */
434 /* FIXME: Not used yet. */
435 #ifndef CGEN_KEYWORD_NBOOL_ATTRS
436 #define CGEN_KEYWORD_NBOOL_ATTRS 1
438 CGEN_ATTR_TYPE (CGEN_KEYWORD_NBOOL_ATTRS) attrs;
440 /* Next name hash table entry. */
441 struct cgen_keyword_entry *next_name;
442 /* Next value hash table entry. */
443 struct cgen_keyword_entry *next_value;
444 } CGEN_KEYWORD_ENTRY;
446 /* Top level struct for describing a set of related keywords
447 (e.g. register names).
449 This struct supports run-time entry of new values, and hashed lookups. */
451 typedef struct cgen_keyword
453 /* Pointer to initial [compiled in] values. */
454 CGEN_KEYWORD_ENTRY *init_entries;
456 /* Number of entries in `init_entries'. */
457 unsigned int num_init_entries;
459 /* Hash table used for name lookup. */
460 CGEN_KEYWORD_ENTRY **name_hash_table;
462 /* Hash table used for value lookup. */
463 CGEN_KEYWORD_ENTRY **value_hash_table;
465 /* Number of entries in the hash_tables. */
466 unsigned int hash_table_size;
468 /* Pointer to null keyword "" entry if present. */
469 const CGEN_KEYWORD_ENTRY *null_entry;
472 /* Structure used for searching. */
476 /* Table being searched. */
477 const CGEN_KEYWORD *table;
479 /* Specification of what is being searched for. */
482 /* Current index in hash table. */
483 unsigned int current_hash;
485 /* Current element in current hash chain. */
486 CGEN_KEYWORD_ENTRY *current_entry;
487 } CGEN_KEYWORD_SEARCH;
489 /* Lookup a keyword from its name. */
491 const CGEN_KEYWORD_ENTRY *cgen_keyword_lookup_name
492 PARAMS ((CGEN_KEYWORD *, const char *));
494 /* Lookup a keyword from its value. */
496 const CGEN_KEYWORD_ENTRY *cgen_keyword_lookup_value
497 PARAMS ((CGEN_KEYWORD *, int));
501 void cgen_keyword_add PARAMS ((CGEN_KEYWORD *, CGEN_KEYWORD_ENTRY *));
503 /* Keyword searching.
504 This can be used to retrieve every keyword, or a subset. */
506 CGEN_KEYWORD_SEARCH cgen_keyword_search_init
507 PARAMS ((CGEN_KEYWORD *, const char *));
508 const CGEN_KEYWORD_ENTRY *cgen_keyword_search_next
509 PARAMS ((CGEN_KEYWORD_SEARCH *));
511 /* Operand value support routines. */
513 extern const char *cgen_parse_keyword
514 PARAMS ((CGEN_CPU_DESC, const char **, CGEN_KEYWORD *, long *));
515 #ifdef BFD_VERSION /* Don't require bfd.h unnecessarily. */
516 extern const char *cgen_parse_signed_integer
517 PARAMS ((CGEN_CPU_DESC, const char **, int, long *));
518 extern const char *cgen_parse_unsigned_integer
519 PARAMS ((CGEN_CPU_DESC, const char **, int, unsigned long *));
520 extern const char *cgen_parse_address
521 PARAMS ((CGEN_CPU_DESC, const char **, int, int,
522 enum cgen_parse_operand_result *, bfd_vma *));
523 extern const char *cgen_validate_signed_integer
524 PARAMS ((long, long, long));
525 extern const char *cgen_validate_unsigned_integer
526 PARAMS ((unsigned long, unsigned long, unsigned long));
531 /* ??? This duplicates the values in arch.h. Revisit.
532 These however need the CGEN_ prefix [as does everything in this file]. */
533 /* ??? Targets may need to add their own modes so we may wish to move this
534 to <arch>-opc.h, or add a hook. */
537 CGEN_MODE_VOID, /* ??? rename simulator's VM to VOID? */
538 CGEN_MODE_BI, CGEN_MODE_QI, CGEN_MODE_HI, CGEN_MODE_SI, CGEN_MODE_DI,
539 CGEN_MODE_UBI, CGEN_MODE_UQI, CGEN_MODE_UHI, CGEN_MODE_USI, CGEN_MODE_UDI,
540 CGEN_MODE_SF, CGEN_MODE_DF, CGEN_MODE_XF, CGEN_MODE_TF,
541 CGEN_MODE_TARGET_MAX,
542 CGEN_MODE_INT, CGEN_MODE_UINT,
546 /* FIXME: Until simulator is updated. */
548 #define CGEN_MODE_VM CGEN_MODE_VOID
550 /* This struct defines each entry in the operand table. */
552 typedef struct cgen_operand
554 /* Name as it appears in the syntax string. */
557 /* The hardware element associated with this operand. */
558 const CGEN_HW_ENTRY *hw;
560 /* FIXME: We don't yet record ifield definitions, which we should.
561 When we do it might make sense to delete start/length (since they will
562 be duplicated in the ifield's definition) and replace them with a
563 pointer to the ifield entry. Note that as more complicated situations
564 need to be handled, going more and more with an OOP paradigm will help
565 keep the complication under control. Of course, this was the goal from
566 the start, but getting there in one step was too much too soon. */
569 This is just a hint, and may be unused in more complex operands.
570 May be unused for a modifier. */
573 /* The number of bits in the operand.
574 This is just a hint, and may be unused in more complex operands.
575 May be unused for a modifier. */
576 unsigned char length;
578 #if 0 /* ??? Interesting idea but relocs tend to get too complicated,
579 and ABI dependent, for simple table lookups to work. */
580 /* Ideally this would be the internal (external?) reloc type. */
585 This should, but technically needn't, appear last. It is a variable sized
586 array in that one architecture may have 1 nonbool attribute and another
587 may have more. Having this last means the non-architecture specific code
588 needn't care, now or tomorrow. The goal is to eventually record
589 attributes in their raw form, evaluate them at run-time, and cache the
590 values, so this worry will go away anyway. */
591 #ifndef CGEN_OPERAND_NBOOL_ATTRS
592 #define CGEN_OPERAND_NBOOL_ATTRS 1
594 CGEN_ATTR_TYPE (CGEN_OPERAND_NBOOL_ATTRS) attrs;
595 #define CGEN_OPERAND_ATTRS(operand) (&(operand)->attrs)
598 /* Return value of attribute ATTR in OPERAND. */
600 #define CGEN_OPERAND_ATTR_VALUE(operand, attr) \
601 CGEN_ATTR_VALUE ((operand), CGEN_OPERAND_ATTRS (operand), (attr))
603 /* The operand instance table refers to this directly. */
604 extern const CGEN_OPERAND CGEN_SYM (operand_table)[];
606 enum cgen_operand_type;
608 #define CGEN_OPERAND_INDEX(cd, operand) ((operand) - (cd)->operand_table)
609 /* FIXME: Rename, arch-desc.h defines this as the typedef of the enum. */
610 #define CGEN_OPERAND_TYPE(cd, operand) \
611 ((enum cgen_operand_type) CGEN_OPERAND_INDEX ((cd), (operand)))
612 #define CGEN_OPERAND_ENTRY(cd, n) (& (cd)->operand_table[n])
614 /* Instruction operand instances.
616 For each instruction, a list of the hardware elements that are read and
617 written are recorded. */
619 /* The type of the instance. */
621 enum cgen_opinst_type {
622 /* End of table marker. */
624 CGEN_OPINST_INPUT, CGEN_OPINST_OUTPUT
629 /* The type of this operand. */
630 enum cgen_opinst_type type;
632 /* Name of operand. */
635 /* The hardware element referenced. */
636 const CGEN_HW_ENTRY *hw;
638 /* The mode in which the operand is being used. */
641 /* The operand table entry or NULL if there is none (i.e. an explicit
642 hardware reference). */
643 const CGEN_OPERAND *operand;
645 /* If `operand' is NULL, the index (e.g. into array of registers). */
649 ??? This perhaps should be a real attribute struct but there's
650 no current need, so we save a bit of space and just have a set of
651 flags. The interface is such that this can easily be made attributes
652 should it prove useful. */
654 #define CGEN_OPINST_ATTRS(opinst) ((opinst)->attrs)
655 /* Return value of attribute ATTR in OPINST. */
656 #define CGEN_OPINST_ATTR(opinst, attr) \
657 ((CGEN_OPINST_ATTRS (opinst) & (attr)) != 0)
658 /* Operand is conditionally referenced (read/written). */
659 #define CGEN_OPINST_COND_REF 1
664 Each insn format and subexpression has one of these.
666 The syntax "string" consists of characters (n > 0 && n < 128), and operand
667 values (n >= 128), and is terminated by 0. Operand values are 128 + index
668 into the operand table. The operand table doesn't exist in C, per se, as
669 the data is recorded in the parse/insert/extract/print switch statements. */
671 #ifndef CGEN_MAX_SYNTAX_BYTES
672 #define CGEN_MAX_SYNTAX_BYTES 16
677 unsigned char syntax[CGEN_MAX_SYNTAX_BYTES];
680 #define CGEN_SYNTAX_STRING(syn) (syn->syntax)
681 #define CGEN_SYNTAX_CHAR_P(c) ((c) < 128)
682 #define CGEN_SYNTAX_CHAR(c) (c)
683 #define CGEN_SYNTAX_FIELD(c) ((c) - 128)
684 #define CGEN_SYNTAX_MAKE_FIELD(c) ((c) + 128)
686 /* ??? I can't currently think of any case where the mnemonic doesn't come
687 first [and if one ever doesn't building the hash tables will be tricky].
688 However, we treat mnemonics as just another operand of the instruction.
689 A value of 1 means "this is where the mnemonic appears". 1 isn't
690 special other than it's a non-printable ASCII char. */
692 #define CGEN_SYNTAX_MNEMONIC 1
693 #define CGEN_SYNTAX_MNEMONIC_P(ch) ((ch) == CGEN_SYNTAX_MNEMONIC)
695 /* Instruction fields.
697 ??? We currently don't allow adding fields at run-time.
698 Easy to fix when needed. */
700 typedef struct cgen_ifld {
701 /* Enum of ifield. */
703 #define CGEN_IFLD_NUM(f) ((f)->num)
705 /* Name of the field, distinguishes it from all other fields. */
707 #define CGEN_IFLD_NAME(f) ((f)->name)
709 /* Default offset, in bits, from the start of the insn to the word
710 containing the field. */
712 #define CGEN_IFLD_WORD_OFFSET(f) ((f)->word_offset)
714 /* Default length of the word containing the field. */
716 #define CGEN_IFLD_WORD_SIZE(f) ((f)->word_size)
718 /* Default starting bit number.
719 Whether lsb=0 or msb=0 is determined by CGEN_INSN_LSB0_P. */
721 #define CGEN_IFLD_START(f) ((f)->start)
723 /* Length of the field, in bits. */
725 #define CGEN_IFLD_LENGTH(f) ((f)->length)
727 #ifndef CGEN_IFLD_NBOOL_ATTRS
728 #define CGEN_IFLD_NBOOL_ATTRS 1
730 CGEN_ATTR_TYPE (CGEN_IFLD_NBOOL_ATTRS) attrs;
731 #define CGEN_IFLD_ATTRS(f) (&(f)->attrs)
734 /* Return value of attribute ATTR in IFLD. */
735 #define CGEN_IFLD_ATTR_VALUE(ifld, attr) \
736 CGEN_ATTR_VALUE ((ifld), CGEN_IFLD_ATTRS (ifld), (attr))
738 /* Instruction data. */
740 /* Instruction formats.
742 Instructions are grouped by format. Associated with an instruction is its
743 format. Each insn's opcode table entry contains a format table entry.
744 ??? There is usually very few formats compared with the number of insns,
745 so one can reduce the size of the opcode table by recording the format table
746 as a separate entity. Given that we currently don't, format table entries
747 are also distinguished by their operands. This increases the size of the
748 table, but reduces the number of tables. It's all minutiae anyway so it
749 doesn't really matter [at this point in time].
751 ??? Support for variable length ISA's is wip. */
753 /* Accompanying each iformat description is a list of its fields. */
756 const CGEN_IFLD *ifld;
757 #define CGEN_IFMT_IFLD_IFLD(ii) ((ii)->ifld)
760 #ifndef CGEN_MAX_IFMT_OPERANDS
761 #define CGEN_MAX_IFMT_OPERANDS 1
766 /* Length that MASK and VALUE have been calculated to
767 [VALUE is recorded elsewhere].
768 Normally it is CGEN_BASE_INSN_BITSIZE. On [V]LIW architectures where
769 the base insn size may be larger than the size of an insn, this field is
770 less than CGEN_BASE_INSN_BITSIZE. */
771 unsigned char mask_length;
772 #define CGEN_IFMT_MASK_LENGTH(ifmt) ((ifmt)->mask_length)
774 /* Total length of instruction, in bits. */
775 unsigned char length;
776 #define CGEN_IFMT_LENGTH(ifmt) ((ifmt)->length)
778 /* Mask to apply to the first MASK_LENGTH bits.
779 Each insn's value is stored with the insn.
780 The first step in recognizing an insn for disassembly is
781 (opcode & mask) == value. */
783 #define CGEN_IFMT_MASK(ifmt) ((ifmt)->mask)
785 /* Instruction fields.
786 +1 for trailing NULL. */
787 CGEN_IFMT_IFLD iflds[CGEN_MAX_IFMT_OPERANDS + 1];
788 #define CGEN_IFMT_IFLDS(ifmt) ((ifmt)->iflds)
791 /* Instruction values. */
795 /* The opcode portion of the base insn. */
796 CGEN_INSN_INT base_value;
798 #ifdef CGEN_MAX_EXTRA_OPCODE_OPERANDS
799 /* Extra opcode values beyond base_value. */
800 unsigned long ifield_values[CGEN_MAX_EXTRA_OPCODE_OPERANDS];
804 /* Instruction opcode table.
805 This contains the syntax and format data of an instruction. */
807 /* ??? Some ports already have an opcode table yet still need to use the rest
808 of what cgen_insn has. Plus keeping the opcode data with the operand
809 instance data can create a pretty big file. So we keep them separately.
810 Not sure this is a good idea in the long run. */
814 /* Indices into parse/insert/extract/print handler tables. */
815 struct cgen_opcode_handler handlers;
816 #define CGEN_OPCODE_HANDLERS(opc) (& (opc)->handlers)
820 #define CGEN_OPCODE_SYNTAX(opc) (& (opc)->syntax)
823 const CGEN_IFMT *format;
824 #define CGEN_OPCODE_FORMAT(opc) ((opc)->format)
825 #define CGEN_OPCODE_MASK_BITSIZE(opc) CGEN_IFMT_MASK_LENGTH (CGEN_OPCODE_FORMAT (opc))
826 #define CGEN_OPCODE_BITSIZE(opc) CGEN_IFMT_LENGTH (CGEN_OPCODE_FORMAT (opc))
827 #define CGEN_OPCODE_IFLDS(opc) CGEN_IFMT_IFLDS (CGEN_OPCODE_FORMAT (opc))
829 /* Instruction opcode value. */
831 #define CGEN_OPCODE_VALUE(opc) (& (opc)->value)
832 #define CGEN_OPCODE_BASE_VALUE(opc) (CGEN_OPCODE_VALUE (opc)->base_value)
833 #define CGEN_OPCODE_BASE_MASK(opc) CGEN_IFMT_MASK (CGEN_OPCODE_FORMAT (opc))
836 /* Instruction attributes.
837 This is made a published type as applications can cache a pointer to
838 the attributes for speed. */
840 #ifndef CGEN_INSN_NBOOL_ATTRS
841 #define CGEN_INSN_NBOOL_ATTRS 1
843 typedef CGEN_ATTR_TYPE (CGEN_INSN_NBOOL_ATTRS) CGEN_INSN_ATTR_TYPE;
845 /* Enum of architecture independent attributes. */
848 /* ??? Numbers here are recorded in two places. */
849 typedef enum cgen_insn_attr {
854 /* This struct defines each entry in the instruction table. */
858 /* Each real instruction is enumerated. */
859 /* ??? This may go away in time. */
861 #define CGEN_INSN_NUM(insn) ((insn)->base->num)
863 /* Name of entry (that distinguishes it from all other entries). */
864 /* ??? If mnemonics have operands, try to print full mnemonic. */
866 #define CGEN_INSN_NAME(insn) ((insn)->base->name)
868 /* Mnemonic. This is used when parsing and printing the insn.
869 In the case of insns that have operands on the mnemonics, this is
870 only the constant part. E.g. for conditional execution of an `add' insn,
871 where the full mnemonic is addeq, addne, etc., and the condition is
872 treated as an operand, this is only "add". */
873 const char *mnemonic;
874 #define CGEN_INSN_MNEMONIC(insn) ((insn)->base->mnemonic)
876 /* Total length of instruction, in bits. */
878 #define CGEN_INSN_BITSIZE(insn) ((insn)->base->bitsize)
880 #if 0 /* ??? Disabled for now as there is a problem with embedded newlines
881 and the table is already pretty big. Should perhaps be moved
882 to a file of its own. */
883 /* Semantics, as RTL. */
884 /* ??? Plain text or bytecodes? */
885 /* ??? Note that the operand instance table could be computed at run-time
886 if we parse this and cache the results. Something to eventually do. */
888 #define CGEN_INSN_RTX(insn) ((insn)->base->rtx)
892 This must appear last. It is a variable sized array in that one
893 architecture may have 1 nonbool attribute and another may have more.
894 Having this last means the non-architecture specific code needn't
895 care. The goal is to eventually record attributes in their raw form,
896 evaluate them at run-time, and cache the values, so this worry will go
898 CGEN_INSN_ATTR_TYPE attrs;
899 #define CGEN_INSN_ATTRS(insn) (&(insn)->base->attrs)
900 /* Return value of attribute ATTR in INSN. */
901 #define CGEN_INSN_ATTR_VALUE(insn, attr) \
902 CGEN_ATTR_VALUE ((insn), CGEN_INSN_ATTRS (insn), (attr))
905 /* Return non-zero if INSN is the "invalid" insn marker. */
907 #define CGEN_INSN_INVALID_P(insn) (CGEN_INSN_MNEMONIC (insn) == 0)
909 /* Main struct contain instruction information.
910 BASE is always present, the rest is present only if asked for. */
914 /* ??? May be of use to put a type indicator here.
915 Then this struct could different info for different classes of insns. */
916 /* ??? A speedup can be had by moving `base' into this struct.
918 const CGEN_IBASE *base;
919 const CGEN_OPCODE *opcode;
920 const CGEN_OPINST *opinst;
923 /* Instruction lists.
924 This is used for adding new entries and for creating the hash lists. */
926 typedef struct cgen_insn_list
928 struct cgen_insn_list *next;
929 const CGEN_INSN *insn;
932 /* Table of instructions. */
936 const CGEN_INSN *init_entries;
937 unsigned int entry_size; /* since the attribute member is variable sized */
938 unsigned int num_init_entries;
939 CGEN_INSN_LIST *new_entries;
942 /* Return number of instructions. This includes any added at run-time. */
944 extern int cgen_insn_count PARAMS ((CGEN_CPU_DESC));
945 extern int cgen_macro_insn_count PARAMS ((CGEN_CPU_DESC));
947 /* Macros to access the other insn elements not recorded in CGEN_IBASE. */
949 /* Fetch INSN's operand instance table. */
950 /* ??? Doesn't handle insns added at runtime. */
951 #define CGEN_INSN_OPERANDS(insn) ((insn)->opinst)
953 /* Return INSN's opcode table entry. */
954 #define CGEN_INSN_OPCODE(insn) ((insn)->opcode)
956 /* Return INSN's handler data. */
957 #define CGEN_INSN_HANDLERS(insn) CGEN_OPCODE_HANDLERS (CGEN_INSN_OPCODE (insn))
959 /* Return INSN's syntax. */
960 #define CGEN_INSN_SYNTAX(insn) CGEN_OPCODE_SYNTAX (CGEN_INSN_OPCODE (insn))
962 /* Return size of base mask in bits. */
963 #define CGEN_INSN_MASK_BITSIZE(insn) \
964 CGEN_OPCODE_MASK_BITSIZE (CGEN_INSN_OPCODE (insn))
966 /* Return mask of base part of INSN. */
967 #define CGEN_INSN_BASE_MASK(insn) \
968 CGEN_OPCODE_BASE_MASK (CGEN_INSN_OPCODE (insn))
970 /* Return value of base part of INSN. */
971 #define CGEN_INSN_BASE_VALUE(insn) \
972 CGEN_OPCODE_BASE_VALUE (CGEN_INSN_OPCODE (insn))
974 /* Macro instructions.
975 Macro insns aren't real insns, they map to one or more real insns.
976 E.g. An architecture's "nop" insn may actually be an "mv r0,r0" or
979 Macro insns can expand to nothing (e.g. a nop that is optimized away).
980 This is useful in multi-insn macros that build a constant in a register.
981 Of course this isn't the default behaviour and must be explicitly enabled.
983 Assembly of macro-insns is relatively straightforward. Disassembly isn't.
984 However, disassembly of at least some kinds of macro insns is important
985 in order that the disassembled code preserve the readability of the original
986 insn. What is attempted here is to disassemble all "simple" macro-insns,
987 where "simple" is currently defined to mean "expands to one real insn".
989 Simple macro-insns are handled specially. They are emitted as ALIAS's
990 of real insns. This simplifies their handling since there's usually more
991 of them than any other kind of macro-insn, and proper disassembly of them
992 falls out for free. */
994 /* For each macro-insn there may be multiple expansion possibilities,
995 depending on the arguments. This structure is accessed via the `data'
996 member of CGEN_INSN. */
998 typedef struct cgen_minsn_expansion {
999 /* Function to do the expansion.
1000 If the expansion fails (e.g. "no match") NULL is returned.
1001 Space for the expansion is obtained with malloc.
1002 It is up to the caller to free it. */
1003 const char * (* fn) PARAMS ((const struct cgen_minsn_expansion *,
1004 const char *, const char **, int *,
1006 #define CGEN_MIEXPN_FN(ex) ((ex)->fn)
1008 /* Instruction(s) the macro expands to.
1009 The format of STR is defined by FN.
1010 It is typically the assembly code of the real insn, but it could also be
1011 the original Scheme expression or a tokenized form of it (with FN being
1012 an appropriate interpreter). */
1014 #define CGEN_MIEXPN_STR(ex) ((ex)->str)
1015 } CGEN_MINSN_EXPANSION;
1018 When supported, this function will convert the input string to another
1019 string and the parser will be invoked recursively. The output string
1020 may contain further macro invocations. */
1022 extern const char * cgen_expand_macro_insn
1023 PARAMS ((CGEN_CPU_DESC, const struct cgen_minsn_expansion *,
1024 const char *, const char **, int *, CGEN_OPERAND **));
1026 /* The assembler insn table is hashed based on some function of the mnemonic
1027 (the actually hashing done is up to the target, but we provide a few
1028 examples like the first letter or a function of the entire mnemonic). */
1030 extern CGEN_INSN_LIST * cgen_asm_lookup_insn
1031 PARAMS ((CGEN_CPU_DESC, const char *));
1032 #define CGEN_ASM_LOOKUP_INSN(cd, string) cgen_asm_lookup_insn ((cd), (string))
1033 #define CGEN_ASM_NEXT_INSN(insn) ((insn)->next)
1035 /* The disassembler insn table is hashed based on some function of machine
1036 instruction (the actually hashing done is up to the target). */
1038 extern CGEN_INSN_LIST * cgen_dis_lookup_insn
1039 PARAMS ((CGEN_CPU_DESC, const char *, CGEN_INSN_INT));
1040 /* FIXME: delete these two */
1041 #define CGEN_DIS_LOOKUP_INSN(cd, buf, value) cgen_dis_lookup_insn ((cd), (buf), (value))
1042 #define CGEN_DIS_NEXT_INSN(insn) ((insn)->next)
1044 /* The CPU description.
1045 A copy of this is created when the cpu table is "opened".
1046 All global state information is recorded here.
1047 Access macros are provided for "public" members. */
1049 typedef struct cgen_cpu_desc
1051 /* Current machine (a la BFD machine number). */
1054 /* Current endian. */
1055 enum cgen_endian endian;
1056 #define CGEN_CPU_ENDIAN(cd) ((cd)->endian)
1058 /* Current insn endian. */
1059 enum cgen_endian insn_endian;
1060 #define CGEN_CPU_INSN_ENDIAN(cd) ((cd)->insn_endian)
1062 /* Hardware elements. */
1063 const CGEN_HW_ENTRY *hw_list;
1065 /* Instruction fields. */
1066 const CGEN_IFLD *ifld_table;
1069 const CGEN_OPERAND *operand_table;
1070 #define CGEN_CPU_OPERAND_TABLE(cd) ((cd)->operand_table)
1072 /* Main instruction table. */
1073 CGEN_INSN_TABLE insn_table;
1074 #define CGEN_CPU_INSN_TABLE(cd) (& (cd)->insn_table)
1076 /* Macro instructions are defined separately and are combined with real
1077 insns during hash table computation. */
1078 CGEN_INSN_TABLE macro_insn_table;
1080 /* Copy of CGEN_INT_INSN_P. */
1083 /* Maximum length of any insn, in bytes. */
1084 unsigned int max_insn_size;
1086 /* Operand parser callback. */
1087 cgen_parse_operand_fn * parse_operand_fn;
1089 /* Parse/insert/extract/print cover fns for operands. */
1090 const char * (*parse_operand)
1091 PARAMS ((CGEN_CPU_DESC, int opindex_, const char **,
1092 CGEN_FIELDS *fields_));
1094 const char * (*insert_operand)
1095 PARAMS ((CGEN_CPU_DESC, int opindex_, CGEN_FIELDS *fields_,
1096 CGEN_INSN_BYTES_PTR, bfd_vma pc_));
1097 int (*extract_operand)
1098 PARAMS ((CGEN_CPU_DESC, int opindex_, CGEN_EXTRACT_INFO *, CGEN_INSN_INT,
1099 CGEN_FIELDS *fields_, bfd_vma pc_));
1100 void (*print_operand)
1101 PARAMS ((CGEN_CPU_DESC, int opindex_, PTR info_, CGEN_FIELDS * fields_,
1102 void const *attrs_, bfd_vma pc_, int length_));
1104 const char * (*insert_operand) ();
1105 int (*extract_operand) ();
1106 void (*print_operand) ();
1108 #define CGEN_CPU_PARSE_OPERAND(cd) ((cd)->parse_operand)
1109 #define CGEN_CPU_INSERT_OPERAND(cd) ((cd)->insert_operand)
1110 #define CGEN_CPU_EXTRACT_OPERAND(cd) ((cd)->extract_operand)
1111 #define CGEN_CPU_PRINT_OPERAND(cd) ((cd)->print_operand)
1113 /* Size of CGEN_FIELDS struct. */
1114 unsigned int sizeof_fields;
1115 #define CGEN_CPU_SIZEOF_FIELDS(cd) ((cd)->sizeof_fields)
1117 /* Set the bitsize field. */
1118 void (*set_fields_bitsize) PARAMS ((CGEN_FIELDS *fields_, int size_));
1119 #define CGEN_CPU_SET_FIELDS_BITSIZE(cd) ((cd)->set_fields_bitsize)
1121 /* CGEN_FIELDS accessors. */
1122 int (*get_int_operand)
1123 PARAMS ((int opindex_, const CGEN_FIELDS *fields_));
1124 void (*set_int_operand)
1125 PARAMS ((int opindex_, CGEN_FIELDS *fields_, int value_));
1127 bfd_vma (*get_vma_operand)
1128 PARAMS ((int opindex_, const CGEN_FIELDS *fields_));
1129 void (*set_vma_operand)
1130 PARAMS ((int opindex_, CGEN_FIELDS *fields_, bfd_vma value_));
1132 long (*get_vma_operand) ();
1133 void (*set_vma_operand) ();
1135 #define CGEN_CPU_GET_INT_OPERAND(cd) ((cd)->get_int_operand)
1136 #define CGEN_CPU_SET_INT_OPERAND(cd) ((cd)->set_int_operand)
1137 #define CGEN_CPU_GET_VMA_OPERAND(cd) ((cd)->get_vma_operand)
1138 #define CGEN_CPU_SET_VMA_OPERAND(cd) ((cd)->set_vma_operand)
1140 /* Instruction parse/insert/extract/print handlers. */
1141 /* FIXME: make these types uppercase. */
1142 cgen_parse_fn * const *parse_handlers;
1143 cgen_insert_fn * const *insert_handlers;
1144 cgen_extract_fn * const *extract_handlers;
1145 cgen_print_fn * const *print_handlers;
1146 #define CGEN_PARSE_FN(cd, insn) (cd->parse_handlers[(insn)->opcode->handlers.parse])
1147 #define CGEN_INSERT_FN(cd, insn) (cd->insert_handlers[(insn)->opcode->handlers.insert])
1148 #define CGEN_EXTRACT_FN(cd, insn) (cd->extract_handlers[(insn)->opcode->handlers.extract])
1149 #define CGEN_PRINT_FN(cd, insn) (cd->print_handlers[(insn)->opcode->handlers.print])
1151 /* Return non-zero if insn should be added to hash table. */
1152 int (* asm_hash_p) PARAMS ((const CGEN_INSN *));
1154 /* Assembler hash function. */
1155 unsigned int (* asm_hash) PARAMS ((const char *));
1157 /* Number of entries in assembler hash table. */
1158 unsigned int asm_hash_size;
1160 /* Return non-zero if insn should be added to hash table. */
1161 int (* dis_hash_p) PARAMS ((const CGEN_INSN *));
1163 /* Disassembler hash function. */
1164 unsigned int (* dis_hash) PARAMS ((const char *, CGEN_INSN_INT));
1166 /* Number of entries in disassembler hash table. */
1167 unsigned int dis_hash_size;
1169 /* Assembler instruction hash table. */
1170 CGEN_INSN_LIST **asm_hash_table;
1171 CGEN_INSN_LIST *asm_hash_table_entries;
1173 /* Disassembler instruction hash table. */
1174 CGEN_INSN_LIST **dis_hash_table;
1175 CGEN_INSN_LIST *dis_hash_table_entries;
1179 #ifndef CGEN_WORD_ENDIAN
1180 #define CGEN_WORD_ENDIAN(cd) CGEN_CPU_ENDIAN (cd)
1182 #ifndef CGEN_INSN_WORD_ENDIAN
1183 #define CGEN_INSN_WORD_ENDIAN(cd) CGEN_CPU_INSN_ENDIAN (cd)
1186 /* Prototypes of major functions. */
1187 /* FIXME: Move more CGEN_SYM-defined functions into CGEN_CPU_DESC.
1188 Note the init fns though, as that would drag in things that mightn't be
1189 used and might not even exist. */
1191 /* Open an ISA table for use. */
1193 extern CGEN_CPU_DESC CGEN_SYM (cpu_open) PARAMS ((int, enum cgen_endian));
1197 extern void CGEN_SYM (cpu_close) PARAMS ((CGEN_CPU_DESC));
1199 /* Initialize the opcode table for use.
1200 Called by init_asm/init_dis. */
1202 extern void CGEN_SYM (init_opcode_table) PARAMS ((CGEN_CPU_DESC cd_));
1204 /* Initialize the ibld table for use.
1205 Called by init_asm/init_dis. */
1207 extern void CGEN_SYM (init_ibld_table) PARAMS ((CGEN_CPU_DESC cd_));
1209 /* Initialize an cpu table for assembler or disassembler use.
1210 These must be called immediately after cpu_open. */
1212 extern void CGEN_SYM (init_asm) PARAMS ((CGEN_CPU_DESC));
1213 extern void CGEN_SYM (init_dis) PARAMS ((CGEN_CPU_DESC));
1215 /* Initialize the operand instance table for use. */
1217 extern void CGEN_SYM (init_opinst_table) PARAMS ((CGEN_CPU_DESC cd_));
1219 /* Change the mach and/or endianness. */
1221 extern void cgen_set_cpu PARAMS ((CGEN_CPU_DESC, int, enum cgen_endian));
1223 extern const CGEN_INSN * CGEN_SYM (assemble_insn)
1224 PARAMS ((CGEN_CPU_DESC, const char *, CGEN_FIELDS *,
1225 CGEN_INSN_BYTES_PTR, char **));
1227 extern const CGEN_KEYWORD CGEN_SYM (operand_mach);
1228 extern int CGEN_SYM (get_mach) PARAMS ((const char *));
1230 /* Operand index computation. */
1231 extern const CGEN_INSN * cgen_lookup_insn
1232 PARAMS ((CGEN_CPU_DESC, const CGEN_INSN * insn_,
1233 CGEN_INSN_INT int_value_, unsigned char *bytes_value_,
1234 int length_, CGEN_FIELDS *fields_, int alias_p_));
1235 extern void cgen_get_insn_operands
1236 PARAMS ((CGEN_CPU_DESC, const CGEN_INSN * insn_,
1237 const CGEN_FIELDS *fields_, int *indices_));
1238 extern const CGEN_INSN * cgen_lookup_get_insn_operands
1239 PARAMS ((CGEN_CPU_DESC, const CGEN_INSN *insn_,
1240 CGEN_INSN_INT int_value_, unsigned char *bytes_value_,
1241 int length_, int *indices_, CGEN_FIELDS *fields_));
1243 /* Get/set fields in the CGEN_FIELDS struct. */
1245 extern int CGEN_SYM (get_int_operand)
1246 PARAMS ((int opindex_, const CGEN_FIELDS *fields_));
1247 extern void CGEN_SYM (set_int_operand)
1248 PARAMS ((int opindex_, CGEN_FIELDS *fields_, int value_));
1249 #ifdef BFD_VERSION /* Don't require bfd.h unnecessarily. */
1250 extern bfd_vma CGEN_SYM (get_vma_operand)
1251 PARAMS ((int opindex_, const CGEN_FIELDS *fields_));
1252 extern void CGEN_SYM (set_vma_operand)
1253 PARAMS ((int opindex_, CGEN_FIELDS *fields_, bfd_vma value_));
1256 extern const char * CGEN_SYM (parse_operand)
1257 PARAMS ((CGEN_CPU_DESC, int, const char **, CGEN_FIELDS *));
1259 #ifdef BFD_VERSION /* Don't require bfd.h unnecessarily. */
1260 extern const char * CGEN_SYM (insert_operand)
1261 PARAMS ((CGEN_CPU_DESC, int, CGEN_FIELDS *, CGEN_INSN_BYTES_PTR,
1263 extern int CGEN_SYM (extract_operand)
1264 PARAMS ((CGEN_CPU_DESC, int, CGEN_EXTRACT_INFO *, CGEN_INSN_INT,
1265 CGEN_FIELDS *, bfd_vma));
1266 extern void CGEN_SYM (print_operand)
1267 PARAMS ((CGEN_CPU_DESC, int opindex_, PTR info_, CGEN_FIELDS * fields_,
1268 void const *attrs_, bfd_vma pc_, int length_));
1270 extern const char * CGEN_SYM (insert_operand) ();
1271 extern int CGEN_SYM (extract_operand) ();
1272 extern void CGEN_SYM (print_operand) ();
1275 /* Cover fns to bfd_get/set. */
1277 extern CGEN_INSN_INT cgen_get_insn_value
1278 PARAMS ((CGEN_CPU_DESC, unsigned char *, int));
1279 extern void cgen_put_insn_value
1280 PARAMS ((CGEN_CPU_DESC, unsigned char *, int, CGEN_INSN_INT));
1282 /* Read in a cpu description file.
1283 ??? For future concerns, including adding instructions to the assembler/
1284 disassembler at run-time. */
1286 extern const char * cgen_read_cpu_file
1287 PARAMS ((CGEN_CPU_DESC, const char * filename_));