[前][次][番号順一覧][スレッド一覧]

ruby-changes:25080

From: ko1 <ko1@a...>
Date: Thu, 11 Oct 2012 02:52:41 +0900 (JST)
Subject: [ruby-changes:25080] ko1:r37132 (trunk): * iseq.c (insn_operand_intern): add support disasm TS_CALLINFO

ko1	2012-10-11 02:52:24 +0900 (Thu, 11 Oct 2012)

  New Revision: 37132

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37132

  Log:
    * iseq.c (insn_operand_intern): add support disasm TS_CALLINFO
      operands.

  Modified files:
    trunk/ChangeLog
    trunk/iseq.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37131)
+++ ChangeLog	(revision 37132)
@@ -1,3 +1,8 @@
+Thu Oct 11 02:50:34 2012  Koichi Sasada  <ko1@a...>
+
+	* iseq.c (insn_operand_intern): add support disasm TS_CALLINFO
+	  operands.
+
 Wed Oct 10 15:12:48 2012  NAKAMURA Usaku  <usa@r...>
 
 	* test/ruby/test_process.rb (TestProcess#test_execopts_gid): skip on
Index: iseq.c
===================================================================
--- iseq.c	(revision 37131)
+++ iseq.c	(revision 37132)
@@ -1040,6 +1040,10 @@
 	ret = rb_sprintf("<ic:%"PRIdPTRDIFF">", (struct iseq_inline_cache_entry *)op - iseq->ic_entries);
 	break;
 
+      case TS_CALLINFO:
+	ret = rb_sprintf("<ci:%"PRIdPTRDIFF">", (struct iseq_inline_cache_entry *)op - iseq->callinfo_entries);
+	break;
+
       case TS_CDHASH:
 	ret = rb_str_new2("<cdhash>");
 	break;

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]