| 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 #undef FLAG | 795 #undef FLAG |
| 796 #ifdef ENABLE_DISASSEMBLER | 796 #ifdef ENABLE_DISASSEMBLER |
| 797 #define FLAG FLAG_FULL | 797 #define FLAG FLAG_FULL |
| 798 #else | 798 #else |
| 799 #define FLAG FLAG_READONLY | 799 #define FLAG FLAG_READONLY |
| 800 #endif | 800 #endif |
| 801 | 801 |
| 802 // elements.cc | 802 // elements.cc |
| 803 DEFINE_bool(trace_elements_transitions, false, "trace elements transitions") | 803 DEFINE_bool(trace_elements_transitions, false, "trace elements transitions") |
| 804 | 804 |
| 805 DEFINE_bool(trace_creation_allocation_sites, false, |
| 806 "trace the creation of allocation sites") |
| 807 |
| 805 // code-stubs.cc | 808 // code-stubs.cc |
| 806 DEFINE_bool(print_code_stubs, false, "print code stubs") | 809 DEFINE_bool(print_code_stubs, false, "print code stubs") |
| 807 DEFINE_bool(test_secondary_stub_cache, | 810 DEFINE_bool(test_secondary_stub_cache, |
| 808 false, | 811 false, |
| 809 "test secondary stub cache by disabling the primary one") | 812 "test secondary stub cache by disabling the primary one") |
| 810 | 813 |
| 811 DEFINE_bool(test_primary_stub_cache, | 814 DEFINE_bool(test_primary_stub_cache, |
| 812 false, | 815 false, |
| 813 "test primary stub cache by disabling the secondary one") | 816 "test primary stub cache by disabling the secondary one") |
| 814 | 817 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 #undef DEFINE_ALIAS_float | 867 #undef DEFINE_ALIAS_float |
| 865 #undef DEFINE_ALIAS_args | 868 #undef DEFINE_ALIAS_args |
| 866 | 869 |
| 867 #undef FLAG_MODE_DECLARE | 870 #undef FLAG_MODE_DECLARE |
| 868 #undef FLAG_MODE_DEFINE | 871 #undef FLAG_MODE_DEFINE |
| 869 #undef FLAG_MODE_DEFINE_DEFAULTS | 872 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 870 #undef FLAG_MODE_META | 873 #undef FLAG_MODE_META |
| 871 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 874 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 872 | 875 |
| 873 #undef COMMA | 876 #undef COMMA |
| OLD | NEW |