src/hotspot/share/runtime/vm_operations.hpp
author pliden
Tue, 12 Jun 2018 17:40:28 +0200
changeset 50525 767cdb97f103
parent 50443 8e56de95ce10
child 50785 d1b24f2ceca5
permissions -rw-r--r--
8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental) Reviewed-by: pliden, stefank, eosterlund, ehelin, sjohanss, rbackman, coleenp, ihse, jgeorge, lmesnik, rkennke Contributed-by: per.liden@oracle.com, stefan.karlsson@oracle.com, erik.osterlund@oracle.com, mikael.gerdin@oracle.com, kim.barrett@oracle.com, nils.eliasson@oracle.com, rickard.backman@oracle.com, rwestrel@redhat.com, coleen.phillimore@oracle.com, robbin.ehn@oracle.com, gerard.ziemski@oracle.com, hugh.wilkinson@intel.com, sandhya.viswanathan@intel.com, bill.npo.wheeler@intel.com, vinay.k.awasthi@intel.com, yasuenag@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
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
     2
 * Copyright (c) 1997, 2018, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_VM_OPERATIONS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    26
#define SHARE_VM_RUNTIME_VM_OPERATIONS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    28
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    30
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    31
#include "runtime/thread.hpp"
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)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  template(Dummy)                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  template(ThreadStop)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  template(ThreadDump)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  template(PrintThreads)                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  template(FindDeadlocks)                         \
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
    48
  template(ClearICs)                              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  template(ForceSafepoint)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  template(ForceAsyncSafepoint)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  template(Deoptimize)                            \
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)                             \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    55
  template(UnlinkSymbols)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  template(Verify)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  template(PrintJNI)                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  template(HeapDumper)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  template(DeoptimizeTheWorld)                    \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    60
  template(CollectForMetadataAllocation)          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  template(GC_HeapInspection)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  template(GenCollectFull)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  template(GenCollectFullConcurrent)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  template(GenCollectForAllocation)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  template(ParallelGCFailedAllocation)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  template(ParallelGCSystemGC)                    \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    67
  template(CGC_Operation)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  template(CMS_Initial_Mark)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  template(CMS_Final_Remark)                      \
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
    70
  template(G1CollectForAllocation)                \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    71
  template(G1CollectFull)                         \
50525
767cdb97f103 8204210: Implementation: JEP 333: ZGC: A Scalable Low-Latency Garbage Collector (Experimental)
pliden
parents: 50443
diff changeset
    72
  template(ZOperation)                            \
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(RevokeBias)                            \
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)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  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
   103
  template(LinuxDllLoad)                          \
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   104
  template(RotateGCLog)                           \
23848
2a4fff3b50c1 8039597: WhiteBox :: clean type profiling data
iignatyev
parents: 23517
diff changeset
   105
  template(WhiteBoxOperation)                     \
25051
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 23848
diff changeset
   106
  template(ClassLoaderStatsOperation)             \
50443
8e56de95ce10 8203682: Add jcmd "VM.classloaders" command to print out class loader hierarchy, details
stuefe
parents: 50419
diff changeset
   107
  template(ClassLoaderHierarchyOperation)         \
28363
047115468f16 8059510: Compact symbol table layout inside shared archive.
jiangli
parents: 27696
diff changeset
   108
  template(DumpHashtable)                         \
31790
4a08476437e8 8025692: Log what methods are touched at run-time
minqi
parents: 31234
diff changeset
   109
  template(DumpTouchedMethods)                    \
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   110
  template(MarkActiveNMethods)                    \
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   111
  template(PrintCompileQueue)                     \
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   112
  template(PrintClassHierarchy)                   \
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   113
  template(ThreadSuspend)                         \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   114
  template(CTWThreshold)                          \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   115
  template(ThreadsSuspendJVMTI)                   \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   116
  template(ICBufferFull)                          \
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   117
  template(ScavengeMonitors)                      \
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   118
  template(PrintMetadata)                         \
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   119
  template(GTestExecuteAtSafepoint)               \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11480
diff changeset
   121
class VM_Operation: public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  enum Mode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    _safepoint,       // blocking,        safepoint, vm_op C-heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    _no_safepoint,    // blocking,     no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    _concurrent,      // non-blocking, no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _async_safepoint  // non-blocking,    safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  enum VMOp_Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
    VM_OPS_DO(VM_OP_ENUM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
    VMOp_Terminating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  Thread*         _calling_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  ThreadPriority  _priority;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  long            _timestamp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  VM_Operation*   _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
  VM_Operation*   _prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  // The VM operation name array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  static const char* _names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  VM_Operation()  { _calling_thread = NULL; _next = NULL; _prev = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  virtual ~VM_Operation() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // VM operation support (used by VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  Thread* calling_thread() const                 { return _calling_thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  ThreadPriority priority()                      { return _priority; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  void set_calling_thread(Thread* thread, ThreadPriority priority);
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; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  virtual void doit_epilogue()                   {}; // Note: Not called if mode is: _concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  // Type test
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  virtual bool is_methodCompiler() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // Linking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  VM_Operation *next() const                     { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  VM_Operation *prev() const                     { return _prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  void set_next(VM_Operation *next)              { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  void set_prev(VM_Operation *prev)              { _prev = prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20290
diff changeset
   180
  // Configuration. Override these appropriately in subclasses.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual VMOp_Type type() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  virtual Mode evaluation_mode() const            { return _safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  virtual bool allow_nested_vm_operations() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  virtual bool is_cheap_allocated() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  virtual void oops_do(OopClosure* f)              { /* do nothing */ };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
  // CAUTION: <don't hang yourself with following rope>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  // If you override these methods, make sure that the evaluation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
  // of these methods is race-free and non-blocking, since these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  // methods may be evaluated either by the mutators or by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  // vm thread, either concurrently with mutators or with the mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // stopped. In other words, taking locks is verboten, and if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  // are any races in evaluating the conditions, they'd better be benign.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  virtual bool evaluate_at_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
    return evaluation_mode() == _safepoint  ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  virtual bool evaluate_concurrently() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
    return evaluation_mode() == _concurrent ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   203
  static const char* mode_to_string(Mode mode);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   204
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
  // Debugging
31234
48000028382c 8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file
coleenp
parents: 29071
diff changeset
   206
  virtual void print_on_error(outputStream* st) const;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  const char* name() const { return _names[type()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  static const char* name(int type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
    return _names[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
  void print_on(outputStream* st) const { print_on_error(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
class VM_ThreadStop: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  oop     _thread;        // The Thread that the Throwable is thrown against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  oop     _throwable;     // The Throwable thrown at the target Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  // 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
   223
  // VM operation is executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  VM_ThreadStop(oop thread, oop throwable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    _throwable = throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  VMOp_Type type() const                         { return VMOp_ThreadStop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
  oop target_thread() const                      { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  oop throwable() const                          { return _throwable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
  void oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
    f->do_oop(&_thread); f->do_oop(&_throwable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   243
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
   244
 private:
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   245
  bool _preserve_static_stubs;
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   246
 public:
37289
9989add27bf4 8067247: Crash: assert(method_holder->data() == 0 ...) failed: a) MT-unsafe modification of inline cache
jcm
parents: 36322
diff changeset
   247
  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
   248
  void doit();
35086
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   249
  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
   250
};
bbf32241d851 8072008: Emit direct call instead of linkTo* for recursive indy/MH.invoke* calls
vlivanov
parents: 33160
diff changeset
   251
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   252
// empty vm op, evaluated just to force a safepoint
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
class VM_ForceSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
  void doit()         {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
  VMOp_Type type() const { return VMOp_ForceSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   259
// empty vm op, when forcing a safepoint to suspend a thread
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   260
class VM_ThreadSuspend: 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_ThreadSuspend; }
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 ctw threshold is reached for the sweeper
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   266
class VM_CTWThreshold: public VM_ForceSafepoint {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
 public:
46495
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   268
  VMOp_Type type() const { return VMOp_CTWThreshold; }
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
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   271
// 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
   272
class VM_ThreadsSuspendJVMTI: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   273
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   274
  VMOp_Type type() const { return VMOp_ThreadsSuspendJVMTI; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   275
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   276
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   277
// 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
   278
class VM_ICBufferFull: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   279
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   280
  VMOp_Type type() const { return VMOp_ICBufferFull; }
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   281
};
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   282
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   283
// empty asynchronous vm op, when forcing a safepoint to scavenge monitors
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   284
class VM_ScavengeMonitors: public VM_ForceSafepoint {
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   285
 public:
34f7d403039f 8152953: ForceSafepoint operations should be more specific
rehn
parents: 46329
diff changeset
   286
  VMOp_Type type() const                         { return VMOp_ScavengeMonitors; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
48787
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   291
// 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
   292
// Derived classes provide the doit method.
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   293
// 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
   294
class VM_GTestExecuteAtSafepoint: public VM_Operation {
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   295
 public:
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   296
  VMOp_Type type() const                         { return VMOp_GTestExecuteAtSafepoint; }
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   297
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   298
 protected:
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   299
  VM_GTestExecuteAtSafepoint() {}
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   300
};
7638bf98a312 8194312: Support parallel and concurrent JNI global handle processing
kbarrett
parents: 48631
diff changeset
   301
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
class VM_Deoptimize: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
  VM_Deoptimize() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  VMOp_Type type() const                        { return VMOp_Deoptimize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   310
class VM_MarkActiveNMethods: public VM_Operation {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   311
 public:
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   312
  VM_MarkActiveNMethods() {}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   313
  VMOp_Type type() const                         { return VMOp_MarkActiveNMethods; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   314
  void doit();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   315
  bool allow_nested_vm_operations() const        { return true; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   316
};
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   317
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   318
// 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
   319
// current thread.  Only used through Deoptimization::deoptimize_frame.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
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
   321
  friend class Deoptimization;
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   322
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  JavaThread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  intptr_t*   _id;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31790
diff changeset
   326
  int _reason;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31790
diff changeset
   327
  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
   328
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
  VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
  bool allow_nested_vm_operations() const        { return true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
class VM_DeoptimizeAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
 private:
46329
53ccc37bda19 8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents: 37466
diff changeset
   338
  Klass* _dependee;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
  VM_DeoptimizeAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
  VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
class VM_ZombieAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
  VM_ZombieAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  VMOp_Type type() const                         { return VMOp_ZombieAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   356
class VM_UnlinkSymbols: public VM_Operation {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   357
 public:
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   358
  VM_UnlinkSymbols() {}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   359
  VMOp_Type type() const                         { return VMOp_UnlinkSymbols; }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   360
  void doit();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   361
  bool allow_nested_vm_operations() const        { return true; }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   362
};
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   363
1
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;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  VM_PrintThreads()                                                { _out = tty; _print_concurrent_locks = PrintConcurrentLocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  VM_PrintThreads(outputStream* out, bool print_concurrent_locks)  { _out = out; _print_concurrent_locks = print_concurrent_locks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  VMOp_Type type() const                                           {  return VMOp_PrintThreads; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
class VM_PrintJNI: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  VM_PrintJNI()                         { _out = tty; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  VM_PrintJNI(outputStream* out)        { _out = out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  VMOp_Type type() const                { return VMOp_PrintJNI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   394
class VM_PrintMetadata : public VM_Operation {
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   395
 private:
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   396
  outputStream* const _out;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   397
  const size_t        _scale;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   398
  const int           _flags;
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   399
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   400
 public:
49980
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   401
  VM_PrintMetadata(outputStream* out, size_t scale, int flags)
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   402
    : _out(out), _scale(scale), _flags(flags)
57dd7b4ba338 8201572: Improve Metaspace Statistics
stuefe
parents: 49636
diff changeset
   403
  {};
47802
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   404
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   405
  VMOp_Type type() const  { return VMOp_PrintMetadata; }
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   406
  void doit();
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   407
};
18dccdc438d7 8189688: NMT: Report per-class load metadata information
zgu
parents: 47216
diff changeset
   408
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
class DeadlockCycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
class VM_FindDeadlocks: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
 private:
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   412
  bool              _concurrent_locks;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   413
  DeadlockCycle*    _deadlocks;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   414
  outputStream*     _out;
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   415
  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
   416
                              // which protects the JavaThreads in _deadlocks.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
 public:
48105
8d15b1369c7a 8167108: inconsistent handling of SR_lock can lead to crashes
dcubed
parents: 47881
diff changeset
   419
  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL), _setter() {};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  ~VM_FindDeadlocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  DeadlockCycle* result()      { return _deadlocks; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
  VMOp_Type type() const       { return VMOp_FindDeadlocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   425
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   426
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   427
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
class ThreadDumpResult;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
class ThreadConcurrentLocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
489c9b5090e2 Initial load
duke
parents:
diff changeset
   432
class VM_ThreadDump : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
  ThreadDumpResult*              _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  int                            _num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
  GrowableArray<instanceHandle>* _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
  int                            _max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  bool                           _with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  bool                           _with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
                int max_depth,  // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
                GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
                int num_threads, // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
                int max_depth,
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
  VMOp_Type type() const { return VMOp_ThreadDump; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
class VM_Exit: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
  int  _exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  static volatile bool _vm_exited;
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49323
diff changeset
   467
  static Thread * volatile _shutdown_thread;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
  static void wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
  VM_Exit(int exit_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
    _exit_code = exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
  static int wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  static int set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  static bool vm_exited()                      { return _vm_exited; }
49636
6d5bd76650df 8199813: SIGSEGV in ThreadsList::includes()
dcubed
parents: 49323
diff changeset
   476
  static Thread * shutdown_thread()            { return _shutdown_thread; }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  static void block_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
    if (_vm_exited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
      wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  VMOp_Type type() const { return VMOp_Exit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   485
36322
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   486
class VM_PrintCompileQueue: public VM_Operation {
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   487
 private:
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   488
  outputStream* _out;
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   489
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   490
 public:
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   491
  VM_PrintCompileQueue(outputStream* st) : _out(st) {}
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   492
  VMOp_Type type() const { return VMOp_PrintCompileQueue; }
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   493
  Mode evaluation_mode() const { return _safepoint; }
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   494
  void doit();
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   495
};
218528915a61 8149789: SIGSEGV in CompileTask::print
neliasso
parents: 35825
diff changeset
   496
29071
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   497
#if INCLUDE_SERVICES
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   498
class VM_PrintClassHierarchy: public VM_Operation {
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   499
 private:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   500
  outputStream* _out;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   501
  bool _print_interfaces;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   502
  bool _print_subclasses;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   503
  char* _classname;
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   504
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   505
 public:
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   506
  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
   507
    _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
   508
    _classname(classname) {}
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   509
  VMOp_Type type() const { return VMOp_PrintClassHierarchy; }
73f45d04ad7a 8054888: Runtime: Add Diagnostic Command that prints the class hierarchy
cjplummer
parents: 28363
diff changeset
   510
  void doit();
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
#endif // INCLUDE_SERVICES
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   513
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   514
#endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP