Searched refs:elt_type (Results 1 - 8 of 8) sorted by relevance
/openjdk7/hotspot/src/share/vm/c1/ |
H A D | c1_Instruction.hpp | 849 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 D | c1_InstructionPrinter.cpp | 395 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 D | c1_Canonicalizer.cpp | 259 BasicType type = x->elt_type(); 268 x->elt_type(), value, x->state_before())); 515 type = li->elt_type();
|
H A D | c1_Runtime1.cpp | 330 BasicType elt_type = typeArrayKlass::cast(klass)->element_type(); variable 331 oop obj = oopFactory::new_typeArray(elt_type, length, CHECK);
|
H A D | c1_Instruction.cpp | 222 return ciTypeArrayKlass::make(elt_type());
|
H A D | c1_LIRGenerator.cpp | 1915 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 D | c1_LIRGenerator_sparc.cpp | 329 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 D | c1_LIRGenerator_x86.cpp | 268 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