Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl.cc98 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
116 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
134 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
443 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteSwitchImpl()
1401 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteSwitchImpl()
1406 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteSwitchImpl()
1411 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteSwitchImpl()
1416 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteSwitchImpl()
1421 …shadow_frame.SetVRegFloat(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(i… in ExecuteSwitchImpl()
1426 …shadow_frame.SetVRegDouble(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x… in ExecuteSwitchImpl()
[all …]
Dinterpreter_goto_table_impl.cc171 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
189 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
207 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
530 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteGotoImpl()
1515 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteGotoImpl()
1520 …shadow_frame.SetVReg(inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))… in ExecuteGotoImpl()
1525 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteGotoImpl()
1530 …shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(ins… in ExecuteGotoImpl()
1535 …shadow_frame.SetVRegFloat(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(i… in ExecuteGotoImpl()
1540 …shadow_frame.SetVRegDouble(inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x… in ExecuteGotoImpl()
[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.cc1509 work_line_->CopyRegister1(inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
1518 work_line_->CopyRegister2(inst->VRegA_12x(), inst->VRegB_12x()); in CodeFlowVerifyInstruction()
1527 work_line_->CopyRegister1(inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
1805 work_line_->SetRegisterType(inst->VRegA_12x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2047 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()