| 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 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 | 440 |
| 441 // serialize.cc | 441 // serialize.cc |
| 442 DEFINE_bool(debug_serialization, false, | 442 DEFINE_bool(debug_serialization, false, |
| 443 "write debug information into the snapshot.") | 443 "write debug information into the snapshot.") |
| 444 | 444 |
| 445 // spaces.cc | 445 // spaces.cc |
| 446 DEFINE_bool(collect_heap_spill_statistics, false, | 446 DEFINE_bool(collect_heap_spill_statistics, false, |
| 447 "report heap spill statistics along with heap_stats " | 447 "report heap spill statistics along with heap_stats " |
| 448 "(requires heap_stats)") | 448 "(requires heap_stats)") |
| 449 | 449 |
| 450 DEFINE_bool(trace_isolates, false, "trace isolate state changes") |
| 451 |
| 450 // VM state | 452 // VM state |
| 451 DEFINE_bool(log_state_changes, false, "Log state changes.") | 453 DEFINE_bool(log_state_changes, false, "Log state changes.") |
| 452 | 454 |
| 453 // Regexp | 455 // Regexp |
| 454 DEFINE_bool(regexp_possessive_quantifier, | 456 DEFINE_bool(regexp_possessive_quantifier, |
| 455 false, | 457 false, |
| 456 "enable possessive quantifier syntax for testing") | 458 "enable possessive quantifier syntax for testing") |
| 457 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution") | 459 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution") |
| 458 DEFINE_bool(trace_regexp_assembler, | 460 DEFINE_bool(trace_regexp_assembler, |
| 459 false, | 461 false, |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 539 #undef FLAG | 541 #undef FLAG |
| 540 | 542 |
| 541 #undef DEFINE_bool | 543 #undef DEFINE_bool |
| 542 #undef DEFINE_int | 544 #undef DEFINE_int |
| 543 #undef DEFINE_string | 545 #undef DEFINE_string |
| 544 | 546 |
| 545 #undef FLAG_MODE_DECLARE | 547 #undef FLAG_MODE_DECLARE |
| 546 #undef FLAG_MODE_DEFINE | 548 #undef FLAG_MODE_DEFINE |
| 547 #undef FLAG_MODE_DEFINE_DEFAULTS | 549 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 548 #undef FLAG_MODE_META | 550 #undef FLAG_MODE_META |
| OLD | NEW |