src/hotspot/share/runtime/task.cpp
author iklam
Fri, 29 Nov 2019 14:11:50 -0800
changeset 59328 f280911d3427
parent 54623 1126f0607c70
permissions -rw-r--r--
8230385: [cds] No message is logged when shared image cannot be used due to mismatched configuration Reviewed-by: stuefe, dholmes, ccheung
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 53750
diff changeset
     2
 * Copyright (c) 1997, 2019, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "memory/allocation.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "runtime/init.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    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
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "runtime/timer.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
int PeriodicTask::_num_tasks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
PeriodicTask* PeriodicTask::_tasks[PeriodicTask::max_tasks];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    35
void PeriodicTask::real_time_tick(int delay_time) {
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    36
  assert(Thread::current()->is_Watcher_thread(), "must be WatcherThread");
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    37
53750
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    38
  // The WatcherThread does not participate in the safepoint protocol
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    39
  // for the PeriodicTask_lock because it is not a JavaThread.
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 53750
diff changeset
    40
  MutexLocker ml(PeriodicTask_lock, Mutex::_no_safepoint_check_flag);
53750
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    41
  int orig_num_tasks = _num_tasks;
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    42
53750
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    43
  for(int index = 0; index < _num_tasks; index++) {
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    44
    _tasks[index]->execute_if_pending(delay_time);
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    45
    if (_num_tasks < orig_num_tasks) { // task dis-enrolled itself
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    46
      index--;  // re-do current slot as it has changed
2cf90fac6e39 8218753: Obsolete nonproduct flag ProfilerCheckIntervals
redestad
parents: 47216
diff changeset
    47
      orig_num_tasks = _num_tasks;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    52
int PeriodicTask::time_to_wait() {
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    53
  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
    54
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    55
  if (_num_tasks == 0) {
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    56
    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
    57
  }
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    58
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    59
  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
    60
  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
    61
    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
    62
  }
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    63
  return delay;
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    64
}
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    65
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
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
    68
  _counter(0), _interval((int) interval_time) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // Sanity check the interval time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  assert(_interval >= PeriodicTask::min_interval &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
         _interval %  PeriodicTask::interval_gran == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
              "improper PeriodicTask interval time");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
PeriodicTask::~PeriodicTask() {
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    76
  // This PeriodicTask may have already been disenrolled by a call
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    77
  // 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
    78
  disenroll();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    81
// enroll the current PeriodicTask
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
void PeriodicTask::enroll() {
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    83
  // Follow normal safepoint aware lock enter protocol if the caller does
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    84
  // not already own the PeriodicTask_lock. Otherwise, we don't try to
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    85
  // enter it again because VM internal Mutexes do not support recursion.
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    86
  //
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 53750
diff changeset
    87
  MutexLocker ml(PeriodicTask_lock->owned_by_self() ? NULL : PeriodicTask_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    89
  if (_num_tasks == PeriodicTask::max_tasks) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    fatal("Overflow in PeriodicTask table");
33794
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 30608
diff changeset
    91
  } else {
41ef3dc95179 8140482: Various minor code improvements (runtime)
goetz
parents: 30608
diff changeset
    92
    _tasks[_num_tasks++] = this;
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    93
  }
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    94
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    95
  WatcherThread* thread = WatcherThread::watcher_thread();
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
    96
  if (thread != NULL) {
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    97
    thread->unpark();
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    98
  } else {
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
    99
    WatcherThread::start();
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   100
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
   103
// disenroll the current PeriodicTask
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
void PeriodicTask::disenroll() {
29321
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
   105
  // Follow normal safepoint aware lock enter protocol if the caller does
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
   106
  // not already own the PeriodicTask_lock. Otherwise, we don't try to
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
   107
  // enter it again because VM internal Mutexes do not support recursion.
b7582a690cb9 8072439: fix for 8047720 may need more work
dcubed
parents: 25468
diff changeset
   108
  //
54623
1126f0607c70 8222811: Consolidate MutexLockerEx and MutexLocker
coleenp
parents: 53750
diff changeset
   109
  MutexLocker ml(PeriodicTask_lock->owned_by_self() ? NULL : PeriodicTask_lock);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int index;
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   112
  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
   113
    ;
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   114
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   115
  if (index == _num_tasks) {
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   116
    return;
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   117
  }
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   118
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  _num_tasks--;
14390
bd0d881cf1c5 7127792: Add the ability to change an existing PeriodicTask's execution interval
rbackman
parents: 10565
diff changeset
   120
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  for (; index < _num_tasks; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    _tasks[index] = _tasks[index+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
}