Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/runtime-profiler.cc

Issue 7945009: Merge experimental/gc branch to the bleeding_edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/runtime.cc ('k') | src/scanner.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/scanner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698