Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH] Add support for Analog Devices Blackfin processor (part 5/6:  include)
@ 2005-12-30 12:00 Jie Zhang
  2006-01-04  5:35 ` Jim Blandy
  0 siblings, 1 reply; 3+ messages in thread
From: Jie Zhang @ 2005-12-30 12:00 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: text/plain, Size: 216 bytes --]

This is the fifth part for Analog Devices Blackfin processor, which
defines the interface between the Blackfin simulator and GDB. It
contains only one new file: include/gdb/sim-bfin.h.

Any comments?

Thanks,
Jie




[-- Attachment #2: bfin-include.diff --]
[-- Type: text/x-patch, Size: 2662 bytes --]

include/

	* gdb/sim-bfin.h: New file.


diff -r -N -u -x CVS src.orig/include/gdb/sim-bfin.h src/include/gdb/sim-bfin.h
--- src.orig/include/gdb/sim-bfin.h	1970-01-01 08:00:00.000000000 +0800
+++ src/include/gdb/sim-bfin.h	2005-12-27 23:08:12.000000000 +0800
@@ -0,0 +1,84 @@
+/* This file defines the interface between the Blackfin simulator and GDB.
+
+   Copyright (C) 2005 Free Software Foundation, Inc.
+   Contributed by Analog Devices.
+
+   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 2 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, write to the Free Software
+   Foundation, Inc., 51 Franklin Street, Fifth Floor,
+   Boston, MA 02110-1301, USA.  */
+
+enum sim_bfin_regnum {
+  SIM_BFIN_R0_REGNUM = 0,
+  SIM_BFIN_R1_REGNUM,
+  SIM_BFIN_R2_REGNUM,
+  SIM_BFIN_R3_REGNUM,
+  SIM_BFIN_R4_REGNUM,
+  SIM_BFIN_R5_REGNUM,
+  SIM_BFIN_R6_REGNUM,
+  SIM_BFIN_R7_REGNUM,
+  SIM_BFIN_P0_REGNUM,
+  SIM_BFIN_P1_REGNUM,
+  SIM_BFIN_P2_REGNUM,
+  SIM_BFIN_P3_REGNUM,
+  SIM_BFIN_P4_REGNUM,
+  SIM_BFIN_P5_REGNUM,
+  SIM_BFIN_SP_REGNUM,
+  SIM_BFIN_FP_REGNUM,
+  SIM_BFIN_I0_REGNUM,
+  SIM_BFIN_I1_REGNUM,
+  SIM_BFIN_I2_REGNUM,
+  SIM_BFIN_I3_REGNUM,
+  SIM_BFIN_M0_REGNUM,
+  SIM_BFIN_M1_REGNUM,
+  SIM_BFIN_M2_REGNUM,
+  SIM_BFIN_M3_REGNUM,
+  SIM_BFIN_B0_REGNUM,
+  SIM_BFIN_B1_REGNUM,
+  SIM_BFIN_B2_REGNUM,
+  SIM_BFIN_B3_REGNUM,
+  SIM_BFIN_L0_REGNUM,
+  SIM_BFIN_L1_REGNUM,
+  SIM_BFIN_L2_REGNUM,
+  SIM_BFIN_L3_REGNUM,
+  SIM_BFIN_A0_DOT_X_REGNUM,
+  SIM_BFIN_AO_DOT_W_REGNUM,
+  SIM_BFIN_A1_DOT_X_REGNUM,
+  SIM_BFIN_A1_DOT_W_REGNUM,
+  SIM_BFIN_ASTAT_REGNUM,
+  SIM_BFIN_RETS_REGNUM,
+  SIM_BFIN_LC0_REGNUM,
+  SIM_BFIN_LT0_REGNUM,
+  SIM_BFIN_LB0_REGNUM,
+  SIM_BFIN_LC1_REGNUM,
+  SIM_BFIN_LT1_REGNUM,
+  SIM_BFIN_LB1_REGNUM,
+  SIM_BFIN_CYCLES_REGNUM,
+  SIM_BFIN_CYCLES2_REGNUM,
+  SIM_BFIN_USP_REGNUM,
+  SIM_BFIN_SEQSTAT_REGNUM,
+  SIM_BFIN_SYSCFG_REGNUM,
+  SIM_BFIN_RETI_REGNUM,
+  SIM_BFIN_RETX_REGNUM,
+  SIM_BFIN_RETN_REGNUM,
+  SIM_BFIN_RETE_REGNUM,
+  SIM_BFIN_PC_REGNUM,
+  SIM_BFIN_CC_REGNUM,
+  SIM_BFIN_EXTRA1,
+  SIM_BFIN_EXTRA2,
+  SIM_BFIN_EXTRA3,
+  SIM_BFIN_IPEND_REGNUM
+};
+


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Add support for Analog Devices Blackfin processor (part 5/6: include)
  2005-12-30 12:00 [PATCH] Add support for Analog Devices Blackfin processor (part 5/6: include) Jie Zhang
@ 2006-01-04  5:35 ` Jim Blandy
  2006-01-20 23:21   ` Daniel Jacobowitz
  0 siblings, 1 reply; 3+ messages in thread
From: Jim Blandy @ 2006-01-04  5:35 UTC (permalink / raw)
  To: Jie Zhang; +Cc: gdb-patches

On 12/27/05, Jie Zhang <jzhang918@gmail.com> wrote:
> This is the fifth part for Analog Devices Blackfin processor, which
> defines the interface between the Blackfin simulator and GDB. It
> contains only one new file: include/gdb/sim-bfin.h.
>
> Any comments?

This should be reviewed and approved along with the rest of the sim,
it seems to me.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Add support for Analog Devices Blackfin processor (part 5/6: include)
  2006-01-04  5:35 ` Jim Blandy
@ 2006-01-20 23:21   ` Daniel Jacobowitz
  0 siblings, 0 replies; 3+ messages in thread
From: Daniel Jacobowitz @ 2006-01-20 23:21 UTC (permalink / raw)
  To: Jim Blandy; +Cc: Jie Zhang, gdb-patches

On Tue, Jan 03, 2006 at 09:35:37PM -0800, Jim Blandy wrote:
> On 12/27/05, Jie Zhang <jzhang918@gmail.com> wrote:
> > This is the fifth part for Analog Devices Blackfin processor, which
> > defines the interface between the Blackfin simulator and GDB. It
> > contains only one new file: include/gdb/sim-bfin.h.
> >
> > Any comments?
> 
> This should be reviewed and approved along with the rest of the sim,
> it seems to me.

In any case, it looks fine.

-- 
Daniel Jacobowitz
CodeSourcery


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2006-01-20 23:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-12-30 12:00 [PATCH] Add support for Analog Devices Blackfin processor (part 5/6: include) Jie Zhang
2006-01-04  5:35 ` Jim Blandy
2006-01-20 23:21   ` Daniel Jacobowitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox