Dynamic Memory Allocation II

Slides:



Advertisements
Similar presentations
Dynamic Memory Allocation II
Advertisements

Lecture 10: Heap Management CS 540 GMU Spring 2009.
Instructors: Seth Copen Goldstein, Franz Franchetti, Greg Kesden
1. Dynamic Memory Allocation. Dynamic Memory Allocation Programmers use dynamic memory allocators (such as malloc ) to acquire VM at run time.  For data.
1 Binghamton University Dynamic Memory Allocation: Advanced Concepts CS220: Computer Systems II.
Dynamic Memory Allocation Topics Simple explicit allocators Data structures Mechanisms Policies.
Some topics in Memory Management
University of Washington Today Dynamic memory allocation  Size of data structures may only be known at run time  Need to allocate space on the heap 
1 Dynamic Memory Allocation: Advanced Concepts Andrew Case Slides adapted from Jinyang Li, Randy Bryant and Dave O’Hallaron Joke of the day: Why did the.
Mark and Sweep Algorithm Reference Counting Memory Related PitFalls
Carnegie Mellon 1 Dynamic Memory Allocation: Advanced Concepts : Introduction to Computer Systems 18 th Lecture, Oct. 26, 2010 Instructors: Randy.
Carnegie Mellon Introduction to Computer Systems /18-243, spring th Lecture, Mar. 31 st Instructors: Gregory Kesden and Markus Püschel.
Dynamic Memory Allocation II Nov 7, 2002 Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Memory-related perils and pitfalls.
– 1 – Dynamic Memory Allocation – beyond the stack and globals Stack Easy to allocate (decrement esp) Easy to deallocate (increment esp) Automatic allocation.
Dynamic Memory Allocation I May 21, 2008 Topics Simple explicit allocators Data structures Mechanisms Policies.
Pointers and Memory Allocation – part 2 -L. Grewe.
Dynamic Memory Allocation II November 7, 2007 Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Review of pointers Memory-related.
Dynamic Memory Allocation II March 27, 2008 Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Review of pointers Memory-related.
University of Washington Memory Allocation III The Hardware/Software Interface CSE351 Winter 2013.
Dynamic Memory Allocation Questions answered in this lecture: When is a stack appropriate? When is a heap? What are best-fit, first-fit, worst-fit, and.
Explicit Free Lists Use data space for link pointers –Typically doubly linked –Still need boundary tags for coalescing –It is important to realize that.
Memory Management II: Dynamic Storage Allocation Mar 7, 2000 Topics Segregated free lists –Buddy system Garbage collection –Mark and Sweep –Copying –Reference.
University of Washington Today Finished up virtual memory On to memory allocation Lab 3 grades up HW 4 up later today. Lab 5 out (this afternoon): time.
Writing You Own malloc() March 29, 2003 Topics Explicit Allocation Data structures Mechanisms Policies class19.ppt “The course that gives CMU its.
Carnegie Mellon /18-243: Introduction to Computer Systems Instructors: Bill Nace and Gregory Kesden (c) All Rights Reserved. All work.
University of Washington Wouldn’t it be nice… If we never had to free memory? Do you free objects in Java? 1.
Dynamic Memory Allocation II Topics Explicit doubly-linked free lists Segregated free lists Garbage collection.
Dynamic Memory Allocation II April 1, 2004 Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Memory-related perils and.
Consider Starting with 160 k of memory do: Starting with 160 k of memory do: Allocate p1 (50 k) Allocate p1 (50 k) Allocate p2 (30 k) Allocate p2 (30 k)
Dynamic Memory Allocation II November 4, 2004 Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Memory-related perils and.
Dynamic Memory Allocation II
Today Moving on to… Memory allocation.
University of Washington Today More memory allocation!
CS 241 Discussion Section (2/9/2012). MP2 continued Implement malloc, free, calloc and realloc Reuse free memory – Sequential fit – Segregated fit.
Carnegie Mellon 1 Dynamic Memory Allocation: Basic Concepts Instructors: Adapted from CMU course
CS 241 Discussion Section (12/1/2011). Tradeoffs When do you: – Expand Increase total memory usage – Split Make smaller chunks (avoid internal fragmentation)
University of Washington Implementation Issues How do we know how much memory to free given just a pointer? How do we keep track of the free blocks? How.
University of Washington Today More memory allocation!
Dynamic Memory Management Winter 2013 COMP 2130 Intro Computer Systems Computing Science Thompson Rivers University.
1 Advanced Topics. 2 Outline Garbage collection Memory-related perils and pitfalls Suggested reading: 9.10, 9.11.
Dynamic Memory Allocation II March 27, 2008 Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Review of pointers Memory-related.
Carnegie Mellon 1 Bryant and O’Hallaron, Computer Systems: A Programmer’s Perspective, Third Edition Dynamic Memory Allocation: Advanced Concepts :
Memory-Related Perils and Pitfalls in C
Instructor: Fatma CORUT ERGİN
Dynamic Memory Allocation II
Section 10: Memory Allocation Topics
CS 3214 Introduction to Computer Systems
Dynamic Memory Allocation
Instructors: Roger Dannenberg and Greg Ganger
Memory Allocation III CSE 351 Spring 2017
Dynamic Memory Allocation II Nov 7, 2000
Memory Management I: Dynamic Storage Allocation Oct 7, 1999
Memory Management: Dynamic Allocation
Memory Allocation III CSE 351 Autumn 2017
Dynamic Memory Allocation – beyond the stack and globals
Dynamic Memory Allocation: Advanced Concepts /18-213/14-513/15-513: Introduction to Computer Systems 20th Lecture, November 2, 2017.
Memory Allocation III CSE 351 Autumn 2016
Memory Management I: Dynamic Storage Allocation March 2, 2000
Memory Management III: Perils and pitfalls Mar 13, 2001
User-Level Dynamic Memory Allocation: Malloc and Free
Memory Management III: Perils and pitfalls Mar 9, 2000
Memory Allocation II CSE 351 Autumn 2017
Memory Allocation III CSE 351 Winter 2018
Memory Allocation III CSE 351 Summer 2018
Pointer & Memory Allocation Review
Memory Allocation III CSE 351 Spring 2017
CS703 - Advanced Operating Systems
Memory Allocation III CSE 351 Spring 2017
Memory Allocation III CSE 351 Autumn 2018
Presentation transcript:

Dynamic Memory Allocation II CS 105 Tour of the Black Holes of Computing Dynamic Memory Allocation II Topics Explicit doubly-linked free lists Segregated free lists Garbage collection Memory-related perils and pitfalls

Keeping Track of Free Blocks Method 1: Implicit list using lengths -- links all blocks Method 2: Explicit list among the free blocks using pointers within the free blocks Method 3: Segregated free list Different free lists for different size classes Method 4: Blocks sorted by size (not discussed) For example balanced tree (Red-Black?) with pointers inside each free block, block length used as key 20 16 24 8 20 16 24 8

Explicit Free Lists Use data space for link pointers Typically doubly linked Still need boundary tags for coalescing Links aren’t necessarily in same order as blocks! A B C Forward links A B 16 16 16 16 24 24 16 16 16 16 C Back links

Allocating From Explicit Free Lists pred succ free block Before: pred succ After: (with splitting) free block

Freeing With Explicit Free Lists Insertion policy: Where in free list to put newly freed block? LIFO (last-in-first-out) policy Insert freed block at beginning of free list Pro: simple, and constant-time Con: studies suggest fragmentation is worse than address-ordered Address-ordered policy Insert freed blocks so list is always in address order i.e. addr(pred) < addr(curr) < addr(succ) Con: requires search (using boundary tags) Pro: studies suggest fragmentation is better than LIFO

Freeing With a LIFO Policy pred (p) succ (s) Case 1: a-a-a Insert self at beginning of free list Case 2: a-a-f Remove next from free list, coalesce self and next, and add to beginning of free list a self a p s before: a self f p s after: a f

Freeing With a LIFO Policy (cont) s before: Case 3: f-a-a Remove prev from free list, coalesce with self, and add to beginning of free list Case 4: f-a-f Remove prev and next from free list, coalesce with self, and add to beginning of list f self a p s after: f a p1 s1 p2 s2 before: f self f p1 s1 p2 s2 after: f

Summary of Explicit Lists Comparison to implicit lists: Allocate is linear-time in number of free blocks instead of total blocks—much faster when most of memory full Slightly more complicated allocate and free since needs to splice blocks in and out of free list Some extra space for links (2 extra words per block)—but can reuse data space so no “real” cost Main use of linked lists is in conjunction with segregated free lists Keep multiple linked lists of different size classes, or possibly for different types of objects

Keeping Track of Free Blocks Method 1: Implicit list using lengths -- links all blocks Method 2: Explicit list among the free blocks using pointers within the free blocks Method 3: Segregated free list Different free lists for different size classes Method 4: Blocks sorted by size (not discussed) For example balanced tree (Red-Black?) with pointers inside each free block, block length used as key 20 16 24 8 20 16 24 8

Segregated Storage Each size class has its own collection of blocks 4-8 12 16 20-32 36-64 Often separate size class for every small size (8, 12, 16, …) For larger, typically have size class for each power of 2

Simple Segregated Storage Separate heap and free list for each size class No splitting To allocate block of size n: If free list for size n is not empty, Allocate first block on list (can be implicit or explicit) If free list is empty, Get new page Create new free list from all blocks in page Allocate first block on list Constant time To free block: Add to free list If page empty, return it for use by another size (optional) Tradeoffs: Fast, but can fragment badly

Segregated Fits Array of free lists, one for each size class To allocate block of size n: Search appropriate list for block of size m > n If block found, split and put fragment on smaller list (optional) If no block found, try next larger class and repeat If largest class empty, allocate page(s) big enough to hold desired block, put remainder on appropriate list To free a block: Coalesce and put on appropriate list Tradeoffs Faster search than sequential fits (log time for power-of-two size classes) Controls fragmentation of simple segregated storage Coalescing can increase search times Deferred coalescing can help

Buddy Allocators Special case of segregated fits Basic idea: Limited to power-of-two sizes Can only coalesce with "buddy", who is other half of next-higher power of two Clever use of low address bits to find buddies Problem: large powers of two result in large internal fragmentation (e.g., what if you want to allocate 65537 bytes?)

For More Info on Allocators D. Knuth, “The Art of Computer Programming, Second Edition”, Addison Wesley, 1973 Classic reference on dynamic storage allocation Wilson et al, “Dynamic Storage Allocation: A Survey and Critical Review”, Proc. 1995 Int’l Workshop on Memory Management, Kinross, Scotland, Sept, 1995. Comprehensive survey Available from CS:APP student site (csapp.cs.cmu.edu)

Implicit Memory Management: Garbage Collection Garbage collection: automatic reclamation of heap-allocated storage—application never has to free void foo() { int *p = malloc(128); return; /* p block is now garbage */ } Common in functional languages, scripting languages, and modern object-oriented languages: Lisp, ML, Java, Perl, Python, Mathematica, … Variants (conservative garbage collectors) exist for C and C++ Cannot collect all garbage

Garbage Collection How does memory manager know when memory can be freed? In general can’t know what will be used in future, since depends on conditionals But we know certain blocks can’t be used if there are no pointers to them Need to make certain assumptions about pointers Memory manager can distinguish pointers from non-pointers All pointers point to start of block Can’t hide pointers (e.g., by coercing them to an int and then back again, still a memory address)

Classical GC algorithms Mark-and-sweep collection (McCarthy, 1960) Doesn’t move blocks (unless you also “compact”) Reference counting (Collins, 1960) Doesn’t move blocks (not discussed) Copying collection (Minsky, 1963) Moves blocks (not discussed) Multiprocessing compactifying (Steele, 1975) For more information, see Jones and Lin, “Garbage Collection: Algorithms for Automatic Dynamic Memory”, John Wiley & Sons, 1996.

Memory as a Graph Think of memory as directed graph Each block is node in graph Each pointer is edge Locations not in heap that contain pointers into heap are called root nodes (e.g. registers, locations on stack, global variables) Root nodes Heap nodes Reachable Not reachable (garbage) Node (block) is reachable if there is path from any root to that node. Non-reachable nodes are garbage (never needed, nor accessible by application)

Assumptions For This Lecture Application new(n): returns pointer to new block with all locations cleared read(b,i): read location i of block b into register write(b,i,v): write v into location i of block b Each block will have header word Addressed as b[-1], for a block b Used for different purposes in different collectors Instructions used by garbage collector is_ptr(p): determines whether p is pointer length(b): returns length of block b, not including header get_roots(): returns all roots

Mark-and-Sweep Collecting Can build on top of malloc/free package Allocate using malloc until you “run out of space” When "out of space": Use extra mark bit in head of each block Mark: Start at roots and set mark bit on all reachable memory Sweep: Scan all blocks and free the blocks that are not marked Why were the two free blocks Not on FreeList? Mark bit set root Before mark After mark After sweep free free

Mark-and-Sweep (cont.) Mark using depth-first traversal of memory graph ptr mark(ptr p) { if (!is_ptr(p)) return; /* ignore non-pointers */ if (markBitSet(p)) return; /* quit if already marked */ setMarkBit(p); /* set the mark bit */ for (i=0; i < length(p); i++) /* mark all children */ mark(p[i]); return; } Sweep using lengths to find next block ptr sweep(ptr p, ptr end) { while (p < end) { if markBitSet(p) clearMarkBit(); else if (allocateBitSet(p)) free(p); p += length(p); --fine next block }

Conservative Mark-and-Sweep in C A conservative collector for C programs is_ptr() determines if word is a pointer by checking if it points to allocated block of memory. But in C, pointers can point to middle of a block. So how do we find beginning of block? Can use balanced tree to keep track of all allocated blocks, where key is the location Tree pointers can be stored in header (use two additional words) ptr header head data size left right

Memory-Related Bugs Dereferencing bad pointers Reading uninitialized memory Overwriting memory Referencing nonexistent variables Freeing blocks multiple times Referencing freed blocks Failing to free blocks

Dereferencing Bad Pointers The classic scanf bug scanf(“%d”, val); must be a ptr to an int

Reading Uninitialized Memory Assuming that heap data is initialized to zero /* return y = Ax */ int *matvec(int **A, int *x) { int *y = malloc(N*sizeof(int)); int i, j; for (i=0; i<N; i++) for (j=0; j<N; j++) y[i] += A[i][j]*x[j]; return y; } A is pointer to pointer of int

Overwriting Memory Allocating the (possibly) wrong-sized object int **p; p = malloc(N*sizeof(int)); for (i = 0; i < N; i++) { p[i] = malloc(M*sizeof(int)); }

Overwriting Memory Off-by-one error int **p; p = malloc(N*sizeof(int *)); for (i = 0; i <= N; i++) { p[i] = malloc(M*sizeof(int)); }

Overwriting Memory Not checking the max string size Basis for classic buffer-overflow attacks 1988 Internet worm Modern attacks on Web servers AOL/Microsoft IM war char s[8]; int i; gets(s); /* reads “123456789” from stdin */

Overwriting Memory Referencing pointer instead of object it points to int *BinheapDelete(int **binheap, int *size) { int *packet; packet = binheap[0]; binheap[0] = binheap[*size - 1]; *size--; Heapify(binheap, *size, 0); return(packet); }

Overwriting Memory Misunderstanding pointer arithmetic p is a pointer int *search(int *p, int val) { while (*p && *p != val) p += sizeof(int); return p; } p is a pointer p += 1 would add 4 to p

Referencing Nonexistent Variables Forgetting that local variables disappear when a function returns int *foo () { int val; return &val; } val goes away with end of foo

Freeing Blocks Multiple Times Nasty! x = malloc(N*sizeof(int)); <manipulate x> free(x); y = malloc(M*sizeof(int)); <manipulate y>

Referencing Freed Blocks Evil! x = malloc(N*sizeof(int)); <manipulate x> free(x); ... y = malloc(M*sizeof(int)); for (i=0; i<M; i++) y[i] = x[i]++;

Failing to Free Blocks (Memory Leaks) Slow, long-term killer! foo() { int *x = malloc(N*sizeof(int)); ... return; } no auto cleanup in C

Failing to Free Blocks (Memory Leaks) Freeing only part of a data structure struct list { int val; struct list *next; }; foo() { struct list *head = malloc(sizeof(struct list)); head->val = 0; head->next = NULL; <create and manipulate the rest of the list> ... free(head); return; }

Dealing With Memory Bugs Conventional debugger (gdb) Good for finding bad pointer dereferences Hard to detect the other memory bugs Debugging malloc (CSRI UToronto malloc) Wrapper around conventional malloc Detects memory bugs at malloc and free boundaries Memory overwrites that corrupt heap structures Some instances of freeing blocks multiple times Memory leaks Cannot detect all memory bugs Overwrites into the middle of allocated blocks Freeing block twice that has been reallocated in the interim Referencing freed blocks

Dealing With Memory Bugs (cont.) Binary translator (Atom, Purify) Powerful debugging and analysis technique Rewrites text section of executable object file Can detect same errors as debugging malloc Can also check each individual reference at runtime Bad pointers Overwriting Referencing outside of allocated block Virtual machine (Valgrind) Same power, features as binary translator Also detects references to uninitialized variables Easier to use, but slower Garbage collection (Boehm-Weiser Conservative GC) Let the system free blocks instead of the programmer.

The End Definitions Problems Malloc Garbage Collection Stride 9.6 9.7 9.10 9.19