annotate src/share/vm/runtime/timer.hpp @ 6972:bd7a7ce2e264

6830717: replay of compilations would help with debugging Summary: When java process crashed in compiler thread, repeat the compilation process will help finding root cause. This is done with using SA dump application class data and replay data from core dump, then use debug version of jvm to recompile the problematic java method. Reviewed-by: kvn, twisti, sspitsyn Contributed-by: yumin.qi@oracle.com
author minqi
date Mon, 12 Nov 2012 14:03:53 -0800
parents f95d63e2154a
children f2110083203d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
2 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_RUNTIME_TIMER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_RUNTIME_TIMER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
28 #include "utilities/globalDefinitions.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
29
0
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // Timers for simple measurement.
a61af66fc99e Initial load
duke
parents:
diff changeset
31
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class elapsedTimer VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 friend class VMStructs;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
35 jlong _counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
36 jlong _start_counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 bool _active;
a61af66fc99e Initial load
duke
parents:
diff changeset
38 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
39 elapsedTimer() { _active = false; reset(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
40 void add(elapsedTimer t);
a61af66fc99e Initial load
duke
parents:
diff changeset
41 void start();
a61af66fc99e Initial load
duke
parents:
diff changeset
42 void stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
43 void reset() { _counter = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 double seconds() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 jlong milliseconds() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 jlong ticks() const { return _counter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 jlong active_ticks() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool is_active() const { return _active; }
a61af66fc99e Initial load
duke
parents:
diff changeset
49 };
a61af66fc99e Initial load
duke
parents:
diff changeset
50
a61af66fc99e Initial load
duke
parents:
diff changeset
51 // TimeStamp is used for recording when an event took place.
a61af66fc99e Initial load
duke
parents:
diff changeset
52 class TimeStamp VALUE_OBJ_CLASS_SPEC {
a61af66fc99e Initial load
duke
parents:
diff changeset
53 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
54 jlong _counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 TimeStamp() { _counter = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
57 void clear() { _counter = 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // has the timestamp been updated since being created or cleared?
a61af66fc99e Initial load
duke
parents:
diff changeset
59 bool is_updated() const { return _counter != 0; }
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // update to current elapsed time
a61af66fc99e Initial load
duke
parents:
diff changeset
61 void update();
a61af66fc99e Initial load
duke
parents:
diff changeset
62 // update to given elapsed time
a61af66fc99e Initial load
duke
parents:
diff changeset
63 void update_to(jlong ticks);
a61af66fc99e Initial load
duke
parents:
diff changeset
64 // returns seconds since updated
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // (must not be in a cleared state: must have been previously updated)
a61af66fc99e Initial load
duke
parents:
diff changeset
66 double seconds() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 jlong milliseconds() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // ticks elapsed between VM start and last update
a61af66fc99e Initial load
duke
parents:
diff changeset
69 jlong ticks() const { return _counter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // ticks elapsed since last update
a61af66fc99e Initial load
duke
parents:
diff changeset
71 jlong ticks_since_update() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 };
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // TraceTime is used for tracing the execution time of a block
a61af66fc99e Initial load
duke
parents:
diff changeset
75 // Usage:
a61af66fc99e Initial load
duke
parents:
diff changeset
76 // { TraceTime t("block time")
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // some_code();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // }
a61af66fc99e Initial load
duke
parents:
diff changeset
79 //
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 class TraceTime: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
82 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 bool _active; // do timing
a61af66fc99e Initial load
duke
parents:
diff changeset
84 bool _verbose; // report every timing
a61af66fc99e Initial load
duke
parents:
diff changeset
85 bool _print_cr; // add a CR to the end of the timer report
a61af66fc99e Initial load
duke
parents:
diff changeset
86 elapsedTimer _t; // timer
a61af66fc99e Initial load
duke
parents:
diff changeset
87 elapsedTimer* _accum; // accumulator
a61af66fc99e Initial load
duke
parents:
diff changeset
88 outputStream* _logfile; // output log file
a61af66fc99e Initial load
duke
parents:
diff changeset
89 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
90 // Constuctors
a61af66fc99e Initial load
duke
parents:
diff changeset
91 TraceTime(const char* title,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 bool doit = true,
a61af66fc99e Initial load
duke
parents:
diff changeset
93 bool print_cr = true,
a61af66fc99e Initial load
duke
parents:
diff changeset
94 outputStream *logfile = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
95 TraceTime(const char* title,
a61af66fc99e Initial load
duke
parents:
diff changeset
96 elapsedTimer* accumulator,
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bool doit = true,
a61af66fc99e Initial load
duke
parents:
diff changeset
98 bool verbose = false,
a61af66fc99e Initial load
duke
parents:
diff changeset
99 outputStream *logfile = NULL );
a61af66fc99e Initial load
duke
parents:
diff changeset
100 ~TraceTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
101
a61af66fc99e Initial load
duke
parents:
diff changeset
102 // Accessors
a61af66fc99e Initial load
duke
parents:
diff changeset
103 void set_verbose(bool verbose) { _verbose = verbose; }
a61af66fc99e Initial load
duke
parents:
diff changeset
104 bool verbose() const { return _verbose; }
a61af66fc99e Initial load
duke
parents:
diff changeset
105
a61af66fc99e Initial load
duke
parents:
diff changeset
106 // Activation
a61af66fc99e Initial load
duke
parents:
diff changeset
107 void suspend() { if (_active) _t.stop(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void resume() { if (_active) _t.start(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 };
a61af66fc99e Initial load
duke
parents:
diff changeset
110
a61af66fc99e Initial load
duke
parents:
diff changeset
111 class TraceCPUTime: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
113 bool _active; // true if times will be measured and printed
a61af66fc99e Initial load
duke
parents:
diff changeset
114 bool _print_cr; // if true print carriage return at end
a61af66fc99e Initial load
duke
parents:
diff changeset
115 double _starting_user_time; // user time at start of measurement
a61af66fc99e Initial load
duke
parents:
diff changeset
116 double _starting_system_time; // system time at start of measurement
a61af66fc99e Initial load
duke
parents:
diff changeset
117 double _starting_real_time; // real time at start of measurement
a61af66fc99e Initial load
duke
parents:
diff changeset
118 outputStream* _logfile; // output is printed to this stream
a61af66fc99e Initial load
duke
parents:
diff changeset
119 bool _error; // true if an error occurred, turns off output
a61af66fc99e Initial load
duke
parents:
diff changeset
120
a61af66fc99e Initial load
duke
parents:
diff changeset
121 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
122 TraceCPUTime(bool doit = true,
a61af66fc99e Initial load
duke
parents:
diff changeset
123 bool print_cr = true,
a61af66fc99e Initial load
duke
parents:
diff changeset
124 outputStream *logfile = NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
125 ~TraceCPUTime();
a61af66fc99e Initial load
duke
parents:
diff changeset
126 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
127
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
128 #endif // SHARE_VM_RUNTIME_TIMER_HPP