JDK-8058495 : G1: normalize names for isHumongous() and friends
  • Type: Enhancement
  • Component: hotspot
  • Sub-Component: gc
  • Priority: P4
  • Status: Resolved
  • Resolution: Fixed
  • OS: generic
  • CPU: generic
  • Submitted: 2014-09-15
  • Updated: 2015-06-03
  • Resolved: 2014-09-23
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9 b34Fixed
Related Reports
Relates :  
Description
Follow-up from JDK-8057768, this is a quick cleanup to normalize the names of some (humongous-related) methods:

HeapRegion::isHumongous() -> is_humongous()
HeapRegion::startsHumongous() -> is_starts_humongous()
HeapRegion::continuesHumongous() -> is_continues_humongous()

HeapRegion::set_startsHumongous() -> set_starts_humongous()
HeapRegion::set_continuesHumongous() -> set_continues_humongous()

HeapRegionType::HumMask -> HumongousMask
HeapRegionType::HumStartsTag -> StartsHumongousTag
HeapRegionType::HumContTag -> ContinuesHumongousTag

G1CollectedHeap::isHumongous() -> is_humongous()