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