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

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

Issue 156373003: Add flag to print stack trace on illegal exception. (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 | 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 // 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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 584
585 // simulator-arm.cc and simulator-mips.cc 585 // simulator-arm.cc and simulator-mips.cc
586 DEFINE_bool(trace_sim, false, "Trace simulator execution") 586 DEFINE_bool(trace_sim, false, "Trace simulator execution")
587 DEFINE_bool(check_icache, false, 587 DEFINE_bool(check_icache, false,
588 "Check icache flushes in ARM and MIPS simulator") 588 "Check icache flushes in ARM and MIPS simulator")
589 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 589 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
590 DEFINE_int(sim_stack_alignment, 8, 590 DEFINE_int(sim_stack_alignment, 8,
591 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 591 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
592 592
593 // isolate.cc 593 // isolate.cc
594 DEFINE_bool(stack_trace_on_illegal, false,
595 "print stack trace when an illegal exception is thrown")
594 DEFINE_bool(abort_on_uncaught_exception, false, 596 DEFINE_bool(abort_on_uncaught_exception, false,
595 "abort program (dump core) when an uncaught exception is thrown") 597 "abort program (dump core) when an uncaught exception is thrown")
596 DEFINE_bool(trace_exception, false, 598 DEFINE_bool(trace_exception, false,
597 "print stack trace when throwing exceptions") 599 "print stack trace when throwing exceptions")
598 DEFINE_bool(randomize_hashes, true, 600 DEFINE_bool(randomize_hashes, true,
599 "randomize hashes to avoid predictable hash collisions " 601 "randomize hashes to avoid predictable hash collisions "
600 "(with snapshots this option cannot override the baked-in seed)") 602 "(with snapshots this option cannot override the baked-in seed)")
601 DEFINE_int(hash_seed, 0, 603 DEFINE_int(hash_seed, 0,
602 "Fixed seed to use to hash property keys (0 means random)" 604 "Fixed seed to use to hash property keys (0 means random)"
603 "(with snapshots this option cannot override the baked-in seed)") 605 "(with snapshots this option cannot override the baked-in seed)")
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 #undef DEFINE_ALIAS_float 896 #undef DEFINE_ALIAS_float
895 #undef DEFINE_ALIAS_args 897 #undef DEFINE_ALIAS_args
896 898
897 #undef FLAG_MODE_DECLARE 899 #undef FLAG_MODE_DECLARE
898 #undef FLAG_MODE_DEFINE 900 #undef FLAG_MODE_DEFINE
899 #undef FLAG_MODE_DEFINE_DEFAULTS 901 #undef FLAG_MODE_DEFINE_DEFAULTS
900 #undef FLAG_MODE_META 902 #undef FLAG_MODE_META
901 #undef FLAG_MODE_DEFINE_IMPLICATIONS 903 #undef FLAG_MODE_DEFINE_IMPLICATIONS
902 904
903 #undef COMMA 905 #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
This is Rietveld 408576698