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 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 DEFINE_bool(log_handles, false, "Log global handle events.") | 764 DEFINE_bool(log_handles, false, "Log global handle events.") |
765 DEFINE_bool(log_snapshot_positions, false, | 765 DEFINE_bool(log_snapshot_positions, false, |
766 "log positions of (de)serialized objects in the snapshot.") | 766 "log positions of (de)serialized objects in the snapshot.") |
767 DEFINE_bool(log_suspect, false, "Log suspect operations.") | 767 DEFINE_bool(log_suspect, false, "Log suspect operations.") |
768 DEFINE_bool(prof, false, | 768 DEFINE_bool(prof, false, |
769 "Log statistical profiling information (implies --log-code).") | 769 "Log statistical profiling information (implies --log-code).") |
770 DEFINE_bool(prof_browser_mode, true, | 770 DEFINE_bool(prof_browser_mode, true, |
771 "Used with --prof, turns on browser-compatible mode for profiling.") | 771 "Used with --prof, turns on browser-compatible mode for profiling.") |
772 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 772 DEFINE_bool(log_regexp, false, "Log regular expression execution.") |
773 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") | 773 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") |
| 774 DEFINE_bool(logfile_per_isolate, true, "Separate log files for each isolate.") |
774 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") | 775 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") |
775 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", | 776 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", |
776 "Specify the name of the file for fake gc mmap used in ll_prof") | 777 "Specify the name of the file for fake gc mmap used in ll_prof") |
777 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") | 778 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") |
778 DEFINE_bool(log_timer_events, false, | 779 DEFINE_bool(log_timer_events, false, |
779 "Time events including external callbacks.") | 780 "Time events including external callbacks.") |
780 DEFINE_implication(log_timer_events, log_internal_timer_events) | 781 DEFINE_implication(log_timer_events, log_internal_timer_events) |
781 DEFINE_implication(log_internal_timer_events, prof) | 782 DEFINE_implication(log_internal_timer_events, prof) |
782 | 783 |
783 // | 784 // |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
844 #undef DEFINE_ALIAS_float | 845 #undef DEFINE_ALIAS_float |
845 #undef DEFINE_ALIAS_args | 846 #undef DEFINE_ALIAS_args |
846 | 847 |
847 #undef FLAG_MODE_DECLARE | 848 #undef FLAG_MODE_DECLARE |
848 #undef FLAG_MODE_DEFINE | 849 #undef FLAG_MODE_DEFINE |
849 #undef FLAG_MODE_DEFINE_DEFAULTS | 850 #undef FLAG_MODE_DEFINE_DEFAULTS |
850 #undef FLAG_MODE_META | 851 #undef FLAG_MODE_META |
851 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 852 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
852 | 853 |
853 #undef COMMA | 854 #undef COMMA |
OLD | NEW |