Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction.h348 uint8_t VRegA_31t() const { in VRegA_31t() function
349 return VRegA_31t(Fetch16(0)); in VRegA_31t()
387 uint8_t VRegA_31t(uint16_t inst_data) const;
Ddex_instruction-inl.h80 case k31t: return VRegA_31t(); in VRegA()
188 inline uint8_t Instruction::VRegA_31t(uint16_t inst_data) const { in VRegA_31t() function
Ddex_instruction.cc342 case k31t: os << StringPrintf("%s v%d, %+d", opcode, VRegA_31t(), VRegB_31t()); break; in DumpString()
/art/runtime/interpreter/
Dinterpreter_common.h440 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoPackedSwitch()
468 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoSparseSwitch()
Dinterpreter_switch_impl.cc727 ObjPtr<mirror::Object> obj = shadow_frame.GetVRegReference(inst->VRegA_31t(inst_data)); in ExecuteSwitchImplCpp()
/art/runtime/verifier/
Dmethod_verifier.cc2521 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2526 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dinstruction_builder.cc1748 HInstruction* array = LoadNullCheckedLocal(instruction.VRegA_31t(), dex_pc); in BuildFillArrayData()