Ignore:
Timestamp:
Jan 29, 2015, 8:28:36 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r179357 and r179358.
https://bugs.webkit.org/show_bug.cgi?id=141062

Suspect this caused WebGL tests to start flaking (Requested by
kling on #webkit).

Reverted changesets:

"Polymorphic call inlining should be based on polymorphic call
inline caching rather than logging"
https://bugs.webkit.org/show_bug.cgi?id=140660
http://trac.webkit.org/changeset/179357

"Unreviewed, fix no-JIT build."
http://trac.webkit.org/changeset/179358

Patch by Commit Queue <[email protected]> on 2015-01-29

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/runtime/VM.cpp

    r179357 r179392  
    370370}
    371371
     372CallEdgeLog& VM::ensureCallEdgeLog()
     373{
     374    if (!callEdgeLog)
     375        callEdgeLog = std::make_unique<CallEdgeLog>();
     376    return *callEdgeLog;
     377}
     378
    372379#if ENABLE(JIT)
    373380static ThunkGenerator thunkGeneratorForIntrinsic(Intrinsic intrinsic)
     
    453460void VM::prepareToDiscardCode()
    454461{
     462    if (callEdgeLog)
     463        callEdgeLog->processLog();
     464   
    455465#if ENABLE(DFG_JIT)
    456466    for (unsigned i = DFG::numberOfWorklists(); i--;) {
Note: See TracChangeset for help on using the changeset viewer.