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

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

Issue 142693005: A64: Synchronize with r16918. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 months 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/factory.cc ('k') | src/heap.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 769 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 DEFINE_bool(log_handles, false, "Log global handle events.") 780 DEFINE_bool(log_handles, false, "Log global handle events.")
781 DEFINE_bool(log_snapshot_positions, false, 781 DEFINE_bool(log_snapshot_positions, false,
782 "log positions of (de)serialized objects in the snapshot.") 782 "log positions of (de)serialized objects in the snapshot.")
783 DEFINE_bool(log_suspect, false, "Log suspect operations.") 783 DEFINE_bool(log_suspect, false, "Log suspect operations.")
784 DEFINE_bool(prof, false, 784 DEFINE_bool(prof, false,
785 "Log statistical profiling information (implies --log-code).") 785 "Log statistical profiling information (implies --log-code).")
786 DEFINE_bool(prof_browser_mode, true, 786 DEFINE_bool(prof_browser_mode, true,
787 "Used with --prof, turns on browser-compatible mode for profiling.") 787 "Used with --prof, turns on browser-compatible mode for profiling.")
788 DEFINE_bool(log_regexp, false, "Log regular expression execution.") 788 DEFINE_bool(log_regexp, false, "Log regular expression execution.")
789 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.") 789 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
790 DEFINE_bool(logfile_per_isolate, true, "Separate log files for each isolate.")
790 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.") 791 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
791 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__", 792 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__",
792 "Specify the name of the file for fake gc mmap used in ll_prof") 793 "Specify the name of the file for fake gc mmap used in ll_prof")
793 DEFINE_bool(log_internal_timer_events, false, "Time internal events.") 794 DEFINE_bool(log_internal_timer_events, false, "Time internal events.")
794 DEFINE_bool(log_timer_events, false, 795 DEFINE_bool(log_timer_events, false,
795 "Time events including external callbacks.") 796 "Time events including external callbacks.")
796 DEFINE_implication(log_timer_events, log_internal_timer_events) 797 DEFINE_implication(log_timer_events, log_internal_timer_events)
797 DEFINE_implication(log_internal_timer_events, prof) 798 DEFINE_implication(log_internal_timer_events, prof)
798 DEFINE_bool(log_instruction_stats, false, "Log AArch64 instruction statistics.") 799 DEFINE_bool(log_instruction_stats, false, "Log AArch64 instruction statistics.")
799 DEFINE_string(log_instruction_file, "a64_inst.csv", 800 DEFINE_string(log_instruction_file, "a64_inst.csv",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 DEFINE_implication(print_all_code, print_unopt_code) 840 DEFINE_implication(print_all_code, print_unopt_code)
840 DEFINE_implication(print_all_code, print_code_verbose) 841 DEFINE_implication(print_all_code, print_code_verbose)
841 DEFINE_implication(print_all_code, print_builtin_code) 842 DEFINE_implication(print_all_code, print_builtin_code)
842 DEFINE_implication(print_all_code, print_code_stubs) 843 DEFINE_implication(print_all_code, print_code_stubs)
843 DEFINE_implication(print_all_code, code_comments) 844 DEFINE_implication(print_all_code, code_comments)
844 #ifdef DEBUG 845 #ifdef DEBUG
845 DEFINE_implication(print_all_code, trace_codegen) 846 DEFINE_implication(print_all_code, trace_codegen)
846 #endif 847 #endif
847 #endif 848 #endif
848 849
850 //
851 // Read-only flags
852 //
853 #undef FLAG
854 #define FLAG FLAG_READONLY
855
856 // assembler-arm.h
857 DEFINE_bool(enable_ool_constant_pool, false,
858 "enable use of out-of-line constant pools (ARM only)")
859
849 // Cleanup... 860 // Cleanup...
850 #undef FLAG_FULL 861 #undef FLAG_FULL
851 #undef FLAG_READONLY 862 #undef FLAG_READONLY
852 #undef FLAG 863 #undef FLAG
853 #undef FLAG_ALIAS 864 #undef FLAG_ALIAS
854 865
855 #undef DEFINE_bool 866 #undef DEFINE_bool
856 #undef DEFINE_maybe_bool 867 #undef DEFINE_maybe_bool
857 #undef DEFINE_int 868 #undef DEFINE_int
858 #undef DEFINE_string 869 #undef DEFINE_string
859 #undef DEFINE_float 870 #undef DEFINE_float
860 #undef DEFINE_args 871 #undef DEFINE_args
861 #undef DEFINE_implication 872 #undef DEFINE_implication
862 #undef DEFINE_ALIAS_bool 873 #undef DEFINE_ALIAS_bool
863 #undef DEFINE_ALIAS_int 874 #undef DEFINE_ALIAS_int
864 #undef DEFINE_ALIAS_string 875 #undef DEFINE_ALIAS_string
865 #undef DEFINE_ALIAS_float 876 #undef DEFINE_ALIAS_float
866 #undef DEFINE_ALIAS_args 877 #undef DEFINE_ALIAS_args
867 878
868 #undef FLAG_MODE_DECLARE 879 #undef FLAG_MODE_DECLARE
869 #undef FLAG_MODE_DEFINE 880 #undef FLAG_MODE_DEFINE
870 #undef FLAG_MODE_DEFINE_DEFAULTS 881 #undef FLAG_MODE_DEFINE_DEFAULTS
871 #undef FLAG_MODE_META 882 #undef FLAG_MODE_META
872 #undef FLAG_MODE_DEFINE_IMPLICATIONS 883 #undef FLAG_MODE_DEFINE_IMPLICATIONS
873 884
874 #undef COMMA 885 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698