OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 DEFINE_bool(disable_native_files, false, "disable builtin natives files") | 370 DEFINE_bool(disable_native_files, false, "disable builtin natives files") |
371 | 371 |
372 // builtins-ia32.cc | 372 // builtins-ia32.cc |
373 DEFINE_bool(inline_new, true, "use fast inline allocation") | 373 DEFINE_bool(inline_new, true, "use fast inline allocation") |
374 | 374 |
375 // checks.cc | 375 // checks.cc |
376 DEFINE_bool(stack_trace_on_abort, true, | 376 DEFINE_bool(stack_trace_on_abort, true, |
377 "print a stack trace if an assertion failure occurs") | 377 "print a stack trace if an assertion failure occurs") |
378 | 378 |
379 // codegen-ia32.cc / codegen-arm.cc | 379 // codegen-ia32.cc / codegen-arm.cc |
| 380 DEFINE_bool(trace_codegen, false, |
| 381 "print name of functions for which code is generated") |
380 DEFINE_bool(trace, false, "trace function calls") | 382 DEFINE_bool(trace, false, "trace function calls") |
381 DEFINE_bool(mask_constants_with_cookie, | 383 DEFINE_bool(mask_constants_with_cookie, |
382 true, | 384 true, |
383 "use random jit cookie to mask large constants") | 385 "use random jit cookie to mask large constants") |
384 | 386 |
385 // codegen.cc | 387 // codegen.cc |
386 DEFINE_bool(lazy, true, "use lazy compilation") | 388 DEFINE_bool(lazy, true, "use lazy compilation") |
387 DEFINE_bool(trace_opt, false, "trace lazy optimization") | 389 DEFINE_bool(trace_opt, false, "trace lazy optimization") |
388 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") | 390 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics") |
389 DEFINE_bool(opt, true, "use adaptive optimizations") | 391 DEFINE_bool(opt, true, "use adaptive optimizations") |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 #define FLAG FLAG_FULL | 631 #define FLAG FLAG_FULL |
630 #else | 632 #else |
631 #define FLAG FLAG_READONLY | 633 #define FLAG FLAG_READONLY |
632 #endif | 634 #endif |
633 | 635 |
634 // checks.cc | 636 // checks.cc |
635 DEFINE_bool(enable_slow_asserts, false, | 637 DEFINE_bool(enable_slow_asserts, false, |
636 "enable asserts that are slow to execute") | 638 "enable asserts that are slow to execute") |
637 | 639 |
638 // codegen-ia32.cc / codegen-arm.cc | 640 // codegen-ia32.cc / codegen-arm.cc |
639 DEFINE_bool(trace_codegen, false, | |
640 "print name of functions for which code is generated") | |
641 DEFINE_bool(print_source, false, "pretty print source code") | 641 DEFINE_bool(print_source, false, "pretty print source code") |
642 DEFINE_bool(print_builtin_source, false, | 642 DEFINE_bool(print_builtin_source, false, |
643 "pretty print source code for builtins") | 643 "pretty print source code for builtins") |
644 DEFINE_bool(print_ast, false, "print source AST") | 644 DEFINE_bool(print_ast, false, "print source AST") |
645 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") | 645 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins") |
646 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") | 646 DEFINE_string(stop_at, "", "function name where to insert a breakpoint") |
647 | 647 |
648 // compiler.cc | 648 // compiler.cc |
649 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") | 649 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins") |
650 DEFINE_bool(print_scopes, false, "print scopes") | 650 DEFINE_bool(print_scopes, false, "print scopes") |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
787 #undef DEFINE_bool | 787 #undef DEFINE_bool |
788 #undef DEFINE_int | 788 #undef DEFINE_int |
789 #undef DEFINE_string | 789 #undef DEFINE_string |
790 #undef DEFINE_implication | 790 #undef DEFINE_implication |
791 | 791 |
792 #undef FLAG_MODE_DECLARE | 792 #undef FLAG_MODE_DECLARE |
793 #undef FLAG_MODE_DEFINE | 793 #undef FLAG_MODE_DEFINE |
794 #undef FLAG_MODE_DEFINE_DEFAULTS | 794 #undef FLAG_MODE_DEFINE_DEFAULTS |
795 #undef FLAG_MODE_META | 795 #undef FLAG_MODE_META |
796 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 796 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |