Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction.h415 uint4_t VRegB_22s() const { in VRegB_22s() function
416 return VRegB_22s(Fetch16(0)); in VRegB_22s()
439 uint4_t VRegB_22s(uint16_t inst_data) const;
Ddex_instruction-inl.h267 case k22s: return VRegB_22s(); in VRegB()
330 inline uint4_t Instruction::VRegB_22s(uint16_t inst_data) const { in VRegB_22s() function
Ddex_instruction.cc267 …case k22s: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22s(), VRegB_22s(), VRegC_22s())… in DumpString()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h2394 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ADD_INT_LIT16()
2402 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)))); in RSUB_INT()
2408 SafeMul(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in MUL_INT_LIT16()
2415 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in DIV_INT_LIT16()
2422 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in REM_INT_LIT16()
2429 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) & in AND_INT_LIT16()
2436 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) | in OR_INT_LIT16()
2443 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) ^ in XOR_INT_LIT16()
/art/runtime/verifier/
Dregister_line.cc318 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); in CheckLiteralOp()