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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 // Compute the delta between start and stop, in milliseconds. | 90 // Compute the delta between start and stop, in milliseconds. |
91 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000; | 91 int milliseconds = static_cast<int>(stop_time_ - start_time_) / 1000; |
92 histogram_.AddSample(milliseconds); | 92 histogram_.AddSample(milliseconds); |
93 } | 93 } |
94 if (FLAG_log_timer_events) { | 94 if (FLAG_log_timer_events) { |
95 stop_time_ = OS::Ticks(); | 95 LOG(Isolate::Current(), |
96 Isolate::Current()->logger()->TimerEvent( | 96 TimerEvent(histogram_.name_, start_time_, OS::Ticks())); |
97 histogram_.name_, start_time_, stop_time_); | |
98 } | 97 } |
99 } | 98 } |
100 | 99 |
101 } } // namespace v8::internal | 100 } } // namespace v8::internal |
OLD | NEW |