annotate src/share/vm/runtime/task.cpp @ 6939:c284cf4781f0

7127792: Add the ability to change an existing PeriodicTask's execution interval Summary: Enables dynamic enrollment / disenrollment from the PeriodicTasks in WatcherThread. Reviewed-by: dholmes, mgronlun
author rbackman
date Thu, 04 Oct 2012 14:55:57 +0200
parents f08d439fab8c
children f34d701e952e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0
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 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 356
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 356
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 356
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #include "precompiled.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #include "memory/allocation.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27 #include "runtime/init.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "runtime/task.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29 #include "runtime/timer.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30 #ifdef TARGET_OS_FAMILY_linux
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
31 # include "os_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
32 # include "thread_linux.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
33 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
34 #ifdef TARGET_OS_FAMILY_solaris
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
35 # include "os_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
36 # include "thread_solaris.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
37 #endif
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
38 #ifdef TARGET_OS_FAMILY_windows
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
39 # include "os_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
40 # include "thread_windows.inline.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
41 #endif
3960
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 1972
diff changeset
42 #ifdef TARGET_OS_FAMILY_bsd
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 1972
diff changeset
43 # include "os_bsd.inline.hpp"
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 1972
diff changeset
44 # include "thread_bsd.inline.hpp"
f08d439fab8c 7089790: integrate bsd-port changes
never
parents: 1972
diff changeset
45 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 int PeriodicTask::_num_tasks = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 PeriodicTask* PeriodicTask::_tasks[PeriodicTask::max_tasks];
a61af66fc99e Initial load
duke
parents:
diff changeset
49 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
50 elapsedTimer PeriodicTask::_timer;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int PeriodicTask::_intervalHistogram[PeriodicTask::max_interval];
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int PeriodicTask::_ticks;
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 void PeriodicTask::print_intervals() {
a61af66fc99e Initial load
duke
parents:
diff changeset
55 if (ProfilerCheckIntervals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
56 for (int i = 0; i < PeriodicTask::max_interval; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 int n = _intervalHistogram[i];
a61af66fc99e Initial load
duke
parents:
diff changeset
58 if (n > 0) tty->print_cr("%3d: %5d (%4.1f%%)", i, n, 100.0 * n / _ticks);
a61af66fc99e Initial load
duke
parents:
diff changeset
59 }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 }
a61af66fc99e Initial load
duke
parents:
diff changeset
61 }
a61af66fc99e Initial load
duke
parents:
diff changeset
62 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
63
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
64 void PeriodicTask::real_time_tick(int delay_time) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
65 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
66 if (ProfilerCheckIntervals) {
a61af66fc99e Initial load
duke
parents:
diff changeset
67 _ticks++;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _timer.stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
69 int ms = (int)(_timer.seconds() * 1000.0);
a61af66fc99e Initial load
duke
parents:
diff changeset
70 _timer.reset();
a61af66fc99e Initial load
duke
parents:
diff changeset
71 _timer.start();
a61af66fc99e Initial load
duke
parents:
diff changeset
72 if (ms >= PeriodicTask::max_interval) ms = PeriodicTask::max_interval - 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 _intervalHistogram[ms]++;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 #endif
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
76
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
77 {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
78 MutexLockerEx ml(PeriodicTask_lock, Mutex::_no_safepoint_check_flag);
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
79 int orig_num_tasks = _num_tasks;
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
80
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
81 for(int index = 0; index < _num_tasks; index++) {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
82 _tasks[index]->execute_if_pending(delay_time);
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
83 if (_num_tasks < orig_num_tasks) { // task dis-enrolled itself
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
84 index--; // re-do current slot as it has changed
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
85 orig_num_tasks = _num_tasks;
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
86 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
87 }
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89 }
a61af66fc99e Initial load
duke
parents:
diff changeset
90
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
91 int PeriodicTask::time_to_wait() {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
92 MutexLockerEx ml(PeriodicTask_lock->owned_by_self() ?
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
93 NULL : PeriodicTask_lock, Mutex::_no_safepoint_check_flag);
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
94
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
95 if (_num_tasks == 0) {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
96 return 0; // sleep until shutdown or a task is enrolled
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
97 }
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
98
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
99 int delay = _tasks[0]->time_to_next_interval();
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
100 for (int index = 1; index < _num_tasks; index++) {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
101 delay = MIN2(delay, _tasks[index]->time_to_next_interval());
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
102 }
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
103 return delay;
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
104 }
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
105
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 PeriodicTask::PeriodicTask(size_t interval_time) :
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
108 _counter(0), _interval((int) interval_time) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Sanity check the interval time
a61af66fc99e Initial load
duke
parents:
diff changeset
110 assert(_interval >= PeriodicTask::min_interval &&
a61af66fc99e Initial load
duke
parents:
diff changeset
111 _interval <= PeriodicTask::max_interval &&
a61af66fc99e Initial load
duke
parents:
diff changeset
112 _interval % PeriodicTask::interval_gran == 0,
a61af66fc99e Initial load
duke
parents:
diff changeset
113 "improper PeriodicTask interval time");
a61af66fc99e Initial load
duke
parents:
diff changeset
114 }
a61af66fc99e Initial load
duke
parents:
diff changeset
115
a61af66fc99e Initial load
duke
parents:
diff changeset
116 PeriodicTask::~PeriodicTask() {
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
117 disenroll();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
118 }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void PeriodicTask::enroll() {
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
121 MutexLockerEx ml(PeriodicTask_lock->owned_by_self() ?
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
122 NULL : PeriodicTask_lock, Mutex::_no_safepoint_check_flag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
123
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
124 if (_num_tasks == PeriodicTask::max_tasks) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
125 fatal("Overflow in PeriodicTask table");
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
126 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
127 _tasks[_num_tasks++] = this;
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
128
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
129 WatcherThread* thread = WatcherThread::watcher_thread();
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
130 if (thread) {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
131 thread->unpark();
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
132 } else {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
133 WatcherThread::start();
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
134 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
135 }
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void PeriodicTask::disenroll() {
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
138 MutexLockerEx ml(PeriodicTask_lock->owned_by_self() ?
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
139 NULL : PeriodicTask_lock, Mutex::_no_safepoint_check_flag);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 int index;
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
142 for(index = 0; index < _num_tasks && _tasks[index] != this; index++)
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
143 ;
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
144
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
145 if (index == _num_tasks) {
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
146 return;
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
147 }
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
148
0
a61af66fc99e Initial load
duke
parents:
diff changeset
149 _num_tasks--;
6939
c284cf4781f0 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 3960
diff changeset
150
0
a61af66fc99e Initial load
duke
parents:
diff changeset
151 for (; index < _num_tasks; index++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 _tasks[index] = _tasks[index+1];
a61af66fc99e Initial load
duke
parents:
diff changeset
153 }
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }