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

Side by Side Diff: src/SConscript

Issue 6366003: Port new version of ParallelMove's LGapResolver to X64. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 x64/code-stubs-x64.cc 209 x64/code-stubs-x64.cc
210 x64/codegen-x64.cc 210 x64/codegen-x64.cc
211 x64/cpu-x64.cc 211 x64/cpu-x64.cc
212 x64/debug-x64.cc 212 x64/debug-x64.cc
213 x64/deoptimizer-x64.cc 213 x64/deoptimizer-x64.cc
214 x64/disasm-x64.cc 214 x64/disasm-x64.cc
215 x64/frames-x64.cc 215 x64/frames-x64.cc
216 x64/full-codegen-x64.cc 216 x64/full-codegen-x64.cc
217 x64/ic-x64.cc 217 x64/ic-x64.cc
218 x64/jump-target-x64.cc 218 x64/jump-target-x64.cc
219 x64/lithium-codegen-x64.cc
220 x64/lithium-gap-resolver-x64.cc
219 x64/lithium-x64.cc 221 x64/lithium-x64.cc
220 x64/lithium-codegen-x64.cc
221 x64/macro-assembler-x64.cc 222 x64/macro-assembler-x64.cc
222 x64/regexp-macro-assembler-x64.cc 223 x64/regexp-macro-assembler-x64.cc
223 x64/register-allocator-x64.cc 224 x64/register-allocator-x64.cc
224 x64/stub-cache-x64.cc 225 x64/stub-cache-x64.cc
225 x64/virtual-frame-x64.cc 226 x64/virtual-frame-x64.cc
226 """), 227 """),
227 'simulator:arm': ['arm/simulator-arm.cc'], 228 'simulator:arm': ['arm/simulator-arm.cc'],
228 'simulator:mips': ['mips/simulator-mips.cc'], 229 'simulator:mips': ['mips/simulator-mips.cc'],
229 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 230 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
230 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 231 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 snapshot_cc = 'snapshot.cc' 344 snapshot_cc = 'snapshot.cc'
344 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 345 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
345 else: 346 else:
346 snapshot_obj = empty_snapshot_obj 347 snapshot_obj = empty_snapshot_obj
347 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 348 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
348 return (library_objs, d8_objs, [mksnapshot]) 349 return (library_objs, d8_objs, [mksnapshot])
349 350
350 351
351 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 352 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
352 Return('library_objs d8_objs mksnapshot') 353 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/ia32/lithium-gap-resolver-ia32.cc » ('j') | src/ia32/lithium-gap-resolver-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698