diff src/share/vm/graal/graalRuntime.hpp @ 9355:4e260c2ced0e

removed new_multi_array assembler stub (GRAAL-81)
author Doug Simon <doug.simon@oracle.com>
date Sat, 27 Apr 2013 01:24:59 +0200
parents 3a94641c9e69
children 640d86a6bf4a
line wrap: on
line diff
--- a/src/share/vm/graal/graalRuntime.hpp	Sat Apr 27 00:49:48 2013 +0200
+++ b/src/share/vm/graal/graalRuntime.hpp	Sat Apr 27 01:24:59 2013 +0200
@@ -82,7 +82,6 @@
 // by Graal.
 #define GRAAL_STUBS(stub, last_entry) \
   stub(register_finalizer)      \
-  stub(new_multi_array)         \
   stub(handle_exception_nofpu) /* optimized version that does not preserve fpu registers */ \
   stub(unwind_exception_call)   \
   stub(OSR_migration_end)       \
@@ -131,8 +130,6 @@
                                        Register arg1 = noreg, Register arg2 = noreg, Register arg3 = noreg);
 
   // runtime entry points
-  static void new_multi_array(JavaThread* thread, Klass* klass, int rank, jint* dims);
-
   static void unimplemented_entry(JavaThread* thread, StubID id);
 
   static address exception_handler_for_pc(JavaThread* thread);
@@ -162,6 +159,7 @@
  public:
   static void new_instance(JavaThread* thread, Klass* klass);
   static void new_array(JavaThread* thread, Klass* klass, jint length);
+  static void new_multi_array(JavaThread* thread, Klass* klass, int rank, jint* dims);
   // initialization
   static void initialize(BufferBlob* blob);