CSE 361 Fall 2017 Malloc Lab: Writing a Dynamic Storage Allocator Assigned: Monday Nov. 13, Due: Monday Dec. 05, 11:59PM

Similar documents
CSE 361S Intro to Systems Software Final Project

Spring 2016, Malloc Lab: Writing Dynamic Memory Allocator

CS 105 Malloc Lab: Writing a Dynamic Storage Allocator See Web page for due date

1 Introduction. 2 Logistics. 3 Hand Out Instructions

ECE454, Fall 2014 Homework3: Dynamic Memory Allocation Assigned: Oct 9th, Due: Nov 6th, 11:59PM

CSE 351, Spring 2010 Lab 7: Writing a Dynamic Storage Allocator Due: Thursday May 27, 11:59PM

CS 3214, Fall 2015 Malloc Lab: Writing a Dynamic Storage Allocator Due date: November 16, 2014, 11:59pm

COMP 321: Introduction to Computer Systems

CSCI 2021, Fall 2018 Malloc Lab: Writing a Dynamic Storage Allocator Assigned: Monday November 5th Due: Monday November 19th, 11:55PM

CS 213, Fall 2002 Malloc Lab: Writing a Debugging Dynamic Storage Allocator Assigned: Fri Nov. 1, Due: Tuesday Nov. 19, 11:59PM

CS 105 Malloc Lab: Writing a Dynamic Storage Allocator See Web page for due date

Writing a Dynamic Storage Allocator

CS201: Lab #4 Writing a Dynamic Storage Allocator

Project 2. Assigned: 02/20/2015 Due Date: 03/06/2015

CSCI0330 Intro Computer Systems Doeppner. Project Malloc. Due: 11/28/18. 1 Introduction 1. 2 Assignment Specification Support Routines 4

HW 3: Malloc CS 162. Due: Monday, March 28, 2016

Project 4: Implementing Malloc Introduction & Problem statement

ANITA S SUPER AWESOME RECITATION SLIDES

Recitation #11 Malloc Lab. November 7th, 2017

Assignment 5. CS/ECE 354 Spring 2016 DUE: April 22nd (Friday) at 9 am

Project 3a: Malloc and Free

Malloc Lab & Midterm Solutions. Recitation 11: Tuesday: 11/08/2016

Recitation #12 Malloc Lab - Part 2. November 14th, 2017

In Java we have the keyword null, which is the value of an uninitialized reference type

Lab 1: Dynamic Memory: Heap Manager

Dynamic Memory Allocation I Nov 5, 2002

Recitation 11: More Malloc Lab

Introduction to Computer Systems /18 243, fall th Lecture, Oct. 22 th

Lecture 8 Dynamic Memory Allocation

Machine Problem 1: A Simple Memory Allocator

CS61C : Machine Structures

Dynamic Memory Allocation

CS 322 Operating Systems Programming Assignment 4 Writing a memory manager Due: April 5, 11:30 PM

Class Information ANNOUCEMENTS

Dynamic Memory Allocation I

Project 2 Overview: Part A: User space memory allocation

ECE 2400 Computer Systems Programming, Fall 2018 PA2: List and Vector Data Structures

HW1 due Monday by 9:30am Assignment online, submission details to come

Dynamic Memory Allocation. Basic Concepts. Computer Organization 4/3/2012. CSC252 - Spring The malloc Package. Kai Shen

Review! Lecture 5 C Memory Management !

CS61C : Machine Structures

Recitation 10: Malloc Lab

Project #1: Tracing, System Calls, and Processes

Today. Dynamic Memory Allocation: Basic Concepts. Dynamic Memory Allocation. Dynamic Memory Allocation. malloc Example. The malloc Package

CS 33. Storage Allocation. CS33 Intro to Computer Systems XXVII 1 Copyright 2017 Thomas W. Doeppner. All rights reserved.

CS 322 Operating Systems Programming Assignment 4 Writing a memory manager Due: November 16, 11:30 PM

CSci 4061 Introduction to Operating Systems. Programs in C/Unix

Heap Arrays and Linked Lists. Steven R. Bagley

CSCI-UA /2. Computer Systems Organization Lecture 19: Dynamic Memory Allocation: Basics

ECEn 424 Data Lab: Manipulating Bits

CSE351 Winter 2016, Final Examination March 16, 2016

Creating a String Data Type in C

CS61C Machine Structures. Lecture 4 C Pointers and Arrays. 1/25/2006 John Wawrzynek. www-inst.eecs.berkeley.edu/~cs61c/

My malloc: mylloc and mhysa. Johan Montelius HT2016

Dynamic Memory Allocation. Gerson Robboy Portland State University. class20.ppt

Carnegie Mellon. Malloc Boot Camp. Stan, Nikhil, Kim

Heap Arrays. Steven R. Bagley

PROJECT 2 - MEMORY ALLOCATOR Computer Systems Principles. October 1, 2010

Dynamic Memory Allocation: Basic Concepts

Number Review. Lecture #3 More C intro, C Strings, Arrays, & Malloc Variables. Clarification about counting down

ICS(II), Fall 2017 Cache Lab: Understanding Cache Memories Assigned: Thursday, October 26, 2017 Due: Sunday, November 19, 2017, 11:59PM

Heap Management portion of the store lives indefinitely until the program explicitly deletes it C++ and Java new Such objects are stored on a heap

Dynamic Memory Allocation: Basic Concepts

CSE351 Spring 2010 Final Exam (9 June 2010)

Process s Address Space. Dynamic Memory. Backing the Heap. Dynamic memory allocation 3/29/2013. When a process starts the heap is empty

Memory management. Johan Montelius KTH

More C Pointer Dangers

CS 2505 Fall 2013 Data Lab: Manipulating Bits Assigned: November 20 Due: Friday December 13, 11:59PM Ends: Friday December 13, 11:59PM

MCS-284, Fall 2018 Cache Lab: Understanding Cache Memories Assigned: Friday, 11/30 Due: Friday, 12/14, by midnight (via Moodle)

Lectures 13 & 14. memory management

CS24: INTRODUCTION TO COMPUTING SYSTEMS. Spring 2017 Lecture 7

BIL220, Spring 2012 Data Lab: Manipulating Bits Assigned: Feb. 23, Due: Wed., Mar. 8, 23:59PM

Memory Allocation I. CSE 351 Autumn Instructor: Justin Hsia

Pointers in C/C++ 1 Memory Addresses 2

Declaring Pointers. Declaration of pointers <type> *variable <type> *variable = initial-value Examples:

CS61C : Machine Structures

Today. Dynamic Memory Allocation: Basic Concepts. Dynamic Memory Allocation. Dynamic Memory Allocation. malloc Example. The malloc Package

PRINCIPLES OF OPERATING SYSTEMS

Motivation was to facilitate development of systems software, especially OS development.

Review! * follows a pointer to its value! & gets the address of a variable! Pearce, Summer 2010 UCB! ! int x = 1000; Pearce, Summer 2010 UCB!

mmalloc The GNU memory-mapped malloc package Fred Fish Cygnus Support Mike Haertel Free Software Foundation

CS 2505 Fall 2018 Data Lab: Data and Bitwise Operations Assigned: November 1 Due: Friday November 30, 23:59 Ends: Friday November 30, 23:59

CS-281, Spring 2011 Data Lab: Manipulating Bits Assigned: Jan. 17, Due: Mon., Jan. 31, 11:59PM

COSC Software Engineering. Lecture 16: Managing Memory Managers

Memory Allocation II. CSE 351 Autumn Instructor: Justin Hsia

Hacking in C. Pointers. Radboud University, Nijmegen, The Netherlands. Spring 2019

CS164: Programming Assignment 5 Decaf Semantic Analysis and Code Generation

CS61C : Machine Structures

Data Lab: Manipulating Bits

Quiz 0 Review Session. October 13th, 2014

CSE351 Spring 2010 Final Exam (9 June 2010)

Dynamic Memory Allocation

Introduction. Xv6 memory

CS 356, Fall 2018 Data Lab (Part 2): Manipulating Bits Due: Mon, Sep. 17, 11:59PM

Memory Allocation I. CSE 351 Autumn Instructor: Justin Hsia

CS 356, Fall 2018 Data Lab (Part 1): Manipulating Bits Due: Wednesday, Sep. 5, 11:59PM

CS 11 C track: lecture 5

CS61C : Machine Structures

CS61C : Machine Structures

Limitations of the stack

Transcription:

CSE 361 Fall 2017 Malloc Lab: Writing a Dynamic Storage Allocator Assigned: Monday Nov. 13, Due: Monday Dec. 05, 11:59PM 1 Introduction In this lab you will be writing a dynamic storage allocator for C programs, i.e., your own version of the malloc, free and realloc routines. You are encouraged to explore the design space creatively and implement an allocator that is correct, efficient and fast. 2 SVN Instructions In order to see the new 5-malloclab directory that we have pushed to your repository, perform an svn update. Inside 5-malloclab will be a number of files. The only file you will be modifying and handing in is mm.c. The mdriver.c program is a driver program that allows you to evaluate the performance of your solution. Use the command make to generate the driver code and run it with the command./mdriver -h. (The-h flag displays helpful usage information.) Looking at the filemm.c you ll notice a C structure team into which you should insert the requested identifying information about yourself. Do this right away so you don t forget. When you have completed the lab, perform an svn commit. We will grade only one file (mm.c), which contains your solution. Please do not include any code you need outside of mm.c as the autograder will pick up onlymm.c, and anything else outside ofmm.c will not be considered and can cause autograder to fail. Remember, it is your resposibility to ensure that your code is successfully committed to the repository and that it compiles and runs with the other provided files (i.e., mdriver). You will not get any credit if your code does not compile and run withmdriver. 3 How to Work on the Lab Your dynamic storage allocator will consist of the following four functions, which are declared in mm.h and defined inmm.c. 1

int mm_init(void); void *mm_malloc(size_t size); void mm_free(void *ptr); void *mm_realloc(void *ptr, size_t size); Themm.c file we have given you implements the simplest but still functionally correct malloc package that we could think of. Using this as a starting place, modify these functions (and possibly define other private static functions), so that they obey the following semantics: mm init: Before calling mm malloc mm realloc or mm free, the application program (i.e., the trace-driven driver program that you will use to evaluate your implementation) calls mm init to perform any necessary initializations, such as allocating the initial heap area. The return value should be -1 if there was a problem in performing the initialization, 0 otherwise. mm malloc: The mm malloc routine returns a pointer to an allocated block payload of at least size bytes. The entire allocated block should lie within the heap region and should not overlap with any other allocated chunk. We will comparing your implementation to the version ofmalloc supplied in the standard C library (libc). Since the libc malloc always returns payload pointers that are aligned to 8 bytes, your malloc implementation should do likewise and always return 8-byte aligned pointers. mm free: The mm free routine frees the block pointed to by ptr. It returns nothing. This routine is only guaranteed to work when the passed pointer (ptr) was returned by an earlier call to mm malloc ormm realloc and has not yet been freed. mm realloc: Themm realloc routine returns a pointer to an allocated region of at least size bytes with the following constraints. ifptr is NULL, the call is equivalent tomm malloc(size); ifsize is equal to zero, the call is equivalent tomm free(ptr); ifptr is not NULL, it must have been returned by an earlier call tomm malloc ormm realloc. The call to mm realloc changes the size of the memory block pointed to by ptr (the old block) to size bytes and returns the address of the new block. Notice that the address of the new block might be the same as the old block, or it might be different, depending on your implementation, the amount of internal fragmentation in the old block, and the size of the realloc request. The contents of the new block are the same as those of the old ptr block, up to the minimum of the old and new sizes. Everything else is uninitialized. For example, if the old block is 8 bytes and the new block is 12 bytes, then the first 8 bytes of the new block are identical to the first 8 bytes of the old block and the last 4 bytes are uninitialized. Similarly, if the old block is 8 bytes and the new block is 4 bytes, then the contents of the new block are identical to the first 4 bytes of the old block. 2

These semantics match the the semantics of the corresponding libc malloc, realloc, and free routines. Typeman malloc to the shell for complete documentation. As an aside, you may have noticed that the provided Makefile uses a flag-m32. Do not remove that flag! That flag causes your program to compile as a 32-bit program, which means that, your address space is only 32-bit, and the size of your pointer is 4 bytes, and the typesize t is 4 bytes. (When in doubt, use sizeof() to check for the size of certain types.) This can help you with better space utilization. 4 Heap Consistency Checker Dynamic memory allocators are notoriously tricky beasts to program correctly and efficiently. They are difficult to program correctly because they involve a lot of untyped pointer manipulation. You will find it very helpful to write a heap checker that scans the heap and checks it for consistency. Some examples of what a heap checker might check are: Is every block in the free list marked as free? Are there any contiguous free blocks that somehow escaped coalescing? Is every free block actually in the free list? Do the pointers in the free list point to valid free blocks? Do any allocated blocks overlap? Do the pointers in a heap block point to valid heap addresses? Your heap checker will consist of the function int mm check(void) in mm.c. It will check any invariants or consistency conditions you consider prudent. It returns a nonzero value if and only if your heap is consistent. You are not limited to the listed suggestions nor are you required to check all of them. You are encouraged to print out error messages whenmm check fails. This consistency checker is for your own debugging during development. A good heap checker can really help you in debugging your memory allocator. When you submit mm.c, make sure to remove any calls tomm check, however, as they will slow down your throughput. A few style points will be given for your mm check function. Make sure to put in comments and document what you are checking. 5 Support Routines The memlib.c package simulates the memory system for your dynamic memory allocator. You can invoke the following functions inmemlib.c: void *mem sbrk(int incr): Expands the heap by incr bytes, where incr is a positive non-zero integer and returns a generic pointer to the first byte of the newly allocated heap area. The 3

semantics are identical to the Unix sbrk function, except that mem sbrk accepts only a positive non-zero integer argument. void *mem heap lo(void): Returns a generic pointer to the first byte in the heap. void *mem heap hi(void): Returns a generic pointer to the last byte in the heap. size t mem heapsize(void): Returns the current size of the heap in bytes. size t mem pagesize(void): Returns the system s page size in bytes (4K on Linux systems). 6 The Trace-driven Driver Program The driver program mdriver.c in the distribution tests your mm.c package for correctness, space utilization, and throughput. The driver program is controlled by a set of trace files located in the traces directory. The traces directory contains 13 traces files, 11 of which are used by the mdriver for grading. There are two short trace files short1-bal.rep and short2-bal.rep included to help you with debugging, since they are short. Their format is representative of other trace files look like. Each trace file contains a sequence of allocate, reallocate, and free directions that instruct the driver to call your mm malloc,mm realloc, andmm free routines in some sequence. The driver and the trace files are the same ones we will use when we grade your handinmm.c file. The drivermdriver.c accepts the following command line arguments: -t <tracedir>: Look for the default trace files in directory tracedir instead of the default directory defined in config.h. -f <tracefile>: Use one particular tracefile for testing instead of the default set of tracefiles. -h: Print a summary of the command line arguments. -l: Run and measurelibc malloc in addition to the student s malloc package. -v: Verbose output. Print a performance breakdown for each tracefile in a compact table. -V: More verbose output. Prints additional diagnostic information as each trace file is processed. Useful during debugging for determining which trace file is causing your malloc package to fail. 7 Programming Rules You should not change any of the interfaces inmm.c. 4

You should not invoke any memory-management related library calls or system calls. This excludes the use of malloc,calloc,free,realloc,sbrk,brk or any variants of these calls in your code. You are not allowed to define any global or static compound data structures such as arrays, structs, trees, or lists in your mm.c program. However, you are allowed to declare global scalar variables such as integers, floats, and pointers in mm.c. You may define structs to represent memory blocks, but you may not allocate any structs in the global namespace (no global structures). For consistency with thelibcmalloc package, which returns blocks aligned on 8-byte boundaries, your allocator must always return pointers that are aligned to 8-byte boundaries. The driver will enforce this requirement for you. 8 Evaluation You will receive zero point if you break any of the rules, if yourmm.c fails to compile with other provided files, or if your code is buggy and crashes the driver. Otherwise, your grade will be calculated as follows: You should not simply implement the implicit-list memory allocator already (mostly) implemented in the textbook! (But you should certainly read that section to begin with.) Correctness (25 points). The driver will test each of the11 traces given (as shown in config.h), and you will receive full points if your solution passes the correctness tests performed by the driver program using each of the trace. You will receive partial credit for each correct trace. Performance (30 points). Two performance metrics will be used to evaluate your solution: Space utilization: The peak ratio between the aggregate amount of memory used by the driver (i.e., allocated via mm malloc or mm realloc but not yet freed via mm free) and the size of the heap used by your allocator. The optimal ratio equals to 1. You should find good policies to minimize fragmentation in order to make this ratio as close as possible to the optimal. Throughput: The average number of operations completed per second. The driver program summarizes the performance of your allocator by computing a performance index, P, which is a weighted sum of the space utilization and throughput ( ) T P = wu +(1 w)min 1, whereu is your space utilization, T is your throughput, andt libc is the estimated throughput oflibc malloc on your system on the default traces. 1 The performance index favors space utilization over throughput, with a default of w = 0.6. Observing that both memory and CPU cycles are expensive system resources, we adopt this formula to encourage balanced optimization of both memory utilization and throughput. Ideally, the performance 1 The value for T libc is a constant in the driver (600 Kops/s) that your instructor established when they configured the program. T libc 5

index will reach P = w + (1 w) = 1 or 100%. Since each metric will contribute at most w and 1 w to the performance index, respectively, you should not go to extremes to optimize either the memory utilization or the throughput only. To receive a good score, you must achieve a balance between utilization and throughput. Style (5 points). While style points will be given generously, we would like to encourage you to have good coding style. To clarify what we mean by good coding style, here are some guidelines: Detailed style guidelines can be found here: http://www.classes.cec.wustl.edu/ cse361s/web/style.html (Make sure the tilde pastes properly if you try to copy this URL.) Eggregious violations of these guidelines will result in point deductions. Your code should be decomposed into functions and use as few global variables as possible. Your file should begin with a header comment that describes the structure of your free and allocated blocks, the organization of the free list, and how your allocator manipulates the free list. each function should be preceeded by a header comment that describes what the function does. Each subroutine should have a header comment that describes what it does and how it does it. Ideally, the logic flow of your code should be clear and easy to follow. If not or when in doubt, leave an inline comment. Your heap consistency checker mm check should be thorough and well-documented. You will be awarded 5 points for a good heap consistency checker and good program structure and comments. 9 Handin Instructions Once your code is complete, perform an svn commit -m "finished lab6" (a comment is necessary, but you can come up with your own). Make sure that you do a sanity check to see the status of your repository by looking at it in a web browser, just to be sure that you have committed successfully. Remember, the time stamp of the svn commit is how we will determine whether the assignment was completed on time or not. Don t forget to commit before midnight! Do notsvn add any new files to the repository. Particularly, do not add any of the large traces. We do not need anything but your changes tomm.c; we will not look at any other files you may or may not have modified while completing this assignment. 6

10 Hints Use the mdriver-f option. During initial development, using tiny trace files will simplify debugging and testing. We have included two such trace files (short1,2-bal.rep) that you can use for initial debugging. Use the mdriver -v and -V options. The -v option will give you a detailed summary for each trace file. The-V will also indicate when each trace file is read, which will help you isolate errors. Compile with gcc -g and use a debugger. A debugger will help you isolate and identify out of bounds memory references. Understand every line of the malloc implementation in the textbook. The textbook has a detailed example of a simple allocator based on an implicit free list. Use this is a point of departure. Don t start working on your allocator until you understand everything about the simple implicit list allocator. Encapsulate your pointer arithmetic in C preprocessor macros. Pointer arithmetic in memory managers is confusing and error-prone because of all the casting that is necessary. You can reduce the complexity significantly by writing macros for your pointer operations. See the text for examples. Do your implementation in stages. The first 9 traces contain requests tomalloc andfree. The last 2 traces (named with realloc* contain requests for realloc, malloc, and free. We recommend that you start by getting your malloc and free routines working correctly and efficiently on the first 9 traces. Only then should you turn your attention to the realloc implementation. For starters, build realloc on top of your existing malloc and free implementations. But to get really good performance, you will need to build a stand-alonerealloc. Use a profiler. You may find thegprof tool helpful for optimizing performance. Start early! It is possible to write an efficient malloc package with a few pages of code. However, we can guarantee that it will be some of the most difficult and sophisticated code you have written so far in your career. So start early, and good luck! 7