diff src/share/vm/graal/graalRuntime.hpp @ 9591:0381c7937e7a

replaced create_null_pointer_exception assembler stub with compiled stub (GRAAL-81)
author Doug Simon <doug.simon@oracle.com>
date Mon, 06 May 2013 23:42:17 +0200
parents 5f9c41cd3b1e
children efb8c1918ea5
line wrap: on
line diff
--- a/src/share/vm/graal/graalRuntime.hpp	Mon May 06 22:37:00 2013 +0200
+++ b/src/share/vm/graal/graalRuntime.hpp	Mon May 06 23:42:17 2013 +0200
@@ -79,7 +79,6 @@
 // by Graal.
 #define GRAAL_STUBS(stub, last_entry) \
   stub(vm_error)                \
-  stub(create_null_pointer_exception) \
   stub(create_out_of_bounds_exception) \
   stub(log_object)              \
   stub(log_printf)              \
@@ -116,7 +115,6 @@
   // runtime entry points
   static void unimplemented_entry(JavaThread* thread, StubID id);
 
-  static void create_null_exception(JavaThread* thread);
   static void create_out_of_bounds_exception(JavaThread* thread, jint index);
   static void vm_error(JavaThread* thread, oop where, oop format, jlong value);
   static void log_printf(JavaThread* thread, oop format, jlong v1, jlong v2, jlong v3);
@@ -143,6 +141,7 @@
   static address exception_handler_for_pc(JavaThread* thread);
   static void monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock);
   static void monitorexit (JavaThread* thread, oopDesc* obj, BasicLock* lock);
+  static void create_null_exception(JavaThread* thread);
 
   // initialization
   static void initialize(BufferBlob* blob);