Re: [v8-dev] Tracking Script which are executing microtasks by ScriptId

2019-04-22 Thread pmmurley830
I've been trying to implement this for a while without any success, really, and I'm wondering if I can get a little more guidance. I have a logging function set up in the Isolate class, and my understanding is that I need to add an external reference to that function in order to call it from

Re: [v8-dev] Tracking Script which are executing microtasks by ScriptId

2019-04-04 Thread Ben Noordhuis
On Tue, Apr 2, 2019 at 8:38 PM wrote: > I am trying to track which scripts are responsible for executing microtasks > (by ScriptId). > > I am instrumenting MicrotaskQueue::RunMicrotasks to show when microtask > execution begins and ends, but I want to track which script is responsible > for

[v8-dev] Tracking Script which are executing microtasks by ScriptId

2019-04-02 Thread pmmurley830
I am trying to track which scripts are responsible for executing microtasks (by ScriptId). I am instrumenting MicrotaskQueue::RunMicrotasks to show when microtask execution begins and ends, but I want to track which script is responsible for things that happen during microtask execution.