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

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

Issue 8345039: Make builtin functions be skipped in stack traces. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments. Created 9 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 | « 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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 DEFINE_bool(enable_fpu, true, 179 DEFINE_bool(enable_fpu, true,
180 "enable use of MIPS FPU instructions if available (MIPS only)") 180 "enable use of MIPS FPU instructions if available (MIPS only)")
181 181
182 // bootstrapper.cc 182 // bootstrapper.cc
183 DEFINE_string(expose_natives_as, NULL, "expose natives in global object") 183 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
184 DEFINE_string(expose_debug_as, NULL, "expose debug in global object") 184 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
185 DEFINE_bool(expose_gc, false, "expose gc extension") 185 DEFINE_bool(expose_gc, false, "expose gc extension")
186 DEFINE_bool(expose_externalize_string, false, 186 DEFINE_bool(expose_externalize_string, false,
187 "expose externalize string extension") 187 "expose externalize string extension")
188 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 188 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
189 DEFINE_bool(builtins_in_stack_traces, false,
190 "show built-in functions in stack traces")
189 DEFINE_bool(disable_native_files, false, "disable builtin natives files") 191 DEFINE_bool(disable_native_files, false, "disable builtin natives files")
190 192
191 // builtins-ia32.cc 193 // builtins-ia32.cc
192 DEFINE_bool(inline_new, true, "use fast inline allocation") 194 DEFINE_bool(inline_new, true, "use fast inline allocation")
193 195
194 // checks.cc 196 // checks.cc
195 DEFINE_bool(stack_trace_on_abort, true, 197 DEFINE_bool(stack_trace_on_abort, true,
196 "print a stack trace if an assertion failure occurs") 198 "print a stack trace if an assertion failure occurs")
197 199
198 // codegen-ia32.cc / codegen-arm.cc 200 // codegen-ia32.cc / codegen-arm.cc
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
547 #undef FLAG 549 #undef FLAG
548 550
549 #undef DEFINE_bool 551 #undef DEFINE_bool
550 #undef DEFINE_int 552 #undef DEFINE_int
551 #undef DEFINE_string 553 #undef DEFINE_string
552 554
553 #undef FLAG_MODE_DECLARE 555 #undef FLAG_MODE_DECLARE
554 #undef FLAG_MODE_DEFINE 556 #undef FLAG_MODE_DEFINE
555 #undef FLAG_MODE_DEFINE_DEFAULTS 557 #undef FLAG_MODE_DEFINE_DEFAULTS
556 #undef FLAG_MODE_META 558 #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