- 
                Notifications
    
You must be signed in to change notification settings  - Fork 29
 
Open
Labels
bugSomething isn't workingSomething isn't working
Description
I think this:
Lines 72 to 73 in a8d4d5c
| for (let i = tick.s.length; i >= 0; i -= 2) { | |
| const code = log.code[tick.s[i]]; | 
should be i = tick.s.length - 1, otherwise this is going to consistently access something out of bounds in the tick.s array. Possibly you want it to be tick.s.length - 2 in order to retain alignment with the alternation between C++ and JavaScript stacks?
Thanks for writing this, by the way!
I'm using this as reference for importing v8 logs into speedscope (https://github.com/jlfwong/speedscope)
mourner and mannyluvstacos
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working