1 /*
   2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_RUNTIME_VM_OPERATIONS_HPP
  26 #define SHARE_VM_RUNTIME_VM_OPERATIONS_HPP
  27 
  28 #include "classfile/javaClasses.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "oops/oop.hpp"
  31 #include "runtime/thread.hpp"
  32 #include "utilities/top.hpp"
  33 
  34 // The following classes are used for operations
  35 // initiated by a Java thread but that must
  36 // take place in the VMThread.
  37 
  38 #define VM_OP_ENUM(type)   VMOp_##type,
  39 
  40 // Note: When new VM_XXX comes up, add 'XXX' to the template table.
  41 #define VM_OPS_DO(template)                       \
  42   template(Dummy)                                 \
  43   template(ThreadStop)                            \
  44   template(ThreadDump)                            \
  45   template(PrintThreads)                          \
  46   template(FindDeadlocks)                         \
  47   template(ForceSafepoint)                        \
  48   template(ForceAsyncSafepoint)                   \
  49   template(Deoptimize)                            \
  50   template(DeoptimizeFrame)                       \
  51   template(DeoptimizeAll)                         \
  52   template(ZombieAll)                             \
  53   template(UnlinkSymbols)                         \
  54   template(Verify)                                \
  55   template(PrintJNI)                              \
  56   template(HeapDumper)                            \
  57   template(DeoptimizeTheWorld)                    \
  58   template(CollectForMetadataAllocation)          \
  59   template(GC_HeapInspection)                     \
  60   template(GenCollectFull)                        \
  61   template(GenCollectFullConcurrent)              \
  62   template(GenCollectForAllocation)               \
  63   template(ParallelGCFailedAllocation)            \
  64   template(ParallelGCSystemGC)                    \
  65   template(CGC_Operation)                         \
  66   template(CMS_Initial_Mark)                      \
  67   template(CMS_Final_Remark)                      \
  68   template(G1CollectFull)                         \
  69   template(G1CollectForAllocation)                \
  70   template(G1IncCollectionPause)                  \
  71   template(EnableBiasedLocking)                   \
  72   template(RevokeBias)                            \
  73   template(BulkRevokeBias)                        \
  74   template(PopulateDumpSharedSpace)               \
  75   template(JNIFunctionTableCopier)                \
  76   template(RedefineClasses)                       \
  77   template(UpdateForPopTopFrame)                  \
  78   template(SetFramePop)                           \
  79   template(GetOwnedMonitorInfo)                   \
  80   template(GetObjectMonitorUsage)                 \
  81   template(GetCurrentContendedMonitor)            \
  82   template(GetStackTrace)                         \
  83   template(GetMultipleStackTraces)                \
  84   template(GetAllStackTraces)                     \
  85   template(GetThreadListStackTraces)              \
  86   template(GetFrameCount)                         \
  87   template(GetFrameLocation)                      \
  88   template(ChangeBreakpoints)                     \
  89   template(GetOrSetLocal)                         \
  90   template(GetCurrentLocation)                    \
  91   template(EnterInterpOnlyMode)                   \
  92   template(ChangeSingleStep)                      \
  93   template(HeapWalkOperation)                     \
  94   template(HeapIterateOperation)                  \
  95   template(ReportJavaOutOfMemory)                 \
  96   template(JFRCheckpoint)                         \
  97   template(Exit)                                  \
  98   template(LinuxDllLoad)                          \
  99   template(RotateGCLog)                           \
 100   template(WhiteBoxOperation)                     \
 101   template(ClassLoaderStatsOperation)             \
 102   template(PrintCompileQueue)                     \
 103   template(PrintCodeList)                         \
 104   template(PrintCodeCache)                        \
 105 
 106 class VM_Operation: public CHeapObj<mtInternal> {
 107  public:
 108   enum Mode {
 109     _safepoint,       // blocking,        safepoint, vm_op C-heap allocated
 110     _no_safepoint,    // blocking,     no safepoint, vm_op C-Heap allocated
 111     _concurrent,      // non-blocking, no safepoint, vm_op C-Heap allocated
 112     _async_safepoint  // non-blocking,    safepoint, vm_op C-Heap allocated
 113   };
 114 
 115   enum VMOp_Type {
 116     VM_OPS_DO(VM_OP_ENUM)
 117     VMOp_Terminating
 118   };
 119 
 120  private:
 121   Thread*         _calling_thread;
 122   ThreadPriority  _priority;
 123   long            _timestamp;
 124   VM_Operation*   _next;
 125   VM_Operation*   _prev;
 126 
 127   // The VM operation name array
 128   static const char* _names[];
 129 
 130  public:
 131   VM_Operation()  { _calling_thread = NULL; _next = NULL; _prev = NULL; }
 132   virtual ~VM_Operation() {}
 133 
 134   // VM operation support (used by VM thread)
 135   Thread* calling_thread() const                 { return _calling_thread; }
 136   ThreadPriority priority()                      { return _priority; }
 137   void set_calling_thread(Thread* thread, ThreadPriority priority);
 138 
 139   long timestamp() const              { return _timestamp; }
 140   void set_timestamp(long timestamp)  { _timestamp = timestamp; }
 141 
 142   // Called by VM thread - does in turn invoke doit(). Do not override this
 143   void evaluate();
 144 
 145   // evaluate() is called by the VMThread and in turn calls doit().
 146   // If the thread invoking VMThread::execute((VM_Operation*) is a JavaThread,
 147   // doit_prologue() is called in that thread before transferring control to
 148   // the VMThread.
 149   // If doit_prologue() returns true the VM operation will proceed, and
 150   // doit_epilogue() will be called by the JavaThread once the VM operation
 151   // completes. If doit_prologue() returns false the VM operation is cancelled.
 152   virtual void doit()                            = 0;
 153   virtual bool doit_prologue()                   { return true; };
 154   virtual void doit_epilogue()                   {}; // Note: Not called if mode is: _concurrent
 155 
 156   // Type test
 157   virtual bool is_methodCompiler() const         { return false; }
 158 
 159   // Linking
 160   VM_Operation *next() const                     { return _next; }
 161   VM_Operation *prev() const                     { return _prev; }
 162   void set_next(VM_Operation *next)              { _next = next; }
 163   void set_prev(VM_Operation *prev)              { _prev = prev; }
 164 
 165   // Configuration. Override these appropriately in subclasses.
 166   virtual VMOp_Type type() const = 0;
 167   virtual Mode evaluation_mode() const            { return _safepoint; }
 168   virtual bool allow_nested_vm_operations() const { return false; }
 169   virtual bool is_cheap_allocated() const         { return false; }
 170   virtual void oops_do(OopClosure* f)              { /* do nothing */ };
 171 
 172   // CAUTION: <don't hang yourself with following rope>
 173   // If you override these methods, make sure that the evaluation
 174   // of these methods is race-free and non-blocking, since these
 175   // methods may be evaluated either by the mutators or by the
 176   // vm thread, either concurrently with mutators or with the mutators
 177   // stopped. In other words, taking locks is verboten, and if there
 178   // are any races in evaluating the conditions, they'd better be benign.
 179   virtual bool evaluate_at_safepoint() const {
 180     return evaluation_mode() == _safepoint  ||
 181            evaluation_mode() == _async_safepoint;
 182   }
 183   virtual bool evaluate_concurrently() const {
 184     return evaluation_mode() == _concurrent ||
 185            evaluation_mode() == _async_safepoint;
 186   }
 187 
 188   static const char* mode_to_string(Mode mode);
 189 
 190   // Debugging
 191   void print_on_error(outputStream* st) const;
 192   const char* name() const { return _names[type()]; }
 193   static const char* name(int type) {
 194     assert(type >= 0 && type < VMOp_Terminating, "invalid VM operation type");
 195     return _names[type];
 196   }
 197 #ifndef PRODUCT
 198   void print_on(outputStream* st) const { print_on_error(st); }
 199 #endif
 200 };
 201 
 202 class VM_ThreadStop: public VM_Operation {
 203  private:
 204   oop     _thread;        // The Thread that the Throwable is thrown against
 205   oop     _throwable;     // The Throwable thrown at the target Thread
 206  public:
 207   // All oops are passed as JNI handles, since there is no guarantee that a GC might happen before the
 208   // VM operation is executed.
 209   VM_ThreadStop(oop thread, oop throwable) {
 210     _thread    = thread;
 211     _throwable = throwable;
 212   }
 213   VMOp_Type type() const                         { return VMOp_ThreadStop; }
 214   oop target_thread() const                      { return _thread; }
 215   oop throwable() const                          { return _throwable;}
 216   void doit();
 217   // We deoptimize if top-most frame is compiled - this might require a C2I adapter to be generated
 218   bool allow_nested_vm_operations() const        { return true; }
 219   Mode evaluation_mode() const                   { return _async_safepoint; }
 220   bool is_cheap_allocated() const                { return true; }
 221 
 222   // GC support
 223   void oops_do(OopClosure* f) {
 224     f->do_oop(&_thread); f->do_oop(&_throwable);
 225   }
 226 };
 227 
 228 // dummy vm op, evaluated just to force a safepoint
 229 class VM_ForceSafepoint: public VM_Operation {
 230  public:
 231   VM_ForceSafepoint() {}
 232   void doit()         {}
 233   VMOp_Type type() const { return VMOp_ForceSafepoint; }
 234 };
 235 
 236 // dummy vm op, evaluated just to force a safepoint
 237 class VM_ForceAsyncSafepoint: public VM_Operation {
 238  public:
 239   VM_ForceAsyncSafepoint() {}
 240   void doit()              {}
 241   VMOp_Type type() const                         { return VMOp_ForceAsyncSafepoint; }
 242   Mode evaluation_mode() const                   { return _async_safepoint; }
 243   bool is_cheap_allocated() const                { return true; }
 244 };
 245 
 246 class VM_Deoptimize: public VM_Operation {
 247  public:
 248   VM_Deoptimize() {}
 249   VMOp_Type type() const                        { return VMOp_Deoptimize; }
 250   void doit();
 251   bool allow_nested_vm_operations() const        { return true; }
 252 };
 253 
 254 
 255 // Deopt helper that can deoptimize frames in threads other than the
 256 // current thread.  Only used through Deoptimization::deoptimize_frame.
 257 class VM_DeoptimizeFrame: public VM_Operation {
 258   friend class Deoptimization;
 259 
 260  private:
 261   JavaThread* _thread;
 262   intptr_t*   _id;
 263   VM_DeoptimizeFrame(JavaThread* thread, intptr_t* id);
 264 
 265  public:
 266   VMOp_Type type() const                         { return VMOp_DeoptimizeFrame; }
 267   void doit();
 268   bool allow_nested_vm_operations() const        { return true;  }
 269 };
 270 
 271 #ifndef PRODUCT
 272 class VM_DeoptimizeAll: public VM_Operation {
 273  private:
 274   KlassHandle _dependee;
 275  public:
 276   VM_DeoptimizeAll() {}
 277   VMOp_Type type() const                         { return VMOp_DeoptimizeAll; }
 278   void doit();
 279   bool allow_nested_vm_operations() const        { return true; }
 280 };
 281 
 282 
 283 class VM_ZombieAll: public VM_Operation {
 284  public:
 285   VM_ZombieAll() {}
 286   VMOp_Type type() const                         { return VMOp_ZombieAll; }
 287   void doit();
 288   bool allow_nested_vm_operations() const        { return true; }
 289 };
 290 #endif // PRODUCT
 291 
 292 class VM_UnlinkSymbols: public VM_Operation {
 293  public:
 294   VM_UnlinkSymbols() {}
 295   VMOp_Type type() const                         { return VMOp_UnlinkSymbols; }
 296   void doit();
 297   bool allow_nested_vm_operations() const        { return true; }
 298 };
 299 
 300 class VM_Verify: public VM_Operation {
 301  private:
 302   bool _silent;
 303  public:
 304   VM_Verify(bool silent = VerifySilently) : _silent(silent) {}
 305   VMOp_Type type() const { return VMOp_Verify; }
 306   void doit();
 307 };
 308 
 309 
 310 class VM_PrintThreads: public VM_Operation {
 311  private:
 312   outputStream* _out;
 313   bool _print_concurrent_locks;
 314  public:
 315   VM_PrintThreads()                                                { _out = tty; _print_concurrent_locks = PrintConcurrentLocks; }
 316   VM_PrintThreads(outputStream* out, bool print_concurrent_locks)  { _out = out; _print_concurrent_locks = print_concurrent_locks; }
 317   VMOp_Type type() const                                           {  return VMOp_PrintThreads; }
 318   void doit();
 319   bool doit_prologue();
 320   void doit_epilogue();
 321 };
 322 
 323 class VM_PrintJNI: public VM_Operation {
 324  private:
 325   outputStream* _out;
 326  public:
 327   VM_PrintJNI()                         { _out = tty; }
 328   VM_PrintJNI(outputStream* out)        { _out = out; }
 329   VMOp_Type type() const                { return VMOp_PrintJNI; }
 330   void doit();
 331 };
 332 
 333 class DeadlockCycle;
 334 class VM_FindDeadlocks: public VM_Operation {
 335  private:
 336   bool           _concurrent_locks;
 337   DeadlockCycle* _deadlocks;
 338   outputStream*  _out;
 339 
 340  public:
 341   VM_FindDeadlocks(bool concurrent_locks) :  _concurrent_locks(concurrent_locks), _out(NULL), _deadlocks(NULL) {};
 342   VM_FindDeadlocks(outputStream* st) : _concurrent_locks(true), _out(st), _deadlocks(NULL) {};
 343   ~VM_FindDeadlocks();
 344 
 345   DeadlockCycle* result()      { return _deadlocks; };
 346   VMOp_Type type() const       { return VMOp_FindDeadlocks; }
 347   void doit();
 348   bool doit_prologue();
 349 };
 350 
 351 class ThreadDumpResult;
 352 class ThreadSnapshot;
 353 class ThreadConcurrentLocks;
 354 
 355 class VM_ThreadDump : public VM_Operation {
 356  private:
 357   ThreadDumpResult*              _result;
 358   int                            _num_threads;
 359   GrowableArray<instanceHandle>* _threads;
 360   int                            _max_depth;
 361   bool                           _with_locked_monitors;
 362   bool                           _with_locked_synchronizers;
 363 
 364   ThreadSnapshot* snapshot_thread(JavaThread* java_thread, ThreadConcurrentLocks* tcl);
 365 
 366  public:
 367   VM_ThreadDump(ThreadDumpResult* result,
 368                 int max_depth,  // -1 indicates entire stack
 369                 bool with_locked_monitors,
 370                 bool with_locked_synchronizers);
 371 
 372   VM_ThreadDump(ThreadDumpResult* result,
 373                 GrowableArray<instanceHandle>* threads,
 374                 int num_threads, // -1 indicates entire stack
 375                 int max_depth,
 376                 bool with_locked_monitors,
 377                 bool with_locked_synchronizers);
 378 
 379   VMOp_Type type() const { return VMOp_ThreadDump; }
 380   void doit();
 381   bool doit_prologue();
 382   void doit_epilogue();
 383 };
 384 
 385 
 386 class VM_Exit: public VM_Operation {
 387  private:
 388   int  _exit_code;
 389   static volatile bool _vm_exited;
 390   static Thread * _shutdown_thread;
 391   static void wait_if_vm_exited();
 392  public:
 393   VM_Exit(int exit_code) {
 394     _exit_code = exit_code;
 395   }
 396   static int wait_for_threads_in_native_to_block();
 397   static int set_vm_exited();
 398   static bool vm_exited()                      { return _vm_exited; }
 399   static void block_if_vm_exited() {
 400     if (_vm_exited) {
 401       wait_if_vm_exited();
 402     }
 403   }
 404   VMOp_Type type() const { return VMOp_Exit; }
 405   void doit();
 406 };
 407 
 408 
 409 class VM_RotateGCLog: public VM_Operation {
 410  private:
 411   outputStream* _out;
 412 
 413  public:
 414   VM_RotateGCLog(outputStream* st) : _out(st) {}
 415   VMOp_Type type() const { return VMOp_RotateGCLog; }
 416   void doit() { gclog_or_tty->rotate_log(true, _out); }
 417 };
 418 
 419 class VM_PrintCompileQueue: public VM_Operation {
 420  private:
 421   outputStream* _out;
 422 
 423  public:
 424   VM_PrintCompileQueue(outputStream* st) : _out(st) {}
 425   VMOp_Type type() const { return VMOp_PrintCompileQueue; }
 426   void doit();
 427 };
 428 
 429 class VM_PrintCodeList: public VM_Operation {
 430  private:
 431   outputStream* _out;
 432 
 433  public:
 434   VM_PrintCodeList(outputStream* st) : _out(st) {}
 435   VMOp_Type type() const { return VMOp_PrintCodeList; }
 436   void doit();
 437 };
 438 
 439 class VM_PrintCodeCache: public VM_Operation {
 440  private:
 441   outputStream* _out;
 442 
 443  public:
 444   VM_PrintCodeCache(outputStream* st) : _out(st) {}
 445   VMOp_Type type() const { return VMOp_PrintCodeCache; }
 446   void doit();
 447 };
 448 
 449 
 450 #endif // SHARE_VM_RUNTIME_VM_OPERATIONS_HPP