Searched refs:index_type (Results 1 – 3 of 3) sorted by relevance
/art/libdexfile/dex/ |
D | dex_instruction.h | 210 IndexType index_type; member 531 return kInstructionDescriptors[opcode].index_type; in IndexTypeOf() 562 return (kInstructionDescriptors[Opcode()].index_type == kIndexFieldOffset) || in IsQuickened() 563 (kInstructionDescriptors[Opcode()].index_type == kIndexVtableOffset); in IsQuickened()
|
/art/runtime/mirror/ |
D | var_handle_test.cc | 78 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateArrayElementVarHandle() local 79 InitializeVarHandle(vh.Get(), var_type, array_class, index_type, access_modes_bit_mask); in CreateArrayElementVarHandle() 97 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateByteArrayViewVarHandle() local 99 InitializeVarHandle(bvh.Get(), var_type, byte_array_class, index_type, access_modes_bit_mask); in CreateByteArrayViewVarHandle() 117 Handle<Class> index_type = hs.NewHandle(class_linker->FindPrimitiveClass('I')); in CreateByteBufferViewVarHandle() local 121 InitializeVarHandle(bvh.Get(), var_type, byte_buffer_class, index_type, access_modes_bit_mask); in CreateByteBufferViewVarHandle()
|
/art/runtime/verifier/ |
D | method_verifier.cc | 4466 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x()); in VerifyAGet() local 4467 if (!index_type.IsArrayIndexTypes()) { in VerifyAGet() 4468 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")"; in VerifyAGet() 4592 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x()); in VerifyAPut() local 4593 if (!index_type.IsArrayIndexTypes()) { in VerifyAPut() 4594 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "Invalid reg type for array index (" << index_type << ")"; in VerifyAPut()
|