Ignore:
Timestamp:
Nov 17, 2008, 8:43:16 AM (17 years ago)
Author:
[email protected]
Message:

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

Reviewed by Sam Weinig.


More file moves:


VM/CodeBlock.* => bytecode/CodeBlock.*
VM/EvalCodeCache.h => bytecode/EvalCodeCache.h
VM/Instruction.h => bytecode/Instruction.h
VM/Opcode.* => bytecode/Opcode.*

  • GNUmakefile.am:
  • JavaScriptCore.scons:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.vcproj/jsc/jsc.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • JavaScriptCoreSources.bkl:
  • VM/CodeBlock.cpp: Removed.
  • VM/CodeBlock.h: Removed.
  • VM/EvalCodeCache.h: Removed.
  • VM/Instruction.h: Removed.
  • VM/Opcode.cpp: Removed.
  • VM/Opcode.h: Removed.
  • bytecode: Added.
  • bytecode/CodeBlock.cpp: Copied from VM/CodeBlock.cpp.
  • bytecode/CodeBlock.h: Copied from VM/CodeBlock.h.
  • bytecode/EvalCodeCache.h: Copied from VM/EvalCodeCache.h.
  • bytecode/Instruction.h: Copied from VM/Instruction.h.
  • bytecode/Opcode.cpp: Copied from VM/Opcode.cpp.
  • bytecode/Opcode.h: Copied from VM/Opcode.h.
  • jsc.pro:
  • jscore.bkl:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/JavaScriptCore.scons

    r38497 r38498  
    119119    'runtime/UString.cpp',
    120120]
     121sources['bytecode'] = [
     122    'bytecode/CodeBlock.cpp',
     123    'bytecode/Opcode.cpp',
     124]
    121125sources['VM'] = [
    122     'VM/CodeBlock.cpp',
    123126    'VM/CTI.cpp',
    124127    'VM/ExceptionHelpers.cpp',
    125128    'VM/Machine.cpp',
    126     'VM/Opcode.cpp',
    127129    'VM/RegisterFile.cpp',
    128130    'VM/SamplingTool.cpp',
Note: See TracChangeset for help on using the changeset viewer.