| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 2008 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 // usage-analyzer.cc | 224 // usage-analyzer.cc |
| 225 DEFINE_bool(usage_computation, true, "compute variable usage counts") | 225 DEFINE_bool(usage_computation, true, "compute variable usage counts") |
| 226 | 226 |
| 227 // v8.cc | 227 // v8.cc |
| 228 DEFINE_bool(preemption, false, | 228 DEFINE_bool(preemption, false, |
| 229 "activate a 100ms timer that switches between V8 threads") | 229 "activate a 100ms timer that switches between V8 threads") |
| 230 | 230 |
| 231 // Regexp | 231 // Regexp |
| 232 DEFINE_bool(trace_regexps, false, "trace regexp execution") | 232 DEFINE_bool(trace_regexps, false, "trace regexp execution") |
| 233 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") | 233 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") |
| 234 DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp") |
| 234 | 235 |
| 235 // Testing flags test/cctest/test-{flags,api,serialization}.cc | 236 // Testing flags test/cctest/test-{flags,api,serialization}.cc |
| 236 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") | 237 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag") |
| 237 DEFINE_int(testing_int_flag, 13, "testing_int_flag") | 238 DEFINE_int(testing_int_flag, 13, "testing_int_flag") |
| 238 DEFINE_float(testing_float_flag, 2.5, "float-flag") | 239 DEFINE_float(testing_float_flag, 2.5, "float-flag") |
| 239 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") | 240 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag") |
| 240 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") | 241 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness") |
| 241 #ifdef WIN32 | 242 #ifdef WIN32 |
| 242 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", | 243 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes", |
| 243 "file in which to testing_serialize heap") | 244 "file in which to testing_serialize heap") |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 #undef FLAG | 409 #undef FLAG |
| 409 | 410 |
| 410 #undef DEFINE_bool | 411 #undef DEFINE_bool |
| 411 #undef DEFINE_int | 412 #undef DEFINE_int |
| 412 #undef DEFINE_string | 413 #undef DEFINE_string |
| 413 | 414 |
| 414 #undef FLAG_MODE_DECLARE | 415 #undef FLAG_MODE_DECLARE |
| 415 #undef FLAG_MODE_DEFINE | 416 #undef FLAG_MODE_DEFINE |
| 416 #undef FLAG_MODE_DEFINE_DEFAULTS | 417 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 417 #undef FLAG_MODE_META | 418 #undef FLAG_MODE_META |
| OLD | NEW |