admin管理员组文章数量:1342534
Searching for some memory leak in a Javascript application, I try to use the Chrome DevTools Profiler. Is there some detailed information describing all entries that might be found in it?
For example, after performing a simple "open homepage, open another page, return to homepage" and looking at the snapshots' parison, I can find the line "(array)" which has a large objects count and interests me. When opening that node, I see thousands of lines like...
- (script line ends)[] @89876
- (transition array)[] @748323
- (object properties)[] @77529
- (map descriptors)[] @13823
- (code relocation info)[] @722653
- [] @748003
- (object elements)[] @40917
Where can I read about that?
Searching for some memory leak in a Javascript application, I try to use the Chrome DevTools Profiler. Is there some detailed information describing all entries that might be found in it?
For example, after performing a simple "open homepage, open another page, return to homepage" and looking at the snapshots' parison, I can find the line "(array)" which has a large objects count and interests me. When opening that node, I see thousands of lines like...
- (script line ends)[] @89876
- (transition array)[] @748323
- (object properties)[] @77529
- (map descriptors)[] @13823
- (code relocation info)[] @722653
- [] @748003
- (object elements)[] @40917
Where can I read about that?
Share Improve this question edited Nov 14, 2013 at 7:25 Kara 6,22616 gold badges53 silver badges58 bronze badges asked Sep 18, 2013 at 11:20 mgsmgs 5,1862 gold badges19 silver badges17 bronze badges1 Answer
Reset to default 14There are number of different v8 internal things in the heap that cannot be accessed from javascript.
As example (script line ends) is an array that have line end offsets for a script. v8 needs it for setting up a breakpoint.
Each time when you create an object, v8 does many things and allocates memory for them. See Lars Bak video about v8. http://www.youtube./watch?v=hWhMKalEicY
If you are interesting in the topic there are number of slides and presentations about v8 internals.
The simplest way to find a leak is to use "Record Heap Allocations" profile. It shows you a "realtime" chart with allocations.
you need to start the recording, repeat your scenario a few times and if the code has a leak then you will see the same number of blue vertical bars on the chart. So you should stop the recording and select the blue bar somewhere in the middle and see what objects it has.
the first blue bar is not interesting because it could have allocations that were made only once.
the last one also is not interesting because it might have allocations that will be released at the next repeat of your scenario.
So the best candidate is a bar in the middle. http://www.youtube./watch?v=x9Jlu_h_Lyw
The most interesting items are the objects that were created by your script.
本文标签: javascriptChrome DevTools ProfilerStack Overflow
版权声明:本文标题:javascript - Chrome DevTools Profiler - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743699787a2524120.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论