We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed30ad7 commit ed1287eCopy full SHA for ed1287e
src/hotspot/share/gc/shenandoah/shenandoahFullGC.cpp
@@ -956,9 +956,8 @@ void ShenandoahFullGC::compact_humongous_objects() {
956
assert(old_start != new_start, "must be real move");
957
assert(r->is_stw_move_allowed(), "Region " SIZE_FORMAT " should be movable", r->index());
958
959
- Copy::aligned_conjoint_words(heap->get_region(old_start)->bottom(),
960
- heap->get_region(new_start)->bottom(),
961
- words_size);
+ old_obj->copy_conjoint(heap->get_region(new_start)->bottom(),
+ words_size);
962
963
oop new_obj = oop(heap->get_region(new_start)->bottom());
964
new_obj->init_mark();
0 commit comments