< prev index next >

src/java.base/share/classes/jdk/experimental/bytecode/TypedCodeBuilder.java

Print this page

        

*** 825,836 **** return; case MONITORENTER: case MONITOREXIT: state.pop(); break; - case VNEW: - throw new UnsupportedOperationException("VNEW not implemented"); case NEW: case VDEFAULT: state.push(typeHelper.type((S) optValue)); break; case NEWARRAY: --- 825,834 ----
*** 859,869 **** processInvoke(op, (T) optValue); break; case GETSTATIC: state.push((T) optValue); break; - case VGETFIELD: case GETFIELD: state.pop(); state.push((T) optValue); break; case PUTSTATIC: { --- 857,866 ----
< prev index next >