| /external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
| PlainInsn.java | 35 * @param opcode {@code non-null;} the opcode 40 public PlainInsn(Rop opcode, SourcePosition position, 42 super(opcode, position, result, sources); 44 switch (opcode.getBranchingness()) { 51 if (result != null && opcode.getBranchingness() != Rop.BRANCH_NONE) { 61 * @param opcode {@code non-null;} the opcode 66 public PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, 68 this(opcode, position, result, RegisterSpecList.make(source)) 130 int opcode = getOpcode().getOpcode(); local [all...] |
| RegOps.java | 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r} 43 * <b>Note:</b> This opcode should only ever be used in the 284 * <b>Note:</b> This opcode should only ever be used in the 291 * <b>Note:</b> This opcode should only ever be used in the 307 * Gets the name of the given opcode. 309 * @param opcode the opcode 312 public static String opName(int opcode) { 313 switch (opcode) { 372 return "unknown-" + Hex.u1(opcode); [all...] |
| Rop.java | 52 /** the opcode; one of the constants in {@link RegOps} */ 53 private final int opcode; field in class:Rop 83 * @param opcode the opcode; one of the constants in {@link RegOps} 94 public Rop(int opcode, Type result, TypeList sources, 118 this.opcode = opcode; 131 * @param opcode the opcode; one of the constants in {@link RegOps} 141 public Rop(int opcode, Type result, TypeList sources [all...] |
| /external/javassist/src/main/javassist/expr/ |
| NewArray.java | 30 int opcode; field in class:NewArray 35 opcode = op; 80 if (opcode == Opcode.NEWARRAY) { 84 else if (opcode == Opcode.ANEWARRAY 85 || opcode == Opcode.MULTIANEWARRAY) { 93 throw new RuntimeException("bad opcode: " + opcode); 242 int opcode; field in class:NewArray.ProceedForArray [all...] |
| /dalvik/vm/mterp/armv5te/ |
| OP_INVOKE_OBJECT_INIT_RANGE.S | 16 bne .L${opcode}_setFinal @ yes, go 17 .L${opcode}_finish: 20 bne .L${opcode}_debugger @ Yes - skip optimization 22 GET_INST_OPCODE(ip) @ ip<- opcode from rINST 26 .L${opcode}_setFinal: 32 b .L${opcode}_finish 41 .L${opcode}_debugger:
|
| OP_INSTANCE_OF.S | 21 beq .L${opcode}_store @ null obj, not an instance, store r0 27 beq .L${opcode}_resolve @ not resolved, do it now 28 .L${opcode}_resolved: @ r0=obj->clazz, r1=resolved class 30 beq .L${opcode}_trivial @ yes, trivial finish 31 b .L${opcode}_fullcheck @ no, do full check 40 .L${opcode}_fullcheck: 42 @ fall through to ${opcode}_store 48 .L${opcode}_store: 51 GET_INST_OPCODE(ip) @ extract opcode from rINST 58 .L${opcode}_trivial [all...] |
| OP_CHECK_CAST.S | 18 beq .L${opcode}_okay @ null obj, cast always succeeds 22 beq .L${opcode}_resolve @ not resolved, do it now 23 .L${opcode}_resolved: 25 bne .L${opcode}_fullcheck @ no, do full check 26 .L${opcode}_okay: 28 GET_INST_OPCODE(ip) @ extract opcode from rINST 38 .L${opcode}_fullcheck: 42 bne .L${opcode}_okay @ no, success 57 .L${opcode}_resolve: 68 b .L${opcode}_resolved @ pick up where we left of [all...] |
| OP_CMP_LONG.S | 35 blt .L${opcode}_less @ signed compare on high part 36 bgt .L${opcode}_greater 38 bhi .L${opcode}_greater @ unsigned compare on low part 39 bne .L${opcode}_less 40 b .L${opcode}_finish @ equal; r1 already holds 0 43 .L${opcode}_less: 49 GET_INST_OPCODE(ip) @ extract opcode from rINST 52 .L${opcode}_greater: 56 .L${opcode}_finish: 59 GET_INST_OPCODE(ip) @ extract opcode from rINS [all...] |
| /dalvik/vm/mterp/x86/ |
| cvtfp_int.S | 37 je .L${opcode}_special_case # fix up result 39 .L${opcode}_finish: 44 .L${opcode}_special_case: 47 jp .L${opcode}_isNaN 52 jmp .L${opcode}_finish 53 .L${opcode}_isNaN: 58 jmp .L${opcode}_finish
|
| /external/proguard/src/proguard/optimize/peephole/ |
| ReachableCodeMarker.java | 118 byte opcode = simpleInstruction.opcode; 119 if (opcode == InstructionConstants.OP_IRETURN || 120 opcode == InstructionConstants.OP_LRETURN || 121 opcode == InstructionConstants.OP_FRETURN || 122 opcode == InstructionConstants.OP_DRETURN || 123 opcode == InstructionConstants.OP_ARETURN || 124 opcode == InstructionConstants.OP_RETURN || 125 opcode == InstructionConstants.OP_ATHROW) 139 if (variableInstruction.opcode == InstructionConstants.OP_RET [all...] |
| /dalvik/dexgen/src/com/android/dexgen/rop/code/ |
| RegOps.java | 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r} 43 * <b>Note:</b> This opcode should only ever be used in the 284 * <b>Note:</b> This opcode should only ever be used in the 291 * <b>Note:</b> This opcode should only ever be used in the 307 * Gets the name of the given opcode. 309 * @param opcode {@code >= 0, <= 255;} the opcode 312 public static String opName(int opcode) { 313 switch (opcode) { 372 return "unknown-" + Hex.u1(opcode); [all...] |
| Rop.java | 52 /** the opcode; one of the constants in {@link RegOps} */ 53 private final int opcode; field in class:Rop 83 * @param opcode the opcode; one of the constants in {@link RegOps} 94 public Rop(int opcode, Type result, TypeList sources, 118 this.opcode = opcode; 131 * @param opcode the opcode; one of the constants in {@link RegOps} 141 public Rop(int opcode, Type result, TypeList sources [all...] |
| /dalvik/dx/src/com/android/dx/rop/code/ |
| RegOps.java | 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r} 43 * <b>Note:</b> This opcode should only ever be used in the 284 * <b>Note:</b> This opcode should only ever be used in the 291 * <b>Note:</b> This opcode should only ever be used in the 307 * Gets the name of the given opcode. 309 * @param opcode the opcode 312 public static String opName(int opcode) { 313 switch (opcode) { 372 return "unknown-" + Hex.u1(opcode); [all...] |
| Rop.java | 52 /** the opcode; one of the constants in {@link RegOps} */ 53 private final int opcode; field in class:Rop 83 * @param opcode the opcode; one of the constants in {@link RegOps} 94 public Rop(int opcode, Type result, TypeList sources, 118 this.opcode = opcode; 131 * @param opcode the opcode; one of the constants in {@link RegOps} 141 public Rop(int opcode, Type result, TypeList sources [all...] |
| /dalvik/vm/mterp/mips/ |
| OP_FLOAT_TO_LONG.S | 14 bgez t0, .L${opcode}_set_vreg 23 blez t0, .L${opcode}_set_vreg 32 bnez t0, .L${opcode}_set_vreg 42 bc1t .L${opcode}_set_vreg 48 bc1t .L${opcode}_set_vreg 54 bc1t .L${opcode}_set_vreg 59 b .L${opcode}_set_vreg
|
| OP_INVOKE_OBJECT_INIT_RANGE.S | 16 beqz a2, .L${opcode}_finish # no, go 18 .L${opcode}_setFinal: 25 .L${opcode}_finish: 28 bnez a1, .L${opcode}_debugger # Yes - skip optimization 30 GET_INST_OPCODE(t0) # t0<- opcode from rINST 41 .L${opcode}_debugger:
|
| /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
| Instruction22cs.java | 33 import org.jf.dexlib.Code.Opcode; 45 public Instruction22cs(Opcode opcode, byte regA, byte regB, int fieldOffset) { 46 super(opcode); 62 private Instruction22cs(Opcode opcode, byte[] buffer, int bufferIndex) { 63 super(opcode); 71 out.writeByte(opcode.value); 93 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) [all...] |
| Instruction3rms.java | 33 import org.jf.dexlib.Code.Opcode; 45 public Instruction3rms(Opcode opcode, short regCount, int startReg, int vtableIndex) { 46 super(opcode); 71 private Instruction3rms(Opcode opcode, byte[] buffer, int bufferIndex) { 72 super(opcode); 80 out.writeByte(opcode.value); 103 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) [all...] |
| Instruction52c.java | 35 import org.jf.dexlib.Code.Opcode; 47 public Instruction52c(Opcode opcode, int regA, int regB, Item referencedItem) { 48 super(opcode, referencedItem); 62 private Instruction52c(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) { 63 super(dexFile, opcode, buffer, bufferIndex); 71 out.writeByte(opcode.value); 90 public Instruction makeInstruction(DexFile dexFile, Opcode opcode, byte[] buffer, int bufferIndex) [all...] |
| /external/tcpdump/ |
| print-tftp.c | 80 register int opcode, i; local 90 opcode = EXTRACT_16BITS(&tp->th_opcode); 91 cp = tok2str(op2str, "tftp-#%d", opcode); 93 /* Bail if bogus opcode */ 97 switch (opcode) { 113 if (opcode != OACK) 116 if (opcode != OACK) 154 printf("(unknown #%d)", opcode);
|
| /external/chromium/sdch/open-vcdiff/src/ |
| codetable_test.cc | 44 int opcode) { 45 g_exercise_code_table_->inst1[opcode] = inst1; 46 g_exercise_code_table_->mode1[opcode] = mode1; 47 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 48 g_exercise_code_table_->inst2[opcode] = inst2; 49 g_exercise_code_table_->mode2[opcode] = mode2; 50 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2; 55 int opcode = 0; local 74 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++); 75 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++) [all...] |
| /external/open-vcdiff/src/ |
| codetable_test.cc | 44 int opcode) { 45 g_exercise_code_table_->inst1[opcode] = inst1; 46 g_exercise_code_table_->mode1[opcode] = mode1; 47 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 48 g_exercise_code_table_->inst2[opcode] = inst2; 49 g_exercise_code_table_->mode2[opcode] = mode2; 50 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2; 55 int opcode = 0; local 74 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 0, opcode++); 75 AddExerciseOpcode(inst1, mode1, 0, inst2, mode2, 255, opcode++) [all...] |
| /external/proguard/src/proguard/classfile/attribute/visitor/ |
| StackSizeComputer.java | 165 byte opcode = simpleInstruction.opcode; 169 opcode == InstructionConstants.OP_IRETURN || 170 opcode == InstructionConstants.OP_LRETURN || 171 opcode == InstructionConstants.OP_FRETURN || 172 opcode == InstructionConstants.OP_DRETURN || 173 opcode == InstructionConstants.OP_ARETURN || 174 opcode == InstructionConstants.OP_RETURN || 175 opcode == InstructionConstants.OP_ATHROW; 186 byte opcode = variableInstruction.opcode [all...] |
| /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
| InstructionIterator.java | 48 Opcode opcode = Opcode.getOpcodeByValue(opcodeValue); local 52 if (opcode == null) { 53 System.err.println(String.format("unknown opcode encountered - %x. Treating as nop.", 57 if (opcode == Opcode.NOP) { 62 instruction = new Instruction10x(Opcode.NOP, insns, insnsPosition); 82 instruction = opcode.format.Factory.makeInstruction(dexFile, opcode, insns, insnsPosition) [all...] |
| /dalvik/dx/src/com/android/dx/cf/direct/ |
| CodeObserver.java | 68 public void visitInvalid(int opcode, int offset, int length) { 73 public void visitNoArgs(int opcode, int offset, int length, Type type) { 78 public void visitLocal(int opcode, int offset, int length, 84 if (opcode == ByteOps.IINC) { 100 public void visitConstant(int opcode, int offset, int length, 104 visitNoArgs(opcode, offset, length, null); 109 visitLiteralInt(opcode, offset, length, value); 114 visitLiteralLong(opcode, offset, length, 120 visitLiteralFloat(opcode, offset, length, 126 visitLiteralDouble(opcode, offset, length 209 int opcode = bytes.getUnsignedByte(offset); local [all...] |