Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction.h353 uint8_t VRegA_31t() const { in VRegA_31t() function
354 return VRegA_31t(Fetch16(0)); in VRegA_31t()
392 uint8_t VRegA_31t(uint16_t inst_data) const;
Ddex_instruction-inl.h117 case k31t: return VRegA_31t(inst_data); in VRegA()
225 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.h900 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoPackedSwitch()
928 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoSparseSwitch()
/art/runtime/verifier/
Dmethod_verifier.cc2598 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2603 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dinstruction_builder.cc2157 HInstruction* array = LoadNullCheckedLocal(instruction.VRegA_31t(), dex_pc); in BuildFillArrayData()