Changeset 196369 in webkit


Ignore:
Timestamp:
Feb 10, 2016 10:13:24 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Unreviewed, rolling out r196251.
https://bugs.webkit.org/show_bug.cgi?id=154078

Large regression on Dromaeo needs explanation (Requested by
kling on #webkit).

Reverted changeset:

"Visiting a WeakBlock should report bytes visited, since we
reported them allocated."
https://bugs.webkit.org/show_bug.cgi?id=153978
http://trac.webkit.org/changeset/196251

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r196368 r196369  
     12016-02-10  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r196251.
     4        https://bugs.webkit.org/show_bug.cgi?id=154078
     5
     6        Large regression on Dromaeo needs explanation (Requested by
     7        kling on #webkit).
     8
     9        Reverted changeset:
     10
     11        "Visiting a WeakBlock should report bytes visited, since we
     12        reported them allocated."
     13        https://bugs.webkit.org/show_bug.cgi?id=153978
     14        http://trac.webkit.org/changeset/196251
     15
    1162016-02-10  Csaba Osztrogonác  <ossy@webkit.org>
    217
  • trunk/Source/JavaScriptCore/heap/SlotVisitor.h

    r196251 r196369  
    106106   
    107107    void reportExtraMemoryVisited(size_t);
    108     void reportMemoryVisited(size_t bytes) { m_bytesVisited += bytes; }
    109108   
    110109    void addWeakReferenceHarvester(WeakReferenceHarvester*);
  • trunk/Source/JavaScriptCore/heap/WeakBlock.cpp

    r196251 r196369  
    110110    SlotVisitor& visitor = heapRootVisitor.visitor();
    111111
    112     visitor.reportMemoryVisited(WeakBlock::blockSize);
    113 
    114112    for (size_t i = 0; i < weakImplCount(); ++i) {
    115113        WeakImpl* weakImpl = &weakImpls()[i];
Note: See TracChangeset for help on using the changeset viewer.