diff src/share/vm/ci/ciUtilities.hpp @ 7126:ce248dc0a656

removed all Graal modifications to ci and c1
author Doug Simon <doug.simon@oracle.com>
date Mon, 03 Dec 2012 17:54:05 +0100
parents 2cb439954abf
children 6b0fd0964b87
line wrap: on
line diff
--- a/src/share/vm/ci/ciUtilities.hpp	Mon Dec 03 15:32:17 2012 +0100
+++ b/src/share/vm/ci/ciUtilities.hpp	Mon Dec 03 17:54:05 2012 +0100
@@ -36,7 +36,7 @@
 
 // Bring the compilation thread into the VM state.
 #define VM_ENTRY_MARK                       \
-  JavaThread* thread=JavaThread::current(); \
+  CompilerThread* thread=CompilerThread::current(); \
   ThreadInVMfromNative __tiv(thread);       \
   ResetNoHandleMark rnhm;                   \
   HandleMarkCleaner __hm(thread);           \
@@ -47,7 +47,7 @@
 
 // Bring the compilation thread into the VM state.  No handle mark.
 #define VM_QUICK_ENTRY_MARK                 \
-  JavaThread* thread=JavaThread::current(); \
+  CompilerThread* thread=CompilerThread::current(); \
   ThreadInVMfromNative __tiv(thread);       \
 /*                                          \
  * [TODO] The NoHandleMark line does nothing but declare a function prototype \
@@ -60,7 +60,7 @@
 
 
 #define EXCEPTION_CONTEXT \
-  JavaThread* thread=JavaThread::current(); \
+  CompilerThread* thread=CompilerThread::current(); \
   Thread* THREAD = thread;