| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 | 444 |
| 445 // serialize.cc | 445 // serialize.cc |
| 446 DEFINE_bool(debug_serialization, false, | 446 DEFINE_bool(debug_serialization, false, |
| 447 "write debug information into the snapshot.") | 447 "write debug information into the snapshot.") |
| 448 | 448 |
| 449 // spaces.cc | 449 // spaces.cc |
| 450 DEFINE_bool(collect_heap_spill_statistics, false, | 450 DEFINE_bool(collect_heap_spill_statistics, false, |
| 451 "report heap spill statistics along with heap_stats " | 451 "report heap spill statistics along with heap_stats " |
| 452 "(requires heap_stats)") | 452 "(requires heap_stats)") |
| 453 | 453 |
| 454 DEFINE_bool(trace_isolates, false, "trace isolate state changes") |
| 455 |
| 454 // VM state | 456 // VM state |
| 455 DEFINE_bool(log_state_changes, false, "Log state changes.") | 457 DEFINE_bool(log_state_changes, false, "Log state changes.") |
| 456 | 458 |
| 457 // Regexp | 459 // Regexp |
| 458 DEFINE_bool(regexp_possessive_quantifier, | 460 DEFINE_bool(regexp_possessive_quantifier, |
| 459 false, | 461 false, |
| 460 "enable possessive quantifier syntax for testing") | 462 "enable possessive quantifier syntax for testing") |
| 461 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution") | 463 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution") |
| 462 DEFINE_bool(trace_regexp_assembler, | 464 DEFINE_bool(trace_regexp_assembler, |
| 463 false, | 465 false, |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 #undef FLAG | 545 #undef FLAG |
| 544 | 546 |
| 545 #undef DEFINE_bool | 547 #undef DEFINE_bool |
| 546 #undef DEFINE_int | 548 #undef DEFINE_int |
| 547 #undef DEFINE_string | 549 #undef DEFINE_string |
| 548 | 550 |
| 549 #undef FLAG_MODE_DECLARE | 551 #undef FLAG_MODE_DECLARE |
| 550 #undef FLAG_MODE_DEFINE | 552 #undef FLAG_MODE_DEFINE |
| 551 #undef FLAG_MODE_DEFINE_DEFAULTS | 553 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 552 #undef FLAG_MODE_META | 554 #undef FLAG_MODE_META |
| OLD | NEW |