From 1bf8b67c4f9a8d7d8439b780792ef434a2928abe Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 20 Sep 2013 04:53:04 +0000 Subject: .gdbinit: rp_id * .gdbinit (rp_id): extract from rp and rb_id2name. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42983 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- .gdbinit | 161 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 86 insertions(+), 75 deletions(-) diff --git a/.gdbinit b/.gdbinit index 175c8481ed..d649efea81 100644 --- a/.gdbinit +++ b/.gdbinit @@ -27,75 +27,8 @@ define rp else if ((VALUE)($arg0) & ~(~(VALUE)0<> RUBY_SPECIAL_SHIFT) - if $id == '!' || $id == '+' || $id == '-' || $id == '*' || $id == '/' || $id == '%' || $id == '<' || $id == '>' || $id == '`' - printf "SYMBOL(:%c)\n", $id - else - if $id == idDot2 - printf "%sSYMBOL%s(:..)\n", $color_type, $color_end - else - if $id == idDot3 - printf "%sSYMBOL%s(:...)\n", $color_type, $color_end - else - if $id == idUPlus - printf "%sSYMBOL%s(:+@)\n", $color_type, $color_end - else - if $id == idUMinus - printf "%sSYMBOL%s(:-@)\n", $color_type, $color_end - else - if $id == idPow - printf "%sSYMBOL%s(:**)\n", $color_type, $color_end - else - if $id == idCmp - printf "%sSYMBOL%s(:<=>)\n", $color_type, $color_end - else - if $id == idLTLT - printf "%sSYMBOL%s(:<<)\n", $color_type, $color_end - else - if $id == idLE - printf "%sSYMBOL%s(:<=)\n", $color_type, $color_end - else - if $id == idGE - printf "%sSYMBOL%s(:>=)\n", $color_type, $color_end - else - if $id == idEq - printf "%sSYMBOL%s(:==)\n", $color_type, $color_end - else - if $id == idEqq - printf "%sSYMBOL%s(:===)\n", $color_type, $color_end - else - if $id == idNeq - printf "%sSYMBOL%s(:!=)\n", $color_type, $color_end - else - if $id == idEqTilde - printf "%sSYMBOL%s(:=~)\n", $color_type, $color_end - else - if $id == idNeqTilde - printf "%sSYMBOL%s(:!~)\n", $color_type, $color_end - else - if $id == idAREF - printf "%sSYMBOL%s(:[])\n", $color_type, $color_end - else - if $id == idASET - printf "%sSYMBOL%s(:[]=)\n", $color_type, $color_end - else - printf "%sSYMBOL%s(%ld)\n", $color_type, $color_end, $id - end - end - end - end - end - end - end - end - end - end - end - end - end - end - end - end - end + printf "%sSYMBOL%s", $color_type, $color_end + rp_id $id else if ($arg0) == RUBY_Qfalse echo false\n @@ -362,6 +295,88 @@ document rp Print a Ruby's VALUE. end +define rp_id + set $id = (ID)$arg0 + if $id == '!' || $id == '+' || $id == '-' || $id == '*' || $id == '/' || $id == '%' || $id == '<' || $id == '>' || $id == '`' + printf "(:%c)\n", $id + else + if $id == idDot2 + printf "(:..)\n" + else + if $id == idDot3 + printf "(:...)\n" + else + if $id == idUPlus + printf "(:+@)\n" + else + if $id == idUMinus + printf "(:-@)\n" + else + if $id == idPow + printf "(:**)\n" + else + if $id == idCmp + printf "(:<=>)\n" + else + if $id == idLTLT + printf "(:<<)\n" + else + if $id == idLE + printf "(:<=)\n" + else + if $id == idGE + printf "(:>=)\n" + else + if $id == idEq + printf "(:==)\n" + else + if $id == idEqq + printf "(:===)\n" + else + if $id == idNeq + printf "(:!=)\n" + else + if $id == idEqTilde + printf "(:=~)\n" + else + if $id == idNeqTilde + printf "(:!~)\n" + else + if $id == idAREF + printf "(:[])\n" + else + if $id == idASET + printf "(:[]=)\n" + else + printf "(%ld): ", $id + rb_numtable_entry global_symbols.id_str $id + if $rb_numtable_rec + rp $rb_numtable_rec + else + echo undef\n + end + end + end + end + end + end + end + end + end + end + end + end + end + end + end + end + end + end +end +document rp_id + Print an ID. +end + define rp_class printf "(struct RClass *) %p", (void*)$arg0 if ((struct RClass *)($arg0))->ptr.origin != $arg0 @@ -689,12 +704,8 @@ define rb_numtable_entry end define rb_id2name - rb_numtable_entry global_symbols.id_str (ID)$arg0 - if $rb_numtable_rec - rp $rb_numtable_rec - else - echo undef\n - end + printf "%sID%s: ", $color_type, $color_end + rp_id $arg0 end document rb_id2name Print the name of id -- cgit v1.2.3