Path: blob/master/src/hotspot/share/gc/z/zDriver.hpp
40957 views
/*1* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223#ifndef SHARE_GC_Z_ZDRIVER_HPP24#define SHARE_GC_Z_ZDRIVER_HPP2526#include "gc/shared/concurrentGCThread.hpp"27#include "gc/shared/gcCause.hpp"28#include "gc/z/zMessagePort.hpp"2930class VM_ZOperation;3132class ZDriver : public ConcurrentGCThread {33private:34ZMessagePort<GCCause::Cause> _gc_cycle_port;35ZRendezvousPort _gc_locker_port;3637template <typename T> bool pause();3839void pause_mark_start();40void concurrent_mark();41bool pause_mark_end();42void concurrent_mark_continue();43void concurrent_mark_free();44void concurrent_process_non_strong_references();45void concurrent_reset_relocation_set();46void pause_verify();47void concurrent_select_relocation_set();48void pause_relocate_start();49void concurrent_relocate();5051void check_out_of_memory();5253void gc(GCCause::Cause cause);5455protected:56virtual void run_service();57virtual void stop_service();5859public:60ZDriver();6162void collect(GCCause::Cause cause);63};6465#endif // SHARE_GC_Z_ZDRIVER_HPP666768