OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 // was not waiting. | 331 // was not waiting. |
332 if (new_state != 0) { | 332 if (new_state != 0) { |
333 NoBarrier_AtomicIncrement(&state_, -1); | 333 NoBarrier_AtomicIncrement(&state_, -1); |
334 } | 334 } |
335 } | 335 } |
336 | 336 |
337 | 337 |
338 void RuntimeProfiler::RemoveDeadSamples() { | 338 void RuntimeProfiler::RemoveDeadSamples() { |
339 for (int i = 0; i < kSamplerWindowSize; i++) { | 339 for (int i = 0; i < kSamplerWindowSize; i++) { |
340 Object* function = sampler_window_[i]; | 340 Object* function = sampler_window_[i]; |
341 if (function != NULL && !HeapObject::cast(function)->IsMarked()) { | 341 if (function != NULL && |
| 342 !Marking::MarkBitFrom(HeapObject::cast(function)).Get()) { |
342 sampler_window_[i] = NULL; | 343 sampler_window_[i] = NULL; |
343 } | 344 } |
344 } | 345 } |
345 } | 346 } |
346 | 347 |
347 | 348 |
348 void RuntimeProfiler::UpdateSamplesAfterCompact(ObjectVisitor* visitor) { | 349 void RuntimeProfiler::UpdateSamplesAfterCompact(ObjectVisitor* visitor) { |
349 for (int i = 0; i < kSamplerWindowSize; i++) { | 350 for (int i = 0; i < kSamplerWindowSize; i++) { |
350 visitor->VisitPointer(&sampler_window_[i]); | 351 visitor->VisitPointer(&sampler_window_[i]); |
351 } | 352 } |
352 } | 353 } |
353 | 354 |
354 | 355 |
355 bool RuntimeProfilerRateLimiter::SuspendIfNecessary() { | 356 bool RuntimeProfilerRateLimiter::SuspendIfNecessary() { |
356 if (!RuntimeProfiler::IsSomeIsolateInJS()) { | 357 if (!RuntimeProfiler::IsSomeIsolateInJS()) { |
357 return RuntimeProfiler::WaitForSomeIsolateToEnterJS(); | 358 return RuntimeProfiler::WaitForSomeIsolateToEnterJS(); |
358 } | 359 } |
359 return false; | 360 return false; |
360 } | 361 } |
361 | 362 |
362 | 363 |
363 } } // namespace v8::internal | 364 } } // namespace v8::internal |
OLD | NEW |