| 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 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 #endif | 886 #endif |
| 887 #endif | 887 #endif |
| 888 | 888 |
| 889 // | 889 // |
| 890 // Read-only flags | 890 // Read-only flags |
| 891 // | 891 // |
| 892 #undef FLAG | 892 #undef FLAG |
| 893 #define FLAG FLAG_READONLY | 893 #define FLAG FLAG_READONLY |
| 894 | 894 |
| 895 // assembler-arm.h | 895 // assembler-arm.h |
| 896 DEFINE_bool(enable_ool_constant_pool, false, | 896 DEFINE_bool(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL, |
| 897 "enable use of out-of-line constant pools (ARM only)") | 897 "enable use of out-of-line constant pools (ARM only)") |
| 898 | 898 |
| 899 // Cleanup... | 899 // Cleanup... |
| 900 #undef FLAG_FULL | 900 #undef FLAG_FULL |
| 901 #undef FLAG_READONLY | 901 #undef FLAG_READONLY |
| 902 #undef FLAG | 902 #undef FLAG |
| 903 #undef FLAG_ALIAS | 903 #undef FLAG_ALIAS |
| 904 | 904 |
| 905 #undef DEFINE_bool | 905 #undef DEFINE_bool |
| 906 #undef DEFINE_maybe_bool | 906 #undef DEFINE_maybe_bool |
| 907 #undef DEFINE_int | 907 #undef DEFINE_int |
| 908 #undef DEFINE_string | 908 #undef DEFINE_string |
| 909 #undef DEFINE_float | 909 #undef DEFINE_float |
| 910 #undef DEFINE_args | 910 #undef DEFINE_args |
| 911 #undef DEFINE_implication | 911 #undef DEFINE_implication |
| 912 #undef DEFINE_neg_implication | 912 #undef DEFINE_neg_implication |
| 913 #undef DEFINE_ALIAS_bool | 913 #undef DEFINE_ALIAS_bool |
| 914 #undef DEFINE_ALIAS_int | 914 #undef DEFINE_ALIAS_int |
| 915 #undef DEFINE_ALIAS_string | 915 #undef DEFINE_ALIAS_string |
| 916 #undef DEFINE_ALIAS_float | 916 #undef DEFINE_ALIAS_float |
| 917 #undef DEFINE_ALIAS_args | 917 #undef DEFINE_ALIAS_args |
| 918 | 918 |
| 919 #undef FLAG_MODE_DECLARE | 919 #undef FLAG_MODE_DECLARE |
| 920 #undef FLAG_MODE_DEFINE | 920 #undef FLAG_MODE_DEFINE |
| 921 #undef FLAG_MODE_DEFINE_DEFAULTS | 921 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 922 #undef FLAG_MODE_META | 922 #undef FLAG_MODE_META |
| 923 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 923 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 924 | 924 |
| 925 #undef COMMA | 925 #undef COMMA |
| OLD | NEW |