Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction.h366 uint4_t VRegB_22s() const { in VRegB_22s() function
367 return VRegB_22s(Fetch16(0)); in VRegB_22s()
389 uint4_t VRegB_22s(uint16_t inst_data) const;
Ddex_instruction-inl.h252 case k22s: return VRegB_22s(); in VRegB()
314 inline uint4_t Instruction::VRegB_22s(uint16_t inst_data) const { in VRegB_22s() function
Ddex_instruction.cc261 …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.cc2327 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2335 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)))); in ExecuteGotoImpl()
2341 SafeMul(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2348 shadow_frame, inst->VRegA_22s(inst_data), shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2356 shadow_frame, inst->VRegA_22s(inst_data), shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteGotoImpl()
2364 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) & in ExecuteGotoImpl()
2371 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) | in ExecuteGotoImpl()
2378 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) ^ in ExecuteGotoImpl()
Dinterpreter_switch_impl.cc2206 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2214 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)))); in ExecuteSwitchImpl()
2220 SafeMul(shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2227 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2235 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)), in ExecuteSwitchImpl()
2243 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) & in ExecuteSwitchImpl()
2250 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) | in ExecuteSwitchImpl()
2257 shadow_frame.GetVReg(inst->VRegB_22s(inst_data)) ^ in ExecuteSwitchImpl()
/art/runtime/verifier/
Dregister_line.cc313 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); in CheckLiteralOp()