Changeset 38477 in webkit for trunk/JavaScriptCore/VM/Machine.h


Ignore:
Timestamp:
Nov 16, 2008, 8:25:37 PM (17 years ago)
Author:
[email protected]
Message:

2008-11-16 Geoffrey Garen <[email protected]>

Reviewed by Sam Weinig.

Renamed ENABLE_CTI and ENABLE(CTI) to ENABLE_JIT and ENABLE(JIT).

  • VM/CTI.cpp:
  • VM/CTI.h:
  • VM/CodeBlock.cpp: (JSC::CodeBlock::~CodeBlock):
  • VM/CodeBlock.h: (JSC::CodeBlock::CodeBlock):
  • VM/Machine.cpp: (JSC::Interpreter::Interpreter): (JSC::Interpreter::initialize): (JSC::Interpreter::~Interpreter): (JSC::Interpreter::execute): (JSC::Interpreter::privateExecute):
  • VM/Machine.h:
  • bytecompiler/CodeGenerator.cpp: (JSC::prepareJumpTableForStringSwitch):
  • runtime/JSFunction.cpp: (JSC::JSFunction::~JSFunction):
  • runtime/JSGlobalData.h:
  • wrec/WREC.h:
  • wtf/Platform.h:
  • wtf/TCSystemAlloc.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/Machine.h

    r38473 r38477  
    5252    class SamplingTool;
    5353
    54 #if ENABLE(CTI)
     54#if ENABLE(JIT)
    5555
    5656#if USE(CTI_ARGUMENT)
     
    169169        SamplingTool* sampler() { return m_sampler; }
    170170
    171 #if ENABLE(CTI)
     171#if ENABLE(JIT)
    172172
    173173        static void SFX_CALL cti_timeout_check(CTI_ARGS);
     
    277277        AssemblerBuffer* assemblerBuffer() const { return m_assemblerBuffer.get(); }
    278278
    279 #endif // ENABLE(CTI)
     279#endif // ENABLE(JIT)
    280280
    281281        // Default number of ticks before a timeout check should be done.
     
    323323        bool isCallBytecode(Opcode opcode) { return opcode == getOpcode(op_call) || opcode == getOpcode(op_construct) || opcode == getOpcode(op_call_eval); }
    324324
    325 #if ENABLE(CTI)
     325#if ENABLE(JIT)
    326326        static void throwStackOverflowPreviousFrame(CallFrame**, JSGlobalData*, void*& returnAddress);
    327327
     
    332332        SamplingTool* m_sampler;
    333333
    334 #if ENABLE(CTI)
     334#if ENABLE(JIT)
    335335        void* m_ctiArrayLengthTrampoline;
    336336        void* m_ctiStringLengthTrampoline;
Note: See TracChangeset for help on using the changeset viewer.