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

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

Issue 94493002: Added tracing support for pretenuring. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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/hydrogen.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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 DEFINE_bool(compiled_keyed_dictionary_loads, true, 208 DEFINE_bool(compiled_keyed_dictionary_loads, true,
209 "use optimizing compiler to generate keyed dictionary load stubs") 209 "use optimizing compiler to generate keyed dictionary load stubs")
210 DEFINE_bool(clever_optimizations, true, 210 DEFINE_bool(clever_optimizations, true,
211 "Optimize object size, Array shift, DOM strings and string +") 211 "Optimize object size, Array shift, DOM strings and string +")
212 DEFINE_bool(pretenuring, true, "allocate objects in old space") 212 DEFINE_bool(pretenuring, true, "allocate objects in old space")
213 // TODO(hpayer): We will remove this flag as soon as we have pretenuring 213 // TODO(hpayer): We will remove this flag as soon as we have pretenuring
214 // support for specific allocation sites. 214 // support for specific allocation sites.
215 DEFINE_bool(pretenuring_call_new, false, "pretenure call new") 215 DEFINE_bool(pretenuring_call_new, false, "pretenure call new")
216 DEFINE_bool(allocation_site_pretenuring, false, 216 DEFINE_bool(allocation_site_pretenuring, false,
217 "pretenure with allocation sites") 217 "pretenure with allocation sites")
218 DEFINE_bool(trace_pretenuring, false,
219 "trace pretenuring decisions of HAllocate instructions")
218 DEFINE_bool(track_fields, true, "track fields with only smi values") 220 DEFINE_bool(track_fields, true, "track fields with only smi values")
219 DEFINE_bool(track_double_fields, true, "track fields with double values") 221 DEFINE_bool(track_double_fields, true, "track fields with double values")
220 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") 222 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values")
221 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields") 223 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields")
222 DEFINE_implication(track_double_fields, track_fields) 224 DEFINE_implication(track_double_fields, track_fields)
223 DEFINE_implication(track_heap_object_fields, track_fields) 225 DEFINE_implication(track_heap_object_fields, track_fields)
224 DEFINE_implication(track_computed_fields, track_fields) 226 DEFINE_implication(track_computed_fields, track_fields)
225 DEFINE_bool(smi_binop, true, "support smi representation in binary operations") 227 DEFINE_bool(smi_binop, true, "support smi representation in binary operations")
226 228
227 // Flags for optimization types. 229 // Flags for optimization types.
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 #undef DEFINE_ALIAS_float 898 #undef DEFINE_ALIAS_float
897 #undef DEFINE_ALIAS_args 899 #undef DEFINE_ALIAS_args
898 900
899 #undef FLAG_MODE_DECLARE 901 #undef FLAG_MODE_DECLARE
900 #undef FLAG_MODE_DEFINE 902 #undef FLAG_MODE_DEFINE
901 #undef FLAG_MODE_DEFINE_DEFAULTS 903 #undef FLAG_MODE_DEFINE_DEFAULTS
902 #undef FLAG_MODE_META 904 #undef FLAG_MODE_META
903 #undef FLAG_MODE_DEFINE_IMPLICATIONS 905 #undef FLAG_MODE_DEFINE_IMPLICATIONS
904 906
905 #undef COMMA 907 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698