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

Unified Diff: gdb/tilegx-tdep.h

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/tilegx-linux-tdep.c ('k') | gdb/tilegx-tdep.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/tilegx-tdep.h
diff --git a/gdb/tilegx-tdep.h b/gdb/tilegx-tdep.h
new file mode 100644
index 0000000000000000000000000000000000000000..3ac18a5a6c33b87714bb92f599f96ee5bf2265e2
--- /dev/null
+++ b/gdb/tilegx-tdep.h
@@ -0,0 +1,109 @@
+/* Target-dependent code for the Tilera TILE-Gx processor.
+
+ Copyright (C) 2012 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+#ifndef TILEGX_TDEP_H
+#define TILEGX_TDEP_H
+
+/* TILE-Gx has 56 general purpose registers (R0 - R52, TP, SP, LR),
+ plus 8 special general purpose registers (network and ZERO),
+ plus 1 magic register (PC).
+
+ TP (aka R53) is the thread specific data pointer.
+ SP (aka R54) is the stack pointer.
+ LR (aka R55) is the link register. */
+
+enum tilegx_regnum
+ {
+ TILEGX_R0_REGNUM,
+ TILEGX_R1_REGNUM,
+ TILEGX_R2_REGNUM,
+ TILEGX_R3_REGNUM,
+ TILEGX_R4_REGNUM,
+ TILEGX_R5_REGNUM,
+ TILEGX_R6_REGNUM,
+ TILEGX_R7_REGNUM,
+ TILEGX_R8_REGNUM,
+ TILEGX_R9_REGNUM,
+ TILEGX_R10_REGNUM,
+ TILEGX_R11_REGNUM,
+ TILEGX_R12_REGNUM,
+ TILEGX_R13_REGNUM,
+ TILEGX_R14_REGNUM,
+ TILEGX_R15_REGNUM,
+ TILEGX_R16_REGNUM,
+ TILEGX_R17_REGNUM,
+ TILEGX_R18_REGNUM,
+ TILEGX_R19_REGNUM,
+ TILEGX_R20_REGNUM,
+ TILEGX_R21_REGNUM,
+ TILEGX_R22_REGNUM,
+ TILEGX_R23_REGNUM,
+ TILEGX_R24_REGNUM,
+ TILEGX_R25_REGNUM,
+ TILEGX_R26_REGNUM,
+ TILEGX_R27_REGNUM,
+ TILEGX_R28_REGNUM,
+ TILEGX_R29_REGNUM,
+ TILEGX_R30_REGNUM,
+ TILEGX_R31_REGNUM,
+ TILEGX_R32_REGNUM,
+ TILEGX_R33_REGNUM,
+ TILEGX_R34_REGNUM,
+ TILEGX_R35_REGNUM,
+ TILEGX_R36_REGNUM,
+ TILEGX_R37_REGNUM,
+ TILEGX_R38_REGNUM,
+ TILEGX_R39_REGNUM,
+ TILEGX_R40_REGNUM,
+ TILEGX_R41_REGNUM,
+ TILEGX_R42_REGNUM,
+ TILEGX_R43_REGNUM,
+ TILEGX_R44_REGNUM,
+ TILEGX_R45_REGNUM,
+ TILEGX_R46_REGNUM,
+ TILEGX_R47_REGNUM,
+ TILEGX_R48_REGNUM,
+ TILEGX_R49_REGNUM,
+ TILEGX_R50_REGNUM,
+ TILEGX_R51_REGNUM,
+ TILEGX_R52_REGNUM,
+ TILEGX_TP_REGNUM,
+ TILEGX_SP_REGNUM,
+ TILEGX_LR_REGNUM,
+
+ TILEGX_SN_REGNUM,
+ TILEGX_NUM_EASY_REGS = TILEGX_SN_REGNUM, /* 56 */
+
+ TILEGX_IO0_REGNUM,
+ TILEGX_IO1_REGNUM,
+ TILEGX_US0_REGNUM,
+ TILEGX_US1_REGNUM,
+ TILEGX_US2_REGNUM,
+ TILEGX_US3_REGNUM,
+ TILEGX_ZERO_REGNUM,
+
+ TILEGX_PC_REGNUM,
+ TILEGX_NUM_PHYS_REGS = TILEGX_PC_REGNUM, /* 64 */
+
+ TILEGX_NUM_REGS /* 65 */
+ };
+
+enum { tilegx_reg_size = 8 };
+
+#endif /* tilegx-tdep.h */
« no previous file with comments | « gdb/tilegx-linux-tdep.c ('k') | gdb/tilegx-tdep.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698