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

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

Issue 11659022: Generate the TransitionElementsStub using Crankshaft (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback Created 7 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
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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 DEFINE_implication(harmony, harmony_modules) 151 DEFINE_implication(harmony, harmony_modules)
152 DEFINE_implication(harmony, harmony_proxies) 152 DEFINE_implication(harmony, harmony_proxies)
153 DEFINE_implication(harmony, harmony_collections) 153 DEFINE_implication(harmony, harmony_collections)
154 DEFINE_implication(harmony, harmony_observation) 154 DEFINE_implication(harmony, harmony_observation)
155 DEFINE_implication(harmony_modules, harmony_scoping) 155 DEFINE_implication(harmony_modules, harmony_scoping)
156 DEFINE_implication(harmony_observation, harmony_collections) 156 DEFINE_implication(harmony_observation, harmony_collections)
157 157
158 // Flags for experimental implementation features. 158 // Flags for experimental implementation features.
159 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes") 159 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
160 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 160 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
161 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to "
162 "generate array elements transition stubs")
161 DEFINE_bool(clever_optimizations, 163 DEFINE_bool(clever_optimizations,
162 true, 164 true,
163 "Optimize object size, Array shift, DOM strings and string +") 165 "Optimize object size, Array shift, DOM strings and string +")
164 166
165 // Flags for data representation optimizations 167 // Flags for data representation optimizations
166 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 168 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
167 DEFINE_bool(string_slices, true, "use string slices") 169 DEFINE_bool(string_slices, true, "use string slices")
168 170
169 // Flags for Crankshaft. 171 // Flags for Crankshaft.
170 DEFINE_bool(crankshaft, true, "use crankshaft") 172 DEFINE_bool(crankshaft, true, "use crankshaft")
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 #undef DEFINE_bool 728 #undef DEFINE_bool
727 #undef DEFINE_int 729 #undef DEFINE_int
728 #undef DEFINE_string 730 #undef DEFINE_string
729 #undef DEFINE_implication 731 #undef DEFINE_implication
730 732
731 #undef FLAG_MODE_DECLARE 733 #undef FLAG_MODE_DECLARE
732 #undef FLAG_MODE_DEFINE 734 #undef FLAG_MODE_DEFINE
733 #undef FLAG_MODE_DEFINE_DEFAULTS 735 #undef FLAG_MODE_DEFINE_DEFAULTS
734 #undef FLAG_MODE_META 736 #undef FLAG_MODE_META
735 #undef FLAG_MODE_DEFINE_IMPLICATIONS 737 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698