hotspot/src/share/vm/runtime/vm_operations.hpp
author kvn
Fri, 29 Jan 2010 09:27:22 -0800
changeset 4750 71fd601907dc
parent 3261 c7d5aae8d3f7
child 5547 f4b087cbb361
permissions -rw-r--r--
4360113: Evict nmethods when code cache gets full Summary: Speculatively unload the oldest nmethods when code cache gets full. Reviewed-by: never, kvn Contributed-by: eric.caspole@amd.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
3261
c7d5aae8d3f7 6862919: Update copyright year
xdono
parents: 2344
diff changeset
     2
 * Copyright 1997-2009 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// The following classes are used for operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// initiated by a Java thread but that must
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// take place in the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#define VM_OP_ENUM(type)   VMOp_##type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Note: When new VM_XXX comes up, add 'XXX' to the template table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#define VM_OPS_DO(template)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  template(Dummy)                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  template(ThreadStop)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  template(ThreadDump)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  template(PrintThreads)                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  template(FindDeadlocks)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  template(ForceSafepoint)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  template(ForceAsyncSafepoint)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  template(Deoptimize)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  template(DeoptimizeFrame)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  template(DeoptimizeAll)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  template(ZombieAll)                             \
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
    44
  template(HandleFullCodeCache)                   \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  template(Verify)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  template(PrintJNI)                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  template(HeapDumper)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  template(DeoptimizeTheWorld)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  template(GC_HeapInspection)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  template(GenCollectFull)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  template(GenCollectFullConcurrent)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  template(GenCollectForAllocation)               \
386
7f121b1192f2 6539517: CR 6186200 should be extended to perm gen allocation to prevent spurious OOM's from perm gen
apetrusenko
parents: 1
diff changeset
    53
  template(GenCollectForPermanentAllocation)      \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  template(ParallelGCFailedAllocation)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  template(ParallelGCFailedPermanentAllocation)   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  template(ParallelGCSystemGC)                    \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    57
  template(CGC_Operation)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  template(CMS_Initial_Mark)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  template(CMS_Final_Remark)                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    60
  template(G1CollectFull)                         \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    61
  template(G1CollectForAllocation)                \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    62
  template(G1IncCollectionPause)                  \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  template(EnableBiasedLocking)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  template(RevokeBias)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  template(BulkRevokeBias)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  template(PopulateDumpSharedSpace)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  template(JNIFunctionTableCopier)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  template(RedefineClasses)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  template(GetOwnedMonitorInfo)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  template(GetObjectMonitorUsage)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  template(GetCurrentContendedMonitor)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  template(GetStackTrace)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  template(GetMultipleStackTraces)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  template(GetAllStackTraces)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  template(GetThreadListStackTraces)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  template(GetFrameCount)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  template(GetFrameLocation)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  template(ChangeBreakpoints)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  template(GetOrSetLocal)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  template(GetCurrentLocation)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  template(EnterInterpOnlyMode)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  template(ChangeSingleStep)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  template(HeapWalkOperation)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  template(HeapIterateOperation)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  template(ReportJavaOutOfMemory)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  template(Exit)                                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
class VM_Operation: public CHeapObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  enum Mode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    _safepoint,       // blocking,        safepoint, vm_op C-heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    _no_safepoint,    // blocking,     no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    _concurrent,      // non-blocking, no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    _async_safepoint  // non-blocking,    safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  enum VMOp_Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
    VM_OPS_DO(VM_OP_ENUM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
    VMOp_Terminating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  Thread*         _calling_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  ThreadPriority  _priority;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  long            _timestamp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  VM_Operation*   _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  VM_Operation*   _prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // The VM operation name array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  static const char* _names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  VM_Operation()  { _calling_thread = NULL; _next = NULL; _prev = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  virtual ~VM_Operation() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  // VM operation support (used by VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  Thread* calling_thread() const                 { return _calling_thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  ThreadPriority priority()                      { return _priority; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  void set_calling_thread(Thread* thread, ThreadPriority priority);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  long timestamp() const              { return _timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  void set_timestamp(long timestamp)  { _timestamp = timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  // Called by VM thread - does in turn invoke doit(). Do not override this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  void evaluate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  // evaluate() is called by the VMThread and in turn calls doit().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // doit_prologue() is called in that thread before transferring control to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  // the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  // If doit_prologue() returns true the VM operation will proceed, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  // doit_epilogue() will be called by the JavaThread once the VM operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  // completes. If doit_prologue() returns false the VM operation is cancelled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  virtual void doit()                            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  virtual bool doit_prologue()                   { return true; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  virtual void doit_epilogue()                   {}; // Note: Not called if mode is: _concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  // Type test
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  virtual bool is_methodCompiler() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  // Linking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  VM_Operation *next() const                     { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  VM_Operation *prev() const                     { return _prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  void set_next(VM_Operation *next)              { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void set_prev(VM_Operation *prev)              { _prev = prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // Configuration. Override these appropriatly in subclasses.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  virtual VMOp_Type type() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  virtual Mode evaluation_mode() const            { return _safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  virtual bool allow_nested_vm_operations() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  virtual bool is_cheap_allocated() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  virtual void oops_do(OopClosure* f)              { /* do nothing */ };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  // CAUTION: <don't hang yourself with following rope>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  // If you override these methods, make sure that the evaluation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  // of these methods is race-free and non-blocking, since these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // methods may be evaluated either by the mutators or by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // vm thread, either concurrently with mutators or with the mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  // stopped. In other words, taking locks is verboten, and if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // are any races in evaluating the conditions, they'd better be benign.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  virtual bool evaluate_at_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
    return evaluation_mode() == _safepoint  ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  virtual bool evaluate_concurrently() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
    return evaluation_mode() == _concurrent ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  void print_on_error(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  const char* name() const { return _names[type()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  static const char* name(int type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
    return _names[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  void print_on(outputStream* st) const { print_on_error(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
class VM_ThreadStop: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  oop     _thread;        // The Thread that the Throwable is thrown against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  oop     _throwable;     // The Throwable thrown at the target Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // All oops are passed as JNI handles, since there is no guarantee that a GC might happen before the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // VM operation is executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  VM_ThreadStop(oop thread, oop throwable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    _throwable = throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  VMOp_Type type() const                         { return VMOp_ThreadStop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  oop target_thread() const                      { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  oop throwable() const                          { return _throwable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  void oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    f->do_oop(&_thread); f->do_oop(&_throwable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
// dummy vm op, evaluated just to force a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
class VM_ForceSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  VM_ForceSafepoint() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  void doit()         {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  VMOp_Type type() const { return VMOp_ForceSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
// dummy vm op, evaluated just to force a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
class VM_ForceAsyncSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  VM_ForceAsyncSafepoint() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void doit()              {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  VMOp_Type type() const                         { return VMOp_ForceAsyncSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
class VM_Deoptimize: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  VM_Deoptimize() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  VMOp_Type type() const                        { return VMOp_Deoptimize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
class VM_DeoptimizeFrame: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
  JavaThread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  intptr_t*   _id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  bool allow_nested_vm_operations() const        { return true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
4750
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   245
class VM_HandleFullCodeCache: public VM_Operation {
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   246
 private:
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   247
  bool  _is_full;
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   248
 public:
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   249
  VM_HandleFullCodeCache(bool is_full)           { _is_full = is_full; }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   250
  VMOp_Type type() const                         { return VMOp_HandleFullCodeCache; }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   251
  void doit();
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   252
  bool allow_nested_vm_operations() const        { return true; }
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   253
};
71fd601907dc 4360113: Evict nmethods when code cache gets full
kvn
parents: 3261
diff changeset
   254
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
class VM_DeoptimizeAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  KlassHandle _dependee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  VM_DeoptimizeAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
class VM_ZombieAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  VM_ZombieAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  VMOp_Type type() const                         { return VMOp_ZombieAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
class VM_Verify: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  KlassHandle _dependee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  VM_Verify() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  VMOp_Type type() const { return VMOp_Verify; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
class VM_PrintThreads: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  bool _print_concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  VM_PrintThreads()                                                { _out = tty; _print_concurrent_locks = PrintConcurrentLocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
  VM_PrintThreads(outputStream* out, bool print_concurrent_locks)  { _out = out; _print_concurrent_locks = print_concurrent_locks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
  VMOp_Type type() const                                           {  return VMOp_PrintThreads; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
class VM_PrintJNI: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  VM_PrintJNI()                         { _out = tty; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  VM_PrintJNI(outputStream* out)        { _out = out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  VMOp_Type type() const                { return VMOp_PrintJNI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
class DeadlockCycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
class VM_FindDeadlocks: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  bool           _concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  DeadlockCycle* _deadlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  outputStream*  _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  ~VM_FindDeadlocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  DeadlockCycle* result()      { return _deadlocks; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  VMOp_Type type() const       { return VMOp_FindDeadlocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
class ThreadDumpResult;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
class ThreadConcurrentLocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
class VM_ThreadDump : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  ThreadDumpResult*              _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  int                            _num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  GrowableArray<instanceHandle>* _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  int                            _max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  bool                           _with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  bool                           _with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
                int max_depth,  // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
                GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
                int num_threads, // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
                int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  VMOp_Type type() const { return VMOp_ThreadDump; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
class VM_Exit: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
  int  _exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
  static volatile bool _vm_exited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  static Thread * _shutdown_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  static void wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  VM_Exit(int exit_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
    _exit_code = exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  static int wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  static int set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  static bool vm_exited()                      { return _vm_exited; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
  static void block_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
    if (_vm_exited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
      wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  VMOp_Type type() const { return VMOp_Exit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
};