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