src/share/vm/runtime/vm_operations.hpp

Wed, 09 Oct 2019 16:11:58 +0800

author
ddong
date
Wed, 09 Oct 2019 16:11:58 +0800
changeset 9885
8e875c964f41
parent 9063
777ace6655eb
child 9931
fd44df5e3bc3
permissions
-rw-r--r--

8214542: JFR: Old Object Sample event slow on a deep heap in debug builds
Reviewed-by: egahlin, rwestberg

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

mercurial