| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "Compact code space on full non-incremental collections") | 390 "Compact code space on full non-incremental collections") |
| 391 DEFINE_bool(cleanup_code_caches_at_gc, true, | 391 DEFINE_bool(cleanup_code_caches_at_gc, true, |
| 392 "Flush inline caches prior to mark compact collection and " | 392 "Flush inline caches prior to mark compact collection and " |
| 393 "flush code caches in maps during mark compact cycle.") | 393 "flush code caches in maps during mark compact cycle.") |
| 394 DEFINE_int(random_seed, 0, | 394 DEFINE_int(random_seed, 0, |
| 395 "Default seed for initializing random generator " | 395 "Default seed for initializing random generator " |
| 396 "(0, the default, means to use system random).") | 396 "(0, the default, means to use system random).") |
| 397 | 397 |
| 398 // objects.cc | 398 // objects.cc |
| 399 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 399 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 400 DEFINE_bool(fast_accessor_properties, false, |
| 401 "use map transitions for JavaScript accessors") |
| 400 | 402 |
| 401 // parser.cc | 403 // parser.cc |
| 402 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 404 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 403 | 405 |
| 404 // simulator-arm.cc and simulator-mips.cc | 406 // simulator-arm.cc and simulator-mips.cc |
| 405 DEFINE_bool(trace_sim, false, "Trace simulator execution") | 407 DEFINE_bool(trace_sim, false, "Trace simulator execution") |
| 406 DEFINE_bool(check_icache, false, | 408 DEFINE_bool(check_icache, false, |
| 407 "Check icache flushes in ARM and MIPS simulator") | 409 "Check icache flushes in ARM and MIPS simulator") |
| 408 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 410 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 409 DEFINE_int(sim_stack_alignment, 8, | 411 DEFINE_int(sim_stack_alignment, 8, |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 #undef DEFINE_bool | 658 #undef DEFINE_bool |
| 657 #undef DEFINE_int | 659 #undef DEFINE_int |
| 658 #undef DEFINE_string | 660 #undef DEFINE_string |
| 659 #undef DEFINE_implication | 661 #undef DEFINE_implication |
| 660 | 662 |
| 661 #undef FLAG_MODE_DECLARE | 663 #undef FLAG_MODE_DECLARE |
| 662 #undef FLAG_MODE_DEFINE | 664 #undef FLAG_MODE_DEFINE |
| 663 #undef FLAG_MODE_DEFINE_DEFAULTS | 665 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 664 #undef FLAG_MODE_META | 666 #undef FLAG_MODE_META |
| 665 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 667 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| OLD | NEW |