OLD | NEW |
---|---|
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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 DEFINE_string(raw_context_file, NULL, "A file to write the raw context " | |
659 "snapshot bytes to.") | |
660 DEFINE_bool(omit, false, "Omit raw snapshot bytes in generated code.") | |
Sven Panne
2014/04/24 06:59:17
These new flags don't make sense outside of mksnap
vogelheim
2014/04/24 11:07:59
I looked at this, thinking it should be really eas
Sven Panne
2014/04/24 11:12:43
I suspected that... :-/ OK, then just add "(mksnap
| |
657 | 661 |
658 // code-stubs-hydrogen.cc | 662 // code-stubs-hydrogen.cc |
659 DEFINE_bool(profile_hydrogen_code_stub_compilation, false, | 663 DEFINE_bool(profile_hydrogen_code_stub_compilation, false, |
660 "Print the time it takes to lazily compile hydrogen code stubs.") | 664 "Print the time it takes to lazily compile hydrogen code stubs.") |
661 | 665 |
662 DEFINE_bool(predictable, false, "enable predictable mode") | 666 DEFINE_bool(predictable, false, "enable predictable mode") |
663 DEFINE_neg_implication(predictable, concurrent_recompilation) | 667 DEFINE_neg_implication(predictable, concurrent_recompilation) |
664 DEFINE_neg_implication(predictable, concurrent_osr) | 668 DEFINE_neg_implication(predictable, concurrent_osr) |
665 DEFINE_neg_implication(predictable, concurrent_sweeping) | 669 DEFINE_neg_implication(predictable, concurrent_sweeping) |
666 DEFINE_neg_implication(predictable, parallel_sweeping) | 670 DEFINE_neg_implication(predictable, parallel_sweeping) |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
925 #undef DEFINE_ALIAS_float | 929 #undef DEFINE_ALIAS_float |
926 #undef DEFINE_ALIAS_args | 930 #undef DEFINE_ALIAS_args |
927 | 931 |
928 #undef FLAG_MODE_DECLARE | 932 #undef FLAG_MODE_DECLARE |
929 #undef FLAG_MODE_DEFINE | 933 #undef FLAG_MODE_DEFINE |
930 #undef FLAG_MODE_DEFINE_DEFAULTS | 934 #undef FLAG_MODE_DEFINE_DEFAULTS |
931 #undef FLAG_MODE_META | 935 #undef FLAG_MODE_META |
932 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 936 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
933 | 937 |
934 #undef COMMA | 938 #undef COMMA |
OLD | NEW |