Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/ssa/
DSCCP.java273 int vA = ((CstInteger) cA).getValue(); in simulateBranch() local
276 constantSuccessor = (vA == 0); in simulateBranch()
279 constantSuccessor = (vA != 0); in simulateBranch()
282 constantSuccessor = (vA < 0); in simulateBranch()
285 constantSuccessor = (vA >= 0); in simulateBranch()
288 constantSuccessor = (vA <= 0); in simulateBranch()
291 constantSuccessor = (vA > 0); in simulateBranch()
304 int vA = ((CstInteger) cA).getValue(); in simulateBranch() local
308 constantSuccessor = (vA == vB); in simulateBranch()
311 constantSuccessor = (vA != vB); in simulateBranch()
[all …]
/dalvik/libdex/
DInstrUtils.cpp502 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
505 pDec->vA = INST_A(inst); in dexDecodeInstruction()
509 pDec->vA = INST_A(inst); in dexDecodeInstruction()
513 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
516 pDec->vA = (s1) INST_AA(inst); // sign-extend 8-bit value in dexDecodeInstruction()
519 pDec->vA = (s2) FETCH(1); // sign-extend 16-bit value in dexDecodeInstruction()
524 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
529 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
533 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
542 pDec->vA = INST_AA(inst); in dexDecodeInstruction()
[all …]
DInstrUtils.h130 u4 vA; member
/dalvik/dexdump/
DDexDump.cpp899 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB); in dumpInstruction()
903 pDecInsn->vA, (s4)pDecInsn->vB, (u1)pDecInsn->vB); in dumpInstruction()
906 printf(" v%d", pDecInsn->vA); in dumpInstruction()
911 s4 targ = (s4) pDecInsn->vA; in dumpInstruction()
919 printf(" v%d, v%d", pDecInsn->vA, pDecInsn->vB); in dumpInstruction()
924 printf(" v%d, %04x // %c%04x", pDecInsn->vA, in dumpInstruction()
932 pDecInsn->vA, (s4)pDecInsn->vB, (u2)pDecInsn->vB); in dumpInstruction()
939 pDecInsn->vA, value, (u2)pDecInsn->vB); in dumpInstruction()
943 pDecInsn->vA, value, (u2)pDecInsn->vB); in dumpInstruction()
948 printf(" v%d, %s", pDecInsn->vA, indexBuf); in dumpInstruction()
[all …]