| 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 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 | 578 |
| 579 // objects.cc | 579 // objects.cc |
| 580 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 580 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 581 | 581 |
| 582 // parser.cc | 582 // parser.cc |
| 583 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 583 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 584 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") | 584 DEFINE_bool(trace_parse, false, "trace parsing and preparsing") |
| 585 | 585 |
| 586 // simulator-arm.cc, simulator-a64.cc and simulator-mips.cc | 586 // simulator-arm.cc, simulator-a64.cc and simulator-mips.cc |
| 587 DEFINE_bool(trace_sim, false, "Trace simulator execution") | 587 DEFINE_bool(trace_sim, false, "Trace simulator execution") |
| 588 DEFINE_bool(debug_sim, false, "Enable debugging the simulator") |
| 588 DEFINE_bool(check_icache, false, | 589 DEFINE_bool(check_icache, false, |
| 589 "Check icache flushes in ARM and MIPS simulator") | 590 "Check icache flushes in ARM and MIPS simulator") |
| 590 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 591 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 591 #ifdef V8_TARGET_ARCH_A64 | 592 #ifdef V8_TARGET_ARCH_A64 |
| 592 DEFINE_int(sim_stack_alignment, 16, | 593 DEFINE_int(sim_stack_alignment, 16, |
| 593 "Stack alignment in bytes in simulator. This must be a power of two " | 594 "Stack alignment in bytes in simulator. This must be a power of two " |
| 594 "and it must be at least 16. 16 is default.") | 595 "and it must be at least 16. 16 is default.") |
| 595 #else | 596 #else |
| 596 DEFINE_int(sim_stack_alignment, 8, | 597 DEFINE_int(sim_stack_alignment, 8, |
| 597 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") | 598 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 #undef DEFINE_ALIAS_float | 918 #undef DEFINE_ALIAS_float |
| 918 #undef DEFINE_ALIAS_args | 919 #undef DEFINE_ALIAS_args |
| 919 | 920 |
| 920 #undef FLAG_MODE_DECLARE | 921 #undef FLAG_MODE_DECLARE |
| 921 #undef FLAG_MODE_DEFINE | 922 #undef FLAG_MODE_DEFINE |
| 922 #undef FLAG_MODE_DEFINE_DEFAULTS | 923 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 923 #undef FLAG_MODE_META | 924 #undef FLAG_MODE_META |
| 924 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 925 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 925 | 926 |
| 926 #undef COMMA | 927 #undef COMMA |
| OLD | NEW |