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

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

Issue 255022: Remove obsolete support for an experimental multipass compiler. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 2 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/compiler.cc ('k') | src/ia32/cfg-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 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 "check stack for overflow, interrupt, breakpoint") 126 "check stack for overflow, interrupt, breakpoint")
127 127
128 // codegen.cc 128 // codegen.cc
129 DEFINE_bool(lazy, true, "use lazy compilation") 129 DEFINE_bool(lazy, true, "use lazy compilation")
130 DEFINE_bool(debug_info, true, "add debug information to compiled functions") 130 DEFINE_bool(debug_info, true, "add debug information to compiled functions")
131 131
132 // compiler.cc 132 // compiler.cc
133 DEFINE_bool(strict, false, "strict error checking") 133 DEFINE_bool(strict, false, "strict error checking")
134 DEFINE_int(min_preparse_length, 1024, 134 DEFINE_int(min_preparse_length, 1024,
135 "Minimum length for automatic enable preparsing") 135 "Minimum length for automatic enable preparsing")
136 DEFINE_bool(multipass, false, "use the multipass code generator")
137 136
138 // compilation-cache.cc 137 // compilation-cache.cc
139 DEFINE_bool(compilation_cache, true, "enable compilation cache") 138 DEFINE_bool(compilation_cache, true, "enable compilation cache")
140 139
141 // debug.cc 140 // debug.cc
142 DEFINE_bool(remote_debugging, false, "enable remote debugging") 141 DEFINE_bool(remote_debugging, false, "enable remote debugging")
143 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 142 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
144 DEFINE_bool(debugger_auto_break, false, 143 DEFINE_bool(debugger_auto_break, false,
145 "automatically set the debug break flag when debugger commands are " 144 "automatically set the debug break flag when debugger commands are "
146 "in the queue (experimental)") 145 "in the queue (experimental)")
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 #undef FLAG 385 #undef FLAG
387 386
388 #undef DEFINE_bool 387 #undef DEFINE_bool
389 #undef DEFINE_int 388 #undef DEFINE_int
390 #undef DEFINE_string 389 #undef DEFINE_string
391 390
392 #undef FLAG_MODE_DECLARE 391 #undef FLAG_MODE_DECLARE
393 #undef FLAG_MODE_DEFINE 392 #undef FLAG_MODE_DEFINE
394 #undef FLAG_MODE_DEFINE_DEFAULTS 393 #undef FLAG_MODE_DEFINE_DEFAULTS
395 #undef FLAG_MODE_META 394 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/ia32/cfg-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698