hotspot/src/share/vm/runtime/task.cpp
author kvn
Mon, 09 Aug 2010 15:17:05 -0700
changeset 6183 4c74cfe14f20
parent 5547 f4b087cbb361
child 7397 5b173b4ca846
permissions -rw-r--r--
6975078: assert(allocated_on_res_area() || allocated_on_C_heap() || allocated_on_arena() Summary: Pass the check in ResourceObj() if _allocation value is already set and object is allocated on stack. Reviewed-by: dholmes, johnc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1388
diff changeset
     2
 * Copyright (c) 1997, 2008, 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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
# include "incls/_task.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
int PeriodicTask::_num_tasks = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
PeriodicTask* PeriodicTask::_tasks[PeriodicTask::max_tasks];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
elapsedTimer PeriodicTask::_timer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
int PeriodicTask::_intervalHistogram[PeriodicTask::max_interval];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
int PeriodicTask::_ticks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
void PeriodicTask::print_intervals() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  if (ProfilerCheckIntervals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    for (int i = 0; i < PeriodicTask::max_interval; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
      int n = _intervalHistogram[i];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
      if (n > 0) tty->print_cr("%3d: %5d (%4.1f%%)", i, n, 100.0 * n / _ticks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
void PeriodicTask::real_time_tick(size_t delay_time) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  if (ProfilerCheckIntervals) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    _ticks++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    _timer.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    int ms = (int)(_timer.seconds() * 1000.0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    _timer.reset();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    _timer.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    if (ms >= PeriodicTask::max_interval) ms = PeriodicTask::max_interval - 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    _intervalHistogram[ms]++;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  int orig_num_tasks = _num_tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  for(int index = 0; index < _num_tasks; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    _tasks[index]->execute_if_pending(delay_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    if (_num_tasks < orig_num_tasks) { // task dis-enrolled itself
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
      index--;  // re-do current slot as it has changed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
      orig_num_tasks = _num_tasks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
PeriodicTask::PeriodicTask(size_t interval_time) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  _counter(0), _interval(interval_time) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // Sanity check the interval time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  assert(_interval >= PeriodicTask::min_interval &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
         _interval <= PeriodicTask::max_interval &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
         _interval %  PeriodicTask::interval_gran == 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
              "improper PeriodicTask interval time");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
PeriodicTask::~PeriodicTask() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  if (is_enrolled())
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    disenroll();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
bool PeriodicTask::is_enrolled() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  for(int index = 0; index < _num_tasks; index++)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    if (_tasks[index] == this) return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
void PeriodicTask::enroll() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  assert(WatcherThread::watcher_thread() == NULL, "dynamic enrollment of tasks not yet supported");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  if (_num_tasks == PeriodicTask::max_tasks)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    fatal("Overflow in PeriodicTask table");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  _tasks[_num_tasks++] = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
void PeriodicTask::disenroll() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  assert(WatcherThread::watcher_thread() == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
         Thread::current() == WatcherThread::watcher_thread(),
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
         "dynamic disenrollment currently only handled from WatcherThread from within task() method");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  int index;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  for(index = 0; index < _num_tasks && _tasks[index] != this; index++);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  if (index == _num_tasks) return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  _num_tasks--;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  for (; index < _num_tasks; index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _tasks[index] = _tasks[index+1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
}