List of usage examples for org.objectweb.asm.tree.analysis BasicValue subclass-usage
From source file com.github.fge.grappa.transform.base.InstructionGraphNode.java
/** * A node in the instruction dependency graph. */ public final class InstructionGraphNode extends BasicValue { private static final Range<Integer> ILOAD_INSN_RANGE = Range.closedOpen(ILOAD, IALOAD); private static final Range<Integer> ISTORE_INSN_RANGE = Range.closedOpen(ISTORE, IASTORE);
From source file com.lodgon.parboiled.transform.InstructionGraphNode.java
/** * A node in the instruction dependency graph. */ class InstructionGraphNode extends BasicValue { private AbstractInsnNode instruction;
From source file org.apache.drill.exec.compile.bytecode.ReplacingBasicValue.java
public class ReplacingBasicValue extends BasicValue { ValueHolderIden iden; int index; Type type; boolean isFunctionReturn = false;
From source file org.apache.flink.api.java.sca.TaggedValue.java
/** * Extension of ASM's BasicValue that allows to assign "tags" * to values and add additional information depending on the tag to the Value. */ @Internal public class TaggedValue extends BasicValue {
From source file org.parboiled.transform.InstructionGraphNode.java
/** * A node in the instruction dependency graph. */ class InstructionGraphNode extends BasicValue { private AbstractInsnNode instruction;