| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 294 |
| 295 // mksnapshot.cc | 295 // mksnapshot.cc |
| 296 DEFINE_bool(h, false, "print this message") | 296 DEFINE_bool(h, false, "print this message") |
| 297 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") | 297 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") |
| 298 | 298 |
| 299 // objects.cc | 299 // objects.cc |
| 300 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 300 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 301 | 301 |
| 302 // parser.cc | 302 // parser.cc |
| 303 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 303 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 304 DEFINE_bool(strict_mode, true, "allow strict mode directives") |
| 304 | 305 |
| 305 // rewriter.cc | 306 // rewriter.cc |
| 306 DEFINE_bool(optimize_ast, true, "optimize the ast") | 307 DEFINE_bool(optimize_ast, true, "optimize the ast") |
| 307 | 308 |
| 308 // simulator-arm.cc and simulator-mips.cc | 309 // simulator-arm.cc and simulator-mips.cc |
| 309 DEFINE_bool(trace_sim, false, "Trace simulator execution") | 310 DEFINE_bool(trace_sim, false, "Trace simulator execution") |
| 310 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") | 311 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") |
| 311 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 312 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 312 DEFINE_int(sim_stack_alignment, 8, | 313 DEFINE_int(sim_stack_alignment, 8, |
| 313 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") | 314 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 #undef FLAG | 536 #undef FLAG |
| 536 | 537 |
| 537 #undef DEFINE_bool | 538 #undef DEFINE_bool |
| 538 #undef DEFINE_int | 539 #undef DEFINE_int |
| 539 #undef DEFINE_string | 540 #undef DEFINE_string |
| 540 | 541 |
| 541 #undef FLAG_MODE_DECLARE | 542 #undef FLAG_MODE_DECLARE |
| 542 #undef FLAG_MODE_DEFINE | 543 #undef FLAG_MODE_DEFINE |
| 543 #undef FLAG_MODE_DEFINE_DEFAULTS | 544 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 544 #undef FLAG_MODE_META | 545 #undef FLAG_MODE_META |
| OLD | NEW |