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

Side by Side Diff: src/SConscript

Issue 264067: Initial port of top-level code generator to ARM. For the constant... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 2 months 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/arm/fast-codegen-arm.cc » ('j') | no next file with comments »
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 compiler.cc 49 compiler.cc
50 contexts.cc 50 contexts.cc
51 conversions.cc 51 conversions.cc
52 counters.cc 52 counters.cc
53 dateparser.cc 53 dateparser.cc
54 debug-agent.cc 54 debug-agent.cc
55 debug.cc 55 debug.cc
56 disassembler.cc 56 disassembler.cc
57 execution.cc 57 execution.cc
58 factory.cc 58 factory.cc
59 fast-codegen.cc
59 flags.cc 60 flags.cc
60 frame-element.cc 61 frame-element.cc
61 frames.cc 62 frames.cc
62 func-name-inferrer.cc 63 func-name-inferrer.cc
63 global-handles.cc 64 global-handles.cc
64 handles.cc 65 handles.cc
65 hashmap.cc 66 hashmap.cc
66 heap-profiler.cc 67 heap-profiler.cc
67 heap.cc 68 heap.cc
68 ic.cc 69 ic.cc
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 zone.cc 106 zone.cc
106 """), 107 """),
107 'arch:arm': Split(""" 108 'arch:arm': Split("""
108 arm/assembler-arm.cc 109 arm/assembler-arm.cc
109 arm/builtins-arm.cc 110 arm/builtins-arm.cc
110 arm/codegen-arm.cc 111 arm/codegen-arm.cc
111 arm/constants-arm.cc 112 arm/constants-arm.cc
112 arm/cpu-arm.cc 113 arm/cpu-arm.cc
113 arm/debug-arm.cc 114 arm/debug-arm.cc
114 arm/disasm-arm.cc 115 arm/disasm-arm.cc
116 arm/fast-codegen-arm.cc
115 arm/frames-arm.cc 117 arm/frames-arm.cc
116 arm/ic-arm.cc 118 arm/ic-arm.cc
117 arm/jump-target-arm.cc 119 arm/jump-target-arm.cc
118 arm/macro-assembler-arm.cc 120 arm/macro-assembler-arm.cc
119 arm/regexp-macro-assembler-arm.cc 121 arm/regexp-macro-assembler-arm.cc
120 arm/register-allocator-arm.cc 122 arm/register-allocator-arm.cc
121 arm/stub-cache-arm.cc 123 arm/stub-cache-arm.cc
122 arm/virtual-frame-arm.cc 124 arm/virtual-frame-arm.cc
123 """), 125 """),
124 'arch:ia32': Split(""" 126 'arch:ia32': Split("""
125 fast-codegen.cc
126 ia32/assembler-ia32.cc 127 ia32/assembler-ia32.cc
127 ia32/builtins-ia32.cc 128 ia32/builtins-ia32.cc
128 ia32/codegen-ia32.cc 129 ia32/codegen-ia32.cc
129 ia32/cpu-ia32.cc 130 ia32/cpu-ia32.cc
130 ia32/debug-ia32.cc 131 ia32/debug-ia32.cc
131 ia32/disasm-ia32.cc 132 ia32/disasm-ia32.cc
132 ia32/fast-codegen-ia32.cc 133 ia32/fast-codegen-ia32.cc
133 ia32/frames-ia32.cc 134 ia32/frames-ia32.cc
134 ia32/ic-ia32.cc 135 ia32/ic-ia32.cc
135 ia32/jump-target-ia32.cc 136 ia32/jump-target-ia32.cc
136 ia32/macro-assembler-ia32.cc 137 ia32/macro-assembler-ia32.cc
137 ia32/regexp-macro-assembler-ia32.cc 138 ia32/regexp-macro-assembler-ia32.cc
138 ia32/register-allocator-ia32.cc 139 ia32/register-allocator-ia32.cc
139 ia32/stub-cache-ia32.cc 140 ia32/stub-cache-ia32.cc
140 ia32/virtual-frame-ia32.cc 141 ia32/virtual-frame-ia32.cc
141 """), 142 """),
142 'arch:x64': Split(""" 143 'arch:x64': Split("""
143 fast-codegen.cc
144 x64/assembler-x64.cc 144 x64/assembler-x64.cc
145 x64/builtins-x64.cc 145 x64/builtins-x64.cc
146 x64/codegen-x64.cc 146 x64/codegen-x64.cc
147 x64/cpu-x64.cc 147 x64/cpu-x64.cc
148 x64/debug-x64.cc 148 x64/debug-x64.cc
149 x64/disasm-x64.cc 149 x64/disasm-x64.cc
150 x64/fast-codegen-x64.cc 150 x64/fast-codegen-x64.cc
151 x64/frames-x64.cc 151 x64/frames-x64.cc
152 x64/ic-x64.cc 152 x64/ic-x64.cc
153 x64/jump-target-x64.cc 153 x64/jump-target-x64.cc
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 266 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
267 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 267 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
268 else: 268 else:
269 snapshot_obj = empty_snapshot_obj 269 snapshot_obj = empty_snapshot_obj
270 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 270 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
271 return (library_objs, d8_objs, [mksnapshot]) 271 return (library_objs, d8_objs, [mksnapshot])
272 272
273 273
274 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 274 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
275 Return('library_objs d8_objs mksnapshot') 275 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/arm/fast-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698