Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction-inl.h265 case k22b: return VRegB_22b(); in VRegB()
320 inline uint8_t Instruction::VRegB_22b() const { in VRegB_22b() function
Ddex_instruction.cc265 …case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b())… in DumpString()
Ddex_instruction.h411 uint8_t VRegB_22b() const;
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h2450 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b())); in ADD_INT_LIT8()
2456 SafeSub(inst->VRegC_22b(), shadow_frame.GetVReg(inst->VRegB_22b()))); in RSUB_INT_LIT8()
2462 SafeMul(shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b())); in MUL_INT_LIT8()
2468 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in DIV_INT_LIT8()
2474 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in REM_INT_LIT8()
2480 shadow_frame.GetVReg(inst->VRegB_22b()) & in AND_INT_LIT8()
2487 shadow_frame.GetVReg(inst->VRegB_22b()) | in OR_INT_LIT8()
2494 shadow_frame.GetVReg(inst->VRegB_22b()) ^ in XOR_INT_LIT8()
2501 shadow_frame.GetVReg(inst->VRegB_22b()) << in SHL_INT_LIT8()
2508 shadow_frame.GetVReg(inst->VRegB_22b()) >> in SHR_INT_LIT8()
[all …]
/art/runtime/verifier/
Dregister_line.cc318 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); in CheckLiteralOp()