| 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 DEFINE_bool(log_api, false, "Log API events to the log file.") | 451 DEFINE_bool(log_api, false, "Log API events to the log file.") |
| 452 DEFINE_bool(log_code, false, | 452 DEFINE_bool(log_code, false, |
| 453 "Log code events to the log file without profiling.") | 453 "Log code events to the log file without profiling.") |
| 454 DEFINE_bool(log_gc, false, | 454 DEFINE_bool(log_gc, false, |
| 455 "Log heap samples on garbage collection for the hp2ps tool.") | 455 "Log heap samples on garbage collection for the hp2ps tool.") |
| 456 DEFINE_bool(log_handles, false, "Log global handle events.") | 456 DEFINE_bool(log_handles, false, "Log global handle events.") |
| 457 DEFINE_bool(log_snapshot_positions, false, | 457 DEFINE_bool(log_snapshot_positions, false, |
| 458 "log positions of (de)serialized objects in the snapshot.") | 458 "log positions of (de)serialized objects in the snapshot.") |
| 459 DEFINE_bool(log_suspect, false, "Log suspect operations.") | 459 DEFINE_bool(log_suspect, false, "Log suspect operations.") |
| 460 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.") | 460 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.") |
| 461 DEFINE_bool(compress_log, false, | |
| 462 "Compress log to save space (makes log less human-readable).") | |
| 463 DEFINE_bool(prof, false, | 461 DEFINE_bool(prof, false, |
| 464 "Log statistical profiling information (implies --log-code).") | 462 "Log statistical profiling information (implies --log-code).") |
| 465 DEFINE_bool(prof_auto, true, | 463 DEFINE_bool(prof_auto, true, |
| 466 "Used with --prof, starts profiling automatically") | 464 "Used with --prof, starts profiling automatically") |
| 467 DEFINE_bool(prof_lazy, false, | 465 DEFINE_bool(prof_lazy, false, |
| 468 "Used with --prof, only does sampling and logging" | 466 "Used with --prof, only does sampling and logging" |
| 469 " when profiler is active (implies --noprof_auto).") | 467 " when profiler is active (implies --noprof_auto).") |
| 470 DEFINE_bool(prof_browser_mode, true, | 468 DEFINE_bool(prof_browser_mode, true, |
| 471 "Used with --prof, turns on browser-compatible mode for profiling.") | 469 "Used with --prof, turns on browser-compatible mode for profiling.") |
| 472 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 470 DEFINE_bool(log_regexp, false, "Log regular expression execution.") |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 #undef FLAG | 512 #undef FLAG |
| 515 | 513 |
| 516 #undef DEFINE_bool | 514 #undef DEFINE_bool |
| 517 #undef DEFINE_int | 515 #undef DEFINE_int |
| 518 #undef DEFINE_string | 516 #undef DEFINE_string |
| 519 | 517 |
| 520 #undef FLAG_MODE_DECLARE | 518 #undef FLAG_MODE_DECLARE |
| 521 #undef FLAG_MODE_DEFINE | 519 #undef FLAG_MODE_DEFINE |
| 522 #undef FLAG_MODE_DEFINE_DEFAULTS | 520 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 523 #undef FLAG_MODE_META | 521 #undef FLAG_MODE_META |
| OLD | NEW |