| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") | 245 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations") |
| 246 DEFINE_bool(trace_gc, false, | 246 DEFINE_bool(trace_gc, false, |
| 247 "print one trace line following each garbage collection") | 247 "print one trace line following each garbage collection") |
| 248 DEFINE_bool(trace_gc_nvp, false, | 248 DEFINE_bool(trace_gc_nvp, false, |
| 249 "print one detailed trace line in name=value format " | 249 "print one detailed trace line in name=value format " |
| 250 "after each garbage collection") | 250 "after each garbage collection") |
| 251 DEFINE_bool(print_cumulative_gc_stat, false, | 251 DEFINE_bool(print_cumulative_gc_stat, false, |
| 252 "print cumulative GC statistics in name=value format on exit") | 252 "print cumulative GC statistics in name=value format on exit") |
| 253 DEFINE_bool(trace_gc_verbose, false, | 253 DEFINE_bool(trace_gc_verbose, false, |
| 254 "print more details following each garbage collection") | 254 "print more details following each garbage collection") |
| 255 DEFINE_bool(trace_fragmentation, false, |
| 256 "report fragmentation for old pointer and data pages") |
| 255 DEFINE_bool(collect_maps, true, | 257 DEFINE_bool(collect_maps, true, |
| 256 "garbage collect maps from which no objects can be reached") | 258 "garbage collect maps from which no objects can be reached") |
| 257 DEFINE_bool(flush_code, false, | 259 DEFINE_bool(flush_code, false, |
| 258 "flush code that we expect not to use again before full gc") | 260 "flush code that we expect not to use again before full gc") |
| 259 #ifdef V8_TARGET_ARCH_ARM | 261 #ifdef V8_TARGET_ARCH_ARM |
| 260 DEFINE_bool(incremental_marking, false, "use incremental marking") | 262 DEFINE_bool(incremental_marking, false, "use incremental marking") |
| 261 #else | 263 #else |
| 262 DEFINE_bool(incremental_marking, true, "use incremental marking") | 264 DEFINE_bool(incremental_marking, true, "use incremental marking") |
| 263 #endif | 265 #endif |
| 264 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") | 266 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps") |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 DEFINE_bool(trace_lazy, false, "trace lazy compilation") | 452 DEFINE_bool(trace_lazy, false, "trace lazy compilation") |
| 451 | 453 |
| 452 // serialize.cc | 454 // serialize.cc |
| 453 DEFINE_bool(debug_serialization, false, | 455 DEFINE_bool(debug_serialization, false, |
| 454 "write debug information into the snapshot.") | 456 "write debug information into the snapshot.") |
| 455 | 457 |
| 456 // spaces.cc | 458 // spaces.cc |
| 457 DEFINE_bool(collect_heap_spill_statistics, false, | 459 DEFINE_bool(collect_heap_spill_statistics, false, |
| 458 "report heap spill statistics along with heap_stats " | 460 "report heap spill statistics along with heap_stats " |
| 459 "(requires heap_stats)") | 461 "(requires heap_stats)") |
| 460 DEFINE_bool(trace_fragmentation, false, | |
| 461 "report fragmentation for old pointer and data pages") | |
| 462 | 462 |
| 463 DEFINE_bool(trace_isolates, false, "trace isolate state changes") | 463 DEFINE_bool(trace_isolates, false, "trace isolate state changes") |
| 464 | 464 |
| 465 // VM state | 465 // VM state |
| 466 DEFINE_bool(log_state_changes, false, "Log state changes.") | 466 DEFINE_bool(log_state_changes, false, "Log state changes.") |
| 467 | 467 |
| 468 // Regexp | 468 // Regexp |
| 469 DEFINE_bool(regexp_possessive_quantifier, | 469 DEFINE_bool(regexp_possessive_quantifier, |
| 470 false, | 470 false, |
| 471 "enable possessive quantifier syntax for testing") | 471 "enable possessive quantifier syntax for testing") |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 #undef FLAG | 536 #undef FLAG |
| 537 | 537 |
| 538 #undef DEFINE_bool | 538 #undef DEFINE_bool |
| 539 #undef DEFINE_int | 539 #undef DEFINE_int |
| 540 #undef DEFINE_string | 540 #undef DEFINE_string |
| 541 | 541 |
| 542 #undef FLAG_MODE_DECLARE | 542 #undef FLAG_MODE_DECLARE |
| 543 #undef FLAG_MODE_DEFINE | 543 #undef FLAG_MODE_DEFINE |
| 544 #undef FLAG_MODE_DEFINE_DEFAULTS | 544 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 545 #undef FLAG_MODE_META | 545 #undef FLAG_MODE_META |
| OLD | NEW |