Home
last modified time | relevance | path

Searched refs:VRegA_22b (Results 1 – 5 of 5) sorted by relevance

/art/libdexfile/dex/
Ddex_instruction.h323 uint8_t VRegA_22b() const { in VRegA_22b() function
324 return VRegA_22b(Fetch16(0)); in VRegA_22b()
379 uint8_t VRegA_22b(uint16_t inst_data) const;
Ddex_instruction-inl.h71 case k22b: return VRegA_22b(); in VRegA()
143 inline uint8_t Instruction::VRegA_22b(uint16_t inst_data) const { in VRegA_22b() function
Ddex_instruction.cc265 …case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b())… in DumpString()
/art/runtime/interpreter/
Dinterpreter_switch_impl-inl.h2449 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in ADD_INT_LIT8()
2455 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in RSUB_INT_LIT8()
2461 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in MUL_INT_LIT8()
2467 bool success = DoIntDivide(shadow_frame, inst->VRegA_22b(inst_data), in DIV_INT_LIT8()
2473 bool success = DoIntRemainder(shadow_frame, inst->VRegA_22b(inst_data), in REM_INT_LIT8()
2479 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in AND_INT_LIT8()
2486 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in OR_INT_LIT8()
2493 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in XOR_INT_LIT8()
2500 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in SHL_INT_LIT8()
2507 shadow_frame.SetVReg(inst->VRegA_22b(inst_data), in SHR_INT_LIT8()
[all …]
/art/runtime/verifier/
Dregister_line.cc317 const uint32_t vregA = is_lit16 ? inst->VRegA_22s() : inst->VRegA_22b(); in CheckLiteralOp()