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

Side by Side Diff: Source/platform/heap/ThreadState.cpp

Issue 634243004: Oilpan: Simplify Heap::allocate (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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 | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 for (int i = 0; i < NumberOfHeaps; i++) { 895 for (int i = 0; i < NumberOfHeaps; i++) {
896 if (BaseHeapPage* page = m_heaps[i]->heapPageFromAddress(address)) 896 if (BaseHeapPage* page = m_heaps[i]->heapPageFromAddress(address))
897 return page; 897 return page;
898 } 898 }
899 return 0; 899 return 0;
900 } 900 }
901 901
902 void ThreadState::getStats(HeapStats& stats) 902 void ThreadState::getStats(HeapStats& stats)
903 { 903 {
904 stats = m_stats; 904 stats = m_stats;
905 #if ENABLE(ASSERT) 905 }
906 if (isConsistentForSweeping()) { 906
907 HeapStats scannedStats; 907 void ThreadState::getStatsForTesting(HeapStats& stats)
908 for (int i = 0; i < NumberOfHeaps; i++) 908 {
909 m_heaps[i]->getScannedStats(scannedStats); 909 ASSERT(isConsistentForSweeping());
910 ASSERT(scannedStats == stats); 910 for (int i = 0; i < NumberOfHeaps; i++)
911 } 911 m_heaps[i]->getStatsForTesting(stats);
912 #endif
913 } 912 }
914 913
915 bool ThreadState::stopThreads() 914 bool ThreadState::stopThreads()
916 { 915 {
917 return s_safePointBarrier->parkOthers(); 916 return s_safePointBarrier->parkOthers();
918 } 917 }
919 918
920 void ThreadState::resumeThreads() 919 void ThreadState::resumeThreads()
921 { 920 {
922 s_safePointBarrier->resumeOthers(); 921 s_safePointBarrier->resumeOthers();
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1273 return gcInfo; 1272 return gcInfo;
1274 } 1273 }
1275 } 1274 }
1276 if (needLockForIteration) 1275 if (needLockForIteration)
1277 threadAttachMutex().unlock(); 1276 threadAttachMutex().unlock();
1278 return 0; 1277 return 0;
1279 } 1278 }
1280 #endif 1279 #endif
1281 1280
1282 } 1281 }
OLDNEW
« no previous file with comments | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698