Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dregister_line.cc200 if (VerifyRegisterType(verifier, inst->VRegB_12x(), src_type)) { in CheckUnaryOp()
208 if (VerifyRegisterTypeWide(verifier, inst->VRegB_12x(), src_type1, src_type2)) { in CheckUnaryOpWide()
216 if (VerifyRegisterType(verifier, inst->VRegB_12x(), src_type)) { in CheckUnaryOpToWide()
224 if (VerifyRegisterTypeWide(verifier, inst->VRegB_12x(), src_type1, src_type2)) { in CheckUnaryOpFromWide()
274 const uint32_t vregB = inst->VRegB_12x(); in CheckBinaryOp2addr()
296 const uint32_t vregB = inst->VRegB_12x(); in CheckBinaryOp2addrWide()
307 const uint32_t vregB = inst->VRegB_12x(); in CheckBinaryOp2addrWideShift()
Dmethod_verifier.cc2096 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategory1nr); in CodeFlowVerifyInstruction()
2105 work_line_->CopyRegister2(this, inst->VRegA_12x(), inst->VRegB_12x()); in CodeFlowVerifyInstruction()
2114 work_line_->CopyRegister1(this, inst->VRegA_12x(), inst->VRegB_12x(), kTypeCategoryRef); in CodeFlowVerifyInstruction()
2487 const RegType& res_type = work_line_->GetRegisterType(this, inst->VRegB_12x()); in CodeFlowVerifyInstruction()
2759 maybe_update_fn(move_inst.VRegB_12x(), move_inst.VRegA_12x()); in CodeFlowVerifyInstruction()
/art/libdexfile/dex/
Ddex_instruction.h410 uint4_t VRegB_12x() const { in VRegB_12x() function
411 return VRegB_12x(Fetch16(0)); in VRegB_12x()
443 uint4_t VRegB_12x(uint16_t inst_data) const;
Ddex_instruction-inl.h302 case k12x: return VRegB_12x(inst_data); in VRegB()
337 inline uint4_t Instruction::VRegB_12x(uint16_t inst_data) const { in VRegB_12x() function
Ddex_instruction.cc180 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break; in DumpString()
/art/compiler/optimizing/
Dinstruction_builder.cc3465 HInstruction* object = LoadNullCheckedLocal(instruction.VRegB_12x(), dex_pc); in ProcessDexInstruction()