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/dfg/DFGOperations.cpp

    r179357 r179392  
    12201220    CodeBlock* codeBlock = exec->codeBlock();
    12211221   
    1222     if (codeBlock->jitType() != JITCode::DFGJIT) {
    1223         dataLog("Unexpected code block in DFG->FTL tier-up: ", *codeBlock, "\n");
    1224         RELEASE_ASSERT_NOT_REACHED();
    1225     }
    1226    
    12271222    JITCode* jitCode = codeBlock->jitCode()->dfg();
    12281223   
     
    12431238    DeferGC deferGC(vm->heap);
    12441239    CodeBlock* codeBlock = exec->codeBlock();
    1245    
    1246     if (codeBlock->jitType() != JITCode::DFGJIT) {
    1247         dataLog("Unexpected code block in DFG->FTL tier-up: ", *codeBlock, "\n");
    1248         RELEASE_ASSERT_NOT_REACHED();
    1249     }
    12501240   
    12511241    JITCode* jitCode = codeBlock->jitCode()->dfg();
Note: See TracChangeset for help on using the changeset viewer.