hotspot/src/share/vm/runtime/vm_operations.hpp
author jwilhelm
Thu, 23 Jan 2014 14:47:23 +0100
changeset 22551 9bf46d16dcc6
parent 20290 2127dc70bce9
child 23180 e87156376bed
permissions -rw-r--r--
8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
     2
 * Copyright (c) 1997, 2013, 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)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  template(Verify)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  template(PrintJNI)                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  template(HeapDumper)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  template(DeoptimizeTheWorld)                    \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    58
  template(CollectForMetadataAllocation)          \
1
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)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  template(ParallelGCFailedAllocation)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  template(ParallelGCSystemGC)                    \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    65
  template(CGC_Operation)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  template(CMS_Initial_Mark)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  template(CMS_Final_Remark)                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    68
  template(G1CollectFull)                         \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    69
  template(G1CollectForAllocation)                \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    70
  template(G1IncCollectionPause)                  \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  template(EnableBiasedLocking)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  template(RevokeBias)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  template(BulkRevokeBias)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  template(PopulateDumpSharedSpace)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  template(JNIFunctionTableCopier)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  template(RedefineClasses)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  template(GetOwnedMonitorInfo)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  template(GetObjectMonitorUsage)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  template(GetCurrentContendedMonitor)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  template(GetStackTrace)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  template(GetMultipleStackTraces)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  template(GetAllStackTraces)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  template(GetThreadListStackTraces)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  template(GetFrameCount)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  template(GetFrameLocation)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  template(ChangeBreakpoints)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  template(GetOrSetLocal)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  template(GetCurrentLocation)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  template(EnterInterpOnlyMode)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  template(ChangeSingleStep)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  template(HeapWalkOperation)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  template(HeapIterateOperation)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  template(ReportJavaOutOfMemory)                 \
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8921
diff changeset
    94
  template(JFRCheckpoint)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  template(Exit)                                  \
15926
8e87d545195f 7107135: Stack guard pages are no more protected after loading a shared library with executable stack
iklam
parents: 13728
diff changeset
    96
  template(LinuxDllLoad)                          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11480
diff changeset
    98
class VM_Operation: public CHeapObj<mtInternal> {
1
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
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20290
diff changeset
   157
  // Configuration. Override these appropriately in subclasses.
1
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
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   180
  static const char* mode_to_string(Mode mode);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   181
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  void print_on_error(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  const char* name() const { return _names[type()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  static const char* name(int type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    return _names[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  void print_on(outputStream* st) const { print_on_error(st); }
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
class VM_ThreadStop: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  oop     _thread;        // The Thread that the Throwable is thrown against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  oop     _throwable;     // The Throwable thrown at the target Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // 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
   200
  // VM operation is executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  VM_ThreadStop(oop thread, oop throwable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
    _throwable = throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  VMOp_Type type() const                         { return VMOp_ThreadStop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  oop target_thread() const                      { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  oop throwable() const                          { return _throwable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  void oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    f->do_oop(&_thread); f->do_oop(&_throwable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
// dummy vm op, evaluated just to force a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
class VM_ForceSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  VM_ForceSafepoint() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  void doit()         {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  VMOp_Type type() const { return VMOp_ForceSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
// dummy vm op, evaluated just to force a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
class VM_ForceAsyncSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  VM_ForceAsyncSafepoint() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void doit()              {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  VMOp_Type type() const                         { return VMOp_ForceAsyncSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
class VM_Deoptimize: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  VM_Deoptimize() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  VMOp_Type type() const                        { return VMOp_Deoptimize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   246
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   247
// 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
   248
// current thread.  Only used through Deoptimization::deoptimize_frame.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
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
   250
  friend class Deoptimization;
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   251
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  JavaThread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  intptr_t*   _id;
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   255
  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
   256
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  bool allow_nested_vm_operations() const        { return true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
class VM_DeoptimizeAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
  KlassHandle _dependee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  VM_DeoptimizeAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
class VM_ZombieAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  VM_ZombieAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  VMOp_Type type() const                         { return VMOp_ZombieAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   284
class VM_UnlinkSymbols: public VM_Operation {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   285
 public:
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   286
  VM_UnlinkSymbols() {}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   287
  VMOp_Type type() const                         { return VMOp_UnlinkSymbols; }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   288
  void doit();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   289
  bool allow_nested_vm_operations() const        { return true; }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   290
};
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   291
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
class VM_Verify: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
 private:
16680
960505df90e7 8011343: Add new flag for verifying the heap during startup
johnc
parents: 15926
diff changeset
   294
  bool _silent;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
 public:
17112
e49af4ba7755 8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents: 16680
diff changeset
   296
  VM_Verify(bool silent = VerifySilently) : _silent(silent) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  VMOp_Type type() const { return VMOp_Verify; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
class VM_PrintThreads: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  bool _print_concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  VM_PrintThreads()                                                { _out = tty; _print_concurrent_locks = PrintConcurrentLocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
  VM_PrintThreads(outputStream* out, bool print_concurrent_locks)  { _out = out; _print_concurrent_locks = print_concurrent_locks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
  VMOp_Type type() const                                           {  return VMOp_PrintThreads; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
class VM_PrintJNI: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
  VM_PrintJNI()                         { _out = tty; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
  VM_PrintJNI(outputStream* out)        { _out = out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  VMOp_Type type() const                { return VMOp_PrintJNI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
class DeadlockCycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
class VM_FindDeadlocks: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  bool           _concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  DeadlockCycle* _deadlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  outputStream*  _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
  ~VM_FindDeadlocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  DeadlockCycle* result()      { return _deadlocks; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  VMOp_Type type() const       { return VMOp_FindDeadlocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
class ThreadDumpResult;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
class ThreadConcurrentLocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
class VM_ThreadDump : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  ThreadDumpResult*              _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  int                            _num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  GrowableArray<instanceHandle>* _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  int                            _max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  bool                           _with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  bool                           _with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
                int max_depth,  // -1 indicates entire stack
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
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
                GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
                int num_threads, // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
                int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  VMOp_Type type() const { return VMOp_ThreadDump; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
class VM_Exit: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  int  _exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  static volatile bool _vm_exited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  static Thread * _shutdown_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
  static void wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  VM_Exit(int exit_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
    _exit_code = exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  static int wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  static int set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  static bool vm_exited()                      { return _vm_exited; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  static void block_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
    if (_vm_exited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
      wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  VMOp_Type type() const { return VMOp_Exit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   399
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   400
#endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP