Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: opcodes/moxie-dis.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « opcodes/mmix-dis.c ('k') | opcodes/msp430-dis.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Disassemble moxie instructions. 1 /* Disassemble moxie instructions.
2 Copyright 2009 2 Copyright 2009, 2012
3 Free Software Foundation, Inc. 3 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 program; if not, write to the Free Software 18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, 19 Foundation, Inc., 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 "opcode/moxie.h" 28 #include "opcode/moxie.h"
28 #include "dis-asm.h" 29 #include "dis-asm.h"
29 30
30 static fprintf_ftype fpr; 31 static fprintf_ftype fpr;
31 static void *stream; 32 static void *stream;
32 33
33 /* Macros to extract operands from the instruction word. */ 34 /* Macros to extract operands from the instruction word. */
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 abort(); 190 abort();
190 } 191 }
191 } 192 }
192 193
193 return length; 194 return length;
194 195
195 fail: 196 fail:
196 info->memory_error_func (status, addr, info); 197 info->memory_error_func (status, addr, info);
197 return -1; 198 return -1;
198 } 199 }
OLDNEW
« no previous file with comments | « opcodes/mmix-dis.c ('k') | opcodes/msp430-dis.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698