Machine Problem 4

$24.99 $18.99

The goal of this machine problem is to investigate strategies for managing a memory heap. The code must consist of the following files (additional files can be included and the design must be documented in the test plan): lab4.c – this file is provided and contains a few test drivers for testing your code. You…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Categorys:
Tags:

Description

5/5 – (2 votes)

The goal of this machine problem is to investigate strategies for managing a memory heap.

The code must consist of the following files (additional files can be included and the design must be documented in the test plan):

lab4.c – this file is provided and contains a few test drivers for testing your code. You must add additional test drivers to this file, and you must document your tests in your test plan.

mem.c – your implementation of Mem_alloc, Mem_free, and supporting functions to manage the memory heap.

mem.h – The data structures and prototype definitions for the memory heap You must update this file with your memory structure definition.

llist.c – the two-way linked list ADT from assignments 2 and 3. lab4.c requires the use of llist_remove(list_ptr, index) for index specifying any item in the list (not just the first or last). You may need to fix your implementation of llist_remove so it can remove an item from any position. The list ADT is used to support a test driver in lab4.c. However, none of the list ADT functions can be used in mem.c.

datatypes.h – Key definitions for llist.c. This file should not need to be changed.

llist.h – The data structures and prototype definitions for the two-way linked list ADT.

makefile – Compiler commands for all code files. An example is provided.

Two additional documents should be submitted. One is a test plan that describes details of your implementation and demonstrates how you verified that the code works correctly. You must add at least one new unit driver to lab4.c. The second document describes your performance evaluation, and the details are described below.

Management of memory heap

You are to design four procedures to manage the memory heap.

void *Mem_alloc(const int nbytes);

Returns a pointer to space for an object of size nbytes, or NULL if the request cannot be satisfied. The space is uninitialized. It should first check your free list to determine if the requested memory can be allocated from the free list. If there is no memory block available to accommodate the request, then a new segment of memory should be requested from the system using the system call sbrk() and the memory should be put in the free list. After adding the additional segment of memory to the free list, a memory block of the correct size can now be found. So, the Mem_alloc function will return NULL only if the sbrk() call fails because the system runs out of memory. Do not call sbrk() directly, but instead use the morecore() function described below.

void Mem_free(void *return_ptr);

Deallocates the space pointed to by return_ptr by returning the memory block to the free list; it does nothing if return_ptr is NULL. return_ptr must be a pointer to space previously allocated by Mem_alloc

void Mem_stats(void);

Prints statistics about the current free list at the time the function is called. At the time the function is called scan the free list and determine the following information. (You can print additional information)

  • number of items in the free list (including the dummy block)

  • min, max, and average size (in bytes) of each memory item in the free list (not including the dummy block)

  • total memory stored in the free list (in bytes). Define this to be M. (Do not include the dummy block)

  • number of calls to sbrk() and the total number of pages requested (define as P)

  • If M is equal to P * PAGESIZE, then print the message “all memory is in the heap – no leaks are possible”

void Mem_print(void);

Print a table of the memory in the free list. Here is an example for the format, but you must modify this to suit your design. The pointer “mem_chunk_t *p” points to one memory block in the free list

printf(“p=%p, size=%d (units) , end=%p, next=%p\n”,

p, p->size_units, p + p->size_units, p->next);

Memory segments

When a new segment of memory is needed, use the unix system command sbrk to request the memory from the system. Include the following header,

#include <unistd.h>

This header contains the prototype for the sbrk command:

int sbrk(int increment);

The sbrk command adds increment bytes to the data segment of the process. The value for increment must be an integer multiple of a page size (assume a page is 4096 bytes). If your Mem_alloc command needs a memory allocation that is larger than one page, request the next larger multiple of the page size. First, put the memory returned by sbrk into the free list, and then get the appropriate size memory block to return from Mem_alloc. The return value from sbrk is either a pointer to the memory segment or -1 if there was no space. You are required to use the following function called morecore(). Because the return value for an error is -1 instead of NULL, the test for an error must be handled like this:

#define PAGESIZE 4096

mem_chunk_t *morecore(int new_bytes)

{

char *cp;

mem_chunk_t *new_p;

assert(new_bytes % PAGESIZE == 0 && new_bytes > 0); cp = sbrk(new_bytes);

if (cp == (char *) -1) /* no space available */ return NULL;

new_p = (mem_chunk_t *) cp;

  • add something like: C++; P += new_bytes/PAGESIZE; return new_p;

}

Structure for the free list

Here is an example of how to define mem_chunk_t for a one-way linked list:

typedef struct mem_chunk_tag {

int size_units;

// size in units, not bytes

struct mem_chunk_tag *next;

// next memory block in free list

} mem_chunk_t;

One unit is equal to sizeof(mem_chunk_t) bytes.

A memory block in the free list contains a pointer to the next block in the linked free list and a record of the size of the block (in units). The information at the beginning of the memory block is called the header. The header is a mem_chunk_t structure. For memory alignment, the number of bytes in a memory block must be evenly divisible by an integer number of units.

The parameter for Mem_alloc(nbytes) is the number of bytes of memory that is requested. One of

the first steps is to convert the parameter nbytes to an integer number of units, which is the smallest

number of units that provides at least nbytes. The block that is to be allocated contains one additional

unit, for the header itself. The total number of units that must be extracted from the free list is nunits.

The pointer returned by Mem_alloc points to the start of the space for the user, which is one unit past

the header. The user has permission to write to and read from the nbytes of memory starting at the

user’s pointer location. The header for the memory block checked out to the user should have the

size_units field set equal to nunits, and the next field set to NULL since this memory is no longer

in the free list.

The free list must be implemented using a circular linked list. The list must contain one dummy block. The dummy block is one mem_chunk_t memory block for which the size_units field is set to zero. This guarantees that the dummy block can never be removed from the list. Thus, the list always contains at least one item. Because the design of our memory module does not include a pointer to a header block for the list, you must use a static global variable (with scope limited to mem.c only) for the roving pointer.

The initial free list is initialized with a mem_chuck_t static variable called DummyChunk. A figure of the initial free list is shown below. Note, any time the state of the free list is empty, the same figure applies.

Rover

size_units=0

next

Here is an example of the free list with the dummy chunk and two additional memory blocks.

satisfy the request. The best-fit policy finds the memory block that is closest in size to the request but that is also large enough. In the best case it finds a memory block that is exactly the correct size. When fragmentation is created, the best-fit policy leaves behind the smallest block of unused memory possible. The template for lab4.c includes a command line option to specify the search policy. The policy is specified using the –f {first | best} command line flag.

  1. You must implement a roving pointer. After an allocation, the roving pointer is always left pointing to the memory block immediately after the memory block that was removed from the list. After a free, the roving pointer is pointing to a memory block that includes the item that was just returned to the free list.

  1. You are not permitted to use malloc() or free(). Instead you are developing the procedures to replace these functions.

Testing and performance evaluation

Write unit drivers to test your library extensively and write a detailed description in your test plan. A unit driver performs a systematic sequence of tests. Here are a few of the tests you should perform and document (but the details depend on your design):

  • Test special cases such as boundary conditions for memory block sizes. For example o Allocate blocks 1, 2, and 3

o Print the free list o Free blocks 1 and 3

o Print the free list and verify the hole between blocks 1 and 3 o Extend the above with other patterns and sizes

o Have one trial request a whole page (and a whole page minus space for a header) o Have one trial remove all memory from the free list and show the list is empty

o Repeat all the above tests but with coalescing enabled and show all coalescing patterns

  • Show that your roving pointer spreads the allocation of memory blocks throughout the free list.

  • Call Mem_stats at the end of each driver when all memory has been returned to your free list. Verify that the total memory stored in the free list (in bytes) matches the number of pages requested times the page size (in bytes) and that the message “all memory is in the heap — no leaks are possible” is printed.

Your tests must be added as drivers to the file lab4.c and documented in your test plan. Each driver is enabled using the –u command line argument (see notes in lab4.c about command line arguments). Two unit drives are provided (–u 0 and –u 1), and you must add additional new unit drivers. In your test plan, describe what each of your new unit drivers tests and how it is called if you have added any command line parameters. Do not use the equilibrium driver found in lab4.c for testing (use this driver for performance evaluation). Do not describe results from the equilibrium driver in your test plan.

For the performance analysis document use the equilibrium driver to evaluate the performance of your design for dynamic memory.

  • Describe the advantages and disadvantages of the options you selected to implement for your dynamic memory allocation package. Examples of items you should discuss include

o discuss why you selected your mem_chunk_t structure, including implementing a one-way versus two-way linked list and how that effects the efficiency of searching for and allocating memory

o discuss the advantages and disadvantages of first-fit and best-fit search policies, and how the search policy and the roving pointer effect fragmentation of the free list

o discuss the effect of coalescing on fragmentation and run time

  • Use the equilibrium driver included in lab4.c to evaluate the performance of your memory library.

  1. Compare the performance with and without coalescing by considering both the total size of memory used for the heap, the number of chunks in the free list, the average size of the chunks in the free list, and the time to complete the equilibrium phase of the driver. Use the default values for the equilibrium driver, but also consider other values.

  1. Consider the special case that the size of each allocation request is the same. That is, use the option ‘-r 0’.

  1. Compare the performance of your search policies to the default memory library available with standard C. The –d command line flag forces the equilibrium driver to use malloc/free instead of Mem_alloc/Mem_free.

Hint

Before making any modifications to mem.c, first test that the template code works. With the default system malloc/free (-d ) the equilibrium driver (-e) should run in less than one second. This verifies that your list ADT (llist.c) will work correctly with the equilibrium driver. If this does not work, you must fix the bugs in your llist.c code.

make

./lab4 -e -d

Submission

All code, a makefile, a test plan, and a test log must be submitted to the ECE assign server. You submit by email to ece_assign@clemson.edu. Use as subject header ECE223-1,#4. When you submit to the assign server, verify that you get an automatically generated confirmation email within a few minutes. If you do not get a confirmation email or the email reports an error, your submission was not successful. You must include your files as attachments. Your email must be formatted as plain text (not html). You can make more than one submission but we will only grade the final submission. A re-submission must include all files. You cannot add files to an old submission.

To receive credit for this assignment your code must compile and run the provided unit drivers and equilibrium driver with coalescing. Code that does not compile or seg faults with the default options for the equilibrium or unit drivers will not be accepted or graded.

See the ECE 2230 Programming Guide for additional requirements that apply to all programming assignments.

Work must be completed by each individual student, and see the course syllabus for additional policies.

Page 6 of 6

Machine Problem 4
$24.99 $18.99