| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 DEFINE_int(sweeper_threads, 0, | 534 DEFINE_int(sweeper_threads, 0, |
| 535 "number of parallel and concurrent sweeping threads") | 535 "number of parallel and concurrent sweeping threads") |
| 536 #ifdef VERIFY_HEAP | 536 #ifdef VERIFY_HEAP |
| 537 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 537 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| 538 #endif | 538 #endif |
| 539 | 539 |
| 540 | 540 |
| 541 // heap-snapshot-generator.cc | 541 // heap-snapshot-generator.cc |
| 542 DEFINE_bool(heap_profiler_trace_objects, false, | 542 DEFINE_bool(heap_profiler_trace_objects, false, |
| 543 "Dump heap object allocations/movements/size_updates") | 543 "Dump heap object allocations/movements/size_updates") |
| 544 | 544 DEFINE_bool(enable_allocation_profiler, false, |
| 545 "Run v8 without snapshot " |
| 546 "and with enabled allocation reporting calls.") |
| 545 | 547 |
| 546 // v8.cc | 548 // v8.cc |
| 547 DEFINE_bool(use_idle_notification, true, | 549 DEFINE_bool(use_idle_notification, true, |
| 548 "Use idle notification to reduce memory footprint.") | 550 "Use idle notification to reduce memory footprint.") |
| 549 // ic.cc | 551 // ic.cc |
| 550 DEFINE_bool(use_ic, true, "use inline caching") | 552 DEFINE_bool(use_ic, true, "use inline caching") |
| 551 | 553 |
| 552 // macro-assembler-ia32.cc | 554 // macro-assembler-ia32.cc |
| 553 DEFINE_bool(native_code_counters, false, | 555 DEFINE_bool(native_code_counters, false, |
| 554 "generate extra code for manipulating stats counters") | 556 "generate extra code for manipulating stats counters") |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 #undef DEFINE_ALIAS_float | 881 #undef DEFINE_ALIAS_float |
| 880 #undef DEFINE_ALIAS_args | 882 #undef DEFINE_ALIAS_args |
| 881 | 883 |
| 882 #undef FLAG_MODE_DECLARE | 884 #undef FLAG_MODE_DECLARE |
| 883 #undef FLAG_MODE_DEFINE | 885 #undef FLAG_MODE_DEFINE |
| 884 #undef FLAG_MODE_DEFINE_DEFAULTS | 886 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 885 #undef FLAG_MODE_META | 887 #undef FLAG_MODE_META |
| 886 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 888 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 887 | 889 |
| 888 #undef COMMA | 890 #undef COMMA |
| OLD | NEW |