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

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

Issue 9706097: Add flag to always call DebugBreak on abort (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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/platform-linux.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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 DEFINE_bool(compilation_cache, true, "enable compilation cache") 300 DEFINE_bool(compilation_cache, true, "enable compilation cache")
301 301
302 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions") 302 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
303 303
304 // debug.cc 304 // debug.cc
305 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 305 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
306 DEFINE_bool(debugger_auto_break, true, 306 DEFINE_bool(debugger_auto_break, true,
307 "automatically set the debug break flag when debugger commands are " 307 "automatically set the debug break flag when debugger commands are "
308 "in the queue") 308 "in the queue")
309 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 309 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
310 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting")
310 311
311 // execution.cc 312 // execution.cc
312 DEFINE_int(stack_size, kPointerSize * 128, 313 DEFINE_int(stack_size, kPointerSize * 128,
313 "default size of stack region v8 is allowed to use (in kBytes)") 314 "default size of stack region v8 is allowed to use (in kBytes)")
314 315
315 // frames.cc 316 // frames.cc
316 DEFINE_int(max_stack_trace_source_length, 300, 317 DEFINE_int(max_stack_trace_source_length, 300,
317 "maximum length of function source code printed in a stack trace.") 318 "maximum length of function source code printed in a stack trace.")
318 319
319 // full-codegen.cc 320 // full-codegen.cc
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 #undef DEFINE_bool 639 #undef DEFINE_bool
639 #undef DEFINE_int 640 #undef DEFINE_int
640 #undef DEFINE_string 641 #undef DEFINE_string
641 #undef DEFINE_implication 642 #undef DEFINE_implication
642 643
643 #undef FLAG_MODE_DECLARE 644 #undef FLAG_MODE_DECLARE
644 #undef FLAG_MODE_DEFINE 645 #undef FLAG_MODE_DEFINE
645 #undef FLAG_MODE_DEFINE_DEFAULTS 646 #undef FLAG_MODE_DEFINE_DEFAULTS
646 #undef FLAG_MODE_META 647 #undef FLAG_MODE_META
647 #undef FLAG_MODE_DEFINE_IMPLICATIONS 648 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/platform-linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698