Interface IntShiftBinOpGen<T extends JitIntBinOp>

Type Parameters:
T - the class of p-code op node in the use-def graph
All Superinterfaces:
BinOpGen<T>, OpGen<T>
All Known Implementing Classes:
IntLeftOpGen, IntRightOpGen, IntSRightOpGen

public interface IntShiftBinOpGen<T extends JitIntBinOp> extends BinOpGen<T>
An extension for integer shift operators

This is just going to invoke one of the JitCompiledPassage.intLeft(int, int), JitCompiledPassage.intRight(int, int), JitCompiledPassage.intSRight(int, int), or one of their overloaded methods, depending on the operand types.