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 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 | 545 |
546 // contexts.cc | 546 // contexts.cc |
547 DEFINE_bool(trace_contexts, false, "trace contexts operations") | 547 DEFINE_bool(trace_contexts, false, "trace contexts operations") |
548 | 548 |
549 // heap.cc | 549 // heap.cc |
550 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") | 550 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations") |
551 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") | 551 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection") |
552 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") | 552 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC") |
553 DEFINE_bool(code_stats, false, "report code statistics after GC") | 553 DEFINE_bool(code_stats, false, "report code statistics after GC") |
554 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") | 554 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC") |
| 555 DEFINE_bool(verify_global_context_separation, false, |
| 556 "verify that code holds on to at most one global context after GC") |
555 DEFINE_bool(print_handles, false, "report handles after GC") | 557 DEFINE_bool(print_handles, false, "report handles after GC") |
556 DEFINE_bool(print_global_handles, false, "report global handles after GC") | 558 DEFINE_bool(print_global_handles, false, "report global handles after GC") |
557 | 559 |
558 // ic.cc | 560 // ic.cc |
559 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") | 561 DEFINE_bool(trace_ic, false, "trace inline cache state transitions") |
560 | 562 |
561 // interface.cc | 563 // interface.cc |
562 DEFINE_bool(print_interfaces, false, "print interfaces") | 564 DEFINE_bool(print_interfaces, false, "print interfaces") |
563 DEFINE_bool(print_interface_details, false, "print interface inference details") | 565 DEFINE_bool(print_interface_details, false, "print interface inference details") |
564 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces") | 566 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces") |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 #undef DEFINE_bool | 681 #undef DEFINE_bool |
680 #undef DEFINE_int | 682 #undef DEFINE_int |
681 #undef DEFINE_string | 683 #undef DEFINE_string |
682 #undef DEFINE_implication | 684 #undef DEFINE_implication |
683 | 685 |
684 #undef FLAG_MODE_DECLARE | 686 #undef FLAG_MODE_DECLARE |
685 #undef FLAG_MODE_DEFINE | 687 #undef FLAG_MODE_DEFINE |
686 #undef FLAG_MODE_DEFINE_DEFAULTS | 688 #undef FLAG_MODE_DEFINE_DEFAULTS |
687 #undef FLAG_MODE_META | 689 #undef FLAG_MODE_META |
688 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 690 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
OLD | NEW |