changeset 13187:b199147f187e

C2V: remove unused method
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 28 Nov 2013 13:19:58 +0100
parents 32f606699ce5
children 6b2d8d20ecbd
files graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVMImpl.java
diffstat 2 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java	Wed Nov 27 20:16:13 2013 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVM.java	Thu Nov 28 13:19:58 2013 +0100
@@ -244,13 +244,6 @@
 
     String disassembleCodeBlob(long codeBlob);
 
-    /**
-     * Gets a copy of the machine code for a CodeBlob.
-     * 
-     * @return the machine code for {@code codeBlob} if it is valid, null otherwise
-     */
-    byte[] getCode(long codeBlob);
-
     StackTraceElement getStackTraceElement(long metaspaceMethod, int bci);
 
     Object executeCompiledMethod(Object arg1, Object arg2, Object arg3, HotSpotInstalledCode hotspotInstalledCode) throws InvalidInstalledCodeException;
--- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVMImpl.java	Wed Nov 27 20:16:13 2013 +0100
+++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/bridge/CompilerToVMImpl.java	Thu Nov 28 13:19:58 2013 +0100
@@ -133,9 +133,6 @@
     public synchronized native String disassembleCodeBlob(long codeBlob);
 
     @Override
-    public native byte[] getCode(long codeBlob);
-
-    @Override
     public native StackTraceElement getStackTraceElement(long metaspaceMethod, int bci);
 
     @Override