cs270 Fall 2012 Programming Assignment 1 - Bit Fields in C

Essentials

Due: Thursday 09/06/2012 @ 11:59PM
Key: Use the key PA1 for checkin

About The Assignment

This assignment is designed to teach you how to manipulate the bits of integer values. It will serve as the basis for future assignments. You will learn how to use the C language operators for binary and (&), binary or (|), and binary not (~). You will also use the C language bit shift operators (<< and >>).

The goal of the assignment is to implement a small C library (set of 3 functions) that enables getting and setting subfields in a bitvector. This is especially useful for applications like network packet processing. We will use it later in this class for understanding number representations and for converting LC3 assembly code into machine code. First read the Getting Started section below and then study the documentation for field.h in the Files tab to understand the details of the assignment.


Getting Started

Perform the following steps
  1. Create a directory for this assignment. A general scheme might be to have a directory for each CS class you are taking and beneath that, a directory for each assignment. The name of the directory is arbitrary, but you may find it useful to name it for the assignment (e.g. PA1).
  2. Copy the three files into this directory. It is easiest to right click on the link, and do a Save Target As.. for each of the files.
  3. Open a terminal and make sure you are in the directory you created in step 1. The cd command can be used for this.
  4. In the terminal type the following three commands to build the executable.
    
        gcc -g -Wall -c testField.c
        gcc -g -Wall -c field.c
        gcc -g testField.o field.o -o testField
        
  5. In the terminal type testField and read how to run the the program.
  6. In the terminal type testField bin 11259375 and you should see the output:
    
        dec: 11259375  hex: 0xABCDEF  bin: 0000-0000-1010-1011-1100-1101-1110-1111
        

You now have a functioning program. All the commands work, however, only bin will produce correct results at this point.


Completing the Code

Before attempting to write any of the functions of field.c, study the documentation in found in the files tab. Plan what you need to do before writing code.

The best way to complete the code is to follow a write/compile/test sequence. Do not attempt to write everything at once. Rather choose one function and do the following steps.

  1. Write some/all of one function in field.c using your favorite editor.
  2. Save your changes and recompile field.c using gcc -g -Wall -c field.c. You will find it convenient to work with both a terminal and editor window at the same time.
  3. Repeat steps 1 and 2 until there are no errors or warnings.
  4. Build the executable using gcc -g testField.o field.o -o testField.
  5. Test the function you have been working on. Do not attempt to move on until you complete and thoroughly test a function.
  6. Repeat steps 1 thru 5 for the remaining functions.

Checking in Your Code

You will submit the single file field.c using the checkin program. Use the name PA1. At the terminal type:

    ~cs270/bin/checkin PA1 field.c
  

The above command submits your assignment. For a sanity check, type the following to get the file you checked in and make sure it compiles and runs properly with the provided files:

    mkdir sanityCheck
    cd sanityCheck
    ~cs270/bin/peek PA1 field.c > field.c
    cp ../field.h ../testField.c .
    gcc -g -Wall -c testField.c
    gcc -g -Wall -c field.c
    gcc -g testField.o field.o -o testField 
    // Do LOTS of test cases.
Relax, you are done with your assignment!