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

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

Issue 21014007: This adds new methods to String object: (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: review changes Created 7 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
« no previous file with comments | « src/bootstrapper.cc ('k') | src/harmony-string.js » ('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 615 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 #undef DEFINE_bool 813 #undef DEFINE_bool
812 #undef DEFINE_int 814 #undef DEFINE_int
813 #undef DEFINE_string 815 #undef DEFINE_string
814 #undef DEFINE_implication 816 #undef DEFINE_implication
815 817
816 #undef FLAG_MODE_DECLARE 818 #undef FLAG_MODE_DECLARE
817 #undef FLAG_MODE_DEFINE 819 #undef FLAG_MODE_DEFINE
818 #undef FLAG_MODE_DEFINE_DEFAULTS 820 #undef FLAG_MODE_DEFINE_DEFAULTS
819 #undef FLAG_MODE_META 821 #undef FLAG_MODE_META
820 #undef FLAG_MODE_DEFINE_IMPLICATIONS 822 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/harmony-string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698