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

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

Issue 13071005: Add an option to dump core when an uncaught exception is thrown. (Closed) Base URL: git@github.com:davepacheco/v8.git@master
Patch Set: updated changes after code review feedback Created 7 years, 8 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 | « 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 490
491 // simulator-arm.cc and simulator-mips.cc 491 // simulator-arm.cc and simulator-mips.cc
492 DEFINE_bool(trace_sim, false, "Trace simulator execution") 492 DEFINE_bool(trace_sim, false, "Trace simulator execution")
493 DEFINE_bool(check_icache, false, 493 DEFINE_bool(check_icache, false,
494 "Check icache flushes in ARM and MIPS simulator") 494 "Check icache flushes in ARM and MIPS simulator")
495 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 495 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
496 DEFINE_int(sim_stack_alignment, 8, 496 DEFINE_int(sim_stack_alignment, 8,
497 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 497 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
498 498
499 // isolate.cc 499 // isolate.cc
500 DEFINE_bool(abort_on_uncaught_exception, false,
501 "abort program (dump core) when an uncaught exception is thrown")
500 DEFINE_bool(trace_exception, false, 502 DEFINE_bool(trace_exception, false,
501 "print stack trace when throwing exceptions") 503 "print stack trace when throwing exceptions")
502 DEFINE_bool(preallocate_message_memory, false, 504 DEFINE_bool(preallocate_message_memory, false,
503 "preallocate some memory to build stack traces.") 505 "preallocate some memory to build stack traces.")
504 DEFINE_bool(randomize_hashes, 506 DEFINE_bool(randomize_hashes,
505 true, 507 true,
506 "randomize hashes to avoid predictable hash collisions " 508 "randomize hashes to avoid predictable hash collisions "
507 "(with snapshots this option cannot override the baked-in seed)") 509 "(with snapshots this option cannot override the baked-in seed)")
508 DEFINE_int(hash_seed, 510 DEFINE_int(hash_seed,
509 0, 511 0,
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 #undef DEFINE_bool 754 #undef DEFINE_bool
753 #undef DEFINE_int 755 #undef DEFINE_int
754 #undef DEFINE_string 756 #undef DEFINE_string
755 #undef DEFINE_implication 757 #undef DEFINE_implication
756 758
757 #undef FLAG_MODE_DECLARE 759 #undef FLAG_MODE_DECLARE
758 #undef FLAG_MODE_DEFINE 760 #undef FLAG_MODE_DEFINE
759 #undef FLAG_MODE_DEFINE_DEFAULTS 761 #undef FLAG_MODE_DEFINE_DEFAULTS
760 #undef FLAG_MODE_META 762 #undef FLAG_MODE_META
761 #undef FLAG_MODE_DEFINE_IMPLICATIONS 763 #undef FLAG_MODE_DEFINE_IMPLICATIONS
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