diff src/share/vm/graal/graalRuntime.hpp @ 9420:393d62a868da

replaced thread_is_interrupted assembler stub with a compiled stub (GRAAL-81)
author Doug Simon <doug.simon@oracle.com>
date Tue, 30 Apr 2013 00:33:27 +0200
parents 640d86a6bf4a
children 3e7d22d31f7e a14fef4fca7d
line wrap: on
line diff
--- a/src/share/vm/graal/graalRuntime.hpp	Mon Apr 29 22:49:49 2013 +0200
+++ b/src/share/vm/graal/graalRuntime.hpp	Tue Apr 30 00:33:27 2013 +0200
@@ -97,7 +97,6 @@
   stub(stub_printf)             \
   stub(log_primitive)           \
   stub(identity_hash_code)      \
-  stub(thread_is_interrupted)   \
   stub(wb_pre_call)             \
   stub(wb_post_call)             \
  last_entry(number_of_ids)
@@ -145,7 +144,6 @@
   static void wb_post_call(JavaThread* thread, oopDesc* obj, void* card);
 
   static jint identity_hash_code(JavaThread* thread, oopDesc* objd);
-  static jboolean thread_is_interrupted(JavaThread* thread, oopDesc* obj, jboolean clear_interrupte);
 
   // Note: Must be kept in sync with constants in com.oracle.graal.replacements.Log
   enum {
@@ -159,6 +157,7 @@
   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);
+  static jboolean thread_is_interrupted(JavaThread* thread, oopDesc* obj, jboolean clear_interrupte);
   // initialization
   static void initialize(BufferBlob* blob);