Home | History | Annotate | Download | only in peephole

Lines Matching refs:clazz

81     public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
84 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
100 markCode(clazz, method, codeAttribute, 0);
107 codeAttribute.exceptionsAccept(clazz, method, this);
115 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
131 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
136 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
145 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
148 markBranchTarget(clazz,
162 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
165 markBranchTarget(clazz,
171 markBranchTargets(clazz,
183 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
189 markCode(clazz, method, codeAttribute, exceptionInfo.u2handlerPC);
202 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets)
206 markCode(clazz, method, codeAttribute, offset + jumpOffsets[index]);
214 private void markBranchTarget(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset)
218 markCode(clazz, method, codeAttribute, offset);
227 private void markCode(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset)
248 instruction.accept(clazz, method, codeAttribute, offset, this);