| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 "print name of functions for which code is generated") | 393 "print name of functions for which code is generated") |
| 394 DEFINE_bool(print_source, false, "pretty print source code") | 394 DEFINE_bool(print_source, false, "pretty print source code") |
| 395 DEFINE_bool(print_builtin_source, false, | 395 DEFINE_bool(print_builtin_source, false, |
| 396 "pretty print source code for builtins") | 396 "pretty print source code for builtins") |
| 397 DEFINE_bool(print_ast, false, "print source AST") | 397 DEFINE_bool(print_ast, false, "print source AST") |
| 398 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 398 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") |
| 399 DEFINE_bool(print_json_ast, false, "print source AST as JSON") | 399 DEFINE_bool(print_json_ast, false, "print source AST as JSON") |
| 400 DEFINE_bool(print_builtin_json_ast, false, | 400 DEFINE_bool(print_builtin_json_ast, false, |
| 401 "print source AST for builtins as JSON") | 401 "print source AST for builtins as JSON") |
| 402 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 402 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") |
| 403 DEFINE_bool(verify_stack_height, false, "verify stack height tracing on ia32") |
| 403 | 404 |
| 404 // compiler.cc | 405 // compiler.cc |
| 405 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") | 406 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") |
| 406 DEFINE_bool(print_scopes, false, "print scopes") | 407 DEFINE_bool(print_scopes, false, "print scopes") |
| 407 | 408 |
| 408 // contexts.cc | 409 // contexts.cc |
| 409 DEFINE_bool(trace_contexts, false, "trace contexts operations") | 410 DEFINE_bool(trace_contexts, false, "trace contexts operations") |
| 410 | 411 |
| 411 // heap.cc | 412 // heap.cc |
| 412 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") | 413 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 #undef FLAG | 514 #undef FLAG |
| 514 | 515 |
| 515 #undef DEFINE_bool | 516 #undef DEFINE_bool |
| 516 #undef DEFINE_int | 517 #undef DEFINE_int |
| 517 #undef DEFINE_string | 518 #undef DEFINE_string |
| 518 | 519 |
| 519 #undef FLAG_MODE_DECLARE | 520 #undef FLAG_MODE_DECLARE |
| 520 #undef FLAG_MODE_DEFINE | 521 #undef FLAG_MODE_DEFINE |
| 521 #undef FLAG_MODE_DEFINE_DEFAULTS | 522 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 522 #undef FLAG_MODE_META | 523 #undef FLAG_MODE_META |
| OLD | NEW |