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

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

Issue 156783004: Remove unused --stack-trace-on-abort flag. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 10 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 | no next file » | 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 // 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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 "expose externalize string extension") 409 "expose externalize string extension")
410 DEFINE_bool(expose_trigger_failure, false, "expose trigger-failure extension") 410 DEFINE_bool(expose_trigger_failure, false, "expose trigger-failure extension")
411 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture") 411 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
412 DEFINE_bool(builtins_in_stack_traces, false, 412 DEFINE_bool(builtins_in_stack_traces, false,
413 "show built-in functions in stack traces") 413 "show built-in functions in stack traces")
414 DEFINE_bool(disable_native_files, false, "disable builtin natives files") 414 DEFINE_bool(disable_native_files, false, "disable builtin natives files")
415 415
416 // builtins-ia32.cc 416 // builtins-ia32.cc
417 DEFINE_bool(inline_new, true, "use fast inline allocation") 417 DEFINE_bool(inline_new, true, "use fast inline allocation")
418 418
419 // checks.cc
420 DEFINE_bool(stack_trace_on_abort, true,
421 "print a stack trace if an assertion failure occurs")
422
423 // codegen-ia32.cc / codegen-arm.cc 419 // codegen-ia32.cc / codegen-arm.cc
424 DEFINE_bool(trace_codegen, false, 420 DEFINE_bool(trace_codegen, false,
425 "print name of functions for which code is generated") 421 "print name of functions for which code is generated")
426 DEFINE_bool(trace, false, "trace function calls") 422 DEFINE_bool(trace, false, "trace function calls")
427 DEFINE_bool(mask_constants_with_cookie, true, 423 DEFINE_bool(mask_constants_with_cookie, true,
428 "use random jit cookie to mask large constants") 424 "use random jit cookie to mask large constants")
429 425
430 // codegen.cc 426 // codegen.cc
431 DEFINE_bool(lazy, true, "use lazy compilation") 427 DEFINE_bool(lazy, true, "use lazy compilation")
432 DEFINE_bool(trace_opt, false, "trace lazy optimization") 428 DEFINE_bool(trace_opt, false, "trace lazy optimization")
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 #undef DEFINE_ALIAS_float 890 #undef DEFINE_ALIAS_float
895 #undef DEFINE_ALIAS_args 891 #undef DEFINE_ALIAS_args
896 892
897 #undef FLAG_MODE_DECLARE 893 #undef FLAG_MODE_DECLARE
898 #undef FLAG_MODE_DEFINE 894 #undef FLAG_MODE_DEFINE
899 #undef FLAG_MODE_DEFINE_DEFAULTS 895 #undef FLAG_MODE_DEFINE_DEFAULTS
900 #undef FLAG_MODE_META 896 #undef FLAG_MODE_META
901 #undef FLAG_MODE_DEFINE_IMPLICATIONS 897 #undef FLAG_MODE_DEFINE_IMPLICATIONS
902 898
903 #undef COMMA 899 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698