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

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

Issue 10442015: Rollback of r11638, r11636 on trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 years, 7 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/factory.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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 DEFINE_bool(harmony_collections, false, 143 DEFINE_bool(harmony_collections, false,
144 "enable harmony collections (sets, maps, and weak maps)") 144 "enable harmony collections (sets, maps, and weak maps)")
145 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)") 145 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
146 DEFINE_implication(harmony, harmony_scoping) 146 DEFINE_implication(harmony, harmony_scoping)
147 DEFINE_implication(harmony, harmony_modules) 147 DEFINE_implication(harmony, harmony_modules)
148 DEFINE_implication(harmony, harmony_proxies) 148 DEFINE_implication(harmony, harmony_proxies)
149 DEFINE_implication(harmony, harmony_collections) 149 DEFINE_implication(harmony, harmony_collections)
150 DEFINE_implication(harmony_modules, harmony_scoping) 150 DEFINE_implication(harmony_modules, harmony_scoping)
151 151
152 // Flags for experimental implementation features. 152 // Flags for experimental implementation features.
153 DEFINE_bool(packed_arrays, false, "optimizes arrays that have no holes")
154 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 153 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
155 DEFINE_bool(clever_optimizations, 154 DEFINE_bool(clever_optimizations,
156 true, 155 true,
157 "Optimize object size, Array shift, DOM strings and string +") 156 "Optimize object size, Array shift, DOM strings and string +")
158 157
159 // Flags for data representation optimizations 158 // Flags for data representation optimizations
160 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 159 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
161 DEFINE_bool(string_slices, true, "use string slices") 160 DEFINE_bool(string_slices, true, "use string slices")
162 161
163 // Flags for Crankshaft. 162 // Flags for Crankshaft.
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 #undef DEFINE_bool 655 #undef DEFINE_bool
657 #undef DEFINE_int 656 #undef DEFINE_int
658 #undef DEFINE_string 657 #undef DEFINE_string
659 #undef DEFINE_implication 658 #undef DEFINE_implication
660 659
661 #undef FLAG_MODE_DECLARE 660 #undef FLAG_MODE_DECLARE
662 #undef FLAG_MODE_DEFINE 661 #undef FLAG_MODE_DEFINE
663 #undef FLAG_MODE_DEFINE_DEFAULTS 662 #undef FLAG_MODE_DEFINE_DEFAULTS
664 #undef FLAG_MODE_META 663 #undef FLAG_MODE_META
665 #undef FLAG_MODE_DEFINE_IMPLICATIONS 664 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698