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 414 matching lines...) Loading... |
425 "track un-executed functions to age code and flush only " | 425 "track un-executed functions to age code and flush only " |
426 "old code") | 426 "old code") |
427 DEFINE_bool(incremental_marking, true, "use incremental marking") | 427 DEFINE_bool(incremental_marking, true, "use incremental marking") |
428 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 428 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
429 DEFINE_bool(trace_incremental_marking, false, | 429 DEFINE_bool(trace_incremental_marking, false, |
430 "trace progress of the incremental marking") | 430 "trace progress of the incremental marking") |
431 DEFINE_bool(track_gc_object_stats, false, | 431 DEFINE_bool(track_gc_object_stats, false, |
432 "track object counts and memory usage") | 432 "track object counts and memory usage") |
433 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") | 433 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
434 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") | 434 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") |
435 DEFINE_int(sweeper_threads, 1, | 435 DEFINE_int(sweeper_threads, 0, |
436 "number of parallel and concurrent sweeping threads") | 436 "number of parallel and concurrent sweeping threads") |
437 DEFINE_bool(parallel_marking, false, "enable parallel marking") | 437 DEFINE_bool(parallel_marking, false, "enable parallel marking") |
438 DEFINE_int(marking_threads, 1, "number of parallel marking threads") | 438 DEFINE_int(marking_threads, 0, "number of parallel marking threads") |
439 #ifdef VERIFY_HEAP | 439 #ifdef VERIFY_HEAP |
440 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 440 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
441 #endif | 441 #endif |
442 | 442 |
443 // v8.cc | 443 // v8.cc |
444 DEFINE_bool(use_idle_notification, true, | 444 DEFINE_bool(use_idle_notification, true, |
445 "Use idle notification to reduce memory footprint.") | 445 "Use idle notification to reduce memory footprint.") |
446 // ic.cc | 446 // ic.cc |
447 DEFINE_bool(use_ic, true, "use inline caching") | 447 DEFINE_bool(use_ic, true, "use inline caching") |
448 | 448 |
(...skipping 292 matching lines...) Loading... |
741 #undef DEFINE_bool | 741 #undef DEFINE_bool |
742 #undef DEFINE_int | 742 #undef DEFINE_int |
743 #undef DEFINE_string | 743 #undef DEFINE_string |
744 #undef DEFINE_implication | 744 #undef DEFINE_implication |
745 | 745 |
746 #undef FLAG_MODE_DECLARE | 746 #undef FLAG_MODE_DECLARE |
747 #undef FLAG_MODE_DEFINE | 747 #undef FLAG_MODE_DEFINE |
748 #undef FLAG_MODE_DEFINE_DEFAULTS | 748 #undef FLAG_MODE_DEFINE_DEFAULTS |
749 #undef FLAG_MODE_META | 749 #undef FLAG_MODE_META |
750 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 750 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |