Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(419)

Side by Side Diff: src/flag-definitions.h

Issue 119304: Add log compression ability. (Closed)
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/compiler.cc ('k') | src/heap.cc » ('j') | src/log.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 DEFINE_bool(log_all, false, "Log all events to the log file.") 325 DEFINE_bool(log_all, false, "Log all events to the log file.")
326 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.") 326 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
327 DEFINE_bool(log_api, false, "Log API events to the log file.") 327 DEFINE_bool(log_api, false, "Log API events to the log file.")
328 DEFINE_bool(log_code, false, 328 DEFINE_bool(log_code, false,
329 "Log code events to the log file without profiling.") 329 "Log code events to the log file without profiling.")
330 DEFINE_bool(log_gc, false, 330 DEFINE_bool(log_gc, false,
331 "Log heap samples on garbage collection for the hp2ps tool.") 331 "Log heap samples on garbage collection for the hp2ps tool.")
332 DEFINE_bool(log_handles, false, "Log global handle events.") 332 DEFINE_bool(log_handles, false, "Log global handle events.")
333 DEFINE_bool(log_state_changes, false, "Log state changes.") 333 DEFINE_bool(log_state_changes, false, "Log state changes.")
334 DEFINE_bool(log_suspect, false, "Log suspect operations.") 334 DEFINE_bool(log_suspect, false, "Log suspect operations.")
335 DEFINE_bool(compress_log, false,
336 "Compress log to save space (makes log less human-readable).")
335 DEFINE_bool(prof, false, 337 DEFINE_bool(prof, false,
336 "Log statistical profiling information (implies --log-code).") 338 "Log statistical profiling information (implies --log-code).")
337 DEFINE_bool(prof_auto, true, 339 DEFINE_bool(prof_auto, true,
338 "Used with --prof, starts profiling automatically") 340 "Used with --prof, starts profiling automatically")
339 DEFINE_bool(prof_lazy, false, 341 DEFINE_bool(prof_lazy, false,
340 "Used with --prof, only does sampling and logging" 342 "Used with --prof, only does sampling and logging"
341 " when profiler is active (implies --noprof_auto).") 343 " when profiler is active (implies --noprof_auto).")
342 DEFINE_bool(log_regexp, false, "Log regular expression execution.") 344 DEFINE_bool(log_regexp, false, "Log regular expression execution.")
343 DEFINE_bool(sliding_state_window, false, 345 DEFINE_bool(sliding_state_window, false,
344 "Update sliding state window counters.") 346 "Update sliding state window counters.")
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 #undef FLAG 383 #undef FLAG
382 384
383 #undef DEFINE_bool 385 #undef DEFINE_bool
384 #undef DEFINE_int 386 #undef DEFINE_int
385 #undef DEFINE_string 387 #undef DEFINE_string
386 388
387 #undef FLAG_MODE_DECLARE 389 #undef FLAG_MODE_DECLARE
388 #undef FLAG_MODE_DEFINE 390 #undef FLAG_MODE_DEFINE
389 #undef FLAG_MODE_DEFINE_DEFAULTS 391 #undef FLAG_MODE_DEFINE_DEFAULTS
390 #undef FLAG_MODE_META 392 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/heap.cc » ('j') | src/log.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698