Skip to content

Commit

Permalink
rbi
Browse files Browse the repository at this point in the history
.gdbinit (rbi): show the content of LINK_ELEMENT*.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Nov 10, 2015
1 parent 7b8986f commit f12746d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gdbinit
Original file line number Diff line number Diff line change
Expand Up @@ -949,3 +949,18 @@ define SDR
call rb_vmdebug_stack_dump_raw_current()
end

define rbi
if ((LINK_ELEMENT*)$arg0)->type == ISEQ_ELEMENT_LABEL
p *(LABEL*)$arg0
else
if ((LINK_ELEMENT*)$arg0)->type == ISEQ_ELEMENT_INSN
p *(INSN*)$arg0
else
if ((LINK_ELEMENT*)$arg0)->type == ISEQ_ELEMENT_ADJUST
p *(ADJUST*)$arg0
else
print *$arg0
end
end
end
end

0 comments on commit f12746d

Please sign in to comment.