| 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 645 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 656 #ifdef DEBUG | 656 #ifdef DEBUG | 
| 657 #define FLAG FLAG_FULL | 657 #define FLAG FLAG_FULL | 
| 658 #else | 658 #else | 
| 659 #define FLAG FLAG_READONLY | 659 #define FLAG FLAG_READONLY | 
| 660 #endif | 660 #endif | 
| 661 | 661 | 
| 662 // checks.cc | 662 // checks.cc | 
| 663 DEFINE_bool(enable_slow_asserts, false, | 663 DEFINE_bool(enable_slow_asserts, false, | 
| 664             "enable asserts that are slow to execute") | 664             "enable asserts that are slow to execute") | 
| 665 | 665 | 
| 666 // codegen-ia32.cc / codegen-arm.cc | 666 // codegen-ia32.cc / codegen-arm.cc / macro-assembler-*.cc | 
| 667 DEFINE_bool(print_source, false, "pretty print source code") | 667 DEFINE_bool(print_source, false, "pretty print source code") | 
| 668 DEFINE_bool(print_builtin_source, false, | 668 DEFINE_bool(print_builtin_source, false, | 
| 669             "pretty print source code for builtins") | 669             "pretty print source code for builtins") | 
| 670 DEFINE_bool(print_ast, false, "print source AST") | 670 DEFINE_bool(print_ast, false, "print source AST") | 
| 671 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 671 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 
| 672 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 672 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 
|  | 673 DEFINE_bool(trap_on_abort, false, "replace aborts by breakpoints") | 
| 673 | 674 | 
| 674 // compiler.cc | 675 // compiler.cc | 
| 675 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") | 676 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") | 
| 676 DEFINE_bool(print_scopes, false, "print scopes") | 677 DEFINE_bool(print_scopes, false, "print scopes") | 
| 677 | 678 | 
| 678 // contexts.cc | 679 // contexts.cc | 
| 679 DEFINE_bool(trace_contexts, false, "trace contexts operations") | 680 DEFINE_bool(trace_contexts, false, "trace contexts operations") | 
| 680 | 681 | 
| 681 // heap.cc | 682 // heap.cc | 
| 682 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") | 683 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") | 
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 811 #undef DEFINE_bool | 812 #undef DEFINE_bool | 
| 812 #undef DEFINE_int | 813 #undef DEFINE_int | 
| 813 #undef DEFINE_string | 814 #undef DEFINE_string | 
| 814 #undef DEFINE_implication | 815 #undef DEFINE_implication | 
| 815 | 816 | 
| 816 #undef FLAG_MODE_DECLARE | 817 #undef FLAG_MODE_DECLARE | 
| 817 #undef FLAG_MODE_DEFINE | 818 #undef FLAG_MODE_DEFINE | 
| 818 #undef FLAG_MODE_DEFINE_DEFAULTS | 819 #undef FLAG_MODE_DEFINE_DEFAULTS | 
| 819 #undef FLAG_MODE_META | 820 #undef FLAG_MODE_META | 
| 820 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 821 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 
| OLD | NEW | 
|---|