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

Side by Side Diff: src/SConscript

Issue 549109: Rename the fast-codegen* files to full-codegen*. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 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
« 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
60 flags.cc 59 flags.cc
61 frame-element.cc 60 frame-element.cc
62 frames.cc 61 frames.cc
62 full-codegen.cc
63 func-name-inferrer.cc 63 func-name-inferrer.cc
64 global-handles.cc 64 global-handles.cc
65 handles.cc 65 handles.cc
66 hashmap.cc 66 hashmap.cc
67 heap-profiler.cc 67 heap-profiler.cc
68 heap.cc 68 heap.cc
69 ic.cc 69 ic.cc
70 interpreter-irregexp.cc 70 interpreter-irregexp.cc
71 jsregexp.cc 71 jsregexp.cc
72 jump-target.cc 72 jump-target.cc
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 virtual-frame.cc 105 virtual-frame.cc
106 zone.cc 106 zone.cc
107 """), 107 """),
108 'arch:arm': Split(""" 108 'arch:arm': Split("""
109 arm/builtins-arm.cc 109 arm/builtins-arm.cc
110 arm/codegen-arm.cc 110 arm/codegen-arm.cc
111 arm/constants-arm.cc 111 arm/constants-arm.cc
112 arm/cpu-arm.cc 112 arm/cpu-arm.cc
113 arm/debug-arm.cc 113 arm/debug-arm.cc
114 arm/disasm-arm.cc 114 arm/disasm-arm.cc
115 arm/fast-codegen-arm.cc
116 arm/frames-arm.cc 115 arm/frames-arm.cc
116 arm/full-codegen-arm.cc
117 arm/ic-arm.cc 117 arm/ic-arm.cc
118 arm/jump-target-arm.cc 118 arm/jump-target-arm.cc
119 arm/macro-assembler-arm.cc 119 arm/macro-assembler-arm.cc
120 arm/regexp-macro-assembler-arm.cc 120 arm/regexp-macro-assembler-arm.cc
121 arm/register-allocator-arm.cc 121 arm/register-allocator-arm.cc
122 arm/stub-cache-arm.cc 122 arm/stub-cache-arm.cc
123 arm/virtual-frame-arm.cc 123 arm/virtual-frame-arm.cc
124 """), 124 """),
125 'armvariant:arm': Split(""" 125 'armvariant:arm': Split("""
126 arm/assembler-arm.cc 126 arm/assembler-arm.cc
127 """), 127 """),
128 'armvariant:thumb2': Split(""" 128 'armvariant:thumb2': Split("""
129 arm/assembler-thumb2.cc 129 arm/assembler-thumb2.cc
130 """), 130 """),
131 'arch:ia32': Split(""" 131 'arch:ia32': Split("""
132 ia32/assembler-ia32.cc 132 ia32/assembler-ia32.cc
133 ia32/builtins-ia32.cc 133 ia32/builtins-ia32.cc
134 ia32/codegen-ia32.cc 134 ia32/codegen-ia32.cc
135 ia32/cpu-ia32.cc 135 ia32/cpu-ia32.cc
136 ia32/debug-ia32.cc 136 ia32/debug-ia32.cc
137 ia32/disasm-ia32.cc 137 ia32/disasm-ia32.cc
138 ia32/fast-codegen-ia32.cc
139 ia32/frames-ia32.cc 138 ia32/frames-ia32.cc
139 ia32/full-codegen-ia32.cc
140 ia32/ic-ia32.cc 140 ia32/ic-ia32.cc
141 ia32/jump-target-ia32.cc 141 ia32/jump-target-ia32.cc
142 ia32/macro-assembler-ia32.cc 142 ia32/macro-assembler-ia32.cc
143 ia32/regexp-macro-assembler-ia32.cc 143 ia32/regexp-macro-assembler-ia32.cc
144 ia32/register-allocator-ia32.cc 144 ia32/register-allocator-ia32.cc
145 ia32/stub-cache-ia32.cc 145 ia32/stub-cache-ia32.cc
146 ia32/virtual-frame-ia32.cc 146 ia32/virtual-frame-ia32.cc
147 """), 147 """),
148 'arch:x64': Split(""" 148 'arch:x64': Split("""
149 x64/assembler-x64.cc 149 x64/assembler-x64.cc
150 x64/builtins-x64.cc 150 x64/builtins-x64.cc
151 x64/codegen-x64.cc 151 x64/codegen-x64.cc
152 x64/cpu-x64.cc 152 x64/cpu-x64.cc
153 x64/debug-x64.cc 153 x64/debug-x64.cc
154 x64/disasm-x64.cc 154 x64/disasm-x64.cc
155 x64/fast-codegen-x64.cc
156 x64/frames-x64.cc 155 x64/frames-x64.cc
156 x64/full-codegen-x64.cc
157 x64/ic-x64.cc 157 x64/ic-x64.cc
158 x64/jump-target-x64.cc 158 x64/jump-target-x64.cc
159 x64/macro-assembler-x64.cc 159 x64/macro-assembler-x64.cc
160 x64/regexp-macro-assembler-x64.cc 160 x64/regexp-macro-assembler-x64.cc
161 x64/register-allocator-x64.cc 161 x64/register-allocator-x64.cc
162 x64/stub-cache-x64.cc 162 x64/stub-cache-x64.cc
163 x64/virtual-frame-x64.cc 163 x64/virtual-frame-x64.cc
164 """), 164 """),
165 'simulator:arm': ['arm/simulator-arm.cc'], 165 'simulator:arm': ['arm/simulator-arm.cc'],
166 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 166 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 snapshot_cc = Command('snapshot.cc', [], []) 274 snapshot_cc = Command('snapshot.cc', [], [])
275 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 275 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
276 else: 276 else:
277 snapshot_obj = empty_snapshot_obj 277 snapshot_obj = empty_snapshot_obj
278 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 278 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
279 return (library_objs, d8_objs, [mksnapshot]) 279 return (library_objs, d8_objs, [mksnapshot])
280 280
281 281
282 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 282 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
283 Return('library_objs d8_objs mksnapshot') 283 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