Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc675 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl()
691 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteGotoImpl()
707 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl()
723 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteGotoImpl()
743 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteGotoImpl()
972 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
990 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
1008 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
1026 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
1044 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc565 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl()
581 float val2 = shadow_frame.GetVRegFloat(inst->VRegC_23x()); in ExecuteSwitchImpl()
597 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl()
614 double val2 = shadow_frame.GetVRegDouble(inst->VRegC_23x()); in ExecuteSwitchImpl()
635 int64_t val2 = shadow_frame.GetVRegLong(inst->VRegC_23x()); in ExecuteSwitchImpl()
818 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
836 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
854 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
872 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
890 int32_t index = shadow_frame.GetVReg(inst->VRegC_23x()); in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc237 const uint32_t vregC = inst->VRegC_23x(); in CheckBinaryOp()
257 VerifyRegisterTypeWide(verifier, inst->VRegC_23x(), src_type2_1, src_type2_2)) { in CheckBinaryOpWide()
266 VerifyRegisterType(verifier, inst->VRegC_23x(), int_type)) { in CheckBinaryOpWideShift()
Dmethod_verifier.cc2029 if (!work_line_->VerifyRegisterType(this, inst->VRegC_23x(), reg_types_.Float())) { in CodeFlowVerifyInstruction()
2040 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.DoubleLo(), in CodeFlowVerifyInstruction()
2051 if (!work_line_->VerifyRegisterTypeWide(this, inst->VRegC_23x(), reg_types_.LongLo(), in CodeFlowVerifyInstruction()
3721 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x()); in VerifyAGet()
3823 const RegType& index_type = work_line_->GetRegisterType(this, inst->VRegC_23x()); in VerifyAPut()
/art/runtime/
Ddex_instruction-inl.h390 case k23x: return VRegC_23x(); in VRegC()
419 inline uint8_t Instruction::VRegC_23x() const { in VRegC_23x() function
Ddex_instruction.cc233 …case k23x: os << StringPrintf("%s v%d, v%d, v%d", opcode, VRegA_23x(), VRegB_23x(), VRegC_23x());… in DumpString()
Ddex_instruction.h383 uint8_t VRegC_23x() const;
/art/compiler/optimizing/
Dbuilder.cc1028 uint8_t index_reg = instruction.VRegC_23x(); in BuildArrayAccess()