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

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

Issue 23352004: Add a trap_on_abort flag (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix Created 7 years, 4 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
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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 DEFINE_int(deopt_every_n_times, 257 DEFINE_int(deopt_every_n_times,
258 0, 258 0,
259 "deoptimize every n times a deopt point is passed") 259 "deoptimize every n times a deopt point is passed")
260 DEFINE_int(deopt_every_n_garbage_collections, 260 DEFINE_int(deopt_every_n_garbage_collections,
261 0, 261 0,
262 "deoptimize every n garbage collections") 262 "deoptimize every n garbage collections")
263 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points") 263 DEFINE_bool(print_deopt_stress, false, "print number of possible deopt points")
264 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing") 264 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
265 DEFINE_bool(trap_on_stub_deopt, false, 265 DEFINE_bool(trap_on_stub_deopt, false,
266 "put a break point before deoptimizing a stub") 266 "put a break point before deoptimizing a stub")
267 DEFINE_bool(trap_on_abort, false,
Michael Starzinger 2013/08/22 13:36:16 nit: Should fit into one line. Also since this is
268 "replace aborts by breakpoints")
267 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases") 269 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
268 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining") 270 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
269 DEFINE_bool(use_osr, true, "use on-stack replacement") 271 DEFINE_bool(use_osr, true, "use on-stack replacement")
270 DEFINE_bool(array_bounds_checks_elimination, true, 272 DEFINE_bool(array_bounds_checks_elimination, true,
271 "perform array bounds checks elimination") 273 "perform array bounds checks elimination")
272 DEFINE_bool(array_bounds_checks_hoisting, false, 274 DEFINE_bool(array_bounds_checks_hoisting, false,
273 "perform array bounds checks hoisting") 275 "perform array bounds checks hoisting")
274 DEFINE_bool(array_index_dehoisting, true, 276 DEFINE_bool(array_index_dehoisting, true,
275 "perform array index dehoisting") 277 "perform array index dehoisting")
276 DEFINE_bool(analyze_environment_liveness, true, 278 DEFINE_bool(analyze_environment_liveness, true,
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 #undef DEFINE_bool 813 #undef DEFINE_bool
812 #undef DEFINE_int 814 #undef DEFINE_int
813 #undef DEFINE_string 815 #undef DEFINE_string
814 #undef DEFINE_implication 816 #undef DEFINE_implication
815 817
816 #undef FLAG_MODE_DECLARE 818 #undef FLAG_MODE_DECLARE
817 #undef FLAG_MODE_DEFINE 819 #undef FLAG_MODE_DEFINE
818 #undef FLAG_MODE_DEFINE_DEFAULTS 820 #undef FLAG_MODE_DEFINE_DEFAULTS
819 #undef FLAG_MODE_META 821 #undef FLAG_MODE_META
820 #undef FLAG_MODE_DEFINE_IMPLICATIONS 822 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698