static void pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) { #ifdef _LP64 assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size"); _Copy_arrayof_conjoint_jlongs(from, to, count); #else assert(BytesPerInt == BytesPerOop, "jints and oops must be the same size"); _Copy_arrayof_conjoint_jints(from, to, count); #endif // _LP64 }
static void pd_arrayof_conjoint_oops(HeapWord* from, HeapWord* to, size_t count) { assert(BytesPerLong == BytesPerOop, "jlongs and oops must be the same size"); _Copy_arrayof_conjoint_jlongs(from, to, count); }
static void pd_arrayof_conjoint_jlongs(HeapWord* from, HeapWord* to, size_t count) { _Copy_arrayof_conjoint_jlongs(from, to, count); }