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