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