author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 33794 | hotspot/src/share/vm/runtime/task.cpp@41ef3dc95179 |
child 53750 | 2cf90fac6e39 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
29321 | 2 |
* Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1388
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1388
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1388
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "memory/allocation.hpp" |
|
27 |
#include "runtime/init.hpp" |
|
28 |
#include "runtime/task.hpp" |
|
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
14390
diff
changeset
|
29 |
#include "runtime/thread.inline.hpp" |
7397 | 30 |
#include "runtime/timer.hpp" |
1 | 31 |
|
32 |
int PeriodicTask::_num_tasks = 0; |
|
33 |
PeriodicTask* PeriodicTask::_tasks[PeriodicTask::max_tasks]; |
|
34 |
#ifndef PRODUCT |
|
35 |
elapsedTimer PeriodicTask::_timer; |
|
36 |
int PeriodicTask::_intervalHistogram[PeriodicTask::max_interval]; |
|
37 |
int PeriodicTask::_ticks; |
|
38 |
||
39 |
void PeriodicTask::print_intervals() { |
|
40 |
if (ProfilerCheckIntervals) { |
|
41 |
for (int i = 0; i < PeriodicTask::max_interval; i++) { |
|
42 |
int n = _intervalHistogram[i]; |
|
43 |
if (n > 0) tty->print_cr("%3d: %5d (%4.1f%%)", i, n, 100.0 * n / _ticks); |
|
44 |
} |
|
45 |
} |
|
46 |
} |
|
47 |
#endif |
|
48 |
||
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
49 |
void PeriodicTask::real_time_tick(int delay_time) { |
29321 | 50 |
assert(Thread::current()->is_Watcher_thread(), "must be WatcherThread"); |
51 |
||
1 | 52 |
#ifndef PRODUCT |
53 |
if (ProfilerCheckIntervals) { |
|
54 |
_ticks++; |
|
55 |
_timer.stop(); |
|
30608
d79880a5cf2f
8079561: Add a method to convert counters to milliseconds
brutisso
parents:
29321
diff
changeset
|
56 |
int ms = (int)_timer.milliseconds(); |
1 | 57 |
_timer.reset(); |
58 |
_timer.start(); |
|
59 |
if (ms >= PeriodicTask::max_interval) ms = PeriodicTask::max_interval - 1; |
|
60 |
_intervalHistogram[ms]++; |
|
61 |
} |
|
62 |
#endif |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
63 |
|
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
64 |
{ |
29321 | 65 |
// The WatcherThread does not participate in the safepoint protocol |
66 |
// for the PeriodicTask_lock because it is not a JavaThread. |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
67 |
MutexLockerEx ml(PeriodicTask_lock, Mutex::_no_safepoint_check_flag); |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
68 |
int orig_num_tasks = _num_tasks; |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
69 |
|
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
70 |
for(int index = 0; index < _num_tasks; index++) { |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
71 |
_tasks[index]->execute_if_pending(delay_time); |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
72 |
if (_num_tasks < orig_num_tasks) { // task dis-enrolled itself |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
73 |
index--; // re-do current slot as it has changed |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
74 |
orig_num_tasks = _num_tasks; |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
75 |
} |
1 | 76 |
} |
77 |
} |
|
78 |
} |
|
79 |
||
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
80 |
int PeriodicTask::time_to_wait() { |
29321 | 81 |
assert(PeriodicTask_lock->owned_by_self(), "PeriodicTask_lock required"); |
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
82 |
|
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
83 |
if (_num_tasks == 0) { |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
84 |
return 0; // sleep until shutdown or a task is enrolled |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
85 |
} |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
86 |
|
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
87 |
int delay = _tasks[0]->time_to_next_interval(); |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
88 |
for (int index = 1; index < _num_tasks; index++) { |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
89 |
delay = MIN2(delay, _tasks[index]->time_to_next_interval()); |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
90 |
} |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
91 |
return delay; |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
92 |
} |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
93 |
|
1 | 94 |
|
95 |
PeriodicTask::PeriodicTask(size_t interval_time) : |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
96 |
_counter(0), _interval((int) interval_time) { |
1 | 97 |
// Sanity check the interval time |
98 |
assert(_interval >= PeriodicTask::min_interval && |
|
99 |
_interval % PeriodicTask::interval_gran == 0, |
|
100 |
"improper PeriodicTask interval time"); |
|
101 |
} |
|
102 |
||
103 |
PeriodicTask::~PeriodicTask() { |
|
29321 | 104 |
// This PeriodicTask may have already been disenrolled by a call |
105 |
// to disenroll() before the PeriodicTask was deleted. |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
106 |
disenroll(); |
1 | 107 |
} |
108 |
||
29321 | 109 |
// enroll the current PeriodicTask |
1 | 110 |
void PeriodicTask::enroll() { |
29321 | 111 |
// Follow normal safepoint aware lock enter protocol if the caller does |
112 |
// not already own the PeriodicTask_lock. Otherwise, we don't try to |
|
113 |
// enter it again because VM internal Mutexes do not support recursion. |
|
114 |
// |
|
115 |
MutexLockerEx ml(PeriodicTask_lock->owned_by_self() ? NULL |
|
116 |
: PeriodicTask_lock); |
|
1 | 117 |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
118 |
if (_num_tasks == PeriodicTask::max_tasks) { |
1 | 119 |
fatal("Overflow in PeriodicTask table"); |
33794 | 120 |
} else { |
121 |
_tasks[_num_tasks++] = this; |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
122 |
} |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
123 |
|
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
124 |
WatcherThread* thread = WatcherThread::watcher_thread(); |
29321 | 125 |
if (thread != NULL) { |
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
126 |
thread->unpark(); |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
127 |
} else { |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
128 |
WatcherThread::start(); |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
129 |
} |
1 | 130 |
} |
131 |
||
29321 | 132 |
// disenroll the current PeriodicTask |
1 | 133 |
void PeriodicTask::disenroll() { |
29321 | 134 |
// Follow normal safepoint aware lock enter protocol if the caller does |
135 |
// not already own the PeriodicTask_lock. Otherwise, we don't try to |
|
136 |
// enter it again because VM internal Mutexes do not support recursion. |
|
137 |
// |
|
138 |
MutexLockerEx ml(PeriodicTask_lock->owned_by_self() ? NULL |
|
139 |
: PeriodicTask_lock); |
|
1 | 140 |
|
141 |
int index; |
|
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
142 |
for(index = 0; index < _num_tasks && _tasks[index] != this; index++) |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
143 |
; |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
144 |
|
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
145 |
if (index == _num_tasks) { |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
146 |
return; |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
147 |
} |
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
148 |
|
1 | 149 |
_num_tasks--; |
14390
bd0d881cf1c5
7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents:
10565
diff
changeset
|
150 |
|
1 | 151 |
for (; index < _num_tasks; index++) { |
152 |
_tasks[index] = _tasks[index+1]; |
|
153 |
} |
|
154 |
} |