All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.qbicc.graph.PinnedNode Maven / Gradle / Ivy

There is a newer version: 0.77.0
Show newest version
package org.qbicc.graph;

/**
 * A node which is pinned to a corresponding basic block and cannot exist outside of it.
 */
public interface PinnedNode extends Node {
    default BasicBlock getPinnedBlock() {
        return BlockLabel.getTargetOf(getPinnedBlockLabel());
    }

    BlockLabel getPinnedBlockLabel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy