Changeset 127778 in webkit


Ignore:
Timestamp:
Sep 6, 2012 12:54:14 PM (12 years ago)
Author:
yuqiang.xian@intel.com
Message:

Performance regressions on 32-bit platforms with revisions 125637 and 126387
https://bugs.webkit.org/show_bug.cgi?id=95953

Reviewed by Filip Pizlo.

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emit_op_get_by_val): Fix the typo.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r127774 r127778  
     12012-09-06  Yuqiang Xian  <yuqiang.xian@intel.com>
     2
     3        Performance regressions on 32-bit platforms with revisions 125637 and 126387
     4        https://bugs.webkit.org/show_bug.cgi?id=95953
     5
     6        Reviewed by Filip Pizlo.
     7
     8        * jit/JITPropertyAccess32_64.cpp:
     9        (JSC::JIT::emit_op_get_by_val): Fix the typo.
     10
    1112012-09-05  Geoffrey Garen  <ggaren@apple.com>
    212
  • trunk/Source/JavaScriptCore/jit/JITPropertyAccess32_64.cpp

    r127202 r127778  
    214214    storePtr(regT1, currentInstruction[4].u.arrayProfile->addressOfLastSeenStructure());
    215215#endif
    216     addSlowCase(branchPtr(NotEqual, Address(regT1, JSCell::classInfoOffset()), TrustedImmPtr(&JSArray::s_info)));
     216    addSlowCase(branchPtr(NotEqual, Address(regT1, Structure::classInfoOffset()), TrustedImmPtr(&JSArray::s_info)));
    217217   
    218218    loadPtr(Address(regT0, JSArray::storageOffset()), regT3);
Note: See TracChangeset for help on using the changeset viewer.