Searched defs:instr (Results 1 - 3 of 3) sorted by relevance

/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);
/dalvik/dexdump/
H A DDexDump.cpp860 u2 instr = get2LE((const u1*) &insns[insnIdx]); local
861 if (instr == kPackedSwitchSignature) {
864 } else if (instr == kSparseSwitchSignature) {
867 } else if (instr == kArrayDataSignature) {
1068 u2 instr; local
1078 instr = get2LE((const u1*)insns);
1079 if (instr == kPackedSwitchSignature) {
1081 } else if (instr == kSparseSwitchSignature) {
1083 } else if (instr == kArrayDataSignature) {
1090 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 &&
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)",

Completed in 104 milliseconds