| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 "enable asserts that are slow to execute") | 435 "enable asserts that are slow to execute") |
| 436 | 436 |
| 437 // codegen-ia32.cc / codegen-arm.cc | 437 // codegen-ia32.cc / codegen-arm.cc |
| 438 DEFINE_bool(trace_codegen, false, | 438 DEFINE_bool(trace_codegen, false, |
| 439 "print name of functions for which code is generated") | 439 "print name of functions for which code is generated") |
| 440 DEFINE_bool(print_source, false, "pretty print source code") | 440 DEFINE_bool(print_source, false, "pretty print source code") |
| 441 DEFINE_bool(print_builtin_source, false, | 441 DEFINE_bool(print_builtin_source, false, |
| 442 "pretty print source code for builtins") | 442 "pretty print source code for builtins") |
| 443 DEFINE_bool(print_ast, false, "print source AST") | 443 DEFINE_bool(print_ast, false, "print source AST") |
| 444 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 444 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") |
| 445 DEFINE_bool(print_json_ast, false, "print source AST as JSON") | |
| 446 DEFINE_bool(print_builtin_json_ast, false, | |
| 447 "print source AST for builtins as JSON") | |
| 448 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 445 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") |
| 449 | 446 |
| 450 // compiler.cc | 447 // compiler.cc |
| 451 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") | 448 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") |
| 452 DEFINE_bool(print_scopes, false, "print scopes") | 449 DEFINE_bool(print_scopes, false, "print scopes") |
| 453 | 450 |
| 454 // contexts.cc | 451 // contexts.cc |
| 455 DEFINE_bool(trace_contexts, false, "trace contexts operations") | 452 DEFINE_bool(trace_contexts, false, "trace contexts operations") |
| 456 | 453 |
| 457 // heap.cc | 454 // heap.cc |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 #undef DEFINE_bool | 575 #undef DEFINE_bool |
| 579 #undef DEFINE_int | 576 #undef DEFINE_int |
| 580 #undef DEFINE_string | 577 #undef DEFINE_string |
| 581 #undef DEFINE_implication | 578 #undef DEFINE_implication |
| 582 | 579 |
| 583 #undef FLAG_MODE_DECLARE | 580 #undef FLAG_MODE_DECLARE |
| 584 #undef FLAG_MODE_DEFINE | 581 #undef FLAG_MODE_DEFINE |
| 585 #undef FLAG_MODE_DEFINE_DEFAULTS | 582 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 586 #undef FLAG_MODE_META | 583 #undef FLAG_MODE_META |
| 587 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 584 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |