Created
February 2, 2016 20:06
-
-
Save joewagner/d89ff977e47e039387f0 to your computer and use it in GitHub Desktop.
Demonstrates v8 optimization for reassigning vs. not reassigning `arguments` object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// reassigning an argument | |
function argReassign1(a) { | |
a = a || {}; | |
} | |
// not reassigning an argument | |
function argReassign2(a) { | |
if (a === void 0) var a = {}; | |
} | |
function printStatus(fn) { | |
switch(%GetOptimizationStatus(fn)) { | |
case 1: console.log("Function is optimized"); break; | |
case 2: console.log("Function is not optimized"); break; | |
case 3: console.log("Function is always optimized"); break; | |
case 4: console.log("Function is never optimized"); break; | |
case 6: console.log("Function is maybe deoptimized"); break; | |
case 7: console.log("Function is optimized by TurboFan"); break; | |
default: console.log("Unknown optimization status"); break; | |
} | |
} | |
// 2 calls each are needed to go from uninitialized -> pre-monomorphic -> monomorphic | |
argReassign1({}); | |
argReassign2({}); | |
argReassign1({}); | |
argReassign2({}); | |
%OptimizeFunctionOnNextCall(argReassign1); | |
//The next call | |
argReassign1() | |
console.log('argReassign1:'); | |
//Check | |
printStatus(argReassign1); | |
%OptimizeFunctionOnNextCall(argReassign2); | |
//The next call | |
argReassign2() | |
console.log('argReassign2:'); | |
//Check | |
printStatus(argReassign2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dug in a little further with
--trace-opt
, but doesn't seem like there's any bailout reason specifically for argReassign1.