| OLD | NEW |
| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 "pretty print source code for builtins") | 263 "pretty print source code for builtins") |
| 264 DEFINE_bool(print_ast, false, "print source AST") | 264 DEFINE_bool(print_ast, false, "print source AST") |
| 265 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 265 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") |
| 266 DEFINE_bool(trace_calls, false, "trace calls") | 266 DEFINE_bool(trace_calls, false, "trace calls") |
| 267 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") | 267 DEFINE_bool(trace_builtin_calls, false, "trace builtins calls") |
| 268 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 268 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") |
| 269 | 269 |
| 270 // compiler.cc | 270 // compiler.cc |
| 271 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") | 271 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") |
| 272 DEFINE_bool(print_scopes, false, "print scopes") | 272 DEFINE_bool(print_scopes, false, "print scopes") |
| 273 DEFINE_bool(print_cfg, false, "print control-flow graph") | |
| 274 | 273 |
| 275 // contexts.cc | 274 // contexts.cc |
| 276 DEFINE_bool(trace_contexts, false, "trace contexts operations") | 275 DEFINE_bool(trace_contexts, false, "trace contexts operations") |
| 277 | 276 |
| 278 // heap.cc | 277 // heap.cc |
| 279 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") | 278 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") |
| 280 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") | 279 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") |
| 281 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") | 280 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") |
| 282 DEFINE_bool(code_stats, false, "report code statistics after GC") | 281 DEFINE_bool(code_stats, false, "report code statistics after GC") |
| 283 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 282 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 #undef FLAG | 384 #undef FLAG |
| 386 | 385 |
| 387 #undef DEFINE_bool | 386 #undef DEFINE_bool |
| 388 #undef DEFINE_int | 387 #undef DEFINE_int |
| 389 #undef DEFINE_string | 388 #undef DEFINE_string |
| 390 | 389 |
| 391 #undef FLAG_MODE_DECLARE | 390 #undef FLAG_MODE_DECLARE |
| 392 #undef FLAG_MODE_DEFINE | 391 #undef FLAG_MODE_DEFINE |
| 393 #undef FLAG_MODE_DEFINE_DEFAULTS | 392 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 394 #undef FLAG_MODE_META | 393 #undef FLAG_MODE_META |
| OLD | NEW |