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

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

Issue 558042: Add fast code generator visitor. (Closed)
Patch Set: Created 10 years, 10 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
« src/fast-codegen.cc ('K') | « src/fast-codegen.cc ('k') | no next file » | 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 DEFINE_bool(print_json_ast, false, "print source AST as JSON") 294 DEFINE_bool(print_json_ast, false, "print source AST as JSON")
295 DEFINE_bool(print_builtin_json_ast, false, 295 DEFINE_bool(print_builtin_json_ast, false,
296 "print source AST for builtins as JSON") 296 "print source AST for builtins as JSON")
297 DEFINE_bool(trace_calls, false, "trace calls") 297 DEFINE_bool(trace_calls, false, "trace calls")
298 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") 298 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
299 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") 299 DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
300 300
301 // compiler.cc 301 // compiler.cc
302 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") 302 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
303 DEFINE_bool(print_scopes, false, "print scopes") 303 DEFINE_bool(print_scopes, false, "print scopes")
304 DEFINE_bool(print_ir, false, "print the AST as seen by the backend")
304 305
305 // contexts.cc 306 // contexts.cc
306 DEFINE_bool(trace_contexts, false, "trace contexts operations") 307 DEFINE_bool(trace_contexts, false, "trace contexts operations")
307 308
308 // heap.cc 309 // heap.cc
309 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") 310 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
310 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") 311 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
311 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") 312 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
312 DEFINE_bool(code_stats, false, "report code statistics after GC") 313 DEFINE_bool(code_stats, false, "report code statistics after GC")
313 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") 314 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 #undef FLAG 422 #undef FLAG
422 423
423 #undef DEFINE_bool 424 #undef DEFINE_bool
424 #undef DEFINE_int 425 #undef DEFINE_int
425 #undef DEFINE_string 426 #undef DEFINE_string
426 427
427 #undef FLAG_MODE_DECLARE 428 #undef FLAG_MODE_DECLARE
428 #undef FLAG_MODE_DEFINE 429 #undef FLAG_MODE_DEFINE
429 #undef FLAG_MODE_DEFINE_DEFAULTS 430 #undef FLAG_MODE_DEFINE_DEFAULTS
430 #undef FLAG_MODE_META 431 #undef FLAG_MODE_META
OLDNEW
« src/fast-codegen.cc ('K') | « src/fast-codegen.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698