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

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

Issue 59813011: Activate Hydrogen-generated KeyedLoadDictionary ICs (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | no next file » | 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 DEFINE_implication(harmony, harmony_numeric_literals) 195 DEFINE_implication(harmony, harmony_numeric_literals)
196 DEFINE_implication(harmony, harmony_strings) 196 DEFINE_implication(harmony, harmony_strings)
197 DEFINE_implication(harmony, harmony_arrays) 197 DEFINE_implication(harmony, harmony_arrays)
198 DEFINE_implication(harmony, harmony_maths) 198 DEFINE_implication(harmony, harmony_maths)
199 DEFINE_implication(harmony_modules, harmony_scoping) 199 DEFINE_implication(harmony_modules, harmony_scoping)
200 DEFINE_implication(harmony_observation, harmony_collections) 200 DEFINE_implication(harmony_observation, harmony_collections)
201 201
202 // Flags for experimental implementation features. 202 // Flags for experimental implementation features.
203 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 203 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
204 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 204 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
205 DEFINE_bool(compiled_keyed_dictionary_loads, false, 205 DEFINE_bool(compiled_keyed_dictionary_loads, true,
206 "use optimizing compiler to generate keyed dictionary load stubs") 206 "use optimizing compiler to generate keyed dictionary load stubs")
207 DEFINE_bool(clever_optimizations, true, 207 DEFINE_bool(clever_optimizations, true,
208 "Optimize object size, Array shift, DOM strings and string +") 208 "Optimize object size, Array shift, DOM strings and string +")
209 DEFINE_bool(pretenuring, true, "allocate objects in old space") 209 DEFINE_bool(pretenuring, true, "allocate objects in old space")
210 // TODO(hpayer): We will remove this flag as soon as we have pretenuring 210 // TODO(hpayer): We will remove this flag as soon as we have pretenuring
211 // support for specific allocation sites. 211 // support for specific allocation sites.
212 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") 212 DEFINE_bool(pretenuring_call_new, false, "pretenure call new")
213 DEFINE_bool(allocation_site_pretenuring, false, 213 DEFINE_bool(allocation_site_pretenuring, false,
214 "pretenure with allocation sites") 214 "pretenure with allocation sites")
215 DEFINE_bool(track_fields, true, "track fields with only smi values") 215 DEFINE_bool(track_fields, true, "track fields with only smi values")
(...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 #undef DEFINE_ALIAS_float 892 #undef DEFINE_ALIAS_float
893 #undef DEFINE_ALIAS_args 893 #undef DEFINE_ALIAS_args
894 894
895 #undef FLAG_MODE_DECLARE 895 #undef FLAG_MODE_DECLARE
896 #undef FLAG_MODE_DEFINE 896 #undef FLAG_MODE_DEFINE
897 #undef FLAG_MODE_DEFINE_DEFAULTS 897 #undef FLAG_MODE_DEFINE_DEFAULTS
898 #undef FLAG_MODE_META 898 #undef FLAG_MODE_META
899 #undef FLAG_MODE_DEFINE_IMPLICATIONS 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS
900 900
901 #undef COMMA 901 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698