bfd/
[deliverable/binutils-gdb.git] / include / opcode / m68k.h
CommitLineData
252b5132 1/* Opcode table header for m680[01234]0/m6888[12]/m68851.
3e602632 2 Copyright 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2001,
266abb8f 3 2003, 2004, 2006 Free Software Foundation, Inc.
252b5132 4
3e602632 5 This file is part of GDB, GAS, and the GNU binutils.
252b5132 6
3e602632
NC
7 GDB, GAS, and the GNU binutils are free software; you can redistribute
8 them and/or modify them under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either version
10 1, or (at your option) any later version.
252b5132 11
3e602632
NC
12 GDB, GAS, and the GNU binutils are distributed in the hope that they
13 will be useful, but WITHOUT ANY WARRANTY; without even the implied
14 warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
15 the GNU General Public License for more details.
252b5132 16
3e602632
NC
17 You should have received a copy of the GNU General Public License
18 along with this file; see the file COPYING. If not, write to the Free
e172dbf8
NC
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
252b5132
RH
21
22/* These are used as bit flags for the arch field in the m68k_opcode
23 structure. */
24#define _m68k_undef 0
3e602632 25#define m68000 0x001
3e602632
NC
26#define m68010 0x002
27#define m68020 0x004
28#define m68030 0x008
3e602632 29#define m68040 0x010
3e602632
NC
30#define m68060 0x020
31#define m68881 0x040
3e602632 32#define m68851 0x080
6b6e92f4 33#define cpu32 0x100 /* e.g., 68332 */
266abb8f 34#define m68k_mask 0x1ff
6b6e92f4
NC
35
36#define mcfmac 0x200 /* ColdFire MAC. */
37#define mcfemac 0x400 /* ColdFire EMAC. */
38#define cfloat 0x800 /* ColdFire FPU. */
39#define mcfhwdiv 0x1000 /* ColdFire hardware divide. */
40
41#define mcfisa_a 0x2000 /* ColdFire ISA_A. */
42#define mcfisa_aa 0x4000 /* ColdFire ISA_A+. */
43#define mcfisa_b 0x8000 /* ColdFire ISA_B. */
44#define mcfusp 0x10000 /* ColdFire USP instructions. */
45
266abb8f 46/* Handy aliases. */
3e602632
NC
47#define m68040up (m68040 | m68060)
48#define m68030up (m68030 | m68040up)
49#define m68020up (m68020 | m68030up)
50#define m68010up (m68010 | cpu32 | m68020up)
51#define m68000up (m68000 | m68010up)
3e602632 52
266abb8f 53#define mfloat (m68881 | m68040 | m68060)
252b5132
RH
54#define mmmu (m68851 | m68030 | m68040 | m68060)
55
266abb8f
NS
56/* CPU numbering. There are too many of these to use a bit vector.
57 These are a one-of-many selection. Choose a numbering scheme that
58 simply maps onto manufacturer's part numbers. */
59
60/* All m68k cpus */
61#define cpu_m68k 0
62/* All coldfire cpus */
63#define cpu_cf 1000000
64
65#define cpu_m68000 (cpu_m68k + 68000)
66#define cpu_m68008 cpu_m68000 /* Synonym for -m68000. otherwise unused. */
67#define cpu_m68010 (cpu_m68k + 68010)
68#define cpu_m68020 (cpu_m68k + 68020)
69#define cpu_m68030 (cpu_m68k + 68030)
70#define cpu_m68ec030 cpu_m68030 /* Similar enough to -m68030 to ignore
71 differences; gas will deal with the few
72 differences. */
73#define cpu_m68040 (cpu_m68k + 68040)
74/* There is no 68050. */
75#define cpu_m68060 (cpu_m68k + 68060)
76#define cpu_m68851 (cpu_m68k + 68851)
77#define cpu_m68881 (cpu_m68k + 68881)
78#define cpu_m68882 cpu_m68881 /* Synonym for -m68881. otherwise unused. */
79#define cpu_cpu32 (cpu_m68k + 32)
80
81#define cpu_cf5200 (cpu_cf + 5200)
82#define cpu_cf5206e (cpu_cf + 5206)
83#define cpu_cf5208 (cpu_cf + 5208)
84#define cpu_cf521x (cpu_cf + 5210)
85#define cpu_cf5213 (cpu_cf + 5213)
86#define cpu_cf5249 (cpu_cf + 5249)
87#define cpu_cf528x (cpu_cf + 5280)
88#define cpu_cf5307 (cpu_cf + 5307)
89#define cpu_cf5329 (cpu_cf + 5329)
90#define cpu_cf5407 (cpu_cf + 5407)
91#define cpu_cf547x (cpu_cf + 5470)
92#define cpu_cf548x (cpu_cf + 5480)
93
252b5132
RH
94/* The structure used to hold information for an opcode. */
95
96struct m68k_opcode
97{
98 /* The opcode name. */
99 const char *name;
be8c092b
NC
100 /* The pseudo-size of the instruction(in bytes). Used to determine
101 number of bytes necessary to disassemble the instruction. */
102 unsigned int size;
252b5132
RH
103 /* The opcode itself. */
104 unsigned long opcode;
105 /* The mask used by the disassembler. */
106 unsigned long match;
107 /* The arguments. */
108 const char *args;
109 /* The architectures which support this opcode. */
110 unsigned int arch;
111};
112
113/* The structure used to hold information for an opcode alias. */
114
115struct m68k_opcode_alias
116{
117 /* The alias name. */
118 const char *alias;
119 /* The instruction for which this is an alias. */
120 const char *primary;
121};
122
123/* We store four bytes of opcode for all opcodes because that is the
124 most any of them need. The actual length of an instruction is
125 always at least 2 bytes, and is as much longer as necessary to hold
126 the operands it has.
127
128 The match field is a mask saying which bits must match particular
129 opcode in order for an instruction to be an instance of that
130 opcode.
131
132 The args field is a string containing two characters for each
133 operand of the instruction. The first specifies the kind of
134 operand; the second, the place it is stored. */
135
136/* Kinds of operands:
fd99574b 137 Characters used: AaBbCcDdEeFfGgHIiJkLlMmnOopQqRrSsTtU VvWwXxYyZz01234|*~%;@!&$?/<>#^+-
252b5132
RH
138
139 D data register only. Stored as 3 bits.
140 A address register only. Stored as 3 bits.
141 a address register indirect only. Stored as 3 bits.
142 R either kind of register. Stored as 4 bits.
143 r either kind of register indirect only. Stored as 4 bits.
144 At the moment, used only for cas2 instruction.
145 F floating point coprocessor register only. Stored as 3 bits.
146 O an offset (or width): immediate data 0-31 or data register.
147 Stored as 6 bits in special format for BF... insns.
148 + autoincrement only. Stored as 3 bits (number of the address register).
149 - autodecrement only. Stored as 3 bits (number of the address register).
150 Q quick immediate data. Stored as 3 bits.
151 This matches an immediate operand only when value is in range 1 .. 8.
152 M moveq immediate data. Stored as 8 bits.
153 This matches an immediate operand only when value is in range -128..127
154 T trap vector immediate data. Stored as 4 bits.
155
156 k K-factor for fmove.p instruction. Stored as a 7-bit constant or
157 a three bit register offset, depending on the field type.
158
159 # immediate data. Stored in special places (b, w or l)
160 which say how many bits to store.
161 ^ immediate data for floating point instructions. Special places
162 are offset by 2 bytes from '#'...
163 B pc-relative address, converted to an offset
164 that is treated as immediate data.
165 d displacement and register. Stores the register as 3 bits
166 and stores the displacement in the entire second word.
167
168 C the CCR. No need to store it; this is just for filtering validity.
169 S the SR. No need to store, just as with CCR.
170 U the USP. No need to store, just as with CCR.
fd99574b
NC
171 E the MAC ACC. No need to store, just as with CCR.
172 e the EMAC ACC[0123].
173 G the MAC/EMAC MACSR. No need to store, just as with CCR.
174 g the EMAC ACCEXT{01,23}.
1fca749b 175 H the MASK. No need to store, just as with CCR.
fd99574b 176 i the MAC/EMAC scale factor.
252b5132
RH
177
178 I Coprocessor ID. Not printed if 1. The Coprocessor ID is always
179 extracted from the 'd' field of word one, which means that an extended
180 coprocessor opcode can be skipped using the 'i' place, if needed.
181
182 s System Control register for the floating point coprocessor.
183
184 J Misc register for movec instruction, stored in 'j' format.
185 Possible values:
186 0x000 SFC Source Function Code reg [60, 40, 30, 20, 10]
187 0x001 DFC Data Function Code reg [60, 40, 30, 20, 10]
3e602632 188 0x002 CACR Cache Control Register [60, 40, 30, 20, mcf]
252b5132
RH
189 0x003 TC MMU Translation Control [60, 40]
190 0x004 ITT0 Instruction Transparent
191 Translation reg 0 [60, 40]
192 0x005 ITT1 Instruction Transparent
193 Translation reg 1 [60, 40]
194 0x006 DTT0 Data Transparent
195 Translation reg 0 [60, 40]
196 0x007 DTT1 Data Transparent
197 Translation reg 1 [60, 40]
198 0x008 BUSCR Bus Control Register [60]
199 0x800 USP User Stack Pointer [60, 40, 30, 20, 10]
3e602632 200 0x801 VBR Vector Base reg [60, 40, 30, 20, 10, mcf]
252b5132
RH
201 0x802 CAAR Cache Address Register [ 30, 20]
202 0x803 MSP Master Stack Pointer [ 40, 30, 20]
203 0x804 ISP Interrupt Stack Pointer [ 40, 30, 20]
204 0x805 MMUSR MMU Status reg [ 40]
205 0x806 URP User Root Pointer [60, 40]
206 0x807 SRP Supervisor Root Pointer [60, 40]
207 0x808 PCR Processor Configuration reg [60]
208 0xC00 ROMBAR ROM Base Address Register [520X]
209 0xC04 RAMBAR0 RAM Base Address Register 0 [520X]
210 0xC05 RAMBAR1 RAM Base Address Register 0 [520X]
211 0xC0F MBAR0 RAM Base Address Register 0 [520X]
3e602632
NC
212 0xC04 FLASHBAR FLASH Base Address Register [mcf528x]
213 0xC05 RAMBAR Static RAM Base Address Register [mcf528x]
252b5132
RH
214
215 L Register list of the type d0-d7/a0-a7 etc.
216 (New! Improved! Can also hold fp0-fp7, as well!)
217 The assembler tries to see if the registers match the insn by
218 looking at where the insn wants them stored.
219
220 l Register list like L, but with all the bits reversed.
221 Used for going the other way. . .
222
223 c cache identifier which may be "nc" for no cache, "ic"
224 for instruction cache, "dc" for data cache, or "bc"
225 for both caches. Used in cinv and cpush. Always
226 stored in position "d".
227
1fca749b
ILT
228 u Any register, with ``upper'' or ``lower'' specification. Used
229 in the mac instructions with size word.
230
252b5132
RH
231 The remainder are all stored as 6 bits using an address mode and a
232 register number; they differ in which addressing modes they match.
233
234 * all (modes 0-6,7.0-4)
235 ~ alterable memory (modes 2-6,7.0,7.1)
236 (not 0,1,7.2-4)
237 % alterable (modes 0-6,7.0,7.1)
238 (not 7.2-4)
239 ; data (modes 0,2-6,7.0-4)
240 (not 1)
241 @ data, but not immediate (modes 0,2-6,7.0-3)
242 (not 1,7.4)
243 ! control (modes 2,5,6,7.0-3)
244 (not 0,1,3,4,7.4)
245 & alterable control (modes 2,5,6,7.0,7.1)
8577e690 246 (not 0,1,3,4,7.2-4)
252b5132
RH
247 $ alterable data (modes 0,2-6,7.0,7.1)
248 (not 1,7.2-4)
249 ? alterable control, or data register (modes 0,2,5,6,7.0,7.1)
250 (not 1,3,4,7.2-4)
251 / control, or data register (modes 0,2,5,6,7.0-3)
252 (not 1,3,4,7.4)
253 > *save operands (modes 2,4,5,6,7.0,7.1)
254 (not 0,1,3,7.2-4)
255 < *restore operands (modes 2,3,5,6,7.0-3)
256 (not 0,1,4,7.4)
257
258 coldfire move operands:
259 m (modes 0-4)
260 n (modes 5,7.2)
261 o (modes 6,7.0,7.1,7.3,7.4)
262 p (modes 0-5)
263
264 coldfire bset/bclr/btst/mulsl/mulul operands:
265 q (modes 0,2-5)
266 v (modes 0,2-5,7.0,7.1)
3e602632
NC
267 b (modes 0,2-5,7.2)
268 w (modes 2-5,7.2)
269 y (modes 2,5)
270 z (modes 2,5,7.2)
fd99574b
NC
271 x mov3q immediate operand.
272 4 (modes 2,3,4,5)
273 */
3e602632
NC
274
275/* For the 68851: */
276/* I didn't use much imagination in choosing the
252b5132
RH
277 following codes, so many of them aren't very
278 mnemonic. -rab
279
280 0 32 bit pmmu register
281 Possible values:
282 000 TC Translation Control Register (68030, 68851)
283
284 1 16 bit pmmu register
285 111 AC Access Control (68851)
286
287 2 8 bit pmmu register
288 100 CAL Current Access Level (68851)
289 101 VAL Validate Access Level (68851)
290 110 SCC Stack Change Control (68851)
291
292 3 68030-only pmmu registers (32 bit)
293 010 TT0 Transparent Translation reg 0
294 (aka Access Control reg 0 -- AC0 -- on 68ec030)
295 011 TT1 Transparent Translation reg 1
296 (aka Access Control reg 1 -- AC1 -- on 68ec030)
297
298 W wide pmmu registers
299 Possible values:
300 001 DRP Dma Root Pointer (68851)
301 010 SRP Supervisor Root Pointer (68030, 68851)
302 011 CRP Cpu Root Pointer (68030, 68851)
303
304 f function code register (68030, 68851)
305 0 SFC
306 1 DFC
307
308 V VAL register only (68851)
309
310 X BADx, BACx (16 bit)
311 100 BAD Breakpoint Acknowledge Data (68851)
312 101 BAC Breakpoint Acknowledge Control (68851)
313
314 Y PSR (68851) (MMUSR on 68030) (ACUSR on 68ec030)
315 Z PCSR (68851)
316
317 | memory (modes 2-6, 7.*)
318
319 t address test level (68030 only)
320 Stored as 3 bits, range 0-7.
321 Also used for breakpoint instruction now.
322
323*/
324
325/* Places to put an operand, for non-general operands:
fd99574b 326 Characters used: BbCcDdFfGgHhIijkLlMmNnostWw123456789/
1fca749b 327
252b5132
RH
328 s source, low bits of first word.
329 d dest, shifted 9 in first word
330 1 second word, shifted 12
331 2 second word, shifted 6
332 3 second word, shifted 0
333 4 third word, shifted 12
334 5 third word, shifted 6
335 6 third word, shifted 0
336 7 second word, shifted 7
337 8 second word, shifted 10
338 9 second word, shifted 5
339 D store in both place 1 and place 3; for divul and divsl.
340 B first word, low byte, for branch displacements
341 W second word (entire), for branch displacements
342 L second and third words (entire), for branch displacements
343 (also overloaded for move16)
344 b second word, low byte
345 w second word (entire) [variable word/long branch offset for dbra]
346 W second word (entire) (must be signed 16 bit value)
347 l second and third word (entire)
348 g variable branch offset for bra and similar instructions.
349 The place to store depends on the magnitude of offset.
350 t store in both place 7 and place 8; for floating point operations
351 c branch offset for cpBcc operations.
352 The place to store is word two if bit six of word one is zero,
353 and words two and three if bit six of word one is one.
354 i Increment by two, to skip over coprocessor extended operands. Only
355 works with the 'I' format.
356 k Dynamic K-factor field. Bits 6-4 of word 2, used as a register number.
357 Also used for dynamic fmovem instruction.
358 C floating point coprocessor constant - 7 bits. Also used for static
359 K-factors...
360 j Movec register #, stored in 12 low bits of second word.
1fca749b
ILT
361 m For M[S]ACx; 4 bits split with MSB shifted 6 bits in first word
362 and remaining 3 bits of register shifted 9 bits in first word.
363 Indicate upper/lower in 1 bit shifted 7 bits in second word.
364 Use with `R' or `u' format.
365 n `m' withouth upper/lower indication. (For M[S]ACx; 4 bits split
366 with MSB shifted 6 bits in first word and remaining 3 bits of
367 register shifted 9 bits in first word. No upper/lower
368 indication is done.) Use with `R' or `u' format.
369 o For M[S]ACw; 4 bits shifted 12 in second word (like `1').
370 Indicate upper/lower in 1 bit shifted 7 bits in second word.
371 Use with `R' or `u' format.
372 M For M[S]ACw; 4 bits in low bits of first word. Indicate
373 upper/lower in 1 bit shifted 6 bits in second word. Use with
374 `R' or `u' format.
375 N For M[S]ACw; 4 bits in low bits of second word. Indicate
376 upper/lower in 1 bit shifted 6 bits in second word. Use with
377 `R' or `u' format.
378 h shift indicator (scale factor), 1 bit shifted 10 in second word
252b5132
RH
379
380 Places to put operand, for general operands:
381 d destination, shifted 6 bits in first word
382 b source, at low bit of first word, and immediate uses one byte
383 w source, at low bit of first word, and immediate uses two bytes
384 l source, at low bit of first word, and immediate uses four bytes
385 s source, at low bit of first word.
386 Used sometimes in contexts where immediate is not allowed anyway.
387 f single precision float, low bit of 1st word, immediate uses 4 bytes
388 F double precision float, low bit of 1st word, immediate uses 8 bytes
389 x extended precision float, low bit of 1st word, immediate uses 12 bytes
390 p packed float, low bit of 1st word, immediate uses 12 bytes
fd99574b
NC
391 G EMAC accumulator, load (bit 4 2nd word, !bit8 first word)
392 H EMAC accumulator, non load (bit 4 2nd word, bit 8 first word)
393 F EMAC ACCx
394 f EMAC ACCy
395 I MAC/EMAC scale factor
396 / Like 's', but set 2nd word, bit 5 if trailing_ampersand set
397 ] first word, bit 10
252b5132
RH
398*/
399
400extern const struct m68k_opcode m68k_opcodes[];
401extern const struct m68k_opcode_alias m68k_opcode_aliases[];
402
403extern const int m68k_numopcodes, m68k_numaliases;
404
405/* end of m68k-opcode.h */
This page took 0.282852 seconds and 4 git commands to generate.