1 /* DO NOT EDIT! -*- buffer-read-only: t -*- vi:set ro: */
2 /* Instruction building/extraction support for m32r. -*- C -*-
4 THIS FILE IS MACHINE GENERATED WITH CGEN: Cpu tools GENerator.
5 - the resultant file is machine generated, cgen-ibld.in isn't
7 Copyright (C) 1996-2023 Free Software Foundation, Inc.
9 This file is part of libopcodes.
11 This library is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3, or (at your option)
16 It is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
19 License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software Foundation, Inc.,
23 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
25 /* ??? Eventually more and more of this stuff can go to cpu-independent files.
34 #include "m32r-desc.h"
36 #include "cgen/basic-modes.h"
38 #include "safe-ctype.h"
41 #define min(a,b) ((a) < (b) ? (a) : (b))
43 #define max(a,b) ((a) > (b) ? (a) : (b))
45 /* Used by the ifield rtx function. */
46 #define FLD(f) (fields->f)
48 static const char * insert_normal
49 (CGEN_CPU_DESC
, long, unsigned int, unsigned int, unsigned int,
50 unsigned int, unsigned int, unsigned int, CGEN_INSN_BYTES_PTR
);
51 static const char * insert_insn_normal
52 (CGEN_CPU_DESC
, const CGEN_INSN
*,
53 CGEN_FIELDS
*, CGEN_INSN_BYTES_PTR
, bfd_vma
);
54 static int extract_normal
55 (CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, CGEN_INSN_INT
,
56 unsigned int, unsigned int, unsigned int, unsigned int,
57 unsigned int, unsigned int, bfd_vma
, long *);
58 static int extract_insn_normal
59 (CGEN_CPU_DESC
, const CGEN_INSN
*, CGEN_EXTRACT_INFO
*,
60 CGEN_INSN_INT
, CGEN_FIELDS
*, bfd_vma
);
62 static void put_insn_int_value
63 (CGEN_CPU_DESC
, CGEN_INSN_BYTES_PTR
, int, int, CGEN_INSN_INT
);
66 static CGEN_INLINE
void insert_1
67 (CGEN_CPU_DESC
, unsigned long, int, int, int, unsigned char *);
68 static CGEN_INLINE
int fill_cache
69 (CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, int, int, bfd_vma
);
70 static CGEN_INLINE
long extract_1
71 (CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, int, int, int, unsigned char *, bfd_vma
);
74 /* Operand insertion. */
78 /* Subroutine of insert_normal. */
80 static CGEN_INLINE
void
81 insert_1 (CGEN_CPU_DESC cd
,
88 unsigned long x
, mask
;
91 x
= cgen_get_insn_value (cd
, bufp
, word_length
, cd
->endian
);
93 /* Written this way to avoid undefined behaviour. */
94 mask
= (1UL << (length
- 1) << 1) - 1;
96 shift
= (start
+ 1) - length
;
98 shift
= (word_length
- (start
+ length
));
99 x
= (x
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
101 cgen_put_insn_value (cd
, bufp
, word_length
, (bfd_vma
) x
, cd
->endian
);
104 #endif /* ! CGEN_INT_INSN_P */
106 /* Default insertion routine.
108 ATTRS is a mask of the boolean attributes.
109 WORD_OFFSET is the offset in bits from the start of the insn of the value.
110 WORD_LENGTH is the length of the word in bits in which the value resides.
111 START is the starting bit number in the word, architecture origin.
112 LENGTH is the length of VALUE in bits.
113 TOTAL_LENGTH is the total length of the insn in bits.
115 The result is an error message or NULL if success. */
117 /* ??? This duplicates functionality with bfd's howto table and
118 bfd_install_relocation. */
119 /* ??? This doesn't handle bfd_vma's. Create another function when
123 insert_normal (CGEN_CPU_DESC cd
,
126 unsigned int word_offset
,
129 unsigned int word_length
,
130 unsigned int total_length
,
131 CGEN_INSN_BYTES_PTR buffer
)
133 static char errbuf
[100];
136 /* If LENGTH is zero, this operand doesn't contribute to the value. */
140 /* Written this way to avoid undefined behaviour. */
141 mask
= (1UL << (length
- 1) << 1) - 1;
143 if (word_length
> 8 * sizeof (CGEN_INSN_INT
))
146 /* For architectures with insns smaller than the base-insn-bitsize,
147 word_length may be too big. */
148 if (cd
->min_insn_bitsize
< cd
->base_insn_bitsize
)
151 && word_length
> total_length
)
152 word_length
= total_length
;
155 /* Ensure VALUE will fit. */
156 if (CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGN_OPT
))
158 long minval
= - (1UL << (length
- 1));
159 unsigned long maxval
= mask
;
161 if ((value
> 0 && (unsigned long) value
> maxval
)
164 /* xgettext:c-format */
166 _("operand out of range (%ld not between %ld and %lu)"),
167 value
, minval
, maxval
);
171 else if (! CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGNED
))
173 unsigned long maxval
= mask
;
174 unsigned long val
= (unsigned long) value
;
176 /* For hosts with a word size > 32 check to see if value has been sign
177 extended beyond 32 bits. If so then ignore these higher sign bits
178 as the user is attempting to store a 32-bit signed value into an
179 unsigned 32-bit field which is allowed. */
180 if (sizeof (unsigned long) > 4 && ((value
>> 32) == -1))
185 /* xgettext:c-format */
187 _("operand out of range (0x%lx not between 0 and 0x%lx)"),
194 if (! cgen_signed_overflow_ok_p (cd
))
196 long minval
= - (1UL << (length
- 1));
197 long maxval
= (1UL << (length
- 1)) - 1;
199 if (value
< minval
|| value
> maxval
)
202 /* xgettext:c-format */
203 (errbuf
, _("operand out of range (%ld not between %ld and %ld)"),
204 value
, minval
, maxval
);
213 int shift_within_word
, shift_to_word
, shift
;
215 /* How to shift the value to BIT0 of the word. */
216 shift_to_word
= total_length
- (word_offset
+ word_length
);
218 /* How to shift the value to the field within the word. */
219 if (CGEN_INSN_LSB0_P
)
220 shift_within_word
= start
+ 1 - length
;
222 shift_within_word
= word_length
- start
- length
;
224 /* The total SHIFT, then mask in the value. */
225 shift
= shift_to_word
+ shift_within_word
;
226 *buffer
= (*buffer
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
229 #else /* ! CGEN_INT_INSN_P */
232 unsigned char *bufp
= (unsigned char *) buffer
+ word_offset
/ 8;
234 insert_1 (cd
, value
, start
, length
, word_length
, bufp
);
237 #endif /* ! CGEN_INT_INSN_P */
242 /* Default insn builder (insert handler).
243 The instruction is recorded in CGEN_INT_INSN_P byte order (meaning
244 that if CGEN_INSN_BYTES_PTR is an int * and thus, the value is
245 recorded in host byte order, otherwise BUFFER is an array of bytes
246 and the value is recorded in target byte order).
247 The result is an error message or NULL if success. */
250 insert_insn_normal (CGEN_CPU_DESC cd
,
251 const CGEN_INSN
* insn
,
252 CGEN_FIELDS
* fields
,
253 CGEN_INSN_BYTES_PTR buffer
,
256 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
258 const CGEN_SYNTAX_CHAR_TYPE
* syn
;
260 CGEN_INIT_INSERT (cd
);
261 value
= CGEN_INSN_BASE_VALUE (insn
);
263 /* If we're recording insns as numbers (rather than a string of bytes),
264 target byte order handling is deferred until later. */
268 put_insn_int_value (cd
, buffer
, cd
->base_insn_bitsize
,
269 CGEN_FIELDS_BITSIZE (fields
), value
);
273 cgen_put_insn_value (cd
, buffer
, min ((unsigned) cd
->base_insn_bitsize
,
274 (unsigned) CGEN_FIELDS_BITSIZE (fields
)),
275 value
, cd
->insn_endian
);
277 #endif /* ! CGEN_INT_INSN_P */
279 /* ??? It would be better to scan the format's fields.
280 Still need to be able to insert a value based on the operand though;
281 e.g. storing a branch displacement that got resolved later.
282 Needs more thought first. */
284 for (syn
= CGEN_SYNTAX_STRING (syntax
); * syn
; ++ syn
)
288 if (CGEN_SYNTAX_CHAR_P (* syn
))
291 errmsg
= (* cd
->insert_operand
) (cd
, CGEN_SYNTAX_FIELD (*syn
),
301 /* Cover function to store an insn value into an integral insn. Must go here
302 because it needs <prefix>-desc.h for CGEN_INT_INSN_P. */
305 put_insn_int_value (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
306 CGEN_INSN_BYTES_PTR buf
,
311 /* For architectures with insns smaller than the base-insn-bitsize,
312 length may be too big. */
313 if (length
> insn_length
)
317 int shift
= insn_length
- length
;
318 /* Written this way to avoid undefined behaviour. */
319 CGEN_INSN_INT mask
= length
== 0 ? 0 : (1UL << (length
- 1) << 1) - 1;
321 *buf
= (*buf
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
326 /* Operand extraction. */
328 #if ! CGEN_INT_INSN_P
330 /* Subroutine of extract_normal.
331 Ensure sufficient bytes are cached in EX_INFO.
332 OFFSET is the offset in bytes from the start of the insn of the value.
333 BYTES is the length of the needed value.
334 Returns 1 for success, 0 for failure. */
336 static CGEN_INLINE
int
337 fill_cache (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
338 CGEN_EXTRACT_INFO
*ex_info
,
343 /* It's doubtful that the middle part has already been fetched so
344 we don't optimize that case. kiss. */
346 disassemble_info
*info
= (disassemble_info
*) ex_info
->dis_info
;
348 /* First do a quick check. */
349 mask
= (1 << bytes
) - 1;
350 if (((ex_info
->valid
>> offset
) & mask
) == mask
)
353 /* Search for the first byte we need to read. */
354 for (mask
= 1 << offset
; bytes
> 0; --bytes
, ++offset
, mask
<<= 1)
355 if (! (mask
& ex_info
->valid
))
363 status
= (*info
->read_memory_func
)
364 (pc
, ex_info
->insn_bytes
+ offset
, bytes
, info
);
368 (*info
->memory_error_func
) (status
, pc
, info
);
372 ex_info
->valid
|= ((1 << bytes
) - 1) << offset
;
378 /* Subroutine of extract_normal. */
380 static CGEN_INLINE
long
381 extract_1 (CGEN_CPU_DESC cd
,
382 CGEN_EXTRACT_INFO
*ex_info ATTRIBUTE_UNUSED
,
387 bfd_vma pc ATTRIBUTE_UNUSED
)
392 x
= cgen_get_insn_value (cd
, bufp
, word_length
, cd
->endian
);
394 if (CGEN_INSN_LSB0_P
)
395 shift
= (start
+ 1) - length
;
397 shift
= (word_length
- (start
+ length
));
401 #endif /* ! CGEN_INT_INSN_P */
403 /* Default extraction routine.
405 INSN_VALUE is the first base_insn_bitsize bits of the insn in host order,
406 or sometimes less for cases like the m32r where the base insn size is 32
407 but some insns are 16 bits.
408 ATTRS is a mask of the boolean attributes. We only need `SIGNED',
409 but for generality we take a bitmask of all of them.
410 WORD_OFFSET is the offset in bits from the start of the insn of the value.
411 WORD_LENGTH is the length of the word in bits in which the value resides.
412 START is the starting bit number in the word, architecture origin.
413 LENGTH is the length of VALUE in bits.
414 TOTAL_LENGTH is the total length of the insn in bits.
416 Returns 1 for success, 0 for failure. */
418 /* ??? The return code isn't properly used. wip. */
420 /* ??? This doesn't handle bfd_vma's. Create another function when
424 extract_normal (CGEN_CPU_DESC cd
,
425 #if ! CGEN_INT_INSN_P
426 CGEN_EXTRACT_INFO
*ex_info
,
428 CGEN_EXTRACT_INFO
*ex_info ATTRIBUTE_UNUSED
,
430 CGEN_INSN_INT insn_value
,
432 unsigned int word_offset
,
435 unsigned int word_length
,
436 unsigned int total_length
,
437 #if ! CGEN_INT_INSN_P
440 bfd_vma pc ATTRIBUTE_UNUSED
,
446 /* If LENGTH is zero, this operand doesn't contribute to the value
447 so give it a standard value of zero. */
454 if (word_length
> 8 * sizeof (CGEN_INSN_INT
))
457 /* For architectures with insns smaller than the insn-base-bitsize,
458 word_length may be too big. */
459 if (cd
->min_insn_bitsize
< cd
->base_insn_bitsize
)
461 if (word_offset
+ word_length
> total_length
)
462 word_length
= total_length
- word_offset
;
465 /* Does the value reside in INSN_VALUE, and at the right alignment? */
467 if (CGEN_INT_INSN_P
|| (word_offset
== 0 && word_length
== total_length
))
469 if (CGEN_INSN_LSB0_P
)
470 value
= insn_value
>> ((word_offset
+ start
+ 1) - length
);
472 value
= insn_value
>> (total_length
- ( word_offset
+ start
+ length
));
475 #if ! CGEN_INT_INSN_P
479 unsigned char *bufp
= ex_info
->insn_bytes
+ word_offset
/ 8;
481 if (word_length
> 8 * sizeof (CGEN_INSN_INT
))
484 if (fill_cache (cd
, ex_info
, word_offset
/ 8, word_length
/ 8, pc
) == 0)
490 value
= extract_1 (cd
, ex_info
, start
, length
, word_length
, bufp
, pc
);
493 #endif /* ! CGEN_INT_INSN_P */
495 /* Written this way to avoid undefined behaviour. */
496 mask
= (1UL << (length
- 1) << 1) - 1;
500 if (CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGNED
)
501 && (value
& (1UL << (length
- 1))))
509 /* Default insn extractor.
511 INSN_VALUE is the first base_insn_bitsize bits, translated to host order.
512 The extracted fields are stored in FIELDS.
513 EX_INFO is used to handle reading variable length insns.
514 Return the length of the insn in bits, or 0 if no match,
515 or -1 if an error occurs fetching data (memory_error_func will have
519 extract_insn_normal (CGEN_CPU_DESC cd
,
520 const CGEN_INSN
*insn
,
521 CGEN_EXTRACT_INFO
*ex_info
,
522 CGEN_INSN_INT insn_value
,
526 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
527 const CGEN_SYNTAX_CHAR_TYPE
*syn
;
529 CGEN_FIELDS_BITSIZE (fields
) = CGEN_INSN_BITSIZE (insn
);
531 CGEN_INIT_EXTRACT (cd
);
533 for (syn
= CGEN_SYNTAX_STRING (syntax
); *syn
; ++syn
)
537 if (CGEN_SYNTAX_CHAR_P (*syn
))
540 length
= (* cd
->extract_operand
) (cd
, CGEN_SYNTAX_FIELD (*syn
),
541 ex_info
, insn_value
, fields
, pc
);
546 /* We recognized and successfully extracted this insn. */
547 return CGEN_INSN_BITSIZE (insn
);
550 /* Machine generated code added here. */
552 const char * m32r_cgen_insert_operand
553 (CGEN_CPU_DESC
, int, CGEN_FIELDS
*, CGEN_INSN_BYTES_PTR
, bfd_vma
);
555 /* Main entry point for operand insertion.
557 This function is basically just a big switch statement. Earlier versions
558 used tables to look up the function to use, but
559 - if the table contains both assembler and disassembler functions then
560 the disassembler contains much of the assembler and vice-versa,
561 - there's a lot of inlining possibilities as things grow,
562 - using a switch statement avoids the function call overhead.
564 This function could be moved into `parse_insn_normal', but keeping it
565 separate makes clear the interface between `parse_insn_normal' and each of
566 the handlers. It's also needed by GAS to insert operands that couldn't be
567 resolved during parsing. */
570 m32r_cgen_insert_operand (CGEN_CPU_DESC cd
,
572 CGEN_FIELDS
* fields
,
573 CGEN_INSN_BYTES_PTR buffer
,
574 bfd_vma pc ATTRIBUTE_UNUSED
)
576 const char * errmsg
= NULL
;
577 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
581 case M32R_OPERAND_ACC
:
582 errmsg
= insert_normal (cd
, fields
->f_acc
, 0, 0, 8, 1, 32, total_length
, buffer
);
584 case M32R_OPERAND_ACCD
:
585 errmsg
= insert_normal (cd
, fields
->f_accd
, 0, 0, 4, 2, 32, total_length
, buffer
);
587 case M32R_OPERAND_ACCS
:
588 errmsg
= insert_normal (cd
, fields
->f_accs
, 0, 0, 12, 2, 32, total_length
, buffer
);
590 case M32R_OPERAND_DCR
:
591 errmsg
= insert_normal (cd
, fields
->f_r1
, 0, 0, 4, 4, 32, total_length
, buffer
);
593 case M32R_OPERAND_DISP16
:
595 long value
= fields
->f_disp16
;
596 value
= ((SI
) (((value
) - (pc
))) >> (2));
597 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
);
600 case M32R_OPERAND_DISP24
:
602 long value
= fields
->f_disp24
;
603 value
= ((SI
) (((value
) - (pc
))) >> (2));
604 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
);
607 case M32R_OPERAND_DISP8
:
609 long value
= fields
->f_disp8
;
610 value
= ((SI
) (((value
) - (((pc
) & (-4))))) >> (2));
611 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
);
614 case M32R_OPERAND_DR
:
615 errmsg
= insert_normal (cd
, fields
->f_r1
, 0, 0, 4, 4, 32, total_length
, buffer
);
617 case M32R_OPERAND_HASH
:
619 case M32R_OPERAND_HI16
:
620 errmsg
= insert_normal (cd
, fields
->f_hi16
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 0, 16, 16, 32, total_length
, buffer
);
622 case M32R_OPERAND_IMM1
:
624 long value
= fields
->f_imm1
;
625 value
= ((value
) - (1));
626 errmsg
= insert_normal (cd
, value
, 0, 0, 15, 1, 32, total_length
, buffer
);
629 case M32R_OPERAND_SCR
:
630 errmsg
= insert_normal (cd
, fields
->f_r2
, 0, 0, 12, 4, 32, total_length
, buffer
);
632 case M32R_OPERAND_SIMM16
:
633 errmsg
= insert_normal (cd
, fields
->f_simm16
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, buffer
);
635 case M32R_OPERAND_SIMM8
:
636 errmsg
= insert_normal (cd
, fields
->f_simm8
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 8, 8, 32, total_length
, buffer
);
638 case M32R_OPERAND_SLO16
:
639 errmsg
= insert_normal (cd
, fields
->f_simm16
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, buffer
);
641 case M32R_OPERAND_SR
:
642 errmsg
= insert_normal (cd
, fields
->f_r2
, 0, 0, 12, 4, 32, total_length
, buffer
);
644 case M32R_OPERAND_SRC1
:
645 errmsg
= insert_normal (cd
, fields
->f_r1
, 0, 0, 4, 4, 32, total_length
, buffer
);
647 case M32R_OPERAND_SRC2
:
648 errmsg
= insert_normal (cd
, fields
->f_r2
, 0, 0, 12, 4, 32, total_length
, buffer
);
650 case M32R_OPERAND_UIMM16
:
651 errmsg
= insert_normal (cd
, fields
->f_uimm16
, 0, 0, 16, 16, 32, total_length
, buffer
);
653 case M32R_OPERAND_UIMM24
:
654 errmsg
= insert_normal (cd
, fields
->f_uimm24
, 0|(1<<CGEN_IFLD_RELOC
)|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 24, 32, total_length
, buffer
);
656 case M32R_OPERAND_UIMM3
:
657 errmsg
= insert_normal (cd
, fields
->f_uimm3
, 0, 0, 5, 3, 32, total_length
, buffer
);
659 case M32R_OPERAND_UIMM4
:
660 errmsg
= insert_normal (cd
, fields
->f_uimm4
, 0, 0, 12, 4, 32, total_length
, buffer
);
662 case M32R_OPERAND_UIMM5
:
663 errmsg
= insert_normal (cd
, fields
->f_uimm5
, 0, 0, 11, 5, 32, total_length
, buffer
);
665 case M32R_OPERAND_UIMM8
:
666 errmsg
= insert_normal (cd
, fields
->f_uimm8
, 0, 0, 8, 8, 32, total_length
, buffer
);
668 case M32R_OPERAND_ULO16
:
669 errmsg
= insert_normal (cd
, fields
->f_uimm16
, 0, 0, 16, 16, 32, total_length
, buffer
);
673 /* xgettext:c-format */
674 opcodes_error_handler
675 (_("internal error: unrecognized field %d while building insn"),
683 int m32r_cgen_extract_operand
684 (CGEN_CPU_DESC
, int, CGEN_EXTRACT_INFO
*, CGEN_INSN_INT
, CGEN_FIELDS
*, bfd_vma
);
686 /* Main entry point for operand extraction.
687 The result is <= 0 for error, >0 for success.
688 ??? Actual values aren't well defined right now.
690 This function is basically just a big switch statement. Earlier versions
691 used tables to look up the function to use, but
692 - if the table contains both assembler and disassembler functions then
693 the disassembler contains much of the assembler and vice-versa,
694 - there's a lot of inlining possibilities as things grow,
695 - using a switch statement avoids the function call overhead.
697 This function could be moved into `print_insn_normal', but keeping it
698 separate makes clear the interface between `print_insn_normal' and each of
702 m32r_cgen_extract_operand (CGEN_CPU_DESC cd
,
704 CGEN_EXTRACT_INFO
*ex_info
,
705 CGEN_INSN_INT insn_value
,
706 CGEN_FIELDS
* fields
,
709 /* Assume success (for those operands that are nops). */
711 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
715 case M32R_OPERAND_ACC
:
716 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 1, 32, total_length
, pc
, & fields
->f_acc
);
718 case M32R_OPERAND_ACCD
:
719 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 2, 32, total_length
, pc
, & fields
->f_accd
);
721 case M32R_OPERAND_ACCS
:
722 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 2, 32, total_length
, pc
, & fields
->f_accs
);
724 case M32R_OPERAND_DCR
:
725 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_r1
);
727 case M32R_OPERAND_DISP16
:
730 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
);
731 value
= ((((value
) * (4))) + (pc
));
732 fields
->f_disp16
= value
;
735 case M32R_OPERAND_DISP24
:
738 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
);
739 value
= ((((value
) * (4))) + (pc
));
740 fields
->f_disp24
= value
;
743 case M32R_OPERAND_DISP8
:
746 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
);
747 value
= ((((value
) * (4))) + (((pc
) & (-4))));
748 fields
->f_disp8
= value
;
751 case M32R_OPERAND_DR
:
752 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_r1
);
754 case M32R_OPERAND_HASH
:
756 case M32R_OPERAND_HI16
:
757 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 0, 16, 16, 32, total_length
, pc
, & fields
->f_hi16
);
759 case M32R_OPERAND_IMM1
:
762 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 15, 1, 32, total_length
, pc
, & value
);
763 value
= ((value
) + (1));
764 fields
->f_imm1
= value
;
767 case M32R_OPERAND_SCR
:
768 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_r2
);
770 case M32R_OPERAND_SIMM16
:
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_SIMM8
:
774 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 8, 8, 32, total_length
, pc
, & fields
->f_simm8
);
776 case M32R_OPERAND_SLO16
:
777 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 16, 16, 32, total_length
, pc
, & fields
->f_simm16
);
779 case M32R_OPERAND_SR
:
780 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_r2
);
782 case M32R_OPERAND_SRC1
:
783 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_r1
);
785 case M32R_OPERAND_SRC2
:
786 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_r2
);
788 case M32R_OPERAND_UIMM16
:
789 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 16, 16, 32, total_length
, pc
, & fields
->f_uimm16
);
791 case M32R_OPERAND_UIMM24
:
792 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
);
794 case M32R_OPERAND_UIMM3
:
795 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 5, 3, 32, total_length
, pc
, & fields
->f_uimm3
);
797 case M32R_OPERAND_UIMM4
:
798 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_uimm4
);
800 case M32R_OPERAND_UIMM5
:
801 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 11, 5, 32, total_length
, pc
, & fields
->f_uimm5
);
803 case M32R_OPERAND_UIMM8
:
804 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 32, total_length
, pc
, & fields
->f_uimm8
);
806 case M32R_OPERAND_ULO16
:
807 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 16, 16, 32, total_length
, pc
, & fields
->f_uimm16
);
811 /* xgettext:c-format */
812 opcodes_error_handler
813 (_("internal error: unrecognized field %d while decoding insn"),
821 cgen_insert_fn
* const m32r_cgen_insert_handlers
[] =
826 cgen_extract_fn
* const m32r_cgen_extract_handlers
[] =
831 int m32r_cgen_get_int_operand (CGEN_CPU_DESC
, int, const CGEN_FIELDS
*);
832 bfd_vma
m32r_cgen_get_vma_operand (CGEN_CPU_DESC
, int, const CGEN_FIELDS
*);
834 /* Getting values from cgen_fields is handled by a collection of functions.
835 They are distinguished by the type of the VALUE argument they return.
836 TODO: floating point, inlining support, remove cases where result type
840 m32r_cgen_get_int_operand (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
842 const CGEN_FIELDS
* fields
)
848 case M32R_OPERAND_ACC
:
849 value
= fields
->f_acc
;
851 case M32R_OPERAND_ACCD
:
852 value
= fields
->f_accd
;
854 case M32R_OPERAND_ACCS
:
855 value
= fields
->f_accs
;
857 case M32R_OPERAND_DCR
:
858 value
= fields
->f_r1
;
860 case M32R_OPERAND_DISP16
:
861 value
= fields
->f_disp16
;
863 case M32R_OPERAND_DISP24
:
864 value
= fields
->f_disp24
;
866 case M32R_OPERAND_DISP8
:
867 value
= fields
->f_disp8
;
869 case M32R_OPERAND_DR
:
870 value
= fields
->f_r1
;
872 case M32R_OPERAND_HASH
:
875 case M32R_OPERAND_HI16
:
876 value
= fields
->f_hi16
;
878 case M32R_OPERAND_IMM1
:
879 value
= fields
->f_imm1
;
881 case M32R_OPERAND_SCR
:
882 value
= fields
->f_r2
;
884 case M32R_OPERAND_SIMM16
:
885 value
= fields
->f_simm16
;
887 case M32R_OPERAND_SIMM8
:
888 value
= fields
->f_simm8
;
890 case M32R_OPERAND_SLO16
:
891 value
= fields
->f_simm16
;
893 case M32R_OPERAND_SR
:
894 value
= fields
->f_r2
;
896 case M32R_OPERAND_SRC1
:
897 value
= fields
->f_r1
;
899 case M32R_OPERAND_SRC2
:
900 value
= fields
->f_r2
;
902 case M32R_OPERAND_UIMM16
:
903 value
= fields
->f_uimm16
;
905 case M32R_OPERAND_UIMM24
:
906 value
= fields
->f_uimm24
;
908 case M32R_OPERAND_UIMM3
:
909 value
= fields
->f_uimm3
;
911 case M32R_OPERAND_UIMM4
:
912 value
= fields
->f_uimm4
;
914 case M32R_OPERAND_UIMM5
:
915 value
= fields
->f_uimm5
;
917 case M32R_OPERAND_UIMM8
:
918 value
= fields
->f_uimm8
;
920 case M32R_OPERAND_ULO16
:
921 value
= fields
->f_uimm16
;
925 /* xgettext:c-format */
926 opcodes_error_handler
927 (_("internal error: unrecognized field %d while getting int operand"),
936 m32r_cgen_get_vma_operand (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
938 const CGEN_FIELDS
* fields
)
944 case M32R_OPERAND_ACC
:
945 value
= fields
->f_acc
;
947 case M32R_OPERAND_ACCD
:
948 value
= fields
->f_accd
;
950 case M32R_OPERAND_ACCS
:
951 value
= fields
->f_accs
;
953 case M32R_OPERAND_DCR
:
954 value
= fields
->f_r1
;
956 case M32R_OPERAND_DISP16
:
957 value
= fields
->f_disp16
;
959 case M32R_OPERAND_DISP24
:
960 value
= fields
->f_disp24
;
962 case M32R_OPERAND_DISP8
:
963 value
= fields
->f_disp8
;
965 case M32R_OPERAND_DR
:
966 value
= fields
->f_r1
;
968 case M32R_OPERAND_HASH
:
971 case M32R_OPERAND_HI16
:
972 value
= fields
->f_hi16
;
974 case M32R_OPERAND_IMM1
:
975 value
= fields
->f_imm1
;
977 case M32R_OPERAND_SCR
:
978 value
= fields
->f_r2
;
980 case M32R_OPERAND_SIMM16
:
981 value
= fields
->f_simm16
;
983 case M32R_OPERAND_SIMM8
:
984 value
= fields
->f_simm8
;
986 case M32R_OPERAND_SLO16
:
987 value
= fields
->f_simm16
;
989 case M32R_OPERAND_SR
:
990 value
= fields
->f_r2
;
992 case M32R_OPERAND_SRC1
:
993 value
= fields
->f_r1
;
995 case M32R_OPERAND_SRC2
:
996 value
= fields
->f_r2
;
998 case M32R_OPERAND_UIMM16
:
999 value
= fields
->f_uimm16
;
1001 case M32R_OPERAND_UIMM24
:
1002 value
= fields
->f_uimm24
;
1004 case M32R_OPERAND_UIMM3
:
1005 value
= fields
->f_uimm3
;
1007 case M32R_OPERAND_UIMM4
:
1008 value
= fields
->f_uimm4
;
1010 case M32R_OPERAND_UIMM5
:
1011 value
= fields
->f_uimm5
;
1013 case M32R_OPERAND_UIMM8
:
1014 value
= fields
->f_uimm8
;
1016 case M32R_OPERAND_ULO16
:
1017 value
= fields
->f_uimm16
;
1021 /* xgettext:c-format */
1022 opcodes_error_handler
1023 (_("internal error: unrecognized field %d while getting vma operand"),
1031 void m32r_cgen_set_int_operand (CGEN_CPU_DESC
, int, CGEN_FIELDS
*, int);
1032 void m32r_cgen_set_vma_operand (CGEN_CPU_DESC
, int, CGEN_FIELDS
*, bfd_vma
);
1034 /* Stuffing values in cgen_fields is handled by a collection of functions.
1035 They are distinguished by the type of the VALUE argument they accept.
1036 TODO: floating point, inlining support, remove cases where argument type
1040 m32r_cgen_set_int_operand (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
1042 CGEN_FIELDS
* fields
,
1047 case M32R_OPERAND_ACC
:
1048 fields
->f_acc
= value
;
1050 case M32R_OPERAND_ACCD
:
1051 fields
->f_accd
= value
;
1053 case M32R_OPERAND_ACCS
:
1054 fields
->f_accs
= value
;
1056 case M32R_OPERAND_DCR
:
1057 fields
->f_r1
= value
;
1059 case M32R_OPERAND_DISP16
:
1060 fields
->f_disp16
= value
;
1062 case M32R_OPERAND_DISP24
:
1063 fields
->f_disp24
= value
;
1065 case M32R_OPERAND_DISP8
:
1066 fields
->f_disp8
= value
;
1068 case M32R_OPERAND_DR
:
1069 fields
->f_r1
= value
;
1071 case M32R_OPERAND_HASH
:
1073 case M32R_OPERAND_HI16
:
1074 fields
->f_hi16
= value
;
1076 case M32R_OPERAND_IMM1
:
1077 fields
->f_imm1
= value
;
1079 case M32R_OPERAND_SCR
:
1080 fields
->f_r2
= value
;
1082 case M32R_OPERAND_SIMM16
:
1083 fields
->f_simm16
= value
;
1085 case M32R_OPERAND_SIMM8
:
1086 fields
->f_simm8
= value
;
1088 case M32R_OPERAND_SLO16
:
1089 fields
->f_simm16
= value
;
1091 case M32R_OPERAND_SR
:
1092 fields
->f_r2
= value
;
1094 case M32R_OPERAND_SRC1
:
1095 fields
->f_r1
= value
;
1097 case M32R_OPERAND_SRC2
:
1098 fields
->f_r2
= value
;
1100 case M32R_OPERAND_UIMM16
:
1101 fields
->f_uimm16
= value
;
1103 case M32R_OPERAND_UIMM24
:
1104 fields
->f_uimm24
= value
;
1106 case M32R_OPERAND_UIMM3
:
1107 fields
->f_uimm3
= value
;
1109 case M32R_OPERAND_UIMM4
:
1110 fields
->f_uimm4
= value
;
1112 case M32R_OPERAND_UIMM5
:
1113 fields
->f_uimm5
= value
;
1115 case M32R_OPERAND_UIMM8
:
1116 fields
->f_uimm8
= value
;
1118 case M32R_OPERAND_ULO16
:
1119 fields
->f_uimm16
= value
;
1123 /* xgettext:c-format */
1124 opcodes_error_handler
1125 (_("internal error: unrecognized field %d while setting int operand"),
1132 m32r_cgen_set_vma_operand (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
,
1134 CGEN_FIELDS
* fields
,
1139 case M32R_OPERAND_ACC
:
1140 fields
->f_acc
= value
;
1142 case M32R_OPERAND_ACCD
:
1143 fields
->f_accd
= value
;
1145 case M32R_OPERAND_ACCS
:
1146 fields
->f_accs
= value
;
1148 case M32R_OPERAND_DCR
:
1149 fields
->f_r1
= value
;
1151 case M32R_OPERAND_DISP16
:
1152 fields
->f_disp16
= value
;
1154 case M32R_OPERAND_DISP24
:
1155 fields
->f_disp24
= value
;
1157 case M32R_OPERAND_DISP8
:
1158 fields
->f_disp8
= value
;
1160 case M32R_OPERAND_DR
:
1161 fields
->f_r1
= value
;
1163 case M32R_OPERAND_HASH
:
1165 case M32R_OPERAND_HI16
:
1166 fields
->f_hi16
= value
;
1168 case M32R_OPERAND_IMM1
:
1169 fields
->f_imm1
= value
;
1171 case M32R_OPERAND_SCR
:
1172 fields
->f_r2
= value
;
1174 case M32R_OPERAND_SIMM16
:
1175 fields
->f_simm16
= value
;
1177 case M32R_OPERAND_SIMM8
:
1178 fields
->f_simm8
= value
;
1180 case M32R_OPERAND_SLO16
:
1181 fields
->f_simm16
= value
;
1183 case M32R_OPERAND_SR
:
1184 fields
->f_r2
= value
;
1186 case M32R_OPERAND_SRC1
:
1187 fields
->f_r1
= value
;
1189 case M32R_OPERAND_SRC2
:
1190 fields
->f_r2
= value
;
1192 case M32R_OPERAND_UIMM16
:
1193 fields
->f_uimm16
= value
;
1195 case M32R_OPERAND_UIMM24
:
1196 fields
->f_uimm24
= value
;
1198 case M32R_OPERAND_UIMM3
:
1199 fields
->f_uimm3
= value
;
1201 case M32R_OPERAND_UIMM4
:
1202 fields
->f_uimm4
= value
;
1204 case M32R_OPERAND_UIMM5
:
1205 fields
->f_uimm5
= value
;
1207 case M32R_OPERAND_UIMM8
:
1208 fields
->f_uimm8
= value
;
1210 case M32R_OPERAND_ULO16
:
1211 fields
->f_uimm16
= value
;
1215 /* xgettext:c-format */
1216 opcodes_error_handler
1217 (_("internal error: unrecognized field %d while setting vma operand"),
1223 /* Function to call before using the instruction builder tables. */
1226 m32r_cgen_init_ibld_table (CGEN_CPU_DESC cd
)
1228 cd
->insert_handlers
= & m32r_cgen_insert_handlers
[0];
1229 cd
->extract_handlers
= & m32r_cgen_extract_handlers
[0];
1231 cd
->insert_operand
= m32r_cgen_insert_operand
;
1232 cd
->extract_operand
= m32r_cgen_extract_operand
;
1234 cd
->get_int_operand
= m32r_cgen_get_int_operand
;
1235 cd
->set_int_operand
= m32r_cgen_set_int_operand
;
1236 cd
->get_vma_operand
= m32r_cgen_get_vma_operand
;
1237 cd
->set_vma_operand
= m32r_cgen_set_vma_operand
;