Changeset 161554 in webkit


Ignore:
Timestamp:
Jan 9, 2014 7:50:54 AM (10 years ago)
Author:
akling@apple.com
Message:

Shrink WatchpointSet.
<https://webkit.org/b/126694>

Reorder the members of WatchpointSet, shrinking it by 8 bytes.
767 kB progression on Membuster3.

Reviewed by Antti Koivisto.

  • bytecode/Watchpoint.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r161544 r161554  
     12014-01-09  Andreas Kling  <akling@apple.com>
     2
     3        Shrink WatchpointSet.
     4        <https://webkit.org/b/126694>
     5
     6        Reorder the members of WatchpointSet, shrinking it by 8 bytes.
     7        767 kB progression on Membuster3.
     8
     9        Reviewed by Antti Koivisto.
     10
     11        * bytecode/Watchpoint.h:
     12
    1132014-01-08  Mark Hahnenberg  <mhahnenberg@apple.com>
    214
  • trunk/Source/JavaScriptCore/bytecode/Watchpoint.h

    r160109 r161554  
    133133   
    134134    friend class InlineWatchpointSet;
    135    
    136     SentinelLinkedList<Watchpoint, BasicRawSentinelNode<Watchpoint>> m_set;
     135
    137136    int8_t m_state;
    138137    int8_t m_setIsNotEmpty;
     138
     139    SentinelLinkedList<Watchpoint, BasicRawSentinelNode<Watchpoint>> m_set;
    139140};
    140141
Note: See TracChangeset for help on using the changeset viewer.