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

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

Issue 179793004: crash like chrome (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/globals.h » ('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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 DEFINE_bool(trace_external_array_abuse, false, 463 DEFINE_bool(trace_external_array_abuse, false,
464 "trace out-of-bounds-accesses to external arrays") 464 "trace out-of-bounds-accesses to external arrays")
465 DEFINE_bool(trace_array_abuse, false, 465 DEFINE_bool(trace_array_abuse, false,
466 "trace out-of-bounds accesses to all arrays") 466 "trace out-of-bounds accesses to all arrays")
467 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) 467 DEFINE_implication(trace_array_abuse, trace_js_array_abuse)
468 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) 468 DEFINE_implication(trace_array_abuse, trace_external_array_abuse)
469 DEFINE_bool(debugger_auto_break, true, 469 DEFINE_bool(debugger_auto_break, true,
470 "automatically set the debug break flag when debugger commands are " 470 "automatically set the debug break flag when debugger commands are "
471 "in the queue") 471 "in the queue")
472 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 472 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
473 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") 473 DEFINE_bool(hard_abort, true, "abort by crashing")
474 474
475 // execution.cc 475 // execution.cc
476 // Slightly less than 1MB on 64-bit, since Windows' default stack size for 476 // Slightly less than 1MB on 64-bit, since Windows' default stack size for
477 // the main execution thread is 1MB for both 32 and 64-bit. 477 // the main execution thread is 1MB for both 32 and 64-bit.
478 DEFINE_int(stack_size, kPointerSize * 123, 478 DEFINE_int(stack_size, kPointerSize * 123,
479 "default size of stack region v8 is allowed to use (in kBytes)") 479 "default size of stack region v8 is allowed to use (in kBytes)")
480 480
481 // frames.cc 481 // frames.cc
482 DEFINE_int(max_stack_trace_source_length, 300, 482 DEFINE_int(max_stack_trace_source_length, 300,
483 "maximum length of function source code printed in a stack trace.") 483 "maximum length of function source code printed in a stack trace.")
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
917 #undef DEFINE_ALIAS_float 917 #undef DEFINE_ALIAS_float
918 #undef DEFINE_ALIAS_args 918 #undef DEFINE_ALIAS_args
919 919
920 #undef FLAG_MODE_DECLARE 920 #undef FLAG_MODE_DECLARE
921 #undef FLAG_MODE_DEFINE 921 #undef FLAG_MODE_DEFINE
922 #undef FLAG_MODE_DEFINE_DEFAULTS 922 #undef FLAG_MODE_DEFINE_DEFAULTS
923 #undef FLAG_MODE_META 923 #undef FLAG_MODE_META
924 #undef FLAG_MODE_DEFINE_IMPLICATIONS 924 #undef FLAG_MODE_DEFINE_IMPLICATIONS
925 925
926 #undef COMMA 926 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698