author | Jan de Mooij <jdemooij@mozilla.com> |
Mon, 23 Nov 2015 12:49:50 +0100 | |
changeset 273819 | 31c4223041fbdb74d72a08ea873220c3c49d1450 |
parent 273818 | a96f1eaabfcebe2606c1f1310c023f7486de5291 |
child 273820 | cd57cd70de74e5939870db91c32ecbc813f372af |
push id | 29715 |
push user | kwierso@gmail.com |
push date | Tue, 24 Nov 2015 21:54:25 +0000 |
treeherder | mozilla-central@d9243e369c22 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | h4writer |
bugs | 1132183 |
milestone | 45.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/jit/JitOptions.cpp +++ b/js/src/jit/JitOptions.cpp @@ -154,17 +154,17 @@ JitOptions::JitOptions() // How many actual arguments are accepted on the C stack. SET_DEFAULT(maxStackArgs, 4096); // How many times we will try to enter a script via OSR before // invalidating the script. SET_DEFAULT(osrPcMismatchesBeforeRecompile, 6000); // The bytecode length limit for small function. - SET_DEFAULT(smallFunctionMaxBytecodeLength_, 100); + SET_DEFAULT(smallFunctionMaxBytecodeLength_, 120); // Force how many invocation or loop iterations are needed before compiling // a function with the highest ionmonkey optimization level. // (i.e. OptimizationLevel_Normal) const char* forcedDefaultIonWarmUpThresholdEnv = "JIT_OPTION_forcedDefaultIonWarmUpThreshold"; if (const char* env = getenv(forcedDefaultIonWarmUpThresholdEnv)) { Maybe<int> value = ParseInt(env); if (value.isSome())