|
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <!-- Copyright (C) 1988-2020 Free Software Foundation, Inc.
-
- Permission is granted to copy, distribute and/or modify this document
- under the terms of the GNU Free Documentation License, Version 1.3 or
- any later version published by the Free Software Foundation; with the
- Invariant Sections being "Free Software" and "Free Software Needs
- Free Documentation", with the Front-Cover Texts being "A GNU Manual,"
- and with the Back-Cover Texts as in (a) below.
-
- (a) The FSF's Back-Cover Text is: "You are free to copy and modify
- this GNU Manual. Buying copies from GNU Press supports the FSF in
- developing GNU and promoting software freedom." -->
- <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>GDB/MI Breakpoint Information (Debugging with GDB)</title>
-
- <meta name="description" content="GDB/MI Breakpoint Information (Debugging with GDB)">
- <meta name="keywords" content="GDB/MI Breakpoint Information (Debugging with GDB)">
- <meta name="resource-type" content="document">
- <meta name="distribution" content="global">
- <meta name="Generator" content="makeinfo">
- <link href="index.html#Top" rel="start" title="Top">
- <link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index">
- <link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
- <link href="GDB_002fMI-Output-Records.html#GDB_002fMI-Output-Records" rel="up" title="GDB/MI Output Records">
- <link href="GDB_002fMI-Frame-Information.html#GDB_002fMI-Frame-Information" rel="next" title="GDB/MI Frame Information">
- <link href="GDB_002fMI-Async-Records.html#GDB_002fMI-Async-Records" rel="prev" title="GDB/MI Async Records">
- <style type="text/css">
- <!--
- a.summary-letter {text-decoration: none}
- blockquote.indentedblock {margin-right: 0em}
- blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
- blockquote.smallquotation {font-size: smaller}
- div.display {margin-left: 3.2em}
- div.example {margin-left: 3.2em}
- div.lisp {margin-left: 3.2em}
- div.smalldisplay {margin-left: 3.2em}
- div.smallexample {margin-left: 3.2em}
- div.smalllisp {margin-left: 3.2em}
- kbd {font-style: oblique}
- pre.display {font-family: inherit}
- pre.format {font-family: inherit}
- pre.menu-comment {font-family: serif}
- pre.menu-preformatted {font-family: serif}
- pre.smalldisplay {font-family: inherit; font-size: smaller}
- pre.smallexample {font-size: smaller}
- pre.smallformat {font-family: inherit; font-size: smaller}
- pre.smalllisp {font-size: smaller}
- span.nolinebreak {white-space: nowrap}
- span.roman {font-family: initial; font-weight: normal}
- span.sansserif {font-family: sans-serif; font-weight: normal}
- ul.no-bullet {list-style: none}
- -->
- </style>
-
-
- </head>
-
- <body lang="en">
- <a name="GDB_002fMI-Breakpoint-Information"></a>
- <div class="header">
- <p>
- Next: <a href="GDB_002fMI-Frame-Information.html#GDB_002fMI-Frame-Information" accesskey="n" rel="next">GDB/MI Frame Information</a>, Previous: <a href="GDB_002fMI-Async-Records.html#GDB_002fMI-Async-Records" accesskey="p" rel="prev">GDB/MI Async Records</a>, Up: <a href="GDB_002fMI-Output-Records.html#GDB_002fMI-Output-Records" accesskey="u" rel="up">GDB/MI Output Records</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
- </div>
- <hr>
- <a name="GDB_002fMI-Breakpoint-Information-1"></a>
- <h4 class="subsection">27.5.4 <small>GDB/MI</small> Breakpoint Information</h4>
-
- <p>When <small>GDB</small> reports information about a breakpoint, a
- tracepoint, a watchpoint, or a catchpoint, it uses a tuple with the
- following fields:
- </p>
- <dl compact="compact">
- <dt><code>number</code></dt>
- <dd><p>The breakpoint number.
- </p>
- </dd>
- <dt><code>type</code></dt>
- <dd><p>The type of the breakpoint. For ordinary breakpoints this will be
- ‘<samp>breakpoint</samp>’, but many values are possible.
- </p>
- </dd>
- <dt><code>catch-type</code></dt>
- <dd><p>If the type of the breakpoint is ‘<samp>catchpoint</samp>’, then this
- indicates the exact type of catchpoint.
- </p>
- </dd>
- <dt><code>disp</code></dt>
- <dd><p>This is the breakpoint disposition—either ‘<samp>del</samp>’, meaning that
- the breakpoint will be deleted at the next stop, or ‘<samp>keep</samp>’,
- meaning that the breakpoint will not be deleted.
- </p>
- </dd>
- <dt><code>enabled</code></dt>
- <dd><p>This indicates whether the breakpoint is enabled, in which case the
- value is ‘<samp>y</samp>’, or disabled, in which case the value is ‘<samp>n</samp>’.
- Note that this is not the same as the field <code>enable</code>.
- </p>
- </dd>
- <dt><code>addr</code></dt>
- <dd><p>The address of the breakpoint. This may be a hexidecimal number,
- giving the address; or the string ‘<samp><PENDING></samp>’, for a pending
- breakpoint; or the string ‘<samp><MULTIPLE></samp>’, for a breakpoint with
- multiple locations. This field will not be present if no address can
- be determined. For example, a watchpoint does not have an address.
- </p>
- </dd>
- <dt><code>addr_flags</code></dt>
- <dd><p>Optional field containing any flags related to the address. These flags are
- architecture-dependent; see <a href="Architectures.html#Architectures">Architectures</a> for their meaning for a
- particular CPU.
- </p>
- </dd>
- <dt><code>func</code></dt>
- <dd><p>If known, the function in which the breakpoint appears.
- If not known, this field is not present.
- </p>
- </dd>
- <dt><code>filename</code></dt>
- <dd><p>The name of the source file which contains this function, if known.
- If not known, this field is not present.
- </p>
- </dd>
- <dt><code>fullname</code></dt>
- <dd><p>The full file name of the source file which contains this function, if
- known. If not known, this field is not present.
- </p>
- </dd>
- <dt><code>line</code></dt>
- <dd><p>The line number at which this breakpoint appears, if known.
- If not known, this field is not present.
- </p>
- </dd>
- <dt><code>at</code></dt>
- <dd><p>If the source file is not known, this field may be provided. If
- provided, this holds the address of the breakpoint, possibly followed
- by a symbol name.
- </p>
- </dd>
- <dt><code>pending</code></dt>
- <dd><p>If this breakpoint is pending, this field is present and holds the
- text used to set the breakpoint, as entered by the user.
- </p>
- </dd>
- <dt><code>evaluated-by</code></dt>
- <dd><p>Where this breakpoint’s condition is evaluated, either ‘<samp>host</samp>’ or
- ‘<samp>target</samp>’.
- </p>
- </dd>
- <dt><code>thread</code></dt>
- <dd><p>If this is a thread-specific breakpoint, then this identifies the
- thread in which the breakpoint can trigger.
- </p>
- </dd>
- <dt><code>task</code></dt>
- <dd><p>If this breakpoint is restricted to a particular Ada task, then this
- field will hold the task identifier.
- </p>
- </dd>
- <dt><code>cond</code></dt>
- <dd><p>If the breakpoint is conditional, this is the condition expression.
- </p>
- </dd>
- <dt><code>ignore</code></dt>
- <dd><p>The ignore count of the breakpoint.
- </p>
- </dd>
- <dt><code>enable</code></dt>
- <dd><p>The enable count of the breakpoint.
- </p>
- </dd>
- <dt><code>traceframe-usage</code></dt>
- <dd><p>FIXME.
- </p>
- </dd>
- <dt><code>static-tracepoint-marker-string-id</code></dt>
- <dd><p>For a static tracepoint, the name of the static tracepoint marker.
- </p>
- </dd>
- <dt><code>mask</code></dt>
- <dd><p>For a masked watchpoint, this is the mask.
- </p>
- </dd>
- <dt><code>pass</code></dt>
- <dd><p>A tracepoint’s pass count.
- </p>
- </dd>
- <dt><code>original-location</code></dt>
- <dd><p>The location of the breakpoint as originally specified by the user.
- This field is optional.
- </p>
- </dd>
- <dt><code>times</code></dt>
- <dd><p>The number of times the breakpoint has been hit.
- </p>
- </dd>
- <dt><code>installed</code></dt>
- <dd><p>This field is only given for tracepoints. This is either ‘<samp>y</samp>’,
- meaning that the tracepoint is installed, or ‘<samp>n</samp>’, meaning that it
- is not.
- </p>
- </dd>
- <dt><code>what</code></dt>
- <dd><p>Some extra data, the exact contents of which are type-dependent.
- </p>
- </dd>
- <dt><code>locations</code></dt>
- <dd><p>This field is present if the breakpoint has multiple locations. It is also
- exceptionally present if the breakpoint is enabled and has a single, disabled
- location.
- </p>
- <p>The value is a list of locations. The format of a location is described below.
- </p>
- </dd>
- </dl>
-
- <p>A location in a multi-location breakpoint is represented as a tuple with the
- following fields:
- </p>
- <dl compact="compact">
- <dt><code>number</code></dt>
- <dd><p>The location number as a dotted pair, like ‘<samp>1.2</samp>’. The first digit is the
- number of the parent breakpoint. The second digit is the number of the
- location within that breakpoint.
- </p>
- </dd>
- <dt><code>enabled</code></dt>
- <dd><p>This indicates whether the location is enabled, in which case the
- value is ‘<samp>y</samp>’, or disabled, in which case the value is ‘<samp>n</samp>’.
- Note that this is not the same as the field <code>enable</code>.
- </p>
- </dd>
- <dt><code>addr</code></dt>
- <dd><p>The address of this location as an hexidecimal number.
- </p>
- </dd>
- <dt><code>addr_flags</code></dt>
- <dd><p>Optional field containing any flags related to the address. These flags are
- architecture-dependent; see <a href="Architectures.html#Architectures">Architectures</a> for their meaning for a
- particular CPU.
- </p>
- </dd>
- <dt><code>func</code></dt>
- <dd><p>If known, the function in which the location appears.
- If not known, this field is not present.
- </p>
- </dd>
- <dt><code>file</code></dt>
- <dd><p>The name of the source file which contains this location, if known.
- If not known, this field is not present.
- </p>
- </dd>
- <dt><code>fullname</code></dt>
- <dd><p>The full file name of the source file which contains this location, if
- known. If not known, this field is not present.
- </p>
- </dd>
- <dt><code>line</code></dt>
- <dd><p>The line number at which this location appears, if known.
- If not known, this field is not present.
- </p>
- </dd>
- <dt><code>thread-groups</code></dt>
- <dd><p>The thread groups this location is in.
- </p>
- </dd>
- </dl>
-
- <p>For example, here is what the output of <code>-break-insert</code>
- (see <a href="GDB_002fMI-Breakpoint-Commands.html#GDB_002fMI-Breakpoint-Commands">GDB/MI Breakpoint Commands</a>) might be:
- </p>
- <div class="smallexample">
- <pre class="smallexample">-> -break-insert main
- <- ^done,bkpt={number="1",type="breakpoint",disp="keep",
- enabled="y",addr="0x08048564",func="main",file="myprog.c",
- fullname="/home/nickrob/myprog.c",line="68",thread-groups=["i1"],
- times="0"}
- <- (gdb)
- </pre></div>
-
- <hr>
- <div class="header">
- <p>
- Next: <a href="GDB_002fMI-Frame-Information.html#GDB_002fMI-Frame-Information" accesskey="n" rel="next">GDB/MI Frame Information</a>, Previous: <a href="GDB_002fMI-Async-Records.html#GDB_002fMI-Async-Records" accesskey="p" rel="prev">GDB/MI Async Records</a>, Up: <a href="GDB_002fMI-Output-Records.html#GDB_002fMI-Output-Records" accesskey="u" rel="up">GDB/MI Output Records</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
- </div>
-
-
-
- </body>
- </html>
|