diff src/share/vm/runtime/orderAccess.cpp @ 693:2c1dbb844832

Merge
author acorn
date Thu, 02 Apr 2009 18:17:03 -0400
parents d0994e5bebce
children bd02caa94611
line wrap: on
line diff
--- a/src/share/vm/runtime/orderAccess.cpp	Thu Apr 02 14:26:42 2009 -0400
+++ b/src/share/vm/runtime/orderAccess.cpp	Thu Apr 02 18:17:03 2009 -0400
@@ -26,3 +26,15 @@
 # include "incls/_orderAccess.cpp.incl"
 
 volatile intptr_t OrderAccess::dummy = 0;
+
+void OrderAccess::StubRoutines_fence() {
+  // Use a stub if it exists.  It may not exist during bootstrap so do
+  // nothing in that case but assert if no fence code exists after threads have been created
+  void (*func)() = CAST_TO_FN_PTR(void (*)(), StubRoutines::fence_entry());
+
+  if (func != NULL) {
+    (*func)();
+    return;
+  }
+  assert(Threads::number_of_threads() == 0, "for bootstrap only");
+}