Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: src/SConscript

Issue 9328: Initial (stub) port of jump targets to the ARM platform.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: '' Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/ast.h » ('j') | src/jump-target.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 27 matching lines...) Expand all
38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc', 38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc',
39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc', 39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc',
40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', 40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc',
41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', 41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc',
42 'disassembler.cc', 'execution.cc', 'factory.cc', 'flags.cc', 'frames.cc', 42 'disassembler.cc', 'execution.cc', 'factory.cc', 'flags.cc', 'frames.cc',
43 'global-handles.cc', 'handles.cc', 'hashmap.cc', 'heap.cc', 'ic.cc', 43 'global-handles.cc', 'handles.cc', 'hashmap.cc', 'heap.cc', 'ic.cc',
44 'jsregexp.cc', 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', 44 'jsregexp.cc', 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc',
45 'parser.cc', 'property.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc', 45 'parser.cc', 'property.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc',
46 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc', 46 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc',
47 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc', 47 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc',
48 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', 48 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', 'v8.cc',
49 'v8.cc', 'v8threads.cc', 'variables.cc', 'zone.cc' 49 'v8threads.cc', 'variables.cc', 'zone.cc'
50 ], 50 ],
51 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 51 'arch:arm': [
52 'cpu-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc', 52 'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc',
53 'macro-assembler-arm.cc', 'stub-cache-arm.cc'], 53 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc', 'jump-target-arm.cc',
54 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', 54 'macro-assembler-arm.cc', 'stub-cache-arm.cc', 'virtual-frame-arm.cc'
55 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc', 55 ],
56 'macro-assembler-ia32.cc', 'stub-cache-ia32.cc'], 56 'arch:ia32': [
57 'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc',
58 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc',
59 'jump-target-ia32.cc', 'macro-assembler-ia32.cc', 'stub-cache-ia32.cc',
60 'virtual-frame-ia32.cc'
61 ],
57 'simulator:arm': ['simulator-arm.cc'], 62 'simulator:arm': ['simulator-arm.cc'],
58 'os:linux': ['platform-linux.cc'], 63 'os:linux': ['platform-linux.cc'],
59 'os:macos': ['platform-macos.cc'], 64 'os:macos': ['platform-macos.cc'],
60 'os:nullos': ['platform-nullos.cc'], 65 'os:nullos': ['platform-nullos.cc'],
61 'os:win32': ['platform-win32.cc'], 66 'os:win32': ['platform-win32.cc'],
62 'mode:release': [], 67 'mode:release': [],
63 'mode:debug': ['objects-debug.cc', 'prettyprinter.cc'] 68 'mode:debug': ['objects-debug.cc', 'prettyprinter.cc']
64 } 69 }
65 70
66 71
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 156 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
152 else: 157 else:
153 snapshot_obj = empty_snapshot_obj 158 snapshot_obj = empty_snapshot_obj
154 159
155 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 160 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
156 return (library_objs, d8_objs) 161 return (library_objs, d8_objs)
157 162
158 163
159 (library_objs, d8_objs) = ConfigureObjectFiles() 164 (library_objs, d8_objs) = ConfigureObjectFiles()
160 Return('library_objs d8_objs') 165 Return('library_objs d8_objs')
OLDNEW
« no previous file with comments | « no previous file | src/ast.h » ('j') | src/jump-target.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698