OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 IncrementStateCounter(state); | 269 IncrementStateCounter(state); |
270 ASSERT(IsPowerOf2(kBufferSize)); | 270 ASSERT(IsPowerOf2(kBufferSize)); |
271 current_index_ = (current_index_ + 1) & (kBufferSize - 1); | 271 current_index_ = (current_index_ + 1) & (kBufferSize - 1); |
272 } | 272 } |
273 | 273 |
274 | 274 |
275 // | 275 // |
276 // Profiler implementation. | 276 // Profiler implementation. |
277 // | 277 // |
278 Profiler::Profiler() | 278 Profiler::Profiler() |
279 : head_(0), | 279 : Thread("v8:Profiler"), |
| 280 head_(0), |
280 tail_(0), | 281 tail_(0), |
281 overflow_(false), | 282 overflow_(false), |
282 buffer_semaphore_(OS::CreateSemaphore(0)), | 283 buffer_semaphore_(OS::CreateSemaphore(0)), |
283 engaged_(false), | 284 engaged_(false), |
284 running_(false) { | 285 running_(false) { |
285 } | 286 } |
286 | 287 |
287 | 288 |
288 void Profiler::Engage() { | 289 void Profiler::Engage() { |
289 if (engaged_) return; | 290 if (engaged_) return; |
(...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1627 } | 1628 } |
1628 // Otherwise, if the sliding state window computation has not been | 1629 // Otherwise, if the sliding state window computation has not been |
1629 // started we do it now. | 1630 // started we do it now. |
1630 if (sliding_state_window_ == NULL) { | 1631 if (sliding_state_window_ == NULL) { |
1631 sliding_state_window_ = new SlidingStateWindow(); | 1632 sliding_state_window_ = new SlidingStateWindow(); |
1632 } | 1633 } |
1633 #endif | 1634 #endif |
1634 } | 1635 } |
1635 | 1636 |
1636 } } // namespace v8::internal | 1637 } } // namespace v8::internal |
OLD | NEW |