1 /* cris.h -- Header file for CRIS opcode and register tables.
2 Copyright (C) 2000, 2001 Free Software Foundation, Inc.
3 Contributed by Axis Communications AB, Lund, Sweden.
4 Originally written for GAS 1.38.1 by Mikael Asker.
5 Updated, BFDized and GNUified by Hans-Peter Nilsson.
7 This file is part of GAS, GDB and the GNU binutils.
9 GAS, GDB, and GNU binutils is free software; you can redistribute it
10 and/or modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2, or (at your
12 option) any later version.
14 GAS, GDB, and GNU binutils are distributed in the hope that they will be
15 useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 #ifndef __CRIS_H_INCLUDED_
24 #define __CRIS_H_INCLUDED_
26 #if !defined(__STDC__) && !defined(const)
36 /* CPU version control of disassembly and assembly of instructions.
37 May affect how the instruction is assembled, at least the size of
38 immediate operands. */
39 enum cris_insn_version_usage
42 cris_ver_version_all
=0,
44 /* Indeterminate (intended for disassembly only, or obsolete). */
47 /* Simulator only (reserved). */
50 /* Only for v0..3 (Etrax 1..4). */
53 /* Only for v3 or higher (ETRAX 4 and beyond). */
56 /* Only for v8 (Etrax 100). */
59 /* Only for v8 or higher (ETRAX 100, ETRAX 100 LX). */
62 /* Only for v10 or higher (ETRAX 100 LX).
63 Of course some or all these of may change to cris_ver_v10p if/when
64 there's a new revision. */
69 /* Special registers. */
72 const char *const name
;
75 /* The size of the register. */
76 unsigned int reg_size
;
78 /* What CPU version the special register of that name is implemented
79 in. If cris_ver_warning, emit an unimplemented-warning. */
80 enum cris_insn_version_usage applicable_version
;
82 /* There might be a specific warning for using a special register
84 const char *const warning
;
86 extern const struct cris_spec_reg cris_spec_regs
[];
88 /* Opcode-dependent constants. */
89 #define AUTOINCR_BIT (0x04)
92 #define BDAP_QUICK_OPCODE (0x0100)
93 #define BDAP_QUICK_Z_BITS (0x0e00)
95 #define BIAP_OPCODE (0x0540)
96 #define BIAP_Z_BITS (0x0a80)
98 #define DIP_OPCODE (0x0970)
99 #define DIP_Z_BITS (0xf280)
101 #define BDAP_INDIR_LOW (0x40)
102 #define BDAP_INDIR_LOW_Z (0x80)
103 #define BDAP_INDIR_HIGH (0x09)
104 #define BDAP_INDIR_HIGH_Z (0x02)
106 #define BDAP_INDIR_OPCODE (BDAP_INDIR_HIGH * 0x0100 + BDAP_INDIR_LOW)
107 #define BDAP_INDIR_Z_BITS (BDAP_INDIR_HIGH_Z * 0x100 + BDAP_INDIR_LOW_Z)
108 #define BDAP_PC_LOW (BDAP_INDIR_LOW + REG_PC)
109 #define BDAP_INCR_HIGH (BDAP_INDIR_HIGH + AUTOINCR_BIT)
111 /* No prefix must have this code for its "match" bits in the
112 opcode-table. "BCC .+2" will do nicely. */
113 #define NO_CRIS_PREFIX 0
115 /* Definitions for condition codes. */
135 /* A table of strings "cc", "cs"... indexed with condition code
137 extern const char *const cris_cc_strings
[];
140 #define BRANCH_QUICK_LOW (0)
141 #define BRANCH_QUICK_HIGH (0)
142 #define BRANCH_QUICK_OPCODE (BRANCH_QUICK_HIGH * 0x0100 + BRANCH_QUICK_LOW)
143 #define BRANCH_QUICK_Z_BITS (0x0F00)
146 #define BA_QUICK_HIGH (BRANCH_QUICK_HIGH + CC_A * 0x10)
147 #define BA_QUICK_OPCODE (BA_QUICK_HIGH * 0x100 + BRANCH_QUICK_LOW)
150 #define BRANCH_PC_LOW (0xFF)
151 #define BRANCH_INCR_HIGH (0x0D)
152 #define BA_PC_INCR_OPCODE \
153 ((BRANCH_INCR_HIGH + CC_A * 0x10) * 0x0100 + BRANCH_PC_LOW)
156 /* Note that old versions generated special register 8 (in high bits)
157 and not-that-old versions recognized it as a jump-instruction.
158 That opcode now belongs to JUMPU. */
159 #define JUMP_INDIR_OPCODE (0x0930)
160 #define JUMP_INDIR_Z_BITS (0xf2c0)
161 #define JUMP_PC_INCR_OPCODE \
162 (JUMP_INDIR_OPCODE + AUTOINCR_BIT * 0x0100 + REG_PC)
163 #define ADD_PC_INCR_OPCODE \
164 (0xfa00 + (2 << 4) + AUTOINCR_BIT * 0x0100 + REG_PC)
167 #define NOP_OPCODE (0x050F)
168 #define NOP_Z_BITS (0xFAF0)
170 /* Structure of an opcode table entry. */
171 enum cris_imm_oprnd_size_type
173 /* No size is applicable. */
176 /* Always 32 bits. */
179 /* Indicated by size of special register. */
182 /* Indicated by size field. */
186 /* For GDB. FIXME: Is this the best way to handle opcode
190 cris_not_implemented_op
= 0,
202 cris_dstep_logshift_mstep_neg_not_op
,
203 cris_eight_bit_offset_branch_op
,
204 cris_move_mem_to_reg_movem_op
,
205 cris_move_reg_to_mem_movem_op
,
206 cris_move_to_preg_op
,
209 cris_none_reg_mode_add_sub_cmp_and_or_move_op
,
210 cris_none_reg_mode_clear_test_op
,
211 cris_none_reg_mode_jump_op
,
212 cris_none_reg_mode_move_from_preg_op
,
213 cris_quick_mode_add_sub_op
,
214 cris_quick_mode_and_cmp_move_or_op
,
215 cris_quick_mode_bdap_prefix
,
216 cris_reg_mode_add_sub_cmp_and_or_move_op
,
217 cris_reg_mode_clear_op
,
218 cris_reg_mode_jump_op
,
219 cris_reg_mode_move_from_preg_op
,
220 cris_reg_mode_test_op
,
222 cris_sixteen_bit_offset_branch_op
,
223 cris_three_operand_add_sub_cmp_and_or_op
,
224 cris_three_operand_bound_op
,
225 cris_two_operand_bound_op
,
231 /* The name of the insn. */
234 /* Bits that must be 1 for a match. */
237 /* Bits that must be 0 for a match. */
240 /* See the table in "opcodes/cris-opc.c". */
243 /* Nonzero if this is a delayed branch instruction. */
246 /* Size of immediate operands. */
247 enum cris_imm_oprnd_size_type imm_oprnd_size
;
249 /* Indicates which version this insn was first implemented in. */
250 enum cris_insn_version_usage applicable_version
;
252 /* What kind of operation this is. */
253 enum cris_op_type op
;
255 extern const struct cris_opcode cris_opcodes
[];
258 /* These macros are for the target-specific flags in disassemble_info
259 used at disassembly. */
261 /* This insn accesses memory. This flag is more trustworthy than
262 checking insn_type for "dis_dref" which does not work for
264 #define CRIS_DIS_FLAG_MEMREF (1 << 0)
266 /* The "target" field holds a register number. */
267 #define CRIS_DIS_FLAG_MEM_TARGET_IS_REG (1 << 1)
269 /* The "target2" field holds a register number; add it to "target". */
270 #define CRIS_DIS_FLAG_MEM_TARGET2_IS_REG (1 << 2)
272 /* Yet another add-on: the register in "target2" must be multiplied
273 by 2 before adding to "target". */
274 #define CRIS_DIS_FLAG_MEM_TARGET2_MULT2 (1 << 3)
276 /* Yet another add-on: the register in "target2" must be multiplied
277 by 4 (mutually exclusive with .._MULT2). */
278 #define CRIS_DIS_FLAG_MEM_TARGET2_MULT4 (1 << 4)
280 /* The register in "target2" is an indirect memory reference (of the
281 register there), add to "target". Assumed size is dword (mutually
282 exclusive with .._MULT[24]). */
283 #define CRIS_DIS_FLAG_MEM_TARGET2_MEM (1 << 5)
285 /* Add-on to CRIS_DIS_FLAG_MEM_TARGET2_MEM; the memory access is "byte";
286 sign-extended before adding to "target". */
287 #define CRIS_DIS_FLAG_MEM_TARGET2_MEM_BYTE (1 << 6)
289 /* Add-on to CRIS_DIS_FLAG_MEM_TARGET2_MEM; the memory access is "word";
290 sign-extended before adding to "target". */
291 #define CRIS_DIS_FLAG_MEM_TARGET2_MEM_WORD (1 << 7)
293 #endif /* __CRIS_H_INCLUDED_ */
297 * eval: (c-set-style "gnu")
298 * indent-tabs-mode: t