< prev index next >

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

Print this page

        

@@ -52,30 +52,30 @@
 
 inline size_t ZRelocationSetSelectorGroupStats::compacting_to() const {
   return _compacting_to;
 }
 
-inline ZPage* const* ZRelocationSetSelectorGroup::selected() const {
-  return _sorted_pages;
+inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorStats::small() const {
+  return _small;
 }
 
-inline size_t ZRelocationSetSelectorGroup::nselected() const {
-  return _nselected;
+inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorStats::medium() const {
+  return _medium;
 }
 
-inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorGroup::stats() const {
-  return _stats;
+inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorStats::large() const {
+  return _large;
 }
 
-inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelector::stats_small() const {
-  return _small.stats();
+inline ZPage* const* ZRelocationSetSelectorGroup::selected() const {
+  return _sorted_pages;
 }
 
-inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelector::stats_medium() const {
-  return _medium.stats();
+inline size_t ZRelocationSetSelectorGroup::nselected() const {
+  return _nselected;
 }
 
-inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelector::stats_large() const {
-  return _large.stats();
+inline const ZRelocationSetSelectorGroupStats& ZRelocationSetSelectorGroup::stats() const {
+  return _stats;
 }
 
 #endif // SHARE_GC_Z_ZRELOCATIONSETSELECTOR_INLINE_HPP
< prev index next >