| 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 DEFINE_bool(trace_lazy, false, "trace lazy compilation") | 466 DEFINE_bool(trace_lazy, false, "trace lazy compilation") |
| 467 | 467 |
| 468 // serialize.cc | 468 // serialize.cc |
| 469 DEFINE_bool(debug_serialization, false, | 469 DEFINE_bool(debug_serialization, false, |
| 470 "write debug information into the snapshot.") | 470 "write debug information into the snapshot.") |
| 471 | 471 |
| 472 // spaces.cc | 472 // spaces.cc |
| 473 DEFINE_bool(collect_heap_spill_statistics, false, | 473 DEFINE_bool(collect_heap_spill_statistics, false, |
| 474 "report heap spill statistics along with heap_stats " | 474 "report heap spill statistics along with heap_stats " |
| 475 "(requires heap_stats)") | 475 "(requires heap_stats)") |
| 476 DEFINE_bool(trace_fragmentation, false, |
| 477 "report fragmentation for old pointer and data pages") |
| 476 | 478 |
| 477 DEFINE_bool(trace_isolates, false, "trace isolate state changes") | 479 DEFINE_bool(trace_isolates, false, "trace isolate state changes") |
| 478 | 480 |
| 479 // VM state | 481 // VM state |
| 480 DEFINE_bool(log_state_changes, false, "Log state changes.") | 482 DEFINE_bool(log_state_changes, false, "Log state changes.") |
| 481 | 483 |
| 482 // Regexp | 484 // Regexp |
| 483 DEFINE_bool(regexp_possessive_quantifier, | 485 DEFINE_bool(regexp_possessive_quantifier, |
| 484 false, | 486 false, |
| 485 "enable possessive quantifier syntax for testing") | 487 "enable possessive quantifier syntax for testing") |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 #undef FLAG | 570 #undef FLAG |
| 569 | 571 |
| 570 #undef DEFINE_bool | 572 #undef DEFINE_bool |
| 571 #undef DEFINE_int | 573 #undef DEFINE_int |
| 572 #undef DEFINE_string | 574 #undef DEFINE_string |
| 573 | 575 |
| 574 #undef FLAG_MODE_DECLARE | 576 #undef FLAG_MODE_DECLARE |
| 575 #undef FLAG_MODE_DEFINE | 577 #undef FLAG_MODE_DEFINE |
| 576 #undef FLAG_MODE_DEFINE_DEFAULTS | 578 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 577 #undef FLAG_MODE_META | 579 #undef FLAG_MODE_META |
| OLD | NEW |