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