Ignore:
Timestamp:
Nov 17, 2008, 3:16:00 PM (17 years ago)
Author:
[email protected]
Message:

JavaScriptCore:

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

Reviewed by Sam Weinig.


Moved VM/CTI.* => jit/JIT.*.


Removed VM.

  • GNUmakefile.am:
  • JavaScriptCore.pri:
  • JavaScriptCore.scons:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • VM/CTI.cpp: Removed.
  • VM/CTI.h: Removed.
  • bytecode/CodeBlock.cpp:
  • interpreter/Interpreter.cpp:
  • jit: Added.
  • jit/JIT.cpp: Copied from VM/CTI.cpp.
  • jit/JIT.h: Copied from VM/CTI.h.
  • runtime/RegExp.cpp:

WebCore:

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

Reviewed by Sam Weinig.


Updated for JavaScriptCore renames.

  • WebCore.pro:
  • webcore-base.bkl:

WebKit/wx:

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

Reviewed by Sam Weinig.


Updated for JavaScriptCore renames.

  • presets/wxwebkit.bkl:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.scons

    r38523 r38531  
    6666    'runtime/ErrorInstance.cpp',
    6767    'runtime/ErrorPrototype.cpp',
    68     'runtime/ExecState.cpp',
    6968    'runtime/ExceptionHelpers.cpp',
    7069    'runtime/FunctionConstructor.cpp',
     
    7574    'runtime/InitializeThreading.cpp',
    7675    'runtime/InternalFunction.cpp',
    77     'runtime/interpreter.cpp',
    7876    'runtime/JSActivation.cpp',
    7977    'runtime/JSArray.cpp',
     
    126124]
    127125sources['interpreter'] = [
     126    'interpreter/CallFrame.cpp',
    128127    'interpreter/Interpreter.cpp',
    129128    'interpreter/RegisterFile.cpp',
    130129]
    131 sources['VM'] = [
    132     'VM/CTI.cpp',
     130sources['JIT'] = [
     131    'JIT/JIT.cpp',
    133132]
    134133sources['wrec'] = [
Note: See TracChangeset for help on using the changeset viewer.