Princeton University
COS 217: Introduction to Programming Systems

Assignment 5: Assembly Language Programming

Purpose

The purpose of this assignment is to help you learn about computer architecture, assembly language programming, and testing strategies. It also will give you the opportunity to learn more about the GNU/UNIX programming tools, especially bash, xemacs, gcc, and gdb for assembly language programs.

The assignment consists of two parts, each of which has subparts.


Part 1: A Word Counting Program in Assembly Language

Part 1a: Translate to Assembly Language

The UNIX operating system has a command named wc (word count). In its simplest form, wc reads characters from stdin until end-of-file, and prints to stdout a count of how many lines, words, and characters it has read. A word is a sequence of characters that is delimited by one or more whitespace characters.

Consider some examples. In the following, a space is shown as "s" and a newline character as "n".

If the file named proverb contains these characters:

Learningsissan
treasureswhichn
accompaniessitsn
ownerseverywhere.n
--sChinesesproverbn

then the command:

$ wc < proverb

prints this line to standard output:

  5 12 82

If the file proverb2 contains these characters:

Learningsissan
treasureswhichn
accompaniessitsn
ownerseverywhere.n
--sssChinesesproverb

(note that the last "line" does not end with a newline character) then the command:

$ wc < proverb2

prints this line to standard output:

 4 12 83

The file mywc.c in the /u/cos217/Assignment5 directory contains a C program that implements the subset of the wc command described above.  Translate that program into assembly language, thus creating a file named mywc.s. It is acceptable to use global (i.e. bss section or data section) variables in mywc.s. But we encourage you to use local (i.e. stack) variables instead. Your assembly language program should have exactly the same behavior (i.e. should write exactly the same characters to stdout) as the given C program.

Part 1b: Test

Design a test plan for your mywc program. Your test plan should include tests in three categories: (1) boundary condition testing, (2) logical path testing, and (3) stress testing.

Create text files to test your programs. Name each such file such that its prefix is "mywc" and its suffix is ".txt". The command "ls mywc*.txt" should display the names of all mywc test files, and only those files.

Describe your mywc test plan in your readme file. Your description should have this structure:

mywc boundary condition tests:

mywcXXX.txt: Description of the characteristics of that file, and how it tests boundary conditions of your mywc program.
mywcYYY.txt: Description of the characteristics of that file, and how it tests boundary conditions of your mywc program.
...

mywc logical path tests:

mywcXXX.txt: Description of the characteristics of that file, and which logical path(s) of your mywc program it tests.
mywcYYY.txt:  Description of the characteristics of that file, and which logical path(s) of your mywc program it tests.
...

Collectively your logical path test files should cause the computer to execute every instruction of your mywc program. Your descriptions of the test files should be of the form "This file contains such-and-such characteristics, and so tests lines such-and-such of the program." You may identify the lines of code tested either by description (e.g. "the second 'if' statement") or by line number (e.g. lines 20 though 25). Line numbers may refer to either your assembly language code or the corresponding C code.

mywc stress tests:

mywcXXX.txt: Description of the characteristics of that file, and how it stress tests your mywc program.
mywcYYY.txt: Description of the characteristics of that file, and how it stress tests your mywc program.
...

Do not submit test files that contain more than approximately 1000 reasonably sized lines of text. Submitting very large files might exhaust the course's allotted disk space on hats.

Do not submit test files that contain non-printable characters.

Finally, create a bash shell script named testmywc to automate your mywc test plan. A bash shell script is simply a text file that contains commands, and that has been made executable via the chmod command, for example, "chmod 700 testmywc".

The testmywc script should build a mywc program from the given C code, build a mywc program from your assembly language code, execute both programs, and compare the output.

It is acceptable for your testmywc script to call other scripts that you create. Each such script should have a name that is prefixed with "testmywc". The command "ls testmywc*" should display the names of all mywc test scripts, and only those scripts. Feel free to use the testdecomment and testdecommentdiff scripts from Assignment 1 as models.


Part 2: Beat the Compiler

Background

The Fibonacci numbers are used often in computer science. See http://en.wikipedia.org/wiki/Fibonacci_numbers for some background information on Fibonacci numbers.  Note in particular that Fibonacci numbers can be very large integers.

Many programming environments contain modules to handle high-precision integer arithmetic.  For example, see the Java BigDecimal and BigInteger classes.

This part of the assignment asks you to write a minimal high-precision integer arithmetic module in assembly language, and to use it to compute large Fibonacci numbers.

Part 2a: Compute Fibonacci Numbers Using C Code

Suppose you must compute Fibonacci number 500000, that is, fib(500000)...

The /u/cos217/Assignment5 directory contains a C program that computes Fibonacci numbers. It consists of two modules: a client module and a BigInt ADT.

The client consists of the file fib.c. The client accepts an integer n as a command-line argument, validates it, and computes and prints fib(n) to stdout as a hexadecimal number. It prints to stderr the amount of CPU time consumed while performing the computation. The client module delegates most of the work to BigInt objects.

The BigInt ADT performs high precision integer arithmetic. It is a minimal ADT; essentially it implements only an "add" operation. The BigInt ADT consists of four files:

Study the given code. Then build the program with no optimization. Run the program to compute fib(500000). In your readme file note the amount of CPU time consumed.

Part 2b: Compute Fibonacci Numbers Using C Code Built with Compiler Optimization

Suppose you decide that the amount of CPU time consumed is unacceptably large. You decide to command the compiler to optimize the code that it produces...

Build the program using optimization. Specifically, specify the -DNDEBUG option so the preprocessor disables the assert() macro, and the -O3 option so the compiler generates optimized code. Run the resulting program to compute fib(500000). In your readme file note the amount of CPU time consumed.

Part 2c: Compute Fibonacci Numbers Using Assembly Language Code

Suppose you decide that the amount of CPU time consumed still is too large. In an attempt to gain speed, you decide manually to code the BigInt_add() function in assembly language...

Manually translate the C code in the bigintadd.c file into assembly language, thus creating the file bigintadd.s. You need not translate the code in other files into assembly language.

Your assembly language code should store all variables in memory. It should contain definitions of the BigInt_add() and BigInt_larger() functions; the former should call the latter, just as the C code does.

Note that assert() is a parameterized macro, not a function. (See Section 14.3 of the King book for a description of parameterized macros.) So you cannot call assert() from assembly language code. When translating bigintadd.c to assembly language, simply pretend that the calls of assert() are not in the C code.

Build the program consisting of the files fib.c, bigint.c, and bigintadd.s using the -DNDEBUG and -O3 options. Run the program to compute fib(x) for various values of x, and make sure it writes the same output as the program built from C code does. Finally, run the program to compute fib(500000). In your readme file note the amount of CPU time consumed.

Part 2d: Compute Fibonacci Numbers Using Optimized Assembly Language Code

Suppose, to your horror, you discover that you have taken a step backwards: the CPU time consumed by your assembly language code is about the same as that of the non-optimized compiler-generated code. So you decide to optimize your assembly language code...

Manually optimize your assembly language code in bigintadd.s, thus creating the file bigintaddopt.s. Specifically, perform these optimizations:

  1. Store variables in registers instead of in memory. Remember that assembly language functions must handle the EBX, ESI, and EDI registers with special care.
  2. "Inline" the call of the BigInt_larger() function. That is, eliminate the BigInt_larger() function, placing its code within the BigInt_add() function.

Build the program consisting of the files fib.c, bigint.c, and bigintaddopt.s using the -DNDEBUG and -O3 options. Run the program to compute fib(x) for various values of x, and make sure it writes the same output as the program built from C code does. Finally, run the program to compute fib(500000). In your readme file note the amount of CPU time consumed.

Can you write assembly language code that is as fast as the code that the compiler generates? That is, can you tie the compiler?

Part 2e: Extra Credit (up to 10 points)

Finally, suppose you decide to optimize your assembly language code even further, moving away from a statement-by-statement translation of C code into assembly language...

Further optimize your assembly language code in bigintaddopt.s, thus creating the file bigintaddoptopt.s. Specifically, perform these optimizations:

  1. Factor as much code as possible out of the loop.
  2. Instead of using a "uiCarry" variable (stored in memory or in a register) to keep track of carries during addition, use the "carry" bit in the EFLAGS register. The carry bit is set by the "adcl" ("add with carry long") instruction.

The extra credit optimizations are difficult. To do them you will need to learn about the "adcl" instruction, and about which instructions affect (and do not affect) the C ("carry") flag in the EFLAGS register. We encourage you to do the extra credit optimizations, but will not think unkindly of you if you decide not to.

Hint: When writing bigintaddoptopt.s, the problem is this: How can you preserve the value of the C flag between executions of the adcl instruction? One approach to solving that problem is to determine how to save and then restore the value of the EFLAGS register. Another approach is to figure out how to express the logic such that only instructions that do not affect the C flag are executed between each execution of the adcl instruction.

Build the program consisting of the files fib.c, bigint.c, and bigintaddoptopt.s using the -DNDEBUG and -O3 options. Run the program to compute fib(x) for various values of x, and make sure it writes the same output as the program built from C code does. Finally, run the program to compute fib(500000). In your readme file note the amount of CPU time consumed.

Can you beat the compiler?


Logistics

Develop on hats. Use xemacs to create source code. Use gdb to debug.

Do not use a C compiler to produce any of your assembly language code. Doing so would be considered an instance of academic dishonesty. Instead produce your assembly language code manually.

We encourage you to develop "flattened" C code (as described in precepts) to bridge the gap between the given "normal" C code and your assembly language code. Using flattened C code as a bridge can eliminate logic errors from your assembly language code, leaving only the possibility of translation errors.

We also encourage you to use your flattened C code as comments in your assembly language code. Such comments can clarify your assembly language code substantially.

You should submit:

Your readme file should contain:

Submit your work electronically using the commands:

submit 5 mywc.s
submit 5 testmywc
submit 5 anyBashScriptsCalledByTestmywc
submit 5 mywc*.txt
submit 5 bigintadd.s
submit 5 bigintaddopt.s
submit 5 bigintaddoptopt.s (if you did the extra credit)
submit 5 readme

Please do not submit xemacs backup files, that is, files that end with '~'.


Grading

As always, we will grade your work on quality from the user's and programmer's points of view. To encourage good coding practices, we will take off points based on warning messages during compilation and assembly.

Comments in your assembly language programs are especially important. Each assembly language function -- especially the main() function -- should have a comment that describes what the function does. Local comments within your assembly language functions are equally important. Comments copied from corresponding "flattened" C code are particularly helpful. Your bigintaddopt.s file should contain comments that define a "register map." The register map should indicate which variables are stored in which registers. Your bigintaddoptopt.s file also should contain a register map.

Testing is a substantial aspect of the assignment. Approximately 10% of the grade will be based upon your mywc test plan as described in your readme file, and as implemented by your test scripts and data files.

Your grade for the extra credit option will be based upon raw performance (How quickly does your code computes fib(500000)?) and style (Does your code contain optimizations that logically should improve performance?).