CSCI 210: Lab 8

Floating Point
Due: 9:59pm on Monday November 28th

In this lab, you will implement part of the IEEE 754 Standard for Floating-Point Arithmetic. In particular, you will implement single precision (32-bit) floating point addition and multiplication.

Preliminaries

You may discuss your implementation with a partner; however, each of you needs to write and submit your own code. So no copying and pasting, but you should feel free to work together on a solution and to debug.

Click on the Assigment Link.

Once you have accepted the assignment, you can clone the repository on your computer by following the instructions and begin working.

Program Specification

In the assignment repo, you’ll find a single Java file, Xfloat.java which defines an Xfloat class. This class represents a single-precision floating point number with the following members.

  • private byte sign;
  • private byte exp;
  • private int significand;

Of course, these represent the three fields of a floating point number.

The file also contains a main method that takes two floats as command-line arguments and prints them out along with the product and sum of the numbers. For example, running the program with floats 2.5 and 7.25 gives this output.

> java MyXfloat 2.5 7.25
		x:   40200000 (0 10000000 01000000000000000000000) s: 0 e: 80 m: 200000 2.5
		y:   40e80000 (0 10000001 11010000000000000000000) s: 0 e: 81 m: 680000 7.25
		x*y: 0 (0 00000000 00000000000000000000000) s: 0 e: 0 m: 0 0.0
		x+y: 0 (0 00000000 00000000000000000000000) s: 0 e: 0 m: 0 0.0

The first 8 hex-digit number corresponds to the bits of the actual IEEE floating point number. The binary representation follows, separated into sign, exponent and significand fields. Next are the corresponding Xfloat fields in hex. Note that the significand field requires only 6 hex digits since only 23 of the 32 bits are actually used.

You only need to implement two methods.

public static Xfloat xadd(Xfloat x, Xfloat y) Add Xfloats x and y together and return the result.

public static Xfloat xmult(Xfloat x, Xfloat y) Multiply Xfloats x and y together and return the result.

You must implement the methods by performing the addition/multiplication by operating on the three fields of each Xfloat.

You should not modify any other methods.

You may ignore subnormal numbers, infinities, and NaN, but you must properly handle 0.0.

You must use bit masking and shifting to manipulate bits. In particular, you are not allowed to convert your integers to strings.

Notes:

  • When implementing xadd, you’ll need to shift the significand of the number with the smaller magnitude so that the two numbers have the same exponent. However, if the number of bits you need to shift by is greater than 31, you should just set the significand rather than trying to shift by more than 31. This is because val >> 32 in Java is the same thing as val and val >> 33 is the same as val >> 1. In general if shamt >= 32, then val >> shamt is the same as val >> (shamt % 32) which can lead to surprising results.

    For example, when adding 0.000000237 and 234624.0, the exponent for the first is -23−23 and the exponent for the second is 17. To make the first have the same exponent as the second, we’d need to shift the first’s significand right by 17 - -23 = 4017−−23=40. In this case, the final result should be 234624.0.

  • When implementing xmult, you’ll need to multiply the significands. You should perform the following steps.
    1. Convert the significands to 64-bit longs;
    2. Use Xfloat.HIDDEN_BIT to add the hidden bit to the significands;
    3. Multiply the two 64-bit significands;
    4. Shift the result appropriately (making necessary adjustments to the exponent); and
    5. Cast the significand back to 32 bits and remove the implicit 1.
  • The various XXX_MASK constants defined in Xfloat may be helpful.
  • In Java, the unsigned right shift operator is >>>.
  • Because Java only uses signed numbers, you may want to use types that are larger than the ones you need. For example, you will probably want to work with the exponents by assigning them to ints before working with them. Something like int e = x.exponent & 0xFF; will give you x’s exponent as an integer in the range [0, 255]. If you omit the & 0xFF, then any x.exponent that’s larger than 127 will give you a negative number.
  • Check out the page of worked examples.

Tests

Included in the repository is a Python test script, test.py. This script will compile and test your code against 10 fixed inputs or, if you pass the -r option to it, against an additional 100 randomly chosen inputs.

$ ./test.py
Compiling
x=0.0 y=0.0: PASS
x=-1.0 y=0.0: PASS
x=0.0 y=-1.0: PASS
x=0.9 y=0.1: PASS
x=1.5 y=1.5: PASS
x=6.66666 y=3.3333333: PASS
x=2.25 y=0.5: PASS
x=-4.0 y=2.0: PASS
x=-20486.0 y=-2.5e-06: PASS
x=4.70197740328915e-38 y=2.1267647932558654e+37: PASS
    10/10 tests passed
Or
$ ./test.py -r
Compiling
x=0.0 y=0.0: PASS
x=-1.0 y=0.0: PASS
x=0.0 y=-1.0: PASS
x=0.9 y=0.1: PASS
x=1.5 y=1.5: PASS
x=6.66666 y=3.3333333: PASS
x=2.25 y=0.5: PASS
x=-4.0 y=2.0: PASS
x=-20486.0 y=-2.5e-06: PASS
x=4.70197740328915e-38 y=2.1267647932558654e+37: PASS
10/10 tests passed

Performing 100 random tests
x=-1.5824437428766114e+19 y=7.654288931433146e-16: PASS
x=-519727136.0 y=-4.693174584159976e+27: PASS
x=5.338058977860687e-34 y=-110286184.0: PASS
...
x=-1.7480781718172477e-25 y=3.453274344019857e+34: PASS
    100/100 random tests passed

Submission

Submit the lab by committing your code and pushing it to your GitHub repository.


C. Taylor, S. Checkoway