Searched refs:SimpleInstruction (Results 1 - 25 of 27) sorted by relevance

12

/external/proguard/src/proguard/optimize/peephole/
H A DInstructionSequenceConstants.java160 new SimpleInstruction(InstructionConstants.OP_NOP),
168 new SimpleInstruction(InstructionConstants.OP_POP),
176 new SimpleInstruction(InstructionConstants.OP_POP2),
184 new SimpleInstruction(InstructionConstants.OP_POP),
192 new SimpleInstruction(InstructionConstants.OP_POP2),
200 new SimpleInstruction(InstructionConstants.OP_POP),
240 new SimpleInstruction(InstructionConstants.OP_POP),
250 new SimpleInstruction(InstructionConstants.OP_POP),
259 new SimpleInstruction(InstructionConstants.OP_POP2),
268 new SimpleInstruction(InstructionConstant
[all...]
H A DGotoReturnReplacer.java100 new SimpleInstruction(targetInstruction.opcode);
H A DNopRemover.java74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
H A DInstructionSequenceReplacer.java223 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
226 new SimpleInstruction(simpleInstruction.opcode,
H A DReachableCodeMarker.java116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
H A DBranchTargetFinder.java449 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
H A DMethodInliner.java326 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
/external/proguard/src/proguard/classfile/util/
H A DDynamicMemberReferenceInitializer.java121 new SimpleInstruction(InstructionConstants.OP_ICONST_0),
131 new SimpleInstruction(InstructionConstants.OP_ICONST_1),
133 new SimpleInstruction(InstructionConstants.OP_DUP),
134 new SimpleInstruction(InstructionConstants.OP_ICONST_0),
136 new SimpleInstruction(InstructionConstants.OP_AASTORE),
145 new SimpleInstruction(InstructionConstants.OP_ICONST_2),
147 new SimpleInstruction(InstructionConstants.OP_DUP),
148 new SimpleInstruction(InstructionConstants.OP_ICONST_0),
150 new SimpleInstruction(InstructionConstants.OP_AASTORE),
151 new SimpleInstruction(InstructionConstant
[all...]
H A DDynamicClassReferenceInitializer.java144 new SimpleInstruction(InstructionConstants.OP_ICONST_0),
153 new SimpleInstruction(InstructionConstants.OP_ARETURN),
164 new SimpleInstruction(InstructionConstants.OP_ARETURN),
173 new SimpleInstruction(InstructionConstants.OP_ARETURN),
H A DInstructionSequenceMatcher.java185 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
193 ((SimpleInstruction)patternInstruction).constant);
H A DSimplifiedVisitor.java479 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
/external/proguard/src/proguard/classfile/instruction/
H A DSimpleInstruction.java33 public class SimpleInstruction extends Instruction class in inherits:Instruction
39 * Creates an uninitialized SimpleInstruction.
41 public SimpleInstruction() {} method in class:SimpleInstruction
45 * Creates a new SimpleInstruction with the given opcode.
47 public SimpleInstruction(byte opcode) method in class:SimpleInstruction
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant) method in class:SimpleInstruction
68 public SimpleInstruction copy(SimpleInstruction simpleInstruction)
H A DInstructionFactory.java168 instruction = new SimpleInstruction();
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
H A DMultiInstructionVisitor.java84 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
/external/proguard/src/proguard/optimize/evaluation/
H A DEvaluationSimplifier.java159 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
702 new SimpleInstruction(replacementOpcode, value).shrink();
924 new SimpleInstruction(InstructionConstants.OP_POP);
934 new SimpleInstruction(InstructionConstants.OP_POP2);
947 new SimpleInstruction(InstructionConstants.OP_POP2);
957 new SimpleInstruction(InstructionConstants.OP_POP);
H A DEvaluationShrinker.java564 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
810 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
1267 Instruction replacementInstruction = new SimpleInstruction(newOpcode);
1289 new SimpleInstruction(pushOpcode(computationalType));
1348 new SimpleInstruction(InstructionConstants.OP_POP);
1369 new SimpleInstruction(InstructionConstants.OP_POP2);
1393 new SimpleInstruction(InstructionConstants.OP_POP2);
1403 new SimpleInstruction(InstructionConstants.OP_POP);
/external/proguard/src/proguard/optimize/
H A DDuplicateInitializerInvocationFixer.java111 new SimpleInstruction(InstructionConstants.OP_ICONST_0);
/external/proguard/src/proguard/optimize/info/
H A DExceptionInstructionChecker.java65 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
H A DSideEffectInstructionChecker.java74 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
/external/proguard/src/proguard/classfile/editor/
H A DInstructionWriter.java66 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
H A DCodeAttributeComposer.java831 composer.appendInstruction(0, new SimpleInstruction(InstructionConstants.OP_ICONST_0));
838 composer.appendInstruction(2, new SimpleInstruction(InstructionConstants.OP_ICONST_5));
842 composer.appendInstruction(3, new SimpleInstruction(InstructionConstants.OP_RETURN));
H A DCodeAttributeEditor.java726 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DStackSizeComputer.java163 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
/external/proguard/src/proguard/evaluation/
H A DProcessor.java77 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)

Completed in 668 milliseconds

12