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 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 "Use idle notification to reduce memory footprint.") | 558 "Use idle notification to reduce memory footprint.") |
559 // ic.cc | 559 // ic.cc |
560 DEFINE_bool(use_ic, true, "use inline caching") | 560 DEFINE_bool(use_ic, true, "use inline caching") |
561 | 561 |
562 // macro-assembler-ia32.cc | 562 // macro-assembler-ia32.cc |
563 DEFINE_bool(native_code_counters, false, | 563 DEFINE_bool(native_code_counters, false, |
564 "generate extra code for manipulating stats counters") | 564 "generate extra code for manipulating stats counters") |
565 | 565 |
566 // mark-compact.cc | 566 // mark-compact.cc |
567 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 567 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
568 DEFINE_bool(lazy_sweeping, true, | |
569 "Use lazy sweeping for old pointer and data spaces") | |
570 DEFINE_bool(never_compact, false, | 568 DEFINE_bool(never_compact, false, |
571 "Never perform compaction on full GC - testing only") | 569 "Never perform compaction on full GC - testing only") |
572 DEFINE_bool(compact_code_space, true, | 570 DEFINE_bool(compact_code_space, true, |
573 "Compact code space on full non-incremental collections") | 571 "Compact code space on full non-incremental collections") |
574 DEFINE_bool(incremental_code_compaction, true, | 572 DEFINE_bool(incremental_code_compaction, true, |
575 "Compact code space on full incremental collections") | 573 "Compact code space on full incremental collections") |
576 DEFINE_bool(cleanup_code_caches_at_gc, true, | 574 DEFINE_bool(cleanup_code_caches_at_gc, true, |
577 "Flush inline caches prior to mark compact collection and " | 575 "Flush inline caches prior to mark compact collection and " |
578 "flush code caches in maps during mark compact cycle.") | 576 "flush code caches in maps during mark compact cycle.") |
579 DEFINE_bool(use_marking_progress_bar, true, | 577 DEFINE_bool(use_marking_progress_bar, true, |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
925 #undef DEFINE_ALIAS_float | 923 #undef DEFINE_ALIAS_float |
926 #undef DEFINE_ALIAS_args | 924 #undef DEFINE_ALIAS_args |
927 | 925 |
928 #undef FLAG_MODE_DECLARE | 926 #undef FLAG_MODE_DECLARE |
929 #undef FLAG_MODE_DEFINE | 927 #undef FLAG_MODE_DEFINE |
930 #undef FLAG_MODE_DEFINE_DEFAULTS | 928 #undef FLAG_MODE_DEFINE_DEFAULTS |
931 #undef FLAG_MODE_META | 929 #undef FLAG_MODE_META |
932 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 930 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
933 | 931 |
934 #undef COMMA | 932 #undef COMMA |
OLD | NEW |