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.cc208 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
226 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
244 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
535 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteGotoImpl()
1681 inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1687 inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1693 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1699 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1705 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1711 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc134 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
152 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
170 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
478 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteSwitchImpl()
1562 inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1568 inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1574 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1580 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1586 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1592 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc196 SetRegisterType<LockOp::kClear>(verifier, inst->VRegA_12x(), dst_type); in CheckUnaryOp()
204 SetRegisterTypeWide(verifier, inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpWide()
212 SetRegisterTypeWide(verifier, inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpToWide()
220 SetRegisterType<LockOp::kClear>(verifier, inst->VRegA_12x(), dst_type); in CheckUnaryOpFromWide()
268 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addr()
290 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWide()
301 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWideShift()
Dmethod_verifier.cc2042 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
2051 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x()); in CodeFlowVerifyInstruction()
2060 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
2399 inst->VRegA_12x(), in CodeFlowVerifyInstruction()
2654 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
/art/runtime/
Ddex_instruction.h266 uint4_t VRegA_12x() const { in VRegA_12x() function
267 return VRegA_12x(Fetch16(0)); in VRegA_12x()
327 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.cc167 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString()
/art/compiler/optimizing/
Dinstruction_builder.cc2583 UpdateLocal(instruction.VRegA_12x(), current_block_->GetLastInstruction()); in ProcessDexInstruction()