[Go to CFHT Home Page] Man Pages
Back to Software Index  BORDER=0Manpage Top Level
    adbgen(1M) manual page Table of Contents

Name

adbgen - generate adb script

Synopsis

/usr/lib/adb/adbgen filename.adb ...

Availability

SUNWesu

Description

adbgen makes it possible to write adb(1) scripts that do not contain hard-coded dependencies on structure member offsets. The input to adbgen is a file named filename.adb which contains header information, then a null line, then the name of a structure, and finally an adb script. adbgen only deals with one structure per file; all member names are assumed to be in this structure. The output of adbgen is an adb script in filename. adbgen operates by generating a C program which determines structure member offsets and sizes, which in turn generate the adb script.

The header lines, up to the null line, are copied verbatim into the generated C program. Typically these are #include statements, which include the headers containing the relevant structure declarations.

The adb script part may contain any valid adb commands (see adb(1) ), and may also contain adbgen requests, each enclosed in {}s. Request types are:

adbgen keeps track of the movement of the adb dot and generates adb code to move forward or backward as necessary before printing any structure member in a script. adbgen’s model of the behavior of adb’s dot is simple: it is assumed that the first line of the script is of the form struct_address/adb text and that subsequent lines are of the form +/adb text. The adb dot then moves in a sane fashion. adbgen does not check the script to ensure that these limitations are met. adbgen also checks the size of the structure member against the size of the adb format code and warns you if they are not equal.

Examples

If there were an include file x.h which contained

struct x {
char    *x_cp;
char    x_c;
int    x_i;
};

then an adbgen file (call it script.adb) to print the file x.h would be:


#include "x.h"

x
./"x_cp"16t"x_c"8t"x_i"n{x_cp,X}{x_c,C}{x_i,D}

After running adbgen the output file script would contain:

To invoke the script you would type:


example% adb programx$<scriptFiles

/usr/platform/platform-name/lib/adb/*
platform-specific adb scripts for debugging the kernel
/usr/lib/adb/*
adb scripts for debugging the kernel

See Also

adb(1) , kadb(1M)

Diagnostics

Warnings are given about structure member sizes not equal to adb format items and about badly formatted requests. The C compiler complains if you reference a structure member that does not exist. It also complains about an ampersand before array names; these complaints may be ignored.

Notes

platform-name can be found using the -i option of uname(1) .

Bugs

adb syntax is ugly; there should be a higher level interface for generating scripts.

Structure members which are bit fields cannot be handled because C will not give the address of a bit field. The address is needed to determine the offset.


Table of Contents