LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // Page heap. | 5 // Page heap. |
6 // | 6 // |
7 // See malloc.h for overview. | 7 // See malloc.h for overview. |
8 // | 8 // |
9 // When a MSpan is in the heap free list, state == MSpanFree | 9 // When a MSpan is in the heap free list, state == MSpanFree |
10 // and heapmap(s->start) == span, heapmap(s->start+s->npages-1) == span. | 10 // and heapmap(s->start) == span, heapmap(s->start+s->npages-1) == span. |
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 } | 319 } |
320 | 320 |
321 // Insert s into appropriate list. | 321 // Insert s into appropriate list. |
322 if(s->npages < nelem(h->free)) | 322 if(s->npages < nelem(h->free)) |
323 runtime·MSpanList_Insert(&h->free[s->npages], s); | 323 runtime·MSpanList_Insert(&h->free[s->npages], s); |
324 else | 324 else |
325 runtime·MSpanList_Insert(&h->large, s); | 325 runtime·MSpanList_Insert(&h->large, s); |
326 } | 326 } |
327 | 327 |
328 // Release (part of) unused memory to OS. | 328 // Release (part of) unused memory to OS. |
329 // Goroutine created in runtime·schedinit. | 329 // Goroutine created at startup. |
330 // Loop forever. | 330 // Loop forever. |
331 void | 331 void |
332 runtime·MHeap_Scavenger(void) | 332 runtime·MHeap_Scavenger(void) |
333 { | 333 { |
334 MHeap *h; | 334 MHeap *h; |
335 MSpan *s, *list; | 335 MSpan *s, *list; |
336 uint64 tick, now, forcegc, limit; | 336 uint64 tick, now, forcegc, limit; |
337 uint32 k, i; | 337 uint32 k, i; |
338 uintptr released, sumreleased; | 338 uintptr released, sumreleased; |
339 byte *env; | 339 byte *env; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
452 runtime·printf("failed MSpanList_Insert %p %p %p\n", span, span-
>next, span->prev); | 452 runtime·printf("failed MSpanList_Insert %p %p %p\n", span, span-
>next, span->prev); |
453 runtime·throw("MSpanList_Insert"); | 453 runtime·throw("MSpanList_Insert"); |
454 } | 454 } |
455 span->next = list->next; | 455 span->next = list->next; |
456 span->prev = list; | 456 span->prev = list; |
457 span->next->prev = span; | 457 span->next->prev = span; |
458 span->prev->next = span; | 458 span->prev->next = span; |
459 } | 459 } |
460 | 460 |
461 | 461 |
LEFT | RIGHT |