Homework 3: Cache Organization and Indexing

Assigned Friday, November 13, 2014
Due Date Friday, November 20, 2014 at 5:00pm
Submissions Submit a PDF file of your solutions here.

Introduction

The purpose of written homework assignments is to get you thinking about the topics being covered in lecture and in readings in the textbook which are not represented in the hands-on, programming lab assignments. These written assignments also better prepare you for course examinations. It is worth noting that the book contains many practice problems similar to the problems we ask on these written assignments! The solutions for those practice problems are located at the end of each chapter and should give you a feel for the kind of answers we expect you to turn in for these kind of assignments.

Logistics

Please write up your answers and submit them as a PDF file in the online dropbox. This simplifies our grading and ensures we read your answers clearly. If you don't know how to create a PDF, a quick internet search should help, or ask us.

We will provide solutions to all of the problems in the written homework assignments in a timely fashion after the assignment is due. This may be around 4 or 5 days after the due date, in general, because a student may use up to 3 late days on an assignment.

Notes

Make sure you are using the 3rd edition of Computer Systems: A Programmer's Perspective. If you're not using the right book, you might be doing the wrong problems!

Questions

Answer the following problems, some from the 3rd edition of the textbook. Notice that several of these problems are practice problems. If a practice problem is listed, try to solve the problem on your own first, then check your answer at the end of the chapter. Make sure you understand the solution provided, then complete the additional questions we ask about the practice problem below. Your write-up only needs to contain the information necessary to understand your answer to the *additional questions listed here* - you do NOT need to turn in the answer to the practice problem in its entirety.

  1. Practice Problem 3.41, p. 268. How would you change the assembly code generated if we inserted another line into the C function between the first and second instructions (just before sp->p = .... ) as sp->s.y = 17;?
  2. Practice Problem 6.9, p. 616. Repeat this problem for the following two real caches: Intel Xeon L1 data cache: m = 38, C = 32768, B = 64, E = 8. AMD Opteron 6168 L2 unified cache: m = 48, C = 524288, B = 64, E = 16.
  3. Practice Problem 6.10, p. 624. Assume that instead our cache is 2-way set associative. That is, C=64, S=2, E=2, B=16. So our cache is twice as big, and each set now contains two lines. Please give a separate answer for each of these two scenarios: a) What will the overall *miss rate* be for the original layout of the two arrays in this cache (include all accesses to array x and array y)? b) What will the overall *miss rate* be for the padded version?
  4. Practice Problems 6.12-6.16, p. 628-630. (Nothing required for turn-in.)
  5. Practice Problem 6.18, p. 637. Repeat for an algae struct that has 4 integer fields instead of 2. Execute the same *code* as shown (only access the original first two fields, do not access the two new fields). You can assume that the new struct looks something like: struct algae_position { int x; int y; int z; int w;}
  6. Homework Problem 6.28, p. 650. Be sure to review and completely understand Practice Problems 6.12 - 6.16 before working on this problem.
  7. Homework Problem 6.29, p. 651. Be sure to review and completely understand Practice Problems 6.12 - 6.16 before working on this problem. Note: Part A has a typo (picto?). The picture showing the bits shows 13 bits instead of 12 bits. You can just cross out bit number 12, leaving only 12 bits total. Note: For part B, you only need to give the "read value" for the two read operations, there is no read value for the write.

Submitting Your Work

Please turn in a PDF file containing your answers to the Catalyst Drop Box for this assignment. We will not accept submissions that are not in PDF format.