Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.h294 uint8_t VRegA_22x() const { in VRegA_22x() function
295 return VRegA_22x(Fetch16(0)); in VRegA_22x()
336 uint8_t VRegA_22x(uint16_t inst_data) const;
Ddex_instruction-inl.h73 case k22x: return VRegA_22x(); in VRegA()
159 inline uint8_t Instruction::VRegA_22x(uint16_t inst_data) const { in VRegA_22x() function
Ddex_instruction.cc172 case k22x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_22x(), VRegB_22x()); break; in DumpString()
/art/runtime/verifier/
Dmethod_verifier.cc2045 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
2054 work_line_->CopyRegister2(this, inst->VRegA_22x(), inst->VRegB_22x()); in CodeFlowVerifyInstruction()
2063 work_line_->CopyRegister1(this, inst->VRegA_22x(), inst->VRegB_22x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
2661 if (move_inst->VRegA_22x() == instance_of_inst->VRegB_22c()) { in CodeFlowVerifyInstruction()
3373 const uint32_t vreg_target_object = inst->VRegA_22x(); // box-lambda vA, vB in CodeFlowVerifyInstruction()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc214 shadow_frame.SetVReg(inst->VRegA_22x(inst_data), in ExecuteGotoImpl()
232 shadow_frame.SetVRegLong(inst->VRegA_22x(inst_data), in ExecuteGotoImpl()
250 shadow_frame.SetVRegReference(inst->VRegA_22x(inst_data), in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc140 shadow_frame.SetVReg(inst->VRegA_22x(inst_data), in ExecuteSwitchImpl()
158 shadow_frame.SetVRegLong(inst->VRegA_22x(inst_data), in ExecuteSwitchImpl()
176 shadow_frame.SetVRegReference(inst->VRegA_22x(inst_data), in ExecuteSwitchImpl()
Dinterpreter_common.h915 uint32_t vreg_target_object = inst->VRegA_22x(inst_data); in DoBoxLambda()