Searched refs:codeAttr (Results 1 – 8 of 8) sorted by relevance
87 CodeAttribute codeAttr = minfo.getCodeAttribute(); in doit() local88 if (codeAttr == null) in doit()91 CodeIterator iterator = codeAttr.iterator(); in doit()93 LoopContext context = new LoopContext(codeAttr.getMaxLocals()); in doit()99 ExceptionTable et = codeAttr.getExceptionTable(); in doit()112 if (codeAttr.getMaxLocals() < context.maxLocals) in doit()113 codeAttr.setMaxLocals(context.maxLocals); in doit()115 codeAttr.setMaxStack(codeAttr.getMaxStack() + context.maxStack); in doit()
305 CodeAttribute codeAttr = oldIterator.get(); in runEditor() local306 int orgLocals = codeAttr.getMaxLocals(); in runEditor()307 int orgStack = codeAttr.getMaxStack(); in runEditor()309 codeAttr.setMaxStack(stack()); in runEditor()310 codeAttr.setMaxLocals(newLocals); in runEditor()320 codeAttr.setMaxLocals(orgLocals); in runEditor()321 codeAttr.setMaxStack(orgStack); in runEditor()
511 CodeAttribute codeAttr = minfo.getCodeAttribute(); in doit() local512 if (codeAttr == null || transformers == null) in doit()517 CodeIterator iterator = codeAttr.iterator(); in doit()545 codeAttr.setMaxLocals(codeAttr.getMaxLocals() + locals); in doit()548 codeAttr.setMaxStack(codeAttr.getMaxStack() + stack); in doit()
196 CodeAttribute codeAttr = methodInfo.getCodeAttribute(); in callsSuper() local197 if (codeAttr != null) { in callsSuper()198 CodeIterator it = codeAttr.iterator(); in callsSuper()
1676 CodeAttribute codeAttr = m.getCodeAttribute(); in modifyClassConstructor() local1677 if (codeAttr == null) in modifyClassConstructor()1681 CodeIterator it = codeAttr.iterator(); in modifyClassConstructor()1684 int maxstack = codeAttr.getMaxStack(); in modifyClassConstructor()1686 codeAttr.setMaxStack(stacksize); in modifyClassConstructor()1688 int maxlocals = codeAttr.getMaxLocals(); in modifyClassConstructor()1690 codeAttr.setMaxLocals(localsize); in modifyClassConstructor()1715 CodeAttribute codeAttr = minfo.getCodeAttribute(); in modifyConstructors() local1716 if (codeAttr != null) in modifyConstructors()1719 codeAttr.getMaxLocals()); in modifyConstructors()[all …]
24 private CodeAttribute codeAttr; field in CodeAnalyzer27 codeAttr = ca; in CodeAnalyzer()39 CodeIterator ci = codeAttr.iterator(); in computeMaxStack()42 constPool = codeAttr.getConstPool(); in computeMaxStack()43 initStack(stack, codeAttr); in computeMaxStack()
51 protected CodeAttribute codeAttr; field in CodeIterator58 codeAttr = ca; in CodeIterator()115 return codeAttr; in get()291 ConstPool cp = codeAttr.getConstPool(); in skipSuperConstructor0()292 String thisClassName = codeAttr.getDeclaringClass(); in skipSuperConstructor0()632 get().getExceptionTable(), codeAttr, gap); in insertGapAt()639 get().getExceptionTable(), codeAttr); in insertGapAt()651 codeAttr.setCode(c); in insertGapAt()678 codeAttr.getExceptionTable().add(0, et, offset); in insert()718 codeAttr.setCode(newcode); in appendGap()[all …]
175 val codeAttr = method.methodInfo.codeAttribute in <lambda>() constant176 val code = codeAttr.code in <lambda>()177 codeAttr.iterator().forEachInstruction { index, opcode -> in <lambda>()