From d556a4759893243b2a0c0322d75d12ac43869ca0 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 7 Jun 2012 06:54:24 +0000 Subject: [PATCH] * .gdbinit: add function `trace_machine_instructions' to trace in native machine assemble. See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB for more details. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- .gdbinit | 13 +++++++++++++ ChangeLog | 7 +++++++ 2 files changed, 20 insertions(+) diff --git a/.gdbinit b/.gdbinit index c86081f6ec..6481376d48 100644 --- a/.gdbinit +++ b/.gdbinit @@ -755,3 +755,16 @@ define rb_ps_thread set $ps_thread_id = $arg1 print $ps_thread_th = (rb_thread_t*)$ps_thread->data end + +# Details: https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB +define trace_machine_instructions + set logging on + set height 0 + set width 0 + display/i $pc + while !$exit_code + info line *$pc + si + end +end + diff --git a/ChangeLog b/ChangeLog index 405a24da5d..a083cd720c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Thu Jun 07 15:53:03 2012 Koichi Sasada + + * .gdbinit: add function `trace_machine_instructions' to trace + in native machine assemble. + See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB + for more details. + Wed Jun 6 21:31:21 2012 Tanaka Akira * process.c (proc_exec_cmd) renamed from proc_exec_v.