< prev index next >

src/hotspot/share/gc/z/zRelocationSetSelector.inline.hpp

Print this page




  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


  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 const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorStats::small() const {
  58   return _small;
  59 }
  60 
  61 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorStats::medium() const {
  62   return _medium;
  63 }
  64 
  65 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorStats::large() const {
  66   return _large;
  67 }
  68 
  69 inline ZPage* const* ZRelocationSetSelectorGroup::selected() const {
  70   return _sorted_pages;
  71 }
  72 
  73 inline size_t ZRelocationSetSelectorGroup::nselected() const {
  74   return _nselected;
  75 }
  76 
  77 inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorGroup::stats() const {
  78   return _stats;
  79 }
  80 
  81 #endif // SHARE_GC_Z_ZRELOCATIONSETSELECTOR_INLINE_HPP
< prev index next >