使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理

I use the following simple JavaScript code to illustrate:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Create a new empty tab in your Chrome, and first create a snapshot with empty heap status by click “Take Snapshot” button:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理The Snapshot1 is generated.使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Now switch to tab Console, paste the JavaScript code and execute it in console.

使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理And switch to Profiles tab again to make the second snapshot:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Once done, select the second snapshot, choose “Comparison” and “Snapshot1” as filter:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理We can find out from column “New” that 100 div nodes are created as we expect.使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Since these nodes are not appended to document node so they are invisible to end user, so displayed as “Detached DOM”. The JerryTestArray still holds the reference to each div node so Garbage collector will not touch these nodes.


In order to make Garbage collector recycle the memory occupied by these nodes, just assign another value to JerryTestArray in console:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Once done, make the third snapshot and compare it with the second. Now we can find that the re-assignment to JerryTestArray will trigger the destruction of those 100 div nodes by Garbage collector:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Meanwhile, the string we use in assignment could also be inspected via the combination of filters below:

使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理There is another kind of profile in Chrome development tool which can give you an overview about timeline of memory allocation:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Click Start button in above screenshot, and paste the following code in console and executed:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理After the code is executed, paste the following code and execute:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Now stop the profile. The profile is displayed as below. The highlighted vertical blue line indicates the timeslot when the 97 Span elements are created. Note that the number of Span elements displayed here is not 98 but 97 since Chrome development tool displays the final status of objects after “stop profile” button is clicked ( the reference to 30th Span element is replaced by String, so it is recycled by GC ).使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理You can drag the two vertical bars to define the time range between which you would like to inspect. For example the time range below contains the timeslot when the below assignment occurs:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理With this gained knowledge now we can check the memory allocation and destruction in some real application. For example click tile “My Tasks” to enter this application, make the first snapshot and click back button within application to return to launchpad, and make the second snapshot and review the comparison result.使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理From the result we find out lots of stuff are deleted after we return to launchpad:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理Hover your mouse to a given destructed object and you can review its detail:使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理For more tips How I use Chrome development tool in my daily work, please refer to this blog Chrome Development Tool tips used in my daily work


使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理使用Chrome开发者工具分析JavaScript garbage collector(垃圾回收器)的实现原理


上一篇:Veeam Backup & Replication 6.0 XX版安装


下一篇:MySQL日志文件维护