]> Git Repo - binutils.git/blame - gdb/doc/gdbinv-s.texi
This is the real generic configuration. Earlier versions checked in
[binutils.git] / gdb / doc / gdbinv-s.texi
CommitLineData
18fae2a8
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).
18fae2a8 7
ed447b95 8@ifset REMOTESTUB
18fae2a8
RP
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
16program, you need
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@end table
50
51The debugging stub is specific to the architecture of the remote
52machine; for example, use @file{sparc-stub.c} to debug programs on
53@sc{sparc} boards.
54
55@cindex remote serial stub list
56These working remote stubs are distributed with @value{GDBN}:
57
58@c FIXME! verify these...
59@table @code
60@item sparc-stub.c
61@kindex sparc-stub.c
62For @sc{sparc} architectures.
63
64@item m68k-stub.c
65@kindex m68-stub.c
66For Motorola 680x0 architectures.
67
68@item i386-stub.c
69@kindex i36-stub.c
70For Intel 386 and compatible architectures.
71@end table
72
73The @file{README} file in the @value{GDBN} distribution may list other
74recently added stubs.
75
76@menu
ed447b95
RP
77* Stub Contents:: What the stub can do for you
78* Bootstrapping:: What you must do for the stub
79* Debug Session:: Putting it all together
80* Protocol:: Outline of the communication protocol
18fae2a8
RP
81@end menu
82
ed447b95 83@node Stub Contents
18fae2a8
RP
84@subsubsection What the stub can do for you
85
86@cindex remote serial stub
87The debugging stub for your architecture supplies these three
88subroutines:
89
90@table @code
91@item set_debug_traps
92@kindex set_debug_traps
93@cindex remote serial stub, initialization
8c69096b
RP
94This routine arranges for @code{handle_exception} to run when your
95program stops. You must call this subroutine explicitly near the
96beginning of your program.
18fae2a8
RP
97
98@item handle_exception
99@kindex handle_exception
100@cindex remote serial stub, main routine
101This is the central workhorse, but your program never calls it
102explicitly---the setup code arranges for @code{handle_exception} to
103run when a trap is triggered.
104
105@code{handle_exception} takes control when your program stops during
106execution (for example, on a breakpoint), and mediates communications
107with @value{GDBN} on the host machine. This is where the communications
108protocol is implemented; @code{handle_exception} acts as the @value{GDBN}
109representative on the target machine; it begins by sending summary
110information on the state of your program, then continues to execute,
111retrieving and transmitting any information @value{GDBN} needs, until you
112execute a @value{GDBN} command that makes your program resume; at that point,
113@code{handle_exception} returns control to your own code on the target
114machine.
115
116@item breakpoint
117@cindex @code{breakpoint} subroutine, remote
118Use this auxiliary subroutine to make your program contain a
119breakpoint. Depending on the particular situation, this may be the only
120way for @value{GDBN} to get control. For instance, if your target
121machine has some sort of interrupt button, you won't need to call this;
122pressing the interrupt button will transfer control to
123@code{handle_exception}---in efect, to @value{GDBN}. On some machines,
124simply receiving characters on the serial port may also trigger a trap;
125again, in that situation, you don't need to call @code{breakpoint} from
126your own program---simply running @samp{target remote} from the host
127@value{GDBN} session will get control.
128
129Call @code{breakpoint} if none of these is true, or if you simply want
130to make certain your program stops at a predetermined point for the
131start of your debugging session.
132@end table
133
ed447b95 134@node Bootstrapping
18fae2a8
RP
135@subsubsection What you must do for the stub
136
137@cindex remote stub, support routines
138The debugging stubs that come with @value{GDBN} are set up for a particular
139chip architecture, but they have no information about the rest of your
140debugging target machine. To allow the stub to work, you must supply
141these special low-level subroutines:
142
143@table @code
144@item int getDebugChar()
145@kindex getDebugChar
146Write this subroutine to read a single character from the serial port.
147It may be identical to @code{getchar} for your target system; a
148different name is used to allow you to distinguish the two if you wish.
149
150@item void putDebugChar(int)
151@kindex putDebugChar
152Write this subroutine to write a single character to the serial port.
153It may be identical to @code{putchar} for your target system; a
154different name is used to allow you to distinguish the two if you wish.
155
156@item void flush_i_cache()
157@kindex flush_i_cache
158Write this subroutine to flush the instruction cache, if any, on your
159target machine. If there is no instruction cache, this subroutine may
160be a no-op.
161
162On target machines that have instruction caches, @value{GDBN} requires this
163function to make certain that the state of your program is stable.
164@end table
165
166@noindent
167You must also make sure this library routine is available:
168
169@table @code
170@item void *memset(void *, int, int)
171@kindex memset
172This is the standard library function @code{memset} that sets an area of
173memory to a known value. If you have one of the free versions of
174@code{libc.a}, @code{memset} can be found there; otherwise, you must
175either obtain it from your hardware manufacturer, or write your own.
176@end table
177
178If you do not use the GNU C compiler, you may need other standard
179library subroutines as well; this will vary from one stub to another,
180but in general the stubs are likely to use any of the common library
181subroutines which @code{gcc} generates as inline code.
182
183
ed447b95 184@node Debug Session
18fae2a8
RP
185@subsubsection Putting it all together
186
187@cindex remote serial debugging summary
188In summary, when your program is ready to debug, you must follow these
189steps.
190
191@enumerate
192@item
193Make sure you have the supporting low-level routines:
8c69096b
RP
194@display
195@code{getDebugChar}, @code{putDebugChar},
196@code{flush_i_cache}, @code{memset}.
197@end display
18fae2a8
RP
198
199@item
200Insert these lines near the top of your program:
201
202@example
203set_debug_traps();
204breakpoint();
205@end example
206
207@item
208Compile and link together: your program, the @value{GDBN} debugging stub for
209your target architecture, and the supporting subroutines.
210
211@item
212Make sure you have a serial connection between your target machine and
213the @value{GDBN} host, and identify the serial port used for this on the host.
214
215@item
216Download your program to your target machine (or get it there by
217whatever means the manufacturer provides), and start it.
218
219@item
220To start remote debugging, run @value{GDBN} on the host machine, and specify
221as an executable file the program that is running in the remote machine.
222This tells @value{GDBN} how to find your program's symbols and the contents
223of its pure text.
224
225Then establish communication using the @code{target remote} command.
226Its argument is the name of the device you're using to control the
227target machine. For example:
228
229@example
230target remote /dev/ttyb
231@end example
232
233@noindent
234if the serial line is connected to the device named @file{/dev/ttyb}.
235@ignore
236@c this is from the old text, but it doesn't seem to make sense now that I've
237@c seen an example... pesch 4sep1992
238This will stop the remote machine if it is not already stopped.
239@end ignore
240
241@end enumerate
242
243Now you can use all the usual commands to examine and change data and to
244step and continue the remote program.
245
246To resume the remote program and stop debugging it, use the @code{detach}
247command.
248
ed447b95 249@node Protocol
18fae2a8
RP
250@subsubsection Outline of the communication protocol
251
252@cindex debugging stub, example
253@cindex remote stub, example
254@cindex stub example, remote debugging
255The stub files provided with @value{GDBN} implement the target side of the
256communication protocol, and the @value{GDBN} side is implemented in the
257@value{GDBN} source file @file{remote.c}. Normally, you can simply allow
258these subroutines to communicate, and ignore the details. (If you're
259implementing your own stub file, you can still ignore the details: start
260with one of the existing stub files. @file{sparc-stub.c} is the best
261organized, and therefore the easiest to read.)
262
263However, there may be occasions when you need to know something about
264the protocol---for example, if there is only one serial port to your
265target machine, you might want your program to do something special if
266it recognizes a packet meant for @value{GDBN}.
267
268@cindex protocol, @value{GDBN} remote serial
269@cindex serial protocol, @value{GDBN} remote
270@cindex remote serial protocol
271All @value{GDBN} commands and responses (other than acknowledgements, which
272are single characters) are sent as a packet which includes a
273checksum. A packet is introduced with the character @samp{$}, and ends
274with the character @samp{#} followed by a two-digit checksum:
275
276@example
277$@var{packet info}#@var{checksum}
278@end example
279
280@cindex checksum, for @value{GDBN} remote
281@noindent
282@var{checksum} is computed as the modulo 256 sum of the @var{packet
283info} characters.
284
285When either the host or the target machine receives a packet, the first
286response expected is an acknowledgement: a single character, either
287@samp{+} (to indicate the package was received correctly) or @samp{-}
288(to request retransmission).
289
290The host (@value{GDBN}) sends commands, and the target (the debugging stub
291incorporated in your program) sends data in response. The target also
292sends data when your program stops.
293
294Command packets are distinguished by their first character, which
295identifies the kind of command.
296
297These are the commands currently supported:
298
299@table @code
300@item g
301Requests the values of CPU registers.
302
303@item G
304Sets the values of CPU registers.
305
306@item m@var{addr},@var{count}
307Read @var{count} bytes at location @var{addr}.
308
309@item M@var{addr},@var{count}:@dots{}
310Write @var{count} bytes at location @var{addr}.
311
312@item c
313@itemx c@var{addr}
314Resume execution at the current address (or at @var{addr} if supplied).
315
316@item s
317@itemx s@var{addr}
318Step the target program for one instruction, from either the current
319program counter or from @var{addr} if supplied.
320
321@item k
322Kill the target program.
323
324@item ?
325Report the most recent signal. To allow you to take advantage of the
326@value{GDBN} signal handling commands, one of the functions of the debugging
327stub is to report CPU traps as the corresponding POSIX signal values.
328@end table
329
330@kindex set remotedebug
331@kindex show remotedebug
332@cindex packets, reporting on stdout
333@cindex serial connections, debugging
334If you have trouble with the serial connection, you can use the command
335@code{set remotedebug}. This makes @value{GDBN} report on all packets sent
336back and forth across the serial line to the remote machine. The
337packet-debugging information is printed on the @value{GDBN} standard output
338stream. @code{set remotedebug off} turns it off, and @code{show
339remotedebug} will show you its current state.
340@end ifset
341
342@ifset Icmlx
343@node i960-Nindy Remote
93928b60 344@subsection @value{GDBN} with a remote i960 (Nindy)
18fae2a8
RP
345
346@cindex Nindy
347@cindex i960
348@dfn{Nindy} is a ROM Monitor program for Intel 960 target systems. When
349@value{GDBN} is configured to control a remote Intel 960 using Nindy, you can
350tell @value{GDBN} how to connect to the 960 in several ways:
351
352@itemize @bullet
353@item
354Through command line options specifying serial port, version of the
355Nindy protocol, and communications speed;
356
357@item
358By responding to a prompt on startup;
359
360@item
361By using the @code{target} command at any point during your @value{GDBN}
93928b60 362session. @xref{Target Commands, ,Commands for managing targets}.
18fae2a8
RP
363
364@end itemize
365
366@menu
367* Nindy Startup:: Startup with Nindy
368* Nindy Options:: Options for Nindy
ed447b95 369* Nindy Reset:: Nindy reset command
18fae2a8
RP
370@end menu
371
372@node Nindy Startup
373@subsubsection Startup with Nindy
374
375If you simply start @code{@value{GDBP}} without using any command-line
376options, you are prompted for what serial port to use, @emph{before} you
377reach the ordinary @value{GDBN} prompt:
378
379@example
380Attach /dev/ttyNN -- specify NN, or "quit" to quit:
381@end example
382
383@noindent
384Respond to the prompt with whatever suffix (after @samp{/dev/tty})
385identifies the serial port you want to use. You can, if you choose,
386simply start up with no Nindy connection by responding to the prompt
ed447b95 387with an empty line. If you do this and later wish to attach to Nindy,
93928b60 388use @code{target} (@pxref{Target Commands, ,Commands for managing targets}).
18fae2a8
RP
389
390@node Nindy Options
391@subsubsection Options for Nindy
392
393These are the startup options for beginning your @value{GDBN} session with a
394Nindy-960 board attached:
395
396@table @code
397@item -r @var{port}
398Specify the serial port name of a serial interface to be used to connect
399to the target system. This option is only available when @value{GDBN} is
400configured for the Intel 960 target architecture. You may specify
401@var{port} as any of: a full pathname (e.g. @samp{-r /dev/ttya}), a
402device name in @file{/dev} (e.g. @samp{-r ttya}), or simply the unique
403suffix for a specific @code{tty} (e.g. @samp{-r a}).
404
405@item -O
406(An uppercase letter ``O'', not a zero.) Specify that @value{GDBN} should use
407the ``old'' Nindy monitor protocol to connect to the target system.
408This option is only available when @value{GDBN} is configured for the Intel 960
409target architecture.
410
411@quotation
412@emph{Warning:} if you specify @samp{-O}, but are actually trying to
413connect to a target system that expects the newer protocol, the connection
414will fail, appearing to be a speed mismatch. @value{GDBN} will repeatedly
415attempt to reconnect at several different line speeds. You can abort
416this process with an interrupt.
417@end quotation
418
419@item -brk
420Specify that @value{GDBN} should first send a @code{BREAK} signal to the target
421system, in an attempt to reset it, before connecting to a Nindy target.
422
423@quotation
424@emph{Warning:} Many target systems do not have the hardware that this
425requires; it only works with a few boards.
426@end quotation
427@end table
428
429The standard @samp{-b} option controls the line speed used on the serial
430port.
431
432@c @group
ed447b95 433@node Nindy Reset
93928b60 434@subsubsection Nindy reset command
18fae2a8
RP
435
436@table @code
437@item reset
438@kindex reset
439For a Nindy target, this command sends a ``break'' to the remote target
440system; this is only useful if the target has been equipped with a
441circuit to perform a hard reset (or some other interesting action) when
442a break is detected.
443@end table
444@c @end group
445@end ifset
446
447@ifset AMDxxixK
fe715d06
RP
448@node UDI29K Remote
449@subsection @value{GDBN} and the UDI protocol for AMD29K
450
451@cindex UDI
452@cindex AMD29K via UDI
453@value{GDBN} supports AMD's UDI (``Universal Debugger Interface'')
d7d35f00 454protocol for debugging the a29k processor family. To use this
fe715d06
RP
455configuration with AMD targets running the MiniMON monitor, you need the
456program @code{MONTIP}, available from AMD at no charge. You can also
d7d35f00 457use @value{GDBN} with the UDI conformant a29k simulator program
fe715d06
RP
458@code{ISSTIP}, also available from AMD.
459
460@table @code
461@item target udi @var{keyword}
462@kindex udi
d7d35f00 463Select the UDI interface to a remote a29k board or simulator, where
fe715d06
RP
464@var{keyword} is an entry in the AMD configuration file @file{udi_soc}.
465This file contains keyword entries which specify parameters used to
d7d35f00 466connect to a29k targets. If the @file{udi_soc} file is not in your
fe715d06
RP
467working directory, you must set the environment variable @samp{UDICONF}
468to its pathname.
469@end table
470
18fae2a8 471@node EB29K Remote
93928b60 472@subsection @value{GDBN} with a remote EB29K
18fae2a8
RP
473
474@cindex EB29K board
475@cindex running 29K programs
476
477To use @value{GDBN} from a Unix system to run programs on AMD's EB29K
478board in a PC, you must first connect a serial cable between the PC
479and a serial port on the Unix system. In the following, we assume
480you've hooked the cable between the PC's @file{COM1} port and
481@file{/dev/ttya} on the Unix system.
482
483@menu
ed447b95 484* Comms (EB29K):: Communications setup
18fae2a8 485* gdb-EB29K:: EB29K cross-debugging
ed447b95 486* Remote Log:: Remote log
18fae2a8
RP
487@end menu
488
489@node Comms (EB29K)
93928b60 490@subsubsection Communications setup
18fae2a8 491
ed447b95
RP
492The next step is to set up the PC's port, by doing something like this
493in DOS on the PC:
18fae2a8
RP
494
495@example
496C:\> MODE com1:9600,n,8,1,none
497@end example
498
499@noindent
500This example---run on an MS DOS 4.0 system---sets the PC port to 9600
501bps, no parity, eight data bits, one stop bit, and no ``retry'' action;
502you must match the communications parameters when establishing the Unix
503end of the connection as well.
504@c FIXME: Who knows what this "no retry action" crud from the DOS manual may
505@c mean? It's optional; leave it out? [email protected], 25feb91
506
507To give control of the PC to the Unix side of the serial line, type
508the following at the DOS console:
509
510@example
511C:\> CTTY com1
512@end example
513
514@noindent
515(Later, if you wish to return control to the DOS console, you can use
516the command @code{CTTY con}---but you must send it over the device that
517had control, in our example over the @file{COM1} serial line).
518
519From the Unix host, use a communications program such as @code{tip} or
520@code{cu} to communicate with the PC; for example,
521
522@example
523cu -s 9600 -l /dev/ttya
524@end example
525
526@noindent
527The @code{cu} options shown specify, respectively, the linespeed and the
528serial port to use. If you use @code{tip} instead, your command line
529may look something like the following:
530
531@example
532tip -9600 /dev/ttya
533@end example
534
535@noindent
fe715d06 536Your system may require a different name where we show
18fae2a8
RP
537@file{/dev/ttya} as the argument to @code{tip}. The communications
538parameters, including which port to use, are associated with the
539@code{tip} argument in the ``remote'' descriptions file---normally the
540system table @file{/etc/remote}.
541@c FIXME: What if anything needs doing to match the "n,8,1,none" part of
542@c the DOS side's comms setup? cu can support -o (odd
543@c parity), -e (even parity)---apparently no settings for no parity or
544@c for character size. Taken from stty maybe...? John points out tip
545@c can set these as internal variables, eg ~s parity=none; man stty
546@c suggests that it *might* work to stty these options with stdin or
547@c stdout redirected... [email protected], 25feb91
548
549@kindex EBMON
550Using the @code{tip} or @code{cu} connection, change the DOS working
551directory to the directory containing a copy of your 29K program, then
552start the PC program @code{EBMON} (an EB29K control program supplied
553with your board by AMD). You should see an initial display from
554@code{EBMON} similar to the one that follows, ending with the
555@code{EBMON} prompt @samp{#}---
556
557@example
558C:\> G:
559
560G:\> CD \usr\joe\work29k
561
562G:\USR\JOE\WORK29K> EBMON
563Am29000 PC Coprocessor Board Monitor, version 3.0-18
564Copyright 1990 Advanced Micro Devices, Inc.
565Written by Gibbons and Associates, Inc.
566
567Enter '?' or 'H' for help
568
569PC Coprocessor Type = EB29K
570I/O Base = 0x208
571Memory Base = 0xd0000
572
573Data Memory Size = 2048KB
574Available I-RAM Range = 0x8000 to 0x1fffff
575Available D-RAM Range = 0x80002000 to 0x801fffff
576
577PageSize = 0x400
578Register Stack Size = 0x800
579Memory Stack Size = 0x1800
580
581CPU PRL = 0x3
582Am29027 Available = No
583Byte Write Available = Yes
584
585# ~.
586@end example
587
588Then exit the @code{cu} or @code{tip} program (done in the example by
589typing @code{~.} at the @code{EBMON} prompt). @code{EBMON} will keep
590running, ready for @value{GDBN} to take over.
591
592For this example, we've assumed what is probably the most convenient
593way to make sure the same 29K program is on both the PC and the Unix
594system: a PC/NFS connection that establishes ``drive @code{G:}'' on the
595PC as a file system on the Unix host. If you do not have PC/NFS or
596something similar connecting the two systems, you must arrange some
597other way---perhaps floppy-disk transfer---of getting the 29K program
598from the Unix system to the PC; @value{GDBN} will @emph{not} download it over the
599serial line.
600
601@node gdb-EB29K
602@subsubsection EB29K cross-debugging
603
604Finally, @code{cd} to the directory containing an image of your 29K
605program on the Unix system, and start @value{GDBN}---specifying as argument the
606name of your 29K program:
607
608@example
609cd /usr/joe/work29k
610@value{GDBP} myfoo
611@end example
612
613Now you can use the @code{target} command:
614
615@example
616target amd-eb /dev/ttya 9600 MYFOO
617@c FIXME: test above 'target amd-eb' as spelled, with caps! caps are meant to
618@c emphasize that this is the name as seen by DOS (since I think DOS is
619@c single-minded about case of letters). [email protected], 25feb91
620@end example
621
622@noindent
623In this example, we've assumed your program is in a file called
624@file{myfoo}. Note that the filename given as the last argument to
625@code{target amd-eb} should be the name of the program as it appears to DOS.
626In our example this is simply @code{MYFOO}, but in general it can include
627a DOS path, and depending on your transfer mechanism may not resemble
628the name on the Unix side.
629
630At this point, you can set any breakpoints you wish; when you are ready
631to see your program run on the 29K board, use the @value{GDBN} command
632@code{run}.
633
634To stop debugging the remote program, use the @value{GDBN} @code{detach}
635command.
636
637To return control of the PC to its console, use @code{tip} or @code{cu}
638once again, after your @value{GDBN} session has concluded, to attach to
639@code{EBMON}. You can then type the command @code{q} to shut down
640@code{EBMON}, returning control to the DOS command-line interpreter.
641Type @code{CTTY con} to return command input to the main DOS console,
642and type @kbd{~.} to leave @code{tip} or @code{cu}.
643
644@node Remote Log
93928b60 645@subsubsection Remote log
18fae2a8
RP
646@kindex eb.log
647@cindex log file for EB29K
648
649The @code{target amd-eb} command creates a file @file{eb.log} in the
650current working directory, to help debug problems with the connection.
651@file{eb.log} records all the output from @code{EBMON}, including echoes
652of the commands sent to it. Running @samp{tail -f} on this file in
653another window often helps to understand trouble with @code{EBMON}, or
654unexpected events on the PC side of the connection.
655
656@end ifset
657
658@ifset STmm
659@node ST2000 Remote
660@subsection @value{GDBN} with a Tandem ST2000
661
662To connect your ST2000 to the host system, see the manufacturer's
663manual. Once the ST2000 is physically attached, you can run
664
665@example
666target st2000 @var{dev} @var{speed}
667@end example
668
669@noindent
670to establish it as your debugging environment.
671
672The @code{load} and @code{attach} commands are @emph{not} defined for
673this target; you must load your program into the ST2000 as you normally
674would for standalone operation. @value{GDBN} will read debugging information
675(such as symbols) from a separate, debugging version of the program
676available on your host computer.
677@c FIXME!! This is terribly vague; what little content is here is
678@c basically hearsay.
679
680@cindex ST2000 auxiliary commands
681These auxiliary @value{GDBN} commands are available to help you with the ST2000
682environment:
683
684@table @code
685@item st2000 @var{command}
686@kindex st2000 @var{cmd}
687@cindex STDBUG commands (ST2000)
688@cindex commands to STDBUG (ST2000)
689Send a @var{command} to the STDBUG monitor. See the manufacturer's
690manual for available commands.
691
692@item connect
693@cindex connect (to STDBUG)
694Connect the controlling terminal to the STDBUG command monitor. When
695you are done interacting with STDBUG, typing either of two character
696sequences will get you back to the @value{GDBN} command prompt:
697@kbd{@key{RET}~.} (Return, followed by tilde and period) or
698@kbd{@key{RET}~@key{C-d}} (Return, followed by tilde and control-D).
699@end table
700@end ifset
701
702@ifset VXWORKS
703@node VxWorks Remote
704@subsection @value{GDBN} and VxWorks
705@cindex VxWorks
706
707@value{GDBN} enables developers to spawn and debug tasks running on networked
708VxWorks targets from a Unix host. Already-running tasks spawned from
709the VxWorks shell can also be debugged. @value{GDBN} uses code that runs on
710both the UNIX host and on the VxWorks target. The program
711@code{@value{GDBP}} is installed and executed on the UNIX host.
712
713The following information on connecting to VxWorks was current when
714this manual was produced; newer releases of VxWorks may use revised
715procedures.
716
717The remote debugging interface (RDB) routines are installed and executed
718on the VxWorks target. These routines are included in the VxWorks library
719@file{rdb.a} and are incorporated into the system image when source-level
720debugging is enabled in the VxWorks configuration.
721
722@kindex INCLUDE_RDB
723If you wish, you can define @code{INCLUDE_RDB} in the VxWorks
724configuration file @file{configAll.h} to include the RDB interface
725routines and spawn the source debugging task @code{tRdbTask} when
726VxWorks is booted. For more information on configuring and remaking
727VxWorks, see the manufacturer's manual.
728@c VxWorks, see the @cite{VxWorks Programmer's Guide}.
729
730Once you have included the RDB interface in your VxWorks system image
731and set your Unix execution search path to find @value{GDBN}, you are ready
732to run @value{GDBN}. From your UNIX host, type:
733
ed447b95 734@example
18fae2a8 735% @value{GDBP}
ed447b95 736@end example
18fae2a8
RP
737
738@value{GDBN} will come up showing the prompt:
739
ed447b95 740@example
18fae2a8 741(@value{GDBP})
ed447b95 742@end example
18fae2a8
RP
743
744@menu
ed447b95
RP
745* VxWorks Connection:: Connecting to VxWorks
746* VxWorks Download:: VxWorks download
747* VxWorks Attach:: Running tasks
18fae2a8
RP
748@end menu
749
ed447b95 750@node VxWorks Connection
18fae2a8
RP
751@subsubsection Connecting to VxWorks
752
753The @value{GDBN} command @code{target} lets you connect to a VxWorks target on the
754network. To connect to a target whose host name is ``@code{tt}'', type:
755
ed447b95 756@example
18fae2a8 757(@value{GDBP}) target vxworks tt
ed447b95 758@end example
18fae2a8
RP
759
760@value{GDBN} will display a message similar to the following:
761
762@smallexample
763Attaching remote machine across net... Success!
764@end smallexample
765
766@value{GDBN} will then attempt to read the symbol tables of any object modules
767loaded into the VxWorks target since it was last booted. @value{GDBN} locates
768these files by searching the directories listed in the command search
93928b60 769path (@pxref{Environment, ,Your program's environment}); if it fails
18fae2a8
RP
770to find an object file, it will display a message such as:
771
ed447b95 772@example
18fae2a8 773prog.o: No such file or directory.
ed447b95 774@end example
18fae2a8
RP
775
776This will cause the @code{target} command to abort. When this happens,
777you should add the appropriate directory to the search path, with the
778@value{GDBN} command @code{path}, and execute the @code{target} command
779again.
780
ed447b95 781@node VxWorks Download
93928b60 782@subsubsection VxWorks download
18fae2a8
RP
783
784@cindex download to VxWorks
785If you have connected to the VxWorks target and you want to debug an
786object that has not yet been loaded, you can use the @value{GDBN} @code{load}
787command to download a file from UNIX to VxWorks incrementally. The
788object file given as an argument to the @code{load} command is actually
789opened twice: first by the VxWorks target in order to download the code,
790then by @value{GDBN} in order to read the symbol table. This can lead to
791problems if the current working directories on the two systems differ.
792It is simplest to set the working directory on both systems to the
793directory in which the object file resides, and then to reference the
794file by its name, without any path. Thus, to load a program
795@file{prog.o}, residing in @file{wherever/vw/demo/rdb}, on VxWorks type:
796
ed447b95 797@example
18fae2a8 798-> cd "wherever/vw/demo/rdb"
ed447b95 799@end example
18fae2a8
RP
800
801On @value{GDBN} type:
802
ed447b95 803@example
18fae2a8
RP
804(@value{GDBP}) cd wherever/vw/demo/rdb
805(@value{GDBP}) load prog.o
ed447b95 806@end example
18fae2a8
RP
807
808@value{GDBN} will display a response similar to the following:
809
810@smallexample
811Reading symbol data from wherever/vw/demo/rdb/prog.o... done.
812@end smallexample
813
814You can also use the @code{load} command to reload an object module
815after editing and recompiling the corresponding source file. Note that
816this will cause @value{GDBN} to delete all currently-defined breakpoints,
817auto-displays, and convenience variables, and to clear the value
818history. (This is necessary in order to preserve the integrity of
819debugger data structures that reference the target system's symbol
820table.)
821
ed447b95 822@node VxWorks Attach
93928b60 823@subsubsection Running tasks
18fae2a8
RP
824
825@cindex running VxWorks tasks
826You can also attach to an existing task using the @code{attach} command as
827follows:
828
ed447b95 829@example
18fae2a8 830(@value{GDBP}) attach @var{task}
ed447b95 831@end example
18fae2a8
RP
832
833@noindent
834where @var{task} is the VxWorks hexadecimal task ID. The task can be running
835or suspended when you attach to it. If running, it will be suspended at
836the time of attachment.
837@end ifset
838
839@ifset Hviii
1d7c3357
RP
840@node Hitachi H8 Remote
841@subsection @value{GDBN} and the Hitachi H8/300 and H8/500
842@value{GDBN} needs to know these things to talk to your H8/300 or H8/500:
18fae2a8
RP
843
844@enumerate
845@item
846that you want to use @samp{target hms}, the remote debugging
1d7c3357
RP
847interface for the H8/300 and H8/500 (this is the default when
848GDB is configured specifically for the H8/300 or H8/500);
18fae2a8
RP
849
850@item
1d7c3357
RP
851what serial device connects your host to your Hitachi board (the first
852serial device available on your host is the default);
18fae2a8
RP
853
854@ignore
855@c this is only for Unix hosts, not currently of interest.
856@item
857what speed to use over the serial device.
858@end ignore
859@end enumerate
860
18fae2a8
RP
861@ignore
862@c only for Unix hosts
1d7c3357
RP
863@kindex device
864@cindex serial device, H8/300 or H8/500
865Use the special @code{@value{GDBP}} command @samp{device @var{port}} if you
18fae2a8
RP
866need to explicitly set the serial device. The default @var{port} is the
867first available port on your host. This is only necessary on Unix
868hosts, where it is typically something like @file{/dev/ttya}.
869
870@kindex speed
1d7c3357
RP
871@cindex serial line speed, H8/300 or H8/500
872@code{@value{GDBP}} has another special command to set the communications
873speed: @samp{speed @var{bps}}. This command also is only used from Unix
874hosts; on DOS hosts, set the line speed as usual from outside GDB with
875the DOS @kbd{mode} command (for instance, @w{@samp{mode
18fae2a8
RP
876com2:9600,n,8,1,p}} for a 9600 bps connection).
877@end ignore
878
879@value{GDBN} depends on an auxiliary terminate-and-stay-resident program
1d7c3357 880called @code{asynctsr} to communicate with the development board
18fae2a8
RP
881through a PC serial port. You must also use the DOS @code{mode} command
882to set up the serial port on the DOS side.
883
884The following sample session illustrates the steps needed to start a
1d7c3357 885program under @value{GDBN} control on an H8/300. The example uses a sample
18fae2a8
RP
886H8/300 program called @file{t.x}.
887
1d7c3357 888First hook up your development board. In this example, we use a
18fae2a8
RP
889board attached to serial port @code{COM2}; if you use a different serial
890port, substitute its name in the argument of the @code{mode} command.
891When you call @code{asynctsr}, the auxiliary comms program used by the
892degugger, you give it just the numeric part of the serial port's name;
893for example, @samp{asyncstr 2} below runs @code{asyncstr} on
894@code{COM2}.
895
ed447b95 896@example
18fae2a8
RP
897(eg-C:\H8300\TEST) mode com2:9600,n,8,1,p
898
899Resident portion of MODE loaded
900
901COM2: 9600, n, 8, 1, p
902
903(eg-C:\H8300\TEST) asynctsr 2
ed447b95 904@end example
18fae2a8
RP
905
906@quotation
907@emph{Warning:} We have noticed a bug in PC-NFS that conflicts with
908@code{asynctsr}. If you also run PC-NFS on your DOS host, you may need to
909disable it, or even boot without it, to use @code{asynctsr} to control
1d7c3357 910your development board.
18fae2a8
RP
911@end quotation
912
1d7c3357
RP
913@kindex target hms
914Now that serial communications are set up, and the development board is
915connected, you can start up @value{GDBN}. Call @code{@value{GDBP}} with
916the name of your program as the argument. @code{@value{GDBP}} prompts
917you, as usual, with the prompt @samp{(@value{GDBP})}. Use two special
918commands to begin your debugging session: @samp{target hms} to specify
919cross-debugging to the Hitachi board, and the @code{load} command to
920download your program to the board. @code{load} displays the names of
921the program's sections, and a @samp{*} for each 2K of data downloaded.
922(If you want to refresh @value{GDBN} data on symbols or on the
923executable file without downloading, use the @value{GDBN} commands
924@code{file} or @code{symbol-file}. These commands, and @code{load}
925itself, are described in @ref{Files,,Commands to specify files}.)
18fae2a8
RP
926
927@smallexample
928(eg-C:\H8300\TEST) @value{GDBP} t.x
929GDB is free software and you are welcome to distribute copies
930 of it under certain conditions; type "show copying" to see
931 the conditions.
932There is absolutely no warranty for GDB; type "show warranty"
933for details.
934GDB @value{GDBVN}, Copyright 1992 Free Software Foundation, Inc...
935(gdb) target hms
936Connected to remote H8/300 HMS system.
937(gdb) load t.x
938.text : 0x8000 .. 0xabde ***********
939.data : 0xabde .. 0xad30 *
940.stack : 0xf000 .. 0xf014 *
941@end smallexample
942
943At this point, you're ready to run or debug your program. From here on,
944you can use all the usual @value{GDBN} commands. The @code{break} command
945sets breakpoints; the @code{run} command starts your program;
946@code{print} or @code{x} display data; the @code{continue} command
947resumes execution after stopping at a breakpoint. You can use the
948@code{help} command at any time to find out more about @value{GDBN} commands.
949
950Remember, however, that @emph{operating system} facilities aren't
1d7c3357
RP
951available on your development board; for example, if your program hangs,
952you can't send an interrupt---but you can press the @sc{reset} switch!
18fae2a8 953
1d7c3357 954Use the @sc{reset} button on the development board
18fae2a8
RP
955@itemize @bullet
956@item
957to interrupt your program (don't use @kbd{ctl-C} on the DOS host---it has
1d7c3357 958no way to pass an interrupt signal to the development board); and
18fae2a8
RP
959
960@item
961to return to the @value{GDBN} command prompt after your program finishes
962normally. The communications protocol provides no other way for @value{GDBN}
963to detect program completion.
964@end itemize
965
966In either case, @value{GDBN} will see the effect of a @sc{reset} on the
1d7c3357 967development board as a ``normal exit'' of your program.
18fae2a8
RP
968@end ifset
969
fe715d06
RP
970@ifset SIMS
971@node Simulator
972@subsection Simulated CPU target
18fae2a8 973
fe715d06
RP
974@ifset GENERIC
975@cindex simulator
976@cindex simulator, Z8000
1d7c3357 977@cindex simulator, H8/300 or H8/500
fe715d06 978@cindex Z8000 simulator
1d7c3357 979@cindex H8/300 or H8/500 simulator
fe715d06
RP
980@cindex CPU simulator
981For some configurations, @value{GDBN} includes a CPU simulator that you
982can use instead of a hardware CPU to debug your programs. Currently,
983a simulator is available when @value{GDBN} is configured to debug Zilog
1d7c3357 984Z8000 or Hitachi H8/300 or H8/500 targets.
fe715d06
RP
985@end ifset
986
987@ifclear GENERIC
988@ifset Hviii
1d7c3357
RP
989@cindex simulator, H8/300 or H8/500
990@cindex Hitachi H8/300 or H8/500 simulator
991When configured for debugging Hitachi H8/300 or H8/500 targets,
992@value{GDBN} includes an H8/300 or H8/500 CPU simulator.
fe715d06
RP
993@end ifset
994
995@ifset ZviiiK
18fae2a8
RP
996@cindex simulator, Z8000
997@cindex Zilog Z8000 simulator
e55d2728
RP
998When configured for debugging Zilog Z8000 targets, @value{GDBN} includes
999a Z8000 simulator.
fe715d06
RP
1000@end ifset
1001@end ifclear
1002
1003@ifset ZviiiK
1004For the Z8000 family, @samp{target sim} simulates either the Z8002 (the
1005unsegmented variant of the Z8000 architecture) or the Z8001 (the
1006segmented variant). The simulator recognizes which architecture is
1007appropriate by inspecting the object code.
1008@end ifset
18fae2a8
RP
1009
1010@table @code
e55d2728
RP
1011@item target sim
1012@kindex sim
1013@kindex target sim
fe715d06
RP
1014Debug programs on a simulated CPU
1015@ifset GENERIC
1016(which CPU depends on the @value{GDBN} configuration)
1017@end ifset
18fae2a8
RP
1018@end table
1019
1020@noindent
fe715d06
RP
1021After specifying this target, you can debug programs for the simulated
1022CPU in the same style as programs for your host computer; use the
1023@code{file} command to load a new program image, the @code{run} command
1024to run your program, and so on.
18fae2a8 1025
fe715d06 1026As well as making available all the usual machine registers (see
18fae2a8
RP
1027@code{info reg}), this debugging target provides three additional items
1028of information as specially named registers:
1029
1030@table @code
1031@item cycles
1032Counts clock-ticks in the simulator.
1033
1034@item insts
1035Counts instructions run in the simulator.
1036
1037@item time
1038Execution time in 60ths of a second.
1039@end table
1040
1041You can refer to these values in @value{GDBN} expressions with the usual
1042conventions; for example, @w{@samp{b fputc if $cycles>5000}} sets a
1043conditional breakpoint that will suspend only after at least 5000
1044simulated clock ticks.
1045@end ifset
This page took 0.164875 seconds and 4 git commands to generate.