Searched refs:regList (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Ddex_instruction-inl.h451 uint16_t regList = Fetch16(2); local
467 arg[3] = (regList >> 12) & 0x0f;
470 arg[2] = (regList >> 8) & 0x0f;
473 arg[1] = (regList >> 4) & 0x0f;
476 arg[0] = regList & 0x0f;
/art/runtime/interpreter/
H A Dinterpreter_common.cc609 uint16_t regList = inst->Fetch16(2); local
619 regList >>= 4;
623 for (; arg_index < count; ++arg_index, regList >>= 4) {
624 AssignRegister(new_shadow_frame, shadow_frame, first_dest_reg + arg_index, regList & 0x0f);

Completed in 85 milliseconds