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