1 /* Instruction building/extraction support for fr30. -*- C -*-
3 THIS FILE IS MACHINE GENERATED WITH CGEN: Cpu tools GENerator.
4 - the resultant file is machine generated, cgen-ibld.in isn't
6 Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
8 This file is part of the GNU Binutils and GDB, the GNU debugger.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software Foundation, Inc.,
22 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 /* ??? Eventually more and more of this stuff can go to cpu-independent files.
33 #include "fr30-desc.h"
36 #include "safe-ctype.h"
39 #define min(a,b) ((a) < (b) ? (a) : (b))
41 #define max(a,b) ((a) > (b) ? (a) : (b))
43 /* Used by the ifield rtx function. */
44 #define FLD(f) (fields->f)
46 static const char * insert_normal
47 (CGEN_CPU_DESC
, long, unsigned int, unsigned int, unsigned int,
48 unsigned int, unsigned int, unsigned int, CGEN_INSN_BYTES_PTR
);
49 static const char * insert_insn_normal
50 (CGEN_CPU_DESC
, const CGEN_INSN
*,
51 CGEN_FIELDS
*, CGEN_INSN_BYTES_PTR
, bfd_vma
);
52 static int extract_normal
53 (CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, CGEN_INSN_INT
,
54 unsigned int, unsigned int, unsigned int, unsigned int,
55 unsigned int, unsigned int, bfd_vma
, long *);
56 static int extract_insn_normal
57 (CGEN_CPU_DESC
, const CGEN_INSN
*, CGEN_EXTRACT_INFO
*,
58 CGEN_INSN_INT
, CGEN_FIELDS
*, bfd_vma
);
60 static void put_insn_int_value
61 (CGEN_CPU_DESC
, CGEN_INSN_BYTES_PTR
, int, int, CGEN_INSN_INT
);
64 static CGEN_INLINE
void insert_1
65 (CGEN_CPU_DESC
, unsigned long, int, int, int, unsigned char *);
66 static CGEN_INLINE
int fill_cache
67 (CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, int, int, bfd_vma
);
68 static CGEN_INLINE
long extract_1
69 (CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, int, int, int, unsigned char *, bfd_vma
);
72 /* Operand insertion. */
76 /* Subroutine of insert_normal. */
78 static CGEN_INLINE
void
79 insert_1 (CGEN_CPU_DESC cd
,
89 x
= cgen_get_insn_value (cd
, bufp
, word_length
);
91 /* Written this way to avoid undefined behaviour. */
92 mask
= (((1L << (length
- 1)) - 1) << 1) | 1;
94 shift
= (start
+ 1) - length
;
96 shift
= (word_length
- (start
+ length
));
97 x
= (x
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
99 cgen_put_insn_value (cd
, bufp
, word_length
, (bfd_vma
) x
);
102 #endif /* ! CGEN_INT_INSN_P */
104 /* Default insertion routine.
106 ATTRS is a mask of the boolean attributes.
107 WORD_OFFSET is the offset in bits from the start of the insn of the value.
108 WORD_LENGTH is the length of the word in bits in which the value resides.
109 START is the starting bit number in the word, architecture origin.
110 LENGTH is the length of VALUE in bits.
111 TOTAL_LENGTH is the total length of the insn in bits.
113 The result is an error message or NULL if success. */
115 /* ??? This duplicates functionality with bfd's howto table and
116 bfd_install_relocation. */
117 /* ??? This doesn't handle bfd_vma's. Create another function when
121 insert_normal (CGEN_CPU_DESC cd
,
124 unsigned int word_offset
,
127 unsigned int word_length
,
128 unsigned int total_length
,
129 CGEN_INSN_BYTES_PTR buffer
)
131 static char errbuf
[100];
132 /* Written this way to avoid undefined behaviour. */
133 unsigned long mask
= (((1L << (length
- 1)) - 1) << 1) | 1;
135 /* If LENGTH is zero, this operand doesn't contribute to the value. */
145 if (word_length
> 32)
148 /* For architectures with insns smaller than the base-insn-bitsize,
149 word_length may be too big. */
150 if (cd
->min_insn_bitsize
< cd
->base_insn_bitsize
)
153 && word_length
> total_length
)
154 word_length
= total_length
;
157 /* Ensure VALUE will fit. */
158 if (CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGN_OPT
))
160 long minval
= - (1L << (length
- 1));
161 unsigned long maxval
= mask
;
163 if ((value
> 0 && (unsigned long) value
> maxval
)
166 /* xgettext:c-format */
168 _("operand out of range (%ld not between %ld and %lu)"),
169 value
, minval
, maxval
);
173 else if (! CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGNED
))
175 unsigned long maxval
= mask
;
177 if ((unsigned long) value
> maxval
)
179 /* xgettext:c-format */
181 _("operand out of range (%lu not between 0 and %lu)"),
188 if (! cgen_signed_overflow_ok_p (cd
))
190 long minval
= - (1L << (length
- 1));
191 long maxval
= (1L << (length
- 1)) - 1;
193 if (value
< minval
|| value
> maxval
)
196 /* xgettext:c-format */
197 (errbuf
, _("operand out of range (%ld not between %ld and %ld)"),
198 value
, minval
, maxval
);
209 if (CGEN_INSN_LSB0_P
)
210 shift
= (word_offset
+ start
+ 1) - length
;
212 shift
= total_length
- (word_offset
+ start
+ length
);
213 *buffer
= (*buffer
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
216 #else /* ! CGEN_INT_INSN_P */
219 unsigned char *bufp
= (unsigned char *) buffer
+ word_offset
/ 8;
221 insert_1 (cd
, value
, start
, length
, word_length
, bufp
);
224 #endif /* ! CGEN_INT_INSN_P */
229 /* Default insn builder (insert handler).
230 The instruction is recorded in CGEN_INT_INSN_P byte order (meaning
231 that if CGEN_INSN_BYTES_PTR is an int * and thus, the value is
232 recorded in host byte order, otherwise BUFFER is an array of bytes
233 and the value is recorded in target byte order).
234 The result is an error message or NULL if success. */
237 insert_insn_normal (CGEN_CPU_DESC cd
,
238 const CGEN_INSN
* insn
,
239 CGEN_FIELDS
* fields
,
240 CGEN_INSN_BYTES_PTR buffer
,
243 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
245 const CGEN_SYNTAX_CHAR_TYPE
* syn
;
247 CGEN_INIT_INSERT (cd
);
248 value
= CGEN_INSN_BASE_VALUE (insn
);
250 /* If we're recording insns as numbers (rather than a string of bytes),
251 target byte order handling is deferred until later. */
255 put_insn_int_value (cd
, buffer
, cd
->base_insn_bitsize
,
256 CGEN_FIELDS_BITSIZE (fields
), value
);
260 cgen_put_insn_value (cd
, buffer
, min ((unsigned) cd
->base_insn_bitsize
,
261 (unsigned) CGEN_FIELDS_BITSIZE (fields
)),
264 #endif /* ! CGEN_INT_INSN_P */
266 /* ??? It would be better to scan the format's fields.
267 Still need to be able to insert a value based on the operand though;
268 e.g. storing a branch displacement that got resolved later.
269 Needs more thought first. */
271 for (syn
= CGEN_SYNTAX_STRING (syntax
); * syn
; ++ syn
)
275 if (CGEN_SYNTAX_CHAR_P (* syn
))
278 errmsg
= (* cd
->insert_operand
) (cd
, CGEN_SYNTAX_FIELD (*syn
),
288 /* Cover function to store an insn value into an integral insn. Must go here
289 because it needs <prefix>-desc.h for CGEN_INT_INSN_P. */
292 put_insn_int_value (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
293 CGEN_INSN_BYTES_PTR buf
,
298 /* For architectures with insns smaller than the base-insn-bitsize,
299 length may be too big. */
300 if (length
> insn_length
)
304 int shift
= insn_length
- length
;
305 /* Written this way to avoid undefined behaviour. */
306 CGEN_INSN_INT mask
= (((1L << (length
- 1)) - 1) << 1) | 1;
307 *buf
= (*buf
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
312 /* Operand extraction. */
314 #if ! CGEN_INT_INSN_P
316 /* Subroutine of extract_normal.
317 Ensure sufficient bytes are cached in EX_INFO.
318 OFFSET is the offset in bytes from the start of the insn of the value.
319 BYTES is the length of the needed value.
320 Returns 1 for success, 0 for failure. */
322 static CGEN_INLINE
int
323 fill_cache (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
324 CGEN_EXTRACT_INFO
*ex_info
,
329 /* It's doubtful that the middle part has already been fetched so
330 we don't optimize that case. kiss. */
332 disassemble_info
*info
= (disassemble_info
*) ex_info
->dis_info
;
334 /* First do a quick check. */
335 mask
= (1 << bytes
) - 1;
336 if (((ex_info
->valid
>> offset
) & mask
) == mask
)
339 /* Search for the first byte we need to read. */
340 for (mask
= 1 << offset
; bytes
> 0; --bytes
, ++offset
, mask
<<= 1)
341 if (! (mask
& ex_info
->valid
))
349 status
= (*info
->read_memory_func
)
350 (pc
, ex_info
->insn_bytes
+ offset
, bytes
, info
);
354 (*info
->memory_error_func
) (status
, pc
, info
);
358 ex_info
->valid
|= ((1 << bytes
) - 1) << offset
;
364 /* Subroutine of extract_normal. */
366 static CGEN_INLINE
long
367 extract_1 (CGEN_CPU_DESC cd
,
368 CGEN_EXTRACT_INFO
*ex_info ATTRIBUTE_UNUSED
,
373 bfd_vma pc ATTRIBUTE_UNUSED
)
378 int big_p
= CGEN_CPU_INSN_ENDIAN (cd
) == CGEN_ENDIAN_BIG
;
380 x
= cgen_get_insn_value (cd
, bufp
, word_length
);
382 if (CGEN_INSN_LSB0_P
)
383 shift
= (start
+ 1) - length
;
385 shift
= (word_length
- (start
+ length
));
389 #endif /* ! CGEN_INT_INSN_P */
391 /* Default extraction routine.
393 INSN_VALUE is the first base_insn_bitsize bits of the insn in host order,
394 or sometimes less for cases like the m32r where the base insn size is 32
395 but some insns are 16 bits.
396 ATTRS is a mask of the boolean attributes. We only need `SIGNED',
397 but for generality we take a bitmask of all of them.
398 WORD_OFFSET is the offset in bits from the start of the insn of the value.
399 WORD_LENGTH is the length of the word in bits in which the value resides.
400 START is the starting bit number in the word, architecture origin.
401 LENGTH is the length of VALUE in bits.
402 TOTAL_LENGTH is the total length of the insn in bits.
404 Returns 1 for success, 0 for failure. */
406 /* ??? The return code isn't properly used. wip. */
408 /* ??? This doesn't handle bfd_vma's. Create another function when
412 extract_normal (CGEN_CPU_DESC cd
,
413 #if ! CGEN_INT_INSN_P
414 CGEN_EXTRACT_INFO
*ex_info
,
416 CGEN_EXTRACT_INFO
*ex_info ATTRIBUTE_UNUSED
,
418 CGEN_INSN_INT insn_value
,
420 unsigned int word_offset
,
423 unsigned int word_length
,
424 unsigned int total_length
,
425 #if ! CGEN_INT_INSN_P
428 bfd_vma pc ATTRIBUTE_UNUSED
,
434 /* If LENGTH is zero, this operand doesn't contribute to the value
435 so give it a standard value of zero. */
448 if (word_length
> 32)
451 /* For architectures with insns smaller than the insn-base-bitsize,
452 word_length may be too big. */
453 if (cd
->min_insn_bitsize
< cd
->base_insn_bitsize
)
456 && word_length
> total_length
)
457 word_length
= total_length
;
460 /* Does the value reside in INSN_VALUE, and at the right alignment? */
462 if (CGEN_INT_INSN_P
|| (word_offset
== 0 && word_length
== total_length
))
464 if (CGEN_INSN_LSB0_P
)
465 value
= insn_value
>> ((word_offset
+ start
+ 1) - length
);
467 value
= insn_value
>> (total_length
- ( word_offset
+ start
+ length
));
470 #if ! CGEN_INT_INSN_P
474 unsigned char *bufp
= ex_info
->insn_bytes
+ word_offset
/ 8;
476 if (word_length
> 32)
479 if (fill_cache (cd
, ex_info
, word_offset
/ 8, word_length
/ 8, pc
) == 0)
482 value
= extract_1 (cd
, ex_info
, start
, length
, word_length
, bufp
, pc
);
485 #endif /* ! CGEN_INT_INSN_P */
487 /* Written this way to avoid undefined behaviour. */
488 mask
= (((1L << (length
- 1)) - 1) << 1) | 1;
492 if (CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGNED
)
493 && (value
& (1L << (length
- 1))))
501 /* Default insn extractor.
503 INSN_VALUE is the first base_insn_bitsize bits, translated to host order.
504 The extracted fields are stored in FIELDS.
505 EX_INFO is used to handle reading variable length insns.
506 Return the length of the insn in bits, or 0 if no match,
507 or -1 if an error occurs fetching data (memory_error_func will have
511 extract_insn_normal (CGEN_CPU_DESC cd
,
512 const CGEN_INSN
*insn
,
513 CGEN_EXTRACT_INFO
*ex_info
,
514 CGEN_INSN_INT insn_value
,
518 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
519 const CGEN_SYNTAX_CHAR_TYPE
*syn
;
521 CGEN_FIELDS_BITSIZE (fields
) = CGEN_INSN_BITSIZE (insn
);
523 CGEN_INIT_EXTRACT (cd
);
525 for (syn
= CGEN_SYNTAX_STRING (syntax
); *syn
; ++syn
)
529 if (CGEN_SYNTAX_CHAR_P (*syn
))
532 length
= (* cd
->extract_operand
) (cd
, CGEN_SYNTAX_FIELD (*syn
),
533 ex_info
, insn_value
, fields
, pc
);
538 /* We recognized and successfully extracted this insn. */
539 return CGEN_INSN_BITSIZE (insn
);
542 /* machine generated code added here */
544 const char * fr30_cgen_insert_operand
545 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, CGEN_INSN_BYTES_PTR
, bfd_vma
));
547 /* Main entry point for operand insertion.
549 This function is basically just a big switch statement. Earlier versions
550 used tables to look up the function to use, but
551 - if the table contains both assembler and disassembler functions then
552 the disassembler contains much of the assembler and vice-versa,
553 - there's a lot of inlining possibilities as things grow,
554 - using a switch statement avoids the function call overhead.
556 This function could be moved into `parse_insn_normal', but keeping it
557 separate makes clear the interface between `parse_insn_normal' and each of
558 the handlers. It's also needed by GAS to insert operands that couldn't be
559 resolved during parsing. */
562 fr30_cgen_insert_operand (cd
, opindex
, fields
, buffer
, pc
)
565 CGEN_FIELDS
* fields
;
566 CGEN_INSN_BYTES_PTR buffer
;
567 bfd_vma pc ATTRIBUTE_UNUSED
;
569 const char * errmsg
= NULL
;
570 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
574 case FR30_OPERAND_CRI
:
575 errmsg
= insert_normal (cd
, fields
->f_CRi
, 0, 16, 12, 4, 16, total_length
, buffer
);
577 case FR30_OPERAND_CRJ
:
578 errmsg
= insert_normal (cd
, fields
->f_CRj
, 0, 16, 8, 4, 16, total_length
, buffer
);
580 case FR30_OPERAND_R13
:
582 case FR30_OPERAND_R14
:
584 case FR30_OPERAND_R15
:
586 case FR30_OPERAND_RI
:
587 errmsg
= insert_normal (cd
, fields
->f_Ri
, 0, 0, 12, 4, 16, total_length
, buffer
);
589 case FR30_OPERAND_RIC
:
590 errmsg
= insert_normal (cd
, fields
->f_Ric
, 0, 16, 12, 4, 16, total_length
, buffer
);
592 case FR30_OPERAND_RJ
:
593 errmsg
= insert_normal (cd
, fields
->f_Rj
, 0, 0, 8, 4, 16, total_length
, buffer
);
595 case FR30_OPERAND_RJC
:
596 errmsg
= insert_normal (cd
, fields
->f_Rjc
, 0, 16, 8, 4, 16, total_length
, buffer
);
598 case FR30_OPERAND_RS1
:
599 errmsg
= insert_normal (cd
, fields
->f_Rs1
, 0, 0, 8, 4, 16, total_length
, buffer
);
601 case FR30_OPERAND_RS2
:
602 errmsg
= insert_normal (cd
, fields
->f_Rs2
, 0, 0, 12, 4, 16, total_length
, buffer
);
604 case FR30_OPERAND_CC
:
605 errmsg
= insert_normal (cd
, fields
->f_cc
, 0, 0, 4, 4, 16, total_length
, buffer
);
607 case FR30_OPERAND_CCC
:
608 errmsg
= insert_normal (cd
, fields
->f_ccc
, 0, 16, 0, 8, 16, total_length
, buffer
);
610 case FR30_OPERAND_DIR10
:
612 long value
= fields
->f_dir10
;
613 value
= ((unsigned int) (value
) >> (2));
614 errmsg
= insert_normal (cd
, value
, 0, 0, 8, 8, 16, total_length
, buffer
);
617 case FR30_OPERAND_DIR8
:
618 errmsg
= insert_normal (cd
, fields
->f_dir8
, 0, 0, 8, 8, 16, total_length
, buffer
);
620 case FR30_OPERAND_DIR9
:
622 long value
= fields
->f_dir9
;
623 value
= ((unsigned int) (value
) >> (1));
624 errmsg
= insert_normal (cd
, value
, 0, 0, 8, 8, 16, total_length
, buffer
);
627 case FR30_OPERAND_DISP10
:
629 long value
= fields
->f_disp10
;
630 value
= ((int) (value
) >> (2));
631 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 4, 8, 16, total_length
, buffer
);
634 case FR30_OPERAND_DISP8
:
635 errmsg
= insert_normal (cd
, fields
->f_disp8
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 4, 8, 16, total_length
, buffer
);
637 case FR30_OPERAND_DISP9
:
639 long value
= fields
->f_disp9
;
640 value
= ((int) (value
) >> (1));
641 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 4, 8, 16, total_length
, buffer
);
644 case FR30_OPERAND_I20
:
647 FLD (f_i20_4
) = ((unsigned int) (FLD (f_i20
)) >> (16));
648 FLD (f_i20_16
) = ((FLD (f_i20
)) & (65535));
650 errmsg
= insert_normal (cd
, fields
->f_i20_4
, 0, 0, 8, 4, 16, total_length
, buffer
);
653 errmsg
= insert_normal (cd
, fields
->f_i20_16
, 0, 16, 0, 16, 16, total_length
, buffer
);
658 case FR30_OPERAND_I32
:
659 errmsg
= insert_normal (cd
, fields
->f_i32
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 16, 0, 32, 32, total_length
, buffer
);
661 case FR30_OPERAND_I8
:
662 errmsg
= insert_normal (cd
, fields
->f_i8
, 0, 0, 4, 8, 16, total_length
, buffer
);
664 case FR30_OPERAND_LABEL12
:
666 long value
= fields
->f_rel12
;
667 value
= ((int) (((value
) - (((pc
) + (2))))) >> (1));
668 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 5, 11, 16, total_length
, buffer
);
671 case FR30_OPERAND_LABEL9
:
673 long value
= fields
->f_rel9
;
674 value
= ((int) (((value
) - (((pc
) + (2))))) >> (1));
675 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 16, total_length
, buffer
);
678 case FR30_OPERAND_M4
:
680 long value
= fields
->f_m4
;
681 value
= ((value
) & (15));
682 errmsg
= insert_normal (cd
, value
, 0, 0, 8, 4, 16, total_length
, buffer
);
685 case FR30_OPERAND_PS
:
687 case FR30_OPERAND_REGLIST_HI_LD
:
688 errmsg
= insert_normal (cd
, fields
->f_reglist_hi_ld
, 0, 0, 8, 8, 16, total_length
, buffer
);
690 case FR30_OPERAND_REGLIST_HI_ST
:
691 errmsg
= insert_normal (cd
, fields
->f_reglist_hi_st
, 0, 0, 8, 8, 16, total_length
, buffer
);
693 case FR30_OPERAND_REGLIST_LOW_LD
:
694 errmsg
= insert_normal (cd
, fields
->f_reglist_low_ld
, 0, 0, 8, 8, 16, total_length
, buffer
);
696 case FR30_OPERAND_REGLIST_LOW_ST
:
697 errmsg
= insert_normal (cd
, fields
->f_reglist_low_st
, 0, 0, 8, 8, 16, total_length
, buffer
);
699 case FR30_OPERAND_S10
:
701 long value
= fields
->f_s10
;
702 value
= ((int) (value
) >> (2));
703 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 8, 8, 16, total_length
, buffer
);
706 case FR30_OPERAND_U10
:
708 long value
= fields
->f_u10
;
709 value
= ((unsigned int) (value
) >> (2));
710 errmsg
= insert_normal (cd
, value
, 0, 0, 8, 8, 16, total_length
, buffer
);
713 case FR30_OPERAND_U4
:
714 errmsg
= insert_normal (cd
, fields
->f_u4
, 0, 0, 8, 4, 16, total_length
, buffer
);
716 case FR30_OPERAND_U4C
:
717 errmsg
= insert_normal (cd
, fields
->f_u4c
, 0, 0, 12, 4, 16, total_length
, buffer
);
719 case FR30_OPERAND_U8
:
720 errmsg
= insert_normal (cd
, fields
->f_u8
, 0, 0, 8, 8, 16, total_length
, buffer
);
722 case FR30_OPERAND_UDISP6
:
724 long value
= fields
->f_udisp6
;
725 value
= ((unsigned int) (value
) >> (2));
726 errmsg
= insert_normal (cd
, value
, 0, 0, 8, 4, 16, total_length
, buffer
);
731 /* xgettext:c-format */
732 fprintf (stderr
, _("Unrecognized field %d while building insn.\n"),
740 int fr30_cgen_extract_operand
741 PARAMS ((CGEN_CPU_DESC
, int, CGEN_EXTRACT_INFO
*, CGEN_INSN_INT
,
742 CGEN_FIELDS
*, bfd_vma
));
744 /* Main entry point for operand extraction.
745 The result is <= 0 for error, >0 for success.
746 ??? Actual values aren't well defined right now.
748 This function is basically just a big switch statement. Earlier versions
749 used tables to look up the function to use, but
750 - if the table contains both assembler and disassembler functions then
751 the disassembler contains much of the assembler and vice-versa,
752 - there's a lot of inlining possibilities as things grow,
753 - using a switch statement avoids the function call overhead.
755 This function could be moved into `print_insn_normal', but keeping it
756 separate makes clear the interface between `print_insn_normal' and each of
760 fr30_cgen_extract_operand (cd
, opindex
, ex_info
, insn_value
, fields
, pc
)
763 CGEN_EXTRACT_INFO
*ex_info
;
764 CGEN_INSN_INT insn_value
;
765 CGEN_FIELDS
* fields
;
768 /* Assume success (for those operands that are nops). */
770 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
774 case FR30_OPERAND_CRI
:
775 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 16, 12, 4, 16, total_length
, pc
, & fields
->f_CRi
);
777 case FR30_OPERAND_CRJ
:
778 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 16, 8, 4, 16, total_length
, pc
, & fields
->f_CRj
);
780 case FR30_OPERAND_R13
:
782 case FR30_OPERAND_R14
:
784 case FR30_OPERAND_R15
:
786 case FR30_OPERAND_RI
:
787 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 16, total_length
, pc
, & fields
->f_Ri
);
789 case FR30_OPERAND_RIC
:
790 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 16, 12, 4, 16, total_length
, pc
, & fields
->f_Ric
);
792 case FR30_OPERAND_RJ
:
793 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 16, total_length
, pc
, & fields
->f_Rj
);
795 case FR30_OPERAND_RJC
:
796 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 16, 8, 4, 16, total_length
, pc
, & fields
->f_Rjc
);
798 case FR30_OPERAND_RS1
:
799 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 16, total_length
, pc
, & fields
->f_Rs1
);
801 case FR30_OPERAND_RS2
:
802 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 16, total_length
, pc
, & fields
->f_Rs2
);
804 case FR30_OPERAND_CC
:
805 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 16, total_length
, pc
, & fields
->f_cc
);
807 case FR30_OPERAND_CCC
:
808 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 16, 0, 8, 16, total_length
, pc
, & fields
->f_ccc
);
810 case FR30_OPERAND_DIR10
:
813 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & value
);
814 value
= ((value
) << (2));
815 fields
->f_dir10
= value
;
818 case FR30_OPERAND_DIR8
:
819 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & fields
->f_dir8
);
821 case FR30_OPERAND_DIR9
:
824 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & value
);
825 value
= ((value
) << (1));
826 fields
->f_dir9
= value
;
829 case FR30_OPERAND_DISP10
:
832 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 4, 8, 16, total_length
, pc
, & value
);
833 value
= ((value
) << (2));
834 fields
->f_disp10
= value
;
837 case FR30_OPERAND_DISP8
:
838 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 4, 8, 16, total_length
, pc
, & fields
->f_disp8
);
840 case FR30_OPERAND_DISP9
:
843 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 4, 8, 16, total_length
, pc
, & value
);
844 value
= ((value
) << (1));
845 fields
->f_disp9
= value
;
848 case FR30_OPERAND_I20
:
850 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 16, total_length
, pc
, & fields
->f_i20_4
);
851 if (length
<= 0) break;
852 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 16, 0, 16, 16, total_length
, pc
, & fields
->f_i20_16
);
853 if (length
<= 0) break;
855 FLD (f_i20
) = ((((FLD (f_i20_4
)) << (16))) | (FLD (f_i20_16
)));
859 case FR30_OPERAND_I32
:
860 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 16, 0, 32, 32, total_length
, pc
, & fields
->f_i32
);
862 case FR30_OPERAND_I8
:
863 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 8, 16, total_length
, pc
, & fields
->f_i8
);
865 case FR30_OPERAND_LABEL12
:
868 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 5, 11, 16, total_length
, pc
, & value
);
869 value
= ((((value
) << (1))) + (((pc
) + (2))));
870 fields
->f_rel12
= value
;
873 case FR30_OPERAND_LABEL9
:
876 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 16, total_length
, pc
, & value
);
877 value
= ((((value
) << (1))) + (((pc
) + (2))));
878 fields
->f_rel9
= value
;
881 case FR30_OPERAND_M4
:
884 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 16, total_length
, pc
, & value
);
885 value
= ((value
) | (((-1) << (4))));
886 fields
->f_m4
= value
;
889 case FR30_OPERAND_PS
:
891 case FR30_OPERAND_REGLIST_HI_LD
:
892 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & fields
->f_reglist_hi_ld
);
894 case FR30_OPERAND_REGLIST_HI_ST
:
895 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & fields
->f_reglist_hi_st
);
897 case FR30_OPERAND_REGLIST_LOW_LD
:
898 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & fields
->f_reglist_low_ld
);
900 case FR30_OPERAND_REGLIST_LOW_ST
:
901 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & fields
->f_reglist_low_st
);
903 case FR30_OPERAND_S10
:
906 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 8, 8, 16, total_length
, pc
, & value
);
907 value
= ((value
) << (2));
908 fields
->f_s10
= value
;
911 case FR30_OPERAND_U10
:
914 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & value
);
915 value
= ((value
) << (2));
916 fields
->f_u10
= value
;
919 case FR30_OPERAND_U4
:
920 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 16, total_length
, pc
, & fields
->f_u4
);
922 case FR30_OPERAND_U4C
:
923 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 16, total_length
, pc
, & fields
->f_u4c
);
925 case FR30_OPERAND_U8
:
926 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 16, total_length
, pc
, & fields
->f_u8
);
928 case FR30_OPERAND_UDISP6
:
931 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 16, total_length
, pc
, & value
);
932 value
= ((value
) << (2));
933 fields
->f_udisp6
= value
;
938 /* xgettext:c-format */
939 fprintf (stderr
, _("Unrecognized field %d while decoding insn.\n"),
947 cgen_insert_fn
* const fr30_cgen_insert_handlers
[] =
952 cgen_extract_fn
* const fr30_cgen_extract_handlers
[] =
957 int fr30_cgen_get_int_operand
958 PARAMS ((CGEN_CPU_DESC
, int, const CGEN_FIELDS
*));
959 bfd_vma fr30_cgen_get_vma_operand
960 PARAMS ((CGEN_CPU_DESC
, int, const CGEN_FIELDS
*));
962 /* Getting values from cgen_fields is handled by a collection of functions.
963 They are distinguished by the type of the VALUE argument they return.
964 TODO: floating point, inlining support, remove cases where result type
968 fr30_cgen_get_int_operand (cd
, opindex
, fields
)
969 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
971 const CGEN_FIELDS
* fields
;
977 case FR30_OPERAND_CRI
:
978 value
= fields
->f_CRi
;
980 case FR30_OPERAND_CRJ
:
981 value
= fields
->f_CRj
;
983 case FR30_OPERAND_R13
:
986 case FR30_OPERAND_R14
:
989 case FR30_OPERAND_R15
:
992 case FR30_OPERAND_RI
:
993 value
= fields
->f_Ri
;
995 case FR30_OPERAND_RIC
:
996 value
= fields
->f_Ric
;
998 case FR30_OPERAND_RJ
:
999 value
= fields
->f_Rj
;
1001 case FR30_OPERAND_RJC
:
1002 value
= fields
->f_Rjc
;
1004 case FR30_OPERAND_RS1
:
1005 value
= fields
->f_Rs1
;
1007 case FR30_OPERAND_RS2
:
1008 value
= fields
->f_Rs2
;
1010 case FR30_OPERAND_CC
:
1011 value
= fields
->f_cc
;
1013 case FR30_OPERAND_CCC
:
1014 value
= fields
->f_ccc
;
1016 case FR30_OPERAND_DIR10
:
1017 value
= fields
->f_dir10
;
1019 case FR30_OPERAND_DIR8
:
1020 value
= fields
->f_dir8
;
1022 case FR30_OPERAND_DIR9
:
1023 value
= fields
->f_dir9
;
1025 case FR30_OPERAND_DISP10
:
1026 value
= fields
->f_disp10
;
1028 case FR30_OPERAND_DISP8
:
1029 value
= fields
->f_disp8
;
1031 case FR30_OPERAND_DISP9
:
1032 value
= fields
->f_disp9
;
1034 case FR30_OPERAND_I20
:
1035 value
= fields
->f_i20
;
1037 case FR30_OPERAND_I32
:
1038 value
= fields
->f_i32
;
1040 case FR30_OPERAND_I8
:
1041 value
= fields
->f_i8
;
1043 case FR30_OPERAND_LABEL12
:
1044 value
= fields
->f_rel12
;
1046 case FR30_OPERAND_LABEL9
:
1047 value
= fields
->f_rel9
;
1049 case FR30_OPERAND_M4
:
1050 value
= fields
->f_m4
;
1052 case FR30_OPERAND_PS
:
1055 case FR30_OPERAND_REGLIST_HI_LD
:
1056 value
= fields
->f_reglist_hi_ld
;
1058 case FR30_OPERAND_REGLIST_HI_ST
:
1059 value
= fields
->f_reglist_hi_st
;
1061 case FR30_OPERAND_REGLIST_LOW_LD
:
1062 value
= fields
->f_reglist_low_ld
;
1064 case FR30_OPERAND_REGLIST_LOW_ST
:
1065 value
= fields
->f_reglist_low_st
;
1067 case FR30_OPERAND_S10
:
1068 value
= fields
->f_s10
;
1070 case FR30_OPERAND_U10
:
1071 value
= fields
->f_u10
;
1073 case FR30_OPERAND_U4
:
1074 value
= fields
->f_u4
;
1076 case FR30_OPERAND_U4C
:
1077 value
= fields
->f_u4c
;
1079 case FR30_OPERAND_U8
:
1080 value
= fields
->f_u8
;
1082 case FR30_OPERAND_UDISP6
:
1083 value
= fields
->f_udisp6
;
1087 /* xgettext:c-format */
1088 fprintf (stderr
, _("Unrecognized field %d while getting int operand.\n"),
1097 fr30_cgen_get_vma_operand (cd
, opindex
, fields
)
1098 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1100 const CGEN_FIELDS
* fields
;
1106 case FR30_OPERAND_CRI
:
1107 value
= fields
->f_CRi
;
1109 case FR30_OPERAND_CRJ
:
1110 value
= fields
->f_CRj
;
1112 case FR30_OPERAND_R13
:
1115 case FR30_OPERAND_R14
:
1118 case FR30_OPERAND_R15
:
1121 case FR30_OPERAND_RI
:
1122 value
= fields
->f_Ri
;
1124 case FR30_OPERAND_RIC
:
1125 value
= fields
->f_Ric
;
1127 case FR30_OPERAND_RJ
:
1128 value
= fields
->f_Rj
;
1130 case FR30_OPERAND_RJC
:
1131 value
= fields
->f_Rjc
;
1133 case FR30_OPERAND_RS1
:
1134 value
= fields
->f_Rs1
;
1136 case FR30_OPERAND_RS2
:
1137 value
= fields
->f_Rs2
;
1139 case FR30_OPERAND_CC
:
1140 value
= fields
->f_cc
;
1142 case FR30_OPERAND_CCC
:
1143 value
= fields
->f_ccc
;
1145 case FR30_OPERAND_DIR10
:
1146 value
= fields
->f_dir10
;
1148 case FR30_OPERAND_DIR8
:
1149 value
= fields
->f_dir8
;
1151 case FR30_OPERAND_DIR9
:
1152 value
= fields
->f_dir9
;
1154 case FR30_OPERAND_DISP10
:
1155 value
= fields
->f_disp10
;
1157 case FR30_OPERAND_DISP8
:
1158 value
= fields
->f_disp8
;
1160 case FR30_OPERAND_DISP9
:
1161 value
= fields
->f_disp9
;
1163 case FR30_OPERAND_I20
:
1164 value
= fields
->f_i20
;
1166 case FR30_OPERAND_I32
:
1167 value
= fields
->f_i32
;
1169 case FR30_OPERAND_I8
:
1170 value
= fields
->f_i8
;
1172 case FR30_OPERAND_LABEL12
:
1173 value
= fields
->f_rel12
;
1175 case FR30_OPERAND_LABEL9
:
1176 value
= fields
->f_rel9
;
1178 case FR30_OPERAND_M4
:
1179 value
= fields
->f_m4
;
1181 case FR30_OPERAND_PS
:
1184 case FR30_OPERAND_REGLIST_HI_LD
:
1185 value
= fields
->f_reglist_hi_ld
;
1187 case FR30_OPERAND_REGLIST_HI_ST
:
1188 value
= fields
->f_reglist_hi_st
;
1190 case FR30_OPERAND_REGLIST_LOW_LD
:
1191 value
= fields
->f_reglist_low_ld
;
1193 case FR30_OPERAND_REGLIST_LOW_ST
:
1194 value
= fields
->f_reglist_low_st
;
1196 case FR30_OPERAND_S10
:
1197 value
= fields
->f_s10
;
1199 case FR30_OPERAND_U10
:
1200 value
= fields
->f_u10
;
1202 case FR30_OPERAND_U4
:
1203 value
= fields
->f_u4
;
1205 case FR30_OPERAND_U4C
:
1206 value
= fields
->f_u4c
;
1208 case FR30_OPERAND_U8
:
1209 value
= fields
->f_u8
;
1211 case FR30_OPERAND_UDISP6
:
1212 value
= fields
->f_udisp6
;
1216 /* xgettext:c-format */
1217 fprintf (stderr
, _("Unrecognized field %d while getting vma operand.\n"),
1225 void fr30_cgen_set_int_operand
1226 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, int));
1227 void fr30_cgen_set_vma_operand
1228 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, bfd_vma
));
1230 /* Stuffing values in cgen_fields is handled by a collection of functions.
1231 They are distinguished by the type of the VALUE argument they accept.
1232 TODO: floating point, inlining support, remove cases where argument type
1236 fr30_cgen_set_int_operand (cd
, opindex
, fields
, value
)
1237 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1239 CGEN_FIELDS
* fields
;
1244 case FR30_OPERAND_CRI
:
1245 fields
->f_CRi
= value
;
1247 case FR30_OPERAND_CRJ
:
1248 fields
->f_CRj
= value
;
1250 case FR30_OPERAND_R13
:
1252 case FR30_OPERAND_R14
:
1254 case FR30_OPERAND_R15
:
1256 case FR30_OPERAND_RI
:
1257 fields
->f_Ri
= value
;
1259 case FR30_OPERAND_RIC
:
1260 fields
->f_Ric
= value
;
1262 case FR30_OPERAND_RJ
:
1263 fields
->f_Rj
= value
;
1265 case FR30_OPERAND_RJC
:
1266 fields
->f_Rjc
= value
;
1268 case FR30_OPERAND_RS1
:
1269 fields
->f_Rs1
= value
;
1271 case FR30_OPERAND_RS2
:
1272 fields
->f_Rs2
= value
;
1274 case FR30_OPERAND_CC
:
1275 fields
->f_cc
= value
;
1277 case FR30_OPERAND_CCC
:
1278 fields
->f_ccc
= value
;
1280 case FR30_OPERAND_DIR10
:
1281 fields
->f_dir10
= value
;
1283 case FR30_OPERAND_DIR8
:
1284 fields
->f_dir8
= value
;
1286 case FR30_OPERAND_DIR9
:
1287 fields
->f_dir9
= value
;
1289 case FR30_OPERAND_DISP10
:
1290 fields
->f_disp10
= value
;
1292 case FR30_OPERAND_DISP8
:
1293 fields
->f_disp8
= value
;
1295 case FR30_OPERAND_DISP9
:
1296 fields
->f_disp9
= value
;
1298 case FR30_OPERAND_I20
:
1299 fields
->f_i20
= value
;
1301 case FR30_OPERAND_I32
:
1302 fields
->f_i32
= value
;
1304 case FR30_OPERAND_I8
:
1305 fields
->f_i8
= value
;
1307 case FR30_OPERAND_LABEL12
:
1308 fields
->f_rel12
= value
;
1310 case FR30_OPERAND_LABEL9
:
1311 fields
->f_rel9
= value
;
1313 case FR30_OPERAND_M4
:
1314 fields
->f_m4
= value
;
1316 case FR30_OPERAND_PS
:
1318 case FR30_OPERAND_REGLIST_HI_LD
:
1319 fields
->f_reglist_hi_ld
= value
;
1321 case FR30_OPERAND_REGLIST_HI_ST
:
1322 fields
->f_reglist_hi_st
= value
;
1324 case FR30_OPERAND_REGLIST_LOW_LD
:
1325 fields
->f_reglist_low_ld
= value
;
1327 case FR30_OPERAND_REGLIST_LOW_ST
:
1328 fields
->f_reglist_low_st
= value
;
1330 case FR30_OPERAND_S10
:
1331 fields
->f_s10
= value
;
1333 case FR30_OPERAND_U10
:
1334 fields
->f_u10
= value
;
1336 case FR30_OPERAND_U4
:
1337 fields
->f_u4
= value
;
1339 case FR30_OPERAND_U4C
:
1340 fields
->f_u4c
= value
;
1342 case FR30_OPERAND_U8
:
1343 fields
->f_u8
= value
;
1345 case FR30_OPERAND_UDISP6
:
1346 fields
->f_udisp6
= value
;
1350 /* xgettext:c-format */
1351 fprintf (stderr
, _("Unrecognized field %d while setting int operand.\n"),
1358 fr30_cgen_set_vma_operand (cd
, opindex
, fields
, value
)
1359 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1361 CGEN_FIELDS
* fields
;
1366 case FR30_OPERAND_CRI
:
1367 fields
->f_CRi
= value
;
1369 case FR30_OPERAND_CRJ
:
1370 fields
->f_CRj
= value
;
1372 case FR30_OPERAND_R13
:
1374 case FR30_OPERAND_R14
:
1376 case FR30_OPERAND_R15
:
1378 case FR30_OPERAND_RI
:
1379 fields
->f_Ri
= value
;
1381 case FR30_OPERAND_RIC
:
1382 fields
->f_Ric
= value
;
1384 case FR30_OPERAND_RJ
:
1385 fields
->f_Rj
= value
;
1387 case FR30_OPERAND_RJC
:
1388 fields
->f_Rjc
= value
;
1390 case FR30_OPERAND_RS1
:
1391 fields
->f_Rs1
= value
;
1393 case FR30_OPERAND_RS2
:
1394 fields
->f_Rs2
= value
;
1396 case FR30_OPERAND_CC
:
1397 fields
->f_cc
= value
;
1399 case FR30_OPERAND_CCC
:
1400 fields
->f_ccc
= value
;
1402 case FR30_OPERAND_DIR10
:
1403 fields
->f_dir10
= value
;
1405 case FR30_OPERAND_DIR8
:
1406 fields
->f_dir8
= value
;
1408 case FR30_OPERAND_DIR9
:
1409 fields
->f_dir9
= value
;
1411 case FR30_OPERAND_DISP10
:
1412 fields
->f_disp10
= value
;
1414 case FR30_OPERAND_DISP8
:
1415 fields
->f_disp8
= value
;
1417 case FR30_OPERAND_DISP9
:
1418 fields
->f_disp9
= value
;
1420 case FR30_OPERAND_I20
:
1421 fields
->f_i20
= value
;
1423 case FR30_OPERAND_I32
:
1424 fields
->f_i32
= value
;
1426 case FR30_OPERAND_I8
:
1427 fields
->f_i8
= value
;
1429 case FR30_OPERAND_LABEL12
:
1430 fields
->f_rel12
= value
;
1432 case FR30_OPERAND_LABEL9
:
1433 fields
->f_rel9
= value
;
1435 case FR30_OPERAND_M4
:
1436 fields
->f_m4
= value
;
1438 case FR30_OPERAND_PS
:
1440 case FR30_OPERAND_REGLIST_HI_LD
:
1441 fields
->f_reglist_hi_ld
= value
;
1443 case FR30_OPERAND_REGLIST_HI_ST
:
1444 fields
->f_reglist_hi_st
= value
;
1446 case FR30_OPERAND_REGLIST_LOW_LD
:
1447 fields
->f_reglist_low_ld
= value
;
1449 case FR30_OPERAND_REGLIST_LOW_ST
:
1450 fields
->f_reglist_low_st
= value
;
1452 case FR30_OPERAND_S10
:
1453 fields
->f_s10
= value
;
1455 case FR30_OPERAND_U10
:
1456 fields
->f_u10
= value
;
1458 case FR30_OPERAND_U4
:
1459 fields
->f_u4
= value
;
1461 case FR30_OPERAND_U4C
:
1462 fields
->f_u4c
= value
;
1464 case FR30_OPERAND_U8
:
1465 fields
->f_u8
= value
;
1467 case FR30_OPERAND_UDISP6
:
1468 fields
->f_udisp6
= value
;
1472 /* xgettext:c-format */
1473 fprintf (stderr
, _("Unrecognized field %d while setting vma operand.\n"),
1479 /* Function to call before using the instruction builder tables. */
1482 fr30_cgen_init_ibld_table (cd
)
1485 cd
->insert_handlers
= & fr30_cgen_insert_handlers
[0];
1486 cd
->extract_handlers
= & fr30_cgen_extract_handlers
[0];
1488 cd
->insert_operand
= fr30_cgen_insert_operand
;
1489 cd
->extract_operand
= fr30_cgen_extract_operand
;
1491 cd
->get_int_operand
= fr30_cgen_get_int_operand
;
1492 cd
->set_int_operand
= fr30_cgen_set_int_operand
;
1493 cd
->get_vma_operand
= fr30_cgen_get_vma_operand
;
1494 cd
->set_vma_operand
= fr30_cgen_set_vma_operand
;