comparison src/share/vm/c1/c1_Runtime1.hpp @ 4976:8f01f899bccd

More GRAAL #ifdef; ignore graal directory on windows for client/server configuration.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Mon, 27 Feb 2012 16:26:41 +0100
parents 0a73df7db309
children 38012b8c29b1
comparison
equal deleted inserted replaced
4975:dfa7c9a45d8e 4976:8f01f899bccd
158 static void throw_div0_exception(JavaThread* thread); 158 static void throw_div0_exception(JavaThread* thread);
159 static void throw_null_pointer_exception(JavaThread* thread); 159 static void throw_null_pointer_exception(JavaThread* thread);
160 static void throw_class_cast_exception(JavaThread* thread, oopDesc* object); 160 static void throw_class_cast_exception(JavaThread* thread, oopDesc* object);
161 static void throw_incompatible_class_change_error(JavaThread* thread); 161 static void throw_incompatible_class_change_error(JavaThread* thread);
162 static void throw_array_store_exception(JavaThread* thread, oopDesc* object); 162 static void throw_array_store_exception(JavaThread* thread, oopDesc* object);
163 163 static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);
164 static void monitorexit (JavaThread* thread, BasicObjectLock* lock);
165 #ifdef GRAAL
164 static void graal_monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock); 166 static void graal_monitorenter(JavaThread* thread, oopDesc* obj, BasicLock* lock);
165 static void graal_monitorexit (JavaThread* thread, oopDesc* obj, BasicLock* lock); 167 static void graal_monitorexit (JavaThread* thread, oopDesc* obj, BasicLock* lock);
166 168 #endif
167 static void monitorenter(JavaThread* thread, oopDesc* obj, BasicObjectLock* lock);
168 static void monitorexit (JavaThread* thread, BasicObjectLock* lock);
169 169
170 static void deoptimize(JavaThread* thread); 170 static void deoptimize(JavaThread* thread);
171 171
172 static int access_field_patching(JavaThread* thread); 172 static int access_field_patching(JavaThread* thread);
173 static int move_klass_patching(JavaThread* thread); 173 static int move_klass_patching(JavaThread* thread);