Lecture08 Memory Allocation

download Lecture08 Memory Allocation

of 68

Transcript of Lecture08 Memory Allocation

  • 7/25/2019 Lecture08 Memory Allocation

    1/68

    Dynamic Memory Allocation

    Computer Systems Organization (Spring 2016)

    CSCI-UA 201, Section 2

    Instructor: Joanna Klukowska

    Slides adapted from

    Randal E. Bryant and David R. OHallaron (CMU)

    Mohamed Zahran (NYU)

  • 7/25/2019 Lecture08 Memory Allocation

    2/68

    Basic Concepts

    2

  • 7/25/2019 Lecture08 Memory Allocation

    3/68

    Programmers use dynamic

    memory allocators(such as

    malloc) to acquire VM at run

    time.

    For data structures whose size is

    only known at runtime.

    Dynamic memory allocators

    manage an area of process

    virtual memory known as the

    heap. malloc

    .text

    .data

    bss

    brk

    3

  • 7/25/2019 Lecture08 Memory Allocation

    4/68

    Allocator maintains heap as collection of variable sized

    blocks, which are either allocated or free

    Types of allocators

    Explicit allocator: application allocates and frees space

    E.g., malloc and free in C

    Implicit allocator: application allocates, but does not free space

    E.g. garbage collection in Java, ML, and Lisp

    4

  • 7/25/2019 Lecture08 Memory Allocation

    5/68

    malloc

    #include

    void *malloc(size_t size) Successful:

    Returns a pointer to a memory block of at least size bytes

    aligned to an 8-byte (x86) or 16-byte (x86-64) boundary

    If size == 0, returns NULL

    Unsuccessful: returns NULL (0) and sets errno

    void free(void *p) Returns the block pointed at by p to pool of available memory

    p must come from a previous call to malloc or realloc

    Other functions

    calloc:Version of malloc that initializes allocated block to zero.

    realloc:Changes the size of a previously allocated block.

    sbrk:Used internally by allocators to grow or shrink the heap

    5

  • 7/25/2019 Lecture08 Memory Allocation

    6/68

    malloc

    #include

    #include

    voidfoo(intn) { inti, *p;

    /* Allocate a block of n ints */ p = (int*) malloc(n * sizeof(int)); if(p ==NULL) { perror("malloc"); exit(0); }

    /* Initialize allocated block */

    for(i=0; i

  • 7/25/2019 Lecture08 Memory Allocation

    7/68

    Memory is word addressed.

    Words are int-sized.

    7

  • 7/25/2019 Lecture08 Memory Allocation

    8/68

    p1 = malloc(4)

    p2 = malloc(5)

    p3 = malloc(6)

    free(p2)

    p4 = malloc(2)

    8

  • 7/25/2019 Lecture08 Memory Allocation

    9/68

    Applications Can issue arbitrary sequence ofmallocand free requests

    free request must be to amallocd block

    Allocators

    Cant control number or size of allocated blocks Must respond immediately to malloc requests

    i.e., cant reorder or buffer requests

    Must allocate blocks from free memory

    i.e., can only place allocated blocks in free memory

    Must align blocks so they satisfy all alignment requirements 8-byte (x86) or 16-byte (x86-64) alignment on Linux boxes

    Can manipulate and modify only free memory

    Cant move the allocated blocks once they are mallocd

    i.e., compaction is not allowed

    9

  • 7/25/2019 Lecture08 Memory Allocation

    10/68

    malloc free

    malloc free

    10

  • 7/25/2019 Lecture08 Memory Allocation

    11/68

    malloc free

    malloc(p) p

    sbrk

    11

  • 7/25/2019 Lecture08 Memory Allocation

    12/68

    12

  • 7/25/2019 Lecture08 Memory Allocation

    13/68

    For a given block, internal fragmentation occurs if payload is smaller than

    block size

    Caused by

    Overhead of maintaining heap data structures Padding for alignment purposes

    Explicit policy decisions

    (e.g., to return a big block to satisfy a small request)

    Depends only on the pattern of previousrequests

    Thus, easy to measure 13

  • 7/25/2019 Lecture08 Memory Allocation

    14/68

    p1 = malloc(4)

    p2 = malloc(5)

    p3 = malloc(6)

    free(p2)

    p4 = malloc(6)

    14

  • 7/25/2019 Lecture08 Memory Allocation

    15/68

    15

  • 7/25/2019 Lecture08 Memory Allocation

    16/68

    p0 = malloc(4)

    p0

    free(p0)

    16

  • 7/25/2019 Lecture08 Memory Allocation

    17/68

    Method 1: Implicit list using lengthlinks all blocks

    Method 2: Explicit list among the free blocks using pointers

    Method 3: Segregated free list Different free lists for different size classes

    Method 4: Blocks sorted by size

    Can use a balanced binary tree (e.g. Red-Black tree) with pointers within each free block, and

    the length used as a key

    5

    5

    17

  • 7/25/2019 Lecture08 Memory Allocation

    18/68

    Implicit Free List

    18

  • 7/25/2019 Lecture08 Memory Allocation

    19/68

    For each block we need both size and allocation status

    Could store this information in two words: wasteful!

    Standard trick If blocks are aligned, some low-order address bits are always 0

    Instead of storing an always-0 bit, use it as a allocated/free flag

    When reading size word, must mask out this bit

    19

  • 7/25/2019 Lecture08 Memory Allocation

    20/68

    20*Assume 8-byte (2 word) align boundary.

  • 7/25/2019 Lecture08 Memory Allocation

    21/68

    First fit:

    Search list from beginning, choose firstfree block that fits Can take linear time in total number of blocks (allocated and free)

    In practice it can cause splinters at beginning of list

    Next fit: Like first fit, but search list starting where previous search finished

    Should often be faster than first fit: avoids re-scanning unhelpful blocks Some research suggests that fragmentation is worse

    Best fit: Search the list, choose the best free block: fits, with fewest bytes left over

    Keeps fragments smallusually improves memory utilization

    Will typically run slower than first fit

    21

  • 7/25/2019 Lecture08 Memory Allocation

    22/68

    addblock(p, 4)

    22

  • 7/25/2019 Lecture08 Memory Allocation

    23/68

    free(p) p

    malloc(5)

    There is enough free space, but the allocator wont be able to find it(since it sees a block of 4 and block of 2, not a block of 5).

    23

  • 7/25/2019 Lecture08 Memory Allocation

    24/68

    free(p) p

    24

  • 7/25/2019 Lecture08 Memory Allocation

    25/68

    25

  • 7/25/2019 Lecture08 Memory Allocation

    26/68

    26

  • 7/25/2019 Lecture08 Memory Allocation

    27/68

    27

  • 7/25/2019 Lecture08 Memory Allocation

    28/68

    28

    What do we do, if the next block is free as well?

    Not possible if we always coalesce.

  • 7/25/2019 Lecture08 Memory Allocation

    29/68

    29

  • 7/25/2019 Lecture08 Memory Allocation

    30/68

    30

  • 7/25/2019 Lecture08 Memory Allocation

    31/68

    Placement policy:

    First-fit, next-fit, best-fit, etc. Trades off lower throughput for less fragmentation

    Interesting observation: segregated free lists (next lecture) approximate a best fit placement

    policy without having to search entire free list

    Splitting policy: When do we go ahead and split free blocks?

    How much internal fragmentation are we willing to tolerate?

    Coalescing policy: Immediate coalescing:coalesce each time free is called

    Deferred coalescing:try to improve performance of free by deferring coalescing until

    needed. Examples:

    Coalesce as you scan the free list for malloc

    Coalesce when the amount of external fragmentation reaches some threshold

    31

  • 7/25/2019 Lecture08 Memory Allocation

    32/68

    Implementation: very simple

    Allocate cost: linear time worst case

    Free cost: constant time worst case

    even with coalescing

    Memory usage: will depend on placement policy

    First-fit, next-fit or best-fit

    Not used in practice for malloc/free because of linear-time allocation used in many special purpose applications

    However, the concepts of splitting and boundary tag coalescing are general

    to all allocators

    32

  • 7/25/2019 Lecture08 Memory Allocation

    33/68

    Explicit Free List

    33

  • 7/25/2019 Lecture08 Memory Allocation

    34/68

    Method 1: Implicit list using lengthlinks all blocks

    Method 2: Explicit list among the free blocks using pointers

    Method 3: Segregated free list Different free lists for different size classes

    Method 4: Blocks sorted by size

    Can use a balanced binary tree (e.g. Red-Black tree) with pointers within each free block, and

    the length used as a key

    5

    5

    34

  • 7/25/2019 Lecture08 Memory Allocation

    35/68

    35

  • 7/25/2019 Lecture08 Memory Allocation

    36/68

    36

  • 7/25/2019 Lecture08 Memory Allocation

    37/68

    = malloc()37

  • 7/25/2019 Lecture08 Memory Allocation

    38/68

    38

  • 7/25/2019 Lecture08 Memory Allocation

    39/68

    free( )

    39

  • 7/25/2019 Lecture08 Memory Allocation

    40/68

    free( )

    40

  • 7/25/2019 Lecture08 Memory Allocation

    41/68

    free( )

    41

  • 7/25/2019 Lecture08 Memory Allocation

    42/68

    free( )

    42

  • 7/25/2019 Lecture08 Memory Allocation

    43/68

    43

  • 7/25/2019 Lecture08 Memory Allocation

    44/68

    Method 1: Implicit list using lengthlinks all blocks

    Method 2: Explicit list among the free blocks using pointers

    Method 3: Segregated free list Different free lists for different size classes

    Method 4: Blocks sorted by size

    Can use a balanced tree (e.g. Red-Black tree) with pointers within each free block, and the

    length used as a key

    5

    5

    44

  • 7/25/2019 Lecture08 Memory Allocation

    45/68

    Segregated Free List

    45

  • 7/25/2019 Lecture08 Memory Allocation

    46/68

    46

  • 7/25/2019 Lecture08 Memory Allocation

    47/68

    sbrk()

    47

  • 7/25/2019 Lecture08 Memory Allocation

    48/68

    48

  • 7/25/2019 Lecture08 Memory Allocation

    49/68

    Garbage Collection

    49

  • 7/25/2019 Lecture08 Memory Allocation

    50/68

    void foo() { int *p = malloc(128); return; /* p block is now garbage */}

    50

  • 7/25/2019 Lecture08 Memory Allocation

    51/68

    int

    51

  • 7/25/2019 Lecture08 Memory Allocation

    52/68

    52

  • 7/25/2019 Lecture08 Memory Allocation

    53/68

    Memory Related Bugs

    53

  • 7/25/2019 Lecture08 Memory Allocation

    54/68

    54

  • 7/25/2019 Lecture08 Memory Allocation

    55/68

    int *p

    int *p[13]

    int *(p[13])

    int **p

    int (*p)[13]

    int *f()

    int (*f)()

    int (*(*f())[13])()

    int (*(*x[3])())[5]

    55

  • 7/25/2019 Lecture08 Memory Allocation

    56/68

    scanf

    int val;

    ...

    scanf("%d", val);

    56

  • 7/25/2019 Lecture08 Memory Allocation

    57/68

    /* return y = Ax */int *matvec(int **A, int *x) {

    int *y = malloc(N*sizeof(int)); int i, j;

    for (i=0; i

  • 7/25/2019 Lecture08 Memory Allocation

    58/68

    int **p;

    p = malloc(N*sizeof(int));

    for (i=0; i

  • 7/25/2019 Lecture08 Memory Allocation

    59/68

    int **p;

    p = malloc(N*sizeof(int *));

    for (i=0; i

  • 7/25/2019 Lecture08 Memory Allocation

    60/68

    char s[8];int i;

    gets(s); /* reads 123456789 from stdin */

    60

  • 7/25/2019 Lecture08 Memory Allocation

    61/68

    int *search(int *p, int val) {while (*p && *p != val)

    p += sizeof(int);

    return p;}

    61

  • 7/25/2019 Lecture08 Memory Allocation

    62/68

    int * heap_delete(int **binheap, int *size) { int *packet; packet = binheap[0]; binheap[0] = binheap[*size - 1]; *size--; heapify(binheap, *size, 0); return(packet);}

    62

  • 7/25/2019 Lecture08 Memory Allocation

    63/68

    int *foo () { int val;

    return &val;}

    63

  • 7/25/2019 Lecture08 Memory Allocation

    64/68

    x = malloc(N*sizeof(int)); free(x);

    y = malloc(M*sizeof(int)); free(x);

    64

  • 7/25/2019 Lecture08 Memory Allocation

    65/68

    x = malloc(N*sizeof(int));free(x); ...

    y = malloc( M*sizeof(int) );for (i=0; i < M; i++) y[i] = x[i]++;

    65

  • 7/25/2019 Lecture08 Memory Allocation

    66/68

    foo() { int *x = malloc(N*sizeof(int)); ... return;}

    66

  • 7/25/2019 Lecture08 Memory Allocation

    67/68

    struct list { int val; struct list *next;};

    foo() { struct list *head = malloc(sizeof(struct list)); head->val = 0; head->next = NULL;

    ... free(head); return;}

    67

  • 7/25/2019 Lecture08 Memory Allocation

    68/68

    gdb

    valgrind

    setenv MALLOC_CHECK_ 3 (see the manual page for mallopt)