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