| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 #else | 499 #else |
| 497 #define FLAG FLAG_READONLY | 500 #define FLAG FLAG_READONLY |
| 498 #endif | 501 #endif |
| 499 | 502 |
| 500 // code-stubs.cc | 503 // code-stubs.cc |
| 501 DEFINE_bool(print_code_stubs, false, "print code stubs") | 504 DEFINE_bool(print_code_stubs, false, "print code stubs") |
| 502 | 505 |
| 503 // codegen-ia32.cc / codegen-arm.cc | 506 // codegen-ia32.cc / codegen-arm.cc |
| 504 DEFINE_bool(print_code, false, "print generated code") | 507 DEFINE_bool(print_code, false, "print generated code") |
| 505 DEFINE_bool(print_opt_code, false, "print optimized code") | 508 DEFINE_bool(print_opt_code, false, "print optimized code") |
| 509 DEFINE_bool(print_unopt_code, false, "print unoptimized code before " |
| 510 "printing optimized code based on it") |
| 506 DEFINE_bool(print_code_verbose, false, "print more information for code") | 511 DEFINE_bool(print_code_verbose, false, "print more information for code") |
| 507 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") | 512 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") |
| 508 | 513 |
| 509 // Cleanup... | 514 // Cleanup... |
| 510 #undef FLAG_FULL | 515 #undef FLAG_FULL |
| 511 #undef FLAG_READONLY | 516 #undef FLAG_READONLY |
| 512 #undef FLAG | 517 #undef FLAG |
| 513 | 518 |
| 514 #undef DEFINE_bool | 519 #undef DEFINE_bool |
| 515 #undef DEFINE_int | 520 #undef DEFINE_int |
| 516 #undef DEFINE_string | 521 #undef DEFINE_string |
| 517 | 522 |
| 518 #undef FLAG_MODE_DECLARE | 523 #undef FLAG_MODE_DECLARE |
| 519 #undef FLAG_MODE_DEFINE | 524 #undef FLAG_MODE_DEFINE |
| 520 #undef FLAG_MODE_DEFINE_DEFAULTS | 525 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 521 #undef FLAG_MODE_META | 526 #undef FLAG_MODE_META |
| OLD | NEW |