org.jacoco.core.internal.instr
Class InstrSupport

java.lang.Object
  extended by org.jacoco.core.internal.instr.InstrSupport

public final class InstrSupport
extends Object

Constants and utilities for byte code instrumentation.


Field Summary
static int DATAFIELD_ACC
          Access modifiers of the field that stores coverage information of a class.
static String DATAFIELD_DESC
          Data type of the field that stores coverage information for a class ( boolean[]).
static int DATAFIELD_INTF_ACC
          Access modifiers of the field that stores coverage information of a Java 8 interface.
static String DATAFIELD_NAME
          Name of the field that stores coverage information of a class.
static int INITMETHOD_ACC
          Access modifiers of the initialization method.
static String INITMETHOD_DESC
          Descriptor of the initialization method.
static String INITMETHOD_NAME
          Name of the initialization method.
 
Method Summary
static void assertNotInstrumented(String member, String owner)
          Ensures that the given member does not correspond to a internal member created by the instrumentation process.
static void push(org.objectweb.asm.MethodVisitor mv, int value)
          Generates the instruction to push the given int value on the stack.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DATAFIELD_NAME

public static final String DATAFIELD_NAME
Name of the field that stores coverage information of a class.

See Also:
Constant Field Values

DATAFIELD_ACC

public static final int DATAFIELD_ACC
Access modifiers of the field that stores coverage information of a class.

See Also:
Constant Field Values

DATAFIELD_INTF_ACC

public static final int DATAFIELD_INTF_ACC
Access modifiers of the field that stores coverage information of a Java 8 interface.

See Also:
Constant Field Values

DATAFIELD_DESC

public static final String DATAFIELD_DESC
Data type of the field that stores coverage information for a class ( boolean[]).

See Also:
Constant Field Values

INITMETHOD_NAME

public static final String INITMETHOD_NAME
Name of the initialization method.

See Also:
Constant Field Values

INITMETHOD_DESC

public static final String INITMETHOD_DESC
Descriptor of the initialization method.

See Also:
Constant Field Values

INITMETHOD_ACC

public static final int INITMETHOD_ACC
Access modifiers of the initialization method.

See Also:
Constant Field Values
Method Detail

assertNotInstrumented

public static void assertNotInstrumented(String member,
                                         String owner)
                                  throws IllegalStateException
Ensures that the given member does not correspond to a internal member created by the instrumentation process. This would mean that the class is already instrumented.

Parameters:
member - name of the member to check
owner - name of the class owning the member
Throws:
IllegalStateException - thrown if the member has the same name than the instrumentation member

push

public static void push(org.objectweb.asm.MethodVisitor mv,
                        int value)
Generates the instruction to push the given int value on the stack. Implementation taken from GeneratorAdapter.push(int).

Parameters:
mv - visitor to emit the instruction
value - the value to be pushed on the stack.


Copyright © 2009-2015 Mountainminds GmbH & Co. KG. All Rights Reserved.