hotspot/src/share/vm/runtime/vm_operations.hpp
author anoll
Fri, 24 Oct 2014 14:25:46 +0200
changeset 27420 04e6f914cce1
parent 26837 72a43d3841e7
child 27696 c43940b3cf78
permissions -rw-r--r--
8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full. Summary: Use separate sweeper thread; enables more aggressive sweeping. Reviewed-by: kvn, jrose
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
23180
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
     2
 * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4750
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_VM_OPERATIONS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    26
#define SHARE_VM_RUNTIME_VM_OPERATIONS_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    27
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    28
#include "classfile/javaClasses.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    29
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    30
#include "oops/oop.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    31
#include "runtime/thread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    32
#include "utilities/top.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
    33
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
// The following classes are used for operations
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
// initiated by a Java thread but that must
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
// take place in the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#define VM_OP_ENUM(type)   VMOp_##type,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
// Note: When new VM_XXX comes up, add 'XXX' to the template table.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#define VM_OPS_DO(template)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  template(Dummy)                                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  template(ThreadStop)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  template(ThreadDump)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  template(PrintThreads)                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  template(FindDeadlocks)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  template(ForceSafepoint)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  template(ForceAsyncSafepoint)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  template(Deoptimize)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  template(DeoptimizeFrame)                       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  template(DeoptimizeAll)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  template(ZombieAll)                             \
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
    53
  template(UnlinkSymbols)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  template(Verify)                                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  template(PrintJNI)                              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  template(HeapDumper)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  template(DeoptimizeTheWorld)                    \
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13195
diff changeset
    58
  template(CollectForMetadataAllocation)          \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  template(GC_HeapInspection)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  template(GenCollectFull)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  template(GenCollectFullConcurrent)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  template(GenCollectForAllocation)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  template(ParallelGCFailedAllocation)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  template(ParallelGCSystemGC)                    \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    65
  template(CGC_Operation)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  template(CMS_Initial_Mark)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  template(CMS_Final_Remark)                      \
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    68
  template(G1CollectFull)                         \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    69
  template(G1CollectForAllocation)                \
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 386
diff changeset
    70
  template(G1IncCollectionPause)                  \
26837
72a43d3841e7 8057536: Refactor G1 to allow context specific allocations
sjohanss
parents: 26587
diff changeset
    71
  template(DestroyAllocationContext)              \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  template(EnableBiasedLocking)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  template(RevokeBias)                            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  template(BulkRevokeBias)                        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  template(PopulateDumpSharedSpace)               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  template(JNIFunctionTableCopier)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  template(RedefineClasses)                       \
23180
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
    78
  template(UpdateForPopTopFrame)                  \
e87156376bed 6471769: Error: assert(_cur_stack_depth == count_frames(),"cur_stack_depth out of sync")
sspitsyn
parents: 22551
diff changeset
    79
  template(SetFramePop)                           \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  template(GetOwnedMonitorInfo)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  template(GetObjectMonitorUsage)                 \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  template(GetCurrentContendedMonitor)            \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  template(GetStackTrace)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  template(GetMultipleStackTraces)                \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  template(GetAllStackTraces)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  template(GetThreadListStackTraces)              \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  template(GetFrameCount)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  template(GetFrameLocation)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  template(ChangeBreakpoints)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  template(GetOrSetLocal)                         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  template(GetCurrentLocation)                    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  template(EnterInterpOnlyMode)                   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  template(ChangeSingleStep)                      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  template(HeapWalkOperation)                     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  template(HeapIterateOperation)                  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  template(ReportJavaOutOfMemory)                 \
11480
1bf714e8adb4 7115199: Add event tracing hooks and Java Flight Recorder infrastructure
phh
parents: 8921
diff changeset
    97
  template(JFRCheckpoint)                         \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  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
    99
  template(LinuxDllLoad)                          \
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   100
  template(RotateGCLog)                           \
23848
2a4fff3b50c1 8039597: WhiteBox :: clean type profiling data
iignatyev
parents: 23517
diff changeset
   101
  template(WhiteBoxOperation)                     \
25051
8110ec6e7340 8044107: Add Diagnostic Command to list all ClassLoaders
sla
parents: 23848
diff changeset
   102
  template(ClassLoaderStatsOperation)             \
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   103
  template(MarkActiveNMethods)                    \
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   104
  template(PrintCompileQueue)                     \
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   105
  template(PrintCodeList)                         \
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   106
  template(PrintCodeCache)                        \
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
13195
be27e1b6a4b9 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 11480
diff changeset
   108
class VM_Operation: public CHeapObj<mtInternal> {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  enum Mode {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _safepoint,       // blocking,        safepoint, vm_op C-heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    _no_safepoint,    // blocking,     no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    _concurrent,      // non-blocking, no safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _async_safepoint  // non-blocking,    safepoint, vm_op C-Heap allocated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  enum VMOp_Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
    VM_OPS_DO(VM_OP_ENUM)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    VMOp_Terminating
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  Thread*         _calling_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  ThreadPriority  _priority;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  long            _timestamp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  VM_Operation*   _next;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  VM_Operation*   _prev;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  // The VM operation name array
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
  static const char* _names[];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  VM_Operation()  { _calling_thread = NULL; _next = NULL; _prev = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  virtual ~VM_Operation() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // VM operation support (used by VM thread)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  Thread* calling_thread() const                 { return _calling_thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  ThreadPriority priority()                      { return _priority; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  void set_calling_thread(Thread* thread, ThreadPriority priority);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
  long timestamp() const              { return _timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  void set_timestamp(long timestamp)  { _timestamp = timestamp; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  // Called by VM thread - does in turn invoke doit(). Do not override this
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  void evaluate();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  // evaluate() is called by the VMThread and in turn calls doit().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  // doit_prologue() is called in that thread before transferring control to
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  // the VMThread.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  // If doit_prologue() returns true the VM operation will proceed, and
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  // doit_epilogue() will be called by the JavaThread once the VM operation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
  // completes. If doit_prologue() returns false the VM operation is cancelled.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  virtual void doit()                            = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  virtual bool doit_prologue()                   { return true; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
  virtual void doit_epilogue()                   {}; // Note: Not called if mode is: _concurrent
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  // Type test
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
  virtual bool is_methodCompiler() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  // Linking
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  VM_Operation *next() const                     { return _next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  VM_Operation *prev() const                     { return _prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  void set_next(VM_Operation *next)              { _next = next; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  void set_prev(VM_Operation *prev)              { _prev = prev; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
22551
9bf46d16dcc6 8025856: Fix typos in the GC code
jwilhelm
parents: 20290
diff changeset
   167
  // Configuration. Override these appropriately in subclasses.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  virtual VMOp_Type type() const = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
  virtual Mode evaluation_mode() const            { return _safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
  virtual bool allow_nested_vm_operations() const { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  virtual bool is_cheap_allocated() const         { return false; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  virtual void oops_do(OopClosure* f)              { /* do nothing */ };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
  // CAUTION: <don't hang yourself with following rope>
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
  // If you override these methods, make sure that the evaluation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
  // of these methods is race-free and non-blocking, since these
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  // methods may be evaluated either by the mutators or by the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
  // vm thread, either concurrently with mutators or with the mutators
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
  // stopped. In other words, taking locks is verboten, and if there
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
  // are any races in evaluating the conditions, they'd better be benign.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  virtual bool evaluate_at_safepoint() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    return evaluation_mode() == _safepoint  ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  virtual bool evaluate_concurrently() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    return evaluation_mode() == _concurrent ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
           evaluation_mode() == _async_safepoint;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   190
  static const char* mode_to_string(Mode mode);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 17112
diff changeset
   191
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  // Debugging
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
  void print_on_error(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  const char* name() const { return _names[type()]; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
  static const char* name(int type) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
    assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
    return _names[type];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
  void print_on(outputStream* st) const { print_on_error(st); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
class VM_ThreadStop: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  oop     _thread;        // The Thread that the Throwable is thrown against
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  oop     _throwable;     // The Throwable thrown at the target Thread
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
  // 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
   210
  // VM operation is executed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
  VM_ThreadStop(oop thread, oop throwable) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    _thread    = thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    _throwable = throwable;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
  VMOp_Type type() const                         { return VMOp_ThreadStop; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  oop target_thread() const                      { return _thread; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
  oop throwable() const                          { return _throwable;}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
  // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // GC support
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  void oops_do(OopClosure* f) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
    f->do_oop(&_thread); f->do_oop(&_throwable);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
// dummy vm op, evaluated just to force a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
class VM_ForceSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
  VM_ForceSafepoint() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
  void doit()         {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  VMOp_Type type() const { return VMOp_ForceSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
// dummy vm op, evaluated just to force a safepoint
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
class VM_ForceAsyncSafepoint: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
  VM_ForceAsyncSafepoint() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  void doit()              {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  VMOp_Type type() const                         { return VMOp_ForceAsyncSafepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  Mode evaluation_mode() const                   { return _async_safepoint; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  bool is_cheap_allocated() const                { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
class VM_Deoptimize: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
  VM_Deoptimize() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
  VMOp_Type type() const                        { return VMOp_Deoptimize; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
27420
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   256
class VM_MarkActiveNMethods: public VM_Operation {
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   257
 public:
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   258
  VM_MarkActiveNMethods() {}
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   259
  VMOp_Type type() const                         { return VMOp_MarkActiveNMethods; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   260
  void doit();
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   261
  bool allow_nested_vm_operations() const        { return true; }
04e6f914cce1 8046809: vm/mlvm/meth/stress/compiler/deoptimize CodeCache is full.
anoll
parents: 26837
diff changeset
   262
};
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   263
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   264
// 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
   265
// current thread.  Only used through Deoptimization::deoptimize_frame.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
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
   267
  friend class Deoptimization;
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   268
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  JavaThread* _thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  intptr_t*   _id;
7106
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   272
  VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id);
867c9d296c6b 6968367: can_post_on_exceptions is still using VM_DeoptimizeFrame in some places
never
parents: 5547
diff changeset
   273
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
  bool allow_nested_vm_operations() const        { return true;  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
class VM_DeoptimizeAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   283
  KlassHandle _dependee;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   284
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   285
  VM_DeoptimizeAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
class VM_ZombieAll: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  VM_ZombieAll() {}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  VMOp_Type type() const                         { return VMOp_ZombieAll; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
  bool allow_nested_vm_operations() const        { return true; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
#endif // PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   301
class VM_UnlinkSymbols: public VM_Operation {
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   302
 public:
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   303
  VM_UnlinkSymbols() {}
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   304
  VMOp_Type type() const                         { return VMOp_UnlinkSymbols; }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   305
  void doit();
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   306
  bool allow_nested_vm_operations() const        { return true; }
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   307
};
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 7397
diff changeset
   308
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
class VM_Verify: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
 private:
16680
960505df90e7 8011343: Add new flag for verifying the heap during startup
johnc
parents: 15926
diff changeset
   311
  bool _silent;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   312
 public:
17112
e49af4ba7755 8013132: Add a flag to turn off the output of the verbose verification code
stefank
parents: 16680
diff changeset
   313
  VM_Verify(bool silent = VerifySilently) : _silent(silent) {}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
  VMOp_Type type() const { return VMOp_Verify; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   315
  void doit();
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_PrintThreads: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   320
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   321
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   322
  bool _print_concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
  VM_PrintThreads()                                                { _out = tty; _print_concurrent_locks = PrintConcurrentLocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   325
  VM_PrintThreads(outputStream* out, bool print_concurrent_locks)  { _out = out; _print_concurrent_locks = print_concurrent_locks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
  VMOp_Type type() const                                           {  return VMOp_PrintThreads; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   331
489c9b5090e2 Initial load
duke
parents:
diff changeset
   332
class VM_PrintJNI: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   334
  outputStream* _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  VM_PrintJNI()                         { _out = tty; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
  VM_PrintJNI(outputStream* out)        { _out = out; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   338
  VMOp_Type type() const                { return VMOp_PrintJNI; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   339
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
class DeadlockCycle;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
class VM_FindDeadlocks: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  bool           _concurrent_locks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
  DeadlockCycle* _deadlocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  outputStream*  _out;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
  VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
  VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
  ~VM_FindDeadlocks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  DeadlockCycle* result()      { return _deadlocks; };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  VMOp_Type type() const       { return VMOp_FindDeadlocks; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
class ThreadDumpResult;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
class ThreadSnapshot;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
class ThreadConcurrentLocks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
class VM_ThreadDump : public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
  ThreadDumpResult*              _result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
  int                            _num_threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
  GrowableArray<instanceHandle>* _threads;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
  int                            _max_depth;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
  bool                           _with_locked_monitors;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
  bool                           _with_locked_synchronizers;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
  ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
                int max_depth,  // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  VM_ThreadDump(ThreadDumpResult* result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
                GrowableArray<instanceHandle>* threads,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
                int num_threads, // -1 indicates entire stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
                int max_depth,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
                bool with_locked_monitors,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
                bool with_locked_synchronizers);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  VMOp_Type type() const { return VMOp_ThreadDump; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
  bool doit_prologue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
  void doit_epilogue();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   392
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   393
489c9b5090e2 Initial load
duke
parents:
diff changeset
   394
489c9b5090e2 Initial load
duke
parents:
diff changeset
   395
class VM_Exit: public VM_Operation {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
  int  _exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   398
  static volatile bool _vm_exited;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   399
  static Thread * _shutdown_thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
  static void wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
  VM_Exit(int exit_code) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    _exit_code = exit_code;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   404
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  static int wait_for_threads_in_native_to_block();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
  static int set_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
  static bool vm_exited()                      { return _vm_exited; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
  static void block_if_vm_exited() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
    if (_vm_exited) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
      wait_if_vm_exited();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  VMOp_Type type() const { return VMOp_Exit; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  void doit();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   416
23517
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   417
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   418
class VM_RotateGCLog: public VM_Operation {
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   419
 private:
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   420
  outputStream* _out;
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   421
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   422
 public:
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   423
  VM_RotateGCLog(outputStream* st) : _out(st) {}
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   424
  VMOp_Type type() const { return VMOp_RotateGCLog; }
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   425
  void doit() { gclog_or_tty->rotate_log(true, _out); }
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   426
};
27c4307d6cda 7090324: gclog rotation via external tool
minqi
parents: 23180
diff changeset
   427
26587
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   428
class VM_PrintCompileQueue: public VM_Operation {
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   429
 private:
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   430
  outputStream* _out;
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   431
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   432
 public:
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   433
  VM_PrintCompileQueue(outputStream* st) : _out(st) {}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   434
  VMOp_Type type() const { return VMOp_PrintCompileQueue; }
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   435
  void doit();
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   436
};
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   437
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   438
class VM_PrintCodeList: public VM_Operation {
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   439
 private:
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   440
  outputStream* _out;
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   441
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   442
 public:
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   443
  VM_PrintCodeList(outputStream* st) : _out(st) {}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   444
  VMOp_Type type() const { return VMOp_PrintCodeList; }
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   445
  void doit();
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   446
};
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   447
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   448
class VM_PrintCodeCache: public VM_Operation {
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   449
 private:
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   450
  outputStream* _out;
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   451
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   452
 public:
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   453
  VM_PrintCodeCache(outputStream* st) : _out(st) {}
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   454
  VMOp_Type type() const { return VMOp_PrintCodeCache; }
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   455
  void doit();
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   456
};
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   457
e8b28fa936af 8054889: Compiler team's implementation task
neliasso
parents: 25051
diff changeset
   458
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 7106
diff changeset
   459
#endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP