hotspot/src/share/vm/runtime/objectMonitor.hpp
author stefank
Wed, 01 Dec 2010 15:04:06 +0100
changeset 7408 c04a5c989f26
parent 7397 5b173b4ca846
child 17376 4ee999c3c007
permissions -rw-r--r--
7003125: precompiled.hpp is included when precompiled headers are not used Summary: Added an ifndef DONT_USE_PRECOMPILED_HEADER to precompiled.hpp. Set up DONT_USE_PRECOMPILED_HEADER when compiling with Sun Studio or when the user specifies USE_PRECOMPILED_HEADER=0. Fixed broken include dependencies. Reviewed-by: coleenp, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
     2
 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_OBJECTMONITOR_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    26
#define SHARE_VM_RUNTIME_OBJECTMONITOR_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    28
#include "runtime/os.hpp"
7408
c04a5c989f26 7003125: precompiled.hpp is included when precompiled headers are not used
stefank
parents: 7397
diff changeset
    29
#include "runtime/park.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    30
#include "runtime/perfData.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
    31
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    32
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    33
// ObjectWaiter serves as a "proxy" or surrogate thread.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    34
// TODO-FIXME: Eliminate ObjectWaiter and use the thread-specific
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    35
// ParkEvent instead.  Beware, however, that the JVMTI code
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    36
// knows about ObjectWaiters, so we'll have to reconcile that code.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    37
// See next_waiter(), first_waiter(), etc.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    38
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    39
class ObjectWaiter : public StackObj {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    40
 public:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    41
  enum TStates { TS_UNDEF, TS_READY, TS_RUN, TS_WAIT, TS_ENTER, TS_CXQ } ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    42
  enum Sorted  { PREPEND, APPEND, SORTED } ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    43
  ObjectWaiter * volatile _next;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    44
  ObjectWaiter * volatile _prev;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    45
  Thread*       _thread;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    46
  ParkEvent *   _event;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    47
  volatile int  _notified ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    48
  volatile TStates TState ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    49
  Sorted        _Sorted ;           // List placement disposition
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    50
  bool          _active ;           // Contention monitoring is enabled
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    51
 public:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    52
  ObjectWaiter(Thread* thread);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    53
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    54
  void wait_reenter_begin(ObjectMonitor *mon);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    55
  void wait_reenter_end(ObjectMonitor *mon);
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    56
};
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
    57
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
// WARNING:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
//   This is a very sensitive and fragile class. DO NOT make any
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
// change unless you are fully aware of the underlying semantics.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
//   This class can not inherit from any other class, because I have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
// to let the displaced header be the very first word. Otherwise I
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
// have to let markOop include this file, which would export the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
// monitor data structure to everywhere.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
// The ObjectMonitor class is used to implement JavaMonitors which have
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
// transformed from the lightweight structure of the thread stack to a
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// heavy weight lock due to contention
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
// It is also used as RawMonitor by the JVMTI
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
class ObjectMonitor {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    OM_OK,                    // no error
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    OM_SYSTEM_ERROR,          // operating system error
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    OM_ILLEGAL_MONITOR_STATE, // IllegalMonitorStateException
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    OM_INTERRUPTED,           // Thread.interrupt()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    OM_TIMED_OUT              // Object.wait() timed out
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // TODO-FIXME: the "offset" routines should return a type of off_t instead of int ...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // ByteSize would also be an appropriate type.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static int header_offset_in_bytes()      { return offset_of(ObjectMonitor, _header);     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  static int object_offset_in_bytes()      { return offset_of(ObjectMonitor, _object);     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  static int owner_offset_in_bytes()       { return offset_of(ObjectMonitor, _owner);      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  static int count_offset_in_bytes()       { return offset_of(ObjectMonitor, _count);      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  static int recursions_offset_in_bytes()  { return offset_of(ObjectMonitor, _recursions); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static int cxq_offset_in_bytes()         { return offset_of(ObjectMonitor, _cxq) ;       }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  static int succ_offset_in_bytes()        { return offset_of(ObjectMonitor, _succ) ;      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  static int EntryList_offset_in_bytes()   { return offset_of(ObjectMonitor, _EntryList);  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  static int FreeNext_offset_in_bytes()    { return offset_of(ObjectMonitor, FreeNext);    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  static int WaitSet_offset_in_bytes()     { return offset_of(ObjectMonitor, _WaitSet) ;   }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  static int Responsible_offset_in_bytes() { return offset_of(ObjectMonitor, _Responsible);}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  static int Spinner_offset_in_bytes()     { return offset_of(ObjectMonitor, _Spinner);    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Eventaully we'll make provisions for multiple callbacks, but
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // now one will suffice.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  static int (*SpinCallbackFunction)(intptr_t, int) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  static intptr_t SpinCallbackArgument ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  markOop   header() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  void      set_header(markOop hdr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   111
  intptr_t is_busy() const {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   112
    // TODO-FIXME: merge _count and _waiters.
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   113
    // TODO-FIXME: assert _owner == null implies _recursions = 0
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   114
    // TODO-FIXME: assert _WaitSet != null implies _count > 0
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   115
    return _count|_waiters|intptr_t(_owner)|intptr_t(_cxq)|intptr_t(_EntryList ) ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   116
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   117
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  intptr_t  is_entered(Thread* current) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  void*     owner() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  void      set_owner(void* owner);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  intptr_t  waiters() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  intptr_t  count() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  void      set_count(intptr_t count);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  intptr_t  contentions() const ;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   128
  intptr_t  recursions() const                                         { return _recursions; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // JVM/DI GetMonitorInfo() needs this
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   131
  ObjectWaiter* first_waiter()                                         { return _WaitSet; }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   132
  ObjectWaiter* next_waiter(ObjectWaiter* o)                           { return o->_next; }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   133
  Thread* thread_of_waiter(ObjectWaiter* o)                            { return o->_thread; }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   134
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   135
  // initialize the monitor, exception the semaphore, all other fields
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   136
  // are simple integers or pointers
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   137
  ObjectMonitor() {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   138
    _header       = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   139
    _count        = 0;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   140
    _waiters      = 0,
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   141
    _recursions   = 0;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   142
    _object       = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   143
    _owner        = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   144
    _WaitSet      = NULL;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   145
    _WaitSetLock  = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   146
    _Responsible  = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   147
    _succ         = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   148
    _cxq          = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   149
    FreeNext      = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   150
    _EntryList    = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   151
    _SpinFreq     = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   152
    _SpinClock    = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   153
    OwnerIsThread = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   154
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   156
  ~ObjectMonitor() {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   157
   // TODO: Add asserts ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   158
   // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   159
   // _count == 0 _EntryList  == NULL etc
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   160
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   161
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   162
private:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   163
  void Recycle () {
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   164
    // TODO: add stronger asserts ...
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   165
    // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   166
    // _count == 0 EntryList  == NULL
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   167
    // _recursions == 0 _WaitSet == NULL
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   168
    // TODO: assert (is_busy()|_recursions) == 0
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   169
    _succ          = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   170
    _EntryList     = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   171
    _cxq           = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   172
    _WaitSet       = NULL ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   173
    _recursions    = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   174
    _SpinFreq      = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   175
    _SpinClock     = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   176
    OwnerIsThread  = 0 ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   177
  }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   178
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   179
public:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  void*     object() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  void*     object_addr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void      set_object(void* obj);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  bool      check(TRAPS);       // true if the thread owns the monitor.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  void      check_slow(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  void      clear();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  void      verify();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void      print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  bool      try_enter (TRAPS) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void      enter(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  void      exit(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void      wait(jlong millis, bool interruptable, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  void      notify(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  void      notifyAll(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
// Use the following at your own risk
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  intptr_t  complete_exit(TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  void      reenter(intptr_t recursions, TRAPS);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  void      AddWaiter (ObjectWaiter * waiter) ;
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   206
  static    void DeferredInitialize();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  ObjectWaiter * DequeueWaiter () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  void      DequeueSpecificWaiter (ObjectWaiter * waiter) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  void      EnterI (TRAPS) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  void      ReenterI (Thread * Self, ObjectWaiter * SelfNode) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void      UnlinkAfterAcquire (Thread * Self, ObjectWaiter * SelfNode) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  int       TryLock (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  int       NotRunnable (Thread * Self, Thread * Owner) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  int       TrySpin_Fixed (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  int       TrySpin_VaryFrequency (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  int       TrySpin_VaryDuration  (Thread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void      ctAsserts () ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  void      ExitEpilog (Thread * Self, ObjectWaiter * Wakee) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool      ExitSuspendEquivalent (JavaThread * Self) ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  friend class ObjectSynchronizer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  friend class ObjectWaiter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  // WARNING: this must be the very first word of ObjectMonitor
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // This means this class can't use any virtual member functions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  // TODO-FIXME: assert that offsetof(_header) is 0 or get rid of the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  // implicit 0 offset in emitted code.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  volatile markOop   _header;       // displaced object header word - mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  void*     volatile _object;       // backward object pointer - strong root
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  double SharingPad [1] ;           // temp to reduce false sharing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // All the following fields must be machine word aligned
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  // The VM assumes write ordering wrt these fields, which can be
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  // read from other threads.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   241
 protected:                         // protected for jvmtiRawMonitor
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void *  volatile _owner;          // pointer to owning thread OR BasicLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  volatile intptr_t  _recursions;   // recursion count, 0 for first entry
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   244
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  int OwnerIsThread ;               // _owner is (Thread *) vs SP/BasicLock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  ObjectWaiter * volatile _cxq ;    // LL of recently-arrived threads blocked on entry.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
                                    // The list is actually composed of WaitNodes, acting
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
                                    // as proxies for Threads.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   249
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  ObjectWaiter * volatile _EntryList ;     // Threads blocked on entry or reentry.
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   251
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  Thread * volatile _succ ;          // Heir presumptive thread - used for futile wakeup throttling
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  Thread * volatile _Responsible ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  int _PromptDrain ;                // rqst to drain cxq into EntryList ASAP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  volatile int _Spinner ;           // for exit->spinner handoff optimization
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  volatile int _SpinFreq ;          // Spin 1-out-of-N attempts: success rate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  volatile int _SpinClock ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  volatile int _SpinDuration ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  volatile intptr_t _SpinState ;    // MCS/CLH list of spinners
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  // TODO-FIXME: _count, _waiters and _recursions should be of
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  // type int, or int32_t but not intptr_t.  There's no reason
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
  // to use 64-bit fields for these variables on a 64-bit JVM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  volatile intptr_t  _count;        // reference count to prevent reclaimation/deflation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
                                    // at stop-the-world time.  See deflate_idle_monitors().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
                                    // _count is approximately |_WaitSet| + |_EntryList|
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   269
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  volatile intptr_t  _waiters;      // number of waiting threads
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   271
 private:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   272
 protected:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  ObjectWaiter * volatile _WaitSet; // LL of threads wait()ing on the monitor
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   274
 private:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  volatile int _WaitSetLock;        // protects Wait Queue - simple spinlock
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  int _QMix ;                       // Mixed prepend queue discipline
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  ObjectMonitor * FreeNext ;        // Free list linkage
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  intptr_t StatA, StatsB ;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   282
 public:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   283
  static void Initialize () ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   284
  static PerfCounter * _sync_ContendedLockAttempts ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   285
  static PerfCounter * _sync_FutileWakeups ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   286
  static PerfCounter * _sync_Parks ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   287
  static PerfCounter * _sync_EmptyNotifications ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   288
  static PerfCounter * _sync_Notifications ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   289
  static PerfCounter * _sync_SlowEnter ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   290
  static PerfCounter * _sync_SlowExit ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   291
  static PerfCounter * _sync_SlowNotify ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   292
  static PerfCounter * _sync_SlowNotifyAll ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   293
  static PerfCounter * _sync_FailedSpins ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   294
  static PerfCounter * _sync_SuccessfulSpins ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   295
  static PerfCounter * _sync_PrivateA ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   296
  static PerfCounter * _sync_PrivateB ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   297
  static PerfCounter * _sync_MonInCirculation ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   298
  static PerfCounter * _sync_MonScavenged ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   299
  static PerfCounter * _sync_Inflations ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   300
  static PerfCounter * _sync_Deflations ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   301
  static PerfLongVariable * _sync_MonExtant ;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   302
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   303
 public:
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   304
  static int Knob_Verbose;
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   305
  static int Knob_SpinLimit;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
};
6975
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   307
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   308
#undef TEVENT
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   309
#define TEVENT(nom) {if (SyncVerbose) FEVENT(nom); }
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   310
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   311
#define FEVENT(nom) { static volatile int ctr = 0 ; int v = ++ctr ; if ((v & (v-1)) == 0) { ::printf (#nom " : %d \n", v); ::fflush(stdout); }}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   312
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   313
#undef  TEVENT
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   314
#define TEVENT(nom) {;}
dc9b63952682 6988353: refactor contended sync subsystem
acorn
parents: 5547
diff changeset
   315
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
   316
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6975
diff changeset
   317
#endif // SHARE_VM_RUNTIME_OBJECTMONITOR_HPP