| OLD | NEW |
| 1 /* i370-opc.c -- Instruction 370 (ESA/390) architecture opcode list | 1 /* i370-opc.c -- Instruction 370 (ESA/390) architecture opcode list |
| 2 Copyright 1994, 1999, 2000, 2001, 2003, 2005, 2007 | 2 Copyright 1994, 1999, 2000, 2001, 2003, 2005, 2007, 2012 |
| 3 Free Software Foundation, Inc. | 3 Free Software Foundation, Inc. |
| 4 PowerPC version written by Ian Lance Taylor, Cygnus Support | 4 PowerPC version written by Ian Lance Taylor, Cygnus Support |
| 5 Rewritten for i370 ESA/390 support by Linas Vepstas <linas@linas.org> 1998, 1
999 | 5 Rewritten for i370 ESA/390 support by Linas Vepstas <linas@linas.org> 1998, 1
999 |
| 6 | 6 |
| 7 This file is part of the GNU opcodes library. | 7 This file is part of the GNU opcodes library. |
| 8 | 8 |
| 9 This library is free software; you can redistribute it and/or modify | 9 This library is free software; you can redistribute it and/or modify |
| 10 it under the terms of the GNU General Public License as published by | 10 it under the terms of the GNU General Public License as published by |
| 11 the Free Software Foundation; either version 3, or (at your option) | 11 the Free Software Foundation; either version 3, or (at your option) |
| 12 any later version. | 12 any later version. |
| 13 | 13 |
| 14 It is distributed in the hope that it will be useful, but WITHOUT | 14 It is distributed in the hope that it will be useful, but WITHOUT |
| 15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | 15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | 16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
| 17 License for more details. | 17 License for more details. |
| 18 | 18 |
| 19 You should have received a copy of the GNU General Public License | 19 You should have received a copy of the GNU General Public License |
| 20 along with this file; see the file COPYING. If not, write to the Free | 20 along with this file; see the file COPYING. If not, write to the Free |
| 21 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA | 21 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA |
| 22 02110-1301, USA. */ | 22 02110-1301, USA. */ |
| 23 | 23 |
| 24 #include "sysdep.h" |
| 24 #include <stdio.h> | 25 #include <stdio.h> |
| 25 #include "sysdep.h" | |
| 26 #include "opcode/i370.h" | 26 #include "opcode/i370.h" |
| 27 | 27 |
| 28 /* This file holds the i370 opcode table. The opcode table | 28 /* This file holds the i370 opcode table. The opcode table |
| 29 includes almost all of the extended instruction mnemonics. This | 29 includes almost all of the extended instruction mnemonics. This |
| 30 permits the disassembler to use them, and simplifies the assembler | 30 permits the disassembler to use them, and simplifies the assembler |
| 31 logic, at the cost of increasing the table size. The table is | 31 logic, at the cost of increasing the table size. The table is |
| 32 strictly constant data, so the compiler should be able to put it in | 32 strictly constant data, so the compiler should be able to put it in |
| 33 the .text section. | 33 the .text section. |
| 34 | 34 |
| 35 This file also holds the operand table. All knowledge about | 35 This file also holds the operand table. All knowledge about |
| (...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 { "bnzr", 1, I370, "bcr 7,%0" }, | 934 { "bnzr", 1, I370, "bcr 7,%0" }, |
| 935 { "bno", 1, I370, "bc 14,%0" }, | 935 { "bno", 1, I370, "bc 14,%0" }, |
| 936 { "bnor", 1, I370, "bcr 14,%0" }, | 936 { "bnor", 1, I370, "bcr 14,%0" }, |
| 937 | 937 |
| 938 { "sync", 0, I370, "bcr 15,0" }, | 938 { "sync", 0, I370, "bcr 15,0" }, |
| 939 | 939 |
| 940 }; | 940 }; |
| 941 | 941 |
| 942 const int i370_num_macros = | 942 const int i370_num_macros = |
| 943 sizeof (i370_macros) / sizeof (i370_macros[0]); | 943 sizeof (i370_macros) / sizeof (i370_macros[0]); |
| OLD | NEW |