annotate src/share/vm/runtime/vmThread.hpp @ 1483:ba37b9335e1e

New option "-graal" that sets up the correct boot class path and C1X options using only the two environment variables MAXINE and GRAAL. This greatly simplifies command line arguments necessary to start the Graal VM.
author Thomas Wuerthinger <wuerthinger@ssw.jku.at>
date Mon, 29 Nov 2010 16:58:26 +0100
parents 547f81740344
children c18cbe5936b8
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
1119
547f81740344 6361589: Print out stack trace for target thread of GC crash
minqi
parents: 989
diff changeset
86 class VMThread: public NamedThread {
0
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 // The ever running loop for the VMThread
a61af66fc99e Initial load
duke
parents:
diff changeset
105 void loop();
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // Called to stop the VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static void wait_for_vm_thread_exit();
a61af66fc99e Initial load
duke
parents:
diff changeset
109 static bool should_terminate() { return _should_terminate; }
a61af66fc99e Initial load
duke
parents:
diff changeset
110 static bool is_terminated() { return _terminated == true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 // Execution of vm operation
a61af66fc99e Initial load
duke
parents:
diff changeset
113 static void execute(VM_Operation* op);
a61af66fc99e Initial load
duke
parents:
diff changeset
114
a61af66fc99e Initial load
duke
parents:
diff changeset
115 // Returns the current vm operation if any.
a61af66fc99e Initial load
duke
parents:
diff changeset
116 static VM_Operation* vm_operation() { return _cur_vm_operation; }
a61af66fc99e Initial load
duke
parents:
diff changeset
117
a61af66fc99e Initial load
duke
parents:
diff changeset
118 // Returns the single instance of VMThread.
a61af66fc99e Initial load
duke
parents:
diff changeset
119 static VMThread* vm_thread() { return _vm_thread; }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 // GC support
989
148e5441d916 6863023: need non-perm oops in code cache for JSR 292
jrose
parents: 0
diff changeset
122 void oops_do(OopClosure* f, CodeBlobClosure* cf);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123
a61af66fc99e Initial load
duke
parents:
diff changeset
124 // Debugging
a61af66fc99e Initial load
duke
parents:
diff changeset
125 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 void print() const { print_on(tty); }
a61af66fc99e Initial load
duke
parents:
diff changeset
127 void verify();
a61af66fc99e Initial load
duke
parents:
diff changeset
128
a61af66fc99e Initial load
duke
parents:
diff changeset
129 // Performance measurement
a61af66fc99e Initial load
duke
parents:
diff changeset
130 static PerfCounter* perf_accumulated_vm_operation_time() { return _perf_accumulated_vm_operation_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 // Entry for starting vm thread
a61af66fc99e Initial load
duke
parents:
diff changeset
133 virtual void run();
a61af66fc99e Initial load
duke
parents:
diff changeset
134
a61af66fc99e Initial load
duke
parents:
diff changeset
135 // Creations/Destructions
a61af66fc99e Initial load
duke
parents:
diff changeset
136 static void create();
a61af66fc99e Initial load
duke
parents:
diff changeset
137 static void destroy();
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
140 // VM_Operation support
a61af66fc99e Initial load
duke
parents:
diff changeset
141 static VM_Operation* _cur_vm_operation; // Current VM operation
a61af66fc99e Initial load
duke
parents:
diff changeset
142 static VMOperationQueue* _vm_queue; // Queue (w/ policy) of VM operations
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Pointer to single-instance of VM thread
a61af66fc99e Initial load
duke
parents:
diff changeset
145 static VMThread* _vm_thread;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 };