hotspot/src/share/vm/runtime/timer.cpp
author coleenp
Thu, 04 Jun 2015 08:05:47 -0400
changeset 31234 48000028382c
parent 30608 d79880a5cf2f
child 31334 d55c96b36b5f
permissions -rw-r--r--
8081219: hs_err improvement: Add event logging for class redefinition to the hs_err file Summary: Use the Events::log function to save redefined classes for output to the hs_err file. Reviewed-by: sspitsyn, jiangli, lfoltan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23223
diff changeset
     2
 * Copyright (c) 1997, 2014, 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: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
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: 1
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 "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "runtime/timer.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "utilities/ostream.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
    30
double TimeHelper::counter_to_seconds(jlong counter) {
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
    31
  double freq  = (double) os::elapsed_frequency();
30608
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    32
  return counter / freq;
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    33
}
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    34
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    35
double TimeHelper::counter_to_millis(jlong counter) {
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    36
  return counter_to_seconds(counter) * 1000.0;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
    37
}
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
void elapsedTimer::add(elapsedTimer t) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  _counter += t._counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
void elapsedTimer::start() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  if (!_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    _active = true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    _start_counter = os::elapsed_counter();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
void elapsedTimer::stop() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    _counter += os::elapsed_counter() - _start_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    _active = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
double elapsedTimer::seconds() const {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
    58
 return TimeHelper::counter_to_seconds(_counter);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
jlong elapsedTimer::milliseconds() const {
30608
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    62
  return TimeHelper::counter_to_millis(_counter);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
jlong elapsedTimer::active_ticks() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (!_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    return ticks();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  jlong counter = _counter + os::elapsed_counter() - _start_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  return counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
void TimeStamp::update_to(jlong ticks) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  _counter = ticks;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  if (_counter == 0)  _counter = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  assert(is_updated(), "must not look clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
void TimeStamp::update() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  update_to(os::elapsed_counter());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
double TimeStamp::seconds() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  assert(is_updated(), "must not be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  jlong new_count = os::elapsed_counter();
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
    86
  return TimeHelper::counter_to_seconds(new_count - _counter);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
jlong TimeStamp::milliseconds() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  assert(is_updated(), "must not be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  jlong new_count = os::elapsed_counter();
30608
d79880a5cf2f 8079561: Add a method to convert counters to milliseconds
brutisso
parents: 25468
diff changeset
    92
  return TimeHelper::counter_to_millis(new_count - _counter);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
jlong TimeStamp::ticks_since_update() const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  assert(is_updated(), "must not be clear");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  return os::elapsed_counter() - _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
TraceTime::TraceTime(const char* title,
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   101
                     bool doit) {
1
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    _accum = NULL;
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   107
    tty->stamp(PrintGCTimeStamps);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   108
    tty->print("[%s", title);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   109
    tty->flush();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
    _t.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
TraceTime::TraceTime(const char* title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
                     elapsedTimer* accumulator,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
                     bool doit,
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   117
                     bool verbose) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  _active = doit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  _verbose = verbose;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
    if (_verbose) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   122
      tty->stamp(PrintGCTimeStamps);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   123
      tty->print("[%s", title);
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   124
      tty->flush();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
    _accum = accumulator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
    _t.start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
TraceTime::~TraceTime() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
    _t.stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
    if (_accum!=NULL) _accum->add(_t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
    if (_verbose) {
18025
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   136
      tty->print_cr(", %3.7f secs]", _t.seconds());
b7bcf7497f93 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 14634
diff changeset
   137
      tty->flush();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    }
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
TraceCPUTime::TraceCPUTime(bool doit,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
               bool print_cr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
               outputStream *logfile) :
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  _active(doit),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  _print_cr(print_cr),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  _starting_user_time(0.0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  _starting_system_time(0.0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
  _starting_real_time(0.0),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  _logfile(logfile),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  _error(false) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
    if (logfile != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      _logfile = logfile;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
      _logfile = tty;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    _error = !os::getTimesSecs(&_starting_real_time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
                               &_starting_user_time,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
                               &_starting_system_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
TraceCPUTime::~TraceCPUTime() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  if (_active) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
    bool valid = false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
    if (!_error) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
      double real_secs;                 // walk clock time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
      double system_secs;               // system time
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
      double user_secs;                 // user time for all threads
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
      double real_time, user_time, system_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      valid = os::getTimesSecs(&real_time, &user_time, &system_time);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      if (valid) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
        user_secs = user_time - _starting_user_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        system_secs = system_time - _starting_system_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        real_secs = real_time - _starting_real_time;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
23223
d38d6390733f 8023899: Typo in TraceCPUTime message
jwilhelm
parents: 22827
diff changeset
   181
        _logfile->print(" [Times: user=%3.2f sys=%3.2f real=%3.2f secs] ",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
          user_secs, system_secs, real_secs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
        _logfile->print("[Invalid result in TraceCPUTime]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      _logfile->print("[Error in TraceCPUTime]");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    }
14634
fdd9909928ae 8004170: G1: Verbose GC output is not getting flushed to log file using JDK 8
johnc
parents: 13963
diff changeset
   190
    if (_print_cr) {
24424
2658d7834c6e 8037816: Fix for 8036122 breaks build with Xcode5/clang
drchase
parents: 23223
diff changeset
   191
      _logfile->cr();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    }
14634
fdd9909928ae 8004170: G1: Verbose GC output is not getting flushed to log file using JDK 8
johnc
parents: 13963
diff changeset
   193
    _logfile->flush();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
}