--- old/src/hotspot/share/gc/g1/heapRegion.hpp 2018-10-05 11:10:18.326081000 -0700 +++ new/src/hotspot/share/gc/g1/heapRegion.hpp 2018-10-05 11:10:17.443733200 -0700 @@ -424,6 +424,8 @@ bool is_old() const { return _type.is_old(); } + bool is_premature_old() const { return _type.is_premature_old(); } + bool is_old_or_humongous() const { return _type.is_old_or_humongous(); } bool is_old_or_humongous_or_archive() const { return _type.is_old_or_humongous_or_archive(); } @@ -613,6 +615,7 @@ void move_to_old(); void set_old(); + void set_premature_old(); void set_open_archive(); void set_closed_archive();