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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 DEFINE_bool(log_all, false, "Log all events to the log file.") | 343 DEFINE_bool(log_all, false, "Log all events to the log file.") |
344 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.") | 344 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.") |
345 DEFINE_bool(log_api, false, "Log API events to the log file.") | 345 DEFINE_bool(log_api, false, "Log API events to the log file.") |
346 DEFINE_bool(log_code, false, | 346 DEFINE_bool(log_code, false, |
347 "Log code events to the log file without profiling.") | 347 "Log code events to the log file without profiling.") |
348 DEFINE_bool(log_gc, false, | 348 DEFINE_bool(log_gc, false, |
349 "Log heap samples on garbage collection for the hp2ps tool.") | 349 "Log heap samples on garbage collection for the hp2ps tool.") |
350 DEFINE_bool(log_handles, false, "Log global handle events.") | 350 DEFINE_bool(log_handles, false, "Log global handle events.") |
351 DEFINE_bool(log_state_changes, false, "Log state changes.") | 351 DEFINE_bool(log_state_changes, false, "Log state changes.") |
352 DEFINE_bool(log_suspect, false, "Log suspect operations.") | 352 DEFINE_bool(log_suspect, false, "Log suspect operations.") |
| 353 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.") |
353 DEFINE_bool(compress_log, false, | 354 DEFINE_bool(compress_log, false, |
354 "Compress log to save space (makes log less human-readable).") | 355 "Compress log to save space (makes log less human-readable).") |
355 DEFINE_bool(prof, false, | 356 DEFINE_bool(prof, false, |
356 "Log statistical profiling information (implies --log-code).") | 357 "Log statistical profiling information (implies --log-code).") |
357 DEFINE_bool(prof_auto, true, | 358 DEFINE_bool(prof_auto, true, |
358 "Used with --prof, starts profiling automatically") | 359 "Used with --prof, starts profiling automatically") |
359 DEFINE_bool(prof_lazy, false, | 360 DEFINE_bool(prof_lazy, false, |
360 "Used with --prof, only does sampling and logging" | 361 "Used with --prof, only does sampling and logging" |
361 " when profiler is active (implies --noprof_auto).") | 362 " when profiler is active (implies --noprof_auto).") |
362 DEFINE_bool(log_regexp, false, "Log regular expression execution.") | 363 DEFINE_bool(log_regexp, false, "Log regular expression execution.") |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 #undef FLAG | 402 #undef FLAG |
402 | 403 |
403 #undef DEFINE_bool | 404 #undef DEFINE_bool |
404 #undef DEFINE_int | 405 #undef DEFINE_int |
405 #undef DEFINE_string | 406 #undef DEFINE_string |
406 | 407 |
407 #undef FLAG_MODE_DECLARE | 408 #undef FLAG_MODE_DECLARE |
408 #undef FLAG_MODE_DEFINE | 409 #undef FLAG_MODE_DEFINE |
409 #undef FLAG_MODE_DEFINE_DEFAULTS | 410 #undef FLAG_MODE_DEFINE_DEFAULTS |
410 #undef FLAG_MODE_META | 411 #undef FLAG_MODE_META |
OLD | NEW |