1 /*
   2  * Copyright (c) 2013, 2017, Red Hat, Inc. and/or its affiliates.
   3  *
   4  * This code is free software; you can redistribute it and/or modify it
   5  * under the terms of the GNU General Public License version 2 only, as
   6  * published by the Free Software Foundation.
   7  *
   8  * This code is distributed in the hope that it will be useful, but WITHOUT
   9  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  11  * version 2 for more details (a copy is included in the LICENSE file that
  12  * accompanied this code).
  13  *
  14  * You should have received a copy of the GNU General Public License version
  15  * 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 USA
  19  * or visit www.oracle.com if you need additional information or have any
  20  * questions.
  21  *
  22  */
  23 
  24 #ifndef SHARE_VM_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_HPP
  25 #define SHARE_VM_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_HPP
  26 
  27 #include "memory/allocation.hpp"
  28 
  29 class ShenandoahHeap;
  30 class ShenandoahHeapRegion;
  31 class ShenandoahHeapRegionSet;
  32 
  33 class ShenandoahHeapRegionSetIterator : public StackObj {
  34 private:
  35   const ShenandoahHeapRegionSet* const _set;
  36   volatile jint _current_index;
  37   ShenandoahHeap* const _heap;
  38 
  39   // No implicit copying: iterators should be passed by reference to capture the state,
  40   // or be copied explicitly by "=" operator
  41   ShenandoahHeapRegionSetIterator(const ShenandoahHeapRegionSetIterator& that);
  42 
  43 public:
  44   ShenandoahHeapRegionSetIterator(const ShenandoahHeapRegionSet* const set);
  45 
  46   ShenandoahHeapRegionSetIterator& operator=(const ShenandoahHeapRegionSetIterator& o);
  47 
  48   // MT version
  49   ShenandoahHeapRegion* claim_next();
  50 
  51   // Single-thread version
  52   ShenandoahHeapRegion* next();
  53 
  54 };
  55 
  56 class ShenandoahHeapRegionSet : public CHeapObj<mtGC> {
  57   friend class ShenandoahHeap;
  58 private:
  59   ShenandoahHeap* const _heap;
  60   size_t const          _map_size;
  61   jbyte* const          _set_map;
  62   jbyte* const          _biased_set_map;
  63   size_t                _region_count;
  64 
  65 public:
  66 
  67   ShenandoahHeapRegionSet();
  68   ~ShenandoahHeapRegionSet();
  69 
  70   // Add region to set
  71   void add_region(ShenandoahHeapRegion* r);
  72   bool add_region_check_for_duplicates(ShenandoahHeapRegion* r);
  73 
  74   // Remove region from set
  75   void remove_region(ShenandoahHeapRegion* r);
  76 
  77   size_t count()  const { return _region_count; }
  78   bool is_empty() const { return _region_count == 0; }
  79 
  80   inline bool is_in(ShenandoahHeapRegion* r) const;
  81   inline bool is_in(size_t region_number)    const;
  82   inline bool is_in(HeapWord* p)             const;
  83 
  84   void print_on(outputStream* out) const;
  85 
  86   void clear();
  87 
  88 private:
  89   jbyte* biased_map_address() const {
  90     return _biased_set_map;
  91   }
  92 };
  93 
  94 #endif //SHARE_VM_GC_SHENANDOAH_SHENANDOAHHEAPREGIONSET_HPP