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

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

Issue 159013002: Remove obsolete stack trace string in a message object. (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 | « src/factory.cc ('k') | src/heap.h » ('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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
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(abort_on_uncaught_exception, false, 594 DEFINE_bool(abort_on_uncaught_exception, false,
595 "abort program (dump core) when an uncaught exception is thrown") 595 "abort program (dump core) when an uncaught exception is thrown")
596 DEFINE_bool(trace_exception, false,
597 "print stack trace when throwing exceptions")
598 DEFINE_bool(randomize_hashes, true, 596 DEFINE_bool(randomize_hashes, true,
599 "randomize hashes to avoid predictable hash collisions " 597 "randomize hashes to avoid predictable hash collisions "
600 "(with snapshots this option cannot override the baked-in seed)") 598 "(with snapshots this option cannot override the baked-in seed)")
601 DEFINE_int(hash_seed, 0, 599 DEFINE_int(hash_seed, 0,
602 "Fixed seed to use to hash property keys (0 means random)" 600 "Fixed seed to use to hash property keys (0 means random)"
603 "(with snapshots this option cannot override the baked-in seed)") 601 "(with snapshots this option cannot override the baked-in seed)")
604 602
605 // snapshot-common.cc 603 // snapshot-common.cc
606 DEFINE_bool(profile_deserialization, false, 604 DEFINE_bool(profile_deserialization, false,
607 "Print the time it takes to deserialize the snapshot.") 605 "Print the time it takes to deserialize the snapshot.")
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 #undef DEFINE_ALIAS_float 892 #undef DEFINE_ALIAS_float
895 #undef DEFINE_ALIAS_args 893 #undef DEFINE_ALIAS_args
896 894
897 #undef FLAG_MODE_DECLARE 895 #undef FLAG_MODE_DECLARE
898 #undef FLAG_MODE_DEFINE 896 #undef FLAG_MODE_DEFINE
899 #undef FLAG_MODE_DEFINE_DEFAULTS 897 #undef FLAG_MODE_DEFINE_DEFAULTS
900 #undef FLAG_MODE_META 898 #undef FLAG_MODE_META
901 #undef FLAG_MODE_DEFINE_IMPLICATIONS 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS
902 900
903 #undef COMMA 901 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698