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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
520 // | 520 // |
521 // Disassembler only flags | 521 // Disassembler only flags |
522 // | 522 // |
523 #undef FLAG | 523 #undef FLAG |
524 #ifdef ENABLE_DISASSEMBLER | 524 #ifdef ENABLE_DISASSEMBLER |
525 #define FLAG FLAG_FULL | 525 #define FLAG FLAG_FULL |
526 #else | 526 #else |
527 #define FLAG FLAG_READONLY | 527 #define FLAG FLAG_READONLY |
528 #endif | 528 #endif |
529 | 529 |
530 // elements.cc | |
531 DEFINE_bool(trace_element_transitions, false, "print element transitions") | |
Jakob Kummerow
2011/10/19 16:02:28
For consistency, I'd prefer to have the plural for
danno
2011/10/20 08:51:17
Done.
| |
532 | |
530 // code-stubs.cc | 533 // code-stubs.cc |
531 DEFINE_bool(print_code_stubs, false, "print code stubs") | 534 DEFINE_bool(print_code_stubs, false, "print code stubs") |
532 | 535 |
533 // codegen-ia32.cc / codegen-arm.cc | 536 // codegen-ia32.cc / codegen-arm.cc |
534 DEFINE_bool(print_code, false, "print generated code") | 537 DEFINE_bool(print_code, false, "print generated code") |
535 DEFINE_bool(print_opt_code, false, "print optimized code") | 538 DEFINE_bool(print_opt_code, false, "print optimized code") |
536 DEFINE_bool(print_unopt_code, false, "print unoptimized code before " | 539 DEFINE_bool(print_unopt_code, false, "print unoptimized code before " |
537 "printing optimized code based on it") | 540 "printing optimized code based on it") |
538 DEFINE_bool(print_code_verbose, false, "print more information for code") | 541 DEFINE_bool(print_code_verbose, false, "print more information for code") |
539 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") | 542 DEFINE_bool(print_builtin_code, false, "print generated code for builtins") |
540 | 543 |
541 // Cleanup... | 544 // Cleanup... |
542 #undef FLAG_FULL | 545 #undef FLAG_FULL |
543 #undef FLAG_READONLY | 546 #undef FLAG_READONLY |
544 #undef FLAG | 547 #undef FLAG |
545 | 548 |
546 #undef DEFINE_bool | 549 #undef DEFINE_bool |
547 #undef DEFINE_int | 550 #undef DEFINE_int |
548 #undef DEFINE_string | 551 #undef DEFINE_string |
549 | 552 |
550 #undef FLAG_MODE_DECLARE | 553 #undef FLAG_MODE_DECLARE |
551 #undef FLAG_MODE_DEFINE | 554 #undef FLAG_MODE_DEFINE |
552 #undef FLAG_MODE_DEFINE_DEFAULTS | 555 #undef FLAG_MODE_DEFINE_DEFAULTS |
553 #undef FLAG_MODE_META | 556 #undef FLAG_MODE_META |
OLD | NEW |