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