| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 DEFINE_int(marking_threads, 0, "number of parallel marking threads") | 538 DEFINE_int(marking_threads, 0, "number of parallel marking threads") |
| 539 #ifdef VERIFY_HEAP | 539 #ifdef VERIFY_HEAP |
| 540 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 540 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| 541 #endif | 541 #endif |
| 542 | 542 |
| 543 // v8.cc | 543 // v8.cc |
| 544 DEFINE_bool(use_idle_notification, true, | 544 DEFINE_bool(use_idle_notification, true, |
| 545 "Use idle notification to reduce memory footprint.") | 545 "Use idle notification to reduce memory footprint.") |
| 546 // ic.cc | 546 // ic.cc |
| 547 DEFINE_bool(use_ic, true, "use inline caching") | 547 DEFINE_bool(use_ic, true, "use inline caching") |
| 548 DEFINE_bool(js_accessor_ics, false, "create ics for js accessors") |
| 548 | 549 |
| 549 // macro-assembler-ia32.cc | 550 // macro-assembler-ia32.cc |
| 550 DEFINE_bool(native_code_counters, false, | 551 DEFINE_bool(native_code_counters, false, |
| 551 "generate extra code for manipulating stats counters") | 552 "generate extra code for manipulating stats counters") |
| 552 | 553 |
| 553 // mark-compact.cc | 554 // mark-compact.cc |
| 554 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") | 555 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") |
| 555 DEFINE_bool(lazy_sweeping, true, | 556 DEFINE_bool(lazy_sweeping, true, |
| 556 "Use lazy sweeping for old pointer and data spaces") | 557 "Use lazy sweeping for old pointer and data spaces") |
| 557 DEFINE_bool(never_compact, false, | 558 DEFINE_bool(never_compact, false, |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 #undef DEFINE_ALIAS_int | 844 #undef DEFINE_ALIAS_int |
| 844 #undef DEFINE_ALIAS_string | 845 #undef DEFINE_ALIAS_string |
| 845 #undef DEFINE_ALIAS_float | 846 #undef DEFINE_ALIAS_float |
| 846 #undef DEFINE_ALIAS_args | 847 #undef DEFINE_ALIAS_args |
| 847 | 848 |
| 848 #undef FLAG_MODE_DECLARE | 849 #undef FLAG_MODE_DECLARE |
| 849 #undef FLAG_MODE_DEFINE | 850 #undef FLAG_MODE_DEFINE |
| 850 #undef FLAG_MODE_DEFINE_DEFAULTS | 851 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 851 #undef FLAG_MODE_META | 852 #undef FLAG_MODE_META |
| 852 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 853 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |