Home | History | Annotate | Download | only in visitor

Lines Matching refs:clazz

96     public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
99 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
102 // clazz.getName().equals("abc/Def") &&
103 // method.getName(clazz).equals("abc");
110 visitCodeAttribute0(clazz, method, codeAttribute);
115 System.err.println(" Class = ["+clazz.getName()+"]");
116 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]");
121 method.accept(clazz, new ClassPrinter());
129 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute)
133 System.out.println("StackSizeComputer: "+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz));
153 evaluateInstructionBlock(clazz, method, codeAttribute, 0);
156 codeAttribute.exceptionsAccept(clazz, method, this);
162 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
177 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
183 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction)
192 public void visitBranchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction)
197 evaluateInstructionBlock(clazz,
211 evaluateInstructionBlock(clazz,
226 public void visitAnySwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SwitchInstruction switchInstruction)
236 evaluateInstructionBlock(clazz,
243 evaluateInstructionBlock(clazz,
255 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
267 evaluateInstructionBlock(clazz,
282 private void evaluateInstructionBlock(Clazz clazz,
319 int stackPushCount = instruction.stackPushCount(clazz);
320 int stackPopCount = instruction.stackPopCount(clazz);
330 stackSize -= instruction.stackPopCount(clazz);
336 clazz.getName()+"."+
337 method.getName(clazz)+
338 method.getDescriptor(clazz)+"]");
342 stackSize += instruction.stackPushCount(clazz);
355 instruction.accept(clazz, method, codeAttribute, instructionOffset, this);