Home
last modified time | relevance | path

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

/tools/dexter/slicer/
Ddex_bytecode.cc237 u2 regList = bytecode[2]; in DecodeInstruction() local
255 dec.arg[3] = (regList >> 12) & 0x0f; in DecodeInstruction()
258 dec.arg[2] = (regList >> 8) & 0x0f; in DecodeInstruction()
261 dec.arg[1] = (regList >> 4) & 0x0f; in DecodeInstruction()
264 dec.vC = dec.arg[0] = regList & 0x0f; in DecodeInstruction()
284 u2 regList = bytecode[2]; in DecodeInstruction() local
285 dec.vC = regList & 0xf; in DecodeInstruction()
286 dec.arg[0] = (regList >> 4) & 0xf; // vD in DecodeInstruction()
287 dec.arg[1] = (regList >> 8) & 0xf; // vE in DecodeInstruction()
288 dec.arg[2] = (regList >> 12); // vF in DecodeInstruction()