| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 | 311 |
| 312 // mksnapshot.cc | 312 // mksnapshot.cc |
| 313 DEFINE_bool(h, false, "print this message") | 313 DEFINE_bool(h, false, "print this message") |
| 314 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") | 314 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") |
| 315 | 315 |
| 316 // objects.cc | 316 // objects.cc |
| 317 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 317 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 318 | 318 |
| 319 // parser.cc | 319 // parser.cc |
| 320 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 320 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 321 DEFINE_bool(strict_mode, true, "allow strict mode directives") | |
| 322 | 321 |
| 323 // simulator-arm.cc and simulator-mips.cc | 322 // simulator-arm.cc and simulator-mips.cc |
| 324 DEFINE_bool(trace_sim, false, "Trace simulator execution") | 323 DEFINE_bool(trace_sim, false, "Trace simulator execution") |
| 325 DEFINE_bool(check_icache, false, | 324 DEFINE_bool(check_icache, false, |
| 326 "Check icache flushes in ARM and MIPS simulator") | 325 "Check icache flushes in ARM and MIPS simulator") |
| 327 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 326 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
| 328 DEFINE_int(sim_stack_alignment, 8, | 327 DEFINE_int(sim_stack_alignment, 8, |
| 329 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") | 328 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") |
| 330 | 329 |
| 331 // isolate.cc | 330 // isolate.cc |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 #undef FLAG | 545 #undef FLAG |
| 547 | 546 |
| 548 #undef DEFINE_bool | 547 #undef DEFINE_bool |
| 549 #undef DEFINE_int | 548 #undef DEFINE_int |
| 550 #undef DEFINE_string | 549 #undef DEFINE_string |
| 551 | 550 |
| 552 #undef FLAG_MODE_DECLARE | 551 #undef FLAG_MODE_DECLARE |
| 553 #undef FLAG_MODE_DEFINE | 552 #undef FLAG_MODE_DEFINE |
| 554 #undef FLAG_MODE_DEFINE_DEFAULTS | 553 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 555 #undef FLAG_MODE_META | 554 #undef FLAG_MODE_META |
| OLD | NEW |