Home
last modified time | relevance | path

Searched refs:VRegB_12x (Results 1 – 7 of 7) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc169 shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
187 shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
205 shadow_frame.GetVRegReference(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
521 Object* array = shadow_frame.GetVRegReference(inst->VRegB_12x(inst_data)); in ExecuteGotoImpl()
1511 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteGotoImpl()
1516 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteGotoImpl()
1521 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteGotoImpl()
1526 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteGotoImpl()
1531 …e.SetVRegFloat(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1536 …SetVRegDouble(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc96 shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
114 shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
132 shadow_frame.GetVRegReference(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
434 Object* array = shadow_frame.GetVRegReference(inst->VRegB_12x(inst_data)); in ExecuteSwitchImpl()
1397 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteSwitchImpl()
1402 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteSwitchImpl()
1407 …ame.SetVRegLong(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1412 …ame.SetVRegLong(inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1417 …e.SetVRegFloat(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1422 …SetVRegDouble(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc286 if (VerifyRegisterType(inst->VRegB_12x(), src_type)) { in CheckUnaryOp()
294 if (VerifyRegisterTypeWide(inst->VRegB_12x(), src_type1, src_type2)) { in CheckUnaryOpWide()
302 if (VerifyRegisterType(inst->VRegB_12x(), src_type)) { in CheckUnaryOpToWide()
310 if (VerifyRegisterTypeWide(inst->VRegB_12x(), src_type1, src_type2)) { in CheckUnaryOpFromWide()
358 const uint32_t vregB = inst->VRegB_12x(); in CheckBinaryOp2addr()
378 const uint32_t vregB = inst->VRegB_12x(); in CheckBinaryOp2addrWide()
389 const uint32_t vregB = inst->VRegB_12x(); in CheckBinaryOp2addrWideShift()
Dmethod_verifier.cc1492 work_line_->CopyRegister1(inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
1501 work_line_->CopyRegister2(inst->VRegA_12x(), inst->VRegB_12x()); in CodeFlowVerifyInstruction()
1510 work_line_->CopyRegister1(inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
1777 RegType& res_type = work_line_->GetRegisterType(inst->VRegB_12x()); in CodeFlowVerifyInstruction()
2017 update_line->SetRegisterType(move_inst->VRegB_12x(), cast_type); in CodeFlowVerifyInstruction()
/art/runtime/
Ddex_instruction.h341 uint4_t VRegB_12x() const { in VRegB_12x() function
342 return VRegB_12x(Fetch16(0)); in VRegB_12x()
372 uint4_t VRegB_12x(uint16_t inst_data) const;
Ddex_instruction-inl.h244 case k12x: return VRegB_12x(); in VRegB()
277 inline uint4_t Instruction::VRegB_12x(uint16_t inst_data) const { in VRegB_12x() function
Ddex_instruction.cc141 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString()