< prev index next >

src/hotspot/share/gc/shared/gcTimer.cpp

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 66,83 **** void STWGCTimer::register_gc_end(const Ticks& time) { register_gc_pause_end(time); GCTimer::register_gc_end(time); } ! void ConcurrentGCTimer::register_gc_pause_start(const char* name) { assert(!_is_concurrent_phase_active, "A pause phase can't be started while a concurrent phase is active."); ! GCTimer::register_gc_pause_start(name); } ! void ConcurrentGCTimer::register_gc_pause_end() { assert(!_is_concurrent_phase_active, "A pause phase can't be ended while a concurrent phase is active."); ! GCTimer::register_gc_pause_end(); } void ConcurrentGCTimer::register_gc_concurrent_start(const char* name, const Ticks& time) { assert(!_is_concurrent_phase_active, "A concurrent phase is already active."); _time_partitions.report_gc_phase_start(name, time, GCPhase::ConcurrentPhaseType); --- 66,83 ---- void STWGCTimer::register_gc_end(const Ticks& time) { register_gc_pause_end(time); GCTimer::register_gc_end(time); } ! void ConcurrentGCTimer::register_gc_pause_start(const char* name, const Ticks& time) { assert(!_is_concurrent_phase_active, "A pause phase can't be started while a concurrent phase is active."); ! GCTimer::register_gc_pause_start(name, time); } ! void ConcurrentGCTimer::register_gc_pause_end(const Ticks& time) { assert(!_is_concurrent_phase_active, "A pause phase can't be ended while a concurrent phase is active."); ! GCTimer::register_gc_pause_end(time); } void ConcurrentGCTimer::register_gc_concurrent_start(const char* name, const Ticks& time) { assert(!_is_concurrent_phase_active, "A concurrent phase is already active."); _time_partitions.report_gc_phase_start(name, time, GCPhase::ConcurrentPhaseType);
< prev index next >