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

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

Issue 5716001: Add gyp target to build preparser as stand-alone library. (Closed)
Patch Set: Add type field for static windows build. 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
« no previous file with comments | « src/compiler.cc ('k') | src/ia32/macro-assembler-ia32.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 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 #undef FLAG 510 #undef FLAG
512 511
513 #undef DEFINE_bool 512 #undef DEFINE_bool
514 #undef DEFINE_int 513 #undef DEFINE_int
515 #undef DEFINE_string 514 #undef DEFINE_string
516 515
517 #undef FLAG_MODE_DECLARE 516 #undef FLAG_MODE_DECLARE
518 #undef FLAG_MODE_DEFINE 517 #undef FLAG_MODE_DEFINE
519 #undef FLAG_MODE_DEFINE_DEFAULTS 518 #undef FLAG_MODE_DEFINE_DEFAULTS
520 #undef FLAG_MODE_META 519 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698