OLD | NEW |
1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 DEFINE_bool(log_code, false, | 393 DEFINE_bool(log_code, false, |
394 "Log code events to the log file without profiling.") | 394 "Log code events to the log file without profiling.") |
395 DEFINE_bool(log_gc, false, | 395 DEFINE_bool(log_gc, false, |
396 "Log heap samples on garbage collection for the hp2ps tool.") | 396 "Log heap samples on garbage collection for the hp2ps tool.") |
397 DEFINE_bool(log_handles, false, "Log global handle events.") | 397 DEFINE_bool(log_handles, false, "Log global handle events.") |
398 DEFINE_bool(log_snapshot_positions, false, | 398 DEFINE_bool(log_snapshot_positions, false, |
399 "log positions of (de)serialized objects in the snapshot.") | 399 "log positions of (de)serialized objects in the snapshot.") |
400 DEFINE_bool(log_state_changes, false, "Log state changes.") | 400 DEFINE_bool(log_state_changes, false, "Log state changes.") |
401 DEFINE_bool(log_suspect, false, "Log suspect operations.") | 401 DEFINE_bool(log_suspect, false, "Log suspect operations.") |
402 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.") | 402 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.") |
403 DEFINE_bool(compress_log, false, | |
404 "Compress log to save space (makes log less human-readable).") | |
405 DEFINE_bool(prof, false, | 403 DEFINE_bool(prof, false, |
406 "Log statistical profiling information (implies --log-code).") | 404 "Log statistical profiling information (implies --log-code).") |
407 DEFINE_bool(prof_auto, true, | 405 DEFINE_bool(prof_auto, true, |
408 "Used with --prof, starts profiling automatically") | 406 "Used with --prof, starts profiling automatically") |
409 DEFINE_bool(prof_lazy, false, | 407 DEFINE_bool(prof_lazy, false, |
410 "Used with --prof, only does sampling and logging" | 408 "Used with --prof, only does sampling and logging" |
411 " when profiler is active (implies --noprof_auto).") | 409 " when profiler is active (implies --noprof_auto).") |
412 DEFINE_bool(prof_browser_mode, true, | 410 DEFINE_bool(prof_browser_mode, true, |
413 "Used with --prof, turns on browser-compatible mode for profiling.") | 411 "Used with --prof, turns on browser-compatible mode for profiling.") |
414 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 412 DEFINE_bool(log_regexp, false, "Log regular expression execution.") |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 #undef FLAG | 452 #undef FLAG |
455 | 453 |
456 #undef DEFINE_bool | 454 #undef DEFINE_bool |
457 #undef DEFINE_int | 455 #undef DEFINE_int |
458 #undef DEFINE_string | 456 #undef DEFINE_string |
459 | 457 |
460 #undef FLAG_MODE_DECLARE | 458 #undef FLAG_MODE_DECLARE |
461 #undef FLAG_MODE_DEFINE | 459 #undef FLAG_MODE_DEFINE |
462 #undef FLAG_MODE_DEFINE_DEFAULTS | 460 #undef FLAG_MODE_DEFINE_DEFAULTS |
463 #undef FLAG_MODE_META | 461 #undef FLAG_MODE_META |
OLD | NEW |