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

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

Issue 151145: Experimental: capture 10 frame stack trace by default. (Closed)
Patch Set: Created 11 years, 5 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/bootstrapper.cc ('k') | src/messages.js » ('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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 DEFINE_bool(push_pop_elimination, true, 103 DEFINE_bool(push_pop_elimination, true,
104 "eliminate redundant push/pops in assembly code") 104 "eliminate redundant push/pops in assembly code")
105 DEFINE_bool(print_push_pop_elimination, false, 105 DEFINE_bool(print_push_pop_elimination, false,
106 "print elimination of redundant push/pops in assembly code") 106 "print elimination of redundant push/pops in assembly code")
107 107
108 // bootstrapper.cc 108 // bootstrapper.cc
109 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 109 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
110 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 110 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
111 DEFINE_string(natives_file, NULL, "alternative natives file") 111 DEFINE_string(natives_file, NULL, "alternative natives file")
112 DEFINE_bool(expose_gc, false, "expose gc extension") 112 DEFINE_bool(expose_gc, false, "expose gc extension")
113 DEFINE_bool(capture_stack_traces, false, "capture stack traces") 113 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
114 114
115 // builtins-ia32.cc 115 // builtins-ia32.cc
116 DEFINE_bool(inline_new, true, "use fast inline allocation") 116 DEFINE_bool(inline_new, true, "use fast inline allocation")
117 117
118 // checks.cc 118 // checks.cc
119 DEFINE_bool(stack_trace_on_abort, true, 119 DEFINE_bool(stack_trace_on_abort, true,
120 "print a stack trace if an assertion failure occurs") 120 "print a stack trace if an assertion failure occurs")
121 121
122 // codegen-ia32.cc / codegen-arm.cc 122 // codegen-ia32.cc / codegen-arm.cc
123 DEFINE_bool(trace, false, "trace function calls") 123 DEFINE_bool(trace, false, "trace function calls")
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 #undef FLAG 384 #undef FLAG
385 385
386 #undef DEFINE_bool 386 #undef DEFINE_bool
387 #undef DEFINE_int 387 #undef DEFINE_int
388 #undef DEFINE_string 388 #undef DEFINE_string
389 389
390 #undef FLAG_MODE_DECLARE 390 #undef FLAG_MODE_DECLARE
391 #undef FLAG_MODE_DEFINE 391 #undef FLAG_MODE_DEFINE
392 #undef FLAG_MODE_DEFINE_DEFAULTS 392 #undef FLAG_MODE_DEFINE_DEFAULTS
393 #undef FLAG_MODE_META 393 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/messages.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698