DescriptionImprove stack traces for async functions
This patch tracks the stack of async functions differently from other
Promise async stack tracking. With this patch, the stack trace of a
callstack of async functions should look similarly to the call stack
if all of the functions were synchronous. An example can be found in
the updated test expectations: https://codereview.chromium.org/2362923002 .
The new stack traces are implemented using existing mechanisms in the
inspector. The inspector has two ways to save async stack traces: recurring
and non-recurring stacks. An example of a non-recurring stack is setTimeout,
and a recurring one is saved for setInterval. Recurring stacks are deleted
only when a special "cancel" function is called, rather than being deleted
after being used the first time. Previous Promise async stack tracking always
used non-recurring stacks.
For async functions, this patch saves a recurring stack. The top frame of
the stack is duplicated, as the resuming function contains a similar frame;
the devtools frontend is responsible for removing or marking this frame,
which it can do based on seeing the [async function] line which follows it.
The second frame will instead be provided by the resuming execution
context. The recurring stack is saved when the async function is entered, and
it is deleted from a finally block. The id of the stack is saved in the outer
Promise being constructed by the async function. When an intermediate
throwaway Promise will be triggered as a reaction, it will be identified as
such based on its debugging metadata, and the corresponding async function's
recurring stack will be used.
BUG=v8:4483
Committed: https://crrev.com/f296dad962e452ced1e5396b9ced7203747f7209
Cr-Commit-Position: refs/heads/master@{#39695}
Patch Set 1 #Patch Set 2 : Change around resume id #Patch Set 3 : Pop off the top of the inspector's stack #Patch Set 4 : Async function stack traces #Patch Set 5 : Better data model #Patch Set 6 : Cleanup and fix test #Patch Set 7 : Rebase #
Total comments: 2
Patch Set 8 : Make skipping the top stack frame a private API #Patch Set 9 : Format #
Total comments: 6
Patch Set 10 : Remove skipInitialFrame #Patch Set 11 : Remove skipInitialFrame #Patch Set 12 : REbase #
Messages
Total messages: 37 (23 generated)
|