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

Side by Side Diff: src/SConscript

Issue 7934002: MIPS: crankshaft implementation (Closed)
Patch Set: rebased on r9823. Created 9 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
« no previous file with comments | « no previous file | src/deoptimizer.h » ('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 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 mips/code-stubs-mips.cc 165 mips/code-stubs-mips.cc
166 mips/codegen-mips.cc 166 mips/codegen-mips.cc
167 mips/constants-mips.cc 167 mips/constants-mips.cc
168 mips/cpu-mips.cc 168 mips/cpu-mips.cc
169 mips/debug-mips.cc 169 mips/debug-mips.cc
170 mips/deoptimizer-mips.cc 170 mips/deoptimizer-mips.cc
171 mips/disasm-mips.cc 171 mips/disasm-mips.cc
172 mips/frames-mips.cc 172 mips/frames-mips.cc
173 mips/full-codegen-mips.cc 173 mips/full-codegen-mips.cc
174 mips/ic-mips.cc 174 mips/ic-mips.cc
175 mips/lithium-codegen-mips.cc
176 mips/lithium-gap-resolver-mips.cc
177 mips/lithium-mips.cc
175 mips/macro-assembler-mips.cc 178 mips/macro-assembler-mips.cc
176 mips/regexp-macro-assembler-mips.cc 179 mips/regexp-macro-assembler-mips.cc
177 mips/stub-cache-mips.cc 180 mips/stub-cache-mips.cc
178 """), 181 """),
179 'arch:ia32': Split(""" 182 'arch:ia32': Split("""
180 ia32/assembler-ia32.cc 183 ia32/assembler-ia32.cc
181 ia32/builtins-ia32.cc 184 ia32/builtins-ia32.cc
182 ia32/code-stubs-ia32.cc 185 ia32/code-stubs-ia32.cc
183 ia32/codegen-ia32.cc 186 ia32/codegen-ia32.cc
184 ia32/cpu-ia32.cc 187 ia32/cpu-ia32.cc
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 snapshot_cc = 'snapshot.cc' 399 snapshot_cc = 'snapshot.cc'
397 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 400 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
398 else: 401 else:
399 snapshot_obj = empty_snapshot_obj 402 snapshot_obj = empty_snapshot_obj
400 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj] 403 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj]
401 return (library_objs, d8_objs, [mksnapshot], preparser_objs) 404 return (library_objs, d8_objs, [mksnapshot], preparser_objs)
402 405
403 406
404 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() 407 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles()
405 Return('library_objs d8_objs mksnapshot preparser_objs') 408 Return('library_objs d8_objs mksnapshot preparser_objs')
OLDNEW
« no previous file with comments | « no previous file | src/deoptimizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698