< prev index next >

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

Print this page

        

@@ -825,12 +825,10 @@
                 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:

@@ -859,11 +857,10 @@
                 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: {
< prev index next >