| 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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 "randomize hashes to avoid predictable hash collisions " | 606 "randomize hashes to avoid predictable hash collisions " |
| 607 "(with snapshots this option cannot override the baked-in seed)") | 607 "(with snapshots this option cannot override the baked-in seed)") |
| 608 DEFINE_int(hash_seed, 0, | 608 DEFINE_int(hash_seed, 0, |
| 609 "Fixed seed to use to hash property keys (0 means random)" | 609 "Fixed seed to use to hash property keys (0 means random)" |
| 610 "(with snapshots this option cannot override the baked-in seed)") | 610 "(with snapshots this option cannot override the baked-in seed)") |
| 611 | 611 |
| 612 // snapshot-common.cc | 612 // snapshot-common.cc |
| 613 DEFINE_bool(profile_deserialization, false, | 613 DEFINE_bool(profile_deserialization, false, |
| 614 "Print the time it takes to deserialize the snapshot.") | 614 "Print the time it takes to deserialize the snapshot.") |
| 615 | 615 |
| 616 // v8.cc | |
| 617 DEFINE_bool(preemption, false, | |
| 618 "activate a 100ms timer that switches between V8 threads") | |
| 619 | |
| 620 // Regexp | 616 // Regexp |
| 621 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") | 617 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") |
| 622 | 618 |
| 623 // Testing flags test/cctest/test-{flags,api,serialization}.cc | 619 // Testing flags test/cctest/test-{flags,api,serialization}.cc |
| 624 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") | 620 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") |
| 625 DEFINE_maybe_bool(testing_maybe_bool_flag, "testing_maybe_bool_flag") | 621 DEFINE_maybe_bool(testing_maybe_bool_flag, "testing_maybe_bool_flag") |
| 626 DEFINE_int(testing_int_flag, 13, "testing_int_flag") | 622 DEFINE_int(testing_int_flag, 13, "testing_int_flag") |
| 627 DEFINE_float(testing_float_flag, 2.5, "float-flag") | 623 DEFINE_float(testing_float_flag, 2.5, "float-flag") |
| 628 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") | 624 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") |
| 629 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") | 625 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 #undef DEFINE_ALIAS_float | 888 #undef DEFINE_ALIAS_float |
| 893 #undef DEFINE_ALIAS_args | 889 #undef DEFINE_ALIAS_args |
| 894 | 890 |
| 895 #undef FLAG_MODE_DECLARE | 891 #undef FLAG_MODE_DECLARE |
| 896 #undef FLAG_MODE_DEFINE | 892 #undef FLAG_MODE_DEFINE |
| 897 #undef FLAG_MODE_DEFINE_DEFAULTS | 893 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 898 #undef FLAG_MODE_META | 894 #undef FLAG_MODE_META |
| 899 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 895 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 900 | 896 |
| 901 #undef COMMA | 897 #undef COMMA |
| OLD | NEW |