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

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

Issue 152923006: Fix for a smi stores optimization on x64 with a test case. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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
« 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 DEFINE_bool(trace_pretenuring_statistics, false, 227 DEFINE_bool(trace_pretenuring_statistics, false,
228 "trace allocation site pretenuring statistics") 228 "trace allocation site pretenuring statistics")
229 DEFINE_bool(track_fields, true, "track fields with only smi values") 229 DEFINE_bool(track_fields, true, "track fields with only smi values")
230 DEFINE_bool(track_double_fields, true, "track fields with double values") 230 DEFINE_bool(track_double_fields, true, "track fields with double values")
231 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values") 231 DEFINE_bool(track_heap_object_fields, true, "track fields with heap values")
232 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields") 232 DEFINE_bool(track_computed_fields, true, "track computed boilerplate fields")
233 DEFINE_implication(track_double_fields, track_fields) 233 DEFINE_implication(track_double_fields, track_fields)
234 DEFINE_implication(track_heap_object_fields, track_fields) 234 DEFINE_implication(track_heap_object_fields, track_fields)
235 DEFINE_implication(track_computed_fields, track_fields) 235 DEFINE_implication(track_computed_fields, track_fields)
236 DEFINE_bool(smi_binop, true, "support smi representation in binary operations") 236 DEFINE_bool(smi_binop, true, "support smi representation in binary operations")
237 DEFINE_bool(smi_x64_store_opt, false, "optimized stores of smi on x64")
238 237
239 // Flags for optimization types. 238 // Flags for optimization types.
240 DEFINE_bool(optimize_for_size, false, 239 DEFINE_bool(optimize_for_size, false,
241 "Enables optimizations which favor memory size over execution " 240 "Enables optimizations which favor memory size over execution "
242 "speed.") 241 "speed.")
243 242
244 // Flags for data representation optimizations 243 // Flags for data representation optimizations
245 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles") 244 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
246 DEFINE_bool(string_slices, true, "use string slices") 245 DEFINE_bool(string_slices, true, "use string slices")
247 246
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 #undef DEFINE_ALIAS_float 893 #undef DEFINE_ALIAS_float
895 #undef DEFINE_ALIAS_args 894 #undef DEFINE_ALIAS_args
896 895
897 #undef FLAG_MODE_DECLARE 896 #undef FLAG_MODE_DECLARE
898 #undef FLAG_MODE_DEFINE 897 #undef FLAG_MODE_DEFINE
899 #undef FLAG_MODE_DEFINE_DEFAULTS 898 #undef FLAG_MODE_DEFINE_DEFAULTS
900 #undef FLAG_MODE_META 899 #undef FLAG_MODE_META
901 #undef FLAG_MODE_DEFINE_IMPLICATIONS 900 #undef FLAG_MODE_DEFINE_IMPLICATIONS
902 901
903 #undef COMMA 902 #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