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

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

Issue 1834633003: [debugger] allow debug-evaluate to change stack and context values. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: address comments Created 4 years, 8 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
« no previous file with comments | « src/factory.cc ('k') | src/heap/heap.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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after
601 DEFINE_BOOL(trace_js_array_abuse, false, 601 DEFINE_BOOL(trace_js_array_abuse, false,
602 "trace out-of-bounds accesses to JS arrays") 602 "trace out-of-bounds accesses to JS arrays")
603 DEFINE_BOOL(trace_external_array_abuse, false, 603 DEFINE_BOOL(trace_external_array_abuse, false,
604 "trace out-of-bounds-accesses to external arrays") 604 "trace out-of-bounds-accesses to external arrays")
605 DEFINE_BOOL(trace_array_abuse, false, 605 DEFINE_BOOL(trace_array_abuse, false,
606 "trace out-of-bounds accesses to all arrays") 606 "trace out-of-bounds accesses to all arrays")
607 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse) 607 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse)
608 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse) 608 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse)
609 609
610 // debugger 610 // debugger
611 DEFINE_BOOL(debug_eval_readonly_locals, true,
612 "do not update locals after debug-evaluate")
613 DEFINE_BOOL(trace_debug_json, false, "trace debugging JSON request/response") 611 DEFINE_BOOL(trace_debug_json, false, "trace debugging JSON request/response")
614 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature") 612 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature")
615 DEFINE_BOOL(hard_abort, true, "abort by crashing") 613 DEFINE_BOOL(hard_abort, true, "abort by crashing")
616 614
617 // execution.cc 615 // execution.cc
618 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB, 616 DEFINE_INT(stack_size, V8_DEFAULT_STACK_SIZE_KB,
619 "default size of stack region v8 is allowed to use (in kBytes)") 617 "default size of stack region v8 is allowed to use (in kBytes)")
620 618
621 // frames.cc 619 // frames.cc
622 DEFINE_INT(max_stack_trace_source_length, 300, 620 DEFINE_INT(max_stack_trace_source_length, 300,
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
1166 #undef DEFINE_ALIAS_FLOAT 1164 #undef DEFINE_ALIAS_FLOAT
1167 #undef DEFINE_ALIAS_ARGS 1165 #undef DEFINE_ALIAS_ARGS
1168 1166
1169 #undef FLAG_MODE_DECLARE 1167 #undef FLAG_MODE_DECLARE
1170 #undef FLAG_MODE_DEFINE 1168 #undef FLAG_MODE_DEFINE
1171 #undef FLAG_MODE_DEFINE_DEFAULTS 1169 #undef FLAG_MODE_DEFINE_DEFAULTS
1172 #undef FLAG_MODE_META 1170 #undef FLAG_MODE_META
1173 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1171 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1174 1172
1175 #undef COMMA 1173 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/heap/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698