OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 59 matching lines...) Loading... |
70 } | 70 } |
71 } | 71 } |
72 | 72 |
73 void* Histogram::CreateHistogram() const { | 73 void* Histogram::CreateHistogram() const { |
74 return Isolate::Current()->stats_table()-> | 74 return Isolate::Current()->stats_table()-> |
75 CreateHistogram(name_, min_, max_, num_buckets_); | 75 CreateHistogram(name_, min_, max_, num_buckets_); |
76 } | 76 } |
77 | 77 |
78 // Start the timer. | 78 // Start the timer. |
79 void HistogramTimer::Start() { | 79 void HistogramTimer::Start() { |
80 if (histogram_.Enabled()) { | 80 if (histogram_.Enabled() || FLAG_log_timer_events) { |
81 stop_time_ = 0; | 81 stop_time_ = 0; |
82 start_time_ = OS::Ticks(); | 82 start_time_ = OS::Ticks(); |
83 } | 83 } |
84 } | 84 } |
85 | 85 |
86 // Stop the timer and record the results. | 86 // Stop the timer and record the results. |
87 void HistogramTimer::Stop() { | 87 void HistogramTimer::Stop() { |
88 if (histogram_.Enabled()) { | 88 if (histogram_.Enabled()) { |
89 stop_time_ = OS::Ticks(); | 89 stop_time_ = OS::Ticks(); |
90 | |
91 // Compute the delta between start and stop, in milliseconds. | 90 // Compute the delta between start and stop, in milliseconds. |
92 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000; | 91 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000; |
93 histogram_.AddSample(milliseconds); | 92 histogram_.AddSample(milliseconds); |
94 } | 93 } |
| 94 if (FLAG_log_timer_events) { |
| 95 stop_time_ = OS::Ticks(); |
| 96 Isolate::Current()->logger()->TimerEvent( |
| 97 histogram_.name_, start_time_, stop_time_); |
| 98 } |
95 } | 99 } |
96 | 100 |
97 } } // namespace v8::internal | 101 } } // namespace v8::internal |
OLD | NEW |