locate corresponding JS source of code which is not optimized by V8
I try to optimize the performance of a node.js application and therefore I am analyzing the behavior of V8's JIT compiler. When running the application via node --trace_deopt --trace_opt --code_comments --print_optcode ... , the output contains many recurring lines like the following: [didn't find optimized code in optimized code map for 0x490a8b4aa69 <SharedFunctionInfo>] How can I find out which javascript code corresponds to 0x490a8b4aa69 ? The full output is available here . TylerY86 That error message used to be around line 10200 of v8/src/objects.cc , but is no more. It basically means