# HG changeset patch # User Matthias Grimmer # Date 1364575307 -3600 # Node ID 4bd7971c0630474242cc5d369ac0d7847f68b908 # Parent 847cd24fc4cf889bd7ed1391cab9d62d7a70e18e Add code for interpreter to executeHelper diff -r 847cd24fc4cf -r 4bd7971c0630 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotInstalledCode.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotInstalledCode.java Fri Mar 29 10:04:13 2013 +0100 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/meta/HotSpotInstalledCode.java Fri Mar 29 17:41:47 2013 +0100 @@ -110,7 +110,6 @@ } public static Object executeHelper(long nmethod, long metaspaceMethod, Object arg1, Object arg2, Object arg3) { -// throw new IllegalStateException(); return HotSpotGraalRuntime.getInstance().getCompilerToVM().executeCompiledMethod(metaspaceMethod, nmethod, arg1, arg2, arg3); } }