Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.h350 uint4_t VRegB_22s() const { in VRegB_22s() function
351 return VRegB_22s(Fetch16(0)); in VRegB_22s()
372 uint4_t VRegB_22s(uint16_t inst_data) const;
Ddex_instruction-inl.h251 case k22s: return VRegB_22s(); in VRegB()
312 inline uint4_t Instruction::VRegB_22s(uint16_t inst_data) const { in VRegB_22s() function
Ddex_instruction.cc236 …case k22s: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22s(), VRegB_22s(), VRegC_22s())… in DumpString()
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc2260 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2268 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)))); in ExecuteGotoImpl()
2274 SafeMul(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2281 shadow_frame, inst->VRegA_22s(inst_data), shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2289 shadow_frame, inst->VRegA_22s(inst_data), shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2297 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) & in ExecuteGotoImpl()
2304 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) | in ExecuteGotoImpl()
2311 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) ^ in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc2091 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2099 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)))); in ExecuteSwitchImpl()
2105 SafeMul(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2112 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2120 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2128 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) & in ExecuteSwitchImpl()
2135 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) | in ExecuteSwitchImpl()
2142 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) ^ in ExecuteSwitchImpl()
/art/runtime/verifier/
Dregister_line.cc317 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); in CheckLiteralOp()