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

Side by Side Diff: src/SConscript

Issue 553149: Implement simple fast-path code for functions containing this property stores and global variables. (Closed)
Patch Set: Incorporated codereview comments. Created 10 years, 10 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
« no previous file with comments | « no previous file | src/arm/codegen-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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 virtual-frame.cc 107 virtual-frame.cc
108 zone.cc 108 zone.cc
109 """), 109 """),
110 'arch:arm': Split(""" 110 'arch:arm': Split("""
111 arm/builtins-arm.cc 111 arm/builtins-arm.cc
112 arm/codegen-arm.cc 112 arm/codegen-arm.cc
113 arm/constants-arm.cc 113 arm/constants-arm.cc
114 arm/cpu-arm.cc 114 arm/cpu-arm.cc
115 arm/debug-arm.cc 115 arm/debug-arm.cc
116 arm/disasm-arm.cc 116 arm/disasm-arm.cc
117 arm/fast-codegen-arm.cc
117 arm/frames-arm.cc 118 arm/frames-arm.cc
118 arm/full-codegen-arm.cc 119 arm/full-codegen-arm.cc
119 arm/ic-arm.cc 120 arm/ic-arm.cc
120 arm/jump-target-arm.cc 121 arm/jump-target-arm.cc
121 arm/macro-assembler-arm.cc 122 arm/macro-assembler-arm.cc
122 arm/regexp-macro-assembler-arm.cc 123 arm/regexp-macro-assembler-arm.cc
123 arm/register-allocator-arm.cc 124 arm/register-allocator-arm.cc
124 arm/stub-cache-arm.cc 125 arm/stub-cache-arm.cc
125 arm/virtual-frame-arm.cc 126 arm/virtual-frame-arm.cc
126 """), 127 """),
127 'armvariant:arm': Split(""" 128 'armvariant:arm': Split("""
128 arm/assembler-arm.cc 129 arm/assembler-arm.cc
129 """), 130 """),
130 'armvariant:thumb2': Split(""" 131 'armvariant:thumb2': Split("""
131 arm/assembler-thumb2.cc 132 arm/assembler-thumb2.cc
132 """), 133 """),
133 'arch:ia32': Split(""" 134 'arch:ia32': Split("""
134 ia32/assembler-ia32.cc 135 ia32/assembler-ia32.cc
135 ia32/builtins-ia32.cc 136 ia32/builtins-ia32.cc
136 ia32/codegen-ia32.cc 137 ia32/codegen-ia32.cc
137 ia32/cpu-ia32.cc 138 ia32/cpu-ia32.cc
138 ia32/debug-ia32.cc 139 ia32/debug-ia32.cc
139 ia32/disasm-ia32.cc 140 ia32/disasm-ia32.cc
141 ia32/fast-codegen-ia32.cc
140 ia32/frames-ia32.cc 142 ia32/frames-ia32.cc
141 ia32/full-codegen-ia32.cc 143 ia32/full-codegen-ia32.cc
142 ia32/ic-ia32.cc 144 ia32/ic-ia32.cc
143 ia32/jump-target-ia32.cc 145 ia32/jump-target-ia32.cc
144 ia32/macro-assembler-ia32.cc 146 ia32/macro-assembler-ia32.cc
145 ia32/regexp-macro-assembler-ia32.cc 147 ia32/regexp-macro-assembler-ia32.cc
146 ia32/register-allocator-ia32.cc 148 ia32/register-allocator-ia32.cc
147 ia32/stub-cache-ia32.cc 149 ia32/stub-cache-ia32.cc
148 ia32/virtual-frame-ia32.cc 150 ia32/virtual-frame-ia32.cc
149 """), 151 """),
150 'arch:x64': Split(""" 152 'arch:x64': Split("""
151 x64/assembler-x64.cc 153 x64/assembler-x64.cc
152 x64/builtins-x64.cc 154 x64/builtins-x64.cc
153 x64/codegen-x64.cc 155 x64/codegen-x64.cc
154 x64/cpu-x64.cc 156 x64/cpu-x64.cc
155 x64/debug-x64.cc 157 x64/debug-x64.cc
156 x64/disasm-x64.cc 158 x64/disasm-x64.cc
159 x64/fast-codegen-x64.cc
157 x64/frames-x64.cc 160 x64/frames-x64.cc
158 x64/full-codegen-x64.cc 161 x64/full-codegen-x64.cc
159 x64/ic-x64.cc 162 x64/ic-x64.cc
160 x64/jump-target-x64.cc 163 x64/jump-target-x64.cc
161 x64/macro-assembler-x64.cc 164 x64/macro-assembler-x64.cc
162 x64/regexp-macro-assembler-x64.cc 165 x64/regexp-macro-assembler-x64.cc
163 x64/register-allocator-x64.cc 166 x64/register-allocator-x64.cc
164 x64/stub-cache-x64.cc 167 x64/stub-cache-x64.cc
165 x64/virtual-frame-x64.cc 168 x64/virtual-frame-x64.cc
166 """), 169 """),
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 snapshot_cc = Command('snapshot.cc', [], []) 283 snapshot_cc = Command('snapshot.cc', [], [])
281 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 284 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
282 else: 285 else:
283 snapshot_obj = empty_snapshot_obj 286 snapshot_obj = empty_snapshot_obj
284 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 287 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
285 return (library_objs, d8_objs, [mksnapshot]) 288 return (library_objs, d8_objs, [mksnapshot])
286 289
287 290
288 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 291 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
289 Return('library_objs d8_objs mksnapshot') 292 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/arm/codegen-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698