Lines Matching refs:vregA

543   uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data);  in DoFieldGet()  local
546 shadow_frame.SetVReg(vregA, result.GetZ()); in DoFieldGet()
549 shadow_frame.SetVReg(vregA, result.GetB()); in DoFieldGet()
552 shadow_frame.SetVReg(vregA, result.GetC()); in DoFieldGet()
555 shadow_frame.SetVReg(vregA, result.GetS()); in DoFieldGet()
558 shadow_frame.SetVReg(vregA, result.GetI()); in DoFieldGet()
561 shadow_frame.SetVRegLong(vregA, result.GetJ()); in DoFieldGet()
564 shadow_frame.SetVRegReference(vregA, result.GetL()); in DoFieldGet()
608 const uint32_t vregA = inst->VRegA_22c(inst_data); in DoIGetQuick() local
611 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetField32(field_offset))); in DoIGetQuick()
614 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldBoolean(field_offset))); in DoIGetQuick()
617 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldByte(field_offset))); in DoIGetQuick()
620 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldChar(field_offset))); in DoIGetQuick()
623 shadow_frame.SetVReg(vregA, static_cast<int32_t>(obj->GetFieldShort(field_offset))); in DoIGetQuick()
626 shadow_frame.SetVRegLong(vregA, static_cast<int64_t>(obj->GetField64(field_offset))); in DoIGetQuick()
629 shadow_frame.SetVRegReference(vregA, obj->GetFieldObject<mirror::Object>(field_offset)); in DoIGetQuick()
697 uint32_t vregA = is_static ? inst->VRegA_21c(inst_data) : inst->VRegA_22c(inst_data); in DoFieldPut() local
698 JValue value = GetFieldValue<field_type>(shadow_frame, vregA); in DoFieldPut()
726 const uint32_t vregA = inst->VRegA_22c(inst_data); in DoIPutQuick() local
735 JValue field_value = GetFieldValue<field_type>(shadow_frame, vregA); in DoIPutQuick()
761 obj->SetFieldBoolean<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); in DoIPutQuick()
764 obj->SetFieldByte<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); in DoIPutQuick()
767 obj->SetFieldChar<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); in DoIPutQuick()
770 obj->SetFieldShort<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); in DoIPutQuick()
773 obj->SetField32<transaction_active>(field_offset, shadow_frame.GetVReg(vregA)); in DoIPutQuick()
776 obj->SetField64<transaction_active>(field_offset, shadow_frame.GetVRegLong(vregA)); in DoIPutQuick()
779 obj->SetFieldObject<transaction_active>(field_offset, shadow_frame.GetVRegReference(vregA)); in DoIPutQuick()