javascript - Chrome DevTools Profiler - Stack Overflow

Searching for some memory leak in a Javascript application, I try to use the Chrome DevTools Profiler.

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 badges
Add a ment  | 

1 Answer 1

Reset to default 14

There 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743699788a4492372.html

相关推荐

  • javascript - Chrome DevTools Profiler - Stack Overflow

    Searching for some memory leak in a Javascript application, I try to use the Chrome DevTools Profiler.

    16小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信