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

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

Issue 88073002: Disable load elimination. (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 | no next file » | 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 284 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
285 DEFINE_bool(use_osr, true, "use on-stack replacement") 285 DEFINE_bool(use_osr, true, "use on-stack replacement")
286 DEFINE_bool(array_bounds_checks_elimination, true, 286 DEFINE_bool(array_bounds_checks_elimination, true,
287 "perform array bounds checks elimination") 287 "perform array bounds checks elimination")
288 DEFINE_bool(array_bounds_checks_hoisting, false, 288 DEFINE_bool(array_bounds_checks_hoisting, false,
289 "perform array bounds checks hoisting") 289 "perform array bounds checks hoisting")
290 DEFINE_bool(array_index_dehoisting, true, 290 DEFINE_bool(array_index_dehoisting, true,
291 "perform array index dehoisting") 291 "perform array index dehoisting")
292 DEFINE_bool(analyze_environment_liveness, true, 292 DEFINE_bool(analyze_environment_liveness, true,
293 "analyze liveness of environment slots and zap dead values") 293 "analyze liveness of environment slots and zap dead values")
294 DEFINE_bool(load_elimination, true, "use load elimination") 294 DEFINE_bool(load_elimination, false, "use load elimination")
295 DEFINE_bool(check_elimination, false, "use check elimination") 295 DEFINE_bool(check_elimination, false, "use check elimination")
296 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") 296 DEFINE_bool(dead_code_elimination, true, "use dead code elimination")
297 DEFINE_bool(fold_constants, true, "use constant folding") 297 DEFINE_bool(fold_constants, true, "use constant folding")
298 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") 298 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination")
299 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code") 299 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code")
300 DEFINE_bool(track_allocation_sites, true, 300 DEFINE_bool(track_allocation_sites, true,
301 "Use allocation site info to reduce transitions") 301 "Use allocation site info to reduce transitions")
302 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 302 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
303 DEFINE_int(stress_runs, 0, "number of stress runs") 303 DEFINE_int(stress_runs, 0, "number of stress runs")
304 DEFINE_bool(optimize_closures, true, "optimize closures") 304 DEFINE_bool(optimize_closures, true, "optimize closures")
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 #undef DEFINE_ALIAS_float 890 #undef DEFINE_ALIAS_float
891 #undef DEFINE_ALIAS_args 891 #undef DEFINE_ALIAS_args
892 892
893 #undef FLAG_MODE_DECLARE 893 #undef FLAG_MODE_DECLARE
894 #undef FLAG_MODE_DEFINE 894 #undef FLAG_MODE_DEFINE
895 #undef FLAG_MODE_DEFINE_DEFAULTS 895 #undef FLAG_MODE_DEFINE_DEFAULTS
896 #undef FLAG_MODE_META 896 #undef FLAG_MODE_META
897 #undef FLAG_MODE_DEFINE_IMPLICATIONS 897 #undef FLAG_MODE_DEFINE_IMPLICATIONS
898 898
899 #undef COMMA 899 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698