| /* |
| * Copyright (c) 2015, 2023, 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. |
| * |
| * This code is distributed in the hope that it will be useful, but WITHOUT |
| * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| * version 2 for more details (a copy is included in the LICENSE file that |
| * accompanied this code). |
| * |
| * You should have received a copy of the GNU General Public License version |
| * 2 along with this work; if not, write to the Free Software Foundation, |
| * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| * |
| * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| * or visit www.oracle.com if you need additional information or have any |
| * questions. |
| */ |
| |
| #ifndef SHARE_GC_Z_ZRELOCATE_HPP |
| #define SHARE_GC_Z_ZRELOCATE_HPP |
| |
| #include "gc/z/zAddress.hpp" |
| #include "gc/z/zPageAge.hpp" |
| #include "gc/z/zRelocationSet.hpp" |
| |
| class ZForwarding; |
| class ZGeneration; |
| class ZWorkers; |
| |
| typedef size_t ZForwardingCursor; |
| |
| class ZRelocateQueue { |
| private: |
| ZConditionLock _lock; |
| ZArray<ZForwarding*> _queue; |
| uint _nworkers; |
| uint _nsynchronized; |
| bool _synchronize; |
| volatile bool _is_active; |
| volatile int _needs_attention; |
| |
| bool needs_attention() const; |
| void inc_needs_attention(); |
| void dec_needs_attention(); |
| |
| bool prune(); |
| ZForwarding* prune_and_claim(); |
| |
| public: |
| ZRelocateQueue(); |
| |
| void activate(uint nworkers); |
| void deactivate(); |
| bool is_active() const; |
| |
| void join(uint nworkers); |
| void resize_workers(uint nworkers); |
| void leave(); |
| |
| void add_and_wait(ZForwarding* forwarding); |
| |
| ZForwarding* synchronize_poll(); |
| void synchronize_thread(); |
| void desynchronize_thread(); |
| |
| void clear(); |
| |
| void synchronize(); |
| void desynchronize(); |
| }; |
| |
| class ZRelocate { |
| friend class ZRelocateTask; |
| |
| private: |
| ZGeneration* const _generation; |
| ZRelocateQueue _queue; |
| |
| ZWorkers* workers() const; |
| void work(ZRelocationSetParallelIterator* iter); |
| |
| public: |
| ZRelocate(ZGeneration* generation); |
| |
| void start(); |
| |
| static void add_remset(volatile zpointer* p); |
| |
| static ZPageAge compute_to_age(ZPageAge from_age); |
| |
| zaddress relocate_object(ZForwarding* forwarding, zaddress_unsafe from_addr); |
| zaddress forward_object(ZForwarding* forwarding, zaddress_unsafe from_addr); |
| |
| void relocate(ZRelocationSet* relocation_set); |
| |
| void flip_age_pages(const ZArray<ZPage*>* pages); |
| |
| void synchronize(); |
| void desynchronize(); |
| |
| ZRelocateQueue* queue(); |
| |
| bool is_queue_active() const; |
| }; |
| |
| #endif // SHARE_GC_Z_ZRELOCATE_HPP |