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

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

Issue 15686004: Temporarily turn off tracking of fields for stability. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 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 | « no previous file | src/version.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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values") 187 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
188 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to " 188 DEFINE_bool(compiled_transitions, false, "use optimizing compiler to "
189 "generate array elements transition stubs") 189 "generate array elements transition stubs")
190 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to " 190 DEFINE_bool(compiled_keyed_stores, true, "use optimizing compiler to "
191 "generate keyed store stubs") 191 "generate keyed store stubs")
192 DEFINE_bool(clever_optimizations, 192 DEFINE_bool(clever_optimizations,
193 true, 193 true,
194 "Optimize object size, Array shift, DOM strings and string +") 194 "Optimize object size, Array shift, DOM strings and string +")
195 DEFINE_bool(pretenure_literals, true, "allocate literals in old space") 195 DEFINE_bool(pretenure_literals, true, "allocate literals in old space")
196 DEFINE_bool(track_fields, true, "track fields with only smi values") 196 DEFINE_bool(track_fields, true, "track fields with only smi values")
197 DEFINE_bool(track_double_fields, true, "track fields with double values") 197 DEFINE_bool(track_double_fields, false, "track fields with double values")
198 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") 198 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values")
199 DEFINE_implication(track_double_fields, track_fields) 199 DEFINE_implication(track_double_fields, track_fields)
200 DEFINE_implication(track_heap_object_fields, track_fields) 200 DEFINE_implication(track_heap_object_fields, track_fields)
201 201
202 // Flags for data representation optimizations 202 // Flags for data representation optimizations
203 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 203 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
204 DEFINE_bool(string_slices, true, "use string slices") 204 DEFINE_bool(string_slices, true, "use string slices")
205 205
206 // Flags for Crankshaft. 206 // Flags for Crankshaft.
207 DEFINE_bool(crankshaft, true, "use crankshaft") 207 DEFINE_bool(crankshaft, true, "use crankshaft")
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
787 #undef DEFINE_bool 787 #undef DEFINE_bool
788 #undef DEFINE_int 788 #undef DEFINE_int
789 #undef DEFINE_string 789 #undef DEFINE_string
790 #undef DEFINE_implication 790 #undef DEFINE_implication
791 791
792 #undef FLAG_MODE_DECLARE 792 #undef FLAG_MODE_DECLARE
793 #undef FLAG_MODE_DEFINE 793 #undef FLAG_MODE_DEFINE
794 #undef FLAG_MODE_DEFINE_DEFAULTS 794 #undef FLAG_MODE_DEFINE_DEFAULTS
795 #undef FLAG_MODE_META 795 #undef FLAG_MODE_META
796 #undef FLAG_MODE_DEFINE_IMPLICATIONS 796 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/version.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698