Changeset 90598 in webkit


Ignore:
Timestamp:
Jul 7, 2011 4:07:41 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

DFG JIT method_check implementation does not link to optimized get_by_id
slow path.
https://bugs.webkit.org/show_bug.cgi?id=64073

Patch by Filip Pizlo <fpizlo@apple.com> on 2011-07-07
Reviewed by Gavin Barraclough.

  • dfg/DFGRepatch.cpp:

(JSC::DFG::dfgRepatchGetMethodFast):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r90586 r90598  
     12011-07-07  Filip Pizlo  <fpizlo@apple.com>
     2
     3        DFG JIT method_check implementation does not link to optimized get_by_id
     4        slow path.
     5        https://bugs.webkit.org/show_bug.cgi?id=64073
     6
     7        Reviewed by Gavin Barraclough.
     8
     9        * dfg/DFGRepatch.cpp:
     10        (JSC::DFG::dfgRepatchGetMethodFast):
     11
    1122011-07-07  Oliver Hunt  <oliver@apple.com>
    213
  • trunk/Source/JavaScriptCore/dfg/DFGRepatch.cpp

    r90529 r90598  
    169169
    170170    // Only optimize once!
    171     repatchBuffer.relink(methodInfo.callReturnLocation, operationGetById);
     171    repatchBuffer.relink(methodInfo.callReturnLocation, operationGetByIdOptimize);
    172172
    173173    methodInfo.cachedStructure.set(*globalData, owner, structure);
Note: See TracChangeset for help on using the changeset viewer.