From 32ce367ff0de181d8a056d593476352ce041bc7e Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 23 Aug 2018 04:12:14 +0000 Subject: check trace flags at loading [Bug #14702] * iseq.c (iseq_init_trace): at ISeq loading time, we need to check `ruby_vm_event_enabled_flags` to turn on trace instructions. Seprate this checking code from `finish_iseq_build()` and make new function. `iseq_ibf_load()` calls this funcation after loading. * test/ruby/test_iseq.rb: add a test for this fix. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64514 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- iseq.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'iseq.h') diff --git a/iseq.h b/iseq.h index 851eaeabbc..e889a275fc 100644 --- a/iseq.h +++ b/iseq.h @@ -144,6 +144,8 @@ VALUE iseq_ibf_dump(const rb_iseq_t *iseq, VALUE opt); void ibf_load_iseq_complete(rb_iseq_t *iseq); const rb_iseq_t *iseq_ibf_load(VALUE str); VALUE iseq_ibf_load_extra_data(VALUE str); +void iseq_init_trace(rb_iseq_t *iseq); + #if VM_INSN_INFO_TABLE_IMPL == 2 unsigned int *rb_iseq_insns_info_decode_positions(const struct rb_iseq_constant_body *body); #endif -- cgit v1.2.3