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