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

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

Issue 159695: Basic infrastructure for fast two-pass compilation. A CFG is... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 4 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
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")
136 137
137 // compilation-cache.cc 138 // compilation-cache.cc
138 DEFINE_bool(compilation_cache, true, "enable compilation cache") 139 DEFINE_bool(compilation_cache, true, "enable compilation cache")
139 140
140 // debug.cc 141 // debug.cc
141 DEFINE_bool(remote_debugging, false, "enable remote debugging") 142 DEFINE_bool(remote_debugging, false, "enable remote debugging")
142 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response") 143 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
143 DEFINE_bool(debugger_auto_break, false, 144 DEFINE_bool(debugger_auto_break, false,
144 "automatically set the debug break flag when debugger commands are " 145 "automatically set the debug break flag when debugger commands are "
145 "in the queue (experimental)") 146 "in the queue (experimental)")
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 "pretty print source code for builtins") 261 "pretty print source code for builtins")
261 DEFINE_bool(print_ast, false, "print source AST") 262 DEFINE_bool(print_ast, false, "print source AST")
262 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") 263 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
263 DEFINE_bool(trace_calls, false, "trace calls") 264 DEFINE_bool(trace_calls, false, "trace calls")
264 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") 265 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
265 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") 266 DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
266 267
267 // compiler.cc 268 // compiler.cc
268 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") 269 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
269 DEFINE_bool(print_scopes, false, "print scopes") 270 DEFINE_bool(print_scopes, false, "print scopes")
271 DEFINE_bool(print_cfg, false, "print control-flow graph")
270 272
271 // contexts.cc 273 // contexts.cc
272 DEFINE_bool(trace_contexts, false, "trace contexts operations") 274 DEFINE_bool(trace_contexts, false, "trace contexts operations")
273 275
274 // heap.cc 276 // heap.cc
275 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") 277 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
276 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") 278 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
277 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") 279 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
278 DEFINE_bool(code_stats, false, "report code statistics after GC") 280 DEFINE_bool(code_stats, false, "report code statistics after GC")
279 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 281 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 #undef FLAG 383 #undef FLAG
382 384
383 #undef DEFINE_bool 385 #undef DEFINE_bool
384 #undef DEFINE_int 386 #undef DEFINE_int
385 #undef DEFINE_string 387 #undef DEFINE_string
386 388
387 #undef FLAG_MODE_DECLARE 389 #undef FLAG_MODE_DECLARE
388 #undef FLAG_MODE_DEFINE 390 #undef FLAG_MODE_DEFINE
389 #undef FLAG_MODE_DEFINE_DEFAULTS 391 #undef FLAG_MODE_DEFINE_DEFAULTS
390 #undef FLAG_MODE_META 392 #undef FLAG_MODE_META
OLDNEW
« src/cfg.h ('K') | « src/compiler.cc ('k') | src/ia32/cfg-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698