Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/rop/code/
DPlainInsn.java115 Rop newRop = Rops.ropFor(getOpcode().getOpcode(), getResult(), in withSourceLiteral() local
117 return new PlainCstInsn(newRop, getPosition(), getResult(), in withSourceLiteral()
127 Rop newRop; in withSourceLiteral() local
135 newRop = Rops.ropFor(opcode, getResult(), newSources, cst); in withSourceLiteral()
141 return new PlainCstInsn(newRop, getPosition(), in withSourceLiteral()
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DPlainInsn.java116 Rop newRop; in withLastSourceLiteral() local
118 newRop = Rops.ropFor(getOpcode().getOpcode(), in withLastSourceLiteral()
125 return new PlainCstInsn(newRop, getPosition(), in withLastSourceLiteral()
/dalvik/dx/src/com/android/dx/ssa/
DLiteralOpUpgrader.java189 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst); in replacePlainInsn() local
192 newRopInsn = new PlainInsn(newRop, originalRopInsn.getPosition(), in replacePlainInsn()
195 newRopInsn = new PlainCstInsn(newRop, originalRopInsn.getPosition(), in replacePlainInsn()
DEscapeAnalysis.java788 Rop newRop; in insertPlainInsnBefore() local
790 newRop = Rops.opMoveResultPseudo(newResult.getType()); in insertPlainInsnBefore()
792 newRop = Rops.ropFor(newOpcode, newResult, newSources, cst); in insertPlainInsnBefore()
797 newRopInsn = new PlainInsn(newRop, in insertPlainInsnBefore()
800 newRopInsn = new PlainCstInsn(newRop, in insertPlainInsnBefore()
826 Rop newRop = Rops.ropFor(newOpcode, newResult, newSources, cst); in insertThrowingInsnBefore() local
829 newRopInsn = new ThrowingInsn(newRop, in insertThrowingInsnBefore()
832 newRopInsn = new ThrowingCstInsn(newRop, in insertThrowingInsnBefore()