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.java192 Rop newRop = Rops.ropFor(newOpcode, insn.getResult(), newSources, cst); in replacePlainInsn() local
195 newRopInsn = new PlainInsn(newRop, originalRopInsn.getPosition(), in replacePlainInsn()
198 newRopInsn = new PlainCstInsn(newRop, originalRopInsn.getPosition(), in replacePlainInsn()
DEscapeAnalysis.java792 Rop newRop; in insertPlainInsnBefore() local
794 newRop = Rops.opMoveResultPseudo(newResult.getType()); in insertPlainInsnBefore()
796 newRop = Rops.ropFor(newOpcode, newResult, newSources, cst); in insertPlainInsnBefore()
801 newRopInsn = new PlainInsn(newRop, in insertPlainInsnBefore()
804 newRopInsn = new PlainCstInsn(newRop, in insertPlainInsnBefore()
830 Rop newRop = Rops.ropFor(newOpcode, newResult, newSources, cst); in insertThrowingInsnBefore() local
833 newRopInsn = new ThrowingInsn(newRop, in insertThrowingInsnBefore()
836 newRopInsn = new ThrowingCstInsn(newRop, in insertThrowingInsnBefore()