溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

發(fā)布時間:2021-09-30 15:42:19 來源:億速云 閱讀:169 作者:柒染 欄目:web開發(fā)

本篇文章為大家展示了如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn),內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

As the size of my blog  Chrome Development Tool tips used in my daily work turns to be larger I create a separate post to record down this small tip. Are you curious about the “native code” here? At least I am.

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

Today I find that the Profiles tab in Chrome development tool can help us to unveil the mysteries to some degree. In Chrome development, just select this checkbox:

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

And then execute the simple JavaScript code below:

var arr = [];for (var i=0; i<1000; i++){
    arr.push(i)}console.profile("Array toString");for( var i = 0; i < 1000; i++){
    var a = arr.toString();}console.profileEnd("Array toString");

Once done, you can see a profile record with the name specified in JavaScript code above, “Array toString”. Hover the mouse to the first row, “anonymous function”, we find the hint “array.js”.

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

Switch display style from Chart to Tree:

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

From here the callstack of native implementation of toString is displayed:

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

The next step is to look into in array.js. Launch url: https:// Click this hyperlink:

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

now you can find the array.js file via path: src/v8/src/js/array.js

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

The callstack analyzed through the source code exactly matches the one we get in Chrome development tool Profile tab: ArrayToString will delegate to Join if current caller is an Array:

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

Join will call DoJoin:

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

DoJoin will first call UseSparseVariant to evaluate the possibility to perform Join via SparseVariant. If not possible, call ConvertToString as fall back. ( The line number of source code may vary with the one you see in Chrome Development Tool profile tab due to the different version of Chrome being used. )

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

If you could not tolerate the poor performance of this online source code repository, you could download the whole source code of V8 to your local laptop by cloning this github repository: https:///v8/v8.git/

如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn)

上述內(nèi)容就是如何使用Chrome開發(fā)者工具研究JavaScript里函數(shù)的原生實現(xiàn),你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI