Searched refs:VariableInstruction (Results 1 - 25 of 30) sorted by relevance

12

/external/proguard/src/proguard/optimize/peephole/
H A DInstructionSequenceConstants.java398 new VariableInstruction(InstructionConstants.OP_ILOAD, X),
406 new VariableInstruction(InstructionConstants.OP_LLOAD, X),
414 new VariableInstruction(InstructionConstants.OP_FLOAD, X),
422 new VariableInstruction(InstructionConstants.OP_DLOAD, X),
430 new VariableInstruction(InstructionConstants.OP_ALOAD, X),
438 new VariableInstruction(InstructionConstants.OP_ILOAD, X),
439 new VariableInstruction(InstructionConstants.OP_ISTORE, X),
446 new VariableInstruction(InstructionConstants.OP_LLOAD, X),
447 new VariableInstruction(InstructionConstants.OP_LSTORE, X),
454 new VariableInstruction(InstructionConstant
[all...]
H A DMethodInliner.java318 new VariableInstruction(opcode, variableOffset + parameterOffset + parameterIndex));
326 new VariableInstruction(InstructionConstants.OP_ASTORE, variableOffset));
403 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
H A DReachableCodeMarker.java136 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
H A DInstructionSequenceReplacer.java271 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
274 new VariableInstruction(variableInstruction.opcode,
H A DBranchTargetFinder.java527 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
/external/proguard/src/proguard/classfile/instruction/
H A DVariableInstruction.java33 public class VariableInstruction extends Instruction class in inherits:Instruction
41 * Creates an uninitialized VariableInstruction.
43 public VariableInstruction() {} method in class:VariableInstruction
46 public VariableInstruction(boolean wide) method in class:VariableInstruction
52 public VariableInstruction(byte opcode) method in class:VariableInstruction
58 public VariableInstruction(byte opcode, method in class:VariableInstruction
65 public VariableInstruction(byte opcode, method in class:VariableInstruction
82 public VariableInstruction copy(VariableInstruction variableInstruction)
H A DInstructionFactory.java251 instruction = new VariableInstruction(wide);
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
H A DMultiInstructionVisitor.java92 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
/external/proguard/src/proguard/classfile/editor/
H A DVariableSizeUpdater.java87 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
H A DVariableRemapper.java187 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
196 new VariableInstruction(variableInstruction.opcode,
H A DInstructionWriter.java125 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
136 new VariableInstruction(variableInstruction.opcode,
H A DCodeAttributeComposer.java940 composer.appendInstruction(1, new VariableInstruction(InstructionConstants.OP_ISTORE, 0));
944 composer.appendInstruction(0, new VariableInstruction(InstructionConstants.OP_IINC, 0, 1));
945 composer.appendInstruction(1, new VariableInstruction(InstructionConstants.OP_ILOAD, 0));
/external/proguard/src/proguard/optimize/info/
H A DVariableUsageMarker.java85 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
H A DParameterUsageMarker.java188 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
H A DSideEffectInstructionChecker.java158 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
/external/proguard/src/proguard/classfile/util/
H A DDynamicClassReferenceInitializer.java151 new VariableInstruction(InstructionConstants.OP_ALOAD_0),
159 new VariableInstruction(InstructionConstants.OP_ALOAD_0),
161 new VariableInstruction(InstructionConstants.OP_ALOAD_1),
170 new VariableInstruction(InstructionConstants.OP_ALOAD_0),
H A DInstructionSequenceMatcher.java244 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
252 ((VariableInstruction)patternInstruction).variableIndex) &&
254 ((VariableInstruction)patternInstruction).constant);
/external/proguard/src/proguard/optimize/
H A DTailRecursionSimplifier.java342 new VariableInstruction(opcode, parameterOffset + parameterIndex));
350 new VariableInstruction(InstructionConstants.OP_ASTORE, 0));
/external/proguard/src/proguard/optimize/evaluation/
H A DSimpleEnumUseSimplifier.java193 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
211 new VariableInstruction(InstructionConstants.OP_ILOAD,
236 new VariableInstruction(InstructionConstants.OP_ISTORE,
812 new VariableInstruction(InstructionConstants.OP_ASTORE, variableIndex),
813 new VariableInstruction(InstructionConstants.OP_ISTORE, variableIndex));
H A DLivenessAnalyzer.java348 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
H A DEvaluationSimplifier.java242 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
773 new VariableInstruction(replacementOpcode, variableIndex);
H A DSimpleEnumUseChecker.java207 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
/external/proguard/src/proguard/classfile/attribute/visitor/
H A DStackSizeComputer.java183 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
/external/proguard/src/proguard/preverify/
H A DCodeSubroutineInliner.java249 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)

Completed in 467 milliseconds

12