1 /*
   2  * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 #ifndef SHARE_GC_Z_ZRELOCATIONSETSELECTOR_INLINE_HPP
  25 #define SHARE_GC_Z_ZRELOCATIONSETSELECTOR_INLINE_HPP
  26 
  27 #include "gc/z/zRelocationSetSelector.hpp"
  28 
  29 inline size_t ZRelocationSetSelectorGroupStats::npages() const {
  30   return _npages;
  31 }
  32 
  33 inline size_t ZRelocationSetSelectorGroupStats::total() const {
  34   return _total;
  35 }
  36 
  37 inline size_t ZRelocationSetSelectorGroupStats::live() const {
  38   return _live;
  39 }
  40 
  41 inline size_t ZRelocationSetSelectorGroupStats::garbage() const {
  42   return _garbage;
  43 }
  44 
  45 inline size_t ZRelocationSetSelectorGroupStats::empty() const {
  46   return _empty;
  47 }
  48 
  49 inline size_t ZRelocationSetSelectorGroupStats::compacting_from() const {
  50   return _compacting_from;
  51 }
  52 
  53 inline size_t ZRelocationSetSelectorGroupStats::compacting_to() const {
  54   return _compacting_to;
  55 }
  56 
  57 inline ZPage* const* ZRelocationSetSelectorGroup::selected() const {
  58   return _sorted_pages;
  59 }
  60 
  61 inline size_t ZRelocationSetSelectorGroup::nselected() const {
  62   return _nselected;
  63 }
  64 
  65 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorGroup::stats() const {
  66   return _stats;
  67 }
  68 
  69 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelector::stats_small() const {
  70   return _small.stats();
  71 }
  72 
  73 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelector::stats_medium() const {
  74   return _medium.stats();
  75 }
  76 
  77 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelector::stats_large() const {
  78   return _large.stats();
  79 }
  80 
  81 #endif // SHARE_GC_Z_ZRELOCATIONSETSELECTOR_INLINE_HPP