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

Side by Side Diff: src/flag-definitions.h

Issue 149413010: A64: Synchronize with r16024. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/factory.cc ('k') | src/frames.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 "enable harmony object observation (implies harmony collections") 166 "enable harmony object observation (implies harmony collections")
167 DEFINE_bool(harmony_typed_arrays, false, 167 DEFINE_bool(harmony_typed_arrays, false,
168 "enable harmony typed arrays") 168 "enable harmony typed arrays")
169 DEFINE_bool(harmony_array_buffer, false, 169 DEFINE_bool(harmony_array_buffer, false,
170 "enable harmony array buffer") 170 "enable harmony array buffer")
171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer) 171 DEFINE_implication(harmony_typed_arrays, harmony_array_buffer)
172 DEFINE_bool(harmony_generators, false, "enable harmony generators") 172 DEFINE_bool(harmony_generators, false, "enable harmony generators")
173 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)") 173 DEFINE_bool(harmony_iteration, false, "enable harmony iteration (for-of)")
174 DEFINE_bool(harmony_numeric_literals, false, 174 DEFINE_bool(harmony_numeric_literals, false,
175 "enable harmony numeric literals (0o77, 0b11)") 175 "enable harmony numeric literals (0o77, 0b11)")
176 DEFINE_bool(harmony_strings, false, "enable harmony string")
176 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") 177 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
177 DEFINE_implication(harmony, harmony_scoping) 178 DEFINE_implication(harmony, harmony_scoping)
178 DEFINE_implication(harmony, harmony_modules) 179 DEFINE_implication(harmony, harmony_modules)
179 DEFINE_implication(harmony, harmony_symbols) 180 DEFINE_implication(harmony, harmony_symbols)
180 DEFINE_implication(harmony, harmony_proxies) 181 DEFINE_implication(harmony, harmony_proxies)
181 DEFINE_implication(harmony, harmony_collections) 182 DEFINE_implication(harmony, harmony_collections)
182 DEFINE_implication(harmony, harmony_observation) 183 DEFINE_implication(harmony, harmony_observation)
183 DEFINE_implication(harmony, harmony_generators) 184 DEFINE_implication(harmony, harmony_generators)
184 DEFINE_implication(harmony, harmony_iteration) 185 DEFINE_implication(harmony, harmony_iteration)
185 DEFINE_implication(harmony, harmony_numeric_literals) 186 DEFINE_implication(harmony, harmony_numeric_literals)
187 DEFINE_implication(harmony, harmony_strings)
186 DEFINE_implication(harmony_modules, harmony_scoping) 188 DEFINE_implication(harmony_modules, harmony_scoping)
187 DEFINE_implication(harmony_observation, harmony_collections) 189 DEFINE_implication(harmony_observation, harmony_collections)
188 // TODO[dslomov] add harmony => harmony_typed_arrays 190 // TODO[dslomov] add harmony => harmony_typed_arrays
189 191
190 // Flags for experimental implementation features. 192 // Flags for experimental implementation features.
191 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 193 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
192 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 194 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
193 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " 195 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to "
194 "generate keyed store stubs") 196 "generate keyed store stubs")
195 DEFINE_bool(clever_optimizations, 197 DEFINE_bool(clever_optimizations,
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 #undef DEFINE_bool 834 #undef DEFINE_bool
833 #undef DEFINE_int 835 #undef DEFINE_int
834 #undef DEFINE_string 836 #undef DEFINE_string
835 #undef DEFINE_implication 837 #undef DEFINE_implication
836 838
837 #undef FLAG_MODE_DECLARE 839 #undef FLAG_MODE_DECLARE
838 #undef FLAG_MODE_DEFINE 840 #undef FLAG_MODE_DEFINE
839 #undef FLAG_MODE_DEFINE_DEFAULTS 841 #undef FLAG_MODE_DEFINE_DEFAULTS
840 #undef FLAG_MODE_META 842 #undef FLAG_MODE_META
841 #undef FLAG_MODE_DEFINE_IMPLICATIONS 843 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/frames.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698