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

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

Issue 155723005: A64: Synchronize with r19001. (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/frames.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 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 DEFINE_bool(concurrent_osr, false, 344 DEFINE_bool(concurrent_osr, false,
345 "concurrent on-stack replacement") 345 "concurrent on-stack replacement")
346 DEFINE_implication(concurrent_osr, concurrent_recompilation) 346 DEFINE_implication(concurrent_osr, concurrent_recompilation)
347 347
348 DEFINE_bool(omit_map_checks_for_leaf_maps, true, 348 DEFINE_bool(omit_map_checks_for_leaf_maps, true,
349 "do not emit check maps for constant values that have a leaf map, " 349 "do not emit check maps for constant values that have a leaf map, "
350 "deoptimize the optimized code if the layout of the maps changes.") 350 "deoptimize the optimized code if the layout of the maps changes.")
351 351
352 // Profiler flags. 352 // Profiler flags.
353 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler") 353 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
354 // 0x1700 fits in the immediate field of an ARM instruction. 354 // 0x1800 fits in the immediate field of an ARM instruction.
355 DEFINE_int(interrupt_budget, 0x1700, 355 DEFINE_int(interrupt_budget, 0x1800,
356 "execution budget before interrupt is triggered") 356 "execution budget before interrupt is triggered")
357 DEFINE_int(type_info_threshold, 25, 357 DEFINE_int(type_info_threshold, 25,
358 "percentage of ICs that must have type info to allow optimization") 358 "percentage of ICs that must have type info to allow optimization")
359 DEFINE_int(self_opt_count, 130, "call count before self-optimization") 359 DEFINE_int(self_opt_count, 130, "call count before self-optimization")
360 360
361 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing") 361 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing")
362 DEFINE_implication(trace_opt_verbose, trace_opt) 362 DEFINE_implication(trace_opt_verbose, trace_opt)
363 363
364 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc 364 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
365 DEFINE_bool(debug_code, false, 365 DEFINE_bool(debug_code, false,
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") 520 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress")
521 DEFINE_bool(age_code, true, 521 DEFINE_bool(age_code, true,
522 "track un-executed functions to age code and flush only " 522 "track un-executed functions to age code and flush only "
523 "old code (required for code flushing)") 523 "old code (required for code flushing)")
524 DEFINE_bool(incremental_marking, true, "use incremental marking") 524 DEFINE_bool(incremental_marking, true, "use incremental marking")
525 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") 525 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
526 DEFINE_bool(trace_incremental_marking, false, 526 DEFINE_bool(trace_incremental_marking, false,
527 "trace progress of the incremental marking") 527 "trace progress of the incremental marking")
528 DEFINE_bool(track_gc_object_stats, false, 528 DEFINE_bool(track_gc_object_stats, false,
529 "track object counts and memory usage") 529 "track object counts and memory usage")
530 DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping") 530 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping")
531 DEFINE_bool(concurrent_sweeping, true, "enable concurrent sweeping") 531 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping")
532 DEFINE_int(sweeper_threads, 0, 532 DEFINE_int(sweeper_threads, 0,
533 "number of parallel and concurrent sweeping threads") 533 "number of parallel and concurrent sweeping threads")
534 #ifdef VERIFY_HEAP 534 #ifdef VERIFY_HEAP
535 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 535 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
536 #endif 536 #endif
537 537
538 538
539 // heap-snapshot-generator.cc 539 // heap-snapshot-generator.cc
540 DEFINE_bool(heap_profiler_trace_objects, false, 540 DEFINE_bool(heap_profiler_trace_objects, false,
541 "Dump heap object allocations/movements/size_updates") 541 "Dump heap object allocations/movements/size_updates")
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
911 #undef DEFINE_ALIAS_float 911 #undef DEFINE_ALIAS_float
912 #undef DEFINE_ALIAS_args 912 #undef DEFINE_ALIAS_args
913 913
914 #undef FLAG_MODE_DECLARE 914 #undef FLAG_MODE_DECLARE
915 #undef FLAG_MODE_DEFINE 915 #undef FLAG_MODE_DEFINE
916 #undef FLAG_MODE_DEFINE_DEFAULTS 916 #undef FLAG_MODE_DEFINE_DEFAULTS
917 #undef FLAG_MODE_META 917 #undef FLAG_MODE_META
918 #undef FLAG_MODE_DEFINE_IMPLICATIONS 918 #undef FLAG_MODE_DEFINE_IMPLICATIONS
919 919
920 #undef COMMA 920 #undef COMMA
OLDNEW
« no previous file with comments | « src/factory.cc ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698