aboutsummaryrefslogtreecommitdiff
path: root/gdb/common
diff options
context:
space:
mode:
authorHui Zhu <teawater@gmail.com>2011-02-21 08:38:14 +0000
committerHui Zhu <teawater@gmail.com>2011-02-21 08:38:14 +0000
commitd0e92d82d87a287847fcd66da278836f7136a3ef (patch)
tree432a9056a4ff0e356ff223fbe228aedef40ba131 /gdb/common
parentc0c8b2f268cd3a8735abed708e08aedd2edd26be (diff)
downloadgdb-d0e92d82d87a287847fcd66da278836f7136a3ef.zip
gdb-d0e92d82d87a287847fcd66da278836f7136a3ef.tar.gz
gdb-d0e92d82d87a287847fcd66da278836f7136a3ef.tar.bz2
2011-02-21 Hui Zhu <teawater@gmail.com>
* Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h. * ax-gdb.c (gen_printf_expr_callback): New function. * ax-gdb.h (gen_printf_expr_callback): Forward declare. * ax-general.c (ax_memcpy): New function. (ax_print): Handle "printf". (ax_reqs): Ditto. * ax.h (ax_memcpy): Forward declare. * common/ax.def (invalid2): Removed. (printf): New entry. * printcmd.c (printcmd.h): New include. (string_printf): New function. (ui_printf): Removed. (printf_command): Remove static. Call string_printf. (eval_command): Call string_printf. * printcmd.h: New file. * tracepoint.c (validate_actionline, encode_actions_1): handle printf_command.
Diffstat (limited to 'gdb/common')
-rw-r--r--gdb/common/ax.def6
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/common/ax.def b/gdb/common/ax.def
index 56ddd4a..f1be688 100644
--- a/gdb/common/ax.def
+++ b/gdb/common/ax.def
@@ -86,12 +86,8 @@ DEFOP (swap, 0, 0, 2, 2, 0x2b)
DEFOP (getv, 2, 0, 0, 1, 0x2c)
DEFOP (setv, 2, 0, 0, 1, 0x2d)
DEFOP (tracev, 2, 0, 0, 1, 0x2e)
-/* We need something here just to make the tables come out ok. */
DEFOP (invalid, 0, 0, 0, 0, 0x2f)
DEFOP (trace16, 2, 0, 1, 1, 0x30)
-/* We need something here just to make the tables come out ok. */
-DEFOP (invalid2, 0, 0, 0, 0, 0x2f)
-/* The "consumed" number for pick is wrong, but there's no way to
- express the right thing. */
+DEFOP (printf, 0, 0, 0, 0, 0x31)
DEFOP (pick, 1, 0, 0, 1, 0x32)
DEFOP (rot, 0, 0, 3, 3, 0x33)