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

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

Issue 249283002: Implement --omit, --raw_[context_]file=... for mksnapshot tool. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: address feedback Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/mksnapshot.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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 #ifdef _WIN32 646 #ifdef _WIN32
647 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", 647 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
648 "file in which to testing_serialize heap") 648 "file in which to testing_serialize heap")
649 #else 649 #else
650 DEFINE_string(testing_serialization_file, "/tmp/serdes", 650 DEFINE_string(testing_serialization_file, "/tmp/serdes",
651 "file in which to serialize heap") 651 "file in which to serialize heap")
652 #endif 652 #endif
653 653
654 // mksnapshot.cc 654 // mksnapshot.cc
655 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in" 655 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in"
656 " the snapshot (mksnapshot only)") 656 " the snapshot (mksnapshot only)")
657 DEFINE_string(raw_file, NULL, "A file to write the raw snapshot bytes to. "
658 "(mksnapshot only)")
659 DEFINE_string(raw_context_file, NULL, "A file to write the raw context "
660 "snapshot bytes to. (mksnapshot only)")
661 DEFINE_bool(omit, false, "Omit raw snapshot bytes in generated code. "
662 "(mksnapshot only)")
657 663
658 // code-stubs-hydrogen.cc 664 // code-stubs-hydrogen.cc
659 DEFINE_bool(profile_hydrogen_code_stub_compilation, false, 665 DEFINE_bool(profile_hydrogen_code_stub_compilation, false,
660 "Print the time it takes to lazily compile hydrogen code stubs.") 666 "Print the time it takes to lazily compile hydrogen code stubs.")
661 667
662 DEFINE_bool(predictable, false, "enable predictable mode") 668 DEFINE_bool(predictable, false, "enable predictable mode")
663 DEFINE_neg_implication(predictable, concurrent_recompilation) 669 DEFINE_neg_implication(predictable, concurrent_recompilation)
664 DEFINE_neg_implication(predictable, concurrent_osr) 670 DEFINE_neg_implication(predictable, concurrent_osr)
665 DEFINE_neg_implication(predictable, concurrent_sweeping) 671 DEFINE_neg_implication(predictable, concurrent_sweeping)
666 DEFINE_neg_implication(predictable, parallel_sweeping) 672 DEFINE_neg_implication(predictable, parallel_sweeping)
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 #undef DEFINE_ALIAS_float 931 #undef DEFINE_ALIAS_float
926 #undef DEFINE_ALIAS_args 932 #undef DEFINE_ALIAS_args
927 933
928 #undef FLAG_MODE_DECLARE 934 #undef FLAG_MODE_DECLARE
929 #undef FLAG_MODE_DEFINE 935 #undef FLAG_MODE_DEFINE
930 #undef FLAG_MODE_DEFINE_DEFAULTS 936 #undef FLAG_MODE_DEFINE_DEFAULTS
931 #undef FLAG_MODE_META 937 #undef FLAG_MODE_META
932 #undef FLAG_MODE_DEFINE_IMPLICATIONS 938 #undef FLAG_MODE_DEFINE_IMPLICATIONS
933 939
934 #undef COMMA 940 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/mksnapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698