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

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

Issue 148573005: A64: Synchronize with r16249. (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/extensions/i18n/i18n-utils.cc ('k') | src/full-codegen.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 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping") 157 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping")
158 DEFINE_bool(harmony_modules, false, 158 DEFINE_bool(harmony_modules, false,
159 "enable harmony modules (implies block scoping)") 159 "enable harmony modules (implies block scoping)")
160 DEFINE_bool(harmony_symbols, false, 160 DEFINE_bool(harmony_symbols, false,
161 "enable harmony symbols (a.k.a. private names)") 161 "enable harmony symbols (a.k.a. private names)")
162 DEFINE_bool(harmony_proxies, false, "enable harmony proxies") 162 DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
163 DEFINE_bool(harmony_collections, false, 163 DEFINE_bool(harmony_collections, false,
164 "enable harmony collections (sets, maps, and weak maps)") 164 "enable harmony collections (sets, maps, and weak maps)")
165 DEFINE_bool(harmony_observation, false, 165 DEFINE_bool(harmony_observation, false,
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, true,
168 "enable harmony typed arrays") 168 "enable harmony typed arrays")
169 DEFINE_bool(harmony_array_buffer, false, 169 DEFINE_bool(harmony_array_buffer, true,
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_strings, false, "enable harmony string")
177 DEFINE_bool(harmony_arrays, false, "enable harmony arrays") 177 DEFINE_bool(harmony_arrays, false, "enable harmony arrays")
178 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") 178 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
179 DEFINE_implication(harmony, harmony_scoping) 179 DEFINE_implication(harmony, harmony_scoping)
180 DEFINE_implication(harmony, harmony_modules) 180 DEFINE_implication(harmony, harmony_modules)
181 DEFINE_implication(harmony, harmony_symbols) 181 DEFINE_implication(harmony, harmony_symbols)
182 DEFINE_implication(harmony, harmony_proxies) 182 DEFINE_implication(harmony, harmony_proxies)
183 DEFINE_implication(harmony, harmony_collections) 183 DEFINE_implication(harmony, harmony_collections)
184 DEFINE_implication(harmony, harmony_observation) 184 DEFINE_implication(harmony, harmony_observation)
185 DEFINE_implication(harmony, harmony_generators) 185 DEFINE_implication(harmony, harmony_generators)
186 DEFINE_implication(harmony, harmony_iteration) 186 DEFINE_implication(harmony, harmony_iteration)
187 DEFINE_implication(harmony, harmony_numeric_literals) 187 DEFINE_implication(harmony, harmony_numeric_literals)
188 DEFINE_implication(harmony, harmony_strings) 188 DEFINE_implication(harmony, harmony_strings)
189 DEFINE_implication(harmony, harmony_arrays) 189 DEFINE_implication(harmony, harmony_arrays)
190 DEFINE_implication(harmony_modules, harmony_scoping) 190 DEFINE_implication(harmony_modules, harmony_scoping)
191 DEFINE_implication(harmony_observation, harmony_collections) 191 DEFINE_implication(harmony_observation, harmony_collections)
192 // TODO[dslomov] add harmony => harmony_typed_arrays 192 // TODO[dslomov] add harmony => harmony_typed_arrays
193 193
194 // Flags for experimental implementation features. 194 // Flags for experimental implementation features.
195 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 195 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
196 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 196 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
197 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to "
198 "generate keyed store stubs")
199 DEFINE_bool(clever_optimizations, 197 DEFINE_bool(clever_optimizations,
200 true, 198 true,
201 "Optimize object size, Array shift, DOM strings and string +") 199 "Optimize object size, Array shift, DOM strings and string +")
202 DEFINE_bool(pretenuring, true, "allocate objects in old space") 200 DEFINE_bool(pretenuring, true, "allocate objects in old space")
203 // TODO(hpayer): We will remove this flag as soon as we have pretenuring 201 // TODO(hpayer): We will remove this flag as soon as we have pretenuring
204 // support for specific allocation sites. 202 // support for specific allocation sites.
205 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") 203 DEFINE_bool(pretenuring_call_new, false, "pretenure call new")
206 DEFINE_bool(track_fields, true, "track fields with only smi values") 204 DEFINE_bool(track_fields, true, "track fields with only smi values")
207 DEFINE_bool(track_double_fields, true, "track fields with double values") 205 DEFINE_bool(track_double_fields, true, "track fields with double values")
208 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") 206 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values")
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 #undef DEFINE_bool 832 #undef DEFINE_bool
835 #undef DEFINE_int 833 #undef DEFINE_int
836 #undef DEFINE_string 834 #undef DEFINE_string
837 #undef DEFINE_implication 835 #undef DEFINE_implication
838 836
839 #undef FLAG_MODE_DECLARE 837 #undef FLAG_MODE_DECLARE
840 #undef FLAG_MODE_DEFINE 838 #undef FLAG_MODE_DEFINE
841 #undef FLAG_MODE_DEFINE_DEFAULTS 839 #undef FLAG_MODE_DEFINE_DEFAULTS
842 #undef FLAG_MODE_META 840 #undef FLAG_MODE_META
843 #undef FLAG_MODE_DEFINE_IMPLICATIONS 841 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/extensions/i18n/i18n-utils.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698