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