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 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
517 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") | 517 DEFINE_bool(trace_code_flushing, false, "trace code flushing progress") |
518 DEFINE_bool(age_code, true, | 518 DEFINE_bool(age_code, true, |
519 "track un-executed functions to age code and flush only " | 519 "track un-executed functions to age code and flush only " |
520 "old code (required for code flushing)") | 520 "old code (required for code flushing)") |
521 DEFINE_bool(incremental_marking, true, "use incremental marking") | 521 DEFINE_bool(incremental_marking, true, "use incremental marking") |
522 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 522 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
523 DEFINE_bool(trace_incremental_marking, false, | 523 DEFINE_bool(trace_incremental_marking, false, |
524 "trace progress of the incremental marking") | 524 "trace progress of the incremental marking") |
525 DEFINE_bool(track_gc_object_stats, false, | 525 DEFINE_bool(track_gc_object_stats, false, |
526 "track object counts and memory usage") | 526 "track object counts and memory usage") |
527 DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping") | 527 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
528 DEFINE_bool(concurrent_sweeping, true, "enable concurrent sweeping") | 528 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") |
529 DEFINE_int(sweeper_threads, 0, | 529 DEFINE_int(sweeper_threads, 0, |
530 "number of parallel and concurrent sweeping threads") | 530 "number of parallel and concurrent sweeping threads") |
531 DEFINE_bool(job_based_sweeping, false, "enable job based sweeping") | 531 DEFINE_bool(job_based_sweeping, false, "enable job based sweeping") |
532 #ifdef VERIFY_HEAP | 532 #ifdef VERIFY_HEAP |
533 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 533 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
534 #endif | 534 #endif |
535 | 535 |
536 | 536 |
537 // heap-snapshot-generator.cc | 537 // heap-snapshot-generator.cc |
538 DEFINE_bool(heap_profiler_trace_objects, false, | 538 DEFINE_bool(heap_profiler_trace_objects, false, |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
912 #undef DEFINE_ALIAS_float | 912 #undef DEFINE_ALIAS_float |
913 #undef DEFINE_ALIAS_args | 913 #undef DEFINE_ALIAS_args |
914 | 914 |
915 #undef FLAG_MODE_DECLARE | 915 #undef FLAG_MODE_DECLARE |
916 #undef FLAG_MODE_DEFINE | 916 #undef FLAG_MODE_DEFINE |
917 #undef FLAG_MODE_DEFINE_DEFAULTS | 917 #undef FLAG_MODE_DEFINE_DEFAULTS |
918 #undef FLAG_MODE_META | 918 #undef FLAG_MODE_META |
919 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 919 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
920 | 920 |
921 #undef COMMA | 921 #undef COMMA |
OLD | NEW |