Changeset 112011 in webkit


Ignore:
Timestamp:
Mar 24, 2012 12:13:27 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Increase getByIdSlowCase ConstantSpace/InstructionSpace for CPU(ARM_TRADITIONAL)
https://bugs.webkit.org/show_bug.cgi?id=81521

Increase sequenceGetByIdSlowCaseConstantSpace and sequenceGetByIdSlowCaseInstructionSpace
for CPU(ARM_TRADITIONAL) to fit actual need.

Patch by Yong Li <yoli@rim.com> on 2012-03-24
Reviewed by Oliver Hunt.

  • jit/JIT.h:

(JIT):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r111974 r112011  
     12012-03-24  Yong Li  <yoli@rim.com>
     2
     3        Increase getByIdSlowCase ConstantSpace/InstructionSpace for CPU(ARM_TRADITIONAL)
     4        https://bugs.webkit.org/show_bug.cgi?id=81521
     5
     6        Increase sequenceGetByIdSlowCaseConstantSpace and sequenceGetByIdSlowCaseInstructionSpace
     7        for CPU(ARM_TRADITIONAL) to fit actual need.
     8
     9        Reviewed by Oliver Hunt.
     10
     11        * jit/JIT.h:
     12        (JIT):
     13
    1142012-03-23  Filip Pizlo  <fpizlo@apple.com>
    215
  • trunk/Source/JavaScriptCore/jit/JIT.h

    r111481 r112011  
    453453        static const int sequenceGetByIdHotPathConstantSpace = 4;
    454454        // sequenceGetByIdSlowCase
    455         static const int sequenceGetByIdSlowCaseInstructionSpace = 56;
    456         static const int sequenceGetByIdSlowCaseConstantSpace = 3;
     455        static const int sequenceGetByIdSlowCaseInstructionSpace = 64;
     456        static const int sequenceGetByIdSlowCaseConstantSpace = 4;
    457457        // sequencePutById
    458458        static const int sequencePutByIdInstructionSpace = 36;
Note: See TracChangeset for help on using the changeset viewer.