Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc180 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
198 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
216 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteGotoImpl()
505 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteGotoImpl()
1614 inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1620 inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1626 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1632 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1638 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
1644 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc92 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
110 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
128 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
409 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteSwitchImpl()
1447 inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1453 inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1459 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1465 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1471 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1477 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc204 SetRegisterType(verifier, inst->VRegA_12x(), dst_type); in CheckUnaryOp()
212 SetRegisterTypeWide(verifier, inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpWide()
220 SetRegisterTypeWide(verifier, inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpToWide()
228 SetRegisterType(verifier, inst->VRegA_12x(), dst_type); in CheckUnaryOpFromWide()
274 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addr()
294 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWide()
305 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWideShift()
Dmethod_verifier.cc1676 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
1685 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x()); in CodeFlowVerifyInstruction()
1694 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
1985 work_line_->SetRegisterType(this, inst->VRegA_12x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2226 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
/art/runtime/
Ddex_instruction.h250 uint4_t VRegA_12x() const { in VRegA_12x() function
251 return VRegA_12x(Fetch16(0)); in VRegA_12x()
311 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.cc159 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString()
/art/compiler/optimizing/
Dbuilder.cc2180 UpdateLocal(instruction.VRegA_12x(), current_block_->GetLastInstruction()); in AnalyzeDexInstruction()
/art/compiler/dex/
Dmir_graph.cc417 dest = check_insn->VRegA_12x(); in IsBadMonitorExitCatch()