Home
last modified time | relevance | path

Searched refs:HeapRegionRange (Results 1 – 10 of 10) sorted by relevance

/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/gc/g1/
H A Dg1CommittedRegionMap.cpp33 HeapRegionRange::HeapRegionRange(uint start, uint end) : in HeapRegionRange() function in HeapRegionRange
100 HeapRegionRange G1CommittedRegionMap::next_active_range(uint offset) const { in next_active_range()
105 return HeapRegionRange(max_length(), max_length()); in next_active_range()
111 return HeapRegionRange(start, end); in next_active_range()
114 HeapRegionRange G1CommittedRegionMap::next_committable_range(uint offset) const { in next_committable_range()
122 return HeapRegionRange(max_length(), max_length()); in next_committable_range()
128 return HeapRegionRange(start, end); in next_committable_range()
131 HeapRegionRange G1CommittedRegionMap::next_inactive_range(uint offset) const { in next_inactive_range()
137 return HeapRegionRange(max_length(), max_length()); in next_inactive_range()
143 return HeapRegionRange(start, end); in next_inactive_range()
H A Dg1CommittedRegionMap.hpp33 class HeapRegionRange : public StackObj { class
39 HeapRegionRange(uint start, uint end);
104 HeapRegionRange next_active_range(uint offset) const;
106 HeapRegionRange next_inactive_range(uint offset) const;
110 HeapRegionRange next_committable_range(uint offset) const;
H A DheapRegionManager.cpp312 HeapRegionRange range = _committed_map.next_inactive_range(offset); in uncommit_inactive_regions()
334 HeapRegionRange regions = _committed_map.next_inactive_range(offset); in expand_inactive()
356 HeapRegionRange regions = _committed_map.next_committable_range(offset); in expand_any()
489 HeapRegionRange range(0,0); in find_contiguous_in_free_list()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/gc/g1/
H A Dg1CommittedRegionMap.cpp33 HeapRegionRange::HeapRegionRange(uint start, uint end) : in HeapRegionRange() function in HeapRegionRange
100 HeapRegionRange G1CommittedRegionMap::next_active_range(uint offset) const { in next_active_range()
105 return HeapRegionRange(max_length(), max_length()); in next_active_range()
111 return HeapRegionRange(start, end); in next_active_range()
114 HeapRegionRange G1CommittedRegionMap::next_committable_range(uint offset) const { in next_committable_range()
122 return HeapRegionRange(max_length(), max_length()); in next_committable_range()
128 return HeapRegionRange(start, end); in next_committable_range()
131 HeapRegionRange G1CommittedRegionMap::next_inactive_range(uint offset) const { in next_inactive_range()
137 return HeapRegionRange(max_length(), max_length()); in next_inactive_range()
143 return HeapRegionRange(start, end); in next_inactive_range()
H A Dg1CommittedRegionMap.hpp33 class HeapRegionRange : public StackObj { class
39 HeapRegionRange(uint start, uint end);
104 HeapRegionRange next_active_range(uint offset) const;
106 HeapRegionRange next_inactive_range(uint offset) const;
110 HeapRegionRange next_committable_range(uint offset) const;
H A DheapRegionManager.cpp312 HeapRegionRange range = _committed_map.next_inactive_range(offset); in uncommit_inactive_regions()
334 HeapRegionRange regions = _committed_map.next_inactive_range(offset); in expand_inactive()
356 HeapRegionRange regions = _committed_map.next_committable_range(offset); in expand_any()
489 HeapRegionRange range(0,0); in find_contiguous_in_free_list()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/gtest/gc/g1/
H A Dtest_g1RegionMap.cpp65 HeapRegionRange current = map->next_active_range(current_offset); in random_deactivate()
82 HeapRegionRange current = map->next_inactive_range(current_offset); in random_uncommit_or_reactive()
97 HeapRegionRange current = map->next_committable_range(current_offset); in random_activate_free()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/gtest/gc/g1/
H A Dtest_g1RegionMap.cpp65 HeapRegionRange current = map->next_active_range(current_offset); in random_deactivate()
82 HeapRegionRange current = map->next_inactive_range(current_offset); in random_uncommit_or_reactive()
97 HeapRegionRange current = map->next_committable_range(current_offset); in random_activate_free()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/gc/g1/
H A DheapRegionManager.hpp46 class HeapRegionRange : public StackObj { class
52 HeapRegionRange(uint start, uint end);
128 HeapRegionRange find_unavailable_from_idx(uint index) const;
H A DheapRegionManager.cpp63 HeapRegionRange::HeapRegionRange(uint start, uint end) : _start(start), _end(end) { in HeapRegionRange() function in HeapRegionRange
294 HeapRegionRange regions = find_unavailable_from_idx(offset); in expand_at()
439 HeapRegionRange HeapRegionManager::find_unavailable_from_idx(uint index) const { in find_unavailable_from_idx()
446 return HeapRegionRange(max_length(), max_length()); in find_unavailable_from_idx()
456 return HeapRegionRange((uint) start, (uint) end); in find_unavailable_from_idx()