annotate src/share/vm/utilities/ticks.hpp @ 13400:86e6d691f2e1

8028128: Add a type safe alternative for working with counter based data Reviewed-by: dholmes, egahlin
author mgronlun
date Sat, 23 Nov 2013 12:25:13 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13400
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
1 /*
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
2 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
4 *
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
7 * published by the Free Software Foundation.
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
8 *
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
13 * accompanied this code).
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
14 *
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
18 *
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
21 * questions.
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
22 *
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
23 */
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
24
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
25 #ifndef SHARE_VM_UTILITIES_TICKS_HPP
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
26 #define SHARE_VM_UTILITIES_TICKS_HPP
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
27
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
28 #include "memory/allocation.hpp"
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
29 #include "utilities/globalDefinitions.hpp"
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
30
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
31 class Ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
32
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
33 class Tickspan VALUE_OBJ_CLASS_SPEC {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
34 friend class Ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
35 friend Tickspan operator-(const Ticks& end, const Ticks& start);
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
36
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
37 private:
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
38 jlong _span_ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
39
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
40 Tickspan(const Ticks& end, const Ticks& start);
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
41
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
42 public:
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
43 Tickspan() : _span_ticks(0) {}
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
44
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
45 Tickspan& operator+=(const Tickspan& rhs) {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
46 _span_ticks += rhs._span_ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
47 return *this;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
48 }
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
49
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
50 jlong value() const {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
51 return _span_ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
52 }
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
53
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
54 };
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
55
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
56 class Ticks VALUE_OBJ_CLASS_SPEC {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
57 private:
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
58 jlong _stamp_ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
59
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
60 public:
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
61 Ticks() : _stamp_ticks(0) {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
62 assert((_stamp_ticks = invalid_time_stamp) == invalid_time_stamp,
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
63 "initial unstamped time value assignment");
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
64 }
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
65
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
66 Ticks& operator+=(const Tickspan& span) {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
67 _stamp_ticks += span.value();
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
68 return *this;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
69 }
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
70
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
71 Ticks& operator-=(const Tickspan& span) {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
72 _stamp_ticks -= span.value();
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
73 return *this;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
74 }
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
75
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
76 void stamp();
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
77
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
78 jlong value() const {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
79 return _stamp_ticks;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
80 }
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
81
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
82 static const Ticks now();
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
83
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
84 #ifdef ASSERT
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
85 static const jlong invalid_time_stamp;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
86 #endif
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
87
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
88 #ifndef PRODUCT
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
89 // only for internal use by GC VM tests
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
90 friend class TimePartitionPhasesIteratorTest;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
91 friend class GCTimerTest;
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
92
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
93 private:
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
94 // implicit type conversion
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
95 Ticks(int ticks) : _stamp_ticks(ticks) {}
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
96
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
97 #endif // !PRODUCT
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
98
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
99 };
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
100
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
101 class TicksToTimeHelper : public AllStatic {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
102 public:
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
103 enum Unit {
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
104 SECONDS = 1,
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
105 MILLISECONDS = 1000
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
106 };
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
107 static double seconds(const Tickspan& span);
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
108 static jlong milliseconds(const Tickspan& span);
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
109 };
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
110
86e6d691f2e1 8028128: Add a type safe alternative for working with counter based data
mgronlun
parents:
diff changeset
111 #endif // SHARE_VM_UTILITIES_TICKS_HPP