Home
last modified time | relevance | path

Searched refs:VRegA_23x (Results 1 – 9 of 9) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc684 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteGotoImpl()
700 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteGotoImpl()
716 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteGotoImpl()
732 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteGotoImpl()
752 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteGotoImpl()
975 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteGotoImpl()
993 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteGotoImpl()
1011 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteGotoImpl()
1029 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteGotoImpl()
1048 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc574 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteSwitchImpl()
590 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteSwitchImpl()
606 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteSwitchImpl()
623 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteSwitchImpl()
644 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in ExecuteSwitchImpl()
821 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteSwitchImpl()
839 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteSwitchImpl()
857 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteSwitchImpl()
875 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteSwitchImpl()
894 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc244 SetRegisterType(verifier, inst->VRegA_23x(), verifier->GetRegTypeCache()->Boolean()); in CheckBinaryOp()
248 SetRegisterType(verifier, inst->VRegA_23x(), dst_type); in CheckBinaryOp()
258 SetRegisterTypeWide(verifier, inst->VRegA_23x(), dst_type1, dst_type2); in CheckBinaryOpWide()
267 SetRegisterTypeWide(verifier, inst->VRegA_23x(), long_lo_type, long_hi_type); in CheckBinaryOpWideShift()
Dmethod_verifier.cc2032 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2044 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2055 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
3732 work_line_->SetRegisterType(this, inst->VRegA_23x(), reg_types_.Zero()); in VerifyAGet()
3735 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), in VerifyAGet()
3760 work_line_->SetRegisterType(this, inst->VRegA_23x(), component_type); in VerifyAGet()
3762 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type, in VerifyAGet()
3837 const RegType& value_type = work_line_->GetRegisterType(this, inst->VRegA_23x()); in VerifyAPut()
3848 work_line_->VerifyRegisterType(this, inst->VRegA_23x(), *modified_reg_type); in VerifyAPut()
3853 const uint32_t vregA = inst->VRegA_23x(); in VerifyAPut()
/art/runtime/
Ddex_instruction.h281 uint8_t VRegA_23x() const { in VRegA_23x() function
282 return VRegA_23x(Fetch16(0)); in VRegA_23x()
321 uint8_t VRegA_23x(uint16_t inst_data) const;
Ddex_instruction-inl.h74 case k23x: return VRegA_23x(); in VRegA()
164 inline uint8_t Instruction::VRegA_23x(uint16_t inst_data) const { in VRegA_23x() function
Ddex_instruction.cc233 …case k23x: os << StringPrintf("%s v%d, v%d, v%d", opcode, VRegA_23x(), VRegB_23x(), VRegC_23x());… in DumpString()
/art/compiler/dex/
Dverified_method.cc359 inst->VRegA_23x())); in GenerateSafeCastSet()
/art/compiler/optimizing/
Dbuilder.cc1026 uint8_t source_or_dest_reg = instruction.VRegA_23x(); in BuildArrayAccess()