Uses of Class
org.jacoco.core.internal.analysis.Instruction
-
Packages that use Instruction Package Description org.jacoco.core.internal.analysis org.jacoco.core.internal.flow -
-
Uses of Instruction in org.jacoco.core.internal.analysis
Fields in org.jacoco.core.internal.analysis declared as Instruction Modifier and Type Field Description private Instruction
InstructionsBuilder. currentInsn
The last instruction which has been added.private Instruction
Instruction. predecessor
private Instruction
InstructionsBuilder.Jump. source
Fields in org.jacoco.core.internal.analysis with type parameters of type Instruction Modifier and Type Field Description private java.util.Map<org.objectweb.asm.tree.AbstractInsnNode,Instruction>
InstructionsBuilder. instructions
All instructions of a method mapped from the ASM node to the correspondingInstruction
instance.private java.util.Map<org.objectweb.asm.tree.AbstractInsnNode,Instruction>
MethodCoverageCalculator. instructions
Methods in org.jacoco.core.internal.analysis that return Instruction Modifier and Type Method Description Instruction
Instruction. merge(Instruction other)
Merges information about covered branches of this instruction with another instruction.Instruction
Instruction. replaceBranches(java.util.Collection<Instruction> newBranches)
Creates a copy of this instruction where all outgoing branches are replaced with the given instructions.Methods in org.jacoco.core.internal.analysis that return types with arguments of type Instruction Modifier and Type Method Description (package private) java.util.Map<org.objectweb.asm.tree.AbstractInsnNode,Instruction>
InstructionsBuilder. getInstructions()
Returns the status for all instructions of this method.Methods in org.jacoco.core.internal.analysis with parameters of type Instruction Modifier and Type Method Description void
Instruction. addBranch(Instruction target, int branch)
Adds a branch to this instruction which execution status is indirectly derived from the execution status of the target instruction.Instruction
Instruction. merge(Instruction other)
Merges information about covered branches of this instruction with another instruction.private static void
Instruction. propagateExecutedBranch(Instruction insn, int branch)
Method parameters in org.jacoco.core.internal.analysis with type arguments of type Instruction Modifier and Type Method Description Instruction
Instruction. replaceBranches(java.util.Collection<Instruction> newBranches)
Creates a copy of this instruction where all outgoing branches are replaced with the given instructions.Constructors in org.jacoco.core.internal.analysis with parameters of type Instruction Constructor Description Jump(Instruction source, org.objectweb.asm.Label target, int branch)
Constructor parameters in org.jacoco.core.internal.analysis with type arguments of type Instruction Constructor Description MethodCoverageCalculator(java.util.Map<org.objectweb.asm.tree.AbstractInsnNode,Instruction> instructions)
-
Uses of Instruction in org.jacoco.core.internal.flow
Fields in org.jacoco.core.internal.flow declared as Instruction Modifier and Type Field Description private Instruction
LabelInfo. instruction
Methods in org.jacoco.core.internal.flow that return Instruction Modifier and Type Method Description static Instruction
LabelInfo. getInstruction(org.objectweb.asm.Label label)
Returns the corresponding instruction for the given label if one has been defined.Methods in org.jacoco.core.internal.flow with parameters of type Instruction Modifier and Type Method Description static void
LabelInfo. setInstruction(org.objectweb.asm.Label label, Instruction instruction)
Sets the instruction corresponding to this label.
-