Home
last modified time | relevance | path

Searched refs:VRegC (Results 1 – 5 of 5) sorted by relevance

/art/compiler/optimizing/
Dbuilder.cc460 HInstruction* second = LoadLocal(instruction.VRegC(), type); in Binop_23x()
470 HInstruction* second = LoadLocal(instruction.VRegC(), type); in Binop_23x()
479 HInstruction* second = LoadLocal(instruction.VRegC(), Primitive::kPrimInt); in Binop_23x_shift()
489 HInstruction* second = LoadLocal(instruction.VRegC(), type); in Binop_23x_cmp()
1480 uint32_t register_index = instruction.VRegC(); in AnalyzeDexInstruction()
1659 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(), in AnalyzeDexInstruction()
1665 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(), in AnalyzeDexInstruction()
1681 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(), in AnalyzeDexInstruction()
1687 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(), in AnalyzeDexInstruction()
1983 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(), in AnalyzeDexInstruction()
[all …]
/art/runtime/
Ddex_instruction-inl.h384 inline int32_t Instruction::VRegC() const { in VRegC() function
Ddex_instruction.h377 int32_t VRegC() const;
/art/runtime/verifier/
Dmethod_verifier.cc847 result = result && CheckRegisterIndex(inst->VRegC()); in VerifyInstruction()
850 result = result && CheckFieldIndex(inst->VRegC()); in VerifyInstruction()
853 result = result && CheckNewArray(inst->VRegC()); in VerifyInstruction()
856 result = result && CheckTypeIndex(inst->VRegC()); in VerifyInstruction()
859 result = result && CheckWideRegisterIndex(inst->VRegC()); in VerifyInstruction()
898 result = result && CheckVarArgRangeRegs(inst->VRegA(), inst->VRegC()); in VerifyInstruction()
/art/compiler/dex/
Dmir_graph.cc175 decoded_instruction->vC = inst->HasVRegC() ? inst->VRegC() : 0; in ParseInsn()