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

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

Issue 78003002: Removed unused --preallocate-message-memory flag. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. Created 7 years, 1 month 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/allocation-inl.h ('k') | src/frames.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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 "Check icache flushes in ARM and MIPS simulator") 593 "Check icache flushes in ARM and MIPS simulator")
594 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") 594 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
595 DEFINE_int(sim_stack_alignment, 8, 595 DEFINE_int(sim_stack_alignment, 8,
596 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") 596 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
597 597
598 // isolate.cc 598 // isolate.cc
599 DEFINE_bool(abort_on_uncaught_exception, false, 599 DEFINE_bool(abort_on_uncaught_exception, false,
600 "abort program (dump core) when an uncaught exception is thrown") 600 "abort program (dump core) when an uncaught exception is thrown")
601 DEFINE_bool(trace_exception, false, 601 DEFINE_bool(trace_exception, false,
602 "print stack trace when throwing exceptions") 602 "print stack trace when throwing exceptions")
603 DEFINE_bool(preallocate_message_memory, false,
604 "preallocate some memory to build stack traces.")
605 DEFINE_bool(randomize_hashes, true, 603 DEFINE_bool(randomize_hashes, true,
606 "randomize hashes to avoid predictable hash collisions " 604 "randomize hashes to avoid predictable hash collisions "
607 "(with snapshots this option cannot override the baked-in seed)") 605 "(with snapshots this option cannot override the baked-in seed)")
608 DEFINE_int(hash_seed, 0, 606 DEFINE_int(hash_seed, 0,
609 "Fixed seed to use to hash property keys (0 means random)" 607 "Fixed seed to use to hash property keys (0 means random)"
610 "(with snapshots this option cannot override the baked-in seed)") 608 "(with snapshots this option cannot override the baked-in seed)")
611 609
612 // snapshot-common.cc 610 // snapshot-common.cc
613 DEFINE_bool(profile_deserialization, false, 611 DEFINE_bool(profile_deserialization, false,
614 "Print the time it takes to deserialize the snapshot.") 612 "Print the time it takes to deserialize the snapshot.")
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 #undef DEFINE_ALIAS_float 890 #undef DEFINE_ALIAS_float
893 #undef DEFINE_ALIAS_args 891 #undef DEFINE_ALIAS_args
894 892
895 #undef FLAG_MODE_DECLARE 893 #undef FLAG_MODE_DECLARE
896 #undef FLAG_MODE_DEFINE 894 #undef FLAG_MODE_DEFINE
897 #undef FLAG_MODE_DEFINE_DEFAULTS 895 #undef FLAG_MODE_DEFINE_DEFAULTS
898 #undef FLAG_MODE_META 896 #undef FLAG_MODE_META
899 #undef FLAG_MODE_DEFINE_IMPLICATIONS 897 #undef FLAG_MODE_DEFINE_IMPLICATIONS
900 898
901 #undef COMMA 899 #undef COMMA
OLDNEW
« no previous file with comments | « src/allocation-inl.h ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698