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

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

Issue 11348298: Take instrumentation overhead into account when plotting. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years 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 | « src/counters.cc ('k') | src/log.h » ('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 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
657 " when profiler is active (implies --noprof_auto).") 657 " when profiler is active (implies --noprof_auto).")
658 DEFINE_bool(prof_browser_mode, true, 658 DEFINE_bool(prof_browser_mode, true,
659 "Used with --prof, turns on browser-compatible mode for profiling.") 659 "Used with --prof, turns on browser-compatible mode for profiling.")
660 DEFINE_bool(log_regexp, false, "Log regular expression execution.") 660 DEFINE_bool(log_regexp, false, "Log regular expression execution.")
661 DEFINE_bool(sliding_state_window, false, 661 DEFINE_bool(sliding_state_window, false,
662 "Update sliding state window counters.") 662 "Update sliding state window counters.")
663 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") 663 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
664 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") 664 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
665 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", 665 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__",
666 "Specify the name of the file for fake gc mmap used in ll_prof") 666 "Specify the name of the file for fake gc mmap used in ll_prof")
667 DEFINE_bool(log_timer_events, false, "Log histogram timer events.") 667 DEFINE_bool(log_internal_timer_events, false, "Time internal events.")
668 DEFINE_bool(log_timer_events, false,
669 "Time events including external callbacks.")
670 DEFINE_implication(log_timer_events, log_internal_timer_events)
668 671
669 // 672 //
670 // Disassembler only flags 673 // Disassembler only flags
671 // 674 //
672 #undef FLAG 675 #undef FLAG
673 #ifdef ENABLE_DISASSEMBLER 676 #ifdef ENABLE_DISASSEMBLER
674 #define FLAG FLAG_FULL 677 #define FLAG FLAG_FULL
675 #else 678 #else
676 #define FLAG FLAG_READONLY 679 #define FLAG FLAG_READONLY
677 #endif 680 #endif
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 #undef DEFINE_bool 722 #undef DEFINE_bool
720 #undef DEFINE_int 723 #undef DEFINE_int
721 #undef DEFINE_string 724 #undef DEFINE_string
722 #undef DEFINE_implication 725 #undef DEFINE_implication
723 726
724 #undef FLAG_MODE_DECLARE 727 #undef FLAG_MODE_DECLARE
725 #undef FLAG_MODE_DEFINE 728 #undef FLAG_MODE_DEFINE
726 #undef FLAG_MODE_DEFINE_DEFAULTS 729 #undef FLAG_MODE_DEFINE_DEFAULTS
727 #undef FLAG_MODE_META 730 #undef FLAG_MODE_META
728 #undef FLAG_MODE_DEFINE_IMPLICATIONS 731 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « src/counters.cc ('k') | src/log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698