MIPS programing assignment question

Objective: The purposes of this laboratory are to expand your MIPS programing skills by implementing nested routines. This lab will be using the stack to pass operands to and return results from a routine and also to save return address information, so that nested routines can be implemented properly. You will develop assembly source that will be assembled, downloaded, and executed. The MIPS instruction set information distributed in class will be very useful for this software development process.

Activities: For this assignment, you will write a main routine in which two n x 1 vectors are defined in a similar manner to how numbers_to_use: is implemented in lab 0. (n must be greater or equal to 6 and some of the values must be negative numbers – no values should be 0). Your main program will configure the stack pointer appropriately and pass the parameters to a function called dot_product.

You will generate the function named dot_product which takes elements from each vector and after configuring the stack appropriately, passes two operands via the stack to a function called num_mult.

You will generate the function num_mult which takes two operands passed via the stack and multiplies them together. The function will then test the result to determine if the product can accurately be represented in 32 bits. If there is no overflow, then the num_mult will return the product in the $v0 register and a value of 0 in the $v1 register. If there is an overflow, then the num_mult procedure will return a value of 0 in the $v0 register and -1 in the $v1 register. (Remember, the product of a positive number and a negative number is negative and the product of two negative number is positive, so your overflow detection logic should take this into consideration.)

Your dot_product function will calculate a sum of the returned values from each call to num_mult and return the sum in $v0 and 0 in $v1. If any of the values returned from num_mult indicate an overflow, then the dot_product function will return a 0 in $v0 and -1 in $v1. In addition, your dot_product function should also check for an overflow in the running sum calculation process. In the event of an overflow in the running sum, the dot_product result will zero, as well.

Upon completion of the dot-product calculations, your main program should have a β€œspin” loop at the end so that you can use the debugger to verify that you program has correctly calculated the vector dot product by examining the contents of the $v0 register.

For this lab, you will be graded on how well you document your code. You will be well served to spend a little time generating pseudocode that shows the high level detail of what your code is supposed to be doing. Spend some time generating the design before you actually start writing code. EECE 344L Microprocessors Spring 2015

Your code will be examined to verify that you strictly adhere to the MIPS register usage conventions. It is also mandatory that you use the stack to pass parameters to the called routines as specified above, as this is the one of the main objectives of this lab.

Documentation: Your lab activities must be documented following the guidelines that are provided on the lab report guidline. Reference Information: A vector dot product of two vectors, 𝑋̅ π‘Žπ‘›π‘‘ π‘ŒΜ…, each of which have n elements, is defined as follows: 𝑋̅ βˆ™π‘ŒΜ…= π‘Žπ‘› 𝑏𝑛+ π‘Žπ‘›βˆ’1 π‘π‘›βˆ’1+β‹―..+π‘Ž2 𝑏2+π‘Ž1 𝑏1