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

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

Issue 132373011: A64: Synchronize with r17635. (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/func-name-inferrer.cc » ('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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 DEFINE_bool(block_concurrent_recompilation, false, 331 DEFINE_bool(block_concurrent_recompilation, false,
332 "block queued jobs until released") 332 "block queued jobs until released")
333 DEFINE_bool(concurrent_osr, false, 333 DEFINE_bool(concurrent_osr, false,
334 "concurrent on-stack replacement") 334 "concurrent on-stack replacement")
335 DEFINE_implication(concurrent_osr, concurrent_recompilation) 335 DEFINE_implication(concurrent_osr, concurrent_recompilation)
336 336
337 DEFINE_bool(omit_map_checks_for_leaf_maps, true, 337 DEFINE_bool(omit_map_checks_for_leaf_maps, true,
338 "do not emit check maps for constant values that have a leaf map, " 338 "do not emit check maps for constant values that have a leaf map, "
339 "deoptimize the optimized code if the layout of the maps changes.") 339 "deoptimize the optimized code if the layout of the maps changes.")
340 340
341 DEFINE_bool(new_string_add, false, "enable new string addition")
342
341 // Experimental profiler changes. 343 // Experimental profiler changes.
342 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments") 344 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments")
343 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability") 345 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability")
344 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") 346 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
345 DEFINE_bool(self_optimization, false, 347 DEFINE_bool(self_optimization, false,
346 "primitive functions trigger their own optimization") 348 "primitive functions trigger their own optimization")
347 DEFINE_bool(direct_self_opt, false, 349 DEFINE_bool(direct_self_opt, false,
348 "call recompile stub directly when self-optimizing") 350 "call recompile stub directly when self-optimizing")
349 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed") 351 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed")
350 DEFINE_bool(interrupt_at_exit, false, 352 DEFINE_bool(interrupt_at_exit, false,
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 DEFINE_bool(log_timer_events, false, 811 DEFINE_bool(log_timer_events, false,
810 "Time events including external callbacks.") 812 "Time events including external callbacks.")
811 DEFINE_implication(log_timer_events, log_internal_timer_events) 813 DEFINE_implication(log_timer_events, log_internal_timer_events)
812 DEFINE_implication(log_internal_timer_events, prof) 814 DEFINE_implication(log_internal_timer_events, prof)
813 DEFINE_bool(log_instruction_stats, false, "Log AArch64 instruction statistics.") 815 DEFINE_bool(log_instruction_stats, false, "Log AArch64 instruction statistics.")
814 DEFINE_string(log_instruction_file, "a64_inst.csv", 816 DEFINE_string(log_instruction_file, "a64_inst.csv",
815 "AArch64 instruction statistics log file.") 817 "AArch64 instruction statistics log file.")
816 DEFINE_int(log_instruction_period, 1 << 22, 818 DEFINE_int(log_instruction_period, 1 << 22,
817 "AArch64 instruction statistics logging period.") 819 "AArch64 instruction statistics logging period.")
818 820
821 DEFINE_bool(redirect_code_traces, false,
822 "output deopt information and disassembly into file "
823 "code-<pid>-<isolate id>.asm")
824 DEFINE_string(redirect_code_traces_to, NULL,
825 "output deopt information and disassembly into the given file")
826
819 // 827 //
820 // Disassembler only flags 828 // Disassembler only flags
821 // 829 //
822 #undef FLAG 830 #undef FLAG
823 #ifdef ENABLE_DISASSEMBLER 831 #ifdef ENABLE_DISASSEMBLER
824 #define FLAG FLAG_FULL 832 #define FLAG FLAG_FULL
825 #else 833 #else
826 #define FLAG FLAG_READONLY 834 #define FLAG FLAG_READONLY
827 #endif 835 #endif
828 836
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 #undef DEFINE_ALIAS_float 911 #undef DEFINE_ALIAS_float
904 #undef DEFINE_ALIAS_args 912 #undef DEFINE_ALIAS_args
905 913
906 #undef FLAG_MODE_DECLARE 914 #undef FLAG_MODE_DECLARE
907 #undef FLAG_MODE_DEFINE 915 #undef FLAG_MODE_DEFINE
908 #undef FLAG_MODE_DEFINE_DEFAULTS 916 #undef FLAG_MODE_DEFINE_DEFAULTS
909 #undef FLAG_MODE_META 917 #undef FLAG_MODE_META
910 #undef FLAG_MODE_DEFINE_IMPLICATIONS 918 #undef FLAG_MODE_DEFINE_IMPLICATIONS
911 919
912 #undef COMMA 920 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/func-name-inferrer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698