1 /* Instruction building/extraction support for m32r. -*- 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 "m32r-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 * m32r_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 m32r_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 M32R_OPERAND_ACC
:
575 errmsg
= insert_normal (cd
, fields
->f_acc
, 0, 0, 8, 1, 32, total_length
, buffer
);
577 case M32R_OPERAND_ACCD
:
578 errmsg
= insert_normal (cd
, fields
->f_accd
, 0, 0, 4, 2, 32, total_length
, buffer
);
580 case M32R_OPERAND_ACCS
:
581 errmsg
= insert_normal (cd
, fields
->f_accs
, 0, 0, 12, 2, 32, total_length
, buffer
);
583 case M32R_OPERAND_DCR
:
584 errmsg
= insert_normal (cd
, fields
->f_r1
, 0, 0, 4, 4, 32, total_length
, buffer
);
586 case M32R_OPERAND_DISP16
:
588 long value
= fields
->f_disp16
;
589 value
= ((int) (((value
) - (pc
))) >> (2));
590 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 16, 16, 32, total_length
, buffer
);
593 case M32R_OPERAND_DISP24
:
595 long value
= fields
->f_disp24
;
596 value
= ((int) (((value
) - (pc
))) >> (2));
597 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 24, 32, total_length
, buffer
);
600 case M32R_OPERAND_DISP8
:
602 long value
= fields
->f_disp8
;
603 value
= ((int) (((value
) - (((pc
) & (-4))))) >> (2));
604 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 32, total_length
, buffer
);
607 case M32R_OPERAND_DR
:
608 errmsg
= insert_normal (cd
, fields
->f_r1
, 0, 0, 4, 4, 32, total_length
, buffer
);
610 case M32R_OPERAND_HASH
:
612 case M32R_OPERAND_HI16
:
613 errmsg
= insert_normal (cd
, fields
->f_hi16
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 0, 16, 16, 32, total_length
, buffer
);
615 case M32R_OPERAND_IMM1
:
617 long value
= fields
->f_imm1
;
618 value
= ((value
) - (1));
619 errmsg
= insert_normal (cd
, value
, 0, 0, 15, 1, 32, total_length
, buffer
);
622 case M32R_OPERAND_SCR
:
623 errmsg
= insert_normal (cd
, fields
->f_r2
, 0, 0, 12, 4, 32, total_length
, buffer
);
625 case M32R_OPERAND_SIMM16
:
626 errmsg
= insert_normal (cd
, fields
->f_simm16
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, buffer
);
628 case M32R_OPERAND_SIMM8
:
629 errmsg
= insert_normal (cd
, fields
->f_simm8
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 8, 8, 32, total_length
, buffer
);
631 case M32R_OPERAND_SLO16
:
632 errmsg
= insert_normal (cd
, fields
->f_simm16
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, buffer
);
634 case M32R_OPERAND_SR
:
635 errmsg
= insert_normal (cd
, fields
->f_r2
, 0, 0, 12, 4, 32, total_length
, buffer
);
637 case M32R_OPERAND_SRC1
:
638 errmsg
= insert_normal (cd
, fields
->f_r1
, 0, 0, 4, 4, 32, total_length
, buffer
);
640 case M32R_OPERAND_SRC2
:
641 errmsg
= insert_normal (cd
, fields
->f_r2
, 0, 0, 12, 4, 32, total_length
, buffer
);
643 case M32R_OPERAND_UIMM16
:
644 errmsg
= insert_normal (cd
, fields
->f_uimm16
, 0, 0, 16, 16, 32, total_length
, buffer
);
646 case M32R_OPERAND_UIMM24
:
647 errmsg
= insert_normal (cd
, fields
->f_uimm24
, 0|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 24, 32, total_length
, buffer
);
649 case M32R_OPERAND_UIMM3
:
650 errmsg
= insert_normal (cd
, fields
->f_uimm3
, 0, 0, 5, 3, 32, total_length
, buffer
);
652 case M32R_OPERAND_UIMM4
:
653 errmsg
= insert_normal (cd
, fields
->f_uimm4
, 0, 0, 12, 4, 32, total_length
, buffer
);
655 case M32R_OPERAND_UIMM5
:
656 errmsg
= insert_normal (cd
, fields
->f_uimm5
, 0, 0, 11, 5, 32, total_length
, buffer
);
658 case M32R_OPERAND_UIMM8
:
659 errmsg
= insert_normal (cd
, fields
->f_uimm8
, 0, 0, 8, 8, 32, total_length
, buffer
);
661 case M32R_OPERAND_ULO16
:
662 errmsg
= insert_normal (cd
, fields
->f_uimm16
, 0, 0, 16, 16, 32, total_length
, buffer
);
666 /* xgettext:c-format */
667 fprintf (stderr
, _("Unrecognized field %d while building insn.\n"),
675 int m32r_cgen_extract_operand
676 PARAMS ((CGEN_CPU_DESC
, int, CGEN_EXTRACT_INFO
*, CGEN_INSN_INT
,
677 CGEN_FIELDS
*, bfd_vma
));
679 /* Main entry point for operand extraction.
680 The result is <= 0 for error, >0 for success.
681 ??? Actual values aren't well defined right now.
683 This function is basically just a big switch statement. Earlier versions
684 used tables to look up the function to use, but
685 - if the table contains both assembler and disassembler functions then
686 the disassembler contains much of the assembler and vice-versa,
687 - there's a lot of inlining possibilities as things grow,
688 - using a switch statement avoids the function call overhead.
690 This function could be moved into `print_insn_normal', but keeping it
691 separate makes clear the interface between `print_insn_normal' and each of
695 m32r_cgen_extract_operand (cd
, opindex
, ex_info
, insn_value
, fields
, pc
)
698 CGEN_EXTRACT_INFO
*ex_info
;
699 CGEN_INSN_INT insn_value
;
700 CGEN_FIELDS
* fields
;
703 /* Assume success (for those operands that are nops). */
705 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
709 case M32R_OPERAND_ACC
:
710 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 1, 32, total_length
, pc
, & fields
->f_acc
);
712 case M32R_OPERAND_ACCD
:
713 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 2, 32, total_length
, pc
, & fields
->f_accd
);
715 case M32R_OPERAND_ACCS
:
716 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 2, 32, total_length
, pc
, & fields
->f_accs
);
718 case M32R_OPERAND_DCR
:
719 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_r1
);
721 case M32R_OPERAND_DISP16
:
724 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 16, 16, 32, total_length
, pc
, & value
);
725 value
= ((((value
) << (2))) + (pc
));
726 fields
->f_disp16
= value
;
729 case M32R_OPERAND_DISP24
:
732 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 24, 32, total_length
, pc
, & value
);
733 value
= ((((value
) << (2))) + (pc
));
734 fields
->f_disp24
= value
;
737 case M32R_OPERAND_DISP8
:
740 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 32, total_length
, pc
, & value
);
741 value
= ((((value
) << (2))) + (((pc
) & (-4))));
742 fields
->f_disp8
= value
;
745 case M32R_OPERAND_DR
:
746 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_r1
);
748 case M32R_OPERAND_HASH
:
750 case M32R_OPERAND_HI16
:
751 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 0, 16, 16, 32, total_length
, pc
, & fields
->f_hi16
);
753 case M32R_OPERAND_IMM1
:
756 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 15, 1, 32, total_length
, pc
, & value
);
757 value
= ((value
) + (1));
758 fields
->f_imm1
= value
;
761 case M32R_OPERAND_SCR
:
762 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_r2
);
764 case M32R_OPERAND_SIMM16
:
765 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, pc
, & fields
->f_simm16
);
767 case M32R_OPERAND_SIMM8
:
768 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 8, 8, 32, total_length
, pc
, & fields
->f_simm8
);
770 case M32R_OPERAND_SLO16
:
771 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, pc
, & fields
->f_simm16
);
773 case M32R_OPERAND_SR
:
774 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_r2
);
776 case M32R_OPERAND_SRC1
:
777 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_r1
);
779 case M32R_OPERAND_SRC2
:
780 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_r2
);
782 case M32R_OPERAND_UIMM16
:
783 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 16, 16, 32, total_length
, pc
, & fields
->f_uimm16
);
785 case M32R_OPERAND_UIMM24
:
786 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 24, 32, total_length
, pc
, & fields
->f_uimm24
);
788 case M32R_OPERAND_UIMM3
:
789 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 5, 3, 32, total_length
, pc
, & fields
->f_uimm3
);
791 case M32R_OPERAND_UIMM4
:
792 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_uimm4
);
794 case M32R_OPERAND_UIMM5
:
795 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 11, 5, 32, total_length
, pc
, & fields
->f_uimm5
);
797 case M32R_OPERAND_UIMM8
:
798 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 32, total_length
, pc
, & fields
->f_uimm8
);
800 case M32R_OPERAND_ULO16
:
801 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 16, 16, 32, total_length
, pc
, & fields
->f_uimm16
);
805 /* xgettext:c-format */
806 fprintf (stderr
, _("Unrecognized field %d while decoding insn.\n"),
814 cgen_insert_fn
* const m32r_cgen_insert_handlers
[] =
819 cgen_extract_fn
* const m32r_cgen_extract_handlers
[] =
824 int m32r_cgen_get_int_operand
825 PARAMS ((CGEN_CPU_DESC
, int, const CGEN_FIELDS
*));
826 bfd_vma m32r_cgen_get_vma_operand
827 PARAMS ((CGEN_CPU_DESC
, int, const CGEN_FIELDS
*));
829 /* Getting values from cgen_fields is handled by a collection of functions.
830 They are distinguished by the type of the VALUE argument they return.
831 TODO: floating point, inlining support, remove cases where result type
835 m32r_cgen_get_int_operand (cd
, opindex
, fields
)
836 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
838 const CGEN_FIELDS
* fields
;
844 case M32R_OPERAND_ACC
:
845 value
= fields
->f_acc
;
847 case M32R_OPERAND_ACCD
:
848 value
= fields
->f_accd
;
850 case M32R_OPERAND_ACCS
:
851 value
= fields
->f_accs
;
853 case M32R_OPERAND_DCR
:
854 value
= fields
->f_r1
;
856 case M32R_OPERAND_DISP16
:
857 value
= fields
->f_disp16
;
859 case M32R_OPERAND_DISP24
:
860 value
= fields
->f_disp24
;
862 case M32R_OPERAND_DISP8
:
863 value
= fields
->f_disp8
;
865 case M32R_OPERAND_DR
:
866 value
= fields
->f_r1
;
868 case M32R_OPERAND_HASH
:
871 case M32R_OPERAND_HI16
:
872 value
= fields
->f_hi16
;
874 case M32R_OPERAND_IMM1
:
875 value
= fields
->f_imm1
;
877 case M32R_OPERAND_SCR
:
878 value
= fields
->f_r2
;
880 case M32R_OPERAND_SIMM16
:
881 value
= fields
->f_simm16
;
883 case M32R_OPERAND_SIMM8
:
884 value
= fields
->f_simm8
;
886 case M32R_OPERAND_SLO16
:
887 value
= fields
->f_simm16
;
889 case M32R_OPERAND_SR
:
890 value
= fields
->f_r2
;
892 case M32R_OPERAND_SRC1
:
893 value
= fields
->f_r1
;
895 case M32R_OPERAND_SRC2
:
896 value
= fields
->f_r2
;
898 case M32R_OPERAND_UIMM16
:
899 value
= fields
->f_uimm16
;
901 case M32R_OPERAND_UIMM24
:
902 value
= fields
->f_uimm24
;
904 case M32R_OPERAND_UIMM3
:
905 value
= fields
->f_uimm3
;
907 case M32R_OPERAND_UIMM4
:
908 value
= fields
->f_uimm4
;
910 case M32R_OPERAND_UIMM5
:
911 value
= fields
->f_uimm5
;
913 case M32R_OPERAND_UIMM8
:
914 value
= fields
->f_uimm8
;
916 case M32R_OPERAND_ULO16
:
917 value
= fields
->f_uimm16
;
921 /* xgettext:c-format */
922 fprintf (stderr
, _("Unrecognized field %d while getting int operand.\n"),
931 m32r_cgen_get_vma_operand (cd
, opindex
, fields
)
932 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
934 const CGEN_FIELDS
* fields
;
940 case M32R_OPERAND_ACC
:
941 value
= fields
->f_acc
;
943 case M32R_OPERAND_ACCD
:
944 value
= fields
->f_accd
;
946 case M32R_OPERAND_ACCS
:
947 value
= fields
->f_accs
;
949 case M32R_OPERAND_DCR
:
950 value
= fields
->f_r1
;
952 case M32R_OPERAND_DISP16
:
953 value
= fields
->f_disp16
;
955 case M32R_OPERAND_DISP24
:
956 value
= fields
->f_disp24
;
958 case M32R_OPERAND_DISP8
:
959 value
= fields
->f_disp8
;
961 case M32R_OPERAND_DR
:
962 value
= fields
->f_r1
;
964 case M32R_OPERAND_HASH
:
967 case M32R_OPERAND_HI16
:
968 value
= fields
->f_hi16
;
970 case M32R_OPERAND_IMM1
:
971 value
= fields
->f_imm1
;
973 case M32R_OPERAND_SCR
:
974 value
= fields
->f_r2
;
976 case M32R_OPERAND_SIMM16
:
977 value
= fields
->f_simm16
;
979 case M32R_OPERAND_SIMM8
:
980 value
= fields
->f_simm8
;
982 case M32R_OPERAND_SLO16
:
983 value
= fields
->f_simm16
;
985 case M32R_OPERAND_SR
:
986 value
= fields
->f_r2
;
988 case M32R_OPERAND_SRC1
:
989 value
= fields
->f_r1
;
991 case M32R_OPERAND_SRC2
:
992 value
= fields
->f_r2
;
994 case M32R_OPERAND_UIMM16
:
995 value
= fields
->f_uimm16
;
997 case M32R_OPERAND_UIMM24
:
998 value
= fields
->f_uimm24
;
1000 case M32R_OPERAND_UIMM3
:
1001 value
= fields
->f_uimm3
;
1003 case M32R_OPERAND_UIMM4
:
1004 value
= fields
->f_uimm4
;
1006 case M32R_OPERAND_UIMM5
:
1007 value
= fields
->f_uimm5
;
1009 case M32R_OPERAND_UIMM8
:
1010 value
= fields
->f_uimm8
;
1012 case M32R_OPERAND_ULO16
:
1013 value
= fields
->f_uimm16
;
1017 /* xgettext:c-format */
1018 fprintf (stderr
, _("Unrecognized field %d while getting vma operand.\n"),
1026 void m32r_cgen_set_int_operand
1027 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, int));
1028 void m32r_cgen_set_vma_operand
1029 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, bfd_vma
));
1031 /* Stuffing values in cgen_fields is handled by a collection of functions.
1032 They are distinguished by the type of the VALUE argument they accept.
1033 TODO: floating point, inlining support, remove cases where argument type
1037 m32r_cgen_set_int_operand (cd
, opindex
, fields
, value
)
1038 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1040 CGEN_FIELDS
* fields
;
1045 case M32R_OPERAND_ACC
:
1046 fields
->f_acc
= value
;
1048 case M32R_OPERAND_ACCD
:
1049 fields
->f_accd
= value
;
1051 case M32R_OPERAND_ACCS
:
1052 fields
->f_accs
= value
;
1054 case M32R_OPERAND_DCR
:
1055 fields
->f_r1
= value
;
1057 case M32R_OPERAND_DISP16
:
1058 fields
->f_disp16
= value
;
1060 case M32R_OPERAND_DISP24
:
1061 fields
->f_disp24
= value
;
1063 case M32R_OPERAND_DISP8
:
1064 fields
->f_disp8
= value
;
1066 case M32R_OPERAND_DR
:
1067 fields
->f_r1
= value
;
1069 case M32R_OPERAND_HASH
:
1071 case M32R_OPERAND_HI16
:
1072 fields
->f_hi16
= value
;
1074 case M32R_OPERAND_IMM1
:
1075 fields
->f_imm1
= value
;
1077 case M32R_OPERAND_SCR
:
1078 fields
->f_r2
= value
;
1080 case M32R_OPERAND_SIMM16
:
1081 fields
->f_simm16
= value
;
1083 case M32R_OPERAND_SIMM8
:
1084 fields
->f_simm8
= value
;
1086 case M32R_OPERAND_SLO16
:
1087 fields
->f_simm16
= value
;
1089 case M32R_OPERAND_SR
:
1090 fields
->f_r2
= value
;
1092 case M32R_OPERAND_SRC1
:
1093 fields
->f_r1
= value
;
1095 case M32R_OPERAND_SRC2
:
1096 fields
->f_r2
= value
;
1098 case M32R_OPERAND_UIMM16
:
1099 fields
->f_uimm16
= value
;
1101 case M32R_OPERAND_UIMM24
:
1102 fields
->f_uimm24
= value
;
1104 case M32R_OPERAND_UIMM3
:
1105 fields
->f_uimm3
= value
;
1107 case M32R_OPERAND_UIMM4
:
1108 fields
->f_uimm4
= value
;
1110 case M32R_OPERAND_UIMM5
:
1111 fields
->f_uimm5
= value
;
1113 case M32R_OPERAND_UIMM8
:
1114 fields
->f_uimm8
= value
;
1116 case M32R_OPERAND_ULO16
:
1117 fields
->f_uimm16
= value
;
1121 /* xgettext:c-format */
1122 fprintf (stderr
, _("Unrecognized field %d while setting int operand.\n"),
1129 m32r_cgen_set_vma_operand (cd
, opindex
, fields
, value
)
1130 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1132 CGEN_FIELDS
* fields
;
1137 case M32R_OPERAND_ACC
:
1138 fields
->f_acc
= value
;
1140 case M32R_OPERAND_ACCD
:
1141 fields
->f_accd
= value
;
1143 case M32R_OPERAND_ACCS
:
1144 fields
->f_accs
= value
;
1146 case M32R_OPERAND_DCR
:
1147 fields
->f_r1
= value
;
1149 case M32R_OPERAND_DISP16
:
1150 fields
->f_disp16
= value
;
1152 case M32R_OPERAND_DISP24
:
1153 fields
->f_disp24
= value
;
1155 case M32R_OPERAND_DISP8
:
1156 fields
->f_disp8
= value
;
1158 case M32R_OPERAND_DR
:
1159 fields
->f_r1
= value
;
1161 case M32R_OPERAND_HASH
:
1163 case M32R_OPERAND_HI16
:
1164 fields
->f_hi16
= value
;
1166 case M32R_OPERAND_IMM1
:
1167 fields
->f_imm1
= value
;
1169 case M32R_OPERAND_SCR
:
1170 fields
->f_r2
= value
;
1172 case M32R_OPERAND_SIMM16
:
1173 fields
->f_simm16
= value
;
1175 case M32R_OPERAND_SIMM8
:
1176 fields
->f_simm8
= value
;
1178 case M32R_OPERAND_SLO16
:
1179 fields
->f_simm16
= value
;
1181 case M32R_OPERAND_SR
:
1182 fields
->f_r2
= value
;
1184 case M32R_OPERAND_SRC1
:
1185 fields
->f_r1
= value
;
1187 case M32R_OPERAND_SRC2
:
1188 fields
->f_r2
= value
;
1190 case M32R_OPERAND_UIMM16
:
1191 fields
->f_uimm16
= value
;
1193 case M32R_OPERAND_UIMM24
:
1194 fields
->f_uimm24
= value
;
1196 case M32R_OPERAND_UIMM3
:
1197 fields
->f_uimm3
= value
;
1199 case M32R_OPERAND_UIMM4
:
1200 fields
->f_uimm4
= value
;
1202 case M32R_OPERAND_UIMM5
:
1203 fields
->f_uimm5
= value
;
1205 case M32R_OPERAND_UIMM8
:
1206 fields
->f_uimm8
= value
;
1208 case M32R_OPERAND_ULO16
:
1209 fields
->f_uimm16
= value
;
1213 /* xgettext:c-format */
1214 fprintf (stderr
, _("Unrecognized field %d while setting vma operand.\n"),
1220 /* Function to call before using the instruction builder tables. */
1223 m32r_cgen_init_ibld_table (cd
)
1226 cd
->insert_handlers
= & m32r_cgen_insert_handlers
[0];
1227 cd
->extract_handlers
= & m32r_cgen_extract_handlers
[0];
1229 cd
->insert_operand
= m32r_cgen_insert_operand
;
1230 cd
->extract_operand
= m32r_cgen_extract_operand
;
1232 cd
->get_int_operand
= m32r_cgen_get_int_operand
;
1233 cd
->set_int_operand
= m32r_cgen_set_int_operand
;
1234 cd
->get_vma_operand
= m32r_cgen_get_vma_operand
;
1235 cd
->set_vma_operand
= m32r_cgen_set_vma_operand
;