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

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

Issue 23868025: line up crashing with chrome (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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.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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 DEFINE_bool(trace_external_array_abuse, false, 466 DEFINE_bool(trace_external_array_abuse, false,
467 "trace out-of-bounds-accesses to external arrays") 467 "trace out-of-bounds-accesses to external arrays")
468 DEFINE_bool(trace_array_abuse, false, 468 DEFINE_bool(trace_array_abuse, false,
469 "trace out-of-bounds accesses to all arrays") 469 "trace out-of-bounds accesses to all arrays")
470 DEFINE_implication(trace_array_abuse, trace_js_array_abuse) 470 DEFINE_implication(trace_array_abuse, trace_js_array_abuse)
471 DEFINE_implication(trace_array_abuse, trace_external_array_abuse) 471 DEFINE_implication(trace_array_abuse, trace_external_array_abuse)
472 DEFINE_bool(debugger_auto_break, true, 472 DEFINE_bool(debugger_auto_break, true,
473 "automatically set the debug break flag when debugger commands are " 473 "automatically set the debug break flag when debugger commands are "
474 "in the queue") 474 "in the queue")
475 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature") 475 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
476 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting") 476 DEFINE_bool(break_on_abort, false, "always cause a debug break before aborting")
477 477
478 // execution.cc 478 // execution.cc
479 // Slightly less than 1MB on 64-bit, since Windows' default stack size for 479 // Slightly less than 1MB on 64-bit, since Windows' default stack size for
480 // the main execution thread is 1MB for both 32 and 64-bit. 480 // the main execution thread is 1MB for both 32 and 64-bit.
481 DEFINE_int(stack_size, kPointerSize * 123, 481 DEFINE_int(stack_size, kPointerSize * 123,
482 "default size of stack region v8 is allowed to use (in kBytes)") 482 "default size of stack region v8 is allowed to use (in kBytes)")
483 483
484 // frames.cc 484 // frames.cc
485 DEFINE_int(max_stack_trace_source_length, 300, 485 DEFINE_int(max_stack_trace_source_length, 300,
486 "maximum length of function source code printed in a stack trace.") 486 "maximum length of function source code printed in a stack trace.")
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 #undef DEFINE_ALIAS_int 843 #undef DEFINE_ALIAS_int
844 #undef DEFINE_ALIAS_string 844 #undef DEFINE_ALIAS_string
845 #undef DEFINE_ALIAS_float 845 #undef DEFINE_ALIAS_float
846 #undef DEFINE_ALIAS_args 846 #undef DEFINE_ALIAS_args
847 847
848 #undef FLAG_MODE_DECLARE 848 #undef FLAG_MODE_DECLARE
849 #undef FLAG_MODE_DEFINE 849 #undef FLAG_MODE_DEFINE
850 #undef FLAG_MODE_DEFINE_DEFAULTS 850 #undef FLAG_MODE_DEFINE_DEFAULTS
851 #undef FLAG_MODE_META 851 #undef FLAG_MODE_META
852 #undef FLAG_MODE_DEFINE_IMPLICATIONS 852 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698