Ignore:
Timestamp:
Aug 5, 2014, 4:06:03 PM (11 years ago)
Author:
[email protected]
Message:

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

"Commit landed on trunk instead of ftlopt branch." (Requested
by saamyjoon on #webkit).

Reverted changeset:

"Create a more generic way for VMEntryScope to notify those
interested that it will be destroyed"
https://bugs.webkit.org/show_bug.cgi?id=135358
http://trac.webkit.org/changeset/172009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/debugger/Debugger.cpp

    r172009 r172098  
    336336    // up throwing away code that is live on the stack.
    337337    if (vm->entryScope) {
    338         auto listener = [] (VM* vm, JSGlobalObject* globalObject)
    339         {
    340             Debugger* debugger = globalObject->debugger();
    341             if (debugger)
    342                 debugger->recompileAllJSFunctions(vm);
    343         };
    344 
    345         vm->entryScope->addEntryScopeDidPopListener(this, listener);
     338        vm->entryScope->setRecompilationNeeded(true);
    346339        return;
    347340    }
Note: See TracChangeset for help on using the changeset viewer.