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

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

Issue 549158: Refactor the selection of code generator (toplevel or optimizing) and... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 11 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/fast-codegen.cc ('k') | src/full-codegen.h » ('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 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 DEFINE_bool(defer_negation, true, "defer negation operation") 136 DEFINE_bool(defer_negation, true, "defer negation operation")
137 137
138 // codegen.cc 138 // codegen.cc
139 DEFINE_bool(lazy, true, "use lazy compilation") 139 DEFINE_bool(lazy, true, "use lazy compilation")
140 DEFINE_bool(debug_info, true, "add debug information to compiled functions") 140 DEFINE_bool(debug_info, true, "add debug information to compiled functions")
141 141
142 // compiler.cc 142 // compiler.cc
143 DEFINE_bool(strict, false, "strict error checking") 143 DEFINE_bool(strict, false, "strict error checking")
144 DEFINE_int(min_preparse_length, 1024, 144 DEFINE_int(min_preparse_length, 1024,
145 "minimum length for automatic enable preparsing") 145 "minimum length for automatic enable preparsing")
146 DEFINE_bool(fast_compiler, true, 146 DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code")
147 "use the fast-mode compiler for some top-level code") 147 DEFINE_bool(fast_compiler, false, "enable speculative optimizing backend")
148 DEFINE_bool(always_full_compiler, false,
149 "try to use the dedicated run-once backend for all code")
150 DEFINE_bool(always_fast_compiler, false,
151 "try to use the speculative optimizing backend for all code")
148 DEFINE_bool(trace_bailout, false, 152 DEFINE_bool(trace_bailout, false,
149 "print reasons for failing to use fast compilation") 153 "print reasons for falling back to using the classic V8 backend")
150 DEFINE_bool(always_fast_compiler, false,
151 "always try using the fast compiler")
152 154
153 // compilation-cache.cc 155 // compilation-cache.cc
154 DEFINE_bool(compilation_cache, true, "enable compilation cache") 156 DEFINE_bool(compilation_cache, true, "enable compilation cache")
155 157
156 // debug.cc 158 // debug.cc
157 DEFINE_bool(remote_debugging, false, "enable remote debugging") 159 DEFINE_bool(remote_debugging, false, "enable remote debugging")
158 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 160 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
159 DEFINE_bool(debugger_auto_break, true, 161 DEFINE_bool(debugger_auto_break, true,
160 "automatically set the debug break flag when debugger commands are " 162 "automatically set the debug break flag when debugger commands are "
161 "in the queue") 163 "in the queue")
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 #undef FLAG 421 #undef FLAG
420 422
421 #undef DEFINE_bool 423 #undef DEFINE_bool
422 #undef DEFINE_int 424 #undef DEFINE_int
423 #undef DEFINE_string 425 #undef DEFINE_string
424 426
425 #undef FLAG_MODE_DECLARE 427 #undef FLAG_MODE_DECLARE
426 #undef FLAG_MODE_DEFINE 428 #undef FLAG_MODE_DEFINE
427 #undef FLAG_MODE_DEFINE_DEFAULTS 429 #undef FLAG_MODE_DEFINE_DEFAULTS
428 #undef FLAG_MODE_META 430 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/fast-codegen.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698