[gdb/ax] small "setv" fix and documentation's adjustment.
authorDavid Taylor <dtaylor@emc.com>
Thu, 19 Feb 2015 14:53:50 +0000 (18:53 +0400)
committerJoel Brobecker <brobecker@adacore.com>
Thu, 19 Feb 2015 15:04:16 +0000 (19:04 +0400)
commit53cf2ee0d933ac4d95530555854a6f8d3cefc2e8
tree6675fa7a6e80593c702dd71ef8a9ae943863b030
parentdb95bb7c5946a109e1584ab2c43c052ff39e63bd
[gdb/ax] small "setv" fix and documentation's adjustment.

gdb/doc/agentexpr.texi documents the "setv" opcode as follow:

    @item @code{setv} (0x2d) @var{n}: @result{} @var{v}
    Set trace state variable number @var{n} to the value found on the top
    of the stack.  The stack is unchanged, so that the value is readily
    available if the assignment is part of a larger expression.  The
    handling of @var{n} is as described for @code{getv}.

The @item line is incorrect (and does not match with its
description), so this patch fixes it.

Additionally, in gdb/common/ax.def we find the line:

    DEFOP (setv, 2, 0, 0, 1, 0x2d)

From the comment earlier in the file:

       Each line is of the form:

       DEFOP (name, size, data_size, consumed, produced, opcode)
[...]
       CONSUMED is the number of stack elements consumed.
       PRODUCED is the number of stack elements produced.

which is saying that nothing is consumed and one item is produced.
Both should be 0 or both should be 1.

This patch sets them both to 1, which seems better since if nothing
is on the stack an error will occur.

gdb/ChangeLog:

        * common/ax.def (setv): Fix consumed entry in setv DEFOP.

gdb/doc/ChangeLog:

        * agentexpr.texi (Bytecode Descriptions): Fix summary line for setv.

Tested on x86_64-linux.
gdb/ChangeLog
gdb/common/ax.def
gdb/doc/ChangeLog
gdb/doc/agentexpr.texi
This page took 0.027788 seconds and 4 git commands to generate.