* iseq.c (insn_operand_intern): add support disasm TS_CALLINFO
operands. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
187ae6d5a7
commit
6990c7f9cd
@ -1,3 +1,8 @@
|
|||||||
|
Thu Oct 11 02:50:34 2012 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* iseq.c (insn_operand_intern): add support disasm TS_CALLINFO
|
||||||
|
operands.
|
||||||
|
|
||||||
Wed Oct 10 15:12:48 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
Wed Oct 10 15:12:48 2012 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* test/ruby/test_process.rb (TestProcess#test_execopts_gid): skip on
|
* test/ruby/test_process.rb (TestProcess#test_execopts_gid): skip on
|
||||||
|
4
iseq.c
4
iseq.c
@ -1040,6 +1040,10 @@ insn_operand_intern(rb_iseq_t *iseq,
|
|||||||
ret = rb_sprintf("<ic:%"PRIdPTRDIFF">", (struct iseq_inline_cache_entry *)op - iseq->ic_entries);
|
ret = rb_sprintf("<ic:%"PRIdPTRDIFF">", (struct iseq_inline_cache_entry *)op - iseq->ic_entries);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case TS_CALLINFO:
|
||||||
|
ret = rb_sprintf("<ci:%"PRIdPTRDIFF">", (struct iseq_inline_cache_entry *)op - iseq->callinfo_entries);
|
||||||
|
break;
|
||||||
|
|
||||||
case TS_CDHASH:
|
case TS_CDHASH:
|
||||||
ret = rb_str_new2("<cdhash>");
|
ret = rb_str_new2("<cdhash>");
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user