Home
last modified time | relevance | path

Searched refs:VRegA_23x (Results 1 – 9 of 9) sorted by relevance

/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h989 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in CMPL_FLOAT()
1004 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in CMPG_FLOAT()
1019 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in CMPL_DOUBLE()
1035 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in CMPG_DOUBLE()
1053 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), result); in CMP_LONG()
1216 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in AGET_BOOLEAN()
1232 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in AGET_BYTE()
1248 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in AGET_CHAR()
1264 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in AGET_SHORT()
1281 shadow_frame.SetVReg(inst->VRegA_23x(inst_data), array->GetWithoutChecks(index)); in AGET()
[all …]
/art/runtime/verifier/
Dregister_line.cc242 inst->VRegA_23x(), in CheckBinaryOp()
247 SetRegisterType<LockOp::kClear>(verifier, inst->VRegA_23x(), dst_type); in CheckBinaryOp()
257 SetRegisterTypeWide(verifier, inst->VRegA_23x(), dst_type1, dst_type2); in CheckBinaryOpWide()
266 SetRegisterTypeWide(verifier, inst->VRegA_23x(), long_lo_type, long_hi_type); in CheckBinaryOpWideShift()
Dmethod_verifier.cc2536 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2548 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
2559 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Integer()); in CodeFlowVerifyInstruction()
4475 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), reg_types_.Null()); in VerifyAGet()
4480 this, inst->VRegA_23x(), DetermineCat1Constant(1, need_precise_constants_)); in VerifyAGet()
4484 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), insn_type); in VerifyAGet()
4487 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), in VerifyAGet()
4503 inst->VRegA_23x(), in VerifyAGet()
4525 work_line_->SetRegisterType<LockOp::kClear>(this, inst->VRegA_23x(), component_type); in VerifyAGet()
4527 work_line_->SetRegisterTypeWide(this, inst->VRegA_23x(), component_type, in VerifyAGet()
[all …]
/art/libdexfile/dex/
Ddex_instruction.h338 uint8_t VRegA_23x() const { in VRegA_23x() function
339 return VRegA_23x(Fetch16(0)); in VRegA_23x()
384 uint8_t VRegA_23x(uint16_t inst_data) const;
Ddex_instruction-inl.h76 case k23x: return VRegA_23x(); in VRegA()
168 inline uint8_t Instruction::VRegA_23x(uint16_t inst_data) const { in VRegA_23x() function
Ddex_instruction.cc264 …case k23x: os << StringPrintf("%s v%d, v%d, v%d", opcode, VRegA_23x(), VRegB_23x(), VRegC_23x());… in DumpString()
/art/tools/veridex/
Dflow_analysis.cc600 UpdateRegister(instruction.VRegA_23x(), anticipated_type); \ in ProcessDexInstruction()
616 UpdateRegister(instruction.VRegA_23x(), VeriClass::object_); in ProcessDexInstruction()
/art/runtime/interpreter/mterp/
Dmterp.cc492 ObjPtr<mirror::Object> val = shadow_frame->GetVRegReference(inst->VRegA_23x(inst_data)); in MterpAputObject()
/art/compiler/optimizing/
Dinstruction_builder.cc1779 uint8_t source_or_dest_reg = instruction.VRegA_23x(); in BuildArrayAccess()