src/share/vm/runtime/vm_operations.hpp

Wed, 25 Mar 2009 13:10:54 -0700

author
apetrusenko
date
Wed, 25 Mar 2009 13:10:54 -0700
changeset 1112
96b229c54d1e
parent 791
1ee8caae33af
child 1279
bd02caa94611
permissions
-rw-r--r--

6543938: G1: remove the concept of popularity
Reviewed-by: iveresov, tonyp

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

mercurial