From 103a0b9869c04d9522a4233f1f43a97cc91c5ae3 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 4 Oct 2018 14:00:39 +0000 Subject: [PATCH] lldb_rp: support Symbol [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- misc/lldb_cruby.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/misc/lldb_cruby.py b/misc/lldb_cruby.py index 266a024e2e..d411b32ecf 100755 --- a/misc/lldb_cruby.py +++ b/misc/lldb_cruby.py @@ -55,6 +55,9 @@ def fixnum_p(x): def flonum_p(x): return (x&RUBY_FLONUM_MASK) == RUBY_FLONUM_FLAG +def static_sym_p(x): + return (x&~(~0<> result, num >> 1 elif flonum_p(num): append_command_output(debugger, "print rb_float_value(%0#x)" % val.GetValueAsUnsigned(), result) + elif static_sym_p(num): + if num < 128: + print >> result, "T_SYMBOL: %c" % num + else: + print >> result, "T_SYMBOL: (%x)" % num elif num & RUBY_IMMEDIATE_MASK: print >> result, 'immediate(%x)' % num else: @@ -120,6 +128,9 @@ def lldb_rp(debugger, command, result, internal_dict): print >> result, val.GetValueForExpressionPath("->as.heap") else: print >> result, val.GetValueForExpressionPath("->as.ary") + elif flType == RUBY_T_SYMBOL: + tRSymbol = target.FindFirstType("struct RSymbol").GetPointerType() + print >> result, val.Cast(tRSymbol).Dereference() elif flType == RUBY_T_ARRAY: tRArray = target.FindFirstType("struct RArray").GetPointerType() val = val.Cast(tRArray)