Changeset 49874 in webkit


Ignore:
Timestamp:
Oct 20, 2009 11:41:41 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-10-20 Gabor Loki <loki@inf.u-szeged.hu>

Reviewed by Geoffrey Garen.

The op_next_pname should use 4 bytes addressing mode in case of JSValue32
https://bugs.webkit.org/show_bug.cgi?id=30570

  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_next_pname):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r49845 r49874  
     12009-10-20  Gabor Loki  <loki@inf.u-szeged.hu>
     2
     3        Reviewed by Geoffrey Garen.
     4
     5        The op_next_pname should use 4 bytes addressing mode in case of JSValue32
     6        https://bugs.webkit.org/show_bug.cgi?id=30570
     7
     8        * jit/JITOpcodes.cpp:
     9        (JSC::JIT::emit_op_next_pname):
     10
    1112009-10-20  Gabor Loki  <loki@inf.u-szeged.hu>
    212
  • trunk/JavaScriptCore/jit/JITOpcodes.cpp

    r49795 r49874  
    25012501    loadPtr(addressFor(it), regT1);
    25022502    loadPtr(Address(regT1, OBJECT_OFFSETOF(JSPropertyNameIterator, m_jsStrings)), regT2);
    2503     loadPtr(BaseIndex(regT2, regT0, TimesEight), regT2);
     2503    loadPtr(BaseIndex(regT2, regT0, TimesFour), regT2);
    25042504    emitPutVirtualRegister(dst, regT2);
    25052505
Note: See TracChangeset for help on using the changeset viewer.