Changeset 237645 in webkit
- Timestamp:
- Oct 31, 2018, 11:44:11 AM (8 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/Options.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r237641 r237645 1 2018-10-31 Tadeu Zagallo <tzagallo@apple.com> 2 3 Adjust inlining threshold for new bytecode format 4 https://bugs.webkit.org/show_bug.cgi?id=191115 5 6 Reviewed by Saam Barati. 7 8 The new format reduced the number of operands for many opcodes, which 9 changed inlining decisions and impacted performance negatively. 10 11 * runtime/Options.h: 12 1 13 2018-10-31 Tadeu Zagallo <tzagallo@apple.com> 2 14 -
trunk/Source/JavaScriptCore/runtime/Options.h
r237266 r237645 304 304 v(unsigned, maximumOptimizationCandidateInstructionCount, 100000, Normal, nullptr) \ 305 305 \ 306 v(unsigned, maximumFunctionForCallInlineCandidateInstructionCount, 1 90, Normal, nullptr) \306 v(unsigned, maximumFunctionForCallInlineCandidateInstructionCount, 120, Normal, nullptr) \ 307 307 v(unsigned, maximumFunctionForClosureCallInlineCandidateInstructionCount, 100, Normal, nullptr) \ 308 308 v(unsigned, maximumFunctionForConstructInlineCandidateInstructionCount, 100, Normal, nullptr) \
Note:
See TracChangeset
for help on using the changeset viewer.