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

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

Issue 13866005: Activate generation of Crankshafted KeyedStores (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix tests Created 7 years, 8 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/arm/lithium-codegen-arm.cc ('k') | src/ia32/lithium-codegen-ia32.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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 DEFINE_implication(harmony, harmony_generators) 161 DEFINE_implication(harmony, harmony_generators)
162 DEFINE_implication(harmony_modules, harmony_scoping) 162 DEFINE_implication(harmony_modules, harmony_scoping)
163 DEFINE_implication(harmony_observation, harmony_collections) 163 DEFINE_implication(harmony_observation, harmony_collections)
164 DEFINE_implication(harmony, harmony_typed_arrays) 164 DEFINE_implication(harmony, harmony_typed_arrays)
165 165
166 // Flags for experimental implementation features. 166 // Flags for experimental implementation features.
167 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 167 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
168 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 168 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
169 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " 169 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to "
170 "generate array elements transition stubs") 170 "generate array elements transition stubs")
171 DEFINE_bool(compiled_keyed_stores, false, "use optimizing compiler to " 171 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to "
172 "generate keyed store stubs") 172 "generate keyed store stubs")
173 DEFINE_bool(clever_optimizations, 173 DEFINE_bool(clever_optimizations,
174 true, 174 true,
175 "Optimize object size, Array shift, DOM strings and string +") 175 "Optimize object size, Array shift, DOM strings and string +")
176 DEFINE_bool(pretenure_literals, false, "allocate literals in old space") 176 DEFINE_bool(pretenure_literals, false, "allocate literals in old space")
177 177
178 // Flags for data representation optimizations 178 // Flags for data representation optimizations
179 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 179 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
180 DEFINE_bool(string_slices, true, "use string slices") 180 DEFINE_bool(string_slices, true, "use string slices")
181 181
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 #undef DEFINE_bool 754 #undef DEFINE_bool
755 #undef DEFINE_int 755 #undef DEFINE_int
756 #undef DEFINE_string 756 #undef DEFINE_string
757 #undef DEFINE_implication 757 #undef DEFINE_implication
758 758
759 #undef FLAG_MODE_DECLARE 759 #undef FLAG_MODE_DECLARE
760 #undef FLAG_MODE_DEFINE 760 #undef FLAG_MODE_DEFINE
761 #undef FLAG_MODE_DEFINE_DEFAULTS 761 #undef FLAG_MODE_DEFINE_DEFAULTS
762 #undef FLAG_MODE_META 762 #undef FLAG_MODE_META
763 #undef FLAG_MODE_DEFINE_IMPLICATIONS 763 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/ia32/lithium-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698