Searched defs:decInsn (Results 1 - 7 of 7) sorted by relevance

/dalvik/vm/analysis/
H A DDexVerify.c343 DecodedInstruction decInsn; local
347 decodeInstruction(meth, insnIdx, &decInsn);
348 idx = decInsn.vB; // 2nd item
373 DecodedInstruction decInsn; local
377 decodeInstruction(meth, insnIdx, &decInsn);
378 idx = decInsn.vC; // 3rd item
414 DecodedInstruction decInsn; local
417 decodeInstruction(meth, insnIdx, &decInsn);
419 idx = decInsn.vB;
421 idx = decInsn
438 DecodedInstruction decInsn; local
463 DecodedInstruction decInsn; local
482 DecodedInstruction decInsn; local
[all...]
H A DCodeVerify.c3481 DecodedInstruction decInsn; local
3486 memset(&decInsn, 0x81, sizeof(decInsn));
3488 dexDecodeInstruction(gDvm.instrFormat, insns, &decInsn);
3490 int nextFlags = dexGetInstrFlags(gDvm.instrFlags, decInsn.opCode);
3509 switch (decInsn.opCode) {
3516 if (decInsn.vA != 0) {
3525 copyRegister1(workRegs, insnRegCount, decInsn.vA, decInsn.vB,
3531 copyRegister2(workRegs, insnRegCount, decInsn
[all...]
/dalvik/vm/interp/
H A DJit.h39 DecodedInstruction decInsn; member in struct:InstructionTrace
H A DJit.c230 DecodedInstruction *decInsn; local
236 decInsn = &(shadowSpace->trace[i].decInsn);
238 LOGD("0x%x: (0x%04x) %s", addr, offset, getOpcodeName(decInsn->opCode));
265 DecodedInstruction decInsn; local
266 dexDecodeInstruction(gDvm.instrFormat, pc, &decInsn);
270 // shadowSpace->traceLength, getOpcodeName(decInsn.opCode));
380 shadowSpace->trace[shadowSpace->traceLength].decInsn = decInsn;
632 DecodedInstruction decInsn; local
[all...]
/dalvik/vm/compiler/
H A DFrontend.c25 static inline int parseInsn(const u2 *codePtr, DecodedInstruction *decInsn, argument
42 dexDecodeInstruction(gDvm.instrFormat, codePtr, decInsn);
44 char *decodedString = dvmCompilerGetDalvikDisassembly(decInsn);
/dalvik/dexdump/
H A DDexDump.c952 DecodedInstruction decInsn; local
976 dexDecodeInstruction(gInstrFormat, insns, &decInsn);
977 dumpInstruction(pDexFile, pCode, insnIdx, insnWidth, &decInsn);
/dalvik/vm/compiler/codegen/arm/
H A DCodegenDriver.c3506 DecodedInstruction *decInsn = &mir->dalvikInsn; local
3507 OpCode op = decInsn->opCode;

Completed in 770 milliseconds