Changeset 38477 in webkit for trunk/JavaScriptCore/runtime


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:
Location:
trunk/JavaScriptCore/runtime
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSFunction.cpp

    r38440 r38477  
    5555JSFunction::~JSFunction()
    5656{
    57 #if ENABLE(CTI)
     57#if ENABLE(JIT)
    5858    // JIT code for other functions may have had calls linked directly to the code for this function; these links
    5959    // are based on a check for the this pointer value for this JSFunction - which will no longer be valid once
  • trunk/JavaScriptCore/runtime/JSGlobalData.h

    r38464 r38477  
    6767
    6868        JSValue* exception;
    69 #if ENABLE(CTI)
     69#if ENABLE(JIT)
    7070        void* exceptionLocation;
    7171#endif
Note: See TracChangeset for help on using the changeset viewer.