< prev index next >

src/share/vm/opto/macroArrayCopy.cpp

Print this page
rev 8961 : [mq]: diff-shenandoah.patch

*** 545,555 **** checked_value = cv; } // At this point we know we do not need type checks on oop stores. // Let's see if we need card marks: ! if (alloc != NULL && GraphKit::use_ReduceInitialCardMarks()) { // If we do not need card marks, copy using the jint or jlong stub. copy_type = LP64_ONLY(UseCompressedOops ? T_INT : T_LONG) NOT_LP64(T_INT); assert(type2aelembytes(basic_elem_type) == type2aelembytes(copy_type), "sizes agree"); } --- 545,555 ---- checked_value = cv; } // At this point we know we do not need type checks on oop stores. // Let's see if we need card marks: ! if (alloc != NULL && GraphKit::use_ReduceInitialCardMarks() && ! UseShenandoahGC) { // If we do not need card marks, copy using the jint or jlong stub. copy_type = LP64_ONLY(UseCompressedOops ? T_INT : T_LONG) NOT_LP64(T_INT); assert(type2aelembytes(basic_elem_type) == type2aelembytes(copy_type), "sizes agree"); }
< prev index next >