Ignore:
Timestamp:
Jul 24, 2013, 9:04:39 PM (12 years ago)
Author:
[email protected]
Message:

fourthTier: Resurrect the CLoop LLINT on the FTL branch.
https://bugs.webkit.org/show_bug.cgi?id=118144.

Reviewed by Mark Hahnenberg.

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::jitType):

  • Fix the CodeBlock jitType to be InterpreterThunk when !ENABLE_JIT.
  • bytecode/JumpTable.h:

(JSC::SimpleJumpTable::clear):

  • interpreter/StackIterator.cpp:

(JSC::StackIterator::Frame::bytecodeOffset):
(JSC::StackIterator::Frame::print):

  • jit/JITCode.cpp:

(JSC):

  • jit/JITExceptions.cpp:

(JSC::getExceptionLocation):

  • llint/LowLevelInterpreter.cpp:
  • offlineasm/cloop.rb:
  • runtime/Structure.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JITExceptions.cpp

    r153222 r153273  
    4444    ASSERT(!callFrame->hasHostCallFrameFlag());
    4545
     46#if ENABLE(DFG_JIT)
    4647    if (callFrame->hasLocationAsCodeOriginIndex())
    4748        return callFrame->bytecodeOffsetFromCodeOriginIndex();
     49#endif
    4850
    4951    return callFrame->locationAsBytecodeOffset();
Note: See TracChangeset for help on using the changeset viewer.