Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Marko Mlinar <markom@opencores.org>
To: Andrew Cagney <ac131313@ges.redhat.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: Merging OC gdb with official gdb
Date: Mon, 23 Sep 2002 04:48:00 -0000	[thread overview]
Message-ID: <200209231346.58722.markom@opencores.org> (raw)
In-Reply-To: <3D8A6CE5.5020304@ges.redhat.com>

> How is your texinfo?
here:

Index: gdb.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v
retrieving revision 1.124
diff -c -3 -p -r1.124 gdb.texinfo
*** gdb.texinfo 21 Sep 2002 00:29:04 -0000      1.124
--- gdb.texinfo 23 Sep 2002 11:44:10 -0000
*************** Michael Tiemann contributed SPARC suppor
*** 394,399 ****
--- 394,400 ----
  Tim Tucker contributed support for the Gould NP1 and Gould Powernode.
  Pace Willison contributed Intel 386 support.
  Jay Vosburgh contributed Symmetry support.
+ Marko Mlinar contributed OpenRISC 1000 support.

  Andreas Schwab contributed M68K Linux support.

*************** The timeout set by @code{set timeout} do
*** 12236,12241 ****
--- 12237,12343 ----
  is waiting for your program to stop.  In that case, @value{GDBN} waits
  forever because it has no way of knowing how long the program is going
  to run before stopping.
+ @end table
+
+ @node OpenRISC 1000
+ @subsection OpenRISC 1000
+
+ @cindex or1k boards
+ See OR1k Architecture document (@url{www.opencores.org}) for more 
information
+ about platform and commands.
+
+ @table @code
+
+ @kindex target jtag
+ @item target jtag jtag://@var{host}:@var{port}
+
+ Connects to remote JTAG server.
+ JTAG remote server can be either an or1ksim or JTAG server,
+ connected via parallel port to the board.
+
+ Example: @code{target jtag jtag://localhost:9999}
+
+ @kindex or1ksim
+ @item or1ksim @var{command}
+ If connected to @code{or1ksim} OpenRISC 1000 Architectural
+ Simulator, proprietary commands can be executed.
+
+ @kindex info or1k spr
+ @item info or1k spr
+ Displays spr groups.
+
+ @item info or1k spr @var{group}
+ @item info or1k spr @var{groupno}
+ Displays register names in selected group.
+
+ @item info or1k spr @var{group} @var{register}
+ @item info or1k spr @var{register}
+ @item info or1k spr @var{groupno} @var{registerno}
+ @item info or1k spr @var{registerno}
+ Shows information about specified spr register.
+
+ @kindex spr
+ @item spr @var{group} @var{register} @var{value}
+ @item spr @var{register @var{value}}
+ @item spr @var{groupno} @var{registerno @var{value}}
+ @item spr @var{registerno @var{value}}
+ Writes @var{value} to specified spr register.
+
+ @kindex hwatch
+ @item hwatch @var{conditional}
+ Set hardware watchpoint on combination of Load/Store Effecive Address(es)
+ or Data.  For example:
+
+ @code{hwatch ($LEA == my_var) && ($LDATA < 50) || ($SEA == my_var) && 
($SDATA >= 50)}
+
+ @code{hwatch ($LEA == my_var) && ($LDATA < 50) || ($SEA == my_var) && 
($SDATA >= 50)}
+
+ @kindex htrace info
+ @item htrace info
+ Display information about current HW trace configuration.
+
+ @kindex htrace trigger
+ @item htrace trigger @var{conditional}
+ Set starting criteria for HW trace.
+
+ @kindex htrace qualifier
+ @item htrace qualifier @var{conditional}
+ Set acquisition qualifier for HW trace.
+
+ @kindex htrace stop
+ @item htrace stop @var{conditional}
+ Set HW trace stopping criteria.
+
+ @kindex htrace record
+ @item htrace record @var{[data]*}
+ Selects the data to be recorded, when qualifier is met and HW trace was
+ triggered.
+
+ @kindex htrace enable
+ @item htrace enable
+ @kindex htrace disable
+ @item htrace disable
+ Enables/disables the HW trace.
+
+ @kindex htrace rewind
+ @item htrace rewind @var{[filename]}
+ Clears currently recorded trace data.
+
+ If filename is specified, new trace file is made and any newly collected 
data
+ will be written there.
+
+ @kindex htrace print
+ @item htrace print @var{[start [len]]}
+ Prints trace buffer, using current record configuration.
+
+ @kindex htrace mode continuous
+ @item htrace mode continuous
+ Set continuous trace mode.
+
+ @kindex htrace mode suspend
+ @item htrace mode suspend
+ Set suspend trace mode.
+
  @end table

  @node PowerPC


  parent reply	other threads:[~2002-09-23 11:48 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <200209041256.47379.markom@opencores.org>
     [not found] ` <3D7CC5F0.7040100@ges.redhat.com>
     [not found]   ` <200209161329.37700.markom@opencores.org>
2002-09-17  5:44     ` Marko Mlinar
2002-09-18 12:59       ` Andrew Cagney
2002-09-18 23:49         ` Marko Mlinar
2002-10-02 16:07           ` Andrew Cagney
2002-09-18 13:53       ` Andrew Cagney
2002-09-19  2:00         ` Marko Mlinar
2002-09-19 17:33           ` Andrew Cagney
2002-09-20  5:01             ` Marko Mlinar
2002-10-02 16:51               ` Andrew Cagney
2002-10-03 23:11                 ` Marko Mlinar
2002-10-09  5:00                 ` Marko Mlinar
2002-10-09 16:11                   ` David Carlton
2002-10-10  0:42                     ` Marko Mlinar
2002-10-10 12:34                       ` David Carlton
2002-09-23  4:48             ` Marko Mlinar [this message]
2002-09-23 22:05               ` Eli Zaretskii
2002-09-24  5:03                 ` Marko Mlinar
2002-09-24  8:20                   ` Eli Zaretskii
2002-09-24 23:59                     ` Marko Mlinar
2002-10-03  7:06 Marko Mlinar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200209231346.58722.markom@opencores.org \
    --to=markom@opencores.org \
    --cc=ac131313@ges.redhat.com \
    --cc=gdb-patches@sources.redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox