Home | History | Annotate | Download | only in peephole

Lines Matching refs:method

79     public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
83 // method.getName(clazz).equals("abc");
86 // Catch any unexpected exceptions from the actual visiting method.
90 visitCodeAttribute0(clazz, method, codeAttribute);
96 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
104 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute)
108 System.out.println("UnreachableCodeRemover: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
111 reachableCodeMarker.visitCodeAttribute(clazz, method, codeAttribute);
115 codeAttribute.instructionsAccept(clazz, method, this);
117 codeAttributeEditor.visitCodeAttribute(clazz, method, codeAttribute);
123 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
139 instruction.accept(clazz, method, codeAttribute, offset, extraInstructionVisitor);