| | man : gdbint
File: gdbint.info, Node: Top, Next: Requirements, Up: (dir)
Scope of this Document
**********************
This document documents the internals of the GNU debugger, GDB. It
includes description of GDB's key algorithms and operations, as well as
the mechanisms that adapt GDB to specific hosts and targets.
* Menu:
* Requirements::
* Overall Structure::
* Algorithms::
* User Interface::
* libgdb::
* Symbol Handling::
* Language Support::
* Host Definition::
* Target Architecture Definition::
* Target Vector Definition::
* Native Debugging::
* Support Libraries::
* Coding::
* Porting GDB::
* Versions and Branches::
* Releasing GDB::
* Testsuite::
* Hints::
* GDB Observers:: GDB Currently available observers
* GNU Free Documentation License:: The license for this documentation
* Index::
File: gdbint.info, Node: Requirements, Next: Overall Structure, Prev: Top, Up: Top
1 Requirements
**************
Before diving into the internals, you should understand the formal
requirements and other expectations for GDB. Although some of these
may seem obvious, there have been proposals for GDB that have run
counter to these requirements.
First of all, GDB is a debugger. It's not designed to be a front
panel for embedded systems. It's not a text editor. It's not a shell.
It's not a programming environment.
GDB is an interactive tool. Although a batch mode is available,
GDB's primary role is to interact with a human programmer.
GDB should be responsive to the user. A programmer hot on the trail
of a nasty bug, and operating under a looming deadline, is going to be
very impatient of everything, including the response time to debugger
commands.
GDB should be relatively permissive, such as for expressions. While
the compiler should be picky (or have the option to be made picky),
since source code lives for a long time usually, the programmer doing
debugging shouldn't be spending time figuring out to mollify the
debugger.
GDB will be called upon to deal with really large programs.
Executable sizes of 50 to 100 megabytes occur regularly, and we've
heard reports of programs approaching 1 gigabyte in size.
GDB should be able to run everywhere. No other debugger is
available for even half as many configurations as GDB supports.
File: gdbint.info, Node: Overall Structure, Next: Algorithms, Prev: Requirements, Up: Top
2 Overall Structure
*******************
GDB consists of three major subsystems: user interface, symbol handling
(the "symbol side"), and target system handling (the "target side").
The user interface consists of several actual interfaces, plus
supporting code.
The symbol side consists of object file readers, debugging info
interpreters, symbol table management, source language expression
parsing, type and value printing.
The target side consists of execution control, stack frame analysis,
and physical target manipulation.
The target side/symbol side division is not formal, and there are a
number of exceptions. For instance, core file support involves symbolic
elements (the basic core file reader is in BFD) and target elements (it
supplies the contents of memory and the values of registers). Instead,
this division is useful for understanding how the minor subsystems
should fit together.
2.1 The Symbol Side
===================
The symbolic side of GDB can be thought of as "everything you can do in
GDB without having a live program running". For instance, you can look
at the types of variables, and evaluate many kinds of expressions.
2.2 The Target Side
===================
The target side of GDB is the "bits and bytes manipulator". Although
it may make reference to symbolic info here and there, most of the
target side will run with only a stripped executable available--or even
no executable at all, in remote debugging cases.
Operations such as disassembly, stack frame crawls, and register
display, are able to work with no symbolic info at all. In some cases,
such as disassembly, GDB will use symbolic info to present addresses
relative to symbols rather than as raw numbers, but it will work either
way.
2.3 Configurations
==================
"Host" refers to attributes of the system where GDB runs. "Target"
refers to the system where the program being debugged executes. In
most cases they are the same machine, in which case a third type of
"Native" attributes come into play.
Defines and include files needed to build on the host are host
support. Examples are tty support, system defined types, host byte
order, host float format.
Defines and information needed to handle the target format are target
dependent. Examples are the stack frame format, instruction set,
breakpoint instruction, registers, and how to set up and tear down the
stack to call a function.
Information that is only needed when the host and target are the
same, is native dependent. One example is Unix child process support;
if the host and target are not the same, doing a fork to start the
target process is a bad idea. The various macros needed for finding the
registers in the `upage', running `ptrace', and such are all in the
native-dependent files.
Another example of native-dependent code is support for features that
are really part of the target environment, but which require `#include'
files that are only available on the host system. Core file handling
and `setjmp' handling are two common cases.
When you want to make GDB work "native" on a particular machine, you
have to include all three kinds of information.
File: gdbint.info, Node: Algorithms, Next: User Interface, Prev: Overall Structure, Up: Top
3 Algorithms
************
GDB uses a number of debugging-specific algorithms. They are often not
very complicated, but get lost in the thicket of special cases and
real-world issues. This chapter describes the basic algorithms and
mentions some of the specific target definitions that they use.
3.1 Frames
==========
A frame is a construct that GDB uses to keep track of calling and
called functions.
`FRAME_FP' in the machine description has no meaning to the
machine-independent part of GDB, except that it is used when setting up
a new frame from scratch, as follows:
create_new_frame (read_register (DEPRECATED_FP_REGNUM), read_pc ()));
Other than that, all the meaning imparted to `DEPRECATED_FP_REGNUM'
is imparted by the machine-dependent code. So, `DEPRECATED_FP_REGNUM'
can have any value that is convenient for the code that creates new
frames. (`create_new_frame' calls `DEPRECATED_INIT_EXTRA_FRAME_INFO'
if it is defined; that is where you should use the
`DEPRECATED_FP_REGNUM' value, if your frames are nonstandard.)
Given a GDB frame, define `DEPRECATED_FRAME_CHAIN' to determine the
address of the calling function's frame. This will be used to create a
new GDB frame struct, and then `DEPRECATED_INIT_EXTRA_FRAME_INFO' and
`DEPRECATED_INIT_FRAME_PC' will be called for the new frame.
3.2 Breakpoint Handling
=======================
In general, a breakpoint is a user-designated location in the program
where the user wants to regain control if program execution ever reaches
that location.
There are two main ways to implement breakpoints; either as
"hardware" breakpoints or as "software" breakpoints.
Hardware breakpoints are sometimes available as a builtin debugging
features with some chips. Typically these work by having dedicated
register into which the breakpoint address may be stored. If the PC
(shorthand for "program counter") ever matches a value in a breakpoint
registers, the CPU raises an exception and reports it to GDB.
Another possibility is when an emulator is in use; many emulators
include circuitry that watches the address lines coming out from the
processor, and force it to stop if the address matches a breakpoint's
address.
A third possibility is that the target already has the ability to do
breakpoints somehow; for instance, a ROM monitor may do its own
software breakpoints. So although these are not literally "hardware
breakpoints", from GDB's point of view they work the same; GDB need not
do anything more than set the breakpoint and wait for something to
happen.
Since they depend on hardware resources, hardware breakpoints may be
limited in number; when the user asks for more, GDB will start trying
to set software breakpoints. (On some architectures, notably the
32-bit x86 platforms, GDB cannot always know whether there's enough
hardware resources to insert all the hardware breakpoints and
watchpoints. On those platforms, GDB prints an error message only when
the program being debugged is continued.)
Software breakpoints require GDB to do somewhat more work. The
basic theory is that GDB will replace a program instruction with a
trap, illegal divide, or some other instruction that will cause an
exception, and then when it's encountered, GDB will take the exception
and stop the program. When the user says to continue, GDB will restore
the original instruction, single-step, re-insert the trap, and continue
on.
Since it literally overwrites the program being tested, the program
area must be writable, so this technique won't work on programs in ROM.
It can also distort the behavior of programs that examine themselves,
although such a situation would be highly unusual.
Also, the software breakpoint instruction should be the smallest
size of instruction, so it doesn't overwrite an instruction that might
be a jump target, and cause disaster when the program jumps into the
middle of the breakpoint instruction. (Strictly speaking, the
breakpoint must be no larger than the smallest interval between
instructions that may be jump targets; perhaps there is an architecture
where only even-numbered instructions may jumped to.) Note that it's
possible for an instruction set not to have any instructions usable for
a software breakpoint, although in practice only the ARC has failed to
define such an instruction.
The basic definition of the software breakpoint is the macro
`BREAKPOINT'.
Basic breakpoint object handling is in `breakpoint.c'. However,
much of the interesting breakpoint action is in `infrun.c'.
3.3 Single Stepping
===================
3.4 Signal Handling
===================
3.5 Thread Handling
===================
3.6 Inferior Function Calls
===========================
3.7 Longjmp Support
===================
GDB has support for figuring out that the target is doing a `longjmp'
and for stopping at the target of the jump, if we are stepping. This
is done with a few specialized internal breakpoints, which are visible
in the output of the `maint info breakpoint' command.
To make this work, you need to define a macro called
`GET_LONGJMP_TARGET', which will examine the `jmp_buf' structure and
extract the longjmp target address. Since `jmp_buf' is target
specific, you will need to define it in the appropriate `tm-TARGET.h'
file. Look in `tm-sun4os4.h' and `sparc-tdep.c' for examples of how to
do this.
3.8 Watchpoints
===============
Watchpoints are a special kind of breakpoints (*note breakpoints:
Algorithms.) which break when data is accessed rather than when some
instruction is executed. When you have data which changes without your
knowing what code does that, watchpoints are the silver bullet to hunt
down and kill such bugs.
Watchpoints can be either hardware-assisted or not; the latter type
is known as "software watchpoints." GDB always uses hardware-assisted
watchpoints if they are available, and falls back on software
watchpoints otherwise. Typical situations where GDB will use software
watchpoints are:
* The watched memory region is too large for the underlying hardware
watchpoint support. For example, each x86 debug register can
watch up to 4 bytes of memory, so trying to watch data structures
whose size is more than 16 bytes will cause GDB to use software
watchpoints.
* The value of the expression to be watched depends on data held in
registers (as opposed to memory).
* Too many different watchpoints requested. (On some architectures,
this situation is impossible to detect until the debugged program
is resumed.) Note that x86 debug registers are used both for
hardware breakpoints and for watchpoints, so setting too many
hardware breakpoints might cause watchpoint insertion to fail.
* No hardware-assisted watchpoints provided by the target
implementation.
Software watchpoints are very slow, since GDB needs to single-step
the program being debugged and test the value of the watched
expression(s) after each instruction. The rest of this section is
mostly irrelevant for software watchpoints.
GDB uses several macros and primitives to support hardware
watchpoints:
`TARGET_HAS_HARDWARE_WATCHPOINTS'
If defined, the target supports hardware watchpoints.
`TARGET_CAN_USE_HARDWARE_WATCHPOINT (TYPE, COUNT, OTHER)'
Return the number of hardware watchpoints of type TYPE that are
possible to be set. The value is positive if COUNT watchpoints of
this type can be set, zero if setting watchpoints of this type is
not supported, and negative if COUNT is more than the maximum
number of watchpoints of type TYPE that can be set. OTHER is
non-zero if other types of watchpoints are currently enabled (there
are architectures which cannot set watchpoints of different types
at the same time).
`TARGET_REGION_OK_FOR_HW_WATCHPOINT (ADDR, LEN)'
Return non-zero if hardware watchpoints can be used to watch a
region whose address is ADDR and whose length in bytes is LEN.
`TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT (SIZE)'
Return non-zero if hardware watchpoints can be used to watch a
region whose size is SIZE. GDB only uses this macro as a
fall-back, in case `TARGET_REGION_OK_FOR_HW_WATCHPOINT' is not
defined.
`TARGET_DISABLE_HW_WATCHPOINTS (PID)'
Disables watchpoints in the process identified by PID. This is
used, e.g., on HP-UX which provides operations to disable and
enable the page-level memory protection that implements hardware
watchpoints on that platform.
`TARGET_ENABLE_HW_WATCHPOINTS (PID)'
Enables watchpoints in the process identified by PID. This is
used, e.g., on HP-UX which provides operations to disable and
enable the page-level memory protection that implements hardware
watchpoints on that platform.
`target_insert_watchpoint (ADDR, LEN, TYPE)'
`target_remove_watchpoint (ADDR, LEN, TYPE)'
Insert or remove a hardware watchpoint starting at ADDR, for LEN
bytes. TYPE is the watchpoint type, one of the possible values of
the enumerated data type `target_hw_bp_type', defined by
`breakpoint.h' as follows:
enum target_hw_bp_type
{
hw_write = 0, /* Common (write) HW watchpoint */
hw_read = 1, /* Read HW watchpoint */
hw_access = 2, /* Access (read or write) HW watchpoint */
hw_execute = 3 /* Execute HW breakpoint */
};
These two macros should return 0 for success, non-zero for failure.
`target_remove_hw_breakpoint (ADDR, SHADOW)'
`target_insert_hw_breakpoint (ADDR, SHADOW)'
Insert or remove a hardware-assisted breakpoint at address ADDR.
Returns zero for success, non-zero for failure. SHADOW is the
real contents of the byte where the breakpoint has been inserted;
it is generally not valid when hardware breakpoints are used, but
since no other code touches these values, the implementations of
the above two macros can use them for their internal purposes.
`target_stopped_data_address (ADDR_P)'
If the inferior has some watchpoint that triggered, place the
address associated with the watchpoint at the location pointed to
by ADDR_P and return non-zero. Otherwise, return zero.
`HAVE_STEPPABLE_WATCHPOINT'
If defined to a non-zero value, it is not necessary to disable a
watchpoint to step over it.
`HAVE_NONSTEPPABLE_WATCHPOINT'
If defined to a non-zero value, GDB should disable a watchpoint to
step the inferior over it.
`HAVE_CONTINUABLE_WATCHPOINT'
If defined to a non-zero value, it is possible to continue the
inferior after a watchpoint has been hit.
`CANNOT_STEP_HW_WATCHPOINTS'
If this is defined to a non-zero value, GDB will remove all
watchpoints before stepping the inferior.
`STOPPED_BY_WATCHPOINT (WAIT_STATUS)'
Return non-zero if stopped by a watchpoint. WAIT_STATUS is of the
type `struct target_waitstatus', defined by `target.h'.
3.8.1 x86 Watchpoints
---------------------
The 32-bit Intel x86 (a.k.a. ia32) processors feature special debug
registers designed to facilitate debugging. GDB provides a generic
library of functions that x86-based ports can use to implement support
for watchpoints and hardware-assisted breakpoints. This subsection
documents the x86 watchpoint facilities in GDB.
To use the generic x86 watchpoint support, a port should do the
following:
* Define the macro `I386_USE_GENERIC_WATCHPOINTS' somewhere in the
target-dependent headers.
* Include the `config/i386/nm-i386.h' header file _after_ defining
`I386_USE_GENERIC_WATCHPOINTS'.
* Add `i386-nat.o' to the value of the Make variable `NATDEPFILES'
(*note NATDEPFILES: Native Debugging.) or `TDEPFILES' (*note
TDEPFILES: Target Architecture Definition.).
* Provide implementations for the `I386_DR_LOW_*' macros described
below. Typically, each macro should call a target-specific
function which does the real work.
The x86 watchpoint support works by maintaining mirror images of the
debug registers. Values are copied between the mirror images and the
real debug registers via a set of macros which each target needs to
provide:
`I386_DR_LOW_SET_CONTROL (VAL)'
Set the Debug Control (DR7) register to the value VAL.
`I386_DR_LOW_SET_ADDR (IDX, ADDR)'
Put the address ADDR into the debug register number IDX.
`I386_DR_LOW_RESET_ADDR (IDX)'
Reset (i.e. zero out) the address stored in the debug register
number IDX.
`I386_DR_LOW_GET_STATUS'
Return the value of the Debug Status (DR6) register. This value is
used immediately after it is returned by `I386_DR_LOW_GET_STATUS',
so as to support per-thread status register values.
For each one of the 4 debug registers (whose indices are from 0 to 3)
that store addresses, a reference count is maintained by GDB, to allow
sharing of debug registers by several watchpoints. This allows users
to define several watchpoints that watch the same expression, but with
different conditions and/or commands, without wasting debug registers
which are in short supply. GDB maintains the reference counts
internally, targets don't have to do anything to use this feature.
The x86 debug registers can each watch a region that is 1, 2, or 4
bytes long. The ia32 architecture requires that each watched region be
appropriately aligned: 2-byte region on 2-byte boundary, 4-byte region
on 4-byte boundary. However, the x86 watchpoint support in GDB can
watch unaligned regions and regions larger than 4 bytes (up to 16
bytes) by allocating several debug registers to watch a single region.
This allocation of several registers per a watched region is also done
automatically without target code intervention.
The generic x86 watchpoint support provides the following API for the
GDB's application code:
`i386_region_ok_for_watchpoint (ADDR, LEN)'
The macro `TARGET_REGION_OK_FOR_HW_WATCHPOINT' is set to call this
function. It counts the number of debug registers required to
watch a given region, and returns a non-zero value if that number
is less than 4, the number of debug registers available to x86
processors.
`i386_stopped_data_address (ADDR_P)'
The target function `target_stopped_data_address' is set to call
this function. This function examines the breakpoint condition
bits in the DR6 Debug Status register, as returned by the
`I386_DR_LOW_GET_STATUS' macro, and returns the address associated
with the first bit that is set in DR6.
`i386_stopped_by_watchpoint (void)'
The macro `STOPPED_BY_WATCHPOINT' is set to call this function.
The argument passed to `STOPPED_BY_WATCHPOINT' is ignored. This
function examines the breakpoint condition bits in the DR6 Debug
Status register, as returned by the `I386_DR_LOW_GET_STATUS'
macro, and returns true if any bit is set. Otherwise, false is
returned.
`i386_insert_watchpoint (ADDR, LEN, TYPE)'
`i386_remove_watchpoint (ADDR, LEN, TYPE)'
Insert or remove a watchpoint. The macros
`target_insert_watchpoint' and `target_remove_watchpoint' are set
to call these functions. `i386_insert_watchpoint' first looks for
a debug register which is already set to watch the same region for
the same access types; if found, it just increments the reference
count of that debug register, thus implementing debug register
sharing between watchpoints. If no such register is found, the
function looks for a vacant debug register, sets its mirrored
value to ADDR, sets the mirrored value of DR7 Debug Control
register as appropriate for the LEN and TYPE parameters, and then
passes the new values of the debug register and DR7 to the
inferior by calling `I386_DR_LOW_SET_ADDR' and
`I386_DR_LOW_SET_CONTROL'. If more than one debug register is
required to cover the given region, the above process is repeated
for each debug register.
`i386_remove_watchpoint' does the opposite: it resets the address
in the mirrored value of the debug register and its read/write and
length bits in the mirrored value of DR7, then passes these new
values to the inferior via `I386_DR_LOW_RESET_ADDR' and
`I386_DR_LOW_SET_CONTROL'. If a register is shared by several
watchpoints, each time a `i386_remove_watchpoint' is called, it
decrements the reference count, and only calls
`I386_DR_LOW_RESET_ADDR' and `I386_DR_LOW_SET_CONTROL' when the
count goes to zero.
`i386_insert_hw_breakpoint (ADDR, SHADOW'
`i386_remove_hw_breakpoint (ADDR, SHADOW)'
These functions insert and remove hardware-assisted breakpoints.
The macros `target_insert_hw_breakpoint' and
`target_remove_hw_breakpoint' are set to call these functions.
These functions work like `i386_insert_watchpoint' and
`i386_remove_watchpoint', respectively, except that they set up
the debug registers to watch instruction execution, and each
hardware-assisted breakpoint always requires exactly one debug
register.
`i386_stopped_by_hwbp (void)'
This function returns non-zero if the inferior has some watchpoint
or hardware breakpoint that triggered. It works like
`i386_stopped_data_address', except that it doesn't record the
address whose watchpoint triggered.
`i386_cleanup_dregs (void)'
This function clears all the reference counts, addresses, and
control bits in the mirror images of the debug registers. It
doesn't affect the actual debug registers in the inferior process.
*Notes:*
1. x86 processors support setting watchpoints on I/O reads or writes.
However, since no target supports this (as of March 2001), and
since `enum target_hw_bp_type' doesn't even have an enumeration
for I/O watchpoints, this feature is not yet available to GDB
running on x86.
2. x86 processors can enable watchpoints locally, for the current task
only, or globally, for all the tasks. For each debug register,
there's a bit in the DR7 Debug Control register that determines
whether the associated address is watched locally or globally. The
current implementation of x86 watchpoint support in GDB always
sets watchpoints to be locally enabled, since global watchpoints
might interfere with the underlying OS and are probably
unavailable in many platforms.
3.9 Observing changes in GDB internals
======================================
In order to function properly, several modules need to be notified when
some changes occur in the GDB internals. Traditionally, these modules
have relied on several paradigms, the most common ones being hooks and
gdb-events. Unfortunately, none of these paradigms was versatile
enough to become the standard notification mechanism in GDB. The fact
that they only supported one "client" was also a strong limitation.
A new paradigm, based on the Observer pattern of the `Design
Patterns' book, has therefore been implemented. The goal was to provide
a new interface overcoming the issues with the notification mechanisms
previously available. This new interface needed to be strongly typed,
easy to extend, and versatile enough to be used as the standard
interface when adding new notifications.
See *Note GDB Observers:: for a brief description of the observers
currently implemented in GDB. The rationale for the current
implementation is also briefly discussed.
File: gdbint.info, Node: User Interface, Next: libgdb, Prev: Algorithms, Up: Top
4 User Interface
****************
GDB has several user interfaces. Although the command-line interface
is the most common and most familiar, there are others.
4.1 Command Interpreter
=======================
The command interpreter in GDB is fairly simple. It is designed to
allow for the set of commands to be augmented dynamically, and also has
a recursive subcommand capability, where the first argument to a
command may itself direct a lookup on a different command list.
For instance, the `set' command just starts a lookup on the
`setlist' command list, while `set thread' recurses to the
`set_thread_cmd_list'.
To add commands in general, use `add_cmd'. `add_com' adds to the
main command list, and should be used for those commands. The usual
place to add commands is in the `_initialize_XYZ' routines at the ends
of most source files.
To add paired `set' and `show' commands, use `add_setshow_cmd' or
`add_setshow_cmd_full'. The former is a slightly simpler interface
which is useful when you don't need to further modify the new command
structures, while the latter returns the new command structures for
manipulation.
Before removing commands from the command set it is a good idea to
deprecate them for some time. Use `deprecate_cmd' on commands or
aliases to set the deprecated flag. `deprecate_cmd' takes a `struct
cmd_list_element' as it's first argument. You can use the return value
from `add_com' or `add_cmd' to deprecate the command immediately after
it is created.
The first time a command is used the user will be warned and offered
a replacement (if one exists). Note that the replacement string passed
to `deprecate_cmd' should be the full name of the command, i.e. the
entire string the user should type at the command line.
4.2 UI-Independent Output--the `ui_out' Functions
=================================================
The `ui_out' functions present an abstraction level for the GDB output
code. They hide the specifics of different user interfaces supported
by GDB, and thus free the programmer from the need to write several
versions of the same code, one each for every UI, to produce output.
4.2.1 Overview and Terminology
------------------------------
In general, execution of each GDB command produces some sort of output,
and can even generate an input request.
Output can be generated for the following purposes:
* to display a _result_ of an operation;
* to convey _info_ or produce side-effects of a requested operation;
* to provide a _notification_ of an asynchronous event (including
progress indication of a prolonged asynchronous operation);
* to display _error messages_ (including warnings);
* to show _debug data_;
* to _query_ or prompt a user for input (a special case).
This section mainly concentrates on how to build result output,
although some of it also applies to other kinds of output.
Generation of output that displays the results of an operation
involves one or more of the following:
* output of the actual data
* formatting the output as appropriate for console output, to make it
easily readable by humans
* machine oriented formatting-a more terse formatting to allow for
easy parsing by programs which read GDB's output
* annotation, whose purpose is to help legacy GUIs to identify
interesting parts in the output
The `ui_out' routines take care of the first three aspects.
Annotations are provided by separate annotation routines. Note that use
of annotations for an interface between a GUI and GDB is deprecated.
Output can be in the form of a single item, which we call a "field";
a "list" consisting of identical fields; a "tuple" consisting of
non-identical fields; or a "table", which is a tuple consisting of a
header and a body. In a BNF-like form:
`<table> ==>'
`<header> <body>'
`<header> ==>'
`{ <column> }'
`<column> ==>'
`<width> <alignment> <title>'
`<body> ==>'
`{<row>}'
4.2.2 General Conventions
-------------------------
Most `ui_out' routines are of type `void', the exceptions are
`ui_out_stream_new' (which returns a pointer to the newly created
object) and the `make_cleanup' routines.
The first parameter is always the `ui_out' vector object, a pointer
to a `struct ui_out'.
The FORMAT parameter is like in `printf' family of functions. When
it is present, there must also be a variable list of arguments
sufficient used to satisfy the `%' specifiers in the supplied format.
When a character string argument is not used in a `ui_out' function
call, a `NULL' pointer has to be supplied instead.
4.2.3 Table, Tuple and List Functions
-------------------------------------
This section introduces `ui_out' routines for building lists, tuples
and tables. The routines to output the actual data items (fields) are
presented in the next section.
To recap: A "tuple" is a sequence of "fields", each field containing
information about an object; a "list" is a sequence of fields where
each field describes an identical object.
Use the "table" functions when your output consists of a list of
rows (tuples) and the console output should include a heading. Use this
even when you are listing just one object but you still want the header.
Tables can not be nested. Tuples and lists can be nested up to a
maximum of five levels.
The overall structure of the table output code is something like
this:
ui_out_table_begin
ui_out_table_header
...
ui_out_table_body
ui_out_tuple_begin
ui_out_field_*
...
ui_out_tuple_end
...
ui_out_table_end
Here is the description of table-, tuple- and list-related `ui_out'
functions:
-- Function: void ui_out_table_begin (struct ui_out *UIOUT, int
NBROFCOLS, int NR_ROWS, const char *TBLID)
The function `ui_out_table_begin' marks the beginning of the output
of a table. It should always be called before any other `ui_out'
function for a given table. NBROFCOLS is the number of columns in
the table. NR_ROWS is the number of rows in the table. TBLID is
an optional string identifying the table. The string pointed to
by TBLID is copied by the implementation of `ui_out_table_begin',
so the application can free the string if it was `malloc'ed.
The companion function `ui_out_table_end', described below, marks
the end of the table's output.
-- Function: void ui_out_table_header (struct ui_out *UIOUT, int
WIDTH, enum ui_align ALIGNMENT, const char *COLHDR)
`ui_out_table_header' provides the header information for a single
table column. You call this function several times, one each for
every column of the table, after `ui_out_table_begin', but before
`ui_out_table_body'.
The value of WIDTH gives the column width in characters. The
value of ALIGNMENT is one of `left', `center', and `right', and it
specifies how to align the header: left-justify, center, or
right-justify it. COLHDR points to a string that specifies the
column header; the implementation copies that string, so column
header strings in `malloc'ed storage can be freed after the call.
-- Function: void ui_out_table_body (struct ui_out *UIOUT)
This function delimits the table header from the table body.
-- Function: void ui_out_table_end (struct ui_out *UIOUT)
This function signals the end of a table's output. It should be
called after the table body has been produced by the list and
field output functions.
There should be exactly one call to `ui_out_table_end' for each
call to `ui_out_table_begin', otherwise the `ui_out' functions
will signal an internal error.
The output of the tuples that represent the table rows must follow
the call to `ui_out_table_body' and precede the call to
`ui_out_table_end'. You build a tuple by calling `ui_out_tuple_begin'
and `ui_out_tuple_end', with suitable calls to functions which actually
output fields between them.
-- Function: void ui_out_tuple_begin (struct ui_out *UIOUT, const char
*ID)
This function marks the beginning of a tuple output. ID points to
an optional string that identifies the tuple; it is copied by the
implementation, and so strings in `malloc'ed storage can be freed
after the call.
-- Function: void ui_out_tuple_end (struct ui_out *UIOUT)
This function signals an end of a tuple output. There should be
exactly one call to `ui_out_tuple_end' for each call to
`ui_out_tuple_begin', otherwise an internal GDB error will be
signaled.
-- Function: struct cleanup *make_cleanup_ui_out_tuple_begin_end
(struct ui_out *UIOUT, const char *ID)
This function first opens the tuple and then establishes a cleanup
(*note Cleanups: Coding.) to close the tuple. It provides a
convenient and correct implementation of the non-portable(1) code
sequence:
struct cleanup *old_cleanup;
ui_out_tuple_begin (uiout, "...");
old_cleanup = make_cleanup ((void(*)(void *)) ui_out_tuple_end,
uiout);
-- Function: void ui_out_list_begin (struct ui_out *UIOUT, const char
*ID)
This function marks the beginning of a list output. ID points to
an optional string that identifies the list; it is copied by the
implementation, and so strings in `malloc'ed storage can be freed
after the call.
-- Function: void ui_out_list_end (struct ui_out *UIOUT)
This function signals an end of a list output. There should be
exactly one call to `ui_out_list_end' for each call to
`ui_out_list_begin', otherwise an internal GDB error will be
signaled.
-- Function: struct cleanup *make_cleanup_ui_out_list_begin_end
(struct ui_out *UIOUT, const char *ID)
Similar to `make_cleanup_ui_out_tuple_begin_end', this function
opens a list and then establishes cleanup (*note Cleanups: Coding.)
that will close the list.list.
4.2.4 Item Output Functions
---------------------------
The functions described below produce output for the actual data items,
or fields, which contain information about the object.
Choose the appropriate function accordingly to your particular needs.
-- Function: void ui_out_field_fmt (struct ui_out *UIOUT, char
*FLDNAME, char *FORMAT, ...)
This is the most general output function. It produces the
representation of the data in the variable-length argument list
according to formatting specifications in FORMAT, a `printf'-like
format string. The optional argument FLDNAME supplies the name of
the field. The data items themselves are supplied as additional
arguments after FORMAT.
This generic function should be used only when it is not possible
to use one of the specialized versions (see below).
-- Function: void ui_out_field_int (struct ui_out *UIOUT, const char
*FLDNAME, int VALUE)
This function outputs a value of an `int' variable. It uses the
`"%d"' output conversion specification. FLDNAME specifies the
name of the field.
-- Function: void ui_out_field_fmt_int (struct ui_out *UIOUT, int
WIDTH, enum ui_align ALIGNMENT, const char *FLDNAME, int
VALUE)
This function outputs a value of an `int' variable. It differs
from `ui_out_field_int' in that the caller specifies the desired
WIDTH and ALIGNMENT of the output. FLDNAME specifies the name of
the field.
-- Function: void ui_out_field_core_addr (struct ui_out *UIOUT, const
char *FLDNAME, CORE_ADDR ADDRESS)
This function outputs an address.
-- Function: void ui_out_field_string (struct ui_out *UIOUT, const
char *FLDNAME, const char *STRING)
This function outputs a string using the `"%s"' conversion
specification.
Sometimes, there's a need to compose your output piece by piece using
functions that operate on a stream, such as `value_print' or
`fprintf_symbol_filtered'. These functions accept an argument of the
type `struct ui_file *', a pointer to a `ui_file' object used to store
the data stream used for the output. When you use one of these
functions, you need a way to pass their results stored in a `ui_file'
object to the `ui_out' functions. To this end, you first create a
`ui_stream' object by calling `ui_out_stream_new', pass the `stream'
member of that `ui_stream' object to `value_print' and similar
functions, and finally call `ui_out_field_stream' to output the field
you constructed. When the `ui_stream' object is no longer needed, you
should destroy it and free its memory by calling `ui_out_stream_delete'.
-- Function: struct ui_stream *ui_out_stream_new (struct ui_out *UIOUT)
This function creates a new `ui_stream' object which uses the same
output methods as the `ui_out' object whose pointer is passed in
UIOUT. It returns a pointer to the newly created `ui_stream'
object.
-- Function: void ui_out_stream_delete (struct ui_stream *STREAMBUF)
This functions destroys a `ui_stream' object specified by
STREAMBUF.
-- Function: void ui_out_field_stream (struct ui_out *UIOUT, const
char *FIELDNAME, struct ui_stream *STREAMBUF)
This function consumes all the data accumulated in
`streambuf->stream' and outputs it like `ui_out_field_string'
does. After a call to `ui_out_field_stream', the accumulated data
no longer exists, but the stream is still valid and may be used
for producing more fields.
*Important:* If there is any chance that your code could bail out
before completing output generation and reaching the point where
`ui_out_stream_delete' is called, it is necessary to set up a cleanup,
to avoid leaking memory and other resources. Here's a skeleton code to
do that:
struct ui_stream *mybuf = ui_out_stream_new (uiout);
struct cleanup *old = make_cleanup (ui_out_stream_delete, mybuf);
...
do_cleanups (old);
If the function already has the old cleanup chain set (for other
kinds of cleanups), you just have to add your cleanup to it:
mybuf = ui_out_stream_new (uiout);
make_cleanup (ui_out_stream_delete, mybuf);
Note that with cleanups in place, you should not call
`ui_out_stream_delete' directly, or you would attempt to free the same
buffer twice.
4.2.5 Utility Output Functions
------------------------------
-- Function: void ui_out_field_skip (struct ui_out *UIOUT, const char
*FLDNAME)
This function skips a field in a table. Use it if you have to
leave an empty field without disrupting the table alignment. The
argument FLDNAME specifies a name for the (missing) filed.
-- Function: void ui_out_text (struct ui_out *UIOUT, const char
*STRING)
This function outputs the text in STRING in a way that makes it
easy to be read by humans. For example, the console
implementation of this method filters the text through a built-in
pager, to prevent it from scrolling off the visible portion of the
screen.
Use this function for printing relatively long chunks of text
around the actual field data: the text it produces is not aligned
according to the table's format. Use `ui_out_field_string' to
output a string field, and use `ui_out_message', described below,
to output short messages.
-- Function: void ui_out_spaces (struct ui_out *UIOUT, int NSPACES)
This function outputs NSPACES spaces. It is handy to align the
text produced by `ui_out_text' with the rest of the table or list.
-- Function: void ui_out_message (struct ui_out *UIOUT, int VERBOSITY,
const char *FORMAT, ...)
This function produces a formatted message, provided that the
current verbosity level is at least as large as given by
VERBOSITY. The current verbosity level is specified by the user
with the `set verbositylevel' command.(2)
-- Function: void ui_out_wrap_hint (struct ui_out *UIOUT, char *INDENT)
This function gives the console output filter (a paging filter) a
hint of where to break lines which are too long. Ignored for all
other output consumers. INDENT, if non-`NULL', is the string to
be printed to indent the wrapped text on the next line; it must
remain accessible until the next call to `ui_out_wrap_hint', or
until an explicit newline is produced by one of the other
functions. If INDENT is `NULL', the wrapped text will not be
indented.
-- Function: void ui_out_flush (struct ui_out *UIOUT)
This function flushes whatever output has been accumulated so far,
if the UI buffers output.
4.2.6 Examples of Use of `ui_out' functions
-------------------------------------------
This section gives some practical examples of using the `ui_out'
functions to generalize the old console-oriented code in GDB. The
examples all come from functions defined on the `breakpoints.c' file.
This example, from the `breakpoint_1' function, shows how to produce
a table.
The original code was:
if (!found_a_breakpoint++)
{
annotate_breakpoints_headers ();
annotate_field (0);
printf_filtered ("Num ");
annotate_field (1);
printf_filtered ("Type ");
annotate_field (2);
printf_filtered ("Disp ");
annotate_field (3);
printf_filtered ("Enb ");
if (addressprint)
{
annotate_field (4);
printf_filtered ("Address ");
}
annotate_field (5);
printf_filtered ("What\n");
annotate_breakpoints_table ();
}
Here's the new version:
nr_printable_breakpoints = ...;
if (addressprint)
ui_out_table_begin (ui, 6, nr_printable_breakpoints, "BreakpointTable");
else
ui_out_table_begin (ui, 5, nr_printable_breakpoints, "BreakpointTable");
if (nr_printable_breakpoints > 0)
annotate_breakpoints_headers ();
if (nr_printable_breakpoints > 0)
annotate_field (0);
ui_out_table_header (uiout, 3, ui_left, "number", "Num"); /* 1 */
if (nr_printable_breakpoints > 0)
annotate_field (1);
ui_out_table_header (uiout, 14, ui_left, "type", "Type"); /* 2 */
if (nr_printable_breakpoints > 0)
annotate_field (2);
ui_out_table_header (uiout, 4, ui_left, "disp", "Disp"); /* 3 */
if (nr_printable_breakpoints > 0)
annotate_field (3);
ui_out_table_header (uiout, 3, ui_left, "enabled", "Enb"); /* 4 */
if (addressprint)
{
if (nr_printable_breakpoints > 0)
annotate_field (4);
if (TARGET_ADDR_BIT <= 32)
ui_out_table_header (uiout, 10, ui_left, "addr", "Address");/* 5 */
else
ui_out_table_header (uiout, 18, ui_left, "addr", "Address");/* 5 */
}
if (nr_printable_breakpoints > 0)
annotate_field (5);
ui_out_table_header (uiout, 40, ui_noalign, "what", "What"); /* 6 */
ui_out_table_body (uiout);
if (nr_printable_breakpoints > 0)
annotate_breakpoints_table ();
This example, from the `print_one_breakpoint' function, shows how to
produce the actual data for the table whose structure was defined in
the above example. The original code was:
annotate_record ();
annotate_field (0);
printf_filtered ("%-3d ", b->number);
annotate_field (1);
if ((int)b->type > (sizeof(bptypes)/sizeof(bptypes[0]))
|| ((int) b->type != bptypes[(int) b->type].type))
internal_error ("bptypes table does not describe type #%d.",
(int)b->type);
printf_filtered ("%-14s ", bptypes[(int)b->type].description);
annotate_field (2);
printf_filtered ("%-4s ", bpdisps[(int)b->disposition]);
annotate_field (3);
printf_filtered ("%-3c ", bpenables[(int)b->enable]);
...
This is the new version:
annotate_record ();
ui_out_tuple_begin (uiout, "bkpt");
annotate_field (0);
ui_out_field_int (uiout, "number", b->number);
annotate_field (1);
if (((int) b->type > (sizeof (bptypes) / sizeof (bptypes[0])))
|| ((int) b->type != bptypes[(int) b->type].type))
internal_error ("bptypes table does not describe type #%d.",
(int) b->type);
ui_out_field_string (uiout, "type", bptypes[(int)b->type].description);
annotate_field (2);
ui_out_field_string (uiout, "disp", bpdisps[(int)b->disposition]);
annotate_field (3);
ui_out_field_fmt (uiout, "enabled", "%c", bpenables[(int)b->enable]);
...
This example, also from `print_one_breakpoint', shows how to produce
a complicated output field using the `print_expression' functions which
requires a stream to be passed. It also shows how to automate stream
destruction with cleanups. The original code was:
annotate_field (5);
print_expression (b->exp, gdb_stdout);
The new version is:
struct ui_stream *stb = ui_out_stream_new (uiout);
struct cleanup *old_chain = make_cleanup_ui_out_stream_delete (stb);
...
annotate_field (5);
print_expression (b->exp, stb->stream);
ui_out_field_stream (uiout, "what", local_stream);
This example, also from `print_one_breakpoint', shows how to use
`ui_out_text' and `ui_out_field_string'. The original code was:
annotate_field (5);
if (b->dll_pathname == NULL)
printf_filtered ("<any library> ");
else
printf_filtered ("library \"%s\" ", b->dll_pathname);
It became:
annotate_field (5);
if (b->dll_pathname == NULL)
{
ui_out_field_string (uiout, "what", "<any library>");
ui_out_spaces (uiout, 1);
}
else
{
ui_out_text (uiout, "library \"");
ui_out_field_string (uiout, "what", b->dll_pathname);
ui_out_text (uiout, "\" ");
}
The following example from `print_one_breakpoint' shows how to use
`ui_out_field_int' and `ui_out_spaces'. The original code was:
annotate_field (5);
if (b->forked_inferior_pid != 0)
printf_filtered ("process %d ", b->forked_inferior_pid);
It became:
annotate_field (5);
if (b->forked_inferior_pid != 0)
{
ui_out_text (uiout, "process ");
ui_out_field_int (uiout, "what", b->forked_inferior_pid);
ui_out_spaces (uiout, 1);
}
Here's an example of using `ui_out_field_string'. The original code
was:
annotate_field (5);
if (b->exec_pathname != NULL)
printf_filtered ("program \"%s\" ", b->exec_pathname);
It became:
annotate_field (5);
if (b->exec_pathname != NULL)
{
ui_out_text (uiout, "program \"");
ui_out_field_string (uiout, "what", b->exec_pathname);
ui_out_text (uiout, "\" ");
}
Finally, here's an example of printing an address. The original
code:
annotate_field (4);
printf_filtered ("%s ",
hex_string_custom ((unsigned long) b->address, 8));
It became:
annotate_field (4);
ui_out_field_core_addr (uiout, "Address", b->address);
4.3 Console Printing
====================
4.4 TUI
=======
---------- Footnotes ----------
(1) The function cast is not portable ISO C.
(2) As of this writing (April 2001), setting verbosity level is not
yet implemented, and is always returned as zero. So calling
`ui_out_message' with a VERBOSITY argument more than zero will cause
the message to never be printed.
File: gdbint.info, Node: libgdb, Next: Symbol Handling, Prev: User Interface, Up: Top
5 libgdb
********
5.1 libgdb 1.0
==============
`libgdb' 1.0 was an abortive project of years ago. The theory was to
provide an API to GDB's functionality.
5.2 libgdb 2.0
==============
`libgdb' 2.0 is an ongoing effort to update GDB so that is better able
to support graphical and other environments.
Since `libgdb' development is on-going, its architecture is still
evolving. The following components have so far been identified:
* Observer - `gdb-events.h'.
* Builder - `ui-out.h'
* Event Loop - `event-loop.h'
* Library - `gdb.h'
The model that ties these components together is described below.
5.3 The `libgdb' Model
======================
A client of `libgdb' interacts with the library in two ways.
* As an observer (using `gdb-events') receiving notifications from
`libgdb' of any internal state changes (break point changes, run
state, etc).
* As a client querying `libgdb' (using the `ui-out' builder) to
obtain various status values from GDB.
Since `libgdb' could have multiple clients (e.g. a GUI supporting
the existing GDB CLI), those clients must co-operate when controlling
`libgdb'. In particular, a client must ensure that `libgdb' is idle
(i.e. no other client is using `libgdb') before responding to a
`gdb-event' by making a query.
5.4 CLI support
===============
At present GDB's CLI is very much entangled in with the core of
`libgdb'. Consequently, a client wishing to include the CLI in their
interface needs to carefully co-ordinate its own and the CLI's
requirements.
It is suggested that the client set `libgdb' up to be bi-modal
(alternate between CLI and client query modes). The notes below sketch
out the theory:
* The client registers itself as an observer of `libgdb'.
* The client create and install `cli-out' builder using its own
versions of the `ui-file' `gdb_stderr', `gdb_stdtarg' and
`gdb_stdout' streams.
* The client creates a separate custom `ui-out' builder that is only
used while making direct queries to `libgdb'.
When the client receives input intended for the CLI, it simply
passes it along. Since the `cli-out' builder is installed by default,
all the CLI output in response to that command is routed (pronounced
rooted) through to the client controlled `gdb_stdout' et. al. streams.
At the same time, the client is kept abreast of internal changes by
virtue of being a `libgdb' observer.
The only restriction on the client is that it must wait until
`libgdb' becomes idle before initiating any queries (using the client's
custom builder).
5.5 `libgdb' components
=======================
Observer - `gdb-events.h'
-------------------------
`gdb-events' provides the client with a very raw mechanism that can be
used to implement an observer. At present it only allows for one
observer and that observer must, internally, handle the need to delay
the processing of any event notifications until after `libgdb' has
finished the current command.
Builder - `ui-out.h'
--------------------
`ui-out' provides the infrastructure necessary for a client to create a
builder. That builder is then passed down to `libgdb' when doing any
queries.
Event Loop - `event-loop.h'
---------------------------
`event-loop', currently non-re-entrant, provides a simple event loop.
A client would need to either plug its self into this loop or,
implement a new event-loop that GDB would use.
The event-loop will eventually be made re-entrant. This is so that
GDB can better handle the problem of some commands blocking instead of
returning.
Library - `gdb.h'
-----------------
`libgdb' is the most obvious component of this system. It provides the
query interface. Each function is parameterized by a `ui-out' builder.
The result of the query is constructed using that builder before the
query function returns.
File: gdbint.info, Node: Symbol Handling, Next: Language Support, Prev: libgdb, Up: Top
6 Symbol Handling
*****************
Symbols are a key part of GDB's operation. Symbols include variables,
functions, and types.
6.1 Symbol Reading
==================
GDB reads symbols from "symbol files". The usual symbol file is the
file containing the program which GDB is debugging. GDB can be
directed to use a different file for symbols (with the `symbol-file'
command), and it can also read more symbols via the `add-file' and
`load' commands, or while reading symbols from shared libraries.
Symbol files are initially opened by code in `symfile.c' using the
BFD library (*note Support Libraries::). BFD identifies the type of
the file by examining its header. `find_sym_fns' then uses this
identification to locate a set of symbol-reading functions.
Symbol-reading modules identify themselves to GDB by calling
`add_symtab_fns' during their module initialization. The argument to
`add_symtab_fns' is a `struct sym_fns' which contains the name (or name
prefix) of the symbol format, the length of the prefix, and pointers to
four functions. These functions are called at various times to process
symbol files whose identification matches the specified prefix.
The functions supplied by each module are:
`XYZ_symfile_init(struct sym_fns *sf)'
Called from `symbol_file_add' when we are about to read a new
symbol file. This function should clean up any internal state
(possibly resulting from half-read previous files, for example)
and prepare to read a new symbol file. Note that the symbol file
which we are reading might be a new "main" symbol file, or might
be a secondary symbol file whose symbols are being added to the
existing symbol table.
The argument to `XYZ_symfile_init' is a newly allocated `struct
sym_fns' whose `bfd' field contains the BFD for the new symbol
file being read. Its `private' field has been zeroed, and can be
modified as desired. Typically, a struct of private information
will be `malloc''d, and a pointer to it will be placed in the
`private' field.
There is no result from `XYZ_symfile_init', but it can call
`error' if it detects an unavoidable problem.
`XYZ_new_init()'
Called from `symbol_file_add' when discarding existing symbols.
This function needs only handle the symbol-reading module's
internal state; the symbol table data structures visible to the
rest of GDB will be discarded by `symbol_file_add'. It has no
arguments and no result. It may be called after
`XYZ_symfile_init', if a new symbol table is being read, or may be
called alone if all symbols are simply being discarded.
`XYZ_symfile_read(struct sym_fns *sf, CORE_ADDR addr, int mainline)'
Called from `symbol_file_add' to actually read the symbols from a
symbol-file into a set of psymtabs or symtabs.
`sf' points to the `struct sym_fns' originally passed to
`XYZ_sym_init' for possible initialization. `addr' is the offset
between the file's specified start address and its true address in
memory. `mainline' is 1 if this is the main symbol table being
read, and 0 if a secondary symbol file (e.g. shared library or
dynamically loaded file) is being read.
In addition, if a symbol-reading module creates psymtabs when
XYZ_symfile_read is called, these psymtabs will contain a pointer to a
function `XYZ_psymtab_to_symtab', which can be called from any point in
the GDB symbol-handling code.
`XYZ_psymtab_to_symtab (struct partial_symtab *pst)'
Called from `psymtab_to_symtab' (or the `PSYMTAB_TO_SYMTAB' macro)
if the psymtab has not already been read in and had its
`pst->symtab' pointer set. The argument is the psymtab to be
fleshed-out into a symtab. Upon return, `pst->readin' should have
been set to 1, and `pst->symtab' should contain a pointer to the
new corresponding symtab, or zero if there were no symbols in that
part of the symbol file.
6.2 Partial Symbol Tables
=========================
GDB has three types of symbol tables:
* Full symbol tables ("symtabs"). These contain the main
information about symbols and addresses.
* Partial symbol tables ("psymtabs"). These contain enough
information to know when to read the corresponding part of the full
symbol table.
* Minimal symbol tables ("msymtabs"). These contain information
gleaned from non-debugging symbols.
This section describes partial symbol tables.
A psymtab is constructed by doing a very quick pass over an
executable file's debugging information. Small amounts of information
are extracted--enough to identify which parts of the symbol table will
need to be re-read and fully digested later, when the user needs the
information. The speed of this pass causes GDB to start up very
quickly. Later, as the detailed rereading occurs, it occurs in small
pieces, at various times, and the delay therefrom is mostly invisible to
the user.
The symbols that show up in a file's psymtab should be, roughly,
those visible to the debugger's user when the program is not running
code from that file. These include external symbols and types, static
symbols and types, and `enum' values declared at file scope.
The psymtab also contains the range of instruction addresses that the
full symbol table would represent.
The idea is that there are only two ways for the user (or much of the
code in the debugger) to reference a symbol:
* By its address (e.g. execution stops at some address which is
inside a function in this file). The address will be noticed to
be in the range of this psymtab, and the full symtab will be read
in. `find_pc_function', `find_pc_line', and other `find_pc_...'
functions handle this.
* By its name (e.g. the user asks to print a variable, or set a
breakpoint on a function). Global names and file-scope names will
be found in the psymtab, which will cause the symtab to be pulled
in. Local names will have to be qualified by a global name, or a
file-scope name, in which case we will have already read in the
symtab as we evaluated the qualifier. Or, a local symbol can be
referenced when we are "in" a local scope, in which case the first
case applies. `lookup_symbol' does most of the work here.
The only reason that psymtabs exist is to cause a symtab to be read
in at the right moment. Any symbol that can be elided from a psymtab,
while still causing that to happen, should not appear in it. Since
psymtabs don't have the idea of scope, you can't put local symbols in
them anyway. Psymtabs don't have the idea of the type of a symbol,
either, so types need not appear, unless they will be referenced by
name.
It is a bug for GDB to behave one way when only a psymtab has been
read, and another way if the corresponding symtab has been read in.
Such bugs are typically caused by a psymtab that does not contain all
the visible symbols, or which has the wrong instruction address ranges.
The psymtab for a particular section of a symbol file (objfile)
could be thrown away after the symtab has been read in. The symtab
should always be searched before the psymtab, so the psymtab will never
be used (in a bug-free environment). Currently, psymtabs are allocated
on an obstack, and all the psymbols themselves are allocated in a pair
of large arrays on an obstack, so there is little to be gained by
trying to free them unless you want to do a lot more work.
6.3 Types
=========
Fundamental Types (e.g., `FT_VOID', `FT_BOOLEAN').
--------------------------------------------------
These are the fundamental types that GDB uses internally. Fundamental
types from the various debugging formats (stabs, ELF, etc) are mapped
into one of these. They are basically a union of all fundamental types
that GDB knows about for all the languages that GDB knows about.
Type Codes (e.g., `TYPE_CODE_PTR', `TYPE_CODE_ARRAY').
------------------------------------------------------
Each time GDB builds an internal type, it marks it with one of these
types. The type may be a fundamental type, such as `TYPE_CODE_INT', or
a derived type, such as `TYPE_CODE_PTR' which is a pointer to another
type. Typically, several `FT_*' types map to one `TYPE_CODE_*' type,
and are distinguished by other members of the type struct, such as
whether the type is signed or unsigned, and how many bits it uses.
Builtin Types (e.g., `builtin_type_void', `builtin_type_char').
---------------------------------------------------------------
These are instances of type structs that roughly correspond to
fundamental types and are created as global types for GDB to use for
various ugly historical reasons. We eventually want to eliminate
these. Note for example that `builtin_type_int' initialized in
`gdbtypes.c' is basically the same as a `TYPE_CODE_INT' type that is
initialized in `c-lang.c' for an `FT_INTEGER' fundamental type. The
difference is that the `builtin_type' is not associated with any
particular objfile, and only one instance exists, while `c-lang.c'
builds as many `TYPE_CODE_INT' types as needed, with each one
associated with some particular objfile.
6.4 Object File Formats
=======================
6.4.1 a.out
-----------
The `a.out' format is the original file format for Unix. It consists
of three sections: `text', `data', and `bss', which are for program
code, initialized data, and uninitialized data, respectively.
The `a.out' format is so simple that it doesn't have any reserved
place for debugging information. (Hey, the original Unix hackers used
`adb', which is a machine-language debugger!) The only debugging
format for `a.out' is stabs, which is encoded as a set of normal
symbols with distinctive attributes.
The basic `a.out' reader is in `dbxread.c'.
6.4.2 COFF
----------
The COFF format was introduced with System V Release 3 (SVR3) Unix.
COFF files may have multiple sections, each prefixed by a header. The
number of sections is limited.
The COFF specification includes support for debugging. Although this
was a step forward, the debugging information was woefully limited. For
instance, it was not possible to represent code that came from an
included file.
The COFF reader is in `coffread.c'.
6.4.3 ECOFF
-----------
ECOFF is an extended COFF originally introduced for Mips and Alpha
workstations.
The basic ECOFF reader is in `mipsread.c'.
6.4.4 XCOFF
-----------
The IBM RS/6000 running AIX uses an object file format called XCOFF.
The COFF sections, symbols, and line numbers are used, but debugging
symbols are `dbx'-style stabs whose strings are located in the `.debug'
section (rather than the string table). For more information, see
*Note Top: (stabs)Top.
The shared library scheme has a clean interface for figuring out what
shared libraries are in use, but the catch is that everything which
refers to addresses (symbol tables and breakpoints at least) needs to be
relocated for both shared libraries and the main executable. At least
using the standard mechanism this can only be done once the program has
been run (or the core file has been read).
6.4.5 PE
--------
Windows 95 and NT use the PE ("Portable Executable") format for their
executables. PE is basically COFF with additional headers.
While BFD includes special PE support, GDB needs only the basic COFF
reader.
6.4.6 ELF
---------
The ELF format came with System V Release 4 (SVR4) Unix. ELF is similar
to COFF in being organized into a number of sections, but it removes
many of COFF's limitations.
The basic ELF reader is in `elfread.c'.
6.4.7 SOM
---------
SOM is HP's object file and debug format (not to be confused with IBM's
SOM, which is a cross-language ABI).
The SOM reader is in `hpread.c'.
6.4.8 Other File Formats
------------------------
Other file formats that have been supported by GDB include Netware
Loadable Modules (`nlmread.c').
6.5 Debugging File Formats
==========================
This section describes characteristics of debugging information that
are independent of the object file format.
6.5.1 stabs
-----------
`stabs' started out as special symbols within the `a.out' format.
Since then, it has been encapsulated into other file formats, such as
COFF and ELF.
While `dbxread.c' does some of the basic stab processing, including
for encapsulated versions, `stabsread.c' does the real work.
6.5.2 COFF
----------
The basic COFF definition includes debugging information. The level of
support is minimal and non-extensible, and is not often used.
6.5.3 Mips debug (Third Eye)
----------------------------
ECOFF includes a definition of a special debug format.
The file `mdebugread.c' implements reading for this format.
6.5.4 DWARF 1
-------------
DWARF 1 is a debugging format that was originally designed to be used
with ELF in SVR4 systems.
The DWARF 1 reader is in `dwarfread.c'.
6.5.5 DWARF 2
-------------
DWARF 2 is an improved but incompatible version of DWARF 1.
The DWARF 2 reader is in `dwarf2read.c'.
6.5.6 SOM
---------
Like COFF, the SOM definition includes debugging information.
6.6 Adding a New Symbol Reader to GDB
=====================================
If you are using an existing object file format (`a.out', COFF, ELF,
etc), there is probably little to be done.
If you need to add a new object file format, you must first add it to
BFD. This is beyond the scope of this document.
You must then arrange for the BFD code to provide access to the
debugging symbols. Generally GDB will have to call swapping routines
from BFD and a few other BFD internal routines to locate the debugging
information. As much as possible, GDB should not depend on the BFD
internal data structures.
For some targets (e.g., COFF), there is a special transfer vector
used to call swapping routines, since the external data structures on
various platforms have different sizes and layouts. Specialized
routines that will only ever be implemented by one object file format
may be called directly. This interface should be described in a file
`bfd/libXYZ.h', which is included by GDB.
File: gdbint.info, Node: Language Support, Next: Host Definition, Prev: Symbol Handling, Up: Top
7 Language Support
******************
GDB's language support is mainly driven by the symbol reader, although
it is possible for the user to set the source language manually.
GDB chooses the source language by looking at the extension of the
file recorded in the debug info; `.c' means C, `.f' means Fortran, etc.
It may also use a special-purpose language identifier if the debug
format supports it, like with DWARF.
7.1 Adding a Source Language to GDB
===================================
To add other languages to GDB's expression parser, follow the following
steps:
_Create the expression parser._
This should reside in a file `LANG-exp.y'. Routines for building
parsed expressions into a `union exp_element' list are in
`parse.c'.
Since we can't depend upon everyone having Bison, and YACC produces
parsers that define a bunch of global names, the following lines
*must* be included at the top of the YACC parser, to prevent the
various parsers from defining the same global names:
#define yyparse LANG_parse
#define yylex LANG_lex
#define yyerror LANG_error
#define yylval LANG_lval
#define yychar LANG_char
#define yydebug LANG_debug
#define yypact LANG_pact
#define yyr1 LANG_r1
#define yyr2 LANG_r2
#define yydef LANG_def
#define yychk LANG_chk
#define yypgo LANG_pgo
#define yyact LANG_act
#define yyexca LANG_exca
#define yyerrflag LANG_errflag
#define yynerrs LANG_nerrs
At the bottom of your parser, define a `struct language_defn' and
initialize it with the right values for your language. Define an
`initialize_LANG' routine and have it call
`add_language(LANG_language_defn)' to tell the rest of GDB that
your language exists. You'll need some other supporting variables
and functions, which will be used via pointers from your
`LANG_language_defn'. See the declaration of `struct
language_defn' in `language.h', and the other `*-exp.y' files, for
more information.
_Add any evaluation routines, if necessary_
If you need new opcodes (that represent the operations of the
language), add them to the enumerated type in `expression.h'. Add
support code for these operations in the `evaluate_subexp' function
defined in the file `eval.c'. Add cases for new opcodes in two
functions from `parse.c': `prefixify_subexp' and
`length_of_subexp'. These compute the number of `exp_element's
that a given operation takes up.
_Update some existing code_
Add an enumerated identifier for your language to the enumerated
type `enum language' in `defs.h'.
Update the routines in `language.c' so your language is included.
These routines include type predicates and such, which (in some
cases) are language dependent. If your language does not appear
in the switch statement, an error is reported.
Also included in `language.c' is the code that updates the variable
`current_language', and the routines that translate the
`language_LANG' enumerated identifier into a printable string.
Update the function `_initialize_language' to include your
language. This function picks the default language upon startup,
so is dependent upon which languages that GDB is built for.
Update `allocate_symtab' in `symfile.c' and/or symbol-reading code
so that the language of each symtab (source file) is set properly.
This is used to determine the language to use at each stack frame
level. Currently, the language is set based upon the extension of
the source file. If the language can be better inferred from the
symbol information, please set the language of the symtab in the
symbol-reading code.
Add helper code to `print_subexp' (in `expprint.c') to handle any
new expression opcodes you have added to `expression.h'. Also,
add the printed representations of your operators to
`op_print_tab'.
_Add a place of call_
Add a call to `LANG_parse()' and `LANG_error' in `parse_exp_1'
(defined in `parse.c').
_Use macros to trim code_
The user has the option of building GDB for some or all of the
languages. If the user decides to build GDB for the language
LANG, then every file dependent on `language.h' will have the
macro `_LANG_LANG' defined in it. Use `#ifdef's to leave out
large routines that the user won't need if he or she is not using
your language.
Note that you do not need to do this in your YACC parser, since if
GDB is not build for LANG, then `LANG-exp.tab.o' (the compiled
form of your parser) is not linked into GDB at all.
See the file `configure.in' for how GDB is configured for
different languages.
_Edit `Makefile.in'_
Add dependencies in `Makefile.in'. Make sure you update the macro
variables such as `HFILES' and `OBJS', otherwise your code may not
get linked in, or, worse yet, it may not get `tar'red into the
distribution!
File: gdbint.info, Node: Host Definition, Next: Target Architecture Definition, Prev: Language Support, Up: Top
8 Host Definition
*****************
With the advent of Autoconf, it's rarely necessary to have host
definition machinery anymore. The following information is provided,
mainly, as an historical reference.
8.1 Adding a New Host
=====================
GDB's host configuration support normally happens via Autoconf. New
host-specific definitions should not be needed. Older hosts GDB still
use the host-specific definitions and files listed below, but these
mostly exist for historical reasons, and will eventually disappear.
`gdb/config/ARCH/XYZ.mh'
This file once contained both host and native configuration
information (*note Native Debugging::) for the machine XYZ. The
host configuration information is now handed by Autoconf.
Host configuration information included a definition of
`XM_FILE=xm-XYZ.h' and possibly definitions for `CC',
`SYSV_DEFINE', `XM_CFLAGS', `XM_ADD_FILES', `XM_CLIBS',
`XM_CDEPS', etc.; see `Makefile.in'.
New host only configurations do not need this file.
`gdb/config/ARCH/xm-XYZ.h'
This file once contained definitions and includes required when
hosting gdb on machine XYZ. Those definitions and includes are now
handled by Autoconf.
New host and native configurations do not need this file.
_Maintainer's note: Some hosts continue to use the `xm-xyz.h' file
to define the macros HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT and
HOST_LONG_DOUBLE_FORMAT. That code also needs to be replaced with
either an Autoconf or run-time test._
Generic Host Support Files
--------------------------
There are some "generic" versions of routines that can be used by
various systems. These can be customized in various ways by macros
defined in your `xm-XYZ.h' file. If these routines work for the XYZ
host, you can just include the generic file's name (with `.o', not
`.c') in `XDEPFILES'.
Otherwise, if your machine needs custom support routines, you will
need to write routines that perform the same functions as the generic
file. Put them into `XYZ-xdep.c', and put `XYZ-xdep.o' into
`XDEPFILES'.
`ser-unix.c'
This contains serial line support for Unix systems. This is always
included, via the makefile variable `SER_HARDWIRE'; override this
variable in the `.mh' file to avoid it.
`ser-go32.c'
This contains serial line support for 32-bit programs running
under DOS, using the DJGPP (a.k.a. GO32) execution environment.
`ser-tcp.c'
This contains generic TCP support using sockets.
8.2 Host Conditionals
=====================
When GDB is configured and compiled, various macros are defined or left
undefined, to control compilation based on the attributes of the host
system. These macros and their meanings (or if the meaning is not
documented here, then one of the source files where they are used is
indicated) are:
`GDBINIT_FILENAME'
The default name of GDB's initialization file (normally
`.gdbinit').
`NO_STD_REGS'
This macro is deprecated.
`SIGWINCH_HANDLER'
If your host defines `SIGWINCH', you can define this to be the name
of a function to be called if `SIGWINCH' is received.
`SIGWINCH_HANDLER_BODY'
Define this to expand into code that will define the function
named by the expansion of `SIGWINCH_HANDLER'.
`ALIGN_STACK_ON_STARTUP'
Define this if your system is of a sort that will crash in
`tgetent' if the stack happens not to be longword-aligned when
`main' is called. This is a rare situation, but is known to occur
on several different types of systems.
`CRLF_SOURCE_FILES'
Define this if host files use `\r\n' rather than `\n' as a line
terminator. This will cause source file listings to omit `\r'
characters when printing and it will allow `\r\n' line endings of
files which are "sourced" by gdb. It must be possible to open
files in binary mode using `O_BINARY' or, for fopen, `"rb"'.
`DEFAULT_PROMPT'
The default value of the prompt string (normally `"(gdb) "').
`DEV_TTY'
The name of the generic TTY device, defaults to `"/dev/tty"'.
`FOPEN_RB'
Define this if binary files are opened the same way as text files.
`HAVE_MMAP'
In some cases, use the system call `mmap' for reading symbol
tables. For some machines this allows for sharing and quick
updates.
`HAVE_TERMIO'
Define this if the host system has `termio.h'.
`INT_MAX'
`INT_MIN'
`LONG_MAX'
`UINT_MAX'
`ULONG_MAX'
Values for host-side constants.
`ISATTY'
Substitute for isatty, if not available.
`LONGEST'
This is the longest integer type available on the host. If not
defined, it will default to `long long' or `long', depending on
`CC_HAS_LONG_LONG'.
`CC_HAS_LONG_LONG'
Define this if the host C compiler supports `long long'. This is
set by the `configure' script.
`PRINTF_HAS_LONG_LONG'
Define this if the host can handle printing of long long integers
via the printf format conversion specifier `ll'. This is set by
the `configure' script.
`HAVE_LONG_DOUBLE'
Define this if the host C compiler supports `long double'. This is
set by the `configure' script.
`PRINTF_HAS_LONG_DOUBLE'
Define this if the host can handle printing of long double
float-point numbers via the printf format conversion specifier
`Lg'. This is set by the `configure' script.
`SCANF_HAS_LONG_DOUBLE'
Define this if the host can handle the parsing of long double
float-point numbers via the scanf format conversion specifier
`Lg'. This is set by the `configure' script.
`LSEEK_NOT_LINEAR'
Define this if `lseek (n)' does not necessarily move to byte number
`n' in the file. This is only used when reading source files. It
is normally faster to define `CRLF_SOURCE_FILES' when possible.
`L_SET'
This macro is used as the argument to `lseek' (or, most commonly,
`bfd_seek'). FIXME, should be replaced by SEEK_SET instead, which
is the POSIX equivalent.
`NORETURN'
If defined, this should be one or more tokens, such as `volatile',
that can be used in both the declaration and definition of
functions to indicate that they never return. The default is
already set correctly if compiling with GCC. This will almost
never need to be defined.
`ATTR_NORETURN'
If defined, this should be one or more tokens, such as
`__attribute__ ((noreturn))', that can be used in the declarations
of functions to indicate that they never return. The default is
already set correctly if compiling with GCC. This will almost
never need to be defined.
`SEEK_CUR'
`SEEK_SET'
Define these to appropriate value for the system `lseek', if not
already defined.
`STOP_SIGNAL'
This is the signal for stopping GDB. Defaults to `SIGTSTP'.
(Only redefined for the Convex.)
`USG'
Means that System V (prior to SVR4) include files are in use.
(FIXME: This symbol is abused in `infrun.c', `regex.c', and
`utils.c' for other things, at the moment.)
`lint'
Define this to help placate `lint' in some situations.
`volatile'
Define this to override the defaults of `__volatile__' or `/**/'.
File: gdbint.info, Node: Target Architecture Definition, Next: Target Vector Definition, Prev: Host Definition, Up: Top
9 Target Architecture Definition
********************************
GDB's target architecture defines what sort of machine-language
programs GDB can work with, and how it works with them.
The target architecture object is implemented as the C structure
`struct gdbarch *'. The structure, and its methods, are generated
using the Bourne shell script `gdbarch.sh'.
9.1 Operating System ABI Variant Handling
=========================================
GDB provides a mechanism for handling variations in OS ABIs. An OS ABI
variant may have influence over any number of variables in the target
architecture definition. There are two major components in the OS ABI
mechanism: sniffers and handlers.
A "sniffer" examines a file matching a BFD architecture/flavour pair
(the architecture may be wildcarded) in an attempt to determine the OS
ABI of that file. Sniffers with a wildcarded architecture are
considered to be "generic", while sniffers for a specific architecture
are considered to be "specific". A match from a specific sniffer
overrides a match from a generic sniffer. Multiple sniffers for an
architecture/flavour may exist, in order to differentiate between two
different operating systems which use the same basic file format. The
OS ABI framework provides a generic sniffer for ELF-format files which
examines the `EI_OSABI' field of the ELF header, as well as note
sections known to be used by several operating systems.
A "handler" is used to fine-tune the `gdbarch' structure for the
selected OS ABI. There may be only one handler for a given OS ABI for
each BFD architecture.
The following OS ABI variants are defined in `osabi.h':
`GDB_OSABI_UNKNOWN'
The ABI of the inferior is unknown. The default `gdbarch'
settings for the architecture will be used.
`GDB_OSABI_SVR4'
UNIX System V Release 4
`GDB_OSABI_HURD'
GNU using the Hurd kernel
`GDB_OSABI_SOLARIS'
Sun Solaris
`GDB_OSABI_OSF1'
OSF/1, including Digital UNIX and Compaq Tru64 UNIX
`GDB_OSABI_LINUX'
GNU using the Linux kernel
`GDB_OSABI_FREEBSD_AOUT'
FreeBSD using the a.out executable format
`GDB_OSABI_FREEBSD_ELF'
FreeBSD using the ELF executable format
`GDB_OSABI_NETBSD_AOUT'
NetBSD using the a.out executable format
`GDB_OSABI_NETBSD_ELF'
NetBSD using the ELF executable format
`GDB_OSABI_WINCE'
Windows CE
`GDB_OSABI_GO32'
DJGPP
`GDB_OSABI_NETWARE'
Novell NetWare
`GDB_OSABI_ARM_EABI_V1'
ARM Embedded ABI version 1
`GDB_OSABI_ARM_EABI_V2'
ARM Embedded ABI version 2
`GDB_OSABI_ARM_APCS'
Generic ARM Procedure Call Standard
Here are the functions that make up the OS ABI framework:
-- Function: const char *gdbarch_osabi_name (enum gdb_osabi OSABI)
Return the name of the OS ABI corresponding to OSABI.
-- Function: void gdbarch_register_osabi (enum bfd_architecture ARCH,
unsigned long MACHINE, enum gdb_osabi OSABI, void
(*INIT_OSABI)(struct gdbarch_info INFO, struct gdbarch
*GDBARCH))
Register the OS ABI handler specified by INIT_OSABI for the
architecture, machine type and OS ABI specified by ARCH, MACHINE
and OSABI. In most cases, a value of zero for the machine type,
which implies the architecture's default machine type, will
suffice.
-- Function: void gdbarch_register_osabi_sniffer (enum
bfd_architecture ARCH, enum bfd_flavour FLAVOUR, enum
gdb_osabi (*SNIFFER)(bfd *ABFD))
Register the OS ABI file sniffer specified by SNIFFER for the BFD
architecture/flavour pair specified by ARCH and FLAVOUR. If ARCH
is `bfd_arch_unknown', the sniffer is considered to be generic,
and is allowed to examine FLAVOUR-flavoured files for any
architecture.
-- Function: enum gdb_osabi gdbarch_lookup_osabi (bfd *ABFD)
Examine the file described by ABFD to determine its OS ABI. The
value `GDB_OSABI_UNKNOWN' is returned if the OS ABI cannot be
determined.
-- Function: void gdbarch_init_osabi (struct gdbarch info INFO, struct
gdbarch *GDBARCH, enum gdb_osabi OSABI)
Invoke the OS ABI handler corresponding to OSABI to fine-tune the
`gdbarch' structure specified by GDBARCH. If a handler
corresponding to OSABI has not been registered for GDBARCH's
architecture, a warning will be issued and the debugging session
will continue with the defaults already established for GDBARCH.
9.2 Registers and Memory
========================
GDB's model of the target machine is rather simple. GDB assumes the
machine includes a bank of registers and a block of memory. Each
register may have a different size.
GDB does not have a magical way to match up with the compiler's idea
of which registers are which; however, it is critical that they do
match up accurately. The only way to make this work is to get accurate
information about the order that the compiler uses, and to reflect that
in the `REGISTER_NAME' and related macros.
GDB can handle big-endian, little-endian, and bi-endian
architectures.
9.3 Pointers Are Not Always Addresses
=====================================
On almost all 32-bit architectures, the representation of a pointer is
indistinguishable from the representation of some fixed-length number
whose value is the byte address of the object pointed to. On such
machines, the words "pointer" and "address" can be used interchangeably.
However, architectures with smaller word sizes are often cramped for
address space, so they may choose a pointer representation that breaks
this identity, and allows a larger code address space.
For example, the Renesas D10V is a 16-bit VLIW processor whose
instructions are 32 bits long(1). If the D10V used ordinary byte
addresses to refer to code locations, then the processor would only be
able to address 64kb of instructions. However, since instructions must
be aligned on four-byte boundaries, the low two bits of any valid
instruction's byte address are always zero--byte addresses waste two
bits. So instead of byte addresses, the D10V uses word addresses--byte
addresses shifted right two bits--to refer to code. Thus, the D10V can
use 16-bit words to address 256kb of code space.
However, this means that code pointers and data pointers have
different forms on the D10V. The 16-bit word `0xC020' refers to byte
address `0xC020' when used as a data address, but refers to byte address
`0x30080' when used as a code address.
(The D10V also uses separate code and data address spaces, which also
affects the correspondence between pointers and addresses, but we're
going to ignore that here; this example is already too long.)
To cope with architectures like this--the D10V is not the only
one!--GDB tries to distinguish between "addresses", which are byte
numbers, and "pointers", which are the target's representation of an
address of a particular type of data. In the example above, `0xC020'
is the pointer, which refers to one of the addresses `0xC020' or
`0x30080', depending on the type imposed upon it. GDB provides
functions for turning a pointer into an address and vice versa, in the
appropriate way for the current architecture.
Unfortunately, since addresses and pointers are identical on almost
all processors, this distinction tends to bit-rot pretty quickly. Thus,
each time you port GDB to an architecture which does distinguish
between pointers and addresses, you'll probably need to clean up some
architecture-independent code.
Here are functions which convert between pointers and addresses:
-- Function: CORE_ADDR extract_typed_address (void *BUF, struct type
*TYPE)
Treat the bytes at BUF as a pointer or reference of type TYPE, and
return the address it represents, in a manner appropriate for the
current architecture. This yields an address GDB can use to read
target memory, disassemble, etc. Note that BUF refers to a buffer
in GDB's memory, not the inferior's.
For example, if the current architecture is the Intel x86, this
function extracts a little-endian integer of the appropriate
length from BUF and returns it. However, if the current
architecture is the D10V, this function will return a 16-bit
integer extracted from BUF, multiplied by four if TYPE is a
pointer to a function.
If TYPE is not a pointer or reference type, then this function
will signal an internal error.
-- Function: CORE_ADDR store_typed_address (void *BUF, struct type
*TYPE, CORE_ADDR ADDR)
Store the address ADDR in BUF, in the proper format for a pointer
of type TYPE in the current architecture. Note that BUF refers to
a buffer in GDB's memory, not the inferior's.
For example, if the current architecture is the Intel x86, this
function stores ADDR unmodified as a little-endian integer of the
appropriate length in BUF. However, if the current architecture
is the D10V, this function divides ADDR by four if TYPE is a
pointer to a function, and then stores it in BUF.
If TYPE is not a pointer or reference type, then this function
will signal an internal error.
-- Function: CORE_ADDR value_as_address (struct value *VAL)
Assuming that VAL is a pointer, return the address it represents,
as appropriate for the current architecture.
This function actually works on integral values, as well as
pointers. For pointers, it performs architecture-specific
conversions as described above for `extract_typed_address'.
-- Function: CORE_ADDR value_from_pointer (struct type *TYPE,
CORE_ADDR ADDR)
Create and return a value representing a pointer of type TYPE to
the address ADDR, as appropriate for the current architecture.
This function performs architecture-specific conversions as
described above for `store_typed_address'.
Here are some macros which architectures can define to indicate the
relationship between pointers and addresses. These have default
definitions, appropriate for architectures on which all pointers are
simple unsigned byte addresses.
-- Target Macro: CORE_ADDR POINTER_TO_ADDRESS (struct type *TYPE, char
*BUF)
Assume that BUF holds a pointer of type TYPE, in the appropriate
format for the current architecture. Return the byte address the
pointer refers to.
This function may safely assume that TYPE is either a pointer or a
C++ reference type.
-- Target Macro: void ADDRESS_TO_POINTER (struct type *TYPE, char
*BUF, CORE_ADDR ADDR)
Store in BUF a pointer of type TYPE representing the address ADDR,
in the appropriate format for the current architecture.
This function may safely assume that TYPE is either a pointer or a
C++ reference type.
9.4 Address Classes
===================
Sometimes information about different kinds of addresses is available
via the debug information. For example, some programming environments
define addresses of several different sizes. If the debug information
distinguishes these kinds of address classes through either the size
info (e.g, `DW_AT_byte_size' in DWARF 2) or through an explicit address
class attribute (e.g, `DW_AT_address_class' in DWARF 2), the following
macros should be defined in order to disambiguate these types within
GDB as well as provide the added information to a GDB user when
printing type expressions.
-- Target Macro: int ADDRESS_CLASS_TYPE_FLAGS (int BYTE_SIZE, int
DWARF2_ADDR_CLASS)
Returns the type flags needed to construct a pointer type whose
size is BYTE_SIZE and whose address class is DWARF2_ADDR_CLASS.
This function is normally called from within a symbol reader. See
`dwarf2read.c'.
-- Target Macro: char *ADDRESS_CLASS_TYPE_FLAGS_TO_NAME (int
TYPE_FLAGS)
Given the type flags representing an address class qualifier,
return its name.
-- Target Macro: int ADDRESS_CLASS_NAME_to_TYPE_FLAGS (int NAME, int
*vartype_flags_ptr)
Given an address qualifier name, set the `int' refererenced by
TYPE_FLAGS_PTR to the type flags for that address class qualifier.
Since the need for address classes is rather rare, none of the
address class macros defined by default. Predicate macros are provided
to detect when they are defined.
Consider a hypothetical architecture in which addresses are normally
32-bits wide, but 16-bit addresses are also supported. Furthermore,
suppose that the DWARF 2 information for this architecture simply uses
a `DW_AT_byte_size' value of 2 to indicate the use of one of these
"short" pointers. The following functions could be defined to
implement the address class macros:
somearch_address_class_type_flags (int byte_size,
int dwarf2_addr_class)
{
if (byte_size == 2)
return TYPE_FLAG_ADDRESS_CLASS_1;
else
return 0;
}
static char *
somearch_address_class_type_flags_to_name (int type_flags)
{
if (type_flags & TYPE_FLAG_ADDRESS_CLASS_1)
return "short";
else
return NULL;
}
int
somearch_address_class_name_to_type_flags (char *name,
int *type_flags_ptr)
{
if (strcmp (name, "short") == 0)
{
*type_flags_ptr = TYPE_FLAG_ADDRESS_CLASS_1;
return 1;
}
else
return 0;
}
The qualifier `@short' is used in GDB's type expressions to indicate
the presence of one of these "short" pointers. E.g, if the debug
information indicates that `short_ptr_var' is one of these short
pointers, GDB might show the following behavior:
(gdb) ptype short_ptr_var
type = int * @short
9.5 Raw and Virtual Register Representations
============================================
_Maintainer note: This section is pretty much obsolete. The
functionality described here has largely been replaced by
pseudo-registers and the mechanisms described in *Note Using Different
Register and Memory Data Representations: Target Architecture
Definition. See also Bug Tracking Database
(http://www.gnu.org/software/gdb/bugs/) and ARI Index
(http://sources.redhat.com/gdb/current/ari/) for more up-to-date
information._
Some architectures use one representation for a value when it lives
in a register, but use a different representation when it lives in
memory. In GDB's terminology, the "raw" representation is the one used
in the target registers, and the "virtual" representation is the one
used in memory, and within GDB `struct value' objects.
_Maintainer note: Notice that the same mechanism is being used to
both convert a register to a `struct value' and alternative register
forms._
For almost all data types on almost all architectures, the virtual
and raw representations are identical, and no special handling is
needed. However, they do occasionally differ. For example:
* The x86 architecture supports an 80-bit `long double' type.
However, when we store those values in memory, they occupy twelve
bytes: the floating-point number occupies the first ten, and the
final two bytes are unused. This keeps the values aligned on
four-byte boundaries, allowing more efficient access. Thus, the
x86 80-bit floating-point type is the raw representation, and the
twelve-byte loosely-packed arrangement is the virtual
representation.
* Some 64-bit MIPS targets present 32-bit registers to GDB as 64-bit
registers, with garbage in their upper bits. GDB ignores the top
32 bits. Thus, the 64-bit form, with garbage in the upper 32
bits, is the raw representation, and the trimmed 32-bit
representation is the virtual representation.
In general, the raw representation is determined by the
architecture, or GDB's interface to the architecture, while the virtual
representation can be chosen for GDB's convenience. GDB's register
file, `registers', holds the register contents in raw format, and the
GDB remote protocol transmits register values in raw format.
Your architecture may define the following macros to request
conversions between the raw and virtual format:
-- Target Macro: int REGISTER_CONVERTIBLE (int REG)
Return non-zero if register number REG's value needs different raw
and virtual formats.
You should not use `REGISTER_CONVERT_TO_VIRTUAL' for a register
unless this macro returns a non-zero value for that register.
-- Target Macro: int DEPRECATED_REGISTER_RAW_SIZE (int REG)
The size of register number REG's raw value. This is the number
of bytes the register will occupy in `registers', or in a GDB
remote protocol packet.
-- Target Macro: int DEPRECATED_REGISTER_VIRTUAL_SIZE (int REG)
The size of register number REG's value, in its virtual format.
This is the size a `struct value''s buffer will have, holding that
register's value.
-- Target Macro: struct type *DEPRECATED_REGISTER_VIRTUAL_TYPE (int
REG)
This is the type of the virtual representation of register number
REG. Note that there is no need for a macro giving a type for the
register's raw form; once the register's value has been obtained,
GDB always uses the virtual form.
-- Target Macro: void REGISTER_CONVERT_TO_VIRTUAL (int REG, struct
type *TYPE, char *FROM, char *TO)
Convert the value of register number REG to TYPE, which should
always be `DEPRECATED_REGISTER_VIRTUAL_TYPE (REG)'. The buffer at
FROM holds the register's value in raw format; the macro should
convert the value to virtual format, and place it at TO.
Note that `REGISTER_CONVERT_TO_VIRTUAL' and
`REGISTER_CONVERT_TO_RAW' take their REG and TYPE arguments in
different orders.
You should only use `REGISTER_CONVERT_TO_VIRTUAL' with registers
for which the `REGISTER_CONVERTIBLE' macro returns a non-zero
value.
-- Target Macro: void REGISTER_CONVERT_TO_RAW (struct type *TYPE, int
REG, char *FROM, char *TO)
Convert the value of register number REG to TYPE, which should
always be `DEPRECATED_REGISTER_VIRTUAL_TYPE (REG)'. The buffer at
FROM holds the register's value in raw format; the macro should
convert the value to virtual format, and place it at TO.
Note that REGISTER_CONVERT_TO_VIRTUAL and REGISTER_CONVERT_TO_RAW
take their REG and TYPE arguments in different orders.
9.6 Using Different Register and Memory Data Representations
============================================================
_Maintainer's note: The way GDB manipulates registers is undergoing
significant change. Many of the macros and functions refered to in this
section are likely to be subject to further revision. See A.R. Index
(http://sources.redhat.com/gdb/current/ari/) and Bug Tracking Database
(http://www.gnu.org/software/gdb/bugs) for further information.
cagney/2002-05-06._
Some architectures can represent a data object in a register using a
form that is different to the objects more normal memory representation.
For example:
* The Alpha architecture can represent 32 bit integer values in
floating-point registers.
* The x86 architecture supports 80-bit floating-point registers. The
`long double' data type occupies 96 bits in memory but only 80 bits
when stored in a register.
In general, the register representation of a data type is determined
by the architecture, or GDB's interface to the architecture, while the
memory representation is determined by the Application Binary Interface.
For almost all data types on almost all architectures, the two
representations are identical, and no special handling is needed.
However, they do occasionally differ. Your architecture may define the
following macros to request conversions between the register and memory
representations of a data type:
-- Target Macro: int CONVERT_REGISTER_P (int REG)
Return non-zero if the representation of a data value stored in
this register may be different to the representation of that same
data value when stored in memory.
When non-zero, the macros `REGISTER_TO_VALUE' and
`VALUE_TO_REGISTER' are used to perform any necessary conversion.
-- Target Macro: void REGISTER_TO_VALUE (int REG, struct type *TYPE,
char *FROM, char *TO)
Convert the value of register number REG to a data object of type
TYPE. The buffer at FROM holds the register's value in raw
format; the converted value should be placed in the buffer at TO.
Note that `REGISTER_TO_VALUE' and `VALUE_TO_REGISTER' take their
REG and TYPE arguments in different orders.
You should only use `REGISTER_TO_VALUE' with registers for which
the `CONVERT_REGISTER_P' macro returns a non-zero value.
-- Target Macro: void VALUE_TO_REGISTER (struct type *TYPE, int REG,
char *FROM, char *TO)
Convert a data value of type TYPE to register number REG' raw
format.
Note that `REGISTER_TO_VALUE' and `VALUE_TO_REGISTER' take their
REG and TYPE arguments in different orders.
You should only use `VALUE_TO_REGISTER' with registers for which
the `CONVERT_REGISTER_P' macro returns a non-zero value.
-- Target Macro: void REGISTER_CONVERT_TO_TYPE (int REGNUM, struct
type *TYPE, char *BUF)
See `mips-tdep.c'. It does not do what you want.
9.7 Frame Interpretation
========================
9.8 Inferior Call Setup
=======================
9.9 Compiler Characteristics
============================
9.10 Target Conditionals
========================
This section describes the macros that you can use to define the target
machine.
`ADDR_BITS_REMOVE (addr)'
If a raw machine instruction address includes any bits that are not
really part of the address, then define this macro to expand into
an expression that zeroes those bits in ADDR. This is only used
for addresses of instructions, and even then not in all contexts.
For example, the two low-order bits of the PC on the
Hewlett-Packard PA 2.0 architecture contain the privilege level of
the corresponding instruction. Since instructions must always be
aligned on four-byte boundaries, the processor masks out these
bits to generate the actual address of the instruction.
ADDR_BITS_REMOVE should filter out these bits with an expression
such as `((addr) & ~3)'.
`ADDRESS_CLASS_NAME_TO_TYPE_FLAGS (NAME, TYPE_FLAGS_PTR)'
If NAME is a valid address class qualifier name, set the `int'
referenced by TYPE_FLAGS_PTR to the mask representing the qualifier
and return 1. If NAME is not a valid address class qualifier name,
return 0.
The value for TYPE_FLAGS_PTR should be one of
`TYPE_FLAG_ADDRESS_CLASS_1', `TYPE_FLAG_ADDRESS_CLASS_2', or
possibly some combination of these values or'd together. *Note
Address Classes: Target Architecture Definition.
`ADDRESS_CLASS_NAME_TO_TYPE_FLAGS_P ()'
Predicate which indicates whether
`ADDRESS_CLASS_NAME_TO_TYPE_FLAGS' has been defined.
`ADDRESS_CLASS_TYPE_FLAGS (BYTE_SIZE, DWARF2_ADDR_CLASS)'
Given a pointers byte size (as described by the debug information)
and the possible `DW_AT_address_class' value, return the type flags
used by GDB to represent this address class. The value returned
should be one of `TYPE_FLAG_ADDRESS_CLASS_1',
`TYPE_FLAG_ADDRESS_CLASS_2', or possibly some combination of these
values or'd together. *Note Address Classes: Target Architecture
Definition.
`ADDRESS_CLASS_TYPE_FLAGS_P ()'
Predicate which indicates whether `ADDRESS_CLASS_TYPE_FLAGS' has
been defined.
`ADDRESS_CLASS_TYPE_FLAGS_TO_NAME (TYPE_FLAGS)'
Return the name of the address class qualifier associated with the
type flags given by TYPE_FLAGS.
`ADDRESS_CLASS_TYPE_FLAGS_TO_NAME_P ()'
Predicate which indicates whether
`ADDRESS_CLASS_TYPE_FLAGS_TO_NAME' has been defined. *Note
Address Classes: Target Architecture Definition.
`ADDRESS_TO_POINTER (TYPE, BUF, ADDR)'
Store in BUF a pointer of type TYPE representing the address ADDR,
in the appropriate format for the current architecture. This
macro may safely assume that TYPE is either a pointer or a C++
reference type. *Note Pointers Are Not Always Addresses: Target
Architecture Definition.
`BELIEVE_PCC_PROMOTION'
Define if the compiler promotes a `short' or `char' parameter to
an `int', but still reports the parameter as its original type,
rather than the promoted type.
`BITS_BIG_ENDIAN'
Define this if the numbering of bits in the targets does *not*
match the endianness of the target byte order. A value of 1 means
that the bits are numbered in a big-endian bit order, 0 means
little-endian.
`BREAKPOINT'
This is the character array initializer for the bit pattern to put
into memory where a breakpoint is set. Although it's common to
use a trap instruction for a breakpoint, it's not required; for
instance, the bit pattern could be an invalid instruction. The
breakpoint must be no longer than the shortest instruction of the
architecture.
`BREAKPOINT' has been deprecated in favor of `BREAKPOINT_FROM_PC'.
`BIG_BREAKPOINT'
`LITTLE_BREAKPOINT'
Similar to BREAKPOINT, but used for bi-endian targets.
`BIG_BREAKPOINT' and `LITTLE_BREAKPOINT' have been deprecated in
favor of `BREAKPOINT_FROM_PC'.
`DEPRECATED_REMOTE_BREAKPOINT'
`DEPRECATED_LITTLE_REMOTE_BREAKPOINT'
`DEPRECATED_BIG_REMOTE_BREAKPOINT'
Specify the breakpoint instruction sequence for a remote target.
`DEPRECATED_REMOTE_BREAKPOINT', `DEPRECATED_BIG_REMOTE_BREAKPOINT'
and `DEPRECATED_LITTLE_REMOTE_BREAKPOINT' have been deprecated in
favor of `BREAKPOINT_FROM_PC' (*note BREAKPOINT_FROM_PC::).
`BREAKPOINT_FROM_PC (PCPTR, LENPTR)'
Use the program counter to determine the contents and size of a
breakpoint instruction. It returns a pointer to a string of bytes
that encode a breakpoint instruction, stores the length of the
string to `*LENPTR', and adjusts the program counter (if
necessary) to point to the actual memory location where the
breakpoint should be inserted.
Although it is common to use a trap instruction for a breakpoint,
it's not required; for instance, the bit pattern could be an
invalid instruction. The breakpoint must be no longer than the
shortest instruction of the architecture.
Replaces all the other BREAKPOINT macros.
`MEMORY_INSERT_BREAKPOINT (ADDR, CONTENTS_CACHE)'
`MEMORY_REMOVE_BREAKPOINT (ADDR, CONTENTS_CACHE)'
Insert or remove memory based breakpoints. Reasonable defaults
(`default_memory_insert_breakpoint' and
`default_memory_remove_breakpoint' respectively) have been
provided so that it is not necessary to define these for most
architectures. Architectures which may want to define
`MEMORY_INSERT_BREAKPOINT' and `MEMORY_REMOVE_BREAKPOINT' will
likely have instructions that are oddly sized or are not stored in
a conventional manner.
It may also be desirable (from an efficiency standpoint) to define
custom breakpoint insertion and removal routines if
`BREAKPOINT_FROM_PC' needs to read the target's memory for some
reason.
`ADJUST_BREAKPOINT_ADDRESS (ADDRESS)'
Given an address at which a breakpoint is desired, return a
breakpoint address adjusted to account for architectural
constraints on breakpoint placement. This method is not needed by
most targets.
The FR-V target (see `frv-tdep.c') requires this method. The FR-V
is a VLIW architecture in which a number of RISC-like instructions
are grouped (packed) together into an aggregate instruction or
instruction bundle. When the processor executes one of these
bundles, the component instructions are executed in parallel.
In the course of optimization, the compiler may group instructions
from distinct source statements into the same bundle. The line
number information associated with one of the latter statements
will likely refer to some instruction other than the first one in
the bundle. So, if the user attempts to place a breakpoint on one
of these latter statements, GDB must be careful to _not_ place the
break instruction on any instruction other than the first one in
the bundle. (Remember though that the instructions within a
bundle execute in parallel, so the _first_ instruction is the
instruction at the lowest address and has nothing to do with
execution order.)
The FR-V's `ADJUST_BREAKPOINT_ADDRESS' method will adjust a
breakpoint's address by scanning backwards for the beginning of
the bundle, returning the address of the bundle.
Since the adjustment of a breakpoint may significantly alter a
user's expectation, GDB prints a warning when an adjusted
breakpoint is initially set and each time that that breakpoint is
hit.
`CALL_DUMMY_LOCATION'
See the file `inferior.h'.
This method has been replaced by `push_dummy_code' (*note
push_dummy_code::).
`CANNOT_FETCH_REGISTER (REGNO)'
A C expression that should be nonzero if REGNO cannot be fetched
from an inferior process. This is only relevant if
`FETCH_INFERIOR_REGISTERS' is not defined.
`CANNOT_STORE_REGISTER (REGNO)'
A C expression that should be nonzero if REGNO should not be
written to the target. This is often the case for program
counters, status words, and other special registers. If this is
not defined, GDB will assume that all registers may be written.
`int CONVERT_REGISTER_P(REGNUM)'
Return non-zero if register REGNUM can represent data values in a
non-standard form. *Note Using Different Register and Memory Data
Representations: Target Architecture Definition.
`DECR_PC_AFTER_BREAK'
Define this to be the amount by which to decrement the PC after the
program encounters a breakpoint. This is often the number of
bytes in `BREAKPOINT', though not always. For most targets this
value will be 0.
`DISABLE_UNSETTABLE_BREAK (ADDR)'
If defined, this should evaluate to 1 if ADDR is in a shared
library in which breakpoints cannot be set and so should be
disabled.
`PRINT_FLOAT_INFO()'
If defined, then the `info float' command will print information
about the processor's floating point unit.
`print_registers_info (GDBARCH, FRAME, REGNUM, ALL)'
If defined, pretty print the value of the register REGNUM for the
specified FRAME. If the value of REGNUM is -1, pretty print
either all registers (ALL is non zero) or a select subset of
registers (ALL is zero).
The default method prints one register per line, and if ALL is
zero omits floating-point registers.
`PRINT_VECTOR_INFO()'
If defined, then the `info vector' command will call this function
to print information about the processor's vector unit.
By default, the `info vector' command will print all vector
registers (the register's type having the vector attribute).
`DWARF_REG_TO_REGNUM'
Convert DWARF register number into GDB regnum. If not defined, no
conversion will be performed.
`DWARF2_REG_TO_REGNUM'
Convert DWARF2 register number into GDB regnum. If not defined,
no conversion will be performed.
`ECOFF_REG_TO_REGNUM'
Convert ECOFF register number into GDB regnum. If not defined, no
conversion will be performed.
`END_OF_TEXT_DEFAULT'
This is an expression that should designate the end of the text
section.
`EXTRACT_RETURN_VALUE(TYPE, REGBUF, VALBUF)'
Define this to extract a function's return value of type TYPE from
the raw register state REGBUF and copy that, in virtual format,
into VALBUF.
This method has been deprecated in favour of `gdbarch_return_value'
(*note gdbarch_return_value::).
`DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS(REGBUF)'
When defined, extract from the array REGBUF (containing the raw
register state) the `CORE_ADDR' at which a function should return
its structure value.
*Note gdbarch_return_value::.
`DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS_P()'
Predicate for `DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS'.
`DEPRECATED_FP_REGNUM'
If the virtual frame pointer is kept in a register, then define
this macro to be the number (greater than or equal to zero) of
that register.
This should only need to be defined if `DEPRECATED_TARGET_READ_FP'
is not defined.
`DEPRECATED_FRAMELESS_FUNCTION_INVOCATION(FI)'
Define this to an expression that returns 1 if the function
invocation represented by FI does not have a stack frame
associated with it. Otherwise return 0.
`frame_align (ADDRESS)'
Define this to adjust ADDRESS so that it meets the alignment
requirements for the start of a new stack frame. A stack frame's
alignment requirements are typically stronger than a target
processors stack alignment requirements (*note
DEPRECATED_STACK_ALIGN::).
This function is used to ensure that, when creating a dummy frame,
both the initial stack pointer and (if needed) the address of the
return value are correctly aligned.
Unlike `DEPRECATED_STACK_ALIGN', this function always adjusts the
address in the direction of stack growth.
By default, no frame based stack alignment is performed.
`int frame_red_zone_size'
The number of bytes, beyond the innermost-stack-address, reserved
by the ABI. A function is permitted to use this scratch area
(instead of allocating extra stack space).
When performing an inferior function call, to ensure that it does
not modify this area, GDB adjusts the innermost-stack-address by
FRAME_RED_ZONE_SIZE bytes before pushing parameters onto the stack.
By default, zero bytes are allocated. The value must be aligned
(*note frame_align::).
The AMD64 (nee x86-64) ABI documentation refers to the _red zone_
when describing this scratch area.
`DEPRECATED_FRAME_CHAIN(FRAME)'
Given FRAME, return a pointer to the calling frame.
`DEPRECATED_FRAME_CHAIN_VALID(CHAIN, THISFRAME)'
Define this to be an expression that returns zero if the given
frame is an outermost frame, with no caller, and nonzero
otherwise. Most normal situations can be handled without defining
this macro, including `NULL' chain pointers, dummy frames, and
frames whose PC values are inside the startup file (e.g.
`crt0.o'), inside `main', or inside `_start'.
`DEPRECATED_FRAME_INIT_SAVED_REGS(FRAME)'
See `frame.h'. Determines the address of all registers in the
current stack frame storing each in `frame->saved_regs'. Space for
`frame->saved_regs' shall be allocated by
`DEPRECATED_FRAME_INIT_SAVED_REGS' using `frame_saved_regs_zalloc'.
`FRAME_FIND_SAVED_REGS' is deprecated.
`FRAME_NUM_ARGS (FI)'
For the frame described by FI return the number of arguments that
are being passed. If the number of arguments is not known, return
`-1'.
`DEPRECATED_FRAME_SAVED_PC(FRAME)'
Given FRAME, return the pc saved there. This is the return
address.
This method is deprecated. *Note unwind_pc::.
`CORE_ADDR unwind_pc (struct frame_info *THIS_FRAME)'
Return the instruction address, in THIS_FRAME's caller, at which
execution will resume after THIS_FRAME returns. This is commonly
refered to as the return address.
The implementation, which must be frame agnostic (work with any
frame), is typically no more than:
ULONGEST pc;
frame_unwind_unsigned_register (this_frame, D10V_PC_REGNUM, &pc);
return d10v_make_iaddr (pc);
*Note DEPRECATED_FRAME_SAVED_PC::, which this method replaces.
`CORE_ADDR unwind_sp (struct frame_info *THIS_FRAME)'
Return the frame's inner most stack address. This is commonly
refered to as the frame's "stack pointer".
The implementation, which must be frame agnostic (work with any
frame), is typically no more than:
ULONGEST sp;
frame_unwind_unsigned_register (this_frame, D10V_SP_REGNUM, &sp);
return d10v_make_daddr (sp);
*Note TARGET_READ_SP::, which this method replaces.
`FUNCTION_EPILOGUE_SIZE'
For some COFF targets, the `x_sym.x_misc.x_fsize' field of the
function end symbol is 0. For such targets, you must define
`FUNCTION_EPILOGUE_SIZE' to expand into the standard size of a
function's epilogue.
`DEPRECATED_FUNCTION_START_OFFSET'
An integer, giving the offset in bytes from a function's address
(as used in the values of symbols, function pointers, etc.), and
the function's first genuine instruction.
This is zero on almost all machines: the function's address is
usually the address of its first instruction. However, on the
VAX, for example, each function starts with two bytes containing a
bitmask indicating which registers to save upon entry to the
function. The VAX `call' instructions check this value, and save
the appropriate registers automatically. Thus, since the offset
from the function's address to its first instruction is two bytes,
`DEPRECATED_FUNCTION_START_OFFSET' would be 2 on the VAX.
`GCC_COMPILED_FLAG_SYMBOL'
`GCC2_COMPILED_FLAG_SYMBOL'
If defined, these are the names of the symbols that GDB will look
for to detect that GCC compiled the file. The default symbols are
`gcc_compiled.' and `gcc2_compiled.', respectively. (Currently
only defined for the Delta 68.)
`GDB_MULTI_ARCH'
If defined and non-zero, enables support for multiple architectures
within GDB.
This support can be enabled at two levels. At level one, only
definitions for previously undefined macros are provided; at level
two, a multi-arch definition of all architecture dependent macros
will be defined.
`GDB_TARGET_IS_HPPA'
This determines whether horrible kludge code in `dbxread.c' and
`partial-stab.h' is used to mangle multiple-symbol-table files from
HPPA's. This should all be ripped out, and a scheme like
`elfread.c' used instead.
`GET_LONGJMP_TARGET'
For most machines, this is a target-dependent parameter. On the
DECstation and the Iris, this is a native-dependent parameter,
since the header file `setjmp.h' is needed to define it.
This macro determines the target PC address that `longjmp' will
jump to, assuming that we have just stopped at a `longjmp'
breakpoint. It takes a `CORE_ADDR *' as argument, and stores the
target PC value through this pointer. It examines the current
state of the machine as needed.
`DEPRECATED_GET_SAVED_REGISTER'
Define this if you need to supply your own definition for the
function `DEPRECATED_GET_SAVED_REGISTER'.
`DEPRECATED_IBM6000_TARGET'
Shows that we are configured for an IBM RS/6000 system. This
conditional should be eliminated (FIXME) and replaced by
feature-specific macros. It was introduced in a haste and we are
repenting at leisure.
`I386_USE_GENERIC_WATCHPOINTS'
An x86-based target can define this to use the generic x86
watchpoint support; see *Note I386_USE_GENERIC_WATCHPOINTS:
Algorithms.
`SYMBOLS_CAN_START_WITH_DOLLAR'
Some systems have routines whose names start with `$'. Giving this
macro a non-zero value tells GDB's expression parser to check for
such routines when parsing tokens that begin with `$'.
On HP-UX, certain system routines (millicode) have names beginning
with `$' or `$$'. For example, `$$dyncall' is a millicode routine
that handles inter-space procedure calls on PA-RISC.
`DEPRECATED_INIT_EXTRA_FRAME_INFO (FROMLEAF, FRAME)'
If additional information about the frame is required this should
be stored in `frame->extra_info'. Space for `frame->extra_info'
is allocated using `frame_extra_info_zalloc'.
`DEPRECATED_INIT_FRAME_PC (FROMLEAF, PREV)'
This is a C statement that sets the pc of the frame pointed to by
PREV. [By default...]
`INNER_THAN (LHS, RHS)'
Returns non-zero if stack address LHS is inner than (nearer to the
stack top) stack address RHS. Define this as `lhs < rhs' if the
target's stack grows downward in memory, or `lhs > rsh' if the
stack grows upward.
`gdbarch_in_function_epilogue_p (GDBARCH, PC)'
Returns non-zero if the given PC is in the epilogue of a function.
The epilogue of a function is defined as the part of a function
where the stack frame of the function already has been destroyed
up to the final `return from function call' instruction.
`DEPRECATED_SIGTRAMP_START (PC)'
`DEPRECATED_SIGTRAMP_END (PC)'
Define these to be the start and end address of the `sigtramp' for
the given PC. On machines where the address is just a compile time
constant, the macro expansion will typically just ignore the
supplied PC.
`IN_SOLIB_CALL_TRAMPOLINE (PC, NAME)'
Define this to evaluate to nonzero if the program is stopped in the
trampoline that connects to a shared library.
`IN_SOLIB_RETURN_TRAMPOLINE (PC, NAME)'
Define this to evaluate to nonzero if the program is stopped in the
trampoline that returns from a shared library.
`IN_SOLIB_DYNSYM_RESOLVE_CODE (PC)'
Define this to evaluate to nonzero if the program is stopped in the
dynamic linker.
`SKIP_SOLIB_RESOLVER (PC)'
Define this to evaluate to the (nonzero) address at which execution
should continue to get past the dynamic linker's symbol resolution
function. A zero value indicates that it is not important or
necessary to set a breakpoint to get through the dynamic linker
and that single stepping will suffice.
`INTEGER_TO_ADDRESS (TYPE, BUF)'
Define this when the architecture needs to handle non-pointer to
address conversions specially. Converts that value to an address
according to the current architectures conventions.
_Pragmatics: When the user copies a well defined expression from
their source code and passes it, as a parameter, to GDB's `print'
command, they should get the same value as would have been
computed by the target program. Any deviation from this rule can
cause major confusion and annoyance, and needs to be justified
carefully. In other words, GDB doesn't really have the freedom to
do these conversions in clever and useful ways. It has, however,
been pointed out that users aren't complaining about how GDB casts
integers to pointers; they are complaining that they can't take an
address from a disassembly listing and give it to `x/i'. Adding
an architecture method like `INTEGER_TO_ADDRESS' certainly makes
it possible for GDB to "get it right" in all circumstances._
*Note Pointers Are Not Always Addresses: Target Architecture
Definition.
`NO_HIF_SUPPORT'
(Specific to the a29k.)
`POINTER_TO_ADDRESS (TYPE, BUF)'
Assume that BUF holds a pointer of type TYPE, in the appropriate
format for the current architecture. Return the byte address the
pointer refers to. *Note Pointers Are Not Always Addresses:
Target Architecture Definition.
`REGISTER_CONVERTIBLE (REG)'
Return non-zero if REG uses different raw and virtual formats.
*Note Raw and Virtual Register Representations: Target
Architecture Definition.
`REGISTER_TO_VALUE(REGNUM, TYPE, FROM, TO)'
Convert the raw contents of register REGNUM into a value of type
TYPE. *Note Using Different Register and Memory Data
Representations: Target Architecture Definition.
`DEPRECATED_REGISTER_RAW_SIZE (REG)'
Return the raw size of REG; defaults to the size of the register's
virtual type. *Note Raw and Virtual Register Representations:
Target Architecture Definition.
`register_reggroup_p (GDBARCH, REGNUM, REGGROUP)'
Return non-zero if register REGNUM is a member of the register
group REGGROUP.
By default, registers are grouped as follows:
`float_reggroup'
Any register with a valid name and a floating-point type.
`vector_reggroup'
Any register with a valid name and a vector type.
`general_reggroup'
Any register with a valid name and a type other than vector or
floating-point. `float_reggroup'.
`save_reggroup'
`restore_reggroup'
`all_reggroup'
Any register with a valid name.
`DEPRECATED_REGISTER_VIRTUAL_SIZE (REG)'
Return the virtual size of REG; defaults to the size of the
register's virtual type. Return the virtual size of REG. *Note
Raw and Virtual Register Representations: Target Architecture
Definition.
`DEPRECATED_REGISTER_VIRTUAL_TYPE (REG)'
Return the virtual type of REG. *Note Raw and Virtual Register
Representations: Target Architecture Definition.
`struct type *register_type (GDBARCH, REG)'
If defined, return the type of register REG. This function
superseeds `DEPRECATED_REGISTER_VIRTUAL_TYPE'. *Note Raw and
Virtual Register Representations: Target Architecture Definition.
`REGISTER_CONVERT_TO_VIRTUAL(REG, TYPE, FROM, TO)'
Convert the value of register REG from its raw form to its virtual
form. *Note Raw and Virtual Register Representations: Target
Architecture Definition.
`REGISTER_CONVERT_TO_RAW(TYPE, REG, FROM, TO)'
Convert the value of register REG from its virtual form to its raw
form. *Note Raw and Virtual Register Representations: Target
Architecture Definition.
`const struct regset *regset_from_core_section (struct gdbarch * GDBARCH, const char * SECT_NAME, size_t SECT_SIZE)'
Return the appropriate register set for a core file section with
name SECT_NAME |