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

Side by Side Diff: opcodes/d30v-opc.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/d30v-dis.c ('k') | opcodes/disassemble.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 /* d30v-opc.c -- D30V opcode list 1 /* d30v-opc.c -- D30V opcode list
2 Copyright 1997, 1998, 1999, 2000, 2005, 2007 Free Software Foundation, Inc. 2 Copyright 1997, 1998, 1999, 2000, 2005, 2007, 2012
3 Free Software Foundation, Inc.
3 Written by Martin Hunt, Cygnus Support 4 Written by Martin Hunt, Cygnus Support
4 5
5 This file is part of the GNU opcodes library. 6 This file is part of the GNU opcodes library.
6 7
7 This library is free software; you can redistribute it and/or modify 8 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 9 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) 10 the Free Software Foundation; either version 3, or (at your option)
10 any later version. 11 any later version.
11 12
12 It is distributed in the hope that it will be useful, but WITHOUT 13 It is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details. 16 License for more details.
16 17
17 You should have received a copy of the GNU General Public License 18 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 Free 19 along with this file; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, 20 Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */ 21 MA 02110-1301, USA. */
21 22
23 #include "sysdep.h"
22 #include <stdio.h> 24 #include <stdio.h>
23 #include "sysdep.h"
24 #include "opcode/d30v.h" 25 #include "opcode/d30v.h"
25 26
26 /* This table is sorted. 27 /* This table is sorted.
27 If you add anything, it MUST be in alphabetical order. 28 If you add anything, it MUST be in alphabetical order.
28 The first field is the name the assembler uses when looking 29 The first field is the name the assembler uses when looking
29 up orcodes. The second field is the name the disassembler will use. 30 up orcodes. The second field is the name the disassembler will use.
30 This allows the assembler to assemble references to r63 (for example) 31 This allows the assembler to assemble references to r63 (for example)
31 or "sp". The disassembler will always use the preferred form (sp). */ 32 or "sp". The disassembler will always use the preferred form (sp). */
32 const struct pd_reg pre_defined_registers[] = 33 const struct pd_reg pre_defined_registers[] =
33 { 34 {
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 "eq", 510 "eq",
510 "ne", 511 "ne",
511 "gt", 512 "gt",
512 "ge", 513 "ge",
513 "lt", 514 "lt",
514 "le", 515 "le",
515 "ps", 516 "ps",
516 "ng", 517 "ng",
517 NULL 518 NULL
518 }; 519 };
OLDNEW
« no previous file with comments | « opcodes/d30v-dis.c ('k') | opcodes/disassemble.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698