hotspot/src/share/vm/runtime/timer.cpp
author mchung
Wed, 25 Nov 2009 08:37:04 -0800
changeset 4485 76684005deef
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6888880: JKernel VM to inject the sun.jkernel.DownloadManager as a boot classloader hook Summary: Call sun.jkernel.DownloadManager.setBootClassLoaderHook during the kernel VM initialization Reviewed-by: alanb, coleenp, acorn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
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/_timer.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
void elapsedTimer::add(elapsedTimer t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  _counter += t._counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
void elapsedTimer::start() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  if (!_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    _active = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    _start_counter = os::elapsed_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
void elapsedTimer::stop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
    _counter += os::elapsed_counter() - _start_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    _active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
double elapsedTimer::seconds() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  double count = (double) _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  double freq  = (double) os::elapsed_frequency();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  return count/freq;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
jlong elapsedTimer::milliseconds() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  jlong ticks_per_ms = os::elapsed_frequency() / 1000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  return _counter / ticks_per_ms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
jlong elapsedTimer::active_ticks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  if (!_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    return ticks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  jlong counter = _counter + os::elapsed_counter() - _start_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  return counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
void TimeStamp::update_to(jlong ticks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  _counter = ticks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  if (_counter == 0)  _counter = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  assert(is_updated(), "must not look clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
void TimeStamp::update() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  update_to(os::elapsed_counter());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
double TimeStamp::seconds() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  assert(is_updated(), "must not be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  jlong new_count = os::elapsed_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  double count = (double) new_count - _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  double freq  = (double) os::elapsed_frequency();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  return count/freq;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
jlong TimeStamp::milliseconds() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  assert(is_updated(), "must not be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  jlong new_count = os::elapsed_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  jlong count = new_count - _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  jlong ticks_per_ms = os::elapsed_frequency() / 1000;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  return count / ticks_per_ms;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
jlong TimeStamp::ticks_since_update() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  assert(is_updated(), "must not be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  return os::elapsed_counter() - _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
TraceTime::TraceTime(const char* title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
                     bool doit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
                     bool print_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
                     outputStream* logfile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  _active   = doit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  _verbose  = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  _print_cr = print_cr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  _logfile = (logfile != NULL) ? logfile : tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
    _accum = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
    if (PrintGCTimeStamps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
      _logfile->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
      _logfile->print(": ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
    _logfile->print("[%s", title);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
    _logfile->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    _t.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
TraceTime::TraceTime(const char* title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
                     elapsedTimer* accumulator,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
                     bool doit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
                     bool verbose,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
                     outputStream* logfile) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  _active = doit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  _verbose = verbose;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  _print_cr = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  _logfile = (logfile != NULL) ? logfile : tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
      if (PrintGCTimeStamps) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
        _logfile->stamp();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
        _logfile->print(": ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
      _logfile->print("[%s", title);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
      _logfile->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    _accum = accumulator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    _t.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
TraceTime::~TraceTime() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
    _t.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    if (_accum!=NULL) _accum->add(_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    if (_verbose) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      if (_print_cr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
        _logfile->print_cr(", %3.7f secs]", _t.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
        _logfile->print(", %3.7f secs]", _t.seconds());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
      _logfile->flush();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
TraceCPUTime::TraceCPUTime(bool doit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
               bool print_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
               outputStream *logfile) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  _active(doit),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  _print_cr(print_cr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  _starting_user_time(0.0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  _starting_system_time(0.0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
  _starting_real_time(0.0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
  _logfile(logfile),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  _error(false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    if (logfile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      _logfile = logfile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      _logfile = tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
    _error = !os::getTimesSecs(&_starting_real_time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
                               &_starting_user_time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
                               &_starting_system_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
TraceCPUTime::~TraceCPUTime() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
    bool valid = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    if (!_error) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      double real_secs;                 // walk clock time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
      double system_secs;               // system time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      double user_secs;                 // user time for all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      double real_time, user_time, system_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      valid = os::getTimesSecs(&real_time, &user_time, &system_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
      if (valid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
        user_secs = user_time - _starting_user_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
        system_secs = system_time - _starting_system_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        real_secs = real_time - _starting_real_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
        _logfile->print(" [Times: user=%3.2f sys=%3.2f, real=%3.2f secs] ",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
          user_secs, system_secs, real_secs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        _logfile->print("[Invalid result in TraceCPUTime]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
      _logfile->print("[Error in TraceCPUTime]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
     if (_print_cr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
      _logfile->print_cr("");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
}