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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 DEFINE_implication(print_all_code, print_unopt_code) | 798 DEFINE_implication(print_all_code, print_unopt_code) |
799 DEFINE_implication(print_all_code, print_code_verbose) | 799 DEFINE_implication(print_all_code, print_code_verbose) |
800 DEFINE_implication(print_all_code, print_builtin_code) | 800 DEFINE_implication(print_all_code, print_builtin_code) |
801 DEFINE_implication(print_all_code, print_code_stubs) | 801 DEFINE_implication(print_all_code, print_code_stubs) |
802 DEFINE_implication(print_all_code, code_comments) | 802 DEFINE_implication(print_all_code, code_comments) |
803 #ifdef DEBUG | 803 #ifdef DEBUG |
804 DEFINE_implication(print_all_code, trace_codegen) | 804 DEFINE_implication(print_all_code, trace_codegen) |
805 #endif | 805 #endif |
806 #endif | 806 #endif |
807 | 807 |
| 808 // |
| 809 // Read-only flags |
| 810 // |
| 811 #undef FLAG |
| 812 #define FLAG FLAG_READONLY |
| 813 |
| 814 // assembler-arm.h |
| 815 DEFINE_bool(enable_ool_constant_pool, false, |
| 816 "enable use of out-of-line constant pools (ARM only)") |
| 817 |
808 // Cleanup... | 818 // Cleanup... |
809 #undef FLAG_FULL | 819 #undef FLAG_FULL |
810 #undef FLAG_READONLY | 820 #undef FLAG_READONLY |
811 #undef FLAG | 821 #undef FLAG |
812 | 822 |
813 #undef DEFINE_bool | 823 #undef DEFINE_bool |
814 #undef DEFINE_int | 824 #undef DEFINE_int |
815 #undef DEFINE_string | 825 #undef DEFINE_string |
816 #undef DEFINE_implication | 826 #undef DEFINE_implication |
817 | 827 |
818 #undef FLAG_MODE_DECLARE | 828 #undef FLAG_MODE_DECLARE |
819 #undef FLAG_MODE_DEFINE | 829 #undef FLAG_MODE_DEFINE |
820 #undef FLAG_MODE_DEFINE_DEFAULTS | 830 #undef FLAG_MODE_DEFINE_DEFAULTS |
821 #undef FLAG_MODE_META | 831 #undef FLAG_MODE_META |
822 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 832 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |