Changeset 180651 in webkit


Ignore:
Timestamp:
Feb 25, 2015 5:24:33 PM (9 years ago)
Author:
rniwa@webkit.org
Message:

REGRESSION(r180595): construct varargs fails in FTL
https://bugs.webkit.org/show_bug.cgi?id=142030

Reviewed by Geoffrey Garen.

The bug was caused by IC size being too small for construct_varargs even though we've added a new argument.
Fixed the bug by increasing the IC size to match call_varargs.

  • ftl/FTLInlineCacheSize.cpp:

(JSC::FTL::sizeOfConstructVarargs):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r180649 r180651  
     12015-02-25  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        REGRESSION(r180595): construct varargs fails in FTL
     4        https://bugs.webkit.org/show_bug.cgi?id=142030
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        The bug was caused by IC size being too small for construct_varargs even though we've added a new argument.
     9        Fixed the bug by increasing the IC size to match call_varargs.
     10
     11        * ftl/FTLInlineCacheSize.cpp:
     12        (JSC::FTL::sizeOfConstructVarargs):
     13
    1142015-02-25  Mark Lam  <mark.lam@apple.com>
    215
  • trunk/Source/JavaScriptCore/ftl/FTLInlineCacheSize.cpp

    r180279 r180651  
    9595{
    9696#if CPU(ARM64)
    97     return 284;
     97    return 300;
    9898#else
    99     return 253;
     99    return 275;
    100100#endif
    101101}
Note: See TracChangeset for help on using the changeset viewer.