Home
last modified time | relevance | path

Searched refs:ByteOps (Results 1 – 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/code/
DValueAwareMachine.java45 case ByteOps.NOP: in run()
46 case ByteOps.IASTORE: in run()
47 case ByteOps.POP: in run()
48 case ByteOps.POP2: in run()
49 case ByteOps.IFEQ: in run()
50 case ByteOps.IFNE: in run()
51 case ByteOps.IFLT: in run()
52 case ByteOps.IFGE: in run()
53 case ByteOps.IFGT: in run()
54 case ByteOps.IFLE: in run()
[all …]
DBytecodeArray.java224 int info = ByteOps.opInfo(opcode); in parseInstruction()
225 int fmt = info & ByteOps.FMT_MASK; in parseInstruction()
228 case ByteOps.NOP: { in parseInstruction()
232 case ByteOps.ACONST_NULL: { in parseInstruction()
233 visitor.visitConstant(ByteOps.LDC, offset, 1, in parseInstruction()
237 case ByteOps.ICONST_M1: { in parseInstruction()
238 visitor.visitConstant(ByteOps.LDC, offset, 1, in parseInstruction()
242 case ByteOps.ICONST_0: { in parseInstruction()
243 visitor.visitConstant(ByteOps.LDC, offset, 1, in parseInstruction()
247 case ByteOps.ICONST_1: { in parseInstruction()
[all …]
DRopperMachine.java309 RegisterSpec localTarget = getLocalTarget(opcode == ByteOps.ISTORE); in run()
316 case ByteOps.POP: in run()
317 case ByteOps.POP2: { in run()
376 if (opcode == ByteOps.MULTIANEWARRAY) { in run()
474 opcode = ByteOps.CHECKCAST; in run()
476 } else if (opcode == ByteOps.JSR) { in run()
480 } else if (opcode == ByteOps.RET) { in run()
629 if (opcode == ByteOps.ATHROW) { in run()
700 case ByteOps.IASTORE: { in getSources()
719 case ByteOps.PUTFIELD: { in getSources()
[all …]
DSimulator.java265 case ByteOps.NOP: { in visitNoArgs()
269 case ByteOps.INEG: { in visitNoArgs()
273 case ByteOps.I2L: in visitNoArgs()
274 case ByteOps.I2F: in visitNoArgs()
275 case ByteOps.I2D: in visitNoArgs()
276 case ByteOps.I2B: in visitNoArgs()
277 case ByteOps.I2C: in visitNoArgs()
278 case ByteOps.I2S: { in visitNoArgs()
282 case ByteOps.L2I: in visitNoArgs()
283 case ByteOps.L2F: in visitNoArgs()
[all …]
DBasicBlocker.java134 case ByteOps.IRETURN: in visitNoArgs()
135 case ByteOps.RETURN: { in visitNoArgs()
140 case ByteOps.ATHROW: { in visitNoArgs()
145 case ByteOps.IALOAD: in visitNoArgs()
146 case ByteOps.LALOAD: in visitNoArgs()
147 case ByteOps.FALOAD: in visitNoArgs()
148 case ByteOps.DALOAD: in visitNoArgs()
149 case ByteOps.AALOAD: in visitNoArgs()
150 case ByteOps.BALOAD: in visitNoArgs()
151 case ByteOps.CALOAD: in visitNoArgs()
[all …]
DByteOps.java25 public class ByteOps { class
620 private ByteOps() { in ByteOps() method in ByteOps
/dalvik/dx/src/com/android/dx/cf/direct/
DCodeObserver.java19 import com.android.dx.cf.code.ByteOps;
84 if (opcode == ByteOps.IINC) { in visitLocal()
135 if (opcode == ByteOps.MULTIANEWARRAY) { in visitConstant()
216 String name = ByteOps.opName(opcode); in header()
218 if (opcode == ByteOps.WIDE) { in header()
220 name += " " + ByteOps.opName(opcode); in header()
241 if ((length == 1) || (opcode == ByteOps.BIPUSH)) { in visitLiteralInt()
243 } else if (opcode == ByteOps.SIPUSH) { in visitLiteralInt()