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

Side by Side Diff: src/SConscript

Issue 3195022: Move code stubs from codegen*.* files to code-stub*.* files. (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/code-stubs-arm.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 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 variables.cc 113 variables.cc
114 version.cc 114 version.cc
115 virtual-frame.cc 115 virtual-frame.cc
116 vm-state.cc 116 vm-state.cc
117 zone.cc 117 zone.cc
118 """), 118 """),
119 'arch:arm': Split(""" 119 'arch:arm': Split("""
120 jump-target-light.cc 120 jump-target-light.cc
121 virtual-frame-light.cc 121 virtual-frame-light.cc
122 arm/builtins-arm.cc 122 arm/builtins-arm.cc
123 arm/code-stubs-arm.cc
123 arm/codegen-arm.cc 124 arm/codegen-arm.cc
124 arm/constants-arm.cc 125 arm/constants-arm.cc
125 arm/cpu-arm.cc 126 arm/cpu-arm.cc
126 arm/debug-arm.cc 127 arm/debug-arm.cc
127 arm/disasm-arm.cc 128 arm/disasm-arm.cc
128 arm/frames-arm.cc 129 arm/frames-arm.cc
129 arm/full-codegen-arm.cc 130 arm/full-codegen-arm.cc
130 arm/ic-arm.cc 131 arm/ic-arm.cc
131 arm/jump-target-arm.cc 132 arm/jump-target-arm.cc
132 arm/macro-assembler-arm.cc 133 arm/macro-assembler-arm.cc
(...skipping 18 matching lines...) Expand all
151 mips/macro-assembler-mips.cc 152 mips/macro-assembler-mips.cc
152 mips/register-allocator-mips.cc 153 mips/register-allocator-mips.cc
153 mips/stub-cache-mips.cc 154 mips/stub-cache-mips.cc
154 mips/virtual-frame-mips.cc 155 mips/virtual-frame-mips.cc
155 """), 156 """),
156 'arch:ia32': Split(""" 157 'arch:ia32': Split("""
157 jump-target-heavy.cc 158 jump-target-heavy.cc
158 virtual-frame-heavy.cc 159 virtual-frame-heavy.cc
159 ia32/assembler-ia32.cc 160 ia32/assembler-ia32.cc
160 ia32/builtins-ia32.cc 161 ia32/builtins-ia32.cc
162 ia32/code-stubs-ia32.cc
161 ia32/codegen-ia32.cc 163 ia32/codegen-ia32.cc
162 ia32/cpu-ia32.cc 164 ia32/cpu-ia32.cc
163 ia32/debug-ia32.cc 165 ia32/debug-ia32.cc
164 ia32/disasm-ia32.cc 166 ia32/disasm-ia32.cc
165 ia32/frames-ia32.cc 167 ia32/frames-ia32.cc
166 ia32/full-codegen-ia32.cc 168 ia32/full-codegen-ia32.cc
167 ia32/ic-ia32.cc 169 ia32/ic-ia32.cc
168 ia32/jump-target-ia32.cc 170 ia32/jump-target-ia32.cc
169 ia32/macro-assembler-ia32.cc 171 ia32/macro-assembler-ia32.cc
170 ia32/regexp-macro-assembler-ia32.cc 172 ia32/regexp-macro-assembler-ia32.cc
171 ia32/register-allocator-ia32.cc 173 ia32/register-allocator-ia32.cc
172 ia32/stub-cache-ia32.cc 174 ia32/stub-cache-ia32.cc
173 ia32/virtual-frame-ia32.cc 175 ia32/virtual-frame-ia32.cc
174 """), 176 """),
175 'arch:x64': Split(""" 177 'arch:x64': Split("""
176 jump-target-heavy.cc 178 jump-target-heavy.cc
177 virtual-frame-heavy.cc 179 virtual-frame-heavy.cc
178 x64/assembler-x64.cc 180 x64/assembler-x64.cc
179 x64/builtins-x64.cc 181 x64/builtins-x64.cc
182 x64/code-stubs-x64.cc
180 x64/codegen-x64.cc 183 x64/codegen-x64.cc
181 x64/cpu-x64.cc 184 x64/cpu-x64.cc
182 x64/debug-x64.cc 185 x64/debug-x64.cc
183 x64/disasm-x64.cc 186 x64/disasm-x64.cc
184 x64/frames-x64.cc 187 x64/frames-x64.cc
185 x64/full-codegen-x64.cc 188 x64/full-codegen-x64.cc
186 x64/ic-x64.cc 189 x64/ic-x64.cc
187 x64/jump-target-x64.cc 190 x64/jump-target-x64.cc
188 x64/macro-assembler-x64.cc 191 x64/macro-assembler-x64.cc
189 x64/regexp-macro-assembler-x64.cc 192 x64/regexp-macro-assembler-x64.cc
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 snapshot_cc = 'snapshot.cc' 317 snapshot_cc = 'snapshot.cc'
315 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 318 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
316 else: 319 else:
317 snapshot_obj = empty_snapshot_obj 320 snapshot_obj = empty_snapshot_obj
318 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 321 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
319 return (library_objs, d8_objs, [mksnapshot]) 322 return (library_objs, d8_objs, [mksnapshot])
320 323
321 324
322 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 325 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
323 Return('library_objs d8_objs mksnapshot') 326 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/arm/code-stubs-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698