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

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

Issue 203193006: Add FLAG_trace_bce (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 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-bce.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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "deoptimize every n garbage collections") 295 "deoptimize every n garbage collections")
296 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") 296 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points")
297 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 297 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
298 DEFINE_bool(trap_on_stub_deopt, false, 298 DEFINE_bool(trap_on_stub_deopt, false,
299 "put a break point before deoptimizing a stub") 299 "put a break point before deoptimizing a stub")
300 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 300 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
301 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 301 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
302 DEFINE_bool(use_osr, true, "use on-stack replacement") 302 DEFINE_bool(use_osr, true, "use on-stack replacement")
303 DEFINE_bool(array_bounds_checks_elimination, true, 303 DEFINE_bool(array_bounds_checks_elimination, true,
304 "perform array bounds checks elimination") 304 "perform array bounds checks elimination")
305 DEFINE_bool(trace_bce, false, "trace array bounds check elimination")
305 DEFINE_bool(array_bounds_checks_hoisting, false, 306 DEFINE_bool(array_bounds_checks_hoisting, false,
306 "perform array bounds checks hoisting") 307 "perform array bounds checks hoisting")
307 DEFINE_bool(array_index_dehoisting, true, 308 DEFINE_bool(array_index_dehoisting, true,
308 "perform array index dehoisting") 309 "perform array index dehoisting")
309 DEFINE_bool(analyze_environment_liveness, true, 310 DEFINE_bool(analyze_environment_liveness, true,
310 "analyze liveness of environment slots and zap dead values") 311 "analyze liveness of environment slots and zap dead values")
311 DEFINE_bool(load_elimination, true, "use load elimination") 312 DEFINE_bool(load_elimination, true, "use load elimination")
312 DEFINE_bool(check_elimination, true, "use check elimination") 313 DEFINE_bool(check_elimination, true, "use check elimination")
313 DEFINE_bool(dead_code_elimination, true, "use dead code elimination") 314 DEFINE_bool(dead_code_elimination, true, "use dead code elimination")
314 DEFINE_bool(fold_constants, true, "use constant folding") 315 DEFINE_bool(fold_constants, true, "use constant folding")
(...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 #undef DEFINE_ALIAS_float 919 #undef DEFINE_ALIAS_float
919 #undef DEFINE_ALIAS_args 920 #undef DEFINE_ALIAS_args
920 921
921 #undef FLAG_MODE_DECLARE 922 #undef FLAG_MODE_DECLARE
922 #undef FLAG_MODE_DEFINE 923 #undef FLAG_MODE_DEFINE
923 #undef FLAG_MODE_DEFINE_DEFAULTS 924 #undef FLAG_MODE_DEFINE_DEFAULTS
924 #undef FLAG_MODE_META 925 #undef FLAG_MODE_META
925 #undef FLAG_MODE_DEFINE_IMPLICATIONS 926 #undef FLAG_MODE_DEFINE_IMPLICATIONS
926 927
927 #undef COMMA 928 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/hydrogen-bce.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698