Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_instruction-inl.h416 case k22b: return VRegC_22b(); in VRegC()
431 inline int8_t Instruction::VRegC_22b() const { in VRegC_22b() function
Ddex_instruction.cc265 …case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b())… in DumpString()
Ddex_instruction.h446 int8_t VRegC_22b() const;
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h2450 SafeAdd(shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b())); in ADD_INT_LIT8()
2456 SafeSub(inst->VRegC_22b(), shadow_frame.GetVReg(inst->VRegB_22b()))); in RSUB_INT_LIT8()
2462 SafeMul(shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b())); in MUL_INT_LIT8()
2468 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in DIV_INT_LIT8()
2474 shadow_frame.GetVReg(inst->VRegB_22b()), inst->VRegC_22b()); in REM_INT_LIT8()
2481 inst->VRegC_22b()); in AND_INT_LIT8()
2488 inst->VRegC_22b()); in OR_INT_LIT8()
2495 inst->VRegC_22b()); in XOR_INT_LIT8()
2502 (inst->VRegC_22b() & 0x1f)); in SHL_INT_LIT8()
2509 (inst->VRegC_22b() & 0x1f)); in SHR_INT_LIT8()
[all …]
/art/runtime/verifier/
Dregister_line.cc323 const uint32_t val = is_lit16 ? inst->VRegC_22s() : inst->VRegC_22b(); in CheckLiteralOp()
/art/compiler/optimizing/
Dinstruction_builder.cc702 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc); in Binop_22b()