| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | /* |
| 17 | * Garbage-collecting memory allocator. |
| 18 | */ |
| 19 | #include "Dalvik.h" |
| Barry Hayes | 962adba | 2010-03-17 12:12:39 -0700 | [diff] [blame] | 20 | #include "alloc/HeapBitmap.h" |
| 21 | #include "alloc/Verify.h" |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 22 | #include "alloc/HeapTable.h" |
| 23 | #include "alloc/Heap.h" |
| 24 | #include "alloc/HeapInternal.h" |
| 25 | #include "alloc/DdmHeap.h" |
| 26 | #include "alloc/HeapSource.h" |
| 27 | #include "alloc/MarkSweep.h" |
| 28 | |
| 29 | #include "utils/threads.h" // need Android thread priorities |
| 30 | #define kInvalidPriority 10000 |
| 31 | |
| San Mehat | 5a2056c | 2009-09-12 10:10:13 -0700 | [diff] [blame] | 32 | #include <cutils/sched_policy.h> |
| 33 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 34 | #include <sys/time.h> |
| 35 | #include <sys/resource.h> |
| 36 | #include <limits.h> |
| 37 | #include <errno.h> |
| 38 | |
| Barry Hayes | 1b9b4e4 | 2010-01-04 10:33:46 -0800 | [diff] [blame] | 39 | static const char* GcReasonStr[] = { |
| 40 | [GC_FOR_MALLOC] = "GC_FOR_MALLOC", |
| 41 | [GC_EXPLICIT] = "GC_EXPLICIT", |
| 42 | [GC_EXTERNAL_ALLOC] = "GC_EXTERNAL_ALLOC", |
| 43 | [GC_HPROF_DUMP_HEAP] = "GC_HPROF_DUMP_HEAP" |
| 44 | }; |
| 45 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 46 | /* |
| 47 | * Initialize the GC heap. |
| 48 | * |
| 49 | * Returns true if successful, false otherwise. |
| 50 | */ |
| 51 | bool dvmHeapStartup() |
| 52 | { |
| 53 | GcHeap *gcHeap; |
| 54 | |
| 55 | #if defined(WITH_ALLOC_LIMITS) |
| 56 | gDvm.checkAllocLimits = false; |
| 57 | gDvm.allocationLimit = -1; |
| 58 | #endif |
| 59 | |
| 60 | gcHeap = dvmHeapSourceStartup(gDvm.heapSizeStart, gDvm.heapSizeMax); |
| 61 | if (gcHeap == NULL) { |
| 62 | return false; |
| 63 | } |
| 64 | gcHeap->heapWorkerCurrentObject = NULL; |
| 65 | gcHeap->heapWorkerCurrentMethod = NULL; |
| 66 | gcHeap->heapWorkerInterpStartTime = 0LL; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 67 | gcHeap->ddmHpifWhen = 0; |
| 68 | gcHeap->ddmHpsgWhen = 0; |
| 69 | gcHeap->ddmHpsgWhat = 0; |
| 70 | gcHeap->ddmNhsgWhen = 0; |
| 71 | gcHeap->ddmNhsgWhat = 0; |
| 72 | #if WITH_HPROF |
| 73 | gcHeap->hprofDumpOnGc = false; |
| 74 | gcHeap->hprofContext = NULL; |
| 75 | #endif |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 76 | gDvm.gcHeap = gcHeap; |
| 77 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 78 | /* Set up the lists and lock we'll use for finalizable |
| 79 | * and reference objects. |
| 80 | */ |
| 81 | dvmInitMutex(&gDvm.heapWorkerListLock); |
| 82 | gcHeap->finalizableRefs = NULL; |
| 83 | gcHeap->pendingFinalizationRefs = NULL; |
| 84 | gcHeap->referenceOperations = NULL; |
| 85 | |
| 86 | /* Initialize the HeapWorker locks and other state |
| 87 | * that the GC uses. |
| 88 | */ |
| 89 | dvmInitializeHeapWorkerState(); |
| 90 | |
| 91 | return true; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 92 | } |
| 93 | |
| Carl Shapiro | c8e06c8 | 2010-02-04 19:12:55 -0800 | [diff] [blame] | 94 | void dvmHeapStartupAfterZygote() |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 95 | { |
| 96 | /* Update our idea of the last GC start time so that we |
| 97 | * don't use the last time that Zygote happened to GC. |
| 98 | */ |
| 99 | gDvm.gcHeap->gcStartTime = dvmGetRelativeTimeUsec(); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void dvmHeapShutdown() |
| 103 | { |
| 104 | //TODO: make sure we're locked |
| 105 | if (gDvm.gcHeap != NULL) { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 106 | /* Tables are allocated on the native heap; |
| 107 | * they need to be cleaned up explicitly. |
| 108 | * The process may stick around, so we don't |
| 109 | * want to leak any native memory. |
| 110 | */ |
| Carl Shapiro | a199eb7 | 2010-02-09 16:26:30 -0800 | [diff] [blame] | 111 | dvmHeapFreeLargeTable(gDvm.gcHeap->finalizableRefs); |
| 112 | gDvm.gcHeap->finalizableRefs = NULL; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 113 | |
| Carl Shapiro | a199eb7 | 2010-02-09 16:26:30 -0800 | [diff] [blame] | 114 | dvmHeapFreeLargeTable(gDvm.gcHeap->pendingFinalizationRefs); |
| 115 | gDvm.gcHeap->pendingFinalizationRefs = NULL; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 116 | |
| Carl Shapiro | a199eb7 | 2010-02-09 16:26:30 -0800 | [diff] [blame] | 117 | dvmHeapFreeLargeTable(gDvm.gcHeap->referenceOperations); |
| 118 | gDvm.gcHeap->referenceOperations = NULL; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 119 | |
| 120 | /* Destroy the heap. Any outstanding pointers |
| 121 | * will point to unmapped memory (unless/until |
| Carl Shapiro | a199eb7 | 2010-02-09 16:26:30 -0800 | [diff] [blame] | 122 | * someone else maps it). This frees gDvm.gcHeap |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 123 | * as a side-effect. |
| 124 | */ |
| Carl Shapiro | a199eb7 | 2010-02-09 16:26:30 -0800 | [diff] [blame] | 125 | dvmHeapSourceShutdown(&gDvm.gcHeap); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * We've been asked to allocate something we can't, e.g. an array so |
| Andy McFadden | 6da743b | 2009-07-15 16:56:00 -0700 | [diff] [blame] | 131 | * large that (length * elementWidth) is larger than 2^31. |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 132 | * |
| Andy McFadden | 6da743b | 2009-07-15 16:56:00 -0700 | [diff] [blame] | 133 | * _The Java Programming Language_, 4th edition, says, "you can be sure |
| 134 | * that all SoftReferences to softly reachable objects will be cleared |
| 135 | * before an OutOfMemoryError is thrown." |
| 136 | * |
| 137 | * It's unclear whether that holds for all situations where an OOM can |
| 138 | * be thrown, or just in the context of an allocation that fails due |
| 139 | * to lack of heap space. For simplicity we just throw the exception. |
| 140 | * |
| 141 | * (OOM due to actually running out of space is handled elsewhere.) |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 142 | */ |
| 143 | void dvmThrowBadAllocException(const char* msg) |
| 144 | { |
| Andy McFadden | 6da743b | 2009-07-15 16:56:00 -0700 | [diff] [blame] | 145 | dvmThrowException("Ljava/lang/OutOfMemoryError;", msg); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | /* |
| 149 | * Grab the lock, but put ourselves into THREAD_VMWAIT if it looks like |
| 150 | * we're going to have to wait on the mutex. |
| 151 | */ |
| 152 | bool dvmLockHeap() |
| 153 | { |
| Carl Shapiro | 980ffb0 | 2010-03-13 22:34:01 -0800 | [diff] [blame] | 154 | if (dvmTryLockMutex(&gDvm.gcHeapLock) != 0) { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 155 | Thread *self; |
| 156 | ThreadStatus oldStatus; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 157 | |
| 158 | self = dvmThreadSelf(); |
| 159 | if (self != NULL) { |
| 160 | oldStatus = dvmChangeStatus(self, THREAD_VMWAIT); |
| 161 | } else { |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 162 | LOGI("ODD: waiting on heap lock, no self\n"); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 163 | oldStatus = -1; // shut up gcc |
| 164 | } |
| Carl Shapiro | 980ffb0 | 2010-03-13 22:34:01 -0800 | [diff] [blame] | 165 | dvmLockMutex(&gDvm.gcHeapLock); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 166 | if (self != NULL) { |
| 167 | dvmChangeStatus(self, oldStatus); |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | return true; |
| 172 | } |
| 173 | |
| 174 | void dvmUnlockHeap() |
| 175 | { |
| 176 | dvmUnlockMutex(&gDvm.gcHeapLock); |
| 177 | } |
| 178 | |
| 179 | /* Pop an object from the list of pending finalizations and |
| 180 | * reference clears/enqueues, and return the object. |
| 181 | * The caller must call dvmReleaseTrackedAlloc() |
| 182 | * on the object when finished. |
| 183 | * |
| 184 | * Typically only called by the heap worker thread. |
| 185 | */ |
| 186 | Object *dvmGetNextHeapWorkerObject(HeapWorkerOperation *op) |
| 187 | { |
| 188 | Object *obj; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 189 | GcHeap *gcHeap = gDvm.gcHeap; |
| 190 | |
| 191 | assert(op != NULL); |
| 192 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 193 | dvmLockMutex(&gDvm.heapWorkerListLock); |
| 194 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 195 | obj = dvmHeapGetNextObjectFromLargeTable(&gcHeap->referenceOperations); |
| 196 | if (obj != NULL) { |
| Carl Shapiro | 646ba09 | 2010-06-10 15:17:00 -0700 | [diff] [blame^] | 197 | *op = WORKER_ENQUEUE; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 198 | } else { |
| 199 | obj = dvmHeapGetNextObjectFromLargeTable( |
| 200 | &gcHeap->pendingFinalizationRefs); |
| 201 | if (obj != NULL) { |
| 202 | *op = WORKER_FINALIZE; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | if (obj != NULL) { |
| 207 | /* Don't let the GC collect the object until the |
| 208 | * worker thread is done with it. |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 209 | */ |
| 210 | dvmAddTrackedAlloc(obj, NULL); |
| 211 | } |
| 212 | |
| 213 | dvmUnlockMutex(&gDvm.heapWorkerListLock); |
| 214 | |
| 215 | return obj; |
| 216 | } |
| 217 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 218 | /* Whenever the effective heap size may have changed, |
| 219 | * this function must be called. |
| 220 | */ |
| 221 | void dvmHeapSizeChanged() |
| 222 | { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 223 | } |
| 224 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 225 | /* Do a full garbage collection, which may grow the |
| 226 | * heap as a side-effect if the live set is large. |
| 227 | */ |
| 228 | static void gcForMalloc(bool collectSoftReferences) |
| 229 | { |
| 230 | #ifdef WITH_PROFILER |
| 231 | if (gDvm.allocProf.enabled) { |
| 232 | Thread* self = dvmThreadSelf(); |
| 233 | gDvm.allocProf.gcCount++; |
| 234 | if (self != NULL) { |
| 235 | self->allocProf.gcCount++; |
| 236 | } |
| 237 | } |
| 238 | #endif |
| 239 | /* This may adjust the soft limit as a side-effect. |
| 240 | */ |
| 241 | LOGD_HEAP("dvmMalloc initiating GC%s\n", |
| 242 | collectSoftReferences ? "(collect SoftReferences)" : ""); |
| Barry Hayes | 1b9b4e4 | 2010-01-04 10:33:46 -0800 | [diff] [blame] | 243 | dvmCollectGarbageInternal(collectSoftReferences, GC_FOR_MALLOC); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | /* Try as hard as possible to allocate some memory. |
| 247 | */ |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 248 | static void *tryMalloc(size_t size) |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 249 | { |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 250 | void *ptr; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 251 | |
| 252 | /* Don't try too hard if there's no way the allocation is |
| 253 | * going to succeed. We have to collect SoftReferences before |
| 254 | * throwing an OOME, though. |
| 255 | */ |
| 256 | if (size >= gDvm.heapSizeMax) { |
| 257 | LOGW_HEAP("dvmMalloc(%zu/0x%08zx): " |
| 258 | "someone's allocating a huge buffer\n", size, size); |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 259 | ptr = NULL; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 260 | goto collect_soft_refs; |
| 261 | } |
| 262 | |
| 263 | //TODO: figure out better heuristics |
| 264 | // There will be a lot of churn if someone allocates a bunch of |
| 265 | // big objects in a row, and we hit the frag case each time. |
| 266 | // A full GC for each. |
| 267 | // Maybe we grow the heap in bigger leaps |
| 268 | // Maybe we skip the GC if the size is large and we did one recently |
| 269 | // (number of allocations ago) (watch for thread effects) |
| 270 | // DeflateTest allocs a bunch of ~128k buffers w/in 0-5 allocs of each other |
| 271 | // (or, at least, there are only 0-5 objects swept each time) |
| 272 | |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 273 | ptr = dvmHeapSourceAlloc(size); |
| 274 | if (ptr != NULL) { |
| 275 | return ptr; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | /* The allocation failed. Free up some space by doing |
| 279 | * a full garbage collection. This may grow the heap |
| 280 | * if the live set is sufficiently large. |
| 281 | */ |
| 282 | gcForMalloc(false); |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 283 | ptr = dvmHeapSourceAlloc(size); |
| 284 | if (ptr != NULL) { |
| 285 | return ptr; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | /* Even that didn't work; this is an exceptional state. |
| 289 | * Try harder, growing the heap if necessary. |
| 290 | */ |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 291 | ptr = dvmHeapSourceAllocAndGrow(size); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 292 | dvmHeapSizeChanged(); |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 293 | if (ptr != NULL) { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 294 | size_t newHeapSize; |
| 295 | |
| 296 | newHeapSize = dvmHeapSourceGetIdealFootprint(); |
| 297 | //TODO: may want to grow a little bit more so that the amount of free |
| 298 | // space is equal to the old free space + the utilization slop for |
| 299 | // the new allocation. |
| 300 | LOGI_HEAP("Grow heap (frag case) to " |
| 301 | "%zu.%03zuMB for %zu-byte allocation\n", |
| 302 | FRACTIONAL_MB(newHeapSize), size); |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 303 | return ptr; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | /* Most allocations should have succeeded by now, so the heap |
| 307 | * is really full, really fragmented, or the requested size is |
| 308 | * really big. Do another GC, collecting SoftReferences this |
| 309 | * time. The VM spec requires that all SoftReferences have |
| 310 | * been collected and cleared before throwing an OOME. |
| 311 | */ |
| 312 | //TODO: wait for the finalizers from the previous GC to finish |
| 313 | collect_soft_refs: |
| 314 | LOGI_HEAP("Forcing collection of SoftReferences for %zu-byte allocation\n", |
| 315 | size); |
| 316 | gcForMalloc(true); |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 317 | ptr = dvmHeapSourceAllocAndGrow(size); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 318 | dvmHeapSizeChanged(); |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 319 | if (ptr != NULL) { |
| 320 | return ptr; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 321 | } |
| 322 | //TODO: maybe wait for finalizers and try one last time |
| 323 | |
| 324 | LOGE_HEAP("Out of memory on a %zd-byte allocation.\n", size); |
| 325 | //TODO: tell the HeapSource to dump its state |
| 326 | dvmDumpThread(dvmThreadSelf(), false); |
| 327 | |
| 328 | return NULL; |
| 329 | } |
| 330 | |
| 331 | /* Throw an OutOfMemoryError if there's a thread to attach it to. |
| 332 | * Avoid recursing. |
| 333 | * |
| 334 | * The caller must not be holding the heap lock, or else the allocations |
| 335 | * in dvmThrowException() will deadlock. |
| 336 | */ |
| 337 | static void throwOOME() |
| 338 | { |
| 339 | Thread *self; |
| 340 | |
| 341 | if ((self = dvmThreadSelf()) != NULL) { |
| 342 | /* If the current (failing) dvmMalloc() happened as part of thread |
| 343 | * creation/attachment before the thread became part of the root set, |
| 344 | * we can't rely on the thread-local trackedAlloc table, so |
| 345 | * we can't keep track of a real allocated OOME object. But, since |
| 346 | * the thread is in the process of being created, it won't have |
| 347 | * a useful stack anyway, so we may as well make things easier |
| 348 | * by throwing the (stackless) pre-built OOME. |
| 349 | */ |
| 350 | if (dvmIsOnThreadList(self) && !self->throwingOOME) { |
| 351 | /* Let ourselves know that we tried to throw an OOM |
| 352 | * error in the normal way in case we run out of |
| 353 | * memory trying to allocate it inside dvmThrowException(). |
| 354 | */ |
| 355 | self->throwingOOME = true; |
| 356 | |
| 357 | /* Don't include a description string; |
| 358 | * one fewer allocation. |
| 359 | */ |
| 360 | dvmThrowException("Ljava/lang/OutOfMemoryError;", NULL); |
| 361 | } else { |
| 362 | /* |
| 363 | * This thread has already tried to throw an OutOfMemoryError, |
| 364 | * which probably means that we're running out of memory |
| 365 | * while recursively trying to throw. |
| 366 | * |
| 367 | * To avoid any more allocation attempts, "throw" a pre-built |
| 368 | * OutOfMemoryError object (which won't have a useful stack trace). |
| 369 | * |
| 370 | * Note that since this call can't possibly allocate anything, |
| 371 | * we don't care about the state of self->throwingOOME |
| 372 | * (which will usually already be set). |
| 373 | */ |
| 374 | dvmSetException(self, gDvm.outOfMemoryObj); |
| 375 | } |
| 376 | /* We're done with the possible recursion. |
| 377 | */ |
| 378 | self->throwingOOME = false; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | /* |
| 383 | * Allocate storage on the GC heap. We guarantee 8-byte alignment. |
| 384 | * |
| 385 | * The new storage is zeroed out. |
| 386 | * |
| 387 | * Note that, in rare cases, this could get called while a GC is in |
| 388 | * progress. If a non-VM thread tries to attach itself through JNI, |
| 389 | * it will need to allocate some objects. If this becomes annoying to |
| 390 | * deal with, we can block it at the source, but holding the allocation |
| 391 | * mutex should be enough. |
| 392 | * |
| 393 | * In rare circumstances (JNI AttachCurrentThread) we can be called |
| 394 | * from a non-VM thread. |
| 395 | * |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 396 | * Use ALLOC_DONT_TRACK when we either don't want to track an allocation |
| 397 | * (because it's being done for the interpreter "new" operation and will |
| 398 | * be part of the root set immediately) or we can't (because this allocation |
| 399 | * is for a brand new thread). |
| 400 | * |
| 401 | * Returns NULL and throws an exception on failure. |
| 402 | * |
| 403 | * TODO: don't do a GC if the debugger thinks all threads are suspended |
| 404 | */ |
| 405 | void* dvmMalloc(size_t size, int flags) |
| 406 | { |
| 407 | GcHeap *gcHeap = gDvm.gcHeap; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 408 | void *ptr; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 409 | |
| 410 | #if 0 |
| 411 | /* handy for spotting large allocations */ |
| 412 | if (size >= 100000) { |
| 413 | LOGI("dvmMalloc(%d):\n", size); |
| 414 | dvmDumpThread(dvmThreadSelf(), false); |
| 415 | } |
| 416 | #endif |
| 417 | |
| 418 | #if defined(WITH_ALLOC_LIMITS) |
| 419 | /* |
| 420 | * See if they've exceeded the allocation limit for this thread. |
| 421 | * |
| 422 | * A limit value of -1 means "no limit". |
| 423 | * |
| 424 | * This is enabled at compile time because it requires us to do a |
| 425 | * TLS lookup for the Thread pointer. This has enough of a performance |
| 426 | * impact that we don't want to do it if we don't have to. (Now that |
| 427 | * we're using gDvm.checkAllocLimits we may want to reconsider this, |
| 428 | * but it's probably still best to just compile the check out of |
| 429 | * production code -- one less thing to hit on every allocation.) |
| 430 | */ |
| 431 | if (gDvm.checkAllocLimits) { |
| 432 | Thread* self = dvmThreadSelf(); |
| 433 | if (self != NULL) { |
| 434 | int count = self->allocLimit; |
| 435 | if (count > 0) { |
| 436 | self->allocLimit--; |
| 437 | } else if (count == 0) { |
| 438 | /* fail! */ |
| 439 | assert(!gDvm.initializing); |
| 440 | self->allocLimit = -1; |
| 441 | dvmThrowException("Ldalvik/system/AllocationLimitError;", |
| 442 | "thread allocation limit exceeded"); |
| 443 | return NULL; |
| 444 | } |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | if (gDvm.allocationLimit >= 0) { |
| 449 | assert(!gDvm.initializing); |
| 450 | gDvm.allocationLimit = -1; |
| 451 | dvmThrowException("Ldalvik/system/AllocationLimitError;", |
| 452 | "global allocation limit exceeded"); |
| 453 | return NULL; |
| 454 | } |
| 455 | #endif |
| 456 | |
| 457 | dvmLockHeap(); |
| 458 | |
| 459 | /* Try as hard as possible to allocate some memory. |
| 460 | */ |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 461 | ptr = tryMalloc(size); |
| 462 | if (ptr != NULL) { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 463 | /* We've got the memory. |
| 464 | */ |
| 465 | if ((flags & ALLOC_FINALIZABLE) != 0) { |
| 466 | /* This object is an instance of a class that |
| 467 | * overrides finalize(). Add it to the finalizable list. |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 468 | */ |
| 469 | if (!dvmHeapAddRefToLargeTable(&gcHeap->finalizableRefs, |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 470 | (Object *)ptr)) |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 471 | { |
| 472 | LOGE_HEAP("dvmMalloc(): no room for any more " |
| 473 | "finalizable objects\n"); |
| 474 | dvmAbort(); |
| 475 | } |
| 476 | } |
| 477 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 478 | #ifdef WITH_PROFILER |
| 479 | if (gDvm.allocProf.enabled) { |
| 480 | Thread* self = dvmThreadSelf(); |
| 481 | gDvm.allocProf.allocCount++; |
| 482 | gDvm.allocProf.allocSize += size; |
| 483 | if (self != NULL) { |
| 484 | self->allocProf.allocCount++; |
| 485 | self->allocProf.allocSize += size; |
| 486 | } |
| 487 | } |
| 488 | #endif |
| 489 | } else { |
| 490 | /* The allocation failed. |
| 491 | */ |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 492 | |
| 493 | #ifdef WITH_PROFILER |
| 494 | if (gDvm.allocProf.enabled) { |
| 495 | Thread* self = dvmThreadSelf(); |
| 496 | gDvm.allocProf.failedAllocCount++; |
| 497 | gDvm.allocProf.failedAllocSize += size; |
| 498 | if (self != NULL) { |
| 499 | self->allocProf.failedAllocCount++; |
| 500 | self->allocProf.failedAllocSize += size; |
| 501 | } |
| 502 | } |
| 503 | #endif |
| 504 | } |
| 505 | |
| 506 | dvmUnlockHeap(); |
| 507 | |
| 508 | if (ptr != NULL) { |
| 509 | /* |
| Barry Hayes | d4f78d3 | 2010-06-08 09:34:42 -0700 | [diff] [blame] | 510 | * If caller hasn't asked us not to track it, add it to the |
| 511 | * internal tracking list. |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 512 | */ |
| Barry Hayes | d4f78d3 | 2010-06-08 09:34:42 -0700 | [diff] [blame] | 513 | if ((flags & ALLOC_DONT_TRACK) == 0) { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 514 | dvmAddTrackedAlloc(ptr, NULL); |
| 515 | } |
| 516 | } else { |
| Ben Cheng | c3b92b2 | 2010-01-26 16:46:15 -0800 | [diff] [blame] | 517 | /* |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 518 | * The allocation failed; throw an OutOfMemoryError. |
| 519 | */ |
| 520 | throwOOME(); |
| 521 | } |
| 522 | |
| 523 | return ptr; |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * Returns true iff <obj> points to a valid allocated object. |
| 528 | */ |
| 529 | bool dvmIsValidObject(const Object* obj) |
| 530 | { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 531 | /* Don't bother if it's NULL or not 8-byte aligned. |
| 532 | */ |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 533 | if (obj != NULL && ((uintptr_t)obj & (8-1)) == 0) { |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 534 | /* Even if the heap isn't locked, this shouldn't return |
| 535 | * any false negatives. The only mutation that could |
| 536 | * be happening is allocation, which means that another |
| 537 | * thread could be in the middle of a read-modify-write |
| 538 | * to add a new bit for a new object. However, that |
| 539 | * RMW will have completed by the time any other thread |
| 540 | * could possibly see the new pointer, so there is no |
| 541 | * danger of dvmIsValidObject() being called on a valid |
| 542 | * pointer whose bit isn't set. |
| 543 | * |
| 544 | * Freeing will only happen during the sweep phase, which |
| 545 | * only happens while the heap is locked. |
| 546 | */ |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 547 | return dvmHeapSourceContains(obj); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 548 | } |
| 549 | return false; |
| 550 | } |
| 551 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 552 | size_t dvmObjectSizeInHeap(const Object *obj) |
| 553 | { |
| Carl Shapiro | 6343bd0 | 2010-02-16 17:40:19 -0800 | [diff] [blame] | 554 | return dvmHeapSourceChunkSize(obj); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 555 | } |
| 556 | |
| 557 | /* |
| Barry Hayes | 962adba | 2010-03-17 12:12:39 -0700 | [diff] [blame] | 558 | * Scan every live object in the heap, holding the locks. |
| 559 | */ |
| 560 | static void verifyHeap() |
| 561 | { |
| 562 | // TODO: check the locks. |
| 563 | HeapBitmap *liveBits = dvmHeapSourceGetLiveBits(); |
| 564 | dvmVerifyBitmap(liveBits); |
| 565 | } |
| 566 | |
| 567 | /* |
| 568 | * Suspend the VM as for a GC, and assert-fail if any object has any |
| 569 | * corrupt references. |
| 570 | */ |
| 571 | void dvmHeapSuspendAndVerify() |
| 572 | { |
| 573 | /* Suspend the VM. */ |
| 574 | dvmSuspendAllThreads(SUSPEND_FOR_VERIFY); |
| 575 | dvmLockMutex(&gDvm.heapWorkerLock); |
| 576 | dvmAssertHeapWorkerThreadRunning(); |
| 577 | dvmLockMutex(&gDvm.heapWorkerListLock); |
| 578 | |
| 579 | verifyHeap(); |
| 580 | |
| 581 | /* Resume the VM. */ |
| 582 | dvmUnlockMutex(&gDvm.heapWorkerListLock); |
| 583 | dvmUnlockMutex(&gDvm.heapWorkerLock); |
| 584 | dvmResumeAllThreads(SUSPEND_FOR_VERIFY); |
| 585 | } |
| 586 | |
| 587 | /* |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 588 | * Initiate garbage collection. |
| 589 | * |
| 590 | * NOTES: |
| 591 | * - If we don't hold gDvm.threadListLock, it's possible for a thread to |
| 592 | * be added to the thread list while we work. The thread should NOT |
| 593 | * start executing, so this is only interesting when we start chasing |
| 594 | * thread stacks. (Before we do so, grab the lock.) |
| 595 | * |
| 596 | * We are not allowed to GC when the debugger has suspended the VM, which |
| 597 | * is awkward because debugger requests can cause allocations. The easiest |
| 598 | * way to enforce this is to refuse to GC on an allocation made by the |
| 599 | * JDWP thread -- we have to expand the heap or fail. |
| 600 | */ |
| Carl Shapiro | 2954074 | 2010-03-26 15:34:39 -0700 | [diff] [blame] | 601 | void dvmCollectGarbageInternal(bool clearSoftRefs, GcReason reason) |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 602 | { |
| 603 | GcHeap *gcHeap = gDvm.gcHeap; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 604 | u8 now; |
| 605 | s8 timeSinceLastGc; |
| 606 | s8 gcElapsedTime; |
| 607 | int numFreed; |
| 608 | size_t sizeFreed; |
| Carl Shapiro | d25566d | 2010-03-11 20:39:47 -0800 | [diff] [blame] | 609 | GcMode gcMode; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 610 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 611 | /* The heap lock must be held. |
| 612 | */ |
| 613 | |
| 614 | if (gcHeap->gcRunning) { |
| 615 | LOGW_HEAP("Attempted recursive GC\n"); |
| 616 | return; |
| 617 | } |
| Carl Shapiro | d25566d | 2010-03-11 20:39:47 -0800 | [diff] [blame] | 618 | gcMode = (reason == GC_FOR_MALLOC) ? GC_PARTIAL : GC_FULL; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 619 | gcHeap->gcRunning = true; |
| 620 | now = dvmGetRelativeTimeUsec(); |
| 621 | if (gcHeap->gcStartTime != 0) { |
| 622 | timeSinceLastGc = (now - gcHeap->gcStartTime) / 1000; |
| 623 | } else { |
| 624 | timeSinceLastGc = 0; |
| 625 | } |
| 626 | gcHeap->gcStartTime = now; |
| 627 | |
| Barry Hayes | 1b9b4e4 | 2010-01-04 10:33:46 -0800 | [diff] [blame] | 628 | LOGV_HEAP("%s starting -- suspending threads\n", GcReasonStr[reason]); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 629 | |
| 630 | dvmSuspendAllThreads(SUSPEND_FOR_GC); |
| 631 | |
| 632 | /* Get the priority (the "nice" value) of the current thread. The |
| 633 | * getpriority() call can legitimately return -1, so we have to |
| 634 | * explicitly test errno. |
| 635 | */ |
| 636 | errno = 0; |
| 637 | int oldThreadPriority = kInvalidPriority; |
| 638 | int priorityResult = getpriority(PRIO_PROCESS, 0); |
| 639 | if (errno != 0) { |
| 640 | LOGI_HEAP("getpriority(self) failed: %s\n", strerror(errno)); |
| 641 | } else if (priorityResult > ANDROID_PRIORITY_NORMAL) { |
| 642 | /* Current value is numerically greater than "normal", which |
| 643 | * in backward UNIX terms means lower priority. |
| 644 | */ |
| San Mehat | 256fc15 | 2009-04-21 14:03:06 -0700 | [diff] [blame] | 645 | |
| San Mehat | 3e371e2 | 2009-06-26 08:36:16 -0700 | [diff] [blame] | 646 | if (priorityResult >= ANDROID_PRIORITY_BACKGROUND) { |
| San Mehat | 5a2056c | 2009-09-12 10:10:13 -0700 | [diff] [blame] | 647 | set_sched_policy(dvmGetSysThreadId(), SP_FOREGROUND); |
| San Mehat | 256fc15 | 2009-04-21 14:03:06 -0700 | [diff] [blame] | 648 | } |
| 649 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 650 | if (setpriority(PRIO_PROCESS, 0, ANDROID_PRIORITY_NORMAL) != 0) { |
| 651 | LOGI_HEAP("Unable to elevate priority from %d to %d\n", |
| 652 | priorityResult, ANDROID_PRIORITY_NORMAL); |
| 653 | } else { |
| 654 | /* priority elevated; save value so we can restore it later */ |
| 655 | LOGD_HEAP("Elevating priority from %d to %d\n", |
| 656 | priorityResult, ANDROID_PRIORITY_NORMAL); |
| 657 | oldThreadPriority = priorityResult; |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | /* Wait for the HeapWorker thread to block. |
| 662 | * (It may also already be suspended in interp code, |
| 663 | * in which case it's not holding heapWorkerLock.) |
| 664 | */ |
| 665 | dvmLockMutex(&gDvm.heapWorkerLock); |
| 666 | |
| 667 | /* Make sure that the HeapWorker thread hasn't become |
| 668 | * wedged inside interp code. If it has, this call will |
| 669 | * print a message and abort the VM. |
| 670 | */ |
| 671 | dvmAssertHeapWorkerThreadRunning(); |
| 672 | |
| 673 | /* Lock the pendingFinalizationRefs list. |
| 674 | * |
| 675 | * Acquire the lock after suspending so the finalizer |
| 676 | * thread can't block in the RUNNING state while |
| 677 | * we try to suspend. |
| 678 | */ |
| 679 | dvmLockMutex(&gDvm.heapWorkerListLock); |
| 680 | |
| Barry Hayes | 962adba | 2010-03-17 12:12:39 -0700 | [diff] [blame] | 681 | if (gDvm.preVerify) { |
| 682 | LOGV_HEAP("Verifying heap before GC"); |
| 683 | verifyHeap(); |
| 684 | } |
| 685 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 686 | #ifdef WITH_PROFILER |
| 687 | dvmMethodTraceGCBegin(); |
| 688 | #endif |
| 689 | |
| 690 | #if WITH_HPROF |
| 691 | |
| 692 | /* Set DUMP_HEAP_ON_DDMS_UPDATE to 1 to enable heap dumps |
| 693 | * whenever DDMS requests a heap update (HPIF chunk). |
| 694 | * The output files will appear in /data/misc, which must |
| 695 | * already exist. |
| 696 | * You must define "WITH_HPROF := true" in your buildspec.mk |
| 697 | * and recompile libdvm for this to work. |
| 698 | * |
| 699 | * To enable stack traces for each allocation, define |
| 700 | * "WITH_HPROF_STACK := true" in buildspec.mk. This option slows down |
| 701 | * allocations and also requires 8 additional bytes per object on the |
| 702 | * GC heap. |
| 703 | */ |
| 704 | #define DUMP_HEAP_ON_DDMS_UPDATE 0 |
| 705 | #if DUMP_HEAP_ON_DDMS_UPDATE |
| 706 | gcHeap->hprofDumpOnGc |= (gcHeap->ddmHpifWhen != 0); |
| 707 | #endif |
| 708 | |
| 709 | if (gcHeap->hprofDumpOnGc) { |
| 710 | char nameBuf[128]; |
| 711 | |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 712 | gcHeap->hprofResult = -1; |
| 713 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 714 | if (gcHeap->hprofFileName == NULL) { |
| 715 | /* no filename was provided; invent one */ |
| 716 | sprintf(nameBuf, "/data/misc/heap-dump-tm%d-pid%d.hprof", |
| 717 | (int) time(NULL), (int) getpid()); |
| 718 | gcHeap->hprofFileName = nameBuf; |
| 719 | } |
| Andy McFadden | 6bf992c | 2010-01-28 17:01:39 -0800 | [diff] [blame] | 720 | gcHeap->hprofContext = hprofStartup(gcHeap->hprofFileName, |
| 721 | gcHeap->hprofDirectToDdms); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 722 | if (gcHeap->hprofContext != NULL) { |
| 723 | hprofStartHeapDump(gcHeap->hprofContext); |
| 724 | } |
| 725 | gcHeap->hprofDumpOnGc = false; |
| 726 | gcHeap->hprofFileName = NULL; |
| 727 | } |
| 728 | #endif |
| 729 | |
| 730 | if (timeSinceLastGc < 10000) { |
| 731 | LOGD_HEAP("GC! (%dms since last GC)\n", |
| 732 | (int)timeSinceLastGc); |
| 733 | } else { |
| 734 | LOGD_HEAP("GC! (%d sec since last GC)\n", |
| 735 | (int)(timeSinceLastGc / 1000)); |
| 736 | } |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 737 | |
| 738 | /* Set up the marking context. |
| 739 | */ |
| Carl Shapiro | d25566d | 2010-03-11 20:39:47 -0800 | [diff] [blame] | 740 | if (!dvmHeapBeginMarkStep(gcMode)) { |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 741 | LOGE_HEAP("dvmHeapBeginMarkStep failed; aborting\n"); |
| 742 | dvmAbort(); |
| 743 | } |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 744 | |
| 745 | /* Mark the set of objects that are strongly reachable from the roots. |
| 746 | */ |
| 747 | LOGD_HEAP("Marking..."); |
| 748 | dvmHeapMarkRootSet(); |
| 749 | |
| 750 | /* dvmHeapScanMarkedObjects() will build the lists of known |
| 751 | * instances of the Reference classes. |
| 752 | */ |
| 753 | gcHeap->softReferences = NULL; |
| 754 | gcHeap->weakReferences = NULL; |
| 755 | gcHeap->phantomReferences = NULL; |
| 756 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 757 | /* Recursively mark any objects that marked objects point to strongly. |
| 758 | * If we're not collecting soft references, soft-reachable |
| 759 | * objects will also be marked. |
| 760 | */ |
| 761 | LOGD_HEAP("Recursing..."); |
| 762 | dvmHeapScanMarkedObjects(); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 763 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 764 | /* All strongly-reachable objects have now been marked. |
| 765 | */ |
| Carl Shapiro | 2954074 | 2010-03-26 15:34:39 -0700 | [diff] [blame] | 766 | LOGD_HEAP("Handling soft references..."); |
| 767 | if (!clearSoftRefs) { |
| 768 | dvmHandleSoftRefs(&gcHeap->softReferences); |
| 769 | } |
| 770 | dvmClearWhiteRefs(&gcHeap->softReferences); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 771 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 772 | LOGD_HEAP("Handling weak references..."); |
| Carl Shapiro | 2954074 | 2010-03-26 15:34:39 -0700 | [diff] [blame] | 773 | dvmClearWhiteRefs(&gcHeap->weakReferences); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 774 | |
| 775 | /* Once all weak-reachable objects have been taken |
| 776 | * care of, any remaining unmarked objects can be finalized. |
| 777 | */ |
| 778 | LOGD_HEAP("Finding finalizations..."); |
| 779 | dvmHeapScheduleFinalizations(); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 780 | |
| Carl Shapiro | 2954074 | 2010-03-26 15:34:39 -0700 | [diff] [blame] | 781 | LOGD_HEAP("Handling f-reachable soft references..."); |
| 782 | dvmClearWhiteRefs(&gcHeap->softReferences); |
| 783 | |
| 784 | LOGD_HEAP("Handling f-reachable weak references..."); |
| 785 | dvmClearWhiteRefs(&gcHeap->weakReferences); |
| 786 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 787 | /* Any remaining objects that are not pending finalization |
| 788 | * could be phantom-reachable. This will mark any phantom-reachable |
| 789 | * objects, as well as enqueue their references. |
| 790 | */ |
| 791 | LOGD_HEAP("Handling phantom references..."); |
| Carl Shapiro | 2954074 | 2010-03-26 15:34:39 -0700 | [diff] [blame] | 792 | dvmClearWhiteRefs(&gcHeap->phantomReferences); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 793 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 794 | #ifdef WITH_DEADLOCK_PREDICTION |
| 795 | dvmDumpMonitorInfo("before sweep"); |
| 796 | #endif |
| 797 | LOGD_HEAP("Sweeping..."); |
| Carl Shapiro | d25566d | 2010-03-11 20:39:47 -0800 | [diff] [blame] | 798 | dvmHeapSweepUnmarkedObjects(gcMode, &numFreed, &sizeFreed); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 799 | #ifdef WITH_DEADLOCK_PREDICTION |
| 800 | dvmDumpMonitorInfo("after sweep"); |
| 801 | #endif |
| 802 | |
| 803 | LOGD_HEAP("Cleaning up..."); |
| 804 | dvmHeapFinishMarkStep(); |
| 805 | |
| 806 | LOGD_HEAP("Done."); |
| 807 | |
| 808 | /* Now's a good time to adjust the heap size, since |
| 809 | * we know what our utilization is. |
| 810 | * |
| 811 | * This doesn't actually resize any memory; |
| 812 | * it just lets the heap grow more when necessary. |
| 813 | */ |
| 814 | dvmHeapSourceGrowForUtilization(); |
| 815 | dvmHeapSizeChanged(); |
| 816 | |
| 817 | #if WITH_HPROF |
| 818 | if (gcHeap->hprofContext != NULL) { |
| 819 | hprofFinishHeapDump(gcHeap->hprofContext); |
| 820 | //TODO: write a HEAP_SUMMARY record |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 821 | if (hprofShutdown(gcHeap->hprofContext)) |
| 822 | gcHeap->hprofResult = 0; /* indicate success */ |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 823 | gcHeap->hprofContext = NULL; |
| 824 | } |
| 825 | #endif |
| 826 | |
| 827 | /* Now that we've freed up the GC heap, return any large |
| 828 | * free chunks back to the system. They'll get paged back |
| 829 | * in the next time they're used. Don't do it immediately, |
| 830 | * though; if the process is still allocating a bunch of |
| 831 | * memory, we'll be taking a ton of page faults that we don't |
| 832 | * necessarily need to. |
| 833 | * |
| 834 | * Cancel any old scheduled trims, and schedule a new one. |
| 835 | */ |
| 836 | dvmScheduleHeapSourceTrim(5); // in seconds |
| 837 | |
| 838 | #ifdef WITH_PROFILER |
| 839 | dvmMethodTraceGCEnd(); |
| 840 | #endif |
| Barry Hayes | 962adba | 2010-03-17 12:12:39 -0700 | [diff] [blame] | 841 | LOGV_HEAP("GC finished"); |
| 842 | |
| 843 | if (gDvm.postVerify) { |
| 844 | LOGV_HEAP("Verifying heap after GC"); |
| 845 | verifyHeap(); |
| 846 | } |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 847 | |
| 848 | gcHeap->gcRunning = false; |
| 849 | |
| Barry Hayes | 962adba | 2010-03-17 12:12:39 -0700 | [diff] [blame] | 850 | LOGV_HEAP("Resuming threads"); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 851 | dvmUnlockMutex(&gDvm.heapWorkerListLock); |
| 852 | dvmUnlockMutex(&gDvm.heapWorkerLock); |
| 853 | |
| Ben Cheng | c3b92b2 | 2010-01-26 16:46:15 -0800 | [diff] [blame] | 854 | #if defined(WITH_JIT) |
| Ben Cheng | c3b92b2 | 2010-01-26 16:46:15 -0800 | [diff] [blame] | 855 | /* |
| 856 | * Patching a chaining cell is very cheap as it only updates 4 words. It's |
| 857 | * the overhead of stopping all threads and synchronizing the I/D cache |
| 858 | * that makes it expensive. |
| 859 | * |
| 860 | * Therefore we batch those work orders in a queue and go through them |
| 861 | * when threads are suspended for GC. |
| 862 | */ |
| 863 | dvmCompilerPerformSafePointChecks(); |
| 864 | #endif |
| 865 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 866 | dvmResumeAllThreads(SUSPEND_FOR_GC); |
| 867 | if (oldThreadPriority != kInvalidPriority) { |
| 868 | if (setpriority(PRIO_PROCESS, 0, oldThreadPriority) != 0) { |
| 869 | LOGW_HEAP("Unable to reset priority to %d: %s\n", |
| 870 | oldThreadPriority, strerror(errno)); |
| 871 | } else { |
| 872 | LOGD_HEAP("Reset priority to %d\n", oldThreadPriority); |
| 873 | } |
| San Mehat | 256fc15 | 2009-04-21 14:03:06 -0700 | [diff] [blame] | 874 | |
| San Mehat | 3e371e2 | 2009-06-26 08:36:16 -0700 | [diff] [blame] | 875 | if (oldThreadPriority >= ANDROID_PRIORITY_BACKGROUND) { |
| San Mehat | 5a2056c | 2009-09-12 10:10:13 -0700 | [diff] [blame] | 876 | set_sched_policy(dvmGetSysThreadId(), SP_BACKGROUND); |
| San Mehat | 256fc15 | 2009-04-21 14:03:06 -0700 | [diff] [blame] | 877 | } |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 878 | } |
| 879 | gcElapsedTime = (dvmGetRelativeTimeUsec() - gcHeap->gcStartTime) / 1000; |
| Barry Hayes | 3136413 | 2010-01-04 16:10:09 -0800 | [diff] [blame] | 880 | LOGD("%s freed %d objects / %zd bytes in %dms\n", |
| 881 | GcReasonStr[reason], numFreed, sizeFreed, (int)gcElapsedTime); |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 882 | dvmLogGcStats(numFreed, sizeFreed, gcElapsedTime); |
| 883 | |
| 884 | if (gcHeap->ddmHpifWhen != 0) { |
| 885 | LOGD_HEAP("Sending VM heap info to DDM\n"); |
| 886 | dvmDdmSendHeapInfo(gcHeap->ddmHpifWhen, false); |
| 887 | } |
| 888 | if (gcHeap->ddmHpsgWhen != 0) { |
| 889 | LOGD_HEAP("Dumping VM heap to DDM\n"); |
| 890 | dvmDdmSendHeapSegments(false, false); |
| 891 | } |
| 892 | if (gcHeap->ddmNhsgWhen != 0) { |
| 893 | LOGD_HEAP("Dumping native heap to DDM\n"); |
| 894 | dvmDdmSendHeapSegments(false, true); |
| 895 | } |
| 896 | } |
| 897 | |
| 898 | #if WITH_HPROF |
| 899 | /* |
| 900 | * Perform garbage collection, writing heap information to the specified file. |
| 901 | * |
| 902 | * If "fileName" is NULL, a suitable name will be generated automatically. |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 903 | * |
| 904 | * Returns 0 on success, or an error code on failure. |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 905 | */ |
| Andy McFadden | 6bf992c | 2010-01-28 17:01:39 -0800 | [diff] [blame] | 906 | int hprofDumpHeap(const char* fileName, bool directToDdms) |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 907 | { |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 908 | int result; |
| 909 | |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 910 | dvmLockMutex(&gDvm.gcHeapLock); |
| 911 | |
| 912 | gDvm.gcHeap->hprofDumpOnGc = true; |
| 913 | gDvm.gcHeap->hprofFileName = fileName; |
| Andy McFadden | 6bf992c | 2010-01-28 17:01:39 -0800 | [diff] [blame] | 914 | gDvm.gcHeap->hprofDirectToDdms = directToDdms; |
| Barry Hayes | 1b9b4e4 | 2010-01-04 10:33:46 -0800 | [diff] [blame] | 915 | dvmCollectGarbageInternal(false, GC_HPROF_DUMP_HEAP); |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 916 | result = gDvm.gcHeap->hprofResult; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 917 | |
| 918 | dvmUnlockMutex(&gDvm.gcHeapLock); |
| The Android Open Source Project | 9940988 | 2009-03-18 22:20:24 -0700 | [diff] [blame] | 919 | |
| 920 | return result; |
| The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | void dvmHeapSetHprofGcScanState(hprof_heap_tag_t state, u4 threadSerialNumber) |
| 924 | { |
| 925 | if (gDvm.gcHeap->hprofContext != NULL) { |
| 926 | hprofSetGcScanState(gDvm.gcHeap->hprofContext, state, |
| 927 | threadSerialNumber); |
| 928 | } |
| 929 | } |
| 930 | #endif |