Searched refs:index_type (Results 1 – 4 of 4) sorted by relevance
/art/libdexfile/dex/ |
D | dex_instruction.h | 211 IndexType index_type; member 538 return kInstructionDescriptors[opcode].index_type; in IndexTypeOf() 569 return (kInstructionDescriptors[Opcode()].index_type == kIndexFieldOffset) || in IsQuickened() 570 (kInstructionDescriptors[Opcode()].index_type == kIndexVtableOffset); in IsQuickened()
|
/art/runtime/mirror/ |
D | var_handle_test.cc | 82 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateArrayElementVarHandle() local 83 InitializeVarHandle(vh.Get(), var_type, array_class, index_type, access_modes_bit_mask); in CreateArrayElementVarHandle() 101 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateByteArrayViewVarHandle() local 103 InitializeVarHandle(bvh.Get(), var_type, byte_array_class, index_type, access_modes_bit_mask); in CreateByteArrayViewVarHandle() 121 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateByteBufferViewVarHandle() local 125 InitializeVarHandle(bvh.Get(), var_type, byte_buffer_class, index_type, access_modes_bit_mask); in CreateByteBufferViewVarHandle()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 4326 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x()); in VerifyAGet() local 4327 if (!index_type.IsArrayIndexTypes()) { in VerifyAGet() 4328 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")"; in VerifyAGet() 4450 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x()); in VerifyAPut() local 4451 if (!index_type.IsArrayIndexTypes()) { in VerifyAPut() 4452 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")"; in VerifyAPut()
|
/art/compiler/optimizing/ |
D | instruction_builder.cc | 1263 DataType::Type index_type = GetDataTypeFromShorty(invoke, 2); in DecideVarHandleIntrinsic() local 1264 if (index_type == DataType::Type::kBool || in DecideVarHandleIntrinsic() 1265 DataType::Kind(index_type) != DataType::Type::kInt32) { in DecideVarHandleIntrinsic()
|