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.cc212 …case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b())… in DumpString()
Ddex_instruction.h348 uint8_t VRegB_22b() const;
/art/runtime/interpreter/
Dinterpreter_goto_table_impl.cc2204 shadow_frame.GetVReg(inst->VRegB_22b()) + in ExecuteGotoImpl()
2212 shadow_frame.GetVReg(inst->VRegB_22b())); in ExecuteGotoImpl()
2218 shadow_frame.GetVReg(inst->VRegB_22b()) * in ExecuteGotoImpl()
2225 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteGotoImpl()
2232 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteGotoImpl()
2239 shadow_frame.GetVReg(inst->VRegB_22b()) & in ExecuteGotoImpl()
2246 shadow_frame.GetVReg(inst->VRegB_22b()) | in ExecuteGotoImpl()
2253 shadow_frame.GetVReg(inst->VRegB_22b()) ^ in ExecuteGotoImpl()
2260 shadow_frame.GetVReg(inst->VRegB_22b()) << in ExecuteGotoImpl()
2267 shadow_frame.GetVReg(inst->VRegB_22b()) >> in ExecuteGotoImpl()
[all …]
Dinterpreter_switch_impl.cc2096 shadow_frame.GetVReg(inst->VRegB_22b()) + in ExecuteSwitchImpl()
2104 shadow_frame.GetVReg(inst->VRegB_22b())); in ExecuteSwitchImpl()
2110 shadow_frame.GetVReg(inst->VRegB_22b()) * in ExecuteSwitchImpl()
2117 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteSwitchImpl()
2124 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in ExecuteSwitchImpl()
2131 shadow_frame.GetVReg(inst->VRegB_22b()) & in ExecuteSwitchImpl()
2138 shadow_frame.GetVReg(inst->VRegB_22b()) | in ExecuteSwitchImpl()
2145 shadow_frame.GetVReg(inst->VRegB_22b()) ^ in ExecuteSwitchImpl()
2152 shadow_frame.GetVReg(inst->VRegB_22b()) << in ExecuteSwitchImpl()
2159 shadow_frame.GetVReg(inst->VRegB_22b()) >> in ExecuteSwitchImpl()
[all …]
/art/runtime/verifier/
Dregister_line.cc400 const uint32_t vregB = is_lit16 ? inst->VRegB_22s() : inst->VRegB_22b(); in CheckLiteralOp()