Lines Matching defs:codeAttribute
458 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
460 println(visitorInfo(codeAttribute) +
461 " Code attribute instructions (code length = "+ codeAttribute.u4codeLength +
462 ", locals = "+ codeAttribute.u2maxLocals +
463 ", stack = "+ codeAttribute.u2maxStack + "):");
467 codeAttribute.instructionsAccept(clazz, method, this);
470 codeAttribute.u2exceptionTableLength + "):");
472 codeAttribute.exceptionsAccept(clazz, method, this);
475 codeAttribute.u2attributesCount + "):");
477 codeAttribute.attributesAccept(clazz, method, this);
483 public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
485 println(visitorInfo(codeAttribute) +
490 stackMapAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
495 public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
497 println(visitorInfo(codeAttribute) +
502 stackMapTableAttribute.stackMapFramesAccept(clazz, method, codeAttribute, this);
507 public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute)
514 lineNumberTableAttribute.lineNumbersAccept(clazz, method, codeAttribute, this);
519 public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
526 localVariableTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
531 public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
538 localVariableTypeTableAttribute.localVariablesAccept(clazz, method, codeAttribute, this);
615 public void visitAnyInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, Instruction instruction)
621 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
631 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
652 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction)
676 public void visitExceptionInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, ExceptionInfo exceptionInfo)
693 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame)
701 public void visitSameOneFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame)
707 sameOneFrame.stackItemAccept(clazz, method, codeAttribute, offset, this);
713 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame)
722 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame)
728 moreZeroFrame.additionalVariablesAccept(clazz, method, codeAttribute, offset, this);
734 public void visitFullFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame)
740 fullFrame.variablesAccept(clazz, method, codeAttribute, offset, this);
744 fullFrame.stackAccept(clazz, method, codeAttribute, offset, this);
752 public void visitIntegerType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType)
758 public void visitFloatType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType)
764 public void visitLongType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType)
770 public void visitDoubleType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType)
776 public void visitTopType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType)
782 public void visitObjectType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType)
788 public void visitNullType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType)
794 public void visitUninitializedType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedType uninitializedType)
800 public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedThisType uninitializedThisType)
808 public void visitLineNumberInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberInfo lineNumberInfo)
817 public void visitLocalVariableInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableInfo localVariableInfo)
829 public void visitLocalVariableTypeInfo(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeInfo localVariableTypeInfo)