org.qbicc.graph.PinnedNode Maven / Gradle / Ivy
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