| 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 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 DEFINE_implication(print_all_code, print_unopt_code) | 819 DEFINE_implication(print_all_code, print_unopt_code) |
| 820 DEFINE_implication(print_all_code, print_code_verbose) | 820 DEFINE_implication(print_all_code, print_code_verbose) |
| 821 DEFINE_implication(print_all_code, print_builtin_code) | 821 DEFINE_implication(print_all_code, print_builtin_code) |
| 822 DEFINE_implication(print_all_code, print_code_stubs) | 822 DEFINE_implication(print_all_code, print_code_stubs) |
| 823 DEFINE_implication(print_all_code, code_comments) | 823 DEFINE_implication(print_all_code, code_comments) |
| 824 #ifdef DEBUG | 824 #ifdef DEBUG |
| 825 DEFINE_implication(print_all_code, trace_codegen) | 825 DEFINE_implication(print_all_code, trace_codegen) |
| 826 #endif | 826 #endif |
| 827 #endif | 827 #endif |
| 828 | 828 |
| 829 // |
| 830 // Read-only flags |
| 831 // |
| 832 #undef FLAG |
| 833 #define FLAG FLAG_READONLY |
| 834 |
| 835 // assembler-arm.h |
| 836 DEFINE_bool(enable_ool_constant_pool, false, |
| 837 "enable use of out-of-line constant pools (ARM only)") |
| 838 |
| 829 // Cleanup... | 839 // Cleanup... |
| 830 #undef FLAG_FULL | 840 #undef FLAG_FULL |
| 831 #undef FLAG_READONLY | 841 #undef FLAG_READONLY |
| 832 #undef FLAG | 842 #undef FLAG |
| 833 #undef FLAG_ALIAS | 843 #undef FLAG_ALIAS |
| 834 | 844 |
| 835 #undef DEFINE_bool | 845 #undef DEFINE_bool |
| 836 #undef DEFINE_maybe_bool | 846 #undef DEFINE_maybe_bool |
| 837 #undef DEFINE_int | 847 #undef DEFINE_int |
| 838 #undef DEFINE_string | 848 #undef DEFINE_string |
| 839 #undef DEFINE_float | 849 #undef DEFINE_float |
| 840 #undef DEFINE_args | 850 #undef DEFINE_args |
| 841 #undef DEFINE_implication | 851 #undef DEFINE_implication |
| 842 #undef DEFINE_ALIAS_bool | 852 #undef DEFINE_ALIAS_bool |
| 843 #undef DEFINE_ALIAS_int | 853 #undef DEFINE_ALIAS_int |
| 844 #undef DEFINE_ALIAS_string | 854 #undef DEFINE_ALIAS_string |
| 845 #undef DEFINE_ALIAS_float | 855 #undef DEFINE_ALIAS_float |
| 846 #undef DEFINE_ALIAS_args | 856 #undef DEFINE_ALIAS_args |
| 847 | 857 |
| 848 #undef FLAG_MODE_DECLARE | 858 #undef FLAG_MODE_DECLARE |
| 849 #undef FLAG_MODE_DEFINE | 859 #undef FLAG_MODE_DEFINE |
| 850 #undef FLAG_MODE_DEFINE_DEFAULTS | 860 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 851 #undef FLAG_MODE_META | 861 #undef FLAG_MODE_META |
| 852 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 862 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 853 | 863 |
| 854 #undef COMMA | 864 #undef COMMA |
| OLD | NEW |