SConscript 6.79 KB
Newer Older
1
# Copyright 2008 the V8 project authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
#       notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
#       copyright notice, this list of conditions and the following
#       disclaimer in the documentation and/or other materials provided
#       with the distribution.
#     * Neither the name of Google Inc. nor the names of its
#       contributors may be used to endorse or promote products derived
#       from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

import sys
from os.path import join, dirname, abspath
root_dir = dirname(File('SConstruct').rfile().abspath)
sys.path.append(join(root_dir, 'tools'))
import js2c
33 34 35 36 37
Import('context')


SOURCES = {
  'all': [
38 39 40 41
    'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc',
    'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc',
    'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc',
    'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc',
42
    'debug-agent.cc', 'disassembler.cc', 'execution.cc', 'factory.cc',
43 44
    'flags.cc', 'frames.cc', 'func-name-inferrer.cc',
    'global-handles.cc', 'handles.cc', 'hashmap.cc',
45 46
    'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc',
    'jump-target.cc', 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc',
47
    'oprofile-agent.cc', 'parser.cc', 'property.cc', 'regexp-macro-assembler.cc',
48 49
    'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc',
    'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc',
50 51
    'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc',
    'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc',
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc',
    'v8.cc', 'v8threads.cc', 'variables.cc', 'virtual-frame.cc', 'zone.cc'
  ],
  'arch:arm': [
    'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc',
    'disasm-arm.cc', 'debug-arm.cc', 'frames-arm.cc', 'ic-arm.cc',
    'jump-target-arm.cc', 'macro-assembler-arm.cc',
    'regexp-macro-assembler-arm.cc', 'register-allocator-arm.cc',
    'stub-cache-arm.cc', 'virtual-frame-arm.cc'
  ],
  'arch:ia32': [
    'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc',
    'cpu-ia32.cc', 'disasm-ia32.cc', 'debug-ia32.cc', 'frames-ia32.cc',
    'ic-ia32.cc', 'jump-target-ia32.cc', 'macro-assembler-ia32.cc',
    'regexp-macro-assembler-ia32.cc', 'register-allocator-ia32.cc',
    'stub-cache-ia32.cc', 'virtual-frame-ia32.cc'
68
  ],
69
  'simulator:arm': ['simulator-arm.cc'],
70 71 72 73
  'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
  'os:linux':   ['platform-linux.cc', 'platform-posix.cc'],
  'os:android': ['platform-linux.cc', 'platform-posix.cc'],
  'os:macos':   ['platform-macos.cc', 'platform-posix.cc'],
74 75
  'os:nullos':  ['platform-nullos.cc'],
  'os:win32':   ['platform-win32.cc'],
76
  'mode:release': [],
77 78 79
  'mode:debug': [
    'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
  ]
80 81 82
}


83 84
D8_FILES = {
  'all': [
85
    'd8.cc', 'd8-debug.cc'
86
  ],
87 88 89 90 91 92 93 94 95 96 97 98
  'os:linux': [
    'd8-posix.cc'
  ],
  'os:macos': [
    'd8-posix.cc'
  ],
  'os:android': [
    'd8-posix.cc'
  ],
  'os:freebsd': [
    'd8-posix.cc'
  ],
99
  'os:win32': [
100 101 102 103 104
    'd8-windows.cc'
  ],
  'os:nullos': [
    'd8-windows.cc'   # Empty implementation at the moment.
  ],
105 106 107 108 109 110
  'console:readline': [
    'd8-readline.cc'
  ]
}


111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
LIBRARY_FILES = '''
runtime.js
v8natives.js
array.js
string.js
uri.js
math.js
messages.js
apinatives.js
debug-delay.js
mirror-delay.js
date-delay.js
regexp-delay.js
'''.split()


def Abort(message):
  print message
  sys.exit(1)


132
def ConfigureObjectFiles():
133
  env = Environment()
134
  env.Replace(**context.flags['v8'])
135
  context.ApplyEnvOverrides(env)
136
  env['BUILDERS']['JS2C'] = Builder(action=js2c.JS2C)
137
  env['BUILDERS']['Snapshot'] = Builder(action='$SOURCE $TARGET --logfile "$LOGFILE"')
138 139

  # Build the standard platform-independent source files.
140
  source_files = context.GetRelevantSources(SOURCES)
141

142 143 144 145 146
  d8_files = context.GetRelevantSources(D8_FILES)
  d8_js = env.JS2C('d8-js.cc', 'd8.js', TYPE='D8')
  d8_js_obj = context.ConfigureObject(env, d8_js, CPPPATH=['.'])
  d8_objs = [context.ConfigureObject(env, [d8_files]), d8_js_obj]

147
  # Combine the JavaScript library files into a single C++ file and
148 149 150
  # compile it.
  library_files = [s for s in LIBRARY_FILES]
  library_files.append('macros.py')
151
  libraries_src, libraries_empty_src = env.JS2C(['libraries.cc', 'libraries-empty.cc'], library_files, TYPE='CORE')
152
  libraries_obj = context.ConfigureObject(env, libraries_src, CPPPATH=['.'])
153 154 155

  # Build dtoa.
  dtoa_env = env.Copy()
156
  dtoa_env.Replace(**context.flags['dtoa'])
157
  dtoa_files = ['dtoa-config.c']
158
  dtoa_obj = context.ConfigureObject(dtoa_env, dtoa_files)
159

160
  source_objs = context.ConfigureObject(env, source_files)
erik.corry@gmail.com's avatar
erik.corry@gmail.com committed
161
  non_snapshot_files = [dtoa_obj, source_objs]
162

163
  # Create snapshot if necessary.
164
  empty_snapshot_obj = context.ConfigureObject(env, 'snapshot-empty.cc')
165 166
  mksnapshot_env = env.Copy()
  mksnapshot_env.Replace(**context.flags['mksnapshot'])
167
  mksnapshot_src = 'mksnapshot.cc'
168
  mksnapshot = mksnapshot_env.Program('mksnapshot', [mksnapshot_src, libraries_obj, non_snapshot_files, empty_snapshot_obj], PDB='mksnapshot.exe.pdb')
169
  if context.use_snapshot:
170 171 172 173
    if context.build_snapshot:
      snapshot_cc = env.Snapshot('snapshot.cc', mksnapshot, LOGFILE=File('snapshot.log').abspath)
    else:
      snapshot_cc = Command('snapshot.cc', [], [])
174 175
    snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
    libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['.'])
176 177
  else:
    snapshot_obj = empty_snapshot_obj
178
  library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
179
  return (library_objs, d8_objs, [mksnapshot])
180 181


182 183
(library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
Return('library_objs d8_objs mksnapshot')