comparison src/share/vm/gc_implementation/g1/concurrentMark.hpp @ 10405:f2110083203d

8005849: JEP 167: Event-Based JVM Tracing Reviewed-by: acorn, coleenp, sla Contributed-by: Karen Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
author sla
date Mon, 10 Jun 2013 11:30:51 +0200
parents 001ec9515f84
children 5888334c9c24
comparison
equal deleted inserted replaced
10404:d0add7016434 10405:f2110083203d
567 bool has_overflown() { return _has_overflown; } 567 bool has_overflown() { return _has_overflown; }
568 void set_has_overflown() { _has_overflown = true; } 568 void set_has_overflown() { _has_overflown = true; }
569 void clear_has_overflown() { _has_overflown = false; } 569 void clear_has_overflown() { _has_overflown = false; }
570 bool restart_for_overflow() { return _restart_for_overflow; } 570 bool restart_for_overflow() { return _restart_for_overflow; }
571 571
572 bool has_aborted() { return _has_aborted; }
573
574 // Methods to enter the two overflow sync barriers 572 // Methods to enter the two overflow sync barriers
575 void enter_first_sync_barrier(uint worker_id); 573 void enter_first_sync_barrier(uint worker_id);
576 void enter_second_sync_barrier(uint worker_id); 574 void enter_second_sync_barrier(uint worker_id);
577 575
578 ForceOverflowSettings* force_overflow_conc() { 576 ForceOverflowSettings* force_overflow_conc() {
819 inline bool should_yield(); 817 inline bool should_yield();
820 818
821 // Called to abort the marking cycle after a Full GC takes palce. 819 // Called to abort the marking cycle after a Full GC takes palce.
822 void abort(); 820 void abort();
823 821
822 bool has_aborted() { return _has_aborted; }
823
824 // This prints the global/local fingers. It is used for debugging. 824 // This prints the global/local fingers. It is used for debugging.
825 NOT_PRODUCT(void print_finger();) 825 NOT_PRODUCT(void print_finger();)
826 826
827 void print_summary_info(); 827 void print_summary_info();
828 828