annotate src/share/vm/runtime/vmThread.hpp @ 286:3529d0e8d09c

6608862: segv in JvmtiEnvBase::check_for_periodic_clean_up() Reviewed-by: dholmes, dcubed, jcoomes
author xlu
date Fri, 15 Aug 2008 10:08:20 -0700
parents a61af66fc99e
children 148e5441d916
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 1998-2006 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 //
a61af66fc99e Initial load
duke
parents:
diff changeset
26 // Prioritized queue of VM operations.
a61af66fc99e Initial load
duke
parents:
diff changeset
27 //
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // Encapsulates both queue management and
a61af66fc99e Initial load
duke
parents:
diff changeset
29 // and priority policy
a61af66fc99e Initial load
duke
parents:
diff changeset
30 //
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class VMOperationQueue : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
33 enum Priorities {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 SafepointPriority, // Highest priority (operation executed at a safepoint)
a61af66fc99e Initial load
duke
parents:
diff changeset
35 MediumPriority, // Medium priority
a61af66fc99e Initial load
duke
parents:
diff changeset
36 nof_priorities
a61af66fc99e Initial load
duke
parents:
diff changeset
37 };
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // We maintain a doubled linked list, with explicit count.
a61af66fc99e Initial load
duke
parents:
diff changeset
40 int _queue_length[nof_priorities];
a61af66fc99e Initial load
duke
parents:
diff changeset
41 int _queue_counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 VM_Operation* _queue [nof_priorities];
a61af66fc99e Initial load
duke
parents:
diff changeset
43 // we also allow the vmThread to register the ops it has drained so we
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // can scan them from oops_do
a61af66fc99e Initial load
duke
parents:
diff changeset
45 VM_Operation* _drain_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // Double-linked non-empty list insert.
a61af66fc99e Initial load
duke
parents:
diff changeset
48 void insert(VM_Operation* q,VM_Operation* n);
a61af66fc99e Initial load
duke
parents:
diff changeset
49 void unlink(VM_Operation* q);
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // Basic queue manipulation
a61af66fc99e Initial load
duke
parents:
diff changeset
52 bool queue_empty (int prio);
a61af66fc99e Initial load
duke
parents:
diff changeset
53 void queue_add_front (int prio, VM_Operation *op);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void queue_add_back (int prio, VM_Operation *op);
a61af66fc99e Initial load
duke
parents:
diff changeset
55 VM_Operation* queue_remove_front(int prio);
a61af66fc99e Initial load
duke
parents:
diff changeset
56 void queue_oops_do(int queue, OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void drain_list_oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
58 VM_Operation* queue_drain(int prio);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // lock-free query: may return the wrong answer but must not break
a61af66fc99e Initial load
duke
parents:
diff changeset
60 bool queue_peek(int prio) { return _queue_length[prio] > 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
63 VMOperationQueue();
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // Highlevel operations. Encapsulates policy
a61af66fc99e Initial load
duke
parents:
diff changeset
66 bool add(VM_Operation *op);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 VM_Operation* remove_next(); // Returns next or null
a61af66fc99e Initial load
duke
parents:
diff changeset
68 VM_Operation* remove_next_at_safepoint_priority() { return queue_remove_front(SafepointPriority); }
a61af66fc99e Initial load
duke
parents:
diff changeset
69 VM_Operation* drain_at_safepoint_priority() { return queue_drain(SafepointPriority); }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void set_drain_list(VM_Operation* list) { _drain_list = list; }
a61af66fc99e Initial load
duke
parents:
diff changeset
71 bool peek_at_safepoint_priority() { return queue_peek(SafepointPriority); }
a61af66fc99e Initial load
duke
parents:
diff changeset
72
a61af66fc99e Initial load
duke
parents:
diff changeset
73 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
74 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
75
a61af66fc99e Initial load
duke
parents:
diff changeset
76 void verify_queue(int prio) PRODUCT_RETURN;
a61af66fc99e Initial load
duke
parents:
diff changeset
77 };
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 //
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // A single VMThread (the primordial thread) spawns all other threads
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // and is itself used by other threads to offload heavy vm operations
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // like scavenge, garbage_collect etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
84 //
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 class VMThread: public Thread {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
88 static ThreadPriority _current_priority;
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 static bool _should_terminate;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 static bool _terminated;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 static Monitor * _terminate_lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
93 static PerfCounter* _perf_accumulated_vm_operation_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 void evaluate_operation(VM_Operation* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
96 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
97 // Constructor
a61af66fc99e Initial load
duke
parents:
diff changeset
98 VMThread();
a61af66fc99e Initial load
duke
parents:
diff changeset
99
a61af66fc99e Initial load
duke
parents:
diff changeset
100 // Tester
a61af66fc99e Initial load
duke
parents:
diff changeset
101 bool is_VM_thread() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
102 bool is_GC_thread() const { return true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
103
a61af66fc99e Initial load
duke
parents:
diff changeset
104 char* name() const { return (char*)"VM Thread"; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // The ever running loop for the VMThread
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void loop();
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Called to stop the VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static void wait_for_vm_thread_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
111 static bool should_terminate() { return _should_terminate; }
a61af66fc99e Initial load
duke
parents:
diff changeset
112 static bool is_terminated() { return _terminated == true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 // Execution of vm operation
a61af66fc99e Initial load
duke
parents:
diff changeset
115 static void execute(VM_Operation* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // Returns the current vm operation if any.
a61af66fc99e Initial load
duke
parents:
diff changeset
118 static VM_Operation* vm_operation() { return _cur_vm_operation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 // Returns the single instance of VMThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
121 static VMThread* vm_thread() { return _vm_thread; }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 // GC support
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void oops_do(OopClosure* f);
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
127 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 void print() const { print_on(tty); }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // Performance measurement
a61af66fc99e Initial load
duke
parents:
diff changeset
132 static PerfCounter* perf_accumulated_vm_operation_time() { return _perf_accumulated_vm_operation_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
133
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // Entry for starting vm thread
a61af66fc99e Initial load
duke
parents:
diff changeset
135 virtual void run();
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 // Creations/Destructions
a61af66fc99e Initial load
duke
parents:
diff changeset
138 static void create();
a61af66fc99e Initial load
duke
parents:
diff changeset
139 static void destroy();
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
142 // VM_Operation support
a61af66fc99e Initial load
duke
parents:
diff changeset
143 static VM_Operation* _cur_vm_operation; // Current VM operation
a61af66fc99e Initial load
duke
parents:
diff changeset
144 static VMOperationQueue* _vm_queue; // Queue (w/ policy) of VM operations
a61af66fc99e Initial load
duke
parents:
diff changeset
145
a61af66fc99e Initial load
duke
parents:
diff changeset
146 // Pointer to single-instance of VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
147 static VMThread* _vm_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
148 };