Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc168 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
186 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
204 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
526 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); 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 …shadow_frame.SetVRegFloat(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(i… in ExecuteGotoImpl()
1536 …shadow_frame.SetVRegDouble(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x… in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc95 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
113 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
131 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
439 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); 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 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteSwitchImpl()
1412 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteSwitchImpl()
1417 …shadow_frame.SetVRegFloat(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(i… in ExecuteSwitchImpl()
1422 …shadow_frame.SetVRegDouble(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x… in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc287 SetRegisterType(inst->VRegA_12x(), dst_type); in CheckUnaryOp()
295 SetRegisterTypeWide(inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpWide()
303 SetRegisterTypeWide(inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpToWide()
311 SetRegisterType(inst->VRegA_12x(), dst_type); in CheckUnaryOpFromWide()
357 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addr()
377 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWide()
388 const uint32_t vregA = inst->VRegA_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()
1782 work_line_->SetRegisterType(inst->VRegA_12x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2016 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
/art/runtime/
Ddex_instruction.h252 uint4_t VRegA_12x() const { in VRegA_12x() function
253 return VRegA_12x(Fetch16(0)); in VRegA_12x()
313 uint4_t VRegA_12x(uint16_t inst_data) const;
Ddex_instruction-inl.h63 case k12x: return VRegA_12x(); in VRegA()
109 inline uint4_t Instruction::VRegA_12x(uint16_t inst_data) const { in VRegA_12x() function
Ddex_instruction.cc141 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString()
/art/compiler/dex/
Dmir_graph.cc361 dest = check_insn->VRegA_12x(); in IsBadMonitorExitCatch()