| 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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 648 DEFINE_bool(prof, false, | 648 DEFINE_bool(prof, false, | 
| 649             "Log statistical profiling information (implies --log-code).") | 649             "Log statistical profiling information (implies --log-code).") | 
| 650 DEFINE_bool(prof_auto, true, | 650 DEFINE_bool(prof_auto, true, | 
| 651             "Used with --prof, starts profiling automatically") | 651             "Used with --prof, starts profiling automatically") | 
| 652 DEFINE_bool(prof_lazy, false, | 652 DEFINE_bool(prof_lazy, false, | 
| 653             "Used with --prof, only does sampling and logging" | 653             "Used with --prof, only does sampling and logging" | 
| 654             " when profiler is active (implies --noprof_auto).") | 654             " when profiler is active (implies --noprof_auto).") | 
| 655 DEFINE_bool(prof_browser_mode, true, | 655 DEFINE_bool(prof_browser_mode, true, | 
| 656             "Used with --prof, turns on browser-compatible mode for profiling.") | 656             "Used with --prof, turns on browser-compatible mode for profiling.") | 
| 657 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 657 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 
| 658 DEFINE_bool(sliding_state_window, false, |  | 
| 659             "Update sliding state window counters.") |  | 
| 660 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") | 658 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") | 
| 661 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") | 659 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") | 
| 662 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", | 660 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", | 
| 663               "Specify the name of the file for fake gc mmap used in ll_prof") | 661               "Specify the name of the file for fake gc mmap used in ll_prof") | 
| 664 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") | 662 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") | 
| 665 DEFINE_bool(log_timer_events, false, | 663 DEFINE_bool(log_timer_events, false, | 
| 666             "Time events including external callbacks.") | 664             "Time events including external callbacks.") | 
| 667 DEFINE_implication(log_timer_events, log_internal_timer_events) | 665 DEFINE_implication(log_timer_events, log_internal_timer_events) | 
| 668 | 666 | 
| 669 // | 667 // | 
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 719 #undef DEFINE_bool | 717 #undef DEFINE_bool | 
| 720 #undef DEFINE_int | 718 #undef DEFINE_int | 
| 721 #undef DEFINE_string | 719 #undef DEFINE_string | 
| 722 #undef DEFINE_implication | 720 #undef DEFINE_implication | 
| 723 | 721 | 
| 724 #undef FLAG_MODE_DECLARE | 722 #undef FLAG_MODE_DECLARE | 
| 725 #undef FLAG_MODE_DEFINE | 723 #undef FLAG_MODE_DEFINE | 
| 726 #undef FLAG_MODE_DEFINE_DEFAULTS | 724 #undef FLAG_MODE_DEFINE_DEFAULTS | 
| 727 #undef FLAG_MODE_META | 725 #undef FLAG_MODE_META | 
| 728 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 726 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 
| OLD | NEW | 
|---|