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

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

Issue 5862002: Version 3.0.2. (Closed)
Patch Set: Created 10 years 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
OLDNEW
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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 // codegen-ia32.cc / codegen-arm.cc 187 // codegen-ia32.cc / codegen-arm.cc
188 DEFINE_bool(trace, false, "trace function calls") 188 DEFINE_bool(trace, false, "trace function calls")
189 DEFINE_bool(defer_negation, true, "defer negation operation") 189 DEFINE_bool(defer_negation, true, "defer negation operation")
190 DEFINE_bool(mask_constants_with_cookie, 190 DEFINE_bool(mask_constants_with_cookie,
191 true, 191 true,
192 "use random jit cookie to mask large constants") 192 "use random jit cookie to mask large constants")
193 193
194 // codegen.cc 194 // codegen.cc
195 DEFINE_bool(lazy, true, "use lazy compilation") 195 DEFINE_bool(lazy, true, "use lazy compilation")
196 DEFINE_bool(trace_opt, false, "trace lazy optimization") 196 DEFINE_bool(trace_opt, false, "trace lazy optimization")
197 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
198 DEFINE_bool(opt, true, "use adaptive optimizations") 197 DEFINE_bool(opt, true, "use adaptive optimizations")
199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") 198 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing")
200 DEFINE_bool(always_opt, false, "always try to optimize functions") 199 DEFINE_bool(always_opt, false, "always try to optimize functions")
201 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") 200 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
202 DEFINE_bool(debug_info, true, "add debug information to compiled functions") 201 DEFINE_bool(debug_info, true, "add debug information to compiled functions")
203 DEFINE_bool(deopt, true, "support deoptimization") 202 DEFINE_bool(deopt, true, "support deoptimization")
204 DEFINE_bool(trace_deopt, false, "trace deoptimization") 203 DEFINE_bool(trace_deopt, false, "trace deoptimization")
205 204
206 // compiler.cc 205 // compiler.cc
207 DEFINE_bool(strict, false, "strict error checking") 206 DEFINE_bool(strict, false, "strict error checking")
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 DEFINE_bool(log_api, false, "Log API events to the log file.") 449 DEFINE_bool(log_api, false, "Log API events to the log file.")
451 DEFINE_bool(log_code, false, 450 DEFINE_bool(log_code, false,
452 "Log code events to the log file without profiling.") 451 "Log code events to the log file without profiling.")
453 DEFINE_bool(log_gc, false, 452 DEFINE_bool(log_gc, false,
454 "Log heap samples on garbage collection for the hp2ps tool.") 453 "Log heap samples on garbage collection for the hp2ps tool.")
455 DEFINE_bool(log_handles, false, "Log global handle events.") 454 DEFINE_bool(log_handles, false, "Log global handle events.")
456 DEFINE_bool(log_snapshot_positions, false, 455 DEFINE_bool(log_snapshot_positions, false,
457 "log positions of (de)serialized objects in the snapshot.") 456 "log positions of (de)serialized objects in the snapshot.")
458 DEFINE_bool(log_suspect, false, "Log suspect operations.") 457 DEFINE_bool(log_suspect, false, "Log suspect operations.")
459 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.") 458 DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.")
459 DEFINE_bool(compress_log, false,
460 "Compress log to save space (makes log less human-readable).")
460 DEFINE_bool(prof, false, 461 DEFINE_bool(prof, false,
461 "Log statistical profiling information (implies --log-code).") 462 "Log statistical profiling information (implies --log-code).")
462 DEFINE_bool(prof_auto, true, 463 DEFINE_bool(prof_auto, true,
463 "Used with --prof, starts profiling automatically") 464 "Used with --prof, starts profiling automatically")
464 DEFINE_bool(prof_lazy, false, 465 DEFINE_bool(prof_lazy, false,
465 "Used with --prof, only does sampling and logging" 466 "Used with --prof, only does sampling and logging"
466 " when profiler is active (implies --noprof_auto).") 467 " when profiler is active (implies --noprof_auto).")
467 DEFINE_bool(prof_browser_mode, true, 468 DEFINE_bool(prof_browser_mode, true,
468 "Used with --prof, turns on browser-compatible mode for profiling.") 469 "Used with --prof, turns on browser-compatible mode for profiling.")
469 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
511 #undef FLAG 512 #undef FLAG
512 513
513 #undef DEFINE_bool 514 #undef DEFINE_bool
514 #undef DEFINE_int 515 #undef DEFINE_int
515 #undef DEFINE_string 516 #undef DEFINE_string
516 517
517 #undef FLAG_MODE_DECLARE 518 #undef FLAG_MODE_DECLARE
518 #undef FLAG_MODE_DEFINE 519 #undef FLAG_MODE_DEFINE
519 #undef FLAG_MODE_DEFINE_DEFAULTS 520 #undef FLAG_MODE_DEFINE_DEFAULTS
520 #undef FLAG_MODE_META 521 #undef FLAG_MODE_META
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698