| 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 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 DEFINE_bool(log_code, false, | 768 DEFINE_bool(log_code, false, |
| 769 "Log code events to the log file without profiling.") | 769 "Log code events to the log file without profiling.") |
| 770 DEFINE_bool(log_gc, false, | 770 DEFINE_bool(log_gc, false, |
| 771 "Log heap samples on garbage collection for the hp2ps tool.") | 771 "Log heap samples on garbage collection for the hp2ps tool.") |
| 772 DEFINE_bool(log_handles, false, "Log global handle events.") | 772 DEFINE_bool(log_handles, false, "Log global handle events.") |
| 773 DEFINE_bool(log_snapshot_positions, false, | 773 DEFINE_bool(log_snapshot_positions, false, |
| 774 "log positions of (de)serialized objects in the snapshot.") | 774 "log positions of (de)serialized objects in the snapshot.") |
| 775 DEFINE_bool(log_suspect, false, "Log suspect operations.") | 775 DEFINE_bool(log_suspect, false, "Log suspect operations.") |
| 776 DEFINE_bool(prof, false, | 776 DEFINE_bool(prof, false, |
| 777 "Log statistical profiling information (implies --log-code).") | 777 "Log statistical profiling information (implies --log-code).") |
| 778 DEFINE_bool(prof_lazy, false, | |
| 779 "Used with --prof, only does sampling and logging" | |
| 780 " when profiler is active.") | |
| 781 DEFINE_bool(prof_browser_mode, true, | 778 DEFINE_bool(prof_browser_mode, true, |
| 782 "Used with --prof, turns on browser-compatible mode for profiling.") | 779 "Used with --prof, turns on browser-compatible mode for profiling.") |
| 783 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 780 DEFINE_bool(log_regexp, false, "Log regular expression execution.") |
| 784 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") | 781 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") |
| 785 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") | 782 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") |
| 786 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", | 783 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", |
| 787 "Specify the name of the file for fake gc mmap used in ll_prof") | 784 "Specify the name of the file for fake gc mmap used in ll_prof") |
| 788 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") | 785 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") |
| 789 DEFINE_bool(log_timer_events, false, | 786 DEFINE_bool(log_timer_events, false, |
| 790 "Time events including external callbacks.") | 787 "Time events including external callbacks.") |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 852 #undef DEFINE_ALIAS_int | 849 #undef DEFINE_ALIAS_int |
| 853 #undef DEFINE_ALIAS_string | 850 #undef DEFINE_ALIAS_string |
| 854 #undef DEFINE_ALIAS_float | 851 #undef DEFINE_ALIAS_float |
| 855 #undef DEFINE_ALIAS_args | 852 #undef DEFINE_ALIAS_args |
| 856 | 853 |
| 857 #undef FLAG_MODE_DECLARE | 854 #undef FLAG_MODE_DECLARE |
| 858 #undef FLAG_MODE_DEFINE | 855 #undef FLAG_MODE_DEFINE |
| 859 #undef FLAG_MODE_DEFINE_DEFAULTS | 856 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 860 #undef FLAG_MODE_META | 857 #undef FLAG_MODE_META |
| 861 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 858 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |