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

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

Issue 594033003: Version 3.28.71.11 (merged r24079) (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.28
Patch Set: Created 6 years, 2 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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 DEFINE_BOOL(trace_external_array_abuse, false, 453 DEFINE_BOOL(trace_external_array_abuse, false,
454 "trace out-of-bounds-accesses to external arrays") 454 "trace out-of-bounds-accesses to external arrays")
455 DEFINE_BOOL(trace_array_abuse, false, 455 DEFINE_BOOL(trace_array_abuse, false,
456 "trace out-of-bounds accesses to all arrays") 456 "trace out-of-bounds accesses to all arrays")
457 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse) 457 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse)
458 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse) 458 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse)
459 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature") 459 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature")
460 DEFINE_BOOL(hard_abort, true, "abort by crashing") 460 DEFINE_BOOL(hard_abort, true, "abort by crashing")
461 461
462 // execution.cc 462 // execution.cc
463 // Slightly less than 1MB, since Windows' default stack size for 463 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB,
464 // the main execution thread is 1MB for both 32 and 64-bit.
465 DEFINE_INT(stack_size, 984,
466 "default size of stack region v8 is allowed to use (in kBytes)") 464 "default size of stack region v8 is allowed to use (in kBytes)")
467 465
468 // frames.cc 466 // frames.cc
469 DEFINE_INT(max_stack_trace_source_length, 300, 467 DEFINE_INT(max_stack_trace_source_length, 300,
470 "maximum length of function source code printed in a stack trace.") 468 "maximum length of function source code printed in a stack trace.")
471 469
472 // full-codegen.cc 470 // full-codegen.cc
473 DEFINE_BOOL(always_inline_smi_code, false, 471 DEFINE_BOOL(always_inline_smi_code, false,
474 "always inline smi code in non-opt code") 472 "always inline smi code in non-opt code")
475 473
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 #undef DEFINE_ALIAS_FLOAT 922 #undef DEFINE_ALIAS_FLOAT
925 #undef DEFINE_ALIAS_ARGS 923 #undef DEFINE_ALIAS_ARGS
926 924
927 #undef FLAG_MODE_DECLARE 925 #undef FLAG_MODE_DECLARE
928 #undef FLAG_MODE_DEFINE 926 #undef FLAG_MODE_DEFINE
929 #undef FLAG_MODE_DEFINE_DEFAULTS 927 #undef FLAG_MODE_DEFINE_DEFAULTS
930 #undef FLAG_MODE_META 928 #undef FLAG_MODE_META
931 #undef FLAG_MODE_DEFINE_IMPLICATIONS 929 #undef FLAG_MODE_DEFINE_IMPLICATIONS
932 930
933 #undef COMMA 931 #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