Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_switch_impl.cc184 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
202 shadow_frame.SetVRegLong(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
220 shadow_frame.SetVRegReference(inst->VRegA_12x(inst_data), in ExecuteSwitchImpl()
561 shadow_frame.SetVReg(inst->VRegA_12x(inst_data), array->AsArray()->GetLength()); in ExecuteSwitchImpl()
1629 inst->VRegA_12x(inst_data), -shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1635 inst->VRegA_12x(inst_data), ~shadow_frame.GetVReg(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1641 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1647 inst->VRegA_12x(inst_data), ~shadow_frame.GetVRegLong(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1653 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegFloat(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
1659 inst->VRegA_12x(inst_data), -shadow_frame.GetVRegDouble(inst->VRegB_12x(inst_data))); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc199 SetRegisterType<LockOp::kClear>(verifier, inst->VRegA_12x(), dst_type); in CheckUnaryOp()
207 SetRegisterTypeWide(verifier, inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpWide()
215 SetRegisterTypeWide(verifier, inst->VRegA_12x(), dst_type1, dst_type2); in CheckUnaryOpToWide()
223 SetRegisterType<LockOp::kClear>(verifier, inst->VRegA_12x(), dst_type); in CheckUnaryOpFromWide()
271 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addr()
293 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWide()
304 const uint32_t vregA = inst->VRegA_12x(); in CheckBinaryOp2addrWideShift()
Dmethod_verifier.cc2099 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
2108 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x()); in CodeFlowVerifyInstruction()
2117 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
2457 inst->VRegA_12x(), in CodeFlowVerifyInstruction()
2714 if (move_inst->VRegA_12x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
/art/runtime/
Ddex_instruction.h296 uint4_t VRegA_12x() const { in VRegA_12x() function
297 return VRegA_12x(Fetch16(0)); in VRegA_12x()
363 uint4_t VRegA_12x(uint16_t inst_data) const;
Ddex_instruction-inl.h65 case k12x: return VRegA_12x(); in VRegA()
113 inline uint4_t Instruction::VRegA_12x(uint16_t inst_data) const { in VRegA_12x() function
Ddex_instruction.cc160 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString()
/art/compiler/optimizing/
Dinstruction_builder.cc2741 UpdateLocal(instruction.VRegA_12x(), current_block_->GetLastInstruction()); in ProcessDexInstruction()