Searched defs:instr (Results 1 - 3 of 3) sorted by last modified time

/dalvik/dexdump/
H A DDexDump.cpp873 u2 instr = get2LE((const u1*) &insns[insnIdx]); local
874 if (instr == kPackedSwitchSignature) {
877 } else if (instr == kSparseSwitchSignature) {
880 } else if (instr == kArrayDataSignature) {
1082 u2 instr; local
1092 instr = get2LE((const u1*)insns);
1093 if (instr == kPackedSwitchSignature) {
1095 } else if (instr == kSparseSwitchSignature) {
1097 } else if (instr == kArrayDataSignature) {
1104 Opcode opcode = dexOpcodeFromCodeUnit(instr);
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.cpp3736 int instr = meth->insns[insnIdx]; local
3737 if (instr == kPackedSwitchSignature ||
3738 instr == kSparseSwitchSignature ||
3739 instr == kArrayDataSignature ||
3740 (instr == OP_NOP && (insnIdx + 1 < insnsSize) &&
4642 LOG_VFY("VFY: invalid reg type %d on aput instr (need %d)",
4915 LOG_VFY("VFY: invalid reg type %d on iput instr (need %d)",
5181 LOG_VFY("VFY: invalid reg type %d on sput instr (need %d)",
/dalvik/vm/compiler/
H A DFrontend.cpp25 u2 instr = *codePtr; local
26 Opcode opcode = (Opcode)(instr & 0xff);
32 return (opcode != OP_NOP || instr == 0);
46 u2 instr = *codePtr; local
47 Opcode opcode = dexOpcodeFromCodeUnit(instr);

Completed in 1838 milliseconds