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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp172 ciType* array_type = array()->exact_type(); local
173 if (array_type == NULL) {
176 assert(array_type->is_array_klass(), "what else?");
177 ciArrayKlass* ak = (ciArrayKlass*)array_type;
190 ciType* array_type = array()->declared_type(); local
191 if (array_type == NULL) {
194 assert(array_type->is_array_klass(), "what else?");
195 ciArrayKlass* ak = (ciArrayKlass*)array_type;
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp276 JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_C(klassOopDesc* array_type, int len, JavaThread *thread))
286 if (Klass::cast(array_type)->oop_is_typeArray()) {
289 BasicType elem_type = typeArrayKlass::cast(array_type)->element_type();
293 // the compiler prefers the array_type, since it must already have
295 klassOopDesc* elem_type = objArrayKlass::cast(array_type)->element_klass();
314 JRT_BLOCK_ENTRY(void, OptoRuntime::new_array_nozero_C(klassOopDesc* array_type, int len, JavaThread *thread))
324 assert(Klass::cast(array_type)->oop_is_typeArray(), "should be called only for type array");
326 BasicType elem_type = typeArrayKlass::cast(array_type)->element_type();
347 BasicType elem_type = typeArrayKlass::cast(array_type)->element_type();
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp266 BasicType array_type = typeArrayKlass::cast(a->klass())->element_type(); local
267 if (array_type != value_type) {
270 widen(value, value_type, array_type, CHECK);
272 switch (array_type) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp913 const Type *array_type = SharkType::to_arrayType(basic_type); local
914 if (value->getType() != array_type)
915 value = builder()->CreateIntCast(value, array_type, basic_type != T_CHAR);
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c2256 fullinfo_type array_type = stack_extra_info[0]; local
2258 fullinfo_type target_type = decrement_indirection(array_type);
2309 fullinfo_type array_type = stack_extra_info[0]; local
2310 context->swap_table[0] = decrement_indirection(array_type);
/openjdk7/hotspot/src/share/vm/prims/
H A DjniCheck.cpp293 BasicType array_type = typeArrayKlass::cast(aOop->klass())->element_type(); local
294 if (array_type != elementType)

Completed in 68 milliseconds