Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.h291 uint8_t VRegA_31t() const { in VRegA_31t() function
292 return VRegA_31t(Fetch16(0)); in VRegA_31t()
324 uint8_t VRegA_31t(uint16_t inst_data) const;
Ddex_instruction-inl.h78 case k31t: return VRegA_31t(); in VRegA()
184 inline uint8_t Instruction::VRegA_31t(uint16_t inst_data) const { in VRegA_31t() function
Ddex_instruction.cc309 case k31t: os << StringPrintf("%s v%d, %+d", opcode, VRegA_31t(), VRegB_31t()); break; in DumpString()
/art/runtime/interpreter/
Dinterpreter_common.h295 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoPackedSwitch()
323 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); in DoSparseSwitch()
Dinterpreter_goto_table_impl.cc574 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_31t(inst_data)); in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc482 Object* obj = shadow_frame.GetVRegReference(inst->VRegA_31t(inst_data)); in ExecuteSwitchImpl()
/art/runtime/verifier/
Dmethod_verifier.cc2074 work_line_->VerifyRegisterType(this, inst->VRegA_31t(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2079 const RegType& array_type = work_line_->GetRegisterType(this, inst->VRegA_31t()); in CodeFlowVerifyInstruction()
/art/compiler/optimizing/
Dbuilder.cc1106 HInstruction* array = LoadLocal(instruction.VRegA_31t(), Primitive::kPrimNot); in BuildFillArrayData()