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

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

Issue 132143010: Check elimination enabled. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 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 | 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 DEFINE_bool(use_osr, true, "use on-stack replacement") 297 DEFINE_bool(use_osr, true, "use on-stack replacement")
298 DEFINE_bool(array_bounds_checks_elimination, true, 298 DEFINE_bool(array_bounds_checks_elimination, true,
299 "perform array bounds checks elimination") 299 "perform array bounds checks elimination")
300 DEFINE_bool(array_bounds_checks_hoisting, false, 300 DEFINE_bool(array_bounds_checks_hoisting, false,
301 "perform array bounds checks hoisting") 301 "perform array bounds checks hoisting")
302 DEFINE_bool(array_index_dehoisting, true, 302 DEFINE_bool(array_index_dehoisting, true,
303 "perform array index dehoisting") 303 "perform array index dehoisting")
304 DEFINE_bool(analyze_environment_liveness, true, 304 DEFINE_bool(analyze_environment_liveness, true,
305 "analyze liveness of environment slots and zap dead values") 305 "analyze liveness of environment slots and zap dead values")
306 DEFINE_bool(load_elimination, true, "use load elimination") 306 DEFINE_bool(load_elimination, true, "use load elimination")
307 DEFINE_bool(check_elimination, false, "use check elimination") 307 DEFINE_bool(check_elimination, true, "use check elimination")
308 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") 308 DEFINE_bool(dead_code_elimination, true, "use dead code elimination")
309 DEFINE_bool(fold_constants, true, "use constant folding") 309 DEFINE_bool(fold_constants, true, "use constant folding")
310 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination") 310 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination")
311 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code") 311 DEFINE_bool(unreachable_code_elimination, true, "eliminate unreachable code")
312 DEFINE_bool(trace_osr, false, "trace on-stack replacement") 312 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
313 DEFINE_int(stress_runs, 0, "number of stress runs") 313 DEFINE_int(stress_runs, 0, "number of stress runs")
314 DEFINE_bool(optimize_closures, true, "optimize closures") 314 DEFINE_bool(optimize_closures, true, "optimize closures")
315 DEFINE_bool(lookup_sample_by_shared, true, 315 DEFINE_bool(lookup_sample_by_shared, true,
316 "when picking a function to optimize, watch for shared function " 316 "when picking a function to optimize, watch for shared function "
317 "info, not JSFunction itself") 317 "info, not JSFunction itself")
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 #undef DEFINE_ALIAS_float 895 #undef DEFINE_ALIAS_float
896 #undef DEFINE_ALIAS_args 896 #undef DEFINE_ALIAS_args
897 897
898 #undef FLAG_MODE_DECLARE 898 #undef FLAG_MODE_DECLARE
899 #undef FLAG_MODE_DEFINE 899 #undef FLAG_MODE_DEFINE
900 #undef FLAG_MODE_DEFINE_DEFAULTS 900 #undef FLAG_MODE_DEFINE_DEFAULTS
901 #undef FLAG_MODE_META 901 #undef FLAG_MODE_META
902 #undef FLAG_MODE_DEFINE_IMPLICATIONS 902 #undef FLAG_MODE_DEFINE_IMPLICATIONS
903 903
904 #undef COMMA 904 #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