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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 | 289 |
290 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1, | 290 DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1, |
291 "Maximum number of pages in map space which still allows to encode " | 291 "Maximum number of pages in map space which still allows to encode " |
292 "forwarding pointers. That's actually a constant, but it's useful " | 292 "forwarding pointers. That's actually a constant, but it's useful " |
293 "to control it with a flag for better testing.") | 293 "to control it with a flag for better testing.") |
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 |
| 300 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
| 301 |
299 // parser.cc | 302 // parser.cc |
300 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 303 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
301 | 304 |
302 // rewriter.cc | 305 // rewriter.cc |
303 DEFINE_bool(optimize_ast, true, "optimize the ast") | 306 DEFINE_bool(optimize_ast, true, "optimize the ast") |
304 | 307 |
305 // simulator-arm.cc and simulator-mips.cc | 308 // simulator-arm.cc and simulator-mips.cc |
306 DEFINE_bool(trace_sim, false, "Trace simulator execution") | 309 DEFINE_bool(trace_sim, false, "Trace simulator execution") |
307 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") | 310 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") |
308 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 311 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 #undef FLAG | 515 #undef FLAG |
513 | 516 |
514 #undef DEFINE_bool | 517 #undef DEFINE_bool |
515 #undef DEFINE_int | 518 #undef DEFINE_int |
516 #undef DEFINE_string | 519 #undef DEFINE_string |
517 | 520 |
518 #undef FLAG_MODE_DECLARE | 521 #undef FLAG_MODE_DECLARE |
519 #undef FLAG_MODE_DEFINE | 522 #undef FLAG_MODE_DEFINE |
520 #undef FLAG_MODE_DEFINE_DEFAULTS | 523 #undef FLAG_MODE_DEFINE_DEFAULTS |
521 #undef FLAG_MODE_META | 524 #undef FLAG_MODE_META |
OLD | NEW |