Home
last modified time | relevance | path

Searched refs:VRegC_23x (Results 1 – 8 of 8) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc693 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl()
709 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl()
725 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl()
741 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl()
757 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteGotoImpl()
969 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
987 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
1005 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
1023 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
1041 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc602 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl()
618 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl()
634 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl()
651 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl()
667 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteSwitchImpl()
868 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
886 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
904 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
922 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
940 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc320 const uint32_t vregC = inst->VRegC_23x(); in CheckBinaryOp()
340 VerifyRegisterTypeWide(inst->VRegC_23x(), src_type2_1, src_type2_2)) { in CheckBinaryOpWide()
349 VerifyRegisterType(inst->VRegC_23x(), int_type)) { in CheckBinaryOpWideShift()
Dmethod_verifier.cc1826 if (!work_line_->VerifyRegisterType(inst->VRegC_23x(), reg_types_.Float())) { in CodeFlowVerifyInstruction()
1837 if (!work_line_->VerifyRegisterTypeWide(inst->VRegC_23x(), reg_types_.DoubleLo(), in CodeFlowVerifyInstruction()
1848 if (!work_line_->VerifyRegisterTypeWide(inst->VRegC_23x(), reg_types_.LongLo(), in CodeFlowVerifyInstruction()
3466 RegType& index_type = work_line_->GetRegisterType(inst->VRegC_23x()); in VerifyAGet()
3566 RegType& index_type = work_line_->GetRegisterType(inst->VRegC_23x()); in VerifyAPut()
/art/runtime/
Ddex_instruction-inl.h390 case k23x: return VRegC_23x(); in VRegC()
419 inline uint8_t Instruction::VRegC_23x() const { in VRegC_23x() function
Ddex_instruction.cc211 …case k23x: os << StringPrintf("%s v%d, v%d, v%d", opcode, VRegA_23x(), VRegB_23x(), VRegC_23x());… in DumpString()
Ddex_instruction.h385 uint8_t VRegC_23x() const;
/art/compiler/optimizing/
Dbuilder.cc434 uint8_t index_reg = instruction.VRegC_23x(); in BuildArrayAccess()