From: "ko1 (Koichi Sasada)" Date: 2013-06-29T23:04:11+09:00 Subject: [ruby-core:55701] [ruby-trunk - Bug #8538] c method not pushed into the callstack when called, but popped when returned Issue #8538 has been updated by ko1 (Koichi Sasada). Category set to core Assignee set to ko1 (Koichi Sasada) Target version set to current: 2.1.0 Is it similar problem of the following? [ruby-core:52971] [ruby-trunk - Bug #7976][Open] TracePoint call is at call point, not call site # I will back from Euruko-mode in a few days. ---------------------------------------- Bug #8538: c method not pushed into the callstack when called, but popped when returned https://bugs.ruby-lang.org/issues/8538#change-40198 Author: deivid (David Rodr��guez) Status: Open Priority: Normal Assignee: ko1 (Koichi Sasada) Category: core Target version: current: 2.1.0 ruby -v: ruby 2.0.0p195 (2013-05-14) [i686-linux] Backport: 1.9.3: UNKNOWN, 2.0.0: UNKNOWN See the following example: trace = TracePoint.new do |tp| puts "Event: #{tp.event}, Method: #{tp.method_id}\n" puts "Stack: #{caller}\n\n" end trace.enable fail "bang!" The output shows: Event: c_return, Method: enable Stack: ["trace.rb:6:in `
'"] Event: line, Method: Stack: ["trace.rb:8:in `
'"] Event: c_call, Method: fail Stack: ["trace.rb:8:in `
'"] Event: c_call, Method: new Stack: ["trace.rb:8:in `fail'", "trace.rb:8:in `
'"] Event: c_call, Method: initialize Stack: ["trace.rb:8:in `new'", "trace.rb:8:in `fail'", "trace.rb:8:in `
'"] Event: c_return, Method: initialize Stack: ["trace.rb:8:in `new'", "trace.rb:8:in `fail'", "trace.rb:8:in `
'"] Event: c_return, Method: new Stack: ["trace.rb:8:in `fail'", "trace.rb:8:in `
'"] Event: c_call, Method: backtrace Stack: ["trace.rb:8:in `
'"] Event: c_return, Method: backtrace Stack: ["trace.rb:8:in `
'"] Event: raise, Method: Stack: ["trace.rb:8:in `
'"] Event: c_return, Method: fail Stack: ["trace.rb:8:in `
'"] trace.rb:8:in `
': bang! (RuntimeError) It looks like the method "initialize" is not pushed into the stack when called, but something (the previous method call) is popped when returning from it. Thanks a lot. -- http://bugs.ruby-lang.org/