Example usage for org.objectweb.asm.commons JSRInlinerAdapter subclass-usage

List of usage examples for org.objectweb.asm.commons JSRInlinerAdapter subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm.commons JSRInlinerAdapter subclass-usage.

Usage

From source file org.jacoco.core.internal.flow.MethodSanitizer.java

/**
 * This method visitor fixes two potential issues with Java byte code:
 * 
 * <ul>
 * <li>Remove JSR/RET instructions by inlining subroutines which are deprecated
 * since Java 6. The RET statement complicates control flow analysis as the jump

From source file org.jboss.byteman.agent.adapter.BMJSRInlinerAdapter.java

/**
 * a subclass of JSRInlinerAdapter which pushes local variable info through to the next
 * adapter inline during code generation if it wants it
 */
public class BMJSRInlinerAdapter extends JSRInlinerAdapter {
    public BMJSRInlinerAdapter(MethodVisitor mv, int access, String name, String desc, String signature,

From source file soot.asm.MethodBuilder.java

/**
 * Soot method builder.
 * 
 * @author Aaloan Miftah
 */
class MethodBuilder extends JSRInlinerAdapter {