Chromium Code Reviews

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

Issue 2417743004: Add option to print all exceptions (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | src/isolate.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 // 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 859 matching lines...)
870 "Abort program when stack overflow (as opposed to throwing " 870 "Abort program when stack overflow (as opposed to throwing "
871 "RangeError). This is useful for fuzzing where the spec behaviour " 871 "RangeError). This is useful for fuzzing where the spec behaviour "
872 "would introduce nondeterminism.") 872 "would introduce nondeterminism.")
873 DEFINE_BOOL(randomize_hashes, true, 873 DEFINE_BOOL(randomize_hashes, true,
874 "randomize hashes to avoid predictable hash collisions " 874 "randomize hashes to avoid predictable hash collisions "
875 "(with snapshots this option cannot override the baked-in seed)") 875 "(with snapshots this option cannot override the baked-in seed)")
876 DEFINE_INT(hash_seed, 0, 876 DEFINE_INT(hash_seed, 0,
877 "Fixed seed to use to hash property keys (0 means random)" 877 "Fixed seed to use to hash property keys (0 means random)"
878 "(with snapshots this option cannot override the baked-in seed)") 878 "(with snapshots this option cannot override the baked-in seed)")
879 DEFINE_BOOL(trace_rail, false, "trace RAIL mode") 879 DEFINE_BOOL(trace_rail, false, "trace RAIL mode")
880 DEFINE_BOOL(print_all_exceptions, false,
881 "print exception object and stack trace on each thrown exception")
880 882
881 // runtime.cc 883 // runtime.cc
882 DEFINE_BOOL(runtime_call_stats, false, "report runtime call counts and times") 884 DEFINE_BOOL(runtime_call_stats, false, "report runtime call counts and times")
883 885
884 // snapshot-common.cc 886 // snapshot-common.cc
885 DEFINE_BOOL(profile_deserialization, false, 887 DEFINE_BOOL(profile_deserialization, false,
886 "Print the time it takes to deserialize the snapshot.") 888 "Print the time it takes to deserialize the snapshot.")
887 DEFINE_BOOL(serialization_statistics, false, 889 DEFINE_BOOL(serialization_statistics, false,
888 "Collect statistics on serialized objects.") 890 "Collect statistics on serialized objects.")
889 891
(...skipping 323 matching lines...)
1213 #undef DEFINE_ALIAS_FLOAT 1215 #undef DEFINE_ALIAS_FLOAT
1214 #undef DEFINE_ALIAS_ARGS 1216 #undef DEFINE_ALIAS_ARGS
1215 1217
1216 #undef FLAG_MODE_DECLARE 1218 #undef FLAG_MODE_DECLARE
1217 #undef FLAG_MODE_DEFINE 1219 #undef FLAG_MODE_DEFINE
1218 #undef FLAG_MODE_DEFINE_DEFAULTS 1220 #undef FLAG_MODE_DEFINE_DEFAULTS
1219 #undef FLAG_MODE_META 1221 #undef FLAG_MODE_META
1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1222 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1221 1223
1222 #undef COMMA 1224 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine