Ignore:
Timestamp:
Oct 2, 2013, 11:17:46 AM (12 years ago)
Author:
[email protected]
Message:

Get rid of Qt code from JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=122223

Reviewed by Oliver Hunt.

  • API/JSStringRefQt.cpp: Removed.
  • API/JSStringRefQt.h: Removed.
  • API/OpaqueJSString.h:
  • DerivedSources.pri: Removed.
  • JavaScriptCore.pri: Removed.
  • JavaScriptCore.pro: Removed.
  • LLIntOffsetsExtractor.pro: Removed.
  • Target.pri: Removed.
  • assembler/AbstractMacroAssembler.h:
  • assembler/MacroAssembler.h:

(JSC::MacroAssembler::urshift32):

  • assembler/MacroAssemblerARMv7.h:

(JSC::MacroAssemblerARMv7::shouldBlindForSpecificArch):

  • assembler/MacroAssemblerX86Common.h:
  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileArithSub):

  • heap/HeapTimer.cpp:

(JSC::HeapTimer::timerEvent):

  • heap/HeapTimer.h:
  • heap/IncrementalSweeper.cpp:

(JSC::IncrementalSweeper::scheduleTimer):

  • heap/IncrementalSweeper.h:
  • jit/JITArithmetic32_64.cpp:

(JSC::JIT::emitSub32Constant):

  • jsc.cpp:

(main):

  • jsc.pro: Removed.
  • runtime/DateConstructor.cpp:
  • runtime/GCActivityCallback.cpp:

(JSC::DefaultGCActivityCallback::DefaultGCActivityCallback):
(JSC::DefaultGCActivityCallback::cancelTimer):

  • runtime/GCActivityCallback.h:
  • testRegExp.cpp:

(main):

  • yarr/yarr.pri: Removed.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/heap/IncrementalSweeper.cpp

    r148696 r156780  
    3838namespace JSC {
    3939
    40 #if USE(CF) || PLATFORM(BLACKBERRY) || PLATFORM(QT)
     40#if USE(CF) || PLATFORM(BLACKBERRY)
    4141
    4242static const double sweepTimeSlice = .01; // seconds
     
    6868}
    6969
    70 #elif PLATFORM(BLACKBERRY) || PLATFORM(QT)
     70#elif PLATFORM(BLACKBERRY)
    7171   
    7272IncrementalSweeper::IncrementalSweeper(Heap* heap)
     
    8484void IncrementalSweeper::scheduleTimer()
    8585{
    86 #if PLATFORM(QT)
    87     m_timer.start(sweepTimeSlice * sweepTimeMultiplier * 1000, this);
    88 #else
    8986    m_timer.start(sweepTimeSlice * sweepTimeMultiplier);
    90 #endif
    9187}
    9288
Note: See TracChangeset for help on using the changeset viewer.