< prev index next >

src/hotspot/share/runtime/synchronizer.cpp

Print this page
@@ -281,10 +281,24 @@
  bool volatile ObjectSynchronizer::_is_async_deflation_requested = false;
  bool volatile ObjectSynchronizer::_is_final_audit = false;
  jlong ObjectSynchronizer::_last_async_deflation_time_ns = 0;
  static uintx _no_progress_cnt = 0;
  
+ #define CHECK_THROW_NOSYNC_IMSE(obj)  \
+   if (EnableValhalla && (obj)->mark().is_inline_type()) {  \
+     JavaThread* THREAD = current;           \
+     ResourceMark rm(THREAD);                \
+     THROW_MSG(vmSymbols::java_lang_IllegalMonitorStateException(), obj->klass()->external_name()); \
+   }
+ 
+ #define CHECK_THROW_NOSYNC_IMSE_0(obj)  \
+   if (EnableValhalla && (obj)->mark().is_inline_type()) {  \
+     JavaThread* THREAD = current;             \
+     ResourceMark rm(THREAD);                  \
+     THROW_MSG_0(vmSymbols::java_lang_IllegalMonitorStateException(), obj->klass()->external_name()); \
+   }
+ 
  // =====================> Quick functions
  
  // The quick_* forms are special fast-path variants used to improve
  // performance.  In the simplest case, a "quick_*" implementation could
  // simply return false, in which case the caller will perform the necessary

@@ -307,10 +321,11 @@
  
  bool ObjectSynchronizer::quick_notify(oopDesc* obj, JavaThread* current, bool all) {
    assert(current->thread_state() == _thread_in_Java, "invariant");
    NoSafepointVerifier nsv;
    if (obj == NULL) return false;  // slow-path for invalid obj
+   assert(!EnableValhalla || !obj->klass()->is_inline_klass(), "monitor op on inline type");
    const markWord mark = obj->mark();
  
    if (mark.has_locker() && current->is_lock_owned((address)mark.locker())) {
      // Degenerate notify
      // stack-locked by caller so by definition the implied waitset is empty.

@@ -355,10 +370,11 @@
  bool ObjectSynchronizer::quick_enter(oop obj, JavaThread* current,
                                       BasicLock * lock) {
    assert(current->thread_state() == _thread_in_Java, "invariant");
    NoSafepointVerifier nsv;
    if (obj == NULL) return false;       // Need to throw NPE
+   assert(!EnableValhalla || !obj->klass()->is_inline_klass(), "monitor op on inline type");
  
    if (obj->klass()->is_value_based()) {
      return false;
    }
  

@@ -474,10 +490,11 @@
  // The interpreter and compiler assembly code tries to lock using the fast path
  // of this algorithm. Make sure to update that code if the following function is
  // changed. The implementation is extremely sensitive to race condition. Be careful.
  
  void ObjectSynchronizer::enter(Handle obj, BasicLock* lock, JavaThread* current) {
+   CHECK_THROW_NOSYNC_IMSE(obj);
    if (obj->klass()->is_value_based()) {
      handle_sync_on_value_based_class(obj, current);
    }
  
    current->inc_held_monitor_count();

@@ -523,10 +540,14 @@
  void ObjectSynchronizer::exit(oop object, BasicLock* lock, JavaThread* current) {
    current->dec_held_monitor_count();
  
    if (!useHeavyMonitors()) {
      markWord mark = object->mark();
+     if (EnableValhalla && mark.is_inline_type()) {
+       return;
+     }
+     assert(!EnableValhalla || !object->klass()->is_inline_klass(), "monitor op on inline type");
  
      markWord dhw = lock->displaced_header();
      if (dhw.value() == 0) {
        // If the displaced header is NULL, then this exit matches up with
        // a recursive enter. No real work to do here except for diagnostics.

@@ -586,20 +607,24 @@
  //  3) when notified on lock2, unlock lock2
  //  4) reenter lock1 with original recursion count
  //  5) lock lock2
  // NOTE: must use heavy weight monitor to handle complete_exit/reenter()
  intx ObjectSynchronizer::complete_exit(Handle obj, JavaThread* current) {
+   assert(!EnableValhalla || !obj->klass()->is_inline_klass(), "monitor op on inline type");
+ 
    // The ObjectMonitor* can't be async deflated until ownership is
    // dropped inside exit() and the ObjectMonitor* must be !is_busy().
    ObjectMonitor* monitor = inflate(current, obj(), inflate_cause_vm_internal);
    intx recur_count = monitor->complete_exit(current);
    current->dec_held_monitor_count(recur_count + 1);
    return recur_count;
  }
  
  // NOTE: must use heavy weight monitor to handle complete_exit/reenter()
  void ObjectSynchronizer::reenter(Handle obj, intx recursions, JavaThread* current) {
+   assert(!EnableValhalla || !obj->klass()->is_inline_klass(), "monitor op on inline type");
+ 
    // An async deflation can race after the inflate() call and before
    // reenter() -> enter() can make the ObjectMonitor busy. reenter() ->
    // enter() returns false if we have lost the race to async deflation
    // and we simply try again.
    while (true) {

@@ -616,10 +641,11 @@
  // NOTE: must use heavy weight monitor to handle jni monitor enter
  void ObjectSynchronizer::jni_enter(Handle obj, JavaThread* current) {
    if (obj->klass()->is_value_based()) {
      handle_sync_on_value_based_class(obj, current);
    }
+   CHECK_THROW_NOSYNC_IMSE(obj);
  
    // the current locking is from JNI instead of Java code
    current->set_current_pending_monitor_is_from_java(false);
    // An async deflation can race after the inflate() call and before
    // enter() can make the ObjectMonitor busy. enter() returns false if

@@ -635,10 +661,11 @@
  }
  
  // NOTE: must use heavy weight monitor to handle jni monitor exit
  void ObjectSynchronizer::jni_exit(oop obj, TRAPS) {
    JavaThread* current = THREAD;
+   CHECK_THROW_NOSYNC_IMSE(obj);
  
    // The ObjectMonitor* can't be async deflated until ownership is
    // dropped inside exit() and the ObjectMonitor* must be !is_busy().
    ObjectMonitor* monitor = inflate(current, obj, inflate_cause_jni_exit);
    // If this thread has locked the object, exit the monitor. We

@@ -673,10 +700,11 @@
  // -----------------------------------------------------------------------------
  //  Wait/Notify/NotifyAll
  // NOTE: must use heavy weight monitor to handle wait()
  int ObjectSynchronizer::wait(Handle obj, jlong millis, TRAPS) {
    JavaThread* current = THREAD;
+   CHECK_THROW_NOSYNC_IMSE_0(obj);
    if (millis < 0) {
      THROW_MSG_0(vmSymbols::java_lang_IllegalArgumentException(), "timeout value is negative");
    }
    // The ObjectMonitor* can't be async deflated because the _waiters
    // field is incremented before ownership is dropped and decremented

@@ -694,10 +722,11 @@
    return ret_code;
  }
  
  void ObjectSynchronizer::notify(Handle obj, TRAPS) {
    JavaThread* current = THREAD;
+   CHECK_THROW_NOSYNC_IMSE(obj);
  
    markWord mark = obj->mark();
    if (mark.has_locker() && current->is_lock_owned((address)mark.locker())) {
      // Not inflated so there can't be any waiters to notify.
      return;

@@ -709,10 +738,11 @@
  }
  
  // NOTE: see comment of notify()
  void ObjectSynchronizer::notifyall(Handle obj, TRAPS) {
    JavaThread* current = THREAD;
+   CHECK_THROW_NOSYNC_IMSE(obj);
  
    markWord mark = obj->mark();
    if (mark.has_locker() && current->is_lock_owned((address)mark.locker())) {
      // Not inflated so there can't be any waiters to notify.
      return;

@@ -855,10 +885,14 @@
    assert(value != markWord::no_hash, "invariant");
    return value;
  }
  
  intptr_t ObjectSynchronizer::FastHashCode(Thread* current, oop obj) {
+   if (EnableValhalla && obj->klass()->is_inline_klass()) {
+     // VM should be calling bootstrap method
+     ShouldNotReachHere();
+   }
  
    while (true) {
      ObjectMonitor* monitor = NULL;
      markWord temp, test;
      intptr_t hash;

@@ -968,10 +1002,13 @@
    }
  }
  
  bool ObjectSynchronizer::current_thread_holds_lock(JavaThread* current,
                                                     Handle h_obj) {
+   if (EnableValhalla && h_obj->mark().is_inline_type()) {
+     return false;
+   }
    assert(current == JavaThread::current(), "Can only be called on current thread");
    oop obj = h_obj();
  
    markWord mark = read_stable_mark(obj);
  

@@ -1200,10 +1237,14 @@
    (void)inflate(Thread::current(), obj, inflate_cause_vm_internal);
  }
  
  ObjectMonitor* ObjectSynchronizer::inflate(Thread* current, oop object,
                                             const InflateCause cause) {
+   if (EnableValhalla) {
+     guarantee(!object->klass()->is_inline_klass(), "Attempt to inflate inline type");
+   }
+ 
    EventJavaMonitorInflate event;
  
    for (;;) {
      const markWord mark = object->mark_acquire();
  
< prev index next >