| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "Check icache flushes in ARM and MIPS simulator") | 342 "Check icache flushes in ARM and MIPS simulator") |
| 343 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 343 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 344 DEFINE_int(sim_stack_alignment, 8, | 344 DEFINE_int(sim_stack_alignment, 8, |
| 345 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") | 345 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") |
| 346 | 346 |
| 347 // isolate.cc | 347 // isolate.cc |
| 348 DEFINE_bool(trace_exception, false, | 348 DEFINE_bool(trace_exception, false, |
| 349 "print stack trace when throwing exceptions") | 349 "print stack trace when throwing exceptions") |
| 350 DEFINE_bool(preallocate_message_memory, false, | 350 DEFINE_bool(preallocate_message_memory, false, |
| 351 "preallocate some memory to build stack traces.") | 351 "preallocate some memory to build stack traces.") |
| 352 DEFINE_bool(randomize_string_hashes, | 352 DEFINE_bool(randomize_hashes, |
| 353 true, | 353 true, |
| 354 "randomize string hashes to avoid predictable hash collisions " | 354 "randomize hashes to avoid predictable hash collisions " |
| 355 "(with snapshots this option cannot override the baked-in seed)") | 355 "(with snapshots this option cannot override the baked-in seed)") |
| 356 DEFINE_int(string_hash_seed, | 356 DEFINE_int(hash_seed, |
| 357 0, | 357 0, |
| 358 "Fixed seed to use to string hashing (0 means random)" | 358 "Fixed seed to use to hash property keys (0 means random)" |
| 359 "(with snapshots this option cannot override the baked-in seed)") | 359 "(with snapshots this option cannot override the baked-in seed)") |
| 360 | 360 |
| 361 // v8.cc | 361 // v8.cc |
| 362 DEFINE_bool(preemption, false, | 362 DEFINE_bool(preemption, false, |
| 363 "activate a 100ms timer that switches between V8 threads") | 363 "activate a 100ms timer that switches between V8 threads") |
| 364 | 364 |
| 365 // Regexp | 365 // Regexp |
| 366 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") | 366 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code") |
| 367 | 367 |
| 368 // Testing flags test/cctest/test-{flags,api,serialization}.cc | 368 // Testing flags test/cctest/test-{flags,api,serialization}.cc |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 #undef DEFINE_bool | 586 #undef DEFINE_bool |
| 587 #undef DEFINE_int | 587 #undef DEFINE_int |
| 588 #undef DEFINE_string | 588 #undef DEFINE_string |
| 589 #undef DEFINE_implication | 589 #undef DEFINE_implication |
| 590 | 590 |
| 591 #undef FLAG_MODE_DECLARE | 591 #undef FLAG_MODE_DECLARE |
| 592 #undef FLAG_MODE_DEFINE | 592 #undef FLAG_MODE_DEFINE |
| 593 #undef FLAG_MODE_DEFINE_DEFAULTS | 593 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 594 #undef FLAG_MODE_META | 594 #undef FLAG_MODE_META |
| 595 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 595 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |