Searched refs:Tickspan (Results 1 - 8 of 8) sorted by relevance

/openjdk10/hotspot/src/share/vm/utilities/
H A Dticks.inline.hpp30 inline Tickspan operator+(Tickspan lhs, const Tickspan& rhs) {
35 inline bool operator==(const Tickspan& lhs, const Tickspan& rhs) {
39 inline bool operator!=(const Tickspan& lhs, const Tickspan& rhs) {
43 inline bool operator<(const Tickspan& lhs, const Tickspan& rhs) {
47 inline bool operator>(const Tickspan
[all...]
H A Dticks.hpp33 class Tickspan VALUE_OBJ_CLASS_SPEC {
35 friend Tickspan operator-(const Ticks& end, const Ticks& start);
40 Tickspan(const Ticks& end, const Ticks& start);
43 Tickspan() : _span_ticks(0) {} function in class:VALUE_OBJ_CLASS_SPEC
45 Tickspan& operator+=(const Tickspan& rhs) {
66 Ticks& operator+=(const Tickspan& span) {
71 Ticks& operator-=(const Tickspan& span) {
107 static double seconds(const Tickspan& span);
108 static jlong milliseconds(const Tickspan
[all...]
H A Dticks.cpp43 Tickspan::Tickspan(const Ticks& end, const Ticks& start) { function in class:Tickspan
53 static ReturnType time_conversion(const Tickspan& span, TicksToTimeHelper::Unit unit) {
62 double TicksToTimeHelper::seconds(const Tickspan& span) {
66 jlong TicksToTimeHelper::milliseconds(const Tickspan& span) {
/openjdk10/hotspot/src/share/vm/runtime/
H A Dsweeper.hpp86 static Tickspan _total_time_sweeping; // Accumulated time sweeping
87 static Tickspan _total_time_this_sweep; // Total time this sweep
88 static Tickspan _peak_sweep_time; // Peak time for a full sweep
89 static Tickspan _peak_sweep_fraction_time; // Peak time sweeping one fraction
105 static const Tickspan total_time_sweeping() { return _total_time_sweeping; }
106 static const Tickspan peak_sweep_time() { return _peak_sweep_time; }
107 static const Tickspan peak_sweep_fraction_time() { return _peak_sweep_fraction_time; }
H A Dsweeper.cpp156 Tickspan NMethodSweeper::_total_time_sweeping; // Accumulated time sweeping
157 Tickspan NMethodSweeper::_total_time_this_sweep; // Total time this sweep
158 Tickspan NMethodSweeper::_peak_sweep_time; // Peak time for a full sweep
159 Tickspan NMethodSweeper::_peak_sweep_fraction_time; // Peak time sweeping one fraction
238 _total_time_this_sweep = Tickspan();
485 const Tickspan sweep_time = sweep_end_counter - sweep_start_counter;
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DgcTimer.hpp103 Tickspan _sum_of_pauses;
104 Tickspan _longest_pause;
117 const Tickspan sum_of_pauses() const { return _sum_of_pauses; }
118 const Tickspan longest_pause() const { return _longest_pause; }
H A DgcTrace.hpp59 Tickspan _sum_of_pauses;
60 Tickspan _longest_pause;
84 void set_sum_of_pauses(const Tickspan& duration) { _sum_of_pauses = duration; }
85 const Tickspan sum_of_pauses() const { return _sum_of_pauses; }
87 void set_longest_pause(const Tickspan& duration) { _longest_pause = duration; }
88 const Tickspan longest_pause() const { return _longest_pause; }
H A DgcTimer.cpp128 _sum_of_pauses = Tickspan();
129 _longest_pause = Tickspan();
150 const Tickspan pause = phase->end() - phase->start();
361 assert(time_partitions.sum_of_pauses() == Tickspan(), "Incorrect");
362 assert(time_partitions.longest_pause() == Tickspan(), "Incorrect");

Completed in 125 milliseconds