hotspot/src/share/vm/runtime/timer.hpp
author never
Wed, 03 Feb 2010 12:28:30 -0800
changeset 4755 eee57ea6d910
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6921922: fix for 6911204 breaks tagged stack interpreter Reviewed-by: kvn
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
// Timers for simple measurement.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
class elapsedTimer VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  jlong _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  jlong _start_counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
  bool  _active;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
  elapsedTimer()             { _active = false; reset(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
  void add(elapsedTimer t);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  void start();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  void stop();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  void reset()               { _counter = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  double seconds() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  jlong milliseconds() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  jlong ticks() const        { return _counter; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  jlong active_ticks() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  bool  is_active() const { return _active; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
// TimeStamp is used for recording when an event took place.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class TimeStamp VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  jlong _counter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  TimeStamp()  { _counter = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
  void clear() { _counter = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // has the timestamp been updated since being created or cleared?
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  bool is_updated() const { return _counter != 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // update to current elapsed time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  void update();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // update to given elapsed time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  void update_to(jlong ticks);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // returns seconds since updated
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // (must not be in a cleared state:  must have been previously updated)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  double seconds() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  jlong milliseconds() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  // ticks elapsed between VM start and last update
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  jlong ticks() const { return _counter; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // ticks elapsed since last update
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  jlong ticks_since_update() const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
// TraceTime is used for tracing the execution time of a block
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
// Usage:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
//  { TraceTime t("block time")
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
//    some_code();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
//  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
class TraceTime: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  bool          _active;    // do timing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  bool          _verbose;   // report every timing
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  bool          _print_cr;  // add a CR to the end of the timer report
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  elapsedTimer  _t;         // timer
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  elapsedTimer* _accum;     // accumulator
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  outputStream* _logfile;   // output log file
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // Constuctors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  TraceTime(const char* title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
            bool doit = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
            bool print_cr = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
            outputStream *logfile = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  TraceTime(const char* title,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
            elapsedTimer* accumulator,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
            bool doit = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
            bool verbose = false,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
            outputStream *logfile = NULL );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  ~TraceTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void set_verbose(bool verbose)  { _verbose = verbose; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  bool verbose() const            { return _verbose;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  // Activation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  void suspend()  { if (_active) _t.stop();  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  void resume()   { if (_active) _t.start(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
class TraceCPUTime: public StackObj {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  bool _active;                 // true if times will be measured and printed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  bool _print_cr;               // if true print carriage return at end
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  double _starting_user_time;   // user time at start of measurement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  double _starting_system_time; // system time at start of measurement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  double _starting_real_time;   // real time at start of measurement
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  outputStream* _logfile;       // output is printed to this stream
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  bool _error;                  // true if an error occurred, turns off output
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  TraceCPUTime(bool doit = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
               bool print_cr = true,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
               outputStream *logfile = NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  ~TraceCPUTime();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
};