| OLD | NEW |
| 1 /* Disassemble SH instructions. | 1 /* Disassemble SH instructions. |
| 2 Copyright 1993, 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, | 2 Copyright 1993, 1994, 1995, 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, |
| 3 2006, 2007 Free Software Foundation, Inc. | 3 2006, 2007, 2012 Free Software Foundation, Inc. |
| 4 | 4 |
| 5 This file is part of the GNU opcodes library. | 5 This file is part of the GNU opcodes library. |
| 6 | 6 |
| 7 This library is free software; you can redistribute it and/or modify | 7 This library is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU General Public License as published by | 8 it under the terms of the GNU General Public License as published by |
| 9 the Free Software Foundation; either version 3, or (at your option) | 9 the Free Software Foundation; either version 3, or (at your option) |
| 10 any later version. | 10 any later version. |
| 11 | 11 |
| 12 It is distributed in the hope that it will be useful, but WITHOUT | 12 It is distributed in the hope that it will be useful, but WITHOUT |
| 13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | 13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public | 14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public |
| 15 License for more details. | 15 License for more details. |
| 16 | 16 |
| 17 You should have received a copy of the GNU General Public License | 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 | 18 along with this file; see the file COPYING. If not, write to the |
| 19 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, | 19 Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston, |
| 20 MA 02110-1301, USA. */ | 20 MA 02110-1301, USA. */ |
| 21 | 21 |
| 22 #include "sysdep.h" |
| 22 #include <stdio.h> | 23 #include <stdio.h> |
| 23 #include "sysdep.h" | 24 |
| 24 #define STATIC_TABLE | 25 #define STATIC_TABLE |
| 25 #define DEFINE_TABLE | 26 #define DEFINE_TABLE |
| 26 | 27 |
| 27 #include "sh-opc.h" | 28 #include "sh-opc.h" |
| 28 #include "dis-asm.h" | 29 #include "dis-asm.h" |
| 29 | 30 |
| 30 #ifdef ARCH_all | 31 #ifdef ARCH_all |
| 31 #define INCLUDE_SHMEDIA | 32 #define INCLUDE_SHMEDIA |
| 32 #endif | 33 #endif |
| 33 | 34 |
| (...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 } | 936 } |
| 936 | 937 |
| 937 return SH_MERGE_ARCH_SET (op->arch, arch_op32) ? 4 : 2; | 938 return SH_MERGE_ARCH_SET (op->arch, arch_op32) ? 4 : 2; |
| 938 fail: | 939 fail: |
| 939 ; | 940 ; |
| 940 | 941 |
| 941 } | 942 } |
| 942 fprintf_fn (stream, ".word 0x%x%x%x%x", nibs[0], nibs[1], nibs[2], nibs[3]); | 943 fprintf_fn (stream, ".word 0x%x%x%x%x", nibs[0], nibs[1], nibs[2], nibs[3]); |
| 943 return 2; | 944 return 2; |
| 944 } | 945 } |
| OLD | NEW |