* Makefile.in (GDBvn.texi): Fix match expression to work with
[deliverable/binutils-gdb.git] / gdb / doc / remote.texi
CommitLineData
4af6d502
RP
1@c -*- Texinfo -*-
2@c Copyright (c) 1990 1991 1992 1993 Free Software Foundation, Inc.
3@c This file is part of the source for the GDB manual.
4@c This text diverted to "Remote Debugging" section in general case;
5@c however, if we're doing a manual specifically for one of these, it
6@c belongs up front (in "Getting In and Out" chapter).
7
8@ifset REMOTESTUB
9@node Remote Serial
10@subsection The @value{GDBN} remote serial protocol
11
12@cindex remote serial debugging, overview
13To debug a program running on another machine (the debugging
14@dfn{target} machine), you must first arrange for all the usual
15prerequisites for the program to run by itself. For example, for a C
af215b1a 16program, you need:
4af6d502
RP
17
18@enumerate
19@item
20A startup routine to set up the C runtime environment; these usually
21have a name like @file{crt0}. The startup routine may be supplied by
22your hardware supplier, or you may have to write your own.
23
24@item
25You probably need a C subroutine library to support your program's
26subroutine calls, notably managing input and output.
27
28@item
29A way of getting your program to the other machine---for example, a
30download program. These are often supplied by the hardware
31manufacturer, but you may have to write your own from hardware
32documentation.
33@end enumerate
34
35The next step is to arrange for your program to use a serial port to
36communicate with the machine where @value{GDBN} is running (the @dfn{host}
37machine). In general terms, the scheme looks like this:
38
39@table @emph
40@item On the host,
41@value{GDBN} already understands how to use this protocol; when everything
42else is set up, you can simply use the @samp{target remote} command
43(@pxref{Targets,,Specifying a Debugging Target}).
44
45@item On the target,
46you must link with your program a few special-purpose subroutines that
47implement the @value{GDBN} remote serial protocol. The file containing these
48subroutines is called a @dfn{debugging stub}.
49
50@ifset GDBSERVER
51On certain remote targets, you can use an auxiliary program
52@code{gdbserver} instead of linking a stub into your program.
53@xref{Server,,Using the @code{gdbserver} program}, for details.
54@end ifset
55@end table
56
57The debugging stub is specific to the architecture of the remote
58machine; for example, use @file{sparc-stub.c} to debug programs on
59@sc{sparc} boards.
60
61@cindex remote serial stub list
62These working remote stubs are distributed with @value{GDBN}:
63
64@table @code
42d0ec72
SS
65
66@item i386-stub.c
67@kindex i386-stub.c
68@cindex Intel
69@cindex i386
70For Intel 386 and compatible architectures.
4af6d502
RP
71
72@item m68k-stub.c
73@kindex m68k-stub.c
6b51acad 74@cindex Motorola 680x0
02f868b1 75@cindex m680x0
4af6d502
RP
76For Motorola 680x0 architectures.
77
42d0ec72
SS
78@item sh-stub.c
79@kindex sh-stub.c
80@cindex Hitachi
81@cindex SH
82For Hitachi SH architectures.
83
84@item sparc-stub.c
85@kindex sparc-stub.c
86@cindex Sparc
87For @sc{sparc} architectures.
88
89@item sparcl-stub.c
90@kindex sparcl-stub.c
91@cindex Fujitsu
92@cindex SparcLite
93For Fujitsu @sc{sparclite} architectures.
94
4af6d502
RP
95@end table
96
97The @file{README} file in the @value{GDBN} distribution may list other
98recently added stubs.
99
100@menu
101* Stub Contents:: What the stub can do for you
102* Bootstrapping:: What you must do for the stub
103* Debug Session:: Putting it all together
104* Protocol:: Outline of the communication protocol
105@ifset GDBSERVER
106* Server:: Using the `gdbserver' program
107@end ifset
07dff010
C
108@ifset GDBSERVE
109* NetWare:: Using the `gdbserve.nlm' program
110@end ifset
4af6d502
RP
111@end menu
112
113@node Stub Contents
114@subsubsection What the stub can do for you
115
116@cindex remote serial stub
117The debugging stub for your architecture supplies these three
118subroutines:
119
120@table @code
121@item set_debug_traps
122@kindex set_debug_traps
123@cindex remote serial stub, initialization
124This routine arranges for @code{handle_exception} to run when your
125program stops. You must call this subroutine explicitly near the
126beginning of your program.
127
128@item handle_exception
129@kindex handle_exception
130@cindex remote serial stub, main routine
131This is the central workhorse, but your program never calls it
132explicitly---the setup code arranges for @code{handle_exception} to
133run when a trap is triggered.
134
135@code{handle_exception} takes control when your program stops during
136execution (for example, on a breakpoint), and mediates communications
137with @value{GDBN} on the host machine. This is where the communications
138protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
139representative on the target machine; it begins by sending summary
140information on the state of your program, then continues to execute,
141retrieving and transmitting any information @value{GDBN} needs, until you
142execute a @value{GDBN} command that makes your program resume; at that point,
143@code{handle_exception} returns control to your own code on the target
144machine.
145
146@item breakpoint
147@cindex @code{breakpoint} subroutine, remote
148Use this auxiliary subroutine to make your program contain a
149breakpoint. Depending on the particular situation, this may be the only
150way for @value{GDBN} to get control. For instance, if your target
151machine has some sort of interrupt button, you won't need to call this;
9a27b06e 152pressing the interrupt button transfers control to
4af6d502
RP
153@code{handle_exception}---in effect, to @value{GDBN}. On some machines,
154simply receiving characters on the serial port may also trigger a trap;
155again, in that situation, you don't need to call @code{breakpoint} from
156your own program---simply running @samp{target remote} from the host
9a27b06e 157@value{GDBN} session gets control.
4af6d502
RP
158
159Call @code{breakpoint} if none of these is true, or if you simply want
160to make certain your program stops at a predetermined point for the
161start of your debugging session.
162@end table
163
164@node Bootstrapping
165@subsubsection What you must do for the stub
166
167@cindex remote stub, support routines
168The debugging stubs that come with @value{GDBN} are set up for a particular
169chip architecture, but they have no information about the rest of your
e3b9a485
JK
170debugging target machine.
171
172First of all you need to tell the stub how to communicate with the
173serial port.
4af6d502
RP
174
175@table @code
176@item int getDebugChar()
177@kindex getDebugChar
178Write this subroutine to read a single character from the serial port.
179It may be identical to @code{getchar} for your target system; a
180different name is used to allow you to distinguish the two if you wish.
181
182@item void putDebugChar(int)
183@kindex putDebugChar
184Write this subroutine to write a single character to the serial port.
185It may be identical to @code{putchar} for your target system; a
186different name is used to allow you to distinguish the two if you wish.
e3b9a485
JK
187@end table
188
22b5dba5
RP
189@cindex control C, and remote debugging
190@cindex interrupting remote targets
e3b9a485
JK
191If you want @value{GDBN} to be able to stop your program while it is
192running, you need to use an interrupt-driven serial driver, and arrange
22b5dba5
RP
193for it to stop when it receives a @code{^C} (@samp{\003}, the control-C
194character). That is the character which @value{GDBN} uses to tell the
195remote system to stop.
196
197Getting the debugging target to return the proper status to @value{GDBN}
198probably requires changes to the standard stub; one quick and dirty way
199is to just execute a breakpoint instruction (the ``dirty'' part is that
200@value{GDBN} reports a @code{SIGTRAP} instead of a @code{SIGINT}).
4af6d502 201
e3b9a485
JK
202Other routines you need to supply are:
203
204@table @code
4af6d502 205@item void exceptionHandler (int @var{exception_number}, void *@var{exception_address})
8d8c5f39 206@kindex exceptionHandler
4af6d502
RP
207Write this function to install @var{exception_address} in the exception
208handling tables. You need to do this because the stub does not have any
209way of knowing what the exception handling tables on your target system
210are like (for example, the processor's table might be in @sc{rom},
211containing entries which point to a table in @sc{ram}).
212@var{exception_number} is the exception number which should be changed;
213its meaning is architecture-dependent (for example, different numbers
214might represent divide by zero, misaligned access, etc). When this
215exception occurs, control should be transferred directly to
216@var{exception_address}, and the processor state (stack, registers,
b1955f0b 217and so on) should be just as it is when a processor exception occurs. So if
4af6d502
RP
218you want to use a jump instruction to reach @var{exception_address}, it
219should be a simple jump, not a jump to subroutine.
220
4af6d502 221For the 386, @var{exception_address} should be installed as an interrupt
8d8c5f39
JK
222gate so that interrupts are masked while the handler runs. The gate
223should be at privilege level 0 (the most privileged level). The
af215b1a 224@sc{sparc} and 68k stubs are able to mask interrup themselves without
4af6d502
RP
225help from @code{exceptionHandler}.
226
227@item void flush_i_cache()
228@kindex flush_i_cache
0f6bb717
JK
229(sparc and sparclite only) Write this subroutine to flush the
230instruction cache, if any, on your target machine. If there is no
231instruction cache, this subroutine may be a no-op.
4af6d502
RP
232
233On target machines that have instruction caches, @value{GDBN} requires this
234function to make certain that the state of your program is stable.
235@end table
236
237@noindent
238You must also make sure this library routine is available:
239
240@table @code
241@item void *memset(void *, int, int)
242@kindex memset
243This is the standard library function @code{memset} that sets an area of
244memory to a known value. If you have one of the free versions of
245@code{libc.a}, @code{memset} can be found there; otherwise, you must
246either obtain it from your hardware manufacturer, or write your own.
247@end table
248
249If you do not use the GNU C compiler, you may need other standard
9a27b06e 250library subroutines as well; this varies from one stub to another,
4af6d502
RP
251but in general the stubs are likely to use any of the common library
252subroutines which @code{gcc} generates as inline code.
253
254
255@node Debug Session
256@subsubsection Putting it all together
257
258@cindex remote serial debugging summary
259In summary, when your program is ready to debug, you must follow these
260steps.
261
262@enumerate
263@item
264Make sure you have the supporting low-level routines
6b51acad 265(@pxref{Bootstrapping,,What you must do for the stub}):
4af6d502
RP
266@display
267@code{getDebugChar}, @code{putDebugChar},
268@code{flush_i_cache}, @code{memset}, @code{exceptionHandler}.
269@end display
270
271@item
272Insert these lines near the top of your program:
273
274@example
275set_debug_traps();
276breakpoint();
277@end example
278
279@item
280For the 680x0 stub only, you need to provide a variable called
af215b1a 281@code{exceptionHook}. Normally you just use:
4af6d502
RP
282
283@example
284void (*exceptionHook)() = 0;
285@end example
286
287but if before calling @code{set_debug_traps}, you set it to point to a
288function in your program, that function is called when
289@code{@value{GDBN}} continues after stopping on a trap (for example, bus
290error). The function indicated by @code{exceptionHook} is called with
291one parameter: an @code{int} which is the exception number.
292
293@item
294Compile and link together: your program, the @value{GDBN} debugging stub for
295your target architecture, and the supporting subroutines.
296
297@item
298Make sure you have a serial connection between your target machine and
af215b1a 299the @value{GDBN} host, and identify the serial port on the host.
4af6d502
RP
300
301@item
302@c The "remote" target now provides a `load' command, so we should
303@c document that. FIXME.
304Download your program to your target machine (or get it there by
305whatever means the manufacturer provides), and start it.
306
307@item
308To start remote debugging, run @value{GDBN} on the host machine, and specify
309as an executable file the program that is running in the remote machine.
310This tells @value{GDBN} how to find your program's symbols and the contents
311of its pure text.
312
313@cindex serial line, @code{target remote}
314Then establish communication using the @code{target remote} command.
315Its argument specifies how to communicate with the target
316machine---either via a devicename attached to a direct serial line, or a
317TCP port (usually to a terminal server which in turn has a serial line
318to the target). For example, to use a serial line connected to the
319device named @file{/dev/ttyb}:
320
321@example
322target remote /dev/ttyb
323@end example
324
325@cindex TCP port, @code{target remote}
326To use a TCP connection, use an argument of the form
327@code{@var{host}:port}. For example, to connect to port 2828 on a
328terminal server named @code{manyfarms}:
329
330@example
331target remote manyfarms:2828
332@end example
333@end enumerate
334
335Now you can use all the usual commands to examine and change data and to
336step and continue the remote program.
337
338To resume the remote program and stop debugging it, use the @code{detach}
339command.
340
341@cindex interrupting remote programs
342@cindex remote programs, interrupting
343Whenever @value{GDBN} is waiting for the remote program, if you type the
344interrupt character (often @key{C-C}), @value{GDBN} attempts to stop the
345program. This may or may not succeed, depending in part on the hardware
346and the serial drivers the remote system uses. If you type the
347interrupt character once again, @value{GDBN} displays this prompt:
348
349@example
350Interrupted while waiting for the program.
351Give up (and stop debugging it)? (y or n)
352@end example
353
354If you type @kbd{y}, @value{GDBN} abandons the remote debugging session.
355(If you decide you want to try again later, you can use @samp{target
356remote} again to connect once more.) If you type @kbd{n}, @value{GDBN}
357goes back to waiting.
358
359@node Protocol
b1955f0b 360@subsubsection Communication protocol
4af6d502
RP
361
362@cindex debugging stub, example
363@cindex remote stub, example
364@cindex stub example, remote debugging
365The stub files provided with @value{GDBN} implement the target side of the
366communication protocol, and the @value{GDBN} side is implemented in the
367@value{GDBN} source file @file{remote.c}. Normally, you can simply allow
368these subroutines to communicate, and ignore the details. (If you're
369implementing your own stub file, you can still ignore the details: start
370with one of the existing stub files. @file{sparc-stub.c} is the best
371organized, and therefore the easiest to read.)
372
373However, there may be occasions when you need to know something about
374the protocol---for example, if there is only one serial port to your
375target machine, you might want your program to do something special if
376it recognizes a packet meant for @value{GDBN}.
377
378@cindex protocol, @value{GDBN} remote serial
379@cindex serial protocol, @value{GDBN} remote
380@cindex remote serial protocol
381All @value{GDBN} commands and responses (other than acknowledgements, which
382are single characters) are sent as a packet which includes a
383checksum. A packet is introduced with the character @samp{$}, and ends
384with the character @samp{#} followed by a two-digit checksum:
385
386@example
387$@var{packet info}#@var{checksum}
388@end example
389
390@cindex checksum, for @value{GDBN} remote
391@noindent
392@var{checksum} is computed as the modulo 256 sum of the @var{packet
393info} characters.
394
395When either the host or the target machine receives a packet, the first
396response expected is an acknowledgement: a single character, either
397@samp{+} (to indicate the package was received correctly) or @samp{-}
398(to request retransmission).
399
400The host (@value{GDBN}) sends commands, and the target (the debugging stub
401incorporated in your program) sends data in response. The target also
402sends data when your program stops.
403
404Command packets are distinguished by their first character, which
405identifies the kind of command.
406
af215b1a
VM
407These are some of the commands currently supported (for a complete list of
408commands, look in @file{gdb/remote.c.}):
4af6d502
RP
409
410@table @code
411@item g
412Requests the values of CPU registers.
413
414@item G
415Sets the values of CPU registers.
416
417@item m@var{addr},@var{count}
418Read @var{count} bytes at location @var{addr}.
419
420@item M@var{addr},@var{count}:@dots{}
421Write @var{count} bytes at location @var{addr}.
422
b1955f0b 423@need 500
4af6d502
RP
424@item c
425@itemx c@var{addr}
426Resume execution at the current address (or at @var{addr} if supplied).
427
b1955f0b 428@need 500
4af6d502
RP
429@item s
430@itemx s@var{addr}
431Step the target program for one instruction, from either the current
432program counter or from @var{addr} if supplied.
433
434@item k
435Kill the target program.
436
437@item ?
438Report the most recent signal. To allow you to take advantage of the
439@value{GDBN} signal handling commands, one of the functions of the debugging
440stub is to report CPU traps as the corresponding POSIX signal values.
af215b1a
VM
441
442@item T
443Allows the remote stub to send only the registers that @value{GDBN} needs
444to make a quick decision about single-stepping or conditional breakpoints.
445This eliminates the need to fetch the entire register set for each instruction
446being stepped through.
447
0d2ff0f1
SS
448@value{GDBN} now implements a write-through cache for registers and only
449re-reads the registers if the target has run.
4af6d502
RP
450@end table
451
452@kindex set remotedebug
453@kindex show remotedebug
454@cindex packets, reporting on stdout
455@cindex serial connections, debugging
456If you have trouble with the serial connection, you can use the command
457@code{set remotedebug}. This makes @value{GDBN} report on all packets sent
458back and forth across the serial line to the remote machine. The
459packet-debugging information is printed on the @value{GDBN} standard output
460stream. @code{set remotedebug off} turns it off, and @code{show
9a27b06e 461remotedebug} shows you its current state.
4af6d502
RP
462
463@ifset GDBSERVER
464@node Server
465@subsubsection Using the @code{gdbserver} program
466
467@kindex gdbserver
468@cindex remote connection without stubs
469@code{gdbserver} is a control program for Unix-like systems, which
470allows you to connect your program with a remote @value{GDBN} via
471@code{target remote}---but without linking in the usual debugging stub.
472
473@code{gdbserver} is not a complete replacement for the debugging stubs,
474because it requires essentially the same operating-system facilities
475that @value{GDBN} itself does. In fact, a system that can run
476@code{gdbserver} to connect to a remote @value{GDBN} could also run
c79890ee 477@value{GDBN} locally! @code{gdbserver} is sometimes useful nevertheless,
4af6d502 478because it is a much smaller program than @value{GDBN} itself. It is
c79890ee 479also easier to port than all of @value{GDBN}, so you may be able to get
4af6d502 480started more quickly on a new system by using @code{gdbserver}.
22b5dba5
RP
481Finally, if you develop code for real-time systems, you may find that
482the tradeoffs involved in real-time operation make it more convenient to
483do as much development work as possible on another system, for example
484by cross-compiling. You can use @code{gdbserver} to make a similar
485choice for debugging.
4af6d502
RP
486
487@value{GDBN} and @code{gdbserver} communicate via either a serial line
488or a TCP connection, using the standard @value{GDBN} remote serial
489protocol.
490
491@table @emph
22b5dba5 492@item On the target machine,
4af6d502
RP
493you need to have a copy of the program you want to debug.
494@code{gdbserver} does not need your program's symbol table, so you can
495strip the program if necessary to save space. @value{GDBN} on the host
496system does all the symbol handling.
497
22b5dba5 498To use the server, you must tell it how to communicate with @value{GDBN};
4af6d502
RP
499the name of your program; and the arguments for your program. The
500syntax is:
501
502@smallexample
503target> gdbserver @var{comm} @var{program} [ @var{args} @dots{} ]
504@end smallexample
505
506@var{comm} is either a device name (to use a serial line) or a TCP
22b5dba5 507hostname and portnumber. For example, to debug Emacs with the argument
4af6d502
RP
508@samp{foo.txt} and communicate with @value{GDBN} over the serial port
509@file{/dev/com1}:
510
511@smallexample
512target> gdbserver /dev/com1 emacs foo.txt
513@end smallexample
514
515@code{gdbserver} waits passively for the host @value{GDBN} to communicate
516with it.
517
518To use a TCP connection instead of a serial line:
519
520@smallexample
521target> gdbserver host:2345 emacs foo.txt
522@end smallexample
523
524The only difference from the previous example is the first argument,
525specifying that you are communicating with the host @value{GDBN} via
526TCP. The @samp{host:2345} argument means that @code{gdbserver} is to
527expect a TCP connection from machine @samp{host} to local TCP port 2345.
528(Currently, the @samp{host} part is ignored.) You can choose any number
529you want for the port number as long as it does not conflict with any
22b5dba5
RP
530TCP ports already in use on the target system (for example, @code{23} is
531reserved for @code{telnet}).@footnote{If you choose a port number that
532conflicts with another service, @code{gdbserver} prints an error message
533and exits.} You must use the same port number with the host @value{GDBN}
534@code{target remote} command.
535
536@item On the @value{GDBN} host machine,
537you need an unstripped copy of your program, since @value{GDBN} needs
538symbols and debugging information. Start up @value{GDBN} as usual,
539using the name of the local copy of your program as the first argument.
540(You may also need the @w{@samp{--baud}} option if the serial line is
541running at anything other than 9600 bps.) After that, use @code{target
542remote} to establish communications with @code{gdbserver}. Its argument
543is either a device name (usually a serial device, like
544@file{/dev/ttyb}), or a TCP port descriptor in the form
545@code{@var{host}:@var{PORT}}. For example:
4af6d502
RP
546
547@smallexample
548(@value{GDBP}) target remote /dev/ttyb
549@end smallexample
550
551@noindent
552communicates with the server via serial line @file{/dev/ttyb}, and
553
554@smallexample
555(@value{GDBP}) target remote the-target:2345
556@end smallexample
557
558@noindent
22b5dba5 559communicates via a TCP connection to port 2345 on host @w{@file{the-target}}.
4af6d502
RP
560For TCP connections, you must start up @code{gdbserver} prior to using
561the @code{target remote} command. Otherwise you may get an error whose
562text depends on the host system, but which usually looks something like
563@samp{Connection refused}.
564@end table
565@end ifset
566
07dff010
C
567@ifset GDBSERVE
568@node NetWare
569@subsubsection Using the @code{gdbserve.nlm} program
570
571@kindex gdbserve.nlm
572@code{gdbserve.nlm} is a control program for NetWare systems, which
573allows you to connect your program with a remote @value{GDBN} via
574@code{target remote}.
575
576@value{GDBN} and @code{gdbserve.nlm} communicate via a serial line,
577using the standard @value{GDBN} remote serial protocol.
578
579@table @emph
580@item On the target machine,
581you need to have a copy of the program you want to debug.
582@code{gdbserve.nlm} does not need your program's symbol table, so you
583can strip the program if necessary to save space. @value{GDBN} on the
584host system does all the symbol handling.
585
586To use the server, you must tell it how to communicate with
587@value{GDBN}; the name of your program; and the arguments for your
588program. The syntax is:
589
590@smallexample
af215b1a
VM
591load gdbserve [ BOARD=@var{board} ] [ PORT=@var{port} ]
592 [ BAUD=@var{baud} ] @var{program} [ @var{args} @dots{} ]
07dff010
C
593@end smallexample
594
7d777b91 595@var{board} and @var{port} specify the serial line; @var{baud} specifies
07dff010
C
596the baud rate used by the connection. @var{port} and @var{node} default
597to 0, @var{baud} defaults to 9600 bps.
598
599For example, to debug Emacs with the argument @samp{foo.txt}and
7d777b91
C
600communicate with @value{GDBN} over serial port number 2 or board 1
601using a 19200 bps connection:
07dff010
C
602
603@smallexample
7d777b91 604load gdbserve BOARD=1 PORT=2 BAUD=19200 emacs foo.txt
07dff010
C
605@end smallexample
606
607@item On the @value{GDBN} host machine,
608you need an unstripped copy of your program, since @value{GDBN} needs
609symbols and debugging information. Start up @value{GDBN} as usual,
610using the name of the local copy of your program as the first argument.
611(You may also need the @w{@samp{--baud}} option if the serial line is
612running at anything other than 9600 bps. After that, use @code{target
613remote} to establish communications with @code{gdbserve.nlm}. Its
614argument is a device name (usually a serial device, like
615@file{/dev/ttyb}). For example:
616
617@smallexample
618(@value{GDBP}) target remote /dev/ttyb
619@end smallexample
620
621@noindent
622communications with the server via serial line @file{/dev/ttyb}.
623@end table
624@end ifset
625
4af6d502
RP
626@end ifset
627
628@ifset I960
629@node i960-Nindy Remote
630@subsection @value{GDBN} with a remote i960 (Nindy)
631
632@cindex Nindy
633@cindex i960
634@dfn{Nindy} is a ROM Monitor program for Intel 960 target systems. When
635@value{GDBN} is configured to control a remote Intel 960 using Nindy, you can
636tell @value{GDBN} how to connect to the 960 in several ways:
637
638@itemize @bullet
639@item
640Through command line options specifying serial port, version of the
641Nindy protocol, and communications speed;
642
643@item
644By responding to a prompt on startup;
645
646@item
647By using the @code{target} command at any point during your @value{GDBN}
648session. @xref{Target Commands, ,Commands for managing targets}.
649
650@end itemize
651
652@menu
653* Nindy Startup:: Startup with Nindy
654* Nindy Options:: Options for Nindy
655* Nindy Reset:: Nindy reset command
656@end menu
657
658@node Nindy Startup
659@subsubsection Startup with Nindy
660
661If you simply start @code{@value{GDBP}} without using any command-line
662options, you are prompted for what serial port to use, @emph{before} you
663reach the ordinary @value{GDBN} prompt:
664
665@example
666Attach /dev/ttyNN -- specify NN, or "quit" to quit:
667@end example
668
669@noindent
670Respond to the prompt with whatever suffix (after @samp{/dev/tty})
671identifies the serial port you want to use. You can, if you choose,
672simply start up with no Nindy connection by responding to the prompt
673with an empty line. If you do this and later wish to attach to Nindy,
674use @code{target} (@pxref{Target Commands, ,Commands for managing targets}).
675
676@node Nindy Options
677@subsubsection Options for Nindy
678
679These are the startup options for beginning your @value{GDBN} session with a
680Nindy-960 board attached:
681
682@table @code
683@item -r @var{port}
684Specify the serial port name of a serial interface to be used to connect
685to the target system. This option is only available when @value{GDBN} is
686configured for the Intel 960 target architecture. You may specify
687@var{port} as any of: a full pathname (e.g. @samp{-r /dev/ttya}), a
688device name in @file{/dev} (e.g. @samp{-r ttya}), or simply the unique
689suffix for a specific @code{tty} (e.g. @samp{-r a}).
690
691@item -O
692(An uppercase letter ``O'', not a zero.) Specify that @value{GDBN} should use
693the ``old'' Nindy monitor protocol to connect to the target system.
694This option is only available when @value{GDBN} is configured for the Intel 960
695target architecture.
696
697@quotation
698@emph{Warning:} if you specify @samp{-O}, but are actually trying to
699connect to a target system that expects the newer protocol, the connection
700fails, appearing to be a speed mismatch. @value{GDBN} repeatedly
701attempts to reconnect at several different line speeds. You can abort
702this process with an interrupt.
703@end quotation
704
705@item -brk
706Specify that @value{GDBN} should first send a @code{BREAK} signal to the target
707system, in an attempt to reset it, before connecting to a Nindy target.
708
709@quotation
710@emph{Warning:} Many target systems do not have the hardware that this
711requires; it only works with a few boards.
712@end quotation
713@end table
714
715The standard @samp{-b} option controls the line speed used on the serial
716port.
717
718@c @group
719@node Nindy Reset
720@subsubsection Nindy reset command
721
722@table @code
723@item reset
724@kindex reset
725For a Nindy target, this command sends a ``break'' to the remote target
726system; this is only useful if the target has been equipped with a
727circuit to perform a hard reset (or some other interesting action) when
728a break is detected.
729@end table
730@c @end group
731@end ifset
732
733@ifset AMD29K
734@node UDI29K Remote
b1955f0b 735@subsection The UDI protocol for AMD29K
4af6d502
RP
736
737@cindex UDI
738@cindex AMD29K via UDI
739@value{GDBN} supports AMD's UDI (``Universal Debugger Interface'')
740protocol for debugging the a29k processor family. To use this
741configuration with AMD targets running the MiniMON monitor, you need the
742program @code{MONTIP}, available from AMD at no charge. You can also
af215b1a 743use @value{GDBN} with the UDI-conformant a29k simulator program
4af6d502
RP
744@code{ISSTIP}, also available from AMD.
745
746@table @code
747@item target udi @var{keyword}
748@kindex udi
749Select the UDI interface to a remote a29k board or simulator, where
750@var{keyword} is an entry in the AMD configuration file @file{udi_soc}.
751This file contains keyword entries which specify parameters used to
752connect to a29k targets. If the @file{udi_soc} file is not in your
753working directory, you must set the environment variable @samp{UDICONF}
754to its pathname.
755@end table
756
757@node EB29K Remote
b1955f0b 758@subsection The EBMON protocol for AMD29K
4af6d502
RP
759
760@cindex EB29K board
761@cindex running 29K programs
762
763AMD distributes a 29K development board meant to fit in a PC, together
764with a DOS-hosted monitor program called @code{EBMON}. As a shorthand
765term, this development system is called the ``EB29K''. To use
766@value{GDBN} from a Unix system to run programs on the EB29K board, you
767must first connect a serial cable between the PC (which hosts the EB29K
768board) and a serial port on the Unix system. In the following, we
769assume you've hooked the cable between the PC's @file{COM1} port and
770@file{/dev/ttya} on the Unix system.
771
772@menu
773* Comms (EB29K):: Communications setup
774* gdb-EB29K:: EB29K cross-debugging
775* Remote Log:: Remote log
776@end menu
777
778@node Comms (EB29K)
779@subsubsection Communications setup
780
781The next step is to set up the PC's port, by doing something like this
782in DOS on the PC:
783
784@example
785C:\> MODE com1:9600,n,8,1,none
786@end example
787
788@noindent
789This example---run on an MS DOS 4.0 system---sets the PC port to 9600
790bps, no parity, eight data bits, one stop bit, and no ``retry'' action;
791you must match the communications parameters when establishing the Unix
792end of the connection as well.
793@c FIXME: Who knows what this "no retry action" crud from the DOS manual may
e0d3ace2 794@c mean? It's optional; leave it out? ---doc@cygnus.com, 25feb91
4af6d502
RP
795
796To give control of the PC to the Unix side of the serial line, type
797the following at the DOS console:
798
799@example
800C:\> CTTY com1
801@end example
802
803@noindent
804(Later, if you wish to return control to the DOS console, you can use
805the command @code{CTTY con}---but you must send it over the device that
806had control, in our example over the @file{COM1} serial line).
807
808From the Unix host, use a communications program such as @code{tip} or
809@code{cu} to communicate with the PC; for example,
810
811@example
812cu -s 9600 -l /dev/ttya
813@end example
814
815@noindent
816The @code{cu} options shown specify, respectively, the linespeed and the
817serial port to use. If you use @code{tip} instead, your command line
818may look something like the following:
819
820@example
821tip -9600 /dev/ttya
822@end example
823
824@noindent
825Your system may require a different name where we show
826@file{/dev/ttya} as the argument to @code{tip}. The communications
827parameters, including which port to use, are associated with the
828@code{tip} argument in the ``remote'' descriptions file---normally the
829system table @file{/etc/remote}.
830@c FIXME: What if anything needs doing to match the "n,8,1,none" part of
831@c the DOS side's comms setup? cu can support -o (odd
832@c parity), -e (even parity)---apparently no settings for no parity or
833@c for character size. Taken from stty maybe...? John points out tip
834@c can set these as internal variables, eg ~s parity=none; man stty
835@c suggests that it *might* work to stty these options with stdin or
e0d3ace2 836@c stdout redirected... ---doc@cygnus.com, 25feb91
4af6d502
RP
837
838@kindex EBMON
839Using the @code{tip} or @code{cu} connection, change the DOS working
840directory to the directory containing a copy of your 29K program, then
841start the PC program @code{EBMON} (an EB29K control program supplied
842with your board by AMD). You should see an initial display from
843@code{EBMON} similar to the one that follows, ending with the
844@code{EBMON} prompt @samp{#}---
845
846@example
847C:\> G:
848
849G:\> CD \usr\joe\work29k
850
851G:\USR\JOE\WORK29K> EBMON
852Am29000 PC Coprocessor Board Monitor, version 3.0-18
853Copyright 1990 Advanced Micro Devices, Inc.
854Written by Gibbons and Associates, Inc.
855
856Enter '?' or 'H' for help
857
858PC Coprocessor Type = EB29K
859I/O Base = 0x208
860Memory Base = 0xd0000
861
862Data Memory Size = 2048KB
863Available I-RAM Range = 0x8000 to 0x1fffff
864Available D-RAM Range = 0x80002000 to 0x801fffff
865
866PageSize = 0x400
867Register Stack Size = 0x800
868Memory Stack Size = 0x1800
869
870CPU PRL = 0x3
871Am29027 Available = No
872Byte Write Available = Yes
873
874# ~.
875@end example
876
877Then exit the @code{cu} or @code{tip} program (done in the example by
9a27b06e 878typing @code{~.} at the @code{EBMON} prompt). @code{EBMON} keeps
4af6d502
RP
879running, ready for @value{GDBN} to take over.
880
881For this example, we've assumed what is probably the most convenient
882way to make sure the same 29K program is on both the PC and the Unix
883system: a PC/NFS connection that establishes ``drive @code{G:}'' on the
884PC as a file system on the Unix host. If you do not have PC/NFS or
885something similar connecting the two systems, you must arrange some
886other way---perhaps floppy-disk transfer---of getting the 29K program
9a27b06e 887from the Unix system to the PC; @value{GDBN} does @emph{not} download it over the
4af6d502
RP
888serial line.
889
890@node gdb-EB29K
891@subsubsection EB29K cross-debugging
892
893Finally, @code{cd} to the directory containing an image of your 29K
894program on the Unix system, and start @value{GDBN}---specifying as argument the
895name of your 29K program:
896
897@example
898cd /usr/joe/work29k
899@value{GDBP} myfoo
900@end example
901
b1955f0b 902@need 500
4af6d502
RP
903Now you can use the @code{target} command:
904
905@example
906target amd-eb /dev/ttya 9600 MYFOO
907@c FIXME: test above 'target amd-eb' as spelled, with caps! caps are meant to
908@c emphasize that this is the name as seen by DOS (since I think DOS is
e0d3ace2 909@c single-minded about case of letters). ---doc@cygnus.com, 25feb91
4af6d502
RP
910@end example
911
912@noindent
913In this example, we've assumed your program is in a file called
914@file{myfoo}. Note that the filename given as the last argument to
915@code{target amd-eb} should be the name of the program as it appears to DOS.
916In our example this is simply @code{MYFOO}, but in general it can include
917a DOS path, and depending on your transfer mechanism may not resemble
918the name on the Unix side.
919
920At this point, you can set any breakpoints you wish; when you are ready
921to see your program run on the 29K board, use the @value{GDBN} command
922@code{run}.
923
924To stop debugging the remote program, use the @value{GDBN} @code{detach}
925command.
926
927To return control of the PC to its console, use @code{tip} or @code{cu}
928once again, after your @value{GDBN} session has concluded, to attach to
929@code{EBMON}. You can then type the command @code{q} to shut down
930@code{EBMON}, returning control to the DOS command-line interpreter.
931Type @code{CTTY con} to return command input to the main DOS console,
932and type @kbd{~.} to leave @code{tip} or @code{cu}.
933
934@node Remote Log
935@subsubsection Remote log
936@kindex eb.log
937@cindex log file for EB29K
938
939The @code{target amd-eb} command creates a file @file{eb.log} in the
940current working directory, to help debug problems with the connection.
941@file{eb.log} records all the output from @code{EBMON}, including echoes
942of the commands sent to it. Running @samp{tail -f} on this file in
943another window often helps to understand trouble with @code{EBMON}, or
944unexpected events on the PC side of the connection.
945
946@end ifset
947
948@ifset ST2000
949@node ST2000 Remote
950@subsection @value{GDBN} with a Tandem ST2000
951
952To connect your ST2000 to the host system, see the manufacturer's
af215b1a 953manual. Once the ST2000 is physically attached, you can run:
4af6d502
RP
954
955@example
956target st2000 @var{dev} @var{speed}
957@end example
958
959@noindent
960to establish it as your debugging environment. @var{dev} is normally
961the name of a serial device, such as @file{/dev/ttya}, connected to the
962ST2000 via a serial line. You can instead specify @var{dev} as a TCP
963connection (for example, to a serial line attached via a terminal
964concentrator) using the syntax @code{@var{hostname}:@var{portnumber}}.
965
966The @code{load} and @code{attach} commands are @emph{not} defined for
967this target; you must load your program into the ST2000 as you normally
9a27b06e 968would for standalone operation. @value{GDBN} reads debugging information
4af6d502
RP
969(such as symbols) from a separate, debugging version of the program
970available on your host computer.
971@c FIXME!! This is terribly vague; what little content is here is
972@c basically hearsay.
973
974@cindex ST2000 auxiliary commands
975These auxiliary @value{GDBN} commands are available to help you with the ST2000
976environment:
977
978@table @code
979@item st2000 @var{command}
980@kindex st2000 @var{cmd}
981@cindex STDBUG commands (ST2000)
982@cindex commands to STDBUG (ST2000)
983Send a @var{command} to the STDBUG monitor. See the manufacturer's
984manual for available commands.
985
986@item connect
987@cindex connect (to STDBUG)
988Connect the controlling terminal to the STDBUG command monitor. When
989you are done interacting with STDBUG, typing either of two character
9a27b06e 990sequences gets you back to the @value{GDBN} command prompt:
4af6d502
RP
991@kbd{@key{RET}~.} (Return, followed by tilde and period) or
992@kbd{@key{RET}~@key{C-d}} (Return, followed by tilde and control-D).
993@end table
994@end ifset
995
996@ifset VXWORKS
146ff252
DE
997@node VxWorks Remote
998@subsection @value{GDBN} and VxWorks
999@cindex VxWorks
4af6d502
RP
1000
1001@value{GDBN} enables developers to spawn and debug tasks running on networked
146ff252
DE
1002VxWorks targets from a Unix host. Already-running tasks spawned from
1003the VxWorks shell can also be debugged. @value{GDBN} uses code that runs on
1004both the Unix host and on the VxWorks target. The program
6b51acad 1005@code{gdb} is installed and executed on the Unix host. (It may be
4af6d502
RP
1006installed with the name @code{vxgdb}, to distinguish it from a
1007@value{GDBN} for debugging programs on the host itself.)
1008
af215b1a 1009@table @code
146ff252 1010@item VxWorks-timeout @var{args}
af215b1a 1011@kindex vxworks-timeout
146ff252 1012All VxWorks-based targets now support the option @code{vxworks-timeout}.
af215b1a
VM
1013This option is set by the user, and @var{args} represents the number of
1014seconds @value{GDBN} waits for responses to rpc's. You might use this if
146ff252 1015your VxWorks target is a slow software simulator or is on the far side
af215b1a
VM
1016of a thin network line.
1017@end table
1018
146ff252
DE
1019The following information on connecting to VxWorks was current when
1020this manual was produced; newer releases of VxWorks may use revised
4af6d502
RP
1021procedures.
1022
4af6d502 1023@kindex INCLUDE_RDB
146ff252
DE
1024To use @value{GDBN} with VxWorks, you must rebuild your VxWorks kernel
1025to include the remote debugging interface routines in the VxWorks
ffbfe250 1026library @file{rdb.a}. To do this, define @code{INCLUDE_RDB} in the
146ff252 1027VxWorks configuration file @file{configAll.h} and rebuild your VxWorks
9a27b06e 1028kernel. The resulting kernel contains @file{rdb.a}, and spawns the
146ff252
DE
1029source debugging task @code{tRdbTask} when VxWorks is booted. For more
1030information on configuring and remaking VxWorks, see the manufacturer's
ffbfe250 1031manual.
146ff252 1032@c VxWorks, see the @cite{VxWorks Programmer's Guide}.
4af6d502 1033
146ff252 1034Once you have included @file{rdb.a} in your VxWorks system image and set
ffbfe250
JK
1035your Unix execution search path to find @value{GDBN}, you are ready to
1036run @value{GDBN}. From your Unix host, run @code{gdb} (or @code{vxgdb},
1037depending on your installation).
4af6d502
RP
1038
1039@value{GDBN} comes up showing the prompt:
1040
1041@example
1042(vxgdb)
1043@end example
1044
1045@menu
146ff252
DE
1046* VxWorks Connection:: Connecting to VxWorks
1047* VxWorks Download:: VxWorks download
1048* VxWorks Attach:: Running tasks
4af6d502
RP
1049@end menu
1050
146ff252
DE
1051@node VxWorks Connection
1052@subsubsection Connecting to VxWorks
4af6d502 1053
146ff252 1054The @value{GDBN} command @code{target} lets you connect to a VxWorks target on the
4af6d502
RP
1055network. To connect to a target whose host name is ``@code{tt}'', type:
1056
1057@example
1058(vxgdb) target vxworks tt
1059@end example
1060
b1955f0b 1061@need 750
4af6d502
RP
1062@value{GDBN} displays messages like these:
1063
1064@smallexample
1065Attaching remote machine across net...
1066Connected to tt.
1067@end smallexample
1068
b1955f0b 1069@need 1000
4af6d502 1070@value{GDBN} then attempts to read the symbol tables of any object modules
146ff252 1071loaded into the VxWorks target since it was last booted. @value{GDBN} locates
4af6d502
RP
1072these files by searching the directories listed in the command search
1073path (@pxref{Environment, ,Your program's environment}); if it fails
1074to find an object file, it displays a message such as:
1075
1076@example
1077prog.o: No such file or directory.
1078@end example
1079
1080When this happens, add the appropriate directory to the search path with
1081the @value{GDBN} command @code{path}, and execute the @code{target}
1082command again.
1083
146ff252
DE
1084@node VxWorks Download
1085@subsubsection VxWorks download
4af6d502 1086
146ff252
DE
1087@cindex download to VxWorks
1088If you have connected to the VxWorks target and you want to debug an
4af6d502 1089object that has not yet been loaded, you can use the @value{GDBN}
146ff252 1090@code{load} command to download a file from Unix to VxWorks
4af6d502 1091incrementally. The object file given as an argument to the @code{load}
146ff252 1092command is actually opened twice: first by the VxWorks target in order
4af6d502
RP
1093to download the code, then by @value{GDBN} in order to read the symbol
1094table. This can lead to problems if the current working directories on
1095the two systems differ. If both systems have NFS mounted the same
1096filesystems, you can avoid these problems by using absolute paths.
1097Otherwise, it is simplest to set the working directory on both systems
1098to the directory in which the object file resides, and then to reference
1099the file by its name, without any path. For instance, a program
146ff252 1100@file{prog.o} may reside in @file{@var{vxpath}/vw/demo/rdb} in VxWorks
4af6d502 1101and in @file{@var{hostpath}/vw/demo/rdb} on the host. To load this
146ff252 1102program, type this on VxWorks:
4af6d502
RP
1103
1104@example
1105-> cd "@var{vxpath}/vw/demo/rdb"
1106@end example
af215b1a 1107v
4af6d502
RP
1108Then, in @value{GDBN}, type:
1109
1110@example
1111(vxgdb) cd @var{hostpath}/vw/demo/rdb
1112(vxgdb) load prog.o
1113@end example
1114
1115@value{GDBN} displays a response similar to this:
1116
1117@smallexample
1118Reading symbol data from wherever/vw/demo/rdb/prog.o... done.
1119@end smallexample
1120
1121You can also use the @code{load} command to reload an object module
1122after editing and recompiling the corresponding source file. Note that
9a27b06e 1123this makes @value{GDBN} delete all currently-defined breakpoints,
4af6d502
RP
1124auto-displays, and convenience variables, and to clear the value
1125history. (This is necessary in order to preserve the integrity of
1126debugger data structures that reference the target system's symbol
1127table.)
1128
146ff252 1129@node VxWorks Attach
4af6d502
RP
1130@subsubsection Running tasks
1131
146ff252 1132@cindex running VxWorks tasks
4af6d502
RP
1133You can also attach to an existing task using the @code{attach} command as
1134follows:
1135
1136@example
1137(vxgdb) attach @var{task}
1138@end example
1139
1140@noindent
146ff252 1141where @var{task} is the VxWorks hexadecimal task ID. The task can be running
9a27b06e 1142or suspended when you attach to it. Running tasks are suspended at
4af6d502
RP
1143the time of attachment.
1144@end ifset
1145
6905de28
DP
1146@ifset SPARCLET
1147@node Sparclet Remote
1148@subsection @value{GDBN} and Sparclet
1149@cindex Sparclet
1150
1151@value{GDBN} enables developers to debug tasks running on
1152Sparclet targets from a Unix host.
1153@value{GDBN} uses code that runs on
1154both the Unix host and on the Sparclet target. The program
1155@code{gdb} is installed and executed on the Unix host.
1156
1157@table @code
1158@item timeout @var{args}
1159@kindex remotetimeout
1160@value{GDBN} now supports the option @code{remotetimeout}.
1161This option is set by the user, and @var{args} represents the number of
1162seconds @value{GDBN} waits for responses.
1163@end table
1164
1165@kindex Compiling
1166When compiling for debugging, include the options "-g" to get debug
1167information and "-Ttext" to relocate the program to where you wish to
1168load it on the target. You may also want to add the options "-n" or
1169"-N" in order to reduce the size of the sections.
1170
1171@example
1172sparclet-aout-gcc prog.c -Ttext 0x12010000 -g -o prog -N
1173@end example
1174
1175You can use objdump to verify that the addresses are what you intended.
1176
1177@example
1178sparclet-aout-objdump --headers --syms prog
1179@end example
1180
1181@kindex Running
1182Once you have set
1183your Unix execution search path to find @value{GDBN}, you are ready to
1184run @value{GDBN}. From your Unix host, run @code{gdb}
1185(or @code{sparclet-aout-gdb}, depending on your installation).
1186
1187@value{GDBN} comes up showing the prompt:
1188
1189@example
1190(gdbslet)
1191@end example
1192
1193@menu
1194* Sparclet File:: Setting the file to debug
1195* Sparclet Connection:: Connecting to Sparclet
1196* Sparclet Download:: Sparclet download
1197* Sparclet Execution:: Running and debugging
1198@end menu
1199
1200@node Sparclet File
1201@subsubsection Setting file to debug
1202
146ff252 1203The @value{GDBN} command @code{file} lets you choose with program to debug.
6905de28
DP
1204
1205@example
1206(gdbslet) file prog
1207@end example
1208
1209@need 1000
1210@value{GDBN} then attempts to read the symbol table of @file{prog}.
1211@value{GDBN} locates
1212the file by searching the directories listed in the command search
1213path.
1214If the file was compiled with debug information (option "-g"), source
1215files will be searched as well.
1216@value{GDBN} locates
1217the source files by searching the directories listed in the directory search
1218path (@pxref{Environment, ,Your program's environment}).
1219If it fails
1220to find a file, it displays a message such as:
1221
1222@example
1223prog: No such file or directory.
1224@end example
1225
1226When this happens, add the appropriate directories to the search paths with
1227the @value{GDBN} commands @code{path} and @code{dir}, and execute the
1228@code{target} command again.
1229
1230@node Sparclet Connection
1231@subsubsection Connecting to Sparclet
1232
1233The @value{GDBN} command @code{target} lets you connect to a Sparclet target.
1234To connect to a target on serial port ``@code{ttya}'', type:
1235
1236@example
1237(gdbslet) target sparclet /dev/ttya
1238Remote target sparclet connected to /dev/ttya
1239main () at ../prog.c:3
1240@end example
1241
1242@need 750
1243@value{GDBN} displays messages like these:
1244
1245@smallexample
1246Connected to ttya.
1247@end smallexample
1248
1249@node Sparclet Download
1250@subsubsection Sparclet download
1251
1252@cindex download to Sparclet
1253Once connected to the Sparclet target,
1254you can use the @value{GDBN}
1255@code{load} command to download the file from the host to the target.
1256The file name and load offset should be given as arguments to the @code{load}
1257command.
1258Since the file format is aout, the program must be loaded to the starting
1259address. You can use objdump to find out what this value is. The load
1260offset is an offset which is added to the VMA (virtual memory address)
1261of each of the file's sections.
1262For instance, if the program
1263@file{prog} was linked to text address 0x1201000, with data at 0x12010160
1264and bss at 0x12010170, in @value{GDBN}, type:
1265
1266@example
1267(gdbslet) load prog 0x12010000
1268Loading section .text, size 0xdb0 vma 0x12010000
1269@end example
1270
146ff252 1271If the code is loaded at a different address then what the program was linked
6905de28
DP
1272to, you may need to use the @code{section} and @code{add-symbol-file} commands
1273to tell @value{GDBN} where to map the symbol table.
1274
1275@node Sparclet Execution
1276@subsubsection Running and debugging
1277
1278@cindex running and debugging Sparclet programs
1279You can now begin debugging the task using @value{GDBN}'s execution control
1280commands, @code{b}, @code{step}, @code{run}, etc. See the @value{GDBN}
1281manual for the list of commands.
1282
1283@example
1284(gdbslet) b main
1285Breakpoint 1 at 0x12010000: file prog.c, line 3.
1286(gdbslet) run
1287Starting program: prog
1288Breakpoint 1, main (argc=1, argv=0xeffff21c) at prog.c:3
12893 char *symarg = 0;
1290(gdbslet) step
12914 char *execarg = "hello!";
1292(gdbslet)
1293@end example
1294
1295@end ifset
1296
4af6d502
RP
1297@ifset H8
1298@node Hitachi Remote
2ded09f5 1299@subsection @value{GDBN} and Hitachi microprocessors
4af6d502
RP
1300@value{GDBN} needs to know these things to talk to your
1301Hitachi SH, H8/300, or H8/500:
1302
1303@enumerate
1304@item
1305that you want to use @samp{target hms}, the remote debugging interface
2ded09f5
RP
1306for Hitachi microprocessors, or @samp{target e7000}, the in-circuit
1307emulator for the Hitachi SH and the Hitachi 300H. (@samp{target hms} is
1308the default when GDB is configured specifically for the Hitachi SH,
1309H8/300, or H8/500.)
4af6d502
RP
1310
1311@item
1312what serial device connects your host to your Hitachi board (the first
2ded09f5 1313serial device available on your host is the default).
4af6d502 1314
2ded09f5
RP
1315@ifclear H8EXCLUSIVE
1316@c this is only for Unix hosts, not of interest to Hitachi
4af6d502
RP
1317@item
1318what speed to use over the serial device.
2ded09f5 1319@end ifclear
4af6d502
RP
1320@end enumerate
1321
2ded09f5 1322@menu
009ed681
RP
1323* Hitachi Boards:: Connecting to Hitachi boards.
1324* Hitachi ICE:: Using the E7000 In-Circuit Emulator.
1325* Hitachi Special:: Special @value{GDBN} commands for Hitachi micros.
2ded09f5
RP
1326@end menu
1327
1328@node Hitachi Boards
1329@subsubsection Connecting to Hitachi boards
1330
4af6d502
RP
1331@ifclear H8EXCLUSIVE
1332@c only for Unix hosts
1333@kindex device
1334@cindex serial device, Hitachi micros
1335Use the special @code{@value{GDBP}} command @samp{device @var{port}} if you
1336need to explicitly set the serial device. The default @var{port} is the
1337first available port on your host. This is only necessary on Unix
1338hosts, where it is typically something like @file{/dev/ttya}.
1339
1340@kindex speed
1341@cindex serial line speed, Hitachi micros
1342@code{@value{GDBP}} has another special command to set the communications
1343speed: @samp{speed @var{bps}}. This command also is only used from Unix
1344hosts; on DOS hosts, set the line speed as usual from outside GDB with
1345the DOS @kbd{mode} command (for instance, @w{@samp{mode
1346com2:9600,n,8,1,p}} for a 9600 bps connection).
1347
1348The @samp{device} and @samp{speed} commands are available only when you
1349use a Unix host to debug your Hitachi microprocessor programs. If you
1350use a DOS host,
1351@end ifclear
1352@value{GDBN} depends on an auxiliary terminate-and-stay-resident program
1353called @code{asynctsr} to communicate with the development board
1354through a PC serial port. You must also use the DOS @code{mode} command
1355to set up the serial port on the DOS side.
1356
1357@ifset DOSHOST
1358The following sample session illustrates the steps needed to start a
1359program under @value{GDBN} control on an H8/300. The example uses a
1360sample H8/300 program called @file{t.x}. The procedure is the same for
1361the Hitachi SH and the H8/500.
1362
1363First hook up your development board. In this example, we use a
1364board attached to serial port @code{COM2}; if you use a different serial
1365port, substitute its name in the argument of the @code{mode} command.
1366When you call @code{asynctsr}, the auxiliary comms program used by the
1367degugger, you give it just the numeric part of the serial port's name;
1368for example, @samp{asyncstr 2} below runs @code{asyncstr} on
1369@code{COM2}.
1370
1371@example
e3a58c92
JO
1372C:\H8300\TEST> asynctsr 2
1373C:\H8300\TEST> mode com2:9600,n,8,1,p
4af6d502
RP
1374
1375Resident portion of MODE loaded
1376
1377COM2: 9600, n, 8, 1, p
1378
4af6d502
RP
1379@end example
1380
1381@quotation
1382@emph{Warning:} We have noticed a bug in PC-NFS that conflicts with
1383@code{asynctsr}. If you also run PC-NFS on your DOS host, you may need to
1384disable it, or even boot without it, to use @code{asynctsr} to control
1385your development board.
1386@end quotation
1387
1388@kindex target hms
1389Now that serial communications are set up, and the development board is
1390connected, you can start up @value{GDBN}. Call @code{@value{GDBP}} with
1391the name of your program as the argument. @code{@value{GDBP}} prompts
1392you, as usual, with the prompt @samp{(@value{GDBP})}. Use two special
1393commands to begin your debugging session: @samp{target hms} to specify
1394cross-debugging to the Hitachi board, and the @code{load} command to
1395download your program to the board. @code{load} displays the names of
1396the program's sections, and a @samp{*} for each 2K of data downloaded.
1397(If you want to refresh @value{GDBN} data on symbols or on the
1398executable file without downloading, use the @value{GDBN} commands
1399@code{file} or @code{symbol-file}. These commands, and @code{load}
1400itself, are described in @ref{Files,,Commands to specify files}.)
1401
1402@smallexample
1403(eg-C:\H8300\TEST) @value{GDBP} t.x
1404GDB is free software and you are welcome to distribute copies
1405 of it under certain conditions; type "show copying" to see
1406 the conditions.
1407There is absolutely no warranty for GDB; type "show warranty"
1408for details.
1409GDB @value{GDBVN}, Copyright 1992 Free Software Foundation, Inc...
1410(gdb) target hms
1411Connected to remote H8/300 HMS system.
1412(gdb) load t.x
1413.text : 0x8000 .. 0xabde ***********
1414.data : 0xabde .. 0xad30 *
1415.stack : 0xf000 .. 0xf014 *
1416@end smallexample
1417
1418At this point, you're ready to run or debug your program. From here on,
1419you can use all the usual @value{GDBN} commands. The @code{break} command
1420sets breakpoints; the @code{run} command starts your program;
1421@code{print} or @code{x} display data; the @code{continue} command
1422resumes execution after stopping at a breakpoint. You can use the
1423@code{help} command at any time to find out more about @value{GDBN} commands.
1424
1425Remember, however, that @emph{operating system} facilities aren't
1426available on your development board; for example, if your program hangs,
1427you can't send an interrupt---but you can press the @sc{reset} switch!
1428
1429Use the @sc{reset} button on the development board
1430@itemize @bullet
1431@item
1432to interrupt your program (don't use @kbd{ctl-C} on the DOS host---it has
1433no way to pass an interrupt signal to the development board); and
1434
1435@item
1436to return to the @value{GDBN} command prompt after your program finishes
1437normally. The communications protocol provides no other way for @value{GDBN}
1438to detect program completion.
1439@end itemize
1440
9a27b06e 1441In either case, @value{GDBN} sees the effect of a @sc{reset} on the
4af6d502 1442development board as a ``normal exit'' of your program.
009ed681 1443@end ifset
2ded09f5
RP
1444
1445@node Hitachi ICE
1446@subsubsection Using the E7000 in-circuit emulator
1447
1448@kindex target e7000
1449You can use the E7000 in-circuit emulator to develop code for either the
1450Hitachi SH or the H8/300H. Use one of these forms of the @samp{target
1451e7000} command to connect @value{GDBN} to your E7000:
1452
1453@table @code
1454@item target e7000 @var{port} @var{speed}
1455Use this form if your E7000 is connected to a serial port. The
1456@var{port} argument identifies what serial port to use (for example,
1457@samp{com2}). The third argument is the line speed in bits per second
1458(for example, @samp{9600}).
1459
1460@item target e7000 @var{hostname}
1461If your E7000 is installed as a host on a TCP/IP network, you can just
1462specify its hostname; @value{GDBN} uses @code{telnet} to connect.
1463@end table
1464
1465@node Hitachi Special
1466@subsubsection Special @value{GDBN} commands for Hitachi micros
1467
1468Some @value{GDBN} commands are available only on the H8/300 or the
1469H8/500 configurations:
1470
1471@table @code
1472@kindex set machine
1473@kindex show machine
1474@item set machine h8300
1475@itemx set machine h8300h
1476Condition @value{GDBN} for one of the two variants of the H8/300
1477architecture with @samp{set machine}. You can use @samp{show machine}
1478to check which variant is currently in effect.
1479
1480@kindex set memory @var{mod}
1481@cindex memory models, H8/500
1482@item set memory @var{mod}
1483@itemx show memory
1484Specify which H8/500 memory model (@var{mod}) you are using with
1485@samp{set memory}; check which memory model is in effect with @samp{show
1486memory}. The accepted values for @var{mod} are @code{small},
1487@code{big}, @code{medium}, and @code{compact}.
1488@end table
1489
4af6d502
RP
1490@end ifset
1491
1492@ifset MIPS
1493@node MIPS Remote
1494@subsection @value{GDBN} and remote MIPS boards
1495
1496@cindex MIPS boards
1497@value{GDBN} can use the MIPS remote debugging protocol to talk to a
1498MIPS board attached to a serial line. This is available when
1499you configure @value{GDBN} with @samp{--target=mips-idt-ecoff}.
1500
b1955f0b 1501@need 1000
22b5dba5
RP
1502Use these @value{GDBN} commands to specify the connection to your target board:
1503
1504@table @code
1505@item target mips @var{port}
4af6d502
RP
1506@kindex target mips @var{port}
1507To run a program on the board, start up @code{@value{GDBP}} with the
1508name of your program as the argument. To connect to the board, use the
1509command @samp{target mips @var{port}}, where @var{port} is the name of
1510the serial port connected to the board. If the program has not already
1511been downloaded to the board, you may use the @code{load} command to
1512download it. You can then use all the usual @value{GDBN} commands.
1513
22b5dba5
RP
1514For example, this sequence connects to the target board through a serial
1515port, and loads and runs a program called @var{prog} through the
1516debugger:
1517
1518@example
1519host$ @value{GDBP} @var{prog}
1520GDB is free software and @dots{}
1521(gdb) target mips /dev/ttyb
1522(gdb) load @var{prog}
1523(gdb) run
1524@end example
1525
1526@item target mips @var{hostname}:@var{portnumber}
1527On some @value{GDBN} host configurations, you can specify a TCP
1528connection (for instance, to a serial line managed by a terminal
1529concentrator) instead of a serial port, using the syntax
1530@samp{@var{hostname}:@var{portnumber}}.
d390cad1
SS
1531
1532@item target pmon @var{port}
1533@kindex target pmon @var{port}
1534
1535@item target ddb @var{port}
1536@kindex target ddb @var{port}
1537
1538@item target lsi @var{port}
1539@kindex target lsi @var{port}
1540
22b5dba5
RP
1541@end table
1542
d390cad1 1543
22b5dba5
RP
1544@noindent
1545@value{GDBN} also supports these special commands for MIPS targets:
4af6d502 1546
22b5dba5 1547@table @code
af215b1a
VM
1548@item set processor @var{args}
1549@itemx show processor
1550@kindex set processor @var{args}
1551@kindex show processor
1552Use the @code{set processor} command to set the type of MIPS
1553processor when you want to access processor-type-specific registers.
1554For example, @code{set processor @var{r3041}} tells @value{GDBN}
1555to use the CPO registers appropriate for the 3041 chip.
1556Use the @code{show processor} command to see what MIPS processor @value{GDBN}
1557is using. Use the @code{info reg} command to see what registers
1558@value{GDBN} is using.
1559
89dd4786
ILT
1560@item set mipsfpu double
1561@itemx set mipsfpu single
1562@itemx set mipsfpu none
22b5dba5 1563@itemx show mipsfpu
89dd4786 1564@kindex set mipsfpu
22b5dba5
RP
1565@kindex show mipsfpu
1566@cindex MIPS remote floating point
1567@cindex floating point, MIPS remote
1568If your target board does not support the MIPS floating point
89dd4786 1569coprocessor, you should use the command @samp{set mipsfpu none} (if you
22b5dba5
RP
1570need this, you may wish to put the command in your @value{GDBINIT}
1571file). This tells @value{GDBN} how to find the return value of
1572functions which return floating point values. It also allows
1573@value{GDBN} to avoid saving the floating point registers when calling
89dd4786
ILT
1574functions on the board. If you are using a floating point coprocessor
1575with only single precision floating point support, as on the @sc{r4650}
1576processor, use the command @samp{set mipsfpu single}. The default
1577double precision floating point coprocessor may be selected using
1578@samp{set mipsfpu double}.
1579
1580In previous versions the only choices were double precision or no
1581floating point, so @samp{set mipsfpu on} will select double precision
1582and @samp{set mipsfpu off} will select no floating point.
1583
1584As usual, you can inquire about the @code{mipsfpu} variable with
1585@samp{show mipsfpu}.
22b5dba5
RP
1586
1587@item set remotedebug @var{n}
1588@itemx show remotedebug
1589@kindex set remotedebug
1590@kindex show remotedebug
4af6d502 1591@cindex @code{remotedebug}, MIPS protocol
22b5dba5 1592@cindex MIPS @code{remotedebug} protocol
4af6d502
RP
1593@c FIXME! For this to be useful, you must know something about the MIPS
1594@c FIXME...protocol. Where is it described?
1595You can see some debugging information about communications with the board
22b5dba5
RP
1596by setting the @code{remotedebug} variable. If you set it to @code{1} using
1597@samp{set remotedebug 1}, every packet is displayed. If you set it
1598to @code{2}, every character is displayed. You can check the current value
4af6d502
RP
1599at any time with the command @samp{show remotedebug}.
1600
22b5dba5
RP
1601@item set timeout @var{seconds}
1602@itemx set retransmit-timeout @var{seconds}
1603@itemx show timeout
1604@itemx show retransmit-timeout
4af6d502
RP
1605@cindex @code{timeout}, MIPS protocol
1606@cindex @code{retransmit-timeout}, MIPS protocol
f21c5362
RP
1607@kindex set timeout
1608@kindex show timeout
1609@kindex set retransmit-timeout
1610@kindex show retransmit-timeout
1611You can control the timeout used while waiting for a packet, in the MIPS
1612remote protocol, with the @code{set timeout @var{seconds}} command. The
1613default is 5 seconds. Similarly, you can control the timeout used while
1614waiting for an acknowledgement of a packet with the @code{set
1615retransmit-timeout @var{seconds}} command. The default is 3 seconds.
1616You can inspect both values with @code{show timeout} and @code{show
1617retransmit-timeout}. (These commands are @emph{only} available when
1618@value{GDBN} is configured for @samp{--target=mips-idt-ecoff}.)
5940bfd9
JK
1619
1620The timeout set by @code{set timeout} does not apply when @value{GDBN}
1621is waiting for your program to stop. In that case, @value{GDBN} waits
1622forever because it has no way of knowing how long the program is going
1623to run before stopping.
22b5dba5 1624@end table
4af6d502
RP
1625@end ifset
1626
1627@ifset SIMS
1628@node Simulator
1629@subsection Simulated CPU target
1630
1631@ifset GENERIC
1632@cindex simulator
1633@cindex simulator, Z8000
1634@cindex Z8000 simulator
1635@cindex simulator, H8/300 or H8/500
1636@cindex H8/300 or H8/500 simulator
1637@cindex simulator, Hitachi SH
1638@cindex Hitachi SH simulator
1639@cindex CPU simulator
1640For some configurations, @value{GDBN} includes a CPU simulator that you
1641can use instead of a hardware CPU to debug your programs. Currently,
1642a simulator is available when @value{GDBN} is configured to debug Zilog
1643Z8000 or Hitachi microprocessor targets.
1644@end ifset
1645
1646@ifclear GENERIC
1647@ifset H8
1648@cindex simulator, H8/300 or H8/500
1649@cindex Hitachi H8/300 or H8/500 simulator
1650@cindex simulator, Hitachi SH
1651@cindex Hitachi SH simulator
1652When configured for debugging Hitachi microprocessor targets,
1653@value{GDBN} includes a CPU simulator for the target chip (a Hitachi SH,
1654H8/300, or H8/500).
1655@end ifset
1656
1657@ifset Z8K
1658@cindex simulator, Z8000
1659@cindex Zilog Z8000 simulator
1660When configured for debugging Zilog Z8000 targets, @value{GDBN} includes
1661a Z8000 simulator.
1662@end ifset
1663@end ifclear
1664
1665@ifset Z8K
1666For the Z8000 family, @samp{target sim} simulates either the Z8002 (the
1667unsegmented variant of the Z8000 architecture) or the Z8001 (the
1668segmented variant). The simulator recognizes which architecture is
1669appropriate by inspecting the object code.
1670@end ifset
1671
1672@table @code
1673@item target sim
1674@kindex sim
1675@kindex target sim
1676Debug programs on a simulated CPU
1677@ifset GENERIC
1678(which CPU depends on the @value{GDBN} configuration)
1679@end ifset
1680@end table
1681
1682@noindent
1683After specifying this target, you can debug programs for the simulated
1684CPU in the same style as programs for your host computer; use the
1685@code{file} command to load a new program image, the @code{run} command
1686to run your program, and so on.
1687
1688As well as making available all the usual machine registers (see
1689@code{info reg}), this debugging target provides three additional items
1690of information as specially named registers:
1691
1692@table @code
1693@item cycles
1694Counts clock-ticks in the simulator.
1695
1696@item insts
1697Counts instructions run in the simulator.
1698
1699@item time
1700Execution time in 60ths of a second.
1701@end table
1702
1703You can refer to these values in @value{GDBN} expressions with the usual
1704conventions; for example, @w{@samp{b fputc if $cycles>5000}} sets a
9a27b06e 1705conditional breakpoint that suspends only after at least 5000
4af6d502
RP
1706simulated clock ticks.
1707@end ifset
This page took 0.313251 seconds and 4 git commands to generate.