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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp849 AccessIndexed(Value array, Value index, Value length, BasicType elt_type, ValueStack* state_before)
850 : AccessArray(as_ValueType(elt_type), array, state_before)
853 , _elt_type(elt_type)
861 BasicType elt_type() const { return _elt_type; }
877 LoadIndexed(Value array, Value index, Value length, BasicType elt_type, ValueStack* state_before)
878 : AccessIndexed(array, index, length, elt_type, state_before)
904 StoreIndexed(Value array, Value index, Value length, BasicType elt_type, Value value, ValueStack* state_before)
905 : AccessIndexed(array, index, length, elt_type, state_before)
908 set_flag(NeedsWriteBarrierFlag, (as_ValueType(elt_type)->is_object()));
909 set_flag(NeedsStoreCheckFlag, (as_ValueType(elt_type)
[all...]
H A Dc1_InstructionPrinter.cpp395 output()->print(" (%c)", type2char(x->elt_type()));
403 output()->print(" (%c)", type2char(x->elt_type()));
495 output()->print("new %s array [", basic_type_name(x->elt_type()));
H A Dc1_Canonicalizer.cpp259 BasicType type = x->elt_type();
268 x->elt_type(), value, x->state_before()));
515 type = li->elt_type();
H A Dc1_Runtime1.cpp330 BasicType elt_type = typeArrayKlass::cast(klass)->element_type(); variable
331 oop obj = oopFactory::new_typeArray(elt_type, length, CHECK);
H A Dc1_Instruction.cpp222 return ciTypeArrayKlass::make(elt_type());
H A Dc1_LIRGenerator.cpp1915 LIR_Address* array_addr = emit_array_address(array.result(), index.result(), x->elt_type(), false);
1930 __ move(array_addr, rlock_result(x, x->elt_type()), null_check_info);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp329 bool obj_store = x->elt_type() == T_ARRAY || x->elt_type() == T_OBJECT;
352 value.load_for_store(x->elt_type());
367 LIR_Address* array_addr = emit_array_address(array.result(), index.result(), x->elt_type(), obj_store);
908 BasicType elem_type = x->elt_type();
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp268 bool obj_store = x->elt_type() == T_ARRAY || x->elt_type() == T_OBJECT;
291 value.load_for_store(x->elt_type());
306 LIR_Address* array_addr = emit_array_address(array.result(), index.result(), x->elt_type(), obj_store);
1045 BasicType elem_type = x->elt_type();

Completed in 88 milliseconds