Changeset 208866 in webkit


Ignore:
Timestamp:
Nov 17, 2016, 4:23:34 PM (8 years ago)
Author:
mark.lam@apple.com
Message:

Inlining should be disallowed when JSC_alwaysUseShadowChicken=true.
https://bugs.webkit.org/show_bug.cgi?id=164893
<rdar://problem/29146436>

Reviewed by Saam Barati.

  • runtime/Options.cpp:

(JSC::recomputeDependentOptions):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r208860 r208866  
     12016-11-17  Mark Lam  <mark.lam@apple.com>
     2
     3        Inlining should be disallowed when JSC_alwaysUseShadowChicken=true.
     4        https://bugs.webkit.org/show_bug.cgi?id=164893
     5        <rdar://problem/29146436>
     6
     7        Reviewed by Saam Barati.
     8
     9        * runtime/Options.cpp:
     10        (JSC::recomputeDependentOptions):
     11
    1122016-11-17  Filip Pizlo  <fpizlo@apple.com>
    213
  • trunk/Source/JavaScriptCore/runtime/Options.cpp

    r208777 r208866  
    384384    Options::useSeparatedWXHeap() = true;
    385385#endif
     386
     387    if (Options::alwaysUseShadowChicken())
     388        Options::maximumInliningDepth() = 1;
    386389
    387390    // Compute the maximum value of the reoptimization retry counter. This is simply
Note: See TracChangeset for help on using the changeset viewer.