CSE 351 Spring 2011 Lab 1

Manipulating Bits (using C)

Assigned: Friday, April 1, 2011
Due: Friday, April 8, 2011 at 11:59 PM
Turnin: Online

Overview

The purpose of this assignment is to become more familiar with data at the bit-level representation. You'll do this by solving a series of programming "puzzles". Many of these puzzles are quite artificial, but you'll find yourself thinking much more about bits in working your way through them.

Instructions

You can fetch the files required for this homework at http://www.cs.washington.edu/education/courses/cse351/11sp/labs/lab1.tar.gz
(Un-tar'ing [just like you did in homework 0] will create a lab1 directory.)

The lab1 folder contains a number of tools, described later, and a bits.c file. bits.c contains a skeleton for each of the programming puzzles, along with a large comment block that describes exactly what the function must do and what restrictions there are on its implementation. Your assignment is to complete each function skeleton using:

The intent of the restrictions is to require you to think about the data as bits—because of the restrictions, your solutions won't be the most efficient way to accomplish the function's goal, but the process of working out the solution should make the notion of data as bits completely clear.

Note: The infrastructure for this assignment may require a 32-bit system—it tries to force gcc to generate a 32-bit executable, but we can't guarantee it works. If you use a 64-bit system, verify that your code works on a 32-bit system before turn-in (e.g., using attu.cs).

The Puzzles

This section describes the puzzles that you will be solving in bits.c. More complete (and definitive, should there be any inconsistencies) documentation is found in the bits.c file itself.

Bit Manipulations

Table 1 describes a set of functions that manipulate and test sets of bits. The "Rating" field gives the difficulty rating (the number of points) for the puzzle, and the "Max ops" field gives the maximum number of operators you are allowed to use to implement each function. See the comments in bits.c for more details on the desired behavior of the functions. You may also refer to the test functions in tests.c. These are used as reference functions to express the correct behavior of your functions, although they don't satisfy the coding rules for your functions.


Table 1: Bit-Level Manipulation Functions
Name Description Rating Max Ops
bitNor(x,y) x nor y using only & and ~ 18
bitXor(x,y) x ^ y using only & and ~ 114
thirdBits() return a word with every third bit set 18
isNotEqual(x,y) return 0 if x == y, and 1 otherwise 26
byteSwap(x,n,m) swap the nth byte and the mth byte 225
logicalShift(x,n) shift x to the right by n, using a logical shift 320
isAsciiDigit(x) return 1 if 0x30 <= x <= 0x39 315
conditional(x,y,z) same as x ? y : z (the ternary conditional operator) 316
bang(x) Compute !n without using the ! operator. 412

Two's Complement Arithmetic

Table 2 describes a set of functions that make use of the two's complement representation of integers. Again, refer to the comments in bits.c and the reference versions in tests.c for more information.


Table 2: Arithmetic Functions
Name Description Rating Max Ops
minusOne() return a value of -1 1 2
negate(x) return -x 25
isPositive(x) return 1 if x > 0, and 0 otherwise 3 8
isPower2(x) return 1 if x is a power of 2, and 0 otherwise 4 20

Checking your work

We have included two tools to help you check the correctness of your work.

Advice

Turnin

Please submit just your finished bits.c file using the Catalyst turn-in page for this assignment. The navigation sidebar above also has a link to the main Catalyst 351 turnin page.