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

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

Issue 12221064: Implement many KeyedStoreStubs using Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Final review feedback Created 7 years, 9 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/code-stubs-hydrogen.cc ('k') | src/heap.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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 DEFINE_implication(harmony, harmony_collections) 156 DEFINE_implication(harmony, harmony_collections)
157 DEFINE_implication(harmony, harmony_observation) 157 DEFINE_implication(harmony, harmony_observation)
158 DEFINE_implication(harmony_modules, harmony_scoping) 158 DEFINE_implication(harmony_modules, harmony_scoping)
159 DEFINE_implication(harmony_observation, harmony_collections) 159 DEFINE_implication(harmony_observation, harmony_collections)
160 160
161 // Flags for experimental implementation features. 161 // Flags for experimental implementation features.
162 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 162 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
163 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 163 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
164 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " 164 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to "
165 "generate array elements transition stubs") 165 "generate array elements transition stubs")
166 DEFINE_bool(compiled_keyed_stores, false, "use optimizing compiler to "
167 "generate keyed store stubs")
166 DEFINE_bool(clever_optimizations, 168 DEFINE_bool(clever_optimizations,
167 true, 169 true,
168 "Optimize object size, Array shift, DOM strings and string +") 170 "Optimize object size, Array shift, DOM strings and string +")
169 DEFINE_bool(pretenure_literals, false, "allocate literals in old space") 171 DEFINE_bool(pretenure_literals, false, "allocate literals in old space")
170 172
171 // Flags for data representation optimizations 173 // Flags for data representation optimizations
172 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 174 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
173 DEFINE_bool(string_slices, true, "use string slices") 175 DEFINE_bool(string_slices, true, "use string slices")
174 176
175 // Flags for Crankshaft. 177 // Flags for Crankshaft.
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 #undef DEFINE_bool 752 #undef DEFINE_bool
751 #undef DEFINE_int 753 #undef DEFINE_int
752 #undef DEFINE_string 754 #undef DEFINE_string
753 #undef DEFINE_implication 755 #undef DEFINE_implication
754 756
755 #undef FLAG_MODE_DECLARE 757 #undef FLAG_MODE_DECLARE
756 #undef FLAG_MODE_DEFINE 758 #undef FLAG_MODE_DEFINE
757 #undef FLAG_MODE_DEFINE_DEFAULTS 759 #undef FLAG_MODE_DEFINE_DEFAULTS
758 #undef FLAG_MODE_META 760 #undef FLAG_MODE_META
759 #undef FLAG_MODE_DEFINE_IMPLICATIONS 761 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698