Chromium Code Reviews| 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_bool(track_gc_object_stats, false, | 534 DEFINE_bool(track_gc_object_stats, false, |
| 535 "track object counts and memory usage") | 535 "track object counts and memory usage") |
| 536 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") | 536 DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") |
| 537 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") | 537 DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") |
| 538 DEFINE_int(sweeper_threads, 0, | 538 DEFINE_int(sweeper_threads, 0, |
| 539 "number of parallel and concurrent sweeping threads") | 539 "number of parallel and concurrent sweeping threads") |
| 540 #ifdef VERIFY_HEAP | 540 #ifdef VERIFY_HEAP |
| 541 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 541 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| 542 #endif | 542 #endif |
| 543 | 543 |
| 544 | |
| 545 // heap-snapshot-generator.cc | |
| 546 DEFINE_bool(heap_profiler_trace_objects, false, | |
|
yurys
2013/10/17 13:20:54
May be log_heap_profiler
loislo
2013/10/17 13:34:13
I think it is more precise name. Heap objects trac
| |
| 547 "dump heap object allocations/movements/size_updates") | |
|
yurys
2013/10/17 13:20:54
style: dump -> Dump
loislo
2013/10/17 13:34:13
Done.
| |
| 548 | |
| 549 | |
| 544 // v8.cc | 550 // v8.cc |
| 545 DEFINE_bool(use_idle_notification, true, | 551 DEFINE_bool(use_idle_notification, true, |
| 546 "Use idle notification to reduce memory footprint.") | 552 "Use idle notification to reduce memory footprint.") |
| 547 // ic.cc | 553 // ic.cc |
| 548 DEFINE_bool(use_ic, true, "use inline caching") | 554 DEFINE_bool(use_ic, true, "use inline caching") |
| 549 | 555 |
| 550 // macro-assembler-ia32.cc | 556 // macro-assembler-ia32.cc |
| 551 DEFINE_bool(native_code_counters, false, | 557 DEFINE_bool(native_code_counters, false, |
| 552 "generate extra code for manipulating stats counters") | 558 "generate extra code for manipulating stats counters") |
| 553 | 559 |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 873 #undef DEFINE_ALIAS_float | 879 #undef DEFINE_ALIAS_float |
| 874 #undef DEFINE_ALIAS_args | 880 #undef DEFINE_ALIAS_args |
| 875 | 881 |
| 876 #undef FLAG_MODE_DECLARE | 882 #undef FLAG_MODE_DECLARE |
| 877 #undef FLAG_MODE_DEFINE | 883 #undef FLAG_MODE_DEFINE |
| 878 #undef FLAG_MODE_DEFINE_DEFAULTS | 884 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 879 #undef FLAG_MODE_META | 885 #undef FLAG_MODE_META |
| 880 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 886 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 881 | 887 |
| 882 #undef COMMA | 888 #undef COMMA |
| OLD | NEW |