src/hotspot/share/runtime/vmOperations.hpp
author lkorinth
Wed, 13 Nov 2019 11:37:29 +0100
changeset 59053 ba6c248cae19
parent 58226 408c445d04e8
child 59067 f080b08daace
permissions -rw-r--r--
8232365: Implementation for JEP 363: Remove the Concurrent Mark Sweep (CMS) Garbage Collector Reviewed-by: kbarrett, tschatzl, erikj, coleenp, dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52925
diff changeset
     2
 * Copyright (c) 1997, 2019, 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
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52925
diff changeset
    25
#ifndef SHARE_RUNTIME_VMOPERATIONS_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52925
diff changeset
    26
#define SHARE_RUNTIME_VMOPERATIONS_HPP
7397
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"
48312
2a1413298af0 8191789: migrate more Thread-SMR stuff from thread.[ch]pp -> threadSMR.[ch]pp
dcubed
parents: 48105
diff changeset
    32
#include "runtime/threadSMR.hpp"
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
    33
#include "code/codeCache.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    34
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// The following classes are used for operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// initiated by a Java thread but that must
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
// take place in the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#define VM_OP_ENUM(type)   VMOp_##type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
// Note: When new VM_XXX comes up, add 'XXX' to the template table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#define VM_OPS_DO(template)                       \
50966
f939a67fea30 8198720: Obsolete PrintSafepointStatistics, PrintSafepointStatisticsTimeout and PrintSafepointStatisticsCount options
coleenp
parents: 50946
diff changeset
    43
  template(None)                                  \
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
    44
  template(Cleanup)                               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  template(ThreadStop)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  template(ThreadDump)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  template(PrintThreads)                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  template(FindDeadlocks)                         \
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
    49
  template(ClearICs)                              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  template(ForceSafepoint)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  template(ForceAsyncSafepoint)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  template(DeoptimizeFrame)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  template(DeoptimizeAll)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  template(ZombieAll)                             \
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)                    \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    59
  template(CollectForMetadataAllocation)          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  template(GC_HeapInspection)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  template(GenCollectFull)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  template(GenCollectFullConcurrent)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  template(GenCollectForAllocation)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  template(ParallelGCFailedAllocation)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  template(ParallelGCSystemGC)                    \
48631
862c41cf1c7f 8137099: G1 needs to "upgrade" GC within the safepoint if it can't allocate during that safepoint to avoid OoME
tschatzl
parents: 48312
diff changeset
    66
  template(G1CollectForAllocation)                \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    67
  template(G1CollectFull)                         \
52874
c45a5b46461b 8193312: Rename VM_CGC_Operation to VM_G1Concurrent
tschatzl
parents: 51334
diff changeset
    68
  template(G1Concurrent)                          \
53541
4e325f8b50ce 8217858: ZGC: Clean up ZDriver
pliden
parents: 53507
diff changeset
    69
  template(ZMarkStart)                            \
4e325f8b50ce 8217858: ZGC: Clean up ZDriver
pliden
parents: 53507
diff changeset
    70
  template(ZMarkEnd)                              \
4e325f8b50ce 8217858: ZGC: Clean up ZDriver
pliden
parents: 53507
diff changeset
    71
  template(ZRelocateStart)                        \
55603
3868dde58ebb 8227175: ZGC: ZHeapIterator visits potentially dead objects
stefank
parents: 55571
diff changeset
    72
  template(ZVerify)                               \
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47802
diff changeset
    73
  template(HandshakeOneThread)                    \
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47802
diff changeset
    74
  template(HandshakeAllThreads)                   \
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47802
diff changeset
    75
  template(HandshakeFallback)                     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  template(EnableBiasedLocking)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  template(BulkRevokeBias)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  template(PopulateDumpSharedSpace)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  template(JNIFunctionTableCopier)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  template(RedefineClasses)                       \
23180
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
    81
  template(UpdateForPopTopFrame)                  \
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
    82
  template(SetFramePop)                           \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  template(GetOwnedMonitorInfo)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  template(GetObjectMonitorUsage)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  template(GetCurrentContendedMonitor)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  template(GetStackTrace)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  template(GetMultipleStackTraces)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  template(GetAllStackTraces)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  template(GetThreadListStackTraces)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  template(GetFrameCount)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  template(GetFrameLocation)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  template(ChangeBreakpoints)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  template(GetOrSetLocal)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  template(GetCurrentLocation)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  template(EnterInterpOnlyMode)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  template(ChangeSingleStep)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  template(HeapWalkOperation)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  template(HeapIterateOperation)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  template(ReportJavaOutOfMemory)                 \
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8921
diff changeset
   100
  template(JFRCheckpoint)                         \
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   101
  template(ShenandoahFullGC)                      \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   102
  template(ShenandoahInitMark)                    \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   103
  template(ShenandoahFinalMarkStartEvac)          \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   104
  template(ShenandoahFinalEvac)                   \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   105
  template(ShenandoahInitTraversalGC)             \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   106
  template(ShenandoahFinalTraversalGC)            \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   107
  template(ShenandoahInitUpdateRefs)              \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   108
  template(ShenandoahFinalUpdateRefs)             \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   109
  template(ShenandoahDegeneratedGC)               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  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
   111
  template(LinuxDllLoad)                          \
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   112
  template(RotateGCLog)                           \
23848
2a4fff3b50c1 8039597: WhiteBox :: clean type profiling data
iignatyev
parents: 23517
diff changeset
   113
  template(WhiteBoxOperation)                     \
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55005
diff changeset
   114
  template(JVMCIResizeCounters)                   \
25051
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 23848
diff changeset
   115
  template(ClassLoaderStatsOperation)             \
50443
8e56de95ce10 8203682: Add jcmd "VM.classloaders" command to print out class loader hierarchy, details
stuefe
parents: 50419
diff changeset
   116
  template(ClassLoaderHierarchyOperation)         \
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27696
diff changeset
   117
  template(DumpHashtable)                         \
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31234
diff changeset
   118
  template(DumpTouchedMethods)                    \
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   119
  template(MarkActiveNMethods)                    \
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   120
  template(PrintCompileQueue)                     \
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   121
  template(PrintClassHierarchy)                   \
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   122
  template(ThreadSuspend)                         \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   123
  template(ThreadsSuspendJVMTI)                   \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   124
  template(ICBufferFull)                          \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   125
  template(ScavengeMonitors)                      \
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   126
  template(PrintMetadata)                         \
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   127
  template(GTestExecuteAtSafepoint)               \
55571
49102ba8cf14 8214542: JFR: Old Object Sample event slow on a deep heap in debug builds
mgronlun
parents: 55479
diff changeset
   128
  template(JFROldObject)                          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11480
diff changeset
   130
class VM_Operation: public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  enum Mode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _safepoint,       // blocking,        safepoint, vm_op C-heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    _no_safepoint,    // blocking,     no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    _concurrent,      // non-blocking, no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    _async_safepoint  // non-blocking,    safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  enum VMOp_Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    VM_OPS_DO(VM_OP_ENUM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
    VMOp_Terminating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  Thread*         _calling_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  long            _timestamp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  VM_Operation*   _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  VM_Operation*   _prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // The VM operation name array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  static const char* _names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  VM_Operation()  { _calling_thread = NULL; _next = NULL; _prev = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  virtual ~VM_Operation() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // VM operation support (used by VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  Thread* calling_thread() const                 { return _calling_thread; }
57758
91a758925be7 8225788: Dead code in thread and safepoint
rehn
parents: 55625
diff changeset
   159
  void set_calling_thread(Thread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  long timestamp() const              { return _timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  void set_timestamp(long timestamp)  { _timestamp = timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // Called by VM thread - does in turn invoke doit(). Do not override this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  void evaluate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // evaluate() is called by the VMThread and in turn calls doit().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  // doit_prologue() is called in that thread before transferring control to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  // the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // If doit_prologue() returns true the VM operation will proceed, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  // doit_epilogue() will be called by the JavaThread once the VM operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  // completes. If doit_prologue() returns false the VM operation is cancelled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  virtual void doit()                            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  virtual bool doit_prologue()                   { return true; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  virtual void doit_epilogue()                   {}; // Note: Not called if mode is: _concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // Type test
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  virtual bool is_methodCompiler() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  // Linking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  VM_Operation *next() const                     { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  VM_Operation *prev() const                     { return _prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  void set_next(VM_Operation *next)              { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  void set_prev(VM_Operation *prev)              { _prev = prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20290
diff changeset
   187
  // Configuration. Override these appropriately in subclasses.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  virtual VMOp_Type type() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  virtual Mode evaluation_mode() const            { return _safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  virtual bool allow_nested_vm_operations() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  virtual bool is_cheap_allocated() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  virtual void oops_do(OopClosure* f)              { /* do nothing */ };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  // CAUTION: <don't hang yourself with following rope>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  // If you override these methods, make sure that the evaluation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
  // of these methods is race-free and non-blocking, since these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  // methods may be evaluated either by the mutators or by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  // vm thread, either concurrently with mutators or with the mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
  // stopped. In other words, taking locks is verboten, and if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  // are any races in evaluating the conditions, they'd better be benign.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  virtual bool evaluate_at_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    return evaluation_mode() == _safepoint  ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  virtual bool evaluate_concurrently() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
    return evaluation_mode() == _concurrent ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   210
  static const char* mode_to_string(Mode mode);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   211
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
  // Debugging
31234
48000028382c 8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents: 29071
diff changeset
   213
  virtual void print_on_error(outputStream* st) const;
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   214
  virtual const char* name() const  { return _names[type()]; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  static const char* name(int type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
    assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
    return _names[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  void print_on(outputStream* st) const { print_on_error(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   224
class VM_None: public VM_Operation {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   225
  const char* _reason;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   226
 public:
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   227
  VM_None(const char* reason) : _reason(reason) {}
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   228
  const char* name() const { return _reason; }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   229
  VMOp_Type type() const { return VMOp_None; }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   230
  void doit() {};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   231
};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   232
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   233
class VM_Cleanup: public VM_Operation {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   234
 public:
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   235
  VMOp_Type type() const { return VMOp_Cleanup; }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   236
  void doit() {};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   237
};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   238
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
class VM_ThreadStop: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  oop     _thread;        // The Thread that the Throwable is thrown against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  oop     _throwable;     // The Throwable thrown at the target Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  // 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
   245
  // VM operation is executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  VM_ThreadStop(oop thread, oop throwable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
    _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
    _throwable = throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  VMOp_Type type() const                         { return VMOp_ThreadStop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  oop target_thread() const                      { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  oop throwable() const                          { return _throwable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  void oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
    f->do_oop(&_thread); f->do_oop(&_throwable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   265
class VM_ClearICs: public VM_Operation {
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   266
 private:
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   267
  bool _preserve_static_stubs;
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   268
 public:
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   269
  VM_ClearICs(bool preserve_static_stubs) { _preserve_static_stubs = preserve_static_stubs; }
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   270
  void doit();
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   271
  VMOp_Type type() const { return VMOp_ClearICs; }
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   272
};
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   273
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   274
// empty vm op, evaluated just to force a safepoint
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
class VM_ForceSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  void doit()         {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
  VMOp_Type type() const { return VMOp_ForceSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   281
// empty vm op, when forcing a safepoint to suspend a thread
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   282
class VM_ThreadSuspend: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   283
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   284
  VMOp_Type type() const { return VMOp_ThreadSuspend; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   285
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   286
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   287
// empty vm op, when forcing a safepoint to suspend threads from jvmti
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   288
class VM_ThreadsSuspendJVMTI: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   289
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   290
  VMOp_Type type() const { return VMOp_ThreadsSuspendJVMTI; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   291
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   292
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   293
// empty vm op, when forcing a safepoint due to inline cache buffers being full
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   294
class VM_ICBufferFull: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   295
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   296
  VMOp_Type type() const { return VMOp_ICBufferFull; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   297
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   298
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   299
// empty asynchronous vm op, when forcing a safepoint to scavenge monitors
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   300
class VM_ScavengeMonitors: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   301
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   302
  VMOp_Type type() const                         { return VMOp_ScavengeMonitors; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   307
// Base class for invoking parts of a gtest in a safepoint.
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   308
// Derived classes provide the doit method.
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   309
// Typically also need to transition the gtest thread from native to VM.
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   310
class VM_GTestExecuteAtSafepoint: public VM_Operation {
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   311
 public:
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   312
  VMOp_Type type() const                         { return VMOp_GTestExecuteAtSafepoint; }
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   313
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   314
 protected:
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   315
  VM_GTestExecuteAtSafepoint() {}
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   316
};
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   317
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   318
class VM_MarkActiveNMethods: public VM_Operation {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   319
 public:
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   320
  VM_MarkActiveNMethods() {}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   321
  VMOp_Type type() const                         { return VMOp_MarkActiveNMethods; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   322
  void doit();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   323
  bool allow_nested_vm_operations() const        { return true; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   324
};
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   325
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   326
// 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
   327
// current thread.  Only used through Deoptimization::deoptimize_frame.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
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
   329
  friend class Deoptimization;
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   330
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  JavaThread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
  intptr_t*   _id;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31790
diff changeset
   334
  int _reason;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31790
diff changeset
   335
  VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id, int reason);
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   336
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  bool allow_nested_vm_operations() const        { return true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
class VM_DeoptimizeAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 37466
diff changeset
   346
  Klass* _dependee;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  VM_DeoptimizeAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
class VM_ZombieAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  VM_ZombieAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  VMOp_Type type() const                         { return VMOp_ZombieAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
class VM_Verify: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  VMOp_Type type() const { return VMOp_Verify; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
class VM_PrintThreads: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
  bool _print_concurrent_locks;
50785
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   375
  bool _print_extended_info;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
 public:
50785
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   377
  VM_PrintThreads()
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   378
    : _out(tty), _print_concurrent_locks(PrintConcurrentLocks), _print_extended_info(false)
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   379
  {}
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   380
  VM_PrintThreads(outputStream* out, bool print_concurrent_locks, bool print_extended_info)
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   381
    : _out(out), _print_concurrent_locks(print_concurrent_locks), _print_extended_info(print_extended_info)
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   382
  {}
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   383
  VMOp_Type type() const {
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   384
    return VMOp_PrintThreads;
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   385
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
class VM_PrintJNI: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  VM_PrintJNI()                         { _out = tty; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  VM_PrintJNI(outputStream* out)        { _out = out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  VMOp_Type type() const                { return VMOp_PrintJNI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   401
class VM_PrintMetadata : public VM_Operation {
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   402
 private:
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   403
  outputStream* const _out;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   404
  const size_t        _scale;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   405
  const int           _flags;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   406
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   407
 public:
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   408
  VM_PrintMetadata(outputStream* out, size_t scale, int flags)
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   409
    : _out(out), _scale(scale), _flags(flags)
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   410
  {};
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   411
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   412
  VMOp_Type type() const  { return VMOp_PrintMetadata; }
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   413
  void doit();
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   414
};
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   415
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
class DeadlockCycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
class VM_FindDeadlocks: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
 private:
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   419
  bool              _concurrent_locks;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   420
  DeadlockCycle*    _deadlocks;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   421
  outputStream*     _out;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   422
  ThreadsListSetter _setter;  // Helper to set hazard ptr in the originating thread
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   423
                              // which protects the JavaThreads in _deadlocks.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
 public:
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 50966
diff changeset
   426
  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _deadlocks(NULL), _out(NULL), _setter() {};
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 50966
diff changeset
   427
  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _deadlocks(NULL), _out(st) {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  ~VM_FindDeadlocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  DeadlockCycle* result()      { return _deadlocks; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
  VMOp_Type type() const       { return VMOp_FindDeadlocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
class ThreadDumpResult;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
class ThreadConcurrentLocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
class VM_ThreadDump : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  ThreadDumpResult*              _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
  int                            _num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  GrowableArray<instanceHandle>* _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  int                            _max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  bool                           _with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  bool                           _with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
53504
391d671f222b 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52925
diff changeset
   448
  void snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
                int max_depth,  // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
                GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
                int num_threads, // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
                int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  VMOp_Type type() const { return VMOp_ThreadDump; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
class VM_Exit: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  int  _exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  static volatile bool _vm_exited;
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49323
diff changeset
   474
  static Thread * volatile _shutdown_thread;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  static void wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  VM_Exit(int exit_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    _exit_code = exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  static int wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  static int set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  static bool vm_exited()                      { return _vm_exited; }
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49323
diff changeset
   483
  static Thread * shutdown_thread()            { return _shutdown_thread; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  static void block_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
    if (_vm_exited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
      wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  VMOp_Type type() const { return VMOp_Exit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   492
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   493
class VM_PrintCompileQueue: public VM_Operation {
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   494
 private:
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   495
  outputStream* _out;
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   496
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   497
 public:
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   498
  VM_PrintCompileQueue(outputStream* st) : _out(st) {}
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   499
  VMOp_Type type() const { return VMOp_PrintCompileQueue; }
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   500
  Mode evaluation_mode() const { return _safepoint; }
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   501
  void doit();
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   502
};
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   503
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   504
#if INCLUDE_SERVICES
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   505
class VM_PrintClassHierarchy: public VM_Operation {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   506
 private:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   507
  outputStream* _out;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   508
  bool _print_interfaces;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   509
  bool _print_subclasses;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   510
  char* _classname;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   511
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   512
 public:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   513
  VM_PrintClassHierarchy(outputStream* st, bool print_interfaces, bool print_subclasses, char* classname) :
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   514
    _out(st), _print_interfaces(print_interfaces), _print_subclasses(print_subclasses),
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   515
    _classname(classname) {}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   516
  VMOp_Type type() const { return VMOp_PrintClassHierarchy; }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   517
  void doit();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   518
};
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   519
#endif // INCLUDE_SERVICES
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   520
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52925
diff changeset
   521
#endif // SHARE_RUNTIME_VMOPERATIONS_HPP