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