1*3d8817e4Smiod /* ia64-opc-d.c -- IA-64 `D' opcode table.
2*3d8817e4Smiod    Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3*3d8817e4Smiod    Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4*3d8817e4Smiod 
5*3d8817e4Smiod    This file is part of GDB, GAS, and the GNU binutils.
6*3d8817e4Smiod 
7*3d8817e4Smiod    GDB, GAS, and the GNU binutils are free software; you can redistribute
8*3d8817e4Smiod    them and/or modify them under the terms of the GNU General Public
9*3d8817e4Smiod    License as published by the Free Software Foundation; either version
10*3d8817e4Smiod    2, or (at your option) any later version.
11*3d8817e4Smiod 
12*3d8817e4Smiod    GDB, GAS, and the GNU binutils are distributed in the hope that they
13*3d8817e4Smiod    will be useful, but WITHOUT ANY WARRANTY; without even the implied
14*3d8817e4Smiod    warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
15*3d8817e4Smiod    the GNU General Public License for more details.
16*3d8817e4Smiod 
17*3d8817e4Smiod    You should have received a copy of the GNU General Public License
18*3d8817e4Smiod    along with this file; see the file COPYING.  If not, write to the
19*3d8817e4Smiod    Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20*3d8817e4Smiod    02110-1301, USA.  */
21*3d8817e4Smiod 
22*3d8817e4Smiod struct ia64_opcode ia64_opcodes_d[] =
23*3d8817e4Smiod   {
24*3d8817e4Smiod     {"add",   IA64_TYPE_DYN, 1, 0, 0, {IA64_OPND_R1, IA64_OPND_IMM22, IA64_OPND_R3_2}, 0, 0, NULL},
25*3d8817e4Smiod     {"add",   IA64_TYPE_DYN, 1, 0, 0, {IA64_OPND_R1, IA64_OPND_IMM14, IA64_OPND_R3}, 0, 0, NULL},
26*3d8817e4Smiod     {"break", IA64_TYPE_DYN, 0, 0, 0, {IA64_OPND_IMMU21}, 0, 0, NULL},
27*3d8817e4Smiod     {"chk.s", IA64_TYPE_DYN, 0, 0, 0, {IA64_OPND_R2, IA64_OPND_TGT25b}, 0, 0, NULL},
28*3d8817e4Smiod     {"hint",  IA64_TYPE_DYN, 0, 0, 0, {IA64_OPND_IMMU21}, 0, 0, NULL},
29*3d8817e4Smiod     {"mov",   IA64_TYPE_DYN, 1, 0, 0, {IA64_OPND_R1,  IA64_OPND_AR3}, 0, 0, NULL},
30*3d8817e4Smiod     {"mov",   IA64_TYPE_DYN, 1, 0, 0, {IA64_OPND_AR3, IA64_OPND_IMM8}, 0, 0, NULL},
31*3d8817e4Smiod     {"mov",   IA64_TYPE_DYN, 1, 0, 0, {IA64_OPND_AR3, IA64_OPND_R2}, 0, 0, NULL},
32*3d8817e4Smiod     {"nop",   IA64_TYPE_DYN, 0, 0, 0, {IA64_OPND_IMMU21}, 0, 0, NULL},
33*3d8817e4Smiod     {NULL, 0, 0, 0, 0, {0}, 0, 0, NULL}
34*3d8817e4Smiod   };
35