HomeSort by relevance Sort by last modified time
    Searched refs:instruction (Results 176 - 200 of 430) sorted by null

1 2 3 4 5 6 78 91011>>

  /dalvik/vm/mterp/armv5te/
binopWide2addr.S 4 * that specifies an instruction that performs "result = r0-r1 op r2-r3".
5 * This could be an ARM instruction or a function call. (If the result
34 GOTO_OPCODE(ip) @ jump to next instruction
zcmp.S 27 GOTO_OPCODE(ip) @ jump to next instruction
  /dalvik/vm/mterp/armv6t2/
OP_MUL_LONG_2ADDR.S 25 GOTO_OPCODE(ip) @ jump to next instruction
bincmp.S 29 GOTO_OPCODE(ip) @ jump to next instruction
binopWide2addr.S 4 * that specifies an instruction that performs "result = r0-r1 op r2-r3".
5 * This could be an ARM instruction or a function call. (If the result
33 GOTO_OPCODE(ip) @ jump to next instruction
  /dalvik/vm/mterp/mips/
OP_AGET_WIDE.S 26 GOTO_OPCODE(t0) # jump to next instruction
OP_APUT.S 26 GOTO_OPCODE(t0) # jump to next instruction
OP_APUT_WIDE.S 26 GOTO_OPCODE(t0) # jump to next instruction
OP_GOTO_32.S 32 GOTO_OPCODE(t0) # jump to next instruction
OP_IPUT_OBJECT_QUICK.S 21 GOTO_OPCODE(t0) # jump to next instruction
OP_IPUT_WIDE_QUICK.S 16 GOTO_OPCODE(t0) # jump to next instruction
OP_MUL_LONG_2ADDR.S 27 GOTO_OPCODE(t1) # jump to next instruction
OP_PACKED_SWITCH.S 4 * Handle a packed-switch or sparse-switch instruction. In both cases
34 GOTO_OPCODE(t0) # jump to next instruction
OP_SHL_LONG_2ADDR.S 27 GOTO_OPCODE(t0) # jump to next instruction
OP_USHR_LONG_2ADDR.S 26 GOTO_OPCODE(t0) # jump to next instruction
bincmp.S 35 GOTO_OPCODE(t0) # jump to next instruction
binflop.S 42 GOTO_OPCODE(t0) # jump to next instruction
binflop2addr.S 5 * that specifies an instruction that performs "result = a0 op a1".
6 * This could be an MIPS instruction or a function call.
43 GOTO_OPCODE(t0) # jump to next instruction
binflopWide2addr.S 4 * that specifies an instruction that performs "result = a0-a1 op a2-a3".
5 * This could be an MIPS instruction or a function call.
44 GOTO_OPCODE(t0) # jump to next instruction
binopWide.S 4 * specifies an instruction that performs "result = a0-a1 op a2-a3".
5 * This could be a MIPS instruction or a function call. (If the result
36 GOTO_OPCODE(t0) # jump to next instruction
binopWide2addr.S 4 * that specifies an instruction that performs "result = a0-a1 op a2-a3".
5 * This could be a MIPS instruction or a function call. (If the result
32 GOTO_OPCODE(t0) # jump to next instruction
zcmp.S 33 GOTO_OPCODE(t0) # jump to next instruction
  /external/proguard/src/proguard/classfile/instruction/visitor/
MultiInstructionVisitor.java 21 package proguard.classfile.instruction.visitor;
25 import proguard.classfile.instruction.*;
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 28 import proguard.classfile.instruction.*;
29 import proguard.classfile.instruction.visitor.InstructionVisitor;
161 * Appends the given instruction with the given old offset.
162 * @param oldInstructionOffset the old offset of the instruction, to which
165 * @param instruction the instruction to be appended.
168 Instruction instruction)
172 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset));
176 int newCodeLength = codeLength + instruction.length(codeLength)
276 Instruction instruction = InstructionFactory.create(code, instructionOffset); local
    [all...]
  /external/proguard/src/proguard/optimize/
TailRecursionSimplifier.java 29 import proguard.classfile.instruction.*;
30 import proguard.classfile.instruction.visitor.InstructionVisitor;
145 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
147 // Copy the instruction.
148 codeAttributeComposer.appendInstruction(offset, instruction.shrink());
166 // Is the next instruction a return?
170 Instruction nextInstruction =
203 // The original return instruction will be
225 // Copy the instruction
    [all...]

Completed in 168 milliseconds

1 2 3 4 5 6 78 91011>>