Home
last modified time | relevance | path

Searched refs:_oops_count (Results 1 – 20 of 20) sorted by relevance

/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahNMethod.cpp36 _oops_count = oops.length(); in ShenandoahNMethod()
37 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC); in ShenandoahNMethod()
38 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
92 if (oops.length() != _oops_count) { in update()
98 _oops_count = oops.length(); in update()
99 if (_oops_count > 0) { in update()
104 for (int index = 0; index < _oops_count; index ++) { in update()
113 for (int c = 0; c < _oops_count; c ++) { in oops_do()
231 for (int c = 0; c < _oops_count; c++) { in assert_alive_and_correct()
278 int count = _oops_count; in assert_same_oops()
[all …]
H A DshenandoahNMethod.inline.hpp41 return _oops_count + static_cast<int>(nm()->oops_end() - nm()->oops_begin()); in oop_count()
H A DshenandoahNMethod.hpp42 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahNMethod.cpp37 _oops_count = oops.length(); in ShenandoahNMethod()
38 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC); in ShenandoahNMethod()
39 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
93 if (oops.length() != _oops_count) { in update()
99 _oops_count = oops.length(); in update()
100 if (_oops_count > 0) { in update()
101 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC); in update()
105 for (int index = 0; index < _oops_count; index ++) { in update()
206 for (int c = 0; c < _oops_count; c++) { in assert_correct()
253 int count = _oops_count; in assert_same_oops()
[all …]
H A DshenandoahNMethod.inline.hpp42 return _oops_count + static_cast<int>(nm()->oops_end() - nm()->oops_begin()); in oop_count()
58 for (int c = 0; c < _oops_count; c ++) { in oops_do()
H A DshenandoahNMethod.hpp43 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahNMethod.cpp36 _oops_count = oops.length(); in ShenandoahNMethod()
37 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC); in ShenandoahNMethod()
38 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
92 if (oops.length() != _oops_count) { in update()
98 _oops_count = oops.length(); in update()
99 if (_oops_count > 0) { in update()
104 for (int index = 0; index < _oops_count; index ++) { in update()
176 for (int c = 0; c < _oops_count; c++) { in assert_correct()
223 int count = _oops_count; in assert_same_oops()
224 for (int index = 0; index < _oops_count; index ++) { in assert_same_oops()
[all …]
H A DshenandoahNMethod.inline.hpp43 return _oops_count + static_cast<int>(nm()->oops_end() - nm()->oops_begin()); in oop_count()
59 for (int c = 0; c < _oops_count; c ++) { in oops_do()
H A DshenandoahNMethod.hpp43 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahNMethod.cpp37 _oops_count = oops.length(); in ShenandoahNMethod()
38 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC); in ShenandoahNMethod()
39 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
93 if (oops.length() != _oops_count) { in update()
99 _oops_count = oops.length(); in update()
100 if (_oops_count > 0) { in update()
101 _oops = NEW_C_HEAP_ARRAY(oop*, _oops_count, mtGC); in update()
105 for (int index = 0; index < _oops_count; index ++) { in update()
212 for (int c = 0; c < _oops_count; c++) { in assert_correct()
259 int count = _oops_count; in assert_same_oops()
[all …]
H A DshenandoahNMethod.inline.hpp42 return _oops_count + static_cast<int>(nm()->oops_end() - nm()->oops_begin()); in oop_count()
58 for (int c = 0; c < _oops_count; c ++) { in oops_do()
H A DshenandoahNMethod.hpp43 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahCodeRoots.cpp287 _oops_count = oops->length(); in ShenandoahNMethod()
288 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
300 for (int c = 0; c < _oops_count; c++) { in has_cset_oops()
312 assert(_oops_count > 0, "should have filtered nmethods without oops before"); in assert_alive_and_correct()
314 for (int c = 0; c < _oops_count; c++) { in assert_alive_and_correct()
327 assert(_oops_count == oops->length(), "should have the same number of oop*"); in assert_same_oops()
328 for (int c = 0; c < _oops_count; c++) { in assert_same_oops()
H A DshenandoahCodeRoots.hpp74 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahCodeRoots.cpp287 _oops_count = oops->length(); in ShenandoahNMethod()
288 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
300 for (int c = 0; c < _oops_count; c++) { in has_cset_oops()
312 assert(_oops_count > 0, "should have filtered nmethods without oops before"); in assert_alive_and_correct()
314 for (int c = 0; c < _oops_count; c++) { in assert_alive_and_correct()
327 assert(_oops_count == oops->length(), "should have the same number of oop*"); in assert_same_oops()
328 for (int c = 0; c < _oops_count; c++) { in assert_same_oops()
H A DshenandoahCodeRoots.hpp74 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/hotspot/share/gc/shenandoah/
H A DshenandoahCodeRoots.cpp288 _oops_count = oops->length(); in ShenandoahNMethod()
289 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
301 for (int c = 0; c < _oops_count; c++) { in has_cset_oops()
313 assert(_oops_count > 0, "should have filtered nmethods without oops before"); in assert_alive_and_correct()
315 for (int c = 0; c < _oops_count; c++) { in assert_alive_and_correct()
328 assert(_oops_count == oops->length(), "should have the same number of oop*"); in assert_same_oops()
329 for (int c = 0; c < _oops_count; c++) { in assert_same_oops()
H A DshenandoahCodeRoots.hpp72 int _oops_count; member in ShenandoahNMethod
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/hotspot/share/gc/shenandoah/
H A DshenandoahCodeRoots.cpp335 _oops_count = oops->length(); in ShenandoahNMethod()
336 for (int c = 0; c < _oops_count; c++) { in ShenandoahNMethod()
348 for (int c = 0; c < _oops_count; c++) { in has_cset_oops()
360 assert(_oops_count > 0, "should have filtered nmethods without oops before"); in assert_alive_and_correct()
362 for (int c = 0; c < _oops_count; c++) { in assert_alive_and_correct()
371 assert(_oops_count == oops->length(), "should have the same number of oop*"); in assert_same_oops()
372 for (int c = 0; c < _oops_count; c++) { in assert_same_oops()
H A DshenandoahCodeRoots.hpp68 int _oops_count; member in ShenandoahNMethod