src/hotspot/share/runtime/vmOperations.hpp
author rehn
Fri, 29 Nov 2019 12:09:25 +0100
changeset 59325 3636bab5e81e
parent 59067 f080b08daace
permissions -rw-r--r--
8234086: VM operation can be simplified Reviewed-by: kbarrett, dholmes, dcubed
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)                          \
59067
f080b08daace 8232588: G1 concurrent System.gc can return early or late
kbarrett
parents: 59053
diff changeset
    69
  template(G1TryInitiateConcMark)                 \
53541
4e325f8b50ce 8217858: ZGC: Clean up ZDriver
pliden
parents: 53507
diff changeset
    70
  template(ZMarkStart)                            \
4e325f8b50ce 8217858: ZGC: Clean up ZDriver
pliden
parents: 53507
diff changeset
    71
  template(ZMarkEnd)                              \
4e325f8b50ce 8217858: ZGC: Clean up ZDriver
pliden
parents: 53507
diff changeset
    72
  template(ZRelocateStart)                        \
55603
3868dde58ebb 8227175: ZGC: ZHeapIterator visits potentially dead objects
stefank
parents: 55571
diff changeset
    73
  template(ZVerify)                               \
47881
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47802
diff changeset
    74
  template(HandshakeOneThread)                    \
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47802
diff changeset
    75
  template(HandshakeAllThreads)                   \
0ce0ac68ace7 8189941: Implementation JEP 312: Thread-local handshake
rehn
parents: 47802
diff changeset
    76
  template(HandshakeFallback)                     \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  template(EnableBiasedLocking)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  template(BulkRevokeBias)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  template(PopulateDumpSharedSpace)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  template(JNIFunctionTableCopier)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  template(RedefineClasses)                       \
23180
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
    82
  template(UpdateForPopTopFrame)                  \
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
    83
  template(SetFramePop)                           \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  template(GetOwnedMonitorInfo)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  template(GetObjectMonitorUsage)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  template(GetCurrentContendedMonitor)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  template(GetStackTrace)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  template(GetMultipleStackTraces)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  template(GetAllStackTraces)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  template(GetThreadListStackTraces)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  template(GetFrameCount)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  template(GetFrameLocation)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  template(ChangeBreakpoints)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  template(GetOrSetLocal)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  template(GetCurrentLocation)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  template(EnterInterpOnlyMode)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  template(ChangeSingleStep)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  template(HeapWalkOperation)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  template(HeapIterateOperation)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  template(ReportJavaOutOfMemory)                 \
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8921
diff changeset
   101
  template(JFRCheckpoint)                         \
52925
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   102
  template(ShenandoahFullGC)                      \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   103
  template(ShenandoahInitMark)                    \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   104
  template(ShenandoahFinalMarkStartEvac)          \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   105
  template(ShenandoahFinalEvac)                   \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   106
  template(ShenandoahInitTraversalGC)             \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   107
  template(ShenandoahFinalTraversalGC)            \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   108
  template(ShenandoahInitUpdateRefs)              \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   109
  template(ShenandoahFinalUpdateRefs)             \
9c18c9d839d3 8214259: Implementation: JEP 189: Shenandoah: A Low-Pause-Time Garbage Collector (Experimental)
rkennke
parents: 52877
diff changeset
   110
  template(ShenandoahDegeneratedGC)               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  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
   112
  template(LinuxDllLoad)                          \
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   113
  template(RotateGCLog)                           \
23848
2a4fff3b50c1 8039597: WhiteBox :: clean type profiling data
iignatyev
parents: 23517
diff changeset
   114
  template(WhiteBoxOperation)                     \
55206
2fe2063fe567 8225019: Update JVMCI
kvn
parents: 55005
diff changeset
   115
  template(JVMCIResizeCounters)                   \
25051
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 23848
diff changeset
   116
  template(ClassLoaderStatsOperation)             \
50443
8e56de95ce10 8203682: Add jcmd "VM.classloaders" command to print out class loader hierarchy, details
stuefe
parents: 50419
diff changeset
   117
  template(ClassLoaderHierarchyOperation)         \
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27696
diff changeset
   118
  template(DumpHashtable)                         \
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31234
diff changeset
   119
  template(DumpTouchedMethods)                    \
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   120
  template(MarkActiveNMethods)                    \
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   121
  template(PrintCompileQueue)                     \
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   122
  template(PrintClassHierarchy)                   \
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   123
  template(ThreadSuspend)                         \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   124
  template(ThreadsSuspendJVMTI)                   \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   125
  template(ICBufferFull)                          \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   126
  template(ScavengeMonitors)                      \
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   127
  template(PrintMetadata)                         \
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   128
  template(GTestExecuteAtSafepoint)               \
55571
49102ba8cf14 8214542: JFR: Old Object Sample event slow on a deep heap in debug builds
mgronlun
parents: 55479
diff changeset
   129
  template(JFROldObject)                          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
59325
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59067
diff changeset
   131
class VM_Operation : public StackObj {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  enum VMOp_Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    VM_OPS_DO(VM_OP_ENUM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    VMOp_Terminating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  Thread*         _calling_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  long            _timestamp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  VM_Operation*   _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  VM_Operation*   _prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // The VM operation name array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  static const char* _names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
 public:
59325
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59067
diff changeset
   148
  VM_Operation() : _calling_thread(NULL), _timestamp(0),  _next(NULL), _prev(NULL) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // VM operation support (used by VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  Thread* calling_thread() const                 { return _calling_thread; }
57758
91a758925be7 8225788: Dead code in thread and safepoint
rehn
parents: 55625
diff changeset
   152
  void set_calling_thread(Thread* thread);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  long timestamp() const              { return _timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  void set_timestamp(long timestamp)  { _timestamp = timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  // Called by VM thread - does in turn invoke doit(). Do not override this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  void evaluate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  // evaluate() is called by the VMThread and in turn calls doit().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  // doit_prologue() is called in that thread before transferring control to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  // If doit_prologue() returns true the VM operation will proceed, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  // doit_epilogue() will be called by the JavaThread once the VM operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  // completes. If doit_prologue() returns false the VM operation is cancelled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  virtual void doit()                            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual bool doit_prologue()                   { return true; };
59325
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59067
diff changeset
   169
  virtual void doit_epilogue()                   {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Linking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  VM_Operation *next() const                     { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  VM_Operation *prev() const                     { return _prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  void set_next(VM_Operation *next)              { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  void set_prev(VM_Operation *prev)              { _prev = prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20290
diff changeset
   177
  // Configuration. Override these appropriately in subclasses.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  virtual VMOp_Type type() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  virtual bool allow_nested_vm_operations() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  virtual void oops_do(OopClosure* f)              { /* do nothing */ };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
59325
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59067
diff changeset
   182
  // An operation can either be done inside a safepoint
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59067
diff changeset
   183
  // or concurrently with Java threads running.
3636bab5e81e 8234086: VM operation can be simplified
rehn
parents: 59067
diff changeset
   184
  virtual bool evaluate_at_safepoint() const { return true; }
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   185
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
  // Debugging
31234
48000028382c 8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents: 29071
diff changeset
   187
  virtual void print_on_error(outputStream* st) const;
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   188
  virtual const char* name() const  { return _names[type()]; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  static const char* name(int type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
    assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
    return _names[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  void print_on(outputStream* st) const { print_on_error(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
53895
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   198
class VM_None: public VM_Operation {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   199
  const char* _reason;
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   200
 public:
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   201
  VM_None(const char* reason) : _reason(reason) {}
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   202
  const char* name() const { return _reason; }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   203
  VMOp_Type type() const { return VMOp_None; }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   204
  void doit() {};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   205
};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   206
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   207
class VM_Cleanup: public VM_Operation {
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   208
 public:
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   209
  VMOp_Type type() const { return VMOp_Cleanup; }
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   210
  void doit() {};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   211
};
b22d8ae270a2 8219436: Safepoint logs correction and misc
rehn
parents: 53547
diff changeset
   212
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
class VM_ThreadStop: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  oop     _thread;        // The Thread that the Throwable is thrown against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  oop     _throwable;     // The Throwable thrown at the target Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  // 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
   219
  // VM operation is executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  VM_ThreadStop(oop thread, oop throwable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
    _throwable = throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  VMOp_Type type() const                         { return VMOp_ThreadStop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  oop target_thread() const                      { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  oop throwable() const                          { return _throwable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  void oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
    f->do_oop(&_thread); f->do_oop(&_throwable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   237
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
   238
 private:
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   239
  bool _preserve_static_stubs;
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   240
 public:
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   241
  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
   242
  void doit();
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   243
  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
   244
};
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   245
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   246
// empty vm op, evaluated just to force a safepoint
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
class VM_ForceSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  void doit()         {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  VMOp_Type type() const { return VMOp_ForceSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   253
// empty vm op, when forcing a safepoint to suspend a thread
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   254
class VM_ThreadSuspend: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   255
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   256
  VMOp_Type type() const { return VMOp_ThreadSuspend; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   257
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   258
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   259
// 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
   260
class VM_ThreadsSuspendJVMTI: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   261
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   262
  VMOp_Type type() const { return VMOp_ThreadsSuspendJVMTI; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   263
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   264
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   265
// 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
   266
class VM_ICBufferFull: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   267
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   268
  VMOp_Type type() const { return VMOp_ICBufferFull; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   269
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   270
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   271
// 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
   272
// Derived classes provide the doit method.
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   273
// 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
   274
class VM_GTestExecuteAtSafepoint: public VM_Operation {
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   275
 public:
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   276
  VMOp_Type type() const                         { return VMOp_GTestExecuteAtSafepoint; }
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   277
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   278
 protected:
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   279
  VM_GTestExecuteAtSafepoint() {}
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   280
};
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   281
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   282
class VM_MarkActiveNMethods: public VM_Operation {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   283
 public:
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   284
  VM_MarkActiveNMethods() {}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   285
  VMOp_Type type() const                         { return VMOp_MarkActiveNMethods; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   286
  void doit();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   287
  bool allow_nested_vm_operations() const        { return true; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   288
};
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   289
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   290
// 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
   291
// current thread.  Only used through Deoptimization::deoptimize_frame.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
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
   293
  friend class Deoptimization;
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   294
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  JavaThread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  intptr_t*   _id;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31790
diff changeset
   298
  int _reason;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31790
diff changeset
   299
  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
   300
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  bool allow_nested_vm_operations() const        { return true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
class VM_DeoptimizeAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 37466
diff changeset
   310
  Klass* _dependee;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
  VM_DeoptimizeAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   317
489c9b5090e2 Initial load
duke
parents:
diff changeset
   318
489c9b5090e2 Initial load
duke
parents:
diff changeset
   319
class VM_ZombieAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  VM_ZombieAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  VMOp_Type type() const                         { return VMOp_ZombieAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
class VM_Verify: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  VMOp_Type type() const { return VMOp_Verify; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
class VM_PrintThreads: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  bool _print_concurrent_locks;
50785
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   339
  bool _print_extended_info;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
 public:
50785
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   341
  VM_PrintThreads()
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   342
    : _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
   343
  {}
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   344
  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
   345
    : _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
   346
  {}
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   347
  VMOp_Type type() const {
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   348
    return VMOp_PrintThreads;
d1b24f2ceca5 8200720: Print additional information in thread dump (times, allocated bytes etc.)
ghaug
parents: 50525
diff changeset
   349
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  void doit_epilogue();
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_PrintJNI: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  VM_PrintJNI()                         { _out = tty; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  VM_PrintJNI(outputStream* out)        { _out = out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
  VMOp_Type type() const                { return VMOp_PrintJNI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   365
class VM_PrintMetadata : public VM_Operation {
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   366
 private:
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   367
  outputStream* const _out;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   368
  const size_t        _scale;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   369
  const int           _flags;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   370
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   371
 public:
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   372
  VM_PrintMetadata(outputStream* out, size_t scale, int flags)
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   373
    : _out(out), _scale(scale), _flags(flags)
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   374
  {};
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   375
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   376
  VMOp_Type type() const  { return VMOp_PrintMetadata; }
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   377
  void doit();
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   378
};
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   379
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
class DeadlockCycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
class VM_FindDeadlocks: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
 private:
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   383
  bool              _concurrent_locks;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   384
  DeadlockCycle*    _deadlocks;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   385
  outputStream*     _out;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   386
  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
   387
                              // which protects the JavaThreads in _deadlocks.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
 public:
51334
cc2c79d22508 8208671: Runtime, JFR, Serviceability changes to allow enabling -Wreorder
tschatzl
parents: 50966
diff changeset
   390
  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
   391
  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _deadlocks(NULL), _out(st) {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
  ~VM_FindDeadlocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
  DeadlockCycle* result()      { return _deadlocks; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
  VMOp_Type type() const       { return VMOp_FindDeadlocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
class ThreadDumpResult;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
class ThreadConcurrentLocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
class VM_ThreadDump : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  ThreadDumpResult*              _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  int                            _num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  GrowableArray<instanceHandle>* _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  int                            _max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
  bool                           _with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  bool                           _with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
53504
391d671f222b 8213231: ThreadSnapshot::_threadObj can become stale
ehelin
parents: 52925
diff changeset
   412
  void snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
                int max_depth,  // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
                GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
                int num_threads, // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
                int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
  VMOp_Type type() const { return VMOp_ThreadDump; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
class VM_Exit: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  int  _exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  static volatile bool _vm_exited;
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49323
diff changeset
   438
  static Thread * volatile _shutdown_thread;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  static void wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  VM_Exit(int exit_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    _exit_code = exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  static int wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  static int set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  static bool vm_exited()                      { return _vm_exited; }
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49323
diff changeset
   447
  static Thread * shutdown_thread()            { return _shutdown_thread; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
  static void block_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    if (_vm_exited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
      wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  VMOp_Type type() const { return VMOp_Exit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   456
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   457
class VM_PrintCompileQueue: public VM_Operation {
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   458
 private:
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   459
  outputStream* _out;
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   460
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   461
 public:
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   462
  VM_PrintCompileQueue(outputStream* st) : _out(st) {}
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   463
  VMOp_Type type() const { return VMOp_PrintCompileQueue; }
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   464
  void doit();
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   465
};
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   466
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   467
#if INCLUDE_SERVICES
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   468
class VM_PrintClassHierarchy: public VM_Operation {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   469
 private:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   470
  outputStream* _out;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   471
  bool _print_interfaces;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   472
  bool _print_subclasses;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   473
  char* _classname;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   474
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   475
 public:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   476
  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
   477
    _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
   478
    _classname(classname) {}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   479
  VMOp_Type type() const { return VMOp_PrintClassHierarchy; }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   480
  void doit();
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   481
};
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   482
#endif // INCLUDE_SERVICES
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   483
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 52925
diff changeset
   484
#endif // SHARE_RUNTIME_VMOPERATIONS_HPP