1 /* Instruction building/extraction support for xstormy16. -*- 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 "xstormy16-desc.h"
34 #include "xstormy16-opc.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 PARAMS ((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 PARAMS ((CGEN_CPU_DESC
, const CGEN_INSN
*,
51 CGEN_FIELDS
*, CGEN_INSN_BYTES_PTR
, bfd_vma
));
52 static int extract_normal
53 PARAMS ((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 PARAMS ((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 PARAMS ((CGEN_CPU_DESC
, CGEN_INSN_BYTES_PTR
, int, int, CGEN_INSN_INT
));
64 static CGEN_INLINE
void insert_1
65 PARAMS ((CGEN_CPU_DESC
, unsigned long, int, int, int, unsigned char *));
66 static CGEN_INLINE
int fill_cache
67 PARAMS ((CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, int, int, bfd_vma
));
68 static CGEN_INLINE
long extract_1
69 PARAMS ((CGEN_CPU_DESC
, CGEN_EXTRACT_INFO
*, int, int, int,
70 unsigned char *, bfd_vma
));
73 /* Operand insertion. */
77 /* Subroutine of insert_normal. */
79 static CGEN_INLINE
void
80 insert_1 (cd
, value
, start
, length
, word_length
, bufp
)
83 int start
,length
,word_length
;
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 (cd
, value
, attrs
, word_offset
, start
, length
, word_length
,
122 total_length
, buffer
)
126 unsigned int word_offset
, start
, length
, word_length
, total_length
;
127 CGEN_INSN_BYTES_PTR buffer
;
129 static char errbuf
[100];
130 /* Written this way to avoid undefined behaviour. */
131 unsigned long mask
= (((1L << (length
- 1)) - 1) << 1) | 1;
133 /* If LENGTH is zero, this operand doesn't contribute to the value. */
143 if (word_length
> 32)
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
= - (1L << (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
;
175 if ((unsigned long) value
> maxval
)
177 /* xgettext:c-format */
179 _("operand out of range (%lu not between 0 and %lu)"),
186 if (! cgen_signed_overflow_ok_p (cd
))
188 long minval
= - (1L << (length
- 1));
189 long maxval
= (1L << (length
- 1)) - 1;
191 if (value
< minval
|| value
> maxval
)
194 /* xgettext:c-format */
195 (errbuf
, _("operand out of range (%ld not between %ld and %ld)"),
196 value
, minval
, maxval
);
207 if (CGEN_INSN_LSB0_P
)
208 shift
= (word_offset
+ start
+ 1) - length
;
210 shift
= total_length
- (word_offset
+ start
+ length
);
211 *buffer
= (*buffer
& ~(mask
<< shift
)) | ((value
& mask
) << shift
);
214 #else /* ! CGEN_INT_INSN_P */
217 unsigned char *bufp
= (unsigned char *) buffer
+ word_offset
/ 8;
219 insert_1 (cd
, value
, start
, length
, word_length
, bufp
);
222 #endif /* ! CGEN_INT_INSN_P */
227 /* Default insn builder (insert handler).
228 The instruction is recorded in CGEN_INT_INSN_P byte order (meaning
229 that if CGEN_INSN_BYTES_PTR is an int * and thus, the value is
230 recorded in host byte order, otherwise BUFFER is an array of bytes
231 and the value is recorded in target byte order).
232 The result is an error message or NULL if success. */
235 insert_insn_normal (cd
, insn
, fields
, buffer
, pc
)
237 const CGEN_INSN
* insn
;
238 CGEN_FIELDS
* fields
;
239 CGEN_INSN_BYTES_PTR buffer
;
242 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
244 const CGEN_SYNTAX_CHAR_TYPE
* syn
;
246 CGEN_INIT_INSERT (cd
);
247 value
= CGEN_INSN_BASE_VALUE (insn
);
249 /* If we're recording insns as numbers (rather than a string of bytes),
250 target byte order handling is deferred until later. */
254 put_insn_int_value (cd
, buffer
, cd
->base_insn_bitsize
,
255 CGEN_FIELDS_BITSIZE (fields
), value
);
259 cgen_put_insn_value (cd
, buffer
, min ((unsigned) cd
->base_insn_bitsize
,
260 (unsigned) CGEN_FIELDS_BITSIZE (fields
)),
263 #endif /* ! CGEN_INT_INSN_P */
265 /* ??? It would be better to scan the format's fields.
266 Still need to be able to insert a value based on the operand though;
267 e.g. storing a branch displacement that got resolved later.
268 Needs more thought first. */
270 for (syn
= CGEN_SYNTAX_STRING (syntax
); * syn
; ++ syn
)
274 if (CGEN_SYNTAX_CHAR_P (* syn
))
277 errmsg
= (* cd
->insert_operand
) (cd
, CGEN_SYNTAX_FIELD (*syn
),
287 /* Cover function to store an insn value into an integral insn. Must go here
288 because it needs <prefix>-desc.h for CGEN_INT_INSN_P. */
291 put_insn_int_value (cd
, buf
, length
, insn_length
, value
)
292 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 (cd
, ex_info
, offset
, bytes
, pc
)
324 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
325 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 (cd
, ex_info
, start
, length
, word_length
, bufp
, pc
)
369 CGEN_EXTRACT_INFO
*ex_info ATTRIBUTE_UNUSED
;
370 int start
,length
,word_length
;
372 bfd_vma pc ATTRIBUTE_UNUSED
;
377 int big_p
= CGEN_CPU_INSN_ENDIAN (cd
) == CGEN_ENDIAN_BIG
;
379 x
= cgen_get_insn_value (cd
, bufp
, word_length
);
381 if (CGEN_INSN_LSB0_P
)
382 shift
= (start
+ 1) - length
;
384 shift
= (word_length
- (start
+ length
));
388 #endif /* ! CGEN_INT_INSN_P */
390 /* Default extraction routine.
392 INSN_VALUE is the first base_insn_bitsize bits of the insn in host order,
393 or sometimes less for cases like the m32r where the base insn size is 32
394 but some insns are 16 bits.
395 ATTRS is a mask of the boolean attributes. We only need `SIGNED',
396 but for generality we take a bitmask of all of them.
397 WORD_OFFSET is the offset in bits from the start of the insn of the value.
398 WORD_LENGTH is the length of the word in bits in which the value resides.
399 START is the starting bit number in the word, architecture origin.
400 LENGTH is the length of VALUE in bits.
401 TOTAL_LENGTH is the total length of the insn in bits.
403 Returns 1 for success, 0 for failure. */
405 /* ??? The return code isn't properly used. wip. */
407 /* ??? This doesn't handle bfd_vma's. Create another function when
411 extract_normal (cd
, ex_info
, insn_value
, attrs
, word_offset
, start
, length
,
412 word_length
, total_length
, pc
, valuep
)
414 #if ! CGEN_INT_INSN_P
415 CGEN_EXTRACT_INFO
*ex_info
;
417 CGEN_EXTRACT_INFO
*ex_info ATTRIBUTE_UNUSED
;
419 CGEN_INSN_INT insn_value
;
421 unsigned int word_offset
, start
, length
, word_length
, total_length
;
422 #if ! CGEN_INT_INSN_P
425 bfd_vma pc ATTRIBUTE_UNUSED
;
431 /* If LENGTH is zero, this operand doesn't contribute to the value
432 so give it a standard value of zero. */
445 if (word_length
> 32)
448 /* For architectures with insns smaller than the insn-base-bitsize,
449 word_length may be too big. */
450 if (cd
->min_insn_bitsize
< cd
->base_insn_bitsize
)
453 && word_length
> total_length
)
454 word_length
= total_length
;
457 /* Does the value reside in INSN_VALUE, and at the right alignment? */
459 if (CGEN_INT_INSN_P
|| (word_offset
== 0 && word_length
== total_length
))
461 if (CGEN_INSN_LSB0_P
)
462 value
= insn_value
>> ((word_offset
+ start
+ 1) - length
);
464 value
= insn_value
>> (total_length
- ( word_offset
+ start
+ length
));
467 #if ! CGEN_INT_INSN_P
471 unsigned char *bufp
= ex_info
->insn_bytes
+ word_offset
/ 8;
473 if (word_length
> 32)
476 if (fill_cache (cd
, ex_info
, word_offset
/ 8, word_length
/ 8, pc
) == 0)
479 value
= extract_1 (cd
, ex_info
, start
, length
, word_length
, bufp
, pc
);
482 #endif /* ! CGEN_INT_INSN_P */
484 /* Written this way to avoid undefined behaviour. */
485 mask
= (((1L << (length
- 1)) - 1) << 1) | 1;
489 if (CGEN_BOOL_ATTR (attrs
, CGEN_IFLD_SIGNED
)
490 && (value
& (1L << (length
- 1))))
498 /* Default insn extractor.
500 INSN_VALUE is the first base_insn_bitsize bits, translated to host order.
501 The extracted fields are stored in FIELDS.
502 EX_INFO is used to handle reading variable length insns.
503 Return the length of the insn in bits, or 0 if no match,
504 or -1 if an error occurs fetching data (memory_error_func will have
508 extract_insn_normal (cd
, insn
, ex_info
, insn_value
, fields
, pc
)
510 const CGEN_INSN
*insn
;
511 CGEN_EXTRACT_INFO
*ex_info
;
512 CGEN_INSN_INT insn_value
;
516 const CGEN_SYNTAX
*syntax
= CGEN_INSN_SYNTAX (insn
);
517 const CGEN_SYNTAX_CHAR_TYPE
*syn
;
519 CGEN_FIELDS_BITSIZE (fields
) = CGEN_INSN_BITSIZE (insn
);
521 CGEN_INIT_EXTRACT (cd
);
523 for (syn
= CGEN_SYNTAX_STRING (syntax
); *syn
; ++syn
)
527 if (CGEN_SYNTAX_CHAR_P (*syn
))
530 length
= (* cd
->extract_operand
) (cd
, CGEN_SYNTAX_FIELD (*syn
),
531 ex_info
, insn_value
, fields
, pc
);
536 /* We recognized and successfully extracted this insn. */
537 return CGEN_INSN_BITSIZE (insn
);
540 /* machine generated code added here */
542 const char * xstormy16_cgen_insert_operand
543 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, CGEN_INSN_BYTES_PTR
, bfd_vma
));
545 /* Main entry point for operand insertion.
547 This function is basically just a big switch statement. Earlier versions
548 used tables to look up the function to use, but
549 - if the table contains both assembler and disassembler functions then
550 the disassembler contains much of the assembler and vice-versa,
551 - there's a lot of inlining possibilities as things grow,
552 - using a switch statement avoids the function call overhead.
554 This function could be moved into `parse_insn_normal', but keeping it
555 separate makes clear the interface between `parse_insn_normal' and each of
556 the handlers. It's also needed by GAS to insert operands that couldn't be
557 resolved during parsing. */
560 xstormy16_cgen_insert_operand (cd
, opindex
, fields
, buffer
, pc
)
563 CGEN_FIELDS
* fields
;
564 CGEN_INSN_BYTES_PTR buffer
;
565 bfd_vma pc ATTRIBUTE_UNUSED
;
567 const char * errmsg
= NULL
;
568 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
572 case XSTORMY16_OPERAND_RB
:
573 errmsg
= insert_normal (cd
, fields
->f_Rb
, 0, 0, 17, 3, 32, total_length
, buffer
);
575 case XSTORMY16_OPERAND_RBJ
:
576 errmsg
= insert_normal (cd
, fields
->f_Rbj
, 0, 0, 11, 1, 32, total_length
, buffer
);
578 case XSTORMY16_OPERAND_RD
:
579 errmsg
= insert_normal (cd
, fields
->f_Rd
, 0, 0, 12, 4, 32, total_length
, buffer
);
581 case XSTORMY16_OPERAND_RDM
:
582 errmsg
= insert_normal (cd
, fields
->f_Rdm
, 0, 0, 13, 3, 32, total_length
, buffer
);
584 case XSTORMY16_OPERAND_RM
:
585 errmsg
= insert_normal (cd
, fields
->f_Rm
, 0, 0, 4, 3, 32, total_length
, buffer
);
587 case XSTORMY16_OPERAND_RS
:
588 errmsg
= insert_normal (cd
, fields
->f_Rs
, 0, 0, 8, 4, 32, total_length
, buffer
);
590 case XSTORMY16_OPERAND_ABS24
:
593 FLD (f_abs24_1
) = ((FLD (f_abs24
)) & (255));
594 FLD (f_abs24_2
) = ((unsigned int) (FLD (f_abs24
)) >> (8));
596 errmsg
= insert_normal (cd
, fields
->f_abs24_1
, 0, 0, 8, 8, 32, total_length
, buffer
);
599 errmsg
= insert_normal (cd
, fields
->f_abs24_2
, 0, 0, 16, 16, 32, total_length
, buffer
);
604 case XSTORMY16_OPERAND_BCOND2
:
605 errmsg
= insert_normal (cd
, fields
->f_op2
, 0, 0, 4, 4, 32, total_length
, buffer
);
607 case XSTORMY16_OPERAND_BCOND5
:
608 errmsg
= insert_normal (cd
, fields
->f_op5
, 0, 0, 16, 4, 32, total_length
, buffer
);
610 case XSTORMY16_OPERAND_HMEM8
:
612 long value
= fields
->f_hmem8
;
613 value
= ((value
) - (32512));
614 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 8, 32, total_length
, buffer
);
617 case XSTORMY16_OPERAND_IMM12
:
618 errmsg
= insert_normal (cd
, fields
->f_imm12
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 20, 12, 32, total_length
, buffer
);
620 case XSTORMY16_OPERAND_IMM16
:
621 errmsg
= insert_normal (cd
, fields
->f_imm16
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 0, 16, 16, 32, total_length
, buffer
);
623 case XSTORMY16_OPERAND_IMM2
:
624 errmsg
= insert_normal (cd
, fields
->f_imm2
, 0, 0, 10, 2, 32, total_length
, buffer
);
626 case XSTORMY16_OPERAND_IMM3
:
627 errmsg
= insert_normal (cd
, fields
->f_imm3
, 0, 0, 4, 3, 32, total_length
, buffer
);
629 case XSTORMY16_OPERAND_IMM3B
:
630 errmsg
= insert_normal (cd
, fields
->f_imm3b
, 0, 0, 17, 3, 32, total_length
, buffer
);
632 case XSTORMY16_OPERAND_IMM4
:
633 errmsg
= insert_normal (cd
, fields
->f_imm4
, 0, 0, 8, 4, 32, total_length
, buffer
);
635 case XSTORMY16_OPERAND_IMM8
:
636 errmsg
= insert_normal (cd
, fields
->f_imm8
, 0, 0, 8, 8, 32, total_length
, buffer
);
638 case XSTORMY16_OPERAND_IMM8SMALL
:
639 errmsg
= insert_normal (cd
, fields
->f_imm8
, 0, 0, 8, 8, 32, total_length
, buffer
);
641 case XSTORMY16_OPERAND_LMEM8
:
642 errmsg
= insert_normal (cd
, fields
->f_lmem8
, 0|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 8, 32, total_length
, buffer
);
644 case XSTORMY16_OPERAND_REL12
:
646 long value
= fields
->f_rel12
;
647 value
= ((value
) - (((pc
) + (4))));
648 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 20, 12, 32, total_length
, buffer
);
651 case XSTORMY16_OPERAND_REL12A
:
653 long value
= fields
->f_rel12a
;
654 value
= ((int) (((value
) - (((pc
) + (2))))) >> (1));
655 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 4, 11, 32, total_length
, buffer
);
658 case XSTORMY16_OPERAND_REL8_2
:
660 long value
= fields
->f_rel8_2
;
661 value
= ((value
) - (((pc
) + (2))));
662 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 32, total_length
, buffer
);
665 case XSTORMY16_OPERAND_REL8_4
:
667 long value
= fields
->f_rel8_4
;
668 value
= ((value
) - (((pc
) + (4))));
669 errmsg
= insert_normal (cd
, value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 32, total_length
, buffer
);
672 case XSTORMY16_OPERAND_WS2
:
673 errmsg
= insert_normal (cd
, fields
->f_op2m
, 0, 0, 7, 1, 32, total_length
, buffer
);
677 /* xgettext:c-format */
678 fprintf (stderr
, _("Unrecognized field %d while building insn.\n"),
686 int xstormy16_cgen_extract_operand
687 PARAMS ((CGEN_CPU_DESC
, int, CGEN_EXTRACT_INFO
*, CGEN_INSN_INT
,
688 CGEN_FIELDS
*, bfd_vma
));
690 /* Main entry point for operand extraction.
691 The result is <= 0 for error, >0 for success.
692 ??? Actual values aren't well defined right now.
694 This function is basically just a big switch statement. Earlier versions
695 used tables to look up the function to use, but
696 - if the table contains both assembler and disassembler functions then
697 the disassembler contains much of the assembler and vice-versa,
698 - there's a lot of inlining possibilities as things grow,
699 - using a switch statement avoids the function call overhead.
701 This function could be moved into `print_insn_normal', but keeping it
702 separate makes clear the interface between `print_insn_normal' and each of
706 xstormy16_cgen_extract_operand (cd
, opindex
, ex_info
, insn_value
, fields
, pc
)
709 CGEN_EXTRACT_INFO
*ex_info
;
710 CGEN_INSN_INT insn_value
;
711 CGEN_FIELDS
* fields
;
714 /* Assume success (for those operands that are nops). */
716 unsigned int total_length
= CGEN_FIELDS_BITSIZE (fields
);
720 case XSTORMY16_OPERAND_RB
:
721 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 17, 3, 32, total_length
, pc
, & fields
->f_Rb
);
723 case XSTORMY16_OPERAND_RBJ
:
724 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 11, 1, 32, total_length
, pc
, & fields
->f_Rbj
);
726 case XSTORMY16_OPERAND_RD
:
727 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 12, 4, 32, total_length
, pc
, & fields
->f_Rd
);
729 case XSTORMY16_OPERAND_RDM
:
730 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 13, 3, 32, total_length
, pc
, & fields
->f_Rdm
);
732 case XSTORMY16_OPERAND_RM
:
733 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 3, 32, total_length
, pc
, & fields
->f_Rm
);
735 case XSTORMY16_OPERAND_RS
:
736 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 32, total_length
, pc
, & fields
->f_Rs
);
738 case XSTORMY16_OPERAND_ABS24
:
740 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 32, total_length
, pc
, & fields
->f_abs24_1
);
741 if (length
<= 0) break;
742 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 16, 16, 32, total_length
, pc
, & fields
->f_abs24_2
);
743 if (length
<= 0) break;
744 FLD (f_abs24
) = ((((FLD (f_abs24_2
)) << (8))) | (FLD (f_abs24_1
)));
747 case XSTORMY16_OPERAND_BCOND2
:
748 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 4, 32, total_length
, pc
, & fields
->f_op2
);
750 case XSTORMY16_OPERAND_BCOND5
:
751 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 16, 4, 32, total_length
, pc
, & fields
->f_op5
);
753 case XSTORMY16_OPERAND_HMEM8
:
756 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 8, 32, total_length
, pc
, & value
);
757 value
= ((value
) + (32512));
758 fields
->f_hmem8
= value
;
761 case XSTORMY16_OPERAND_IMM12
:
762 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
), 0, 20, 12, 32, total_length
, pc
, & fields
->f_imm12
);
764 case XSTORMY16_OPERAND_IMM16
:
765 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGN_OPT
), 0, 16, 16, 32, total_length
, pc
, & fields
->f_imm16
);
767 case XSTORMY16_OPERAND_IMM2
:
768 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 10, 2, 32, total_length
, pc
, & fields
->f_imm2
);
770 case XSTORMY16_OPERAND_IMM3
:
771 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 4, 3, 32, total_length
, pc
, & fields
->f_imm3
);
773 case XSTORMY16_OPERAND_IMM3B
:
774 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 17, 3, 32, total_length
, pc
, & fields
->f_imm3b
);
776 case XSTORMY16_OPERAND_IMM4
:
777 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 4, 32, total_length
, pc
, & fields
->f_imm4
);
779 case XSTORMY16_OPERAND_IMM8
:
780 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 32, total_length
, pc
, & fields
->f_imm8
);
782 case XSTORMY16_OPERAND_IMM8SMALL
:
783 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 8, 8, 32, total_length
, pc
, & fields
->f_imm8
);
785 case XSTORMY16_OPERAND_LMEM8
:
786 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_ABS_ADDR
), 0, 8, 8, 32, total_length
, pc
, & fields
->f_lmem8
);
788 case XSTORMY16_OPERAND_REL12
:
791 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 20, 12, 32, total_length
, pc
, & value
);
792 value
= ((value
) + (((pc
) + (4))));
793 fields
->f_rel12
= value
;
796 case XSTORMY16_OPERAND_REL12A
:
799 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 4, 11, 32, total_length
, pc
, & value
);
800 value
= ((((value
) << (1))) + (((pc
) + (2))));
801 fields
->f_rel12a
= value
;
804 case XSTORMY16_OPERAND_REL8_2
:
807 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 32, total_length
, pc
, & value
);
808 value
= ((value
) + (((pc
) + (2))));
809 fields
->f_rel8_2
= value
;
812 case XSTORMY16_OPERAND_REL8_4
:
815 length
= extract_normal (cd
, ex_info
, insn_value
, 0|(1<<CGEN_IFLD_SIGNED
)|(1<<CGEN_IFLD_PCREL_ADDR
), 0, 8, 8, 32, total_length
, pc
, & value
);
816 value
= ((value
) + (((pc
) + (4))));
817 fields
->f_rel8_4
= value
;
820 case XSTORMY16_OPERAND_WS2
:
821 length
= extract_normal (cd
, ex_info
, insn_value
, 0, 0, 7, 1, 32, total_length
, pc
, & fields
->f_op2m
);
825 /* xgettext:c-format */
826 fprintf (stderr
, _("Unrecognized field %d while decoding insn.\n"),
834 cgen_insert_fn
* const xstormy16_cgen_insert_handlers
[] =
839 cgen_extract_fn
* const xstormy16_cgen_extract_handlers
[] =
844 int xstormy16_cgen_get_int_operand
845 PARAMS ((CGEN_CPU_DESC
, int, const CGEN_FIELDS
*));
846 bfd_vma xstormy16_cgen_get_vma_operand
847 PARAMS ((CGEN_CPU_DESC
, int, const CGEN_FIELDS
*));
849 /* Getting values from cgen_fields is handled by a collection of functions.
850 They are distinguished by the type of the VALUE argument they return.
851 TODO: floating point, inlining support, remove cases where result type
855 xstormy16_cgen_get_int_operand (cd
, opindex
, fields
)
856 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
858 const CGEN_FIELDS
* fields
;
864 case XSTORMY16_OPERAND_RB
:
865 value
= fields
->f_Rb
;
867 case XSTORMY16_OPERAND_RBJ
:
868 value
= fields
->f_Rbj
;
870 case XSTORMY16_OPERAND_RD
:
871 value
= fields
->f_Rd
;
873 case XSTORMY16_OPERAND_RDM
:
874 value
= fields
->f_Rdm
;
876 case XSTORMY16_OPERAND_RM
:
877 value
= fields
->f_Rm
;
879 case XSTORMY16_OPERAND_RS
:
880 value
= fields
->f_Rs
;
882 case XSTORMY16_OPERAND_ABS24
:
883 value
= fields
->f_abs24
;
885 case XSTORMY16_OPERAND_BCOND2
:
886 value
= fields
->f_op2
;
888 case XSTORMY16_OPERAND_BCOND5
:
889 value
= fields
->f_op5
;
891 case XSTORMY16_OPERAND_HMEM8
:
892 value
= fields
->f_hmem8
;
894 case XSTORMY16_OPERAND_IMM12
:
895 value
= fields
->f_imm12
;
897 case XSTORMY16_OPERAND_IMM16
:
898 value
= fields
->f_imm16
;
900 case XSTORMY16_OPERAND_IMM2
:
901 value
= fields
->f_imm2
;
903 case XSTORMY16_OPERAND_IMM3
:
904 value
= fields
->f_imm3
;
906 case XSTORMY16_OPERAND_IMM3B
:
907 value
= fields
->f_imm3b
;
909 case XSTORMY16_OPERAND_IMM4
:
910 value
= fields
->f_imm4
;
912 case XSTORMY16_OPERAND_IMM8
:
913 value
= fields
->f_imm8
;
915 case XSTORMY16_OPERAND_IMM8SMALL
:
916 value
= fields
->f_imm8
;
918 case XSTORMY16_OPERAND_LMEM8
:
919 value
= fields
->f_lmem8
;
921 case XSTORMY16_OPERAND_REL12
:
922 value
= fields
->f_rel12
;
924 case XSTORMY16_OPERAND_REL12A
:
925 value
= fields
->f_rel12a
;
927 case XSTORMY16_OPERAND_REL8_2
:
928 value
= fields
->f_rel8_2
;
930 case XSTORMY16_OPERAND_REL8_4
:
931 value
= fields
->f_rel8_4
;
933 case XSTORMY16_OPERAND_WS2
:
934 value
= fields
->f_op2m
;
938 /* xgettext:c-format */
939 fprintf (stderr
, _("Unrecognized field %d while getting int operand.\n"),
948 xstormy16_cgen_get_vma_operand (cd
, opindex
, fields
)
949 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
951 const CGEN_FIELDS
* fields
;
957 case XSTORMY16_OPERAND_RB
:
958 value
= fields
->f_Rb
;
960 case XSTORMY16_OPERAND_RBJ
:
961 value
= fields
->f_Rbj
;
963 case XSTORMY16_OPERAND_RD
:
964 value
= fields
->f_Rd
;
966 case XSTORMY16_OPERAND_RDM
:
967 value
= fields
->f_Rdm
;
969 case XSTORMY16_OPERAND_RM
:
970 value
= fields
->f_Rm
;
972 case XSTORMY16_OPERAND_RS
:
973 value
= fields
->f_Rs
;
975 case XSTORMY16_OPERAND_ABS24
:
976 value
= fields
->f_abs24
;
978 case XSTORMY16_OPERAND_BCOND2
:
979 value
= fields
->f_op2
;
981 case XSTORMY16_OPERAND_BCOND5
:
982 value
= fields
->f_op5
;
984 case XSTORMY16_OPERAND_HMEM8
:
985 value
= fields
->f_hmem8
;
987 case XSTORMY16_OPERAND_IMM12
:
988 value
= fields
->f_imm12
;
990 case XSTORMY16_OPERAND_IMM16
:
991 value
= fields
->f_imm16
;
993 case XSTORMY16_OPERAND_IMM2
:
994 value
= fields
->f_imm2
;
996 case XSTORMY16_OPERAND_IMM3
:
997 value
= fields
->f_imm3
;
999 case XSTORMY16_OPERAND_IMM3B
:
1000 value
= fields
->f_imm3b
;
1002 case XSTORMY16_OPERAND_IMM4
:
1003 value
= fields
->f_imm4
;
1005 case XSTORMY16_OPERAND_IMM8
:
1006 value
= fields
->f_imm8
;
1008 case XSTORMY16_OPERAND_IMM8SMALL
:
1009 value
= fields
->f_imm8
;
1011 case XSTORMY16_OPERAND_LMEM8
:
1012 value
= fields
->f_lmem8
;
1014 case XSTORMY16_OPERAND_REL12
:
1015 value
= fields
->f_rel12
;
1017 case XSTORMY16_OPERAND_REL12A
:
1018 value
= fields
->f_rel12a
;
1020 case XSTORMY16_OPERAND_REL8_2
:
1021 value
= fields
->f_rel8_2
;
1023 case XSTORMY16_OPERAND_REL8_4
:
1024 value
= fields
->f_rel8_4
;
1026 case XSTORMY16_OPERAND_WS2
:
1027 value
= fields
->f_op2m
;
1031 /* xgettext:c-format */
1032 fprintf (stderr
, _("Unrecognized field %d while getting vma operand.\n"),
1040 void xstormy16_cgen_set_int_operand
1041 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, int));
1042 void xstormy16_cgen_set_vma_operand
1043 PARAMS ((CGEN_CPU_DESC
, int, CGEN_FIELDS
*, bfd_vma
));
1045 /* Stuffing values in cgen_fields is handled by a collection of functions.
1046 They are distinguished by the type of the VALUE argument they accept.
1047 TODO: floating point, inlining support, remove cases where argument type
1051 xstormy16_cgen_set_int_operand (cd
, opindex
, fields
, value
)
1052 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1054 CGEN_FIELDS
* fields
;
1059 case XSTORMY16_OPERAND_RB
:
1060 fields
->f_Rb
= value
;
1062 case XSTORMY16_OPERAND_RBJ
:
1063 fields
->f_Rbj
= value
;
1065 case XSTORMY16_OPERAND_RD
:
1066 fields
->f_Rd
= value
;
1068 case XSTORMY16_OPERAND_RDM
:
1069 fields
->f_Rdm
= value
;
1071 case XSTORMY16_OPERAND_RM
:
1072 fields
->f_Rm
= value
;
1074 case XSTORMY16_OPERAND_RS
:
1075 fields
->f_Rs
= value
;
1077 case XSTORMY16_OPERAND_ABS24
:
1078 fields
->f_abs24
= value
;
1080 case XSTORMY16_OPERAND_BCOND2
:
1081 fields
->f_op2
= value
;
1083 case XSTORMY16_OPERAND_BCOND5
:
1084 fields
->f_op5
= value
;
1086 case XSTORMY16_OPERAND_HMEM8
:
1087 fields
->f_hmem8
= value
;
1089 case XSTORMY16_OPERAND_IMM12
:
1090 fields
->f_imm12
= value
;
1092 case XSTORMY16_OPERAND_IMM16
:
1093 fields
->f_imm16
= value
;
1095 case XSTORMY16_OPERAND_IMM2
:
1096 fields
->f_imm2
= value
;
1098 case XSTORMY16_OPERAND_IMM3
:
1099 fields
->f_imm3
= value
;
1101 case XSTORMY16_OPERAND_IMM3B
:
1102 fields
->f_imm3b
= value
;
1104 case XSTORMY16_OPERAND_IMM4
:
1105 fields
->f_imm4
= value
;
1107 case XSTORMY16_OPERAND_IMM8
:
1108 fields
->f_imm8
= value
;
1110 case XSTORMY16_OPERAND_IMM8SMALL
:
1111 fields
->f_imm8
= value
;
1113 case XSTORMY16_OPERAND_LMEM8
:
1114 fields
->f_lmem8
= value
;
1116 case XSTORMY16_OPERAND_REL12
:
1117 fields
->f_rel12
= value
;
1119 case XSTORMY16_OPERAND_REL12A
:
1120 fields
->f_rel12a
= value
;
1122 case XSTORMY16_OPERAND_REL8_2
:
1123 fields
->f_rel8_2
= value
;
1125 case XSTORMY16_OPERAND_REL8_4
:
1126 fields
->f_rel8_4
= value
;
1128 case XSTORMY16_OPERAND_WS2
:
1129 fields
->f_op2m
= value
;
1133 /* xgettext:c-format */
1134 fprintf (stderr
, _("Unrecognized field %d while setting int operand.\n"),
1141 xstormy16_cgen_set_vma_operand (cd
, opindex
, fields
, value
)
1142 CGEN_CPU_DESC cd ATTRIBUTE_UNUSED
;
1144 CGEN_FIELDS
* fields
;
1149 case XSTORMY16_OPERAND_RB
:
1150 fields
->f_Rb
= value
;
1152 case XSTORMY16_OPERAND_RBJ
:
1153 fields
->f_Rbj
= value
;
1155 case XSTORMY16_OPERAND_RD
:
1156 fields
->f_Rd
= value
;
1158 case XSTORMY16_OPERAND_RDM
:
1159 fields
->f_Rdm
= value
;
1161 case XSTORMY16_OPERAND_RM
:
1162 fields
->f_Rm
= value
;
1164 case XSTORMY16_OPERAND_RS
:
1165 fields
->f_Rs
= value
;
1167 case XSTORMY16_OPERAND_ABS24
:
1168 fields
->f_abs24
= value
;
1170 case XSTORMY16_OPERAND_BCOND2
:
1171 fields
->f_op2
= value
;
1173 case XSTORMY16_OPERAND_BCOND5
:
1174 fields
->f_op5
= value
;
1176 case XSTORMY16_OPERAND_HMEM8
:
1177 fields
->f_hmem8
= value
;
1179 case XSTORMY16_OPERAND_IMM12
:
1180 fields
->f_imm12
= value
;
1182 case XSTORMY16_OPERAND_IMM16
:
1183 fields
->f_imm16
= value
;
1185 case XSTORMY16_OPERAND_IMM2
:
1186 fields
->f_imm2
= value
;
1188 case XSTORMY16_OPERAND_IMM3
:
1189 fields
->f_imm3
= value
;
1191 case XSTORMY16_OPERAND_IMM3B
:
1192 fields
->f_imm3b
= value
;
1194 case XSTORMY16_OPERAND_IMM4
:
1195 fields
->f_imm4
= value
;
1197 case XSTORMY16_OPERAND_IMM8
:
1198 fields
->f_imm8
= value
;
1200 case XSTORMY16_OPERAND_IMM8SMALL
:
1201 fields
->f_imm8
= value
;
1203 case XSTORMY16_OPERAND_LMEM8
:
1204 fields
->f_lmem8
= value
;
1206 case XSTORMY16_OPERAND_REL12
:
1207 fields
->f_rel12
= value
;
1209 case XSTORMY16_OPERAND_REL12A
:
1210 fields
->f_rel12a
= value
;
1212 case XSTORMY16_OPERAND_REL8_2
:
1213 fields
->f_rel8_2
= value
;
1215 case XSTORMY16_OPERAND_REL8_4
:
1216 fields
->f_rel8_4
= value
;
1218 case XSTORMY16_OPERAND_WS2
:
1219 fields
->f_op2m
= value
;
1223 /* xgettext:c-format */
1224 fprintf (stderr
, _("Unrecognized field %d while setting vma operand.\n"),
1230 /* Function to call before using the instruction builder tables. */
1233 xstormy16_cgen_init_ibld_table (cd
)
1236 cd
->insert_handlers
= & xstormy16_cgen_insert_handlers
[0];
1237 cd
->extract_handlers
= & xstormy16_cgen_extract_handlers
[0];
1239 cd
->insert_operand
= xstormy16_cgen_insert_operand
;
1240 cd
->extract_operand
= xstormy16_cgen_extract_operand
;
1242 cd
->get_int_operand
= xstormy16_cgen_get_int_operand
;
1243 cd
->set_int_operand
= xstormy16_cgen_set_int_operand
;
1244 cd
->get_vma_operand
= xstormy16_cgen_get_vma_operand
;
1245 cd
->set_vma_operand
= xstormy16_cgen_set_vma_operand
;