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 469 matching lines...) Loading... |
480 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") | 480 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") |
481 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") | 481 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") |
482 DEFINE_bool(code_stats, false, "report code statistics after GC") | 482 DEFINE_bool(code_stats, false, "report code statistics after GC") |
483 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 483 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
484 DEFINE_bool(print_handles, false, "report handles after GC") | 484 DEFINE_bool(print_handles, false, "report handles after GC") |
485 DEFINE_bool(print_global_handles, false, "report global handles after GC") | 485 DEFINE_bool(print_global_handles, false, "report global handles after GC") |
486 | 486 |
487 // ic.cc | 487 // ic.cc |
488 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") | 488 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") |
489 | 489 |
| 490 // interface.cc |
| 491 DEFINE_bool(print_interfaces, false, "print interfaces") |
| 492 DEFINE_bool(print_interface_details, false, "print interface inference details") |
| 493 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces") |
| 494 |
490 // objects.cc | 495 // objects.cc |
491 DEFINE_bool(trace_normalization, | 496 DEFINE_bool(trace_normalization, |
492 false, | 497 false, |
493 "prints when objects are turned into dictionaries.") | 498 "prints when objects are turned into dictionaries.") |
494 | 499 |
495 // runtime.cc | 500 // runtime.cc |
496 DEFINE_bool(trace_lazy, false, "trace lazy compilation") | 501 DEFINE_bool(trace_lazy, false, "trace lazy compilation") |
497 | 502 |
498 // spaces.cc | 503 // spaces.cc |
499 DEFINE_bool(collect_heap_spill_statistics, false, | 504 DEFINE_bool(collect_heap_spill_statistics, false, |
(...skipping 102 matching lines...) Loading... |
602 #undef DEFINE_bool | 607 #undef DEFINE_bool |
603 #undef DEFINE_int | 608 #undef DEFINE_int |
604 #undef DEFINE_string | 609 #undef DEFINE_string |
605 #undef DEFINE_implication | 610 #undef DEFINE_implication |
606 | 611 |
607 #undef FLAG_MODE_DECLARE | 612 #undef FLAG_MODE_DECLARE |
608 #undef FLAG_MODE_DEFINE | 613 #undef FLAG_MODE_DEFINE |
609 #undef FLAG_MODE_DEFINE_DEFAULTS | 614 #undef FLAG_MODE_DEFINE_DEFAULTS |
610 #undef FLAG_MODE_META | 615 #undef FLAG_MODE_META |
611 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 616 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |