Home
last modified time | relevance | path

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

/art/runtime/
Ddex_instruction-inl.h249 case k22b: return VRegB_22b(); in VRegB()
302 inline uint8_t Instruction::VRegB_22b() const { in VRegB_22b() function
Ddex_instruction.cc234 …case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b())… in DumpString()
Ddex_instruction.h346 uint8_t VRegB_22b() const;
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc2318 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22b()), in ExecuteGotoImpl()
2326 shadow_frame.GetVReg(inst->VRegB_22b()))); in ExecuteGotoImpl()
2332 SafeMul(shadow_frame.GetVReg(inst->VRegB_22b()), in ExecuteGotoImpl()
2339 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteGotoImpl()
2346 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteGotoImpl()
2353 shadow_frame.GetVReg(inst->VRegB_22b()) & in ExecuteGotoImpl()
2360 shadow_frame.GetVReg(inst->VRegB_22b()) | in ExecuteGotoImpl()
2367 shadow_frame.GetVReg(inst->VRegB_22b()) ^ in ExecuteGotoImpl()
2374 shadow_frame.GetVReg(inst->VRegB_22b()) << in ExecuteGotoImpl()
2381 shadow_frame.GetVReg(inst->VRegB_22b()) >> in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc2149 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b())); in ExecuteSwitchImpl()
2155 SafeSub(inst->VRegC_22b(), shadow_frame.GetVReg(inst->VRegB_22b()))); in ExecuteSwitchImpl()
2161 SafeMul(shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b())); in ExecuteSwitchImpl()
2167 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteSwitchImpl()
2174 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteSwitchImpl()
2181 shadow_frame.GetVReg(inst->VRegB_22b()) & in ExecuteSwitchImpl()
2188 shadow_frame.GetVReg(inst->VRegB_22b()) | in ExecuteSwitchImpl()
2195 shadow_frame.GetVReg(inst->VRegB_22b()) ^ in ExecuteSwitchImpl()
2202 shadow_frame.GetVReg(inst->VRegB_22b()) << in ExecuteSwitchImpl()
2209 shadow_frame.GetVReg(inst->VRegB_22b()) >> in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc317 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); in CheckLiteralOp()