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

Side by Side Diff: src/SConscript

Issue 3152016: Remove experimental fast-codegen. We are no longer working on this (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 4 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/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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 v8-counters.cc 111 v8-counters.cc
112 v8.cc 112 v8.cc
113 v8threads.cc 113 v8threads.cc
114 variables.cc 114 variables.cc
115 version.cc 115 version.cc
116 virtual-frame.cc 116 virtual-frame.cc
117 vm-state.cc 117 vm-state.cc
118 zone.cc 118 zone.cc
119 """), 119 """),
120 'arch:arm': Split(""" 120 'arch:arm': Split("""
121 fast-codegen.cc
122 jump-target-light.cc 121 jump-target-light.cc
123 virtual-frame-light.cc 122 virtual-frame-light.cc
124 arm/builtins-arm.cc 123 arm/builtins-arm.cc
125 arm/codegen-arm.cc 124 arm/codegen-arm.cc
126 arm/constants-arm.cc 125 arm/constants-arm.cc
127 arm/cpu-arm.cc 126 arm/cpu-arm.cc
128 arm/debug-arm.cc 127 arm/debug-arm.cc
129 arm/disasm-arm.cc 128 arm/disasm-arm.cc
130 arm/fast-codegen-arm.cc
131 arm/frames-arm.cc 129 arm/frames-arm.cc
132 arm/full-codegen-arm.cc 130 arm/full-codegen-arm.cc
133 arm/ic-arm.cc 131 arm/ic-arm.cc
134 arm/jump-target-arm.cc 132 arm/jump-target-arm.cc
135 arm/macro-assembler-arm.cc 133 arm/macro-assembler-arm.cc
136 arm/regexp-macro-assembler-arm.cc 134 arm/regexp-macro-assembler-arm.cc
137 arm/register-allocator-arm.cc 135 arm/register-allocator-arm.cc
138 arm/stub-cache-arm.cc 136 arm/stub-cache-arm.cc
139 arm/virtual-frame-arm.cc 137 arm/virtual-frame-arm.cc
140 arm/assembler-arm.cc 138 arm/assembler-arm.cc
141 """), 139 """),
142 'arch:mips': Split(""" 140 'arch:mips': Split("""
143 fast-codegen.cc
144 mips/assembler-mips.cc 141 mips/assembler-mips.cc
145 mips/builtins-mips.cc 142 mips/builtins-mips.cc
146 mips/codegen-mips.cc 143 mips/codegen-mips.cc
147 mips/constants-mips.cc 144 mips/constants-mips.cc
148 mips/cpu-mips.cc 145 mips/cpu-mips.cc
149 mips/debug-mips.cc 146 mips/debug-mips.cc
150 mips/disasm-mips.cc 147 mips/disasm-mips.cc
151 mips/fast-codegen-mips.cc
152 mips/full-codegen-mips.cc 148 mips/full-codegen-mips.cc
153 mips/frames-mips.cc 149 mips/frames-mips.cc
154 mips/ic-mips.cc 150 mips/ic-mips.cc
155 mips/jump-target-mips.cc 151 mips/jump-target-mips.cc
156 mips/macro-assembler-mips.cc 152 mips/macro-assembler-mips.cc
157 mips/register-allocator-mips.cc 153 mips/register-allocator-mips.cc
158 mips/stub-cache-mips.cc 154 mips/stub-cache-mips.cc
159 mips/virtual-frame-mips.cc 155 mips/virtual-frame-mips.cc
160 """), 156 """),
161 'arch:ia32': Split(""" 157 'arch:ia32': Split("""
162 jump-target-heavy.cc 158 jump-target-heavy.cc
163 virtual-frame-heavy.cc 159 virtual-frame-heavy.cc
164 ia32/assembler-ia32.cc 160 ia32/assembler-ia32.cc
165 ia32/builtins-ia32.cc 161 ia32/builtins-ia32.cc
166 ia32/codegen-ia32.cc 162 ia32/codegen-ia32.cc
167 ia32/cpu-ia32.cc 163 ia32/cpu-ia32.cc
168 ia32/debug-ia32.cc 164 ia32/debug-ia32.cc
169 ia32/disasm-ia32.cc 165 ia32/disasm-ia32.cc
170 ia32/fast-codegen-ia32.cc
171 ia32/frames-ia32.cc 166 ia32/frames-ia32.cc
172 ia32/full-codegen-ia32.cc 167 ia32/full-codegen-ia32.cc
173 ia32/ic-ia32.cc 168 ia32/ic-ia32.cc
174 ia32/jump-target-ia32.cc 169 ia32/jump-target-ia32.cc
175 ia32/macro-assembler-ia32.cc 170 ia32/macro-assembler-ia32.cc
176 ia32/regexp-macro-assembler-ia32.cc 171 ia32/regexp-macro-assembler-ia32.cc
177 ia32/register-allocator-ia32.cc 172 ia32/register-allocator-ia32.cc
178 ia32/stub-cache-ia32.cc 173 ia32/stub-cache-ia32.cc
179 ia32/virtual-frame-ia32.cc 174 ia32/virtual-frame-ia32.cc
180 """), 175 """),
181 'arch:x64': Split(""" 176 'arch:x64': Split("""
182 fast-codegen.cc
183 jump-target-heavy.cc 177 jump-target-heavy.cc
184 virtual-frame-heavy.cc 178 virtual-frame-heavy.cc
185 x64/assembler-x64.cc 179 x64/assembler-x64.cc
186 x64/builtins-x64.cc 180 x64/builtins-x64.cc
187 x64/codegen-x64.cc 181 x64/codegen-x64.cc
188 x64/cpu-x64.cc 182 x64/cpu-x64.cc
189 x64/debug-x64.cc 183 x64/debug-x64.cc
190 x64/disasm-x64.cc 184 x64/disasm-x64.cc
191 x64/fast-codegen-x64.cc
192 x64/frames-x64.cc 185 x64/frames-x64.cc
193 x64/full-codegen-x64.cc 186 x64/full-codegen-x64.cc
194 x64/ic-x64.cc 187 x64/ic-x64.cc
195 x64/jump-target-x64.cc 188 x64/jump-target-x64.cc
196 x64/macro-assembler-x64.cc 189 x64/macro-assembler-x64.cc
197 x64/regexp-macro-assembler-x64.cc 190 x64/regexp-macro-assembler-x64.cc
198 x64/register-allocator-x64.cc 191 x64/register-allocator-x64.cc
199 x64/stub-cache-x64.cc 192 x64/stub-cache-x64.cc
200 x64/virtual-frame-x64.cc 193 x64/virtual-frame-x64.cc
201 """), 194 """),
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 snapshot_cc = 'snapshot.cc' 315 snapshot_cc = 'snapshot.cc'
323 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 316 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
324 else: 317 else:
325 snapshot_obj = empty_snapshot_obj 318 snapshot_obj = empty_snapshot_obj
326 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 319 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
327 return (library_objs, d8_objs, [mksnapshot]) 320 return (library_objs, d8_objs, [mksnapshot])
328 321
329 322
330 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 323 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
331 Return('library_objs d8_objs mksnapshot') 324 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/arm/codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698