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

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

Issue 7046078: Remove the flag --debug-info (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
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") 197 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
198 DEFINE_bool(opt, true, "use adaptive optimizations") 198 DEFINE_bool(opt, true, "use adaptive optimizations")
199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing") 199 DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing")
200 DEFINE_bool(always_opt, false, "always try to optimize functions") 200 DEFINE_bool(always_opt, false, "always try to optimize functions")
201 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt") 201 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
202 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")
208 DEFINE_int(min_preparse_length, 1024, 207 DEFINE_int(min_preparse_length, 1024,
209 "minimum length for automatic enable preparsing") 208 "minimum length for automatic enable preparsing")
210 DEFINE_bool(always_full_compiler, false, 209 DEFINE_bool(always_full_compiler, false,
211 "try to use the dedicated run-once backend for all code") 210 "try to use the dedicated run-once backend for all code")
212 DEFINE_bool(trace_bailout, false, 211 DEFINE_bool(trace_bailout, false,
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 #undef FLAG 530 #undef FLAG
532 531
533 #undef DEFINE_bool 532 #undef DEFINE_bool
534 #undef DEFINE_int 533 #undef DEFINE_int
535 #undef DEFINE_string 534 #undef DEFINE_string
536 535
537 #undef FLAG_MODE_DECLARE 536 #undef FLAG_MODE_DECLARE
538 #undef FLAG_MODE_DEFINE 537 #undef FLAG_MODE_DEFINE
539 #undef FLAG_MODE_DEFINE_DEFAULTS 538 #undef FLAG_MODE_DEFINE_DEFAULTS
540 #undef FLAG_MODE_META 539 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698