Searched refs:ac_failed (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Runtime1.cpp1167 ac_failed = -1, // arraycopy failed enumerator in enum:__anon134
1200 return ac_failed;
1210 if (src == NULL || dst == NULL || src_pos < 0 || dst_pos < 0 || length < 0) return ac_failed;
1211 if (!dst->is_array() || !src->is_array()) return ac_failed;
1212 if ((unsigned int) arrayOop(src)->length() < (unsigned int)src_pos + (unsigned int)length) return ac_failed;
1213 if ((unsigned int) arrayOop(dst)->length() < (unsigned int)dst_pos + (unsigned int)length) return ac_failed;
1218 if (klass_oop != dst->klass()) return ac_failed;
1239 return ac_failed;

Completed in 396 milliseconds