Ignore:
Timestamp:
Oct 14, 2013, 2:59:41 PM (12 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r157413.
http://trac.webkit.org/changeset/157413
https://bugs.webkit.org/show_bug.cgi?id=122779

Appears to have caused frequent crashes (Requested by ap on
#webkit).

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • JavaScriptCore.vcxproj/JavaScriptCore.vcxproj:
  • JavaScriptCore.vcxproj/JavaScriptCore.vcxproj.filters:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • heap/DeferGC.cpp: Removed.
  • heap/DeferGC.h:
  • jit/JITStubs.cpp:

(JSC::tryCacheGetByID):
(JSC::DEFINE_STUB_FUNCTION):

  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):

  • runtime/ConcurrentJITLock.h:
  • runtime/InitializeThreading.cpp:

(JSC::initializeThreadingOnce):

  • runtime/JSCellInlines.h:

(JSC::allocateCell):

  • runtime/Structure.cpp:

(JSC::Structure::materializePropertyMap):
(JSC::Structure::putSpecificValue):
(JSC::Structure::createPropertyMap):

  • runtime/Structure.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/JSCellInlines.h

    r157413 r157424  
    2828
    2929#include "CallFrame.h"
    30 #include "DeferGC.h"
    3130#include "Handle.h"
    3231#include "JSCell.h"
     
    8786void* allocateCell(Heap& heap, size_t size)
    8887{
    89     ASSERT(!DisallowGC::isGCDisallowedOnCurrentThread());
    9088    ASSERT(size >= sizeof(T));
    9189#if ENABLE(GC_VALIDATION)
Note: See TracChangeset for help on using the changeset viewer.