汇编代写 CSCI 2021 Architecture Lab: Optimizing the Performance of a Pipelined Processor

CSCI 2021, Fall 2018

Architecture Lab: Optimizing the Performance of a Pipelined Processor

Assigned: Nov 8, Due: Nov 23,11:55PM

1 Introduction

In this lab, you will learn about the design and implementation of a pipelined Y86-64 processor, optimizing both it and a benchmark program to maximize performance. You are allowed to make any semantics- preserving transformation to the benchmark program, or to make enhancements to the pipelined processor, or both. When you have completed the lab, you will have a keen appreciation for the interactions between code and hardware that affect the performance of your programs.

The lab is organized into three parts, each with its own handin. In Part A you will write some simple Y86-64 programs and become familiar with the Y86-64 tools. In Part B, you will extend the SEQ simulator with a new instruction. These two parts will prepare you for Part C, the heart of the lab, where you will optimize the Y86-64 benchmark program and the processor design.

2 Logistics

This is an individual project. All handins are electronic. Clarifications and corrections will be posted on the course message board.

3

1. 2.

Handout Instructions
Go to the canvas site to download thearchlab-handout.tarfile.

Start by copying the file archlab-handout.tar to a (protected) directory in which you plan to do your work.

Then give the command: tar xvf archlab-handout.tar. This will cause the following files to be unpacked into the directory: README, Makefile, sim.tar, archlab.pdf, and simguide.pdf.

ele2:

3. Next,givethecommandtarxvfsim.tar.Thiswillcreatethedirectorysim,whichcontains your personal copy of the Y86-64 tools. You will be doing all of your work inside this directory.

4. Finally,changetothesimdirectoryandbuildtheY86-64tools:

cd sim make clean

make

You will be working in directory sim/misc in this part.

Your task is to write and simulate the following three Y86-64 programs. The required behavior of these programs is defined by the example C functions in examples.c. Be sure to put your name and ID in a comment at the beginning of each program. You can test your programs by first assemblying them with the program YAS and then running them with the instruction set simulator YIS.

In all of your Y86-64 functions, you should follow the x86-64 conventions for passing function arguments, using registers, and using the stack. This includes saving and restoring any callee-save registers that you use.

sum.ys: Iteratively sum linked list elements

Write a Y86-64 program sum.ys that iteratively sums the elements of a linked list. Your program should consist of some code that sets up the stack structure, invokes a function, and then halts. In this case, the function should be Y86-64 code for a function (sum_list) that is functionally equivalent to the C sum_list function in Figure 1. Test your program using the following three-element list:

# Sample linked list .align 8
ele1:

unix> unix>

unix >

4 PartA

.quad 0xa00 .quad ele2

.quad 0x0b0 .quad ele3

ele3:
.quad 0

rsum.ys: Recursively sum linked list elements

Write a Y86-64 program rsum.ys that recursively sums the elements of a linked list.
be similar to the code in sum.ys, except that it should use a function rsum_list that recursively sums a list of numbers, as shown with the C function rsum_list in Figure 1. Test your program using the same three-element list you used for testing sum.ys.

.quad 0x00c

This code should

1 2 3

4

5 6

/* linked list element */ typedef struct ELE {

long val;

struct ELE *next; } *list_ptr;

/* sum_list – Sum the elements of a linked list */ long sum_list(list_ptr ls)

long val = 0; while (ls) {

val += ls->val;

ls = ls->next; }

return val; }

/* rsum_list – Recursive version of sum_list */ long rsum_list(list_ptr ls)

{
if (!ls)

return 0; else {

long val = ls->val;
long rest = rsum_list(ls->next); return val + rest;

} }

/* copy_block – Copy src to dest and return xor checksum of src */ long copy_block(long *src, long *dest, long len)

{
long result = 0;

while (len > 0) {

long val = *src++;

*dest++ = val;

result ˆ= val; len–;

}

return result; }

Figure 1: C versions of the Y86-64 solution functions. See sim/misc/examples.c

7
8 9{

10 11 12 13 14 15 16 17

18 19 20 21 22 23 24 25 26 27 28 29

30 31 32 33 34

35 36

37 38

39 40 41

copy.ys: Copy a source block to a destination block
Write a program (copy.ys) that copies a block of words from one part of memory to another (non-

overlapping area) area of memory, computing the checksum (XOR) of all the words copied.

Your program should consist of code that sets up a stack frame, invokes a function copy_block, and then halts. The function should be functionally equivalent to the C function copy_block shown in Figure 1. Test your program using the following three-element source and destination blocks:

.align 8
# Source block src:

.quad 0x001 .quad 0x002 .quad 0x004

# Destination block dest:

.quad 0x111 .quad 0x222 .quad 0x333

5 PartB

You will be working in directory sim/seq in this part.

Your task in Part B is to extend the SEQ processor to support a new instruction iaddq. To add this instruction, you will modify the file seq-full.hcl, which implements the version of SEQ described in the CS:APP3e textbook. In addition, it contains declarations of some constants that you will need for your solution.

Your HCL file must begin with a header comment containing the following information: • YournameandID.

• A description of the computations required for the iaddq instruction. Use the descriptions of irmovq and OPq in Figure 4.18 in the CS:APP3e text as a guide.

Building and Testing Your Solution

Once you have finished modifying the seq-full.hcl file, then you will need to build a new instance of the SEQ simulator (ssim) based on this HCL file, and then test it:

• Buildinganewsimulator.YoucanusemaketobuildanewSEQsimulator:

unix>

make VERSION=full

This builds a version of ssim that uses the control logic you specified in seq-full.hcl.

Testing your solution on a simple Y86-64 program. For your initial testing, we recommend running simple programs such as asumi.yo (testing iaddq) in TTY mode, comparing the results against the ISA simulation:

unix> ./ssim -t ../y86-code/asumi.yo
If the ISA test fails, then you should debug your implementation by single stepping the simulator in

GUI mode:

unix> ./ssim -g ../y86-code/asumi.yo

• Retesting your solution using the benchmark programs. Once your simulator is able to correctly execute small programs, then you can automatically test it on the Y86-64 benchmark programs in ../y86-code:

unix> (cd ../y86-code; make testssim)

This will run ssim on the benchmark programs and check for correctness by comparing the resulting processor state with the state from a high-level ISA simulation. Note that none of these programs test the added instructions. You are simply making sure that your solution did not inject errors for the original instructions. See file ../y86-code/README file for more details.

• Performing regression tests. Once you can execute the benchmark programs correctly, then you should run the extensive set of regression tests in ../ptest. To test everything except iaddq:

unix> (cd ../ptest; make SIM=../seq/ssim)
To test your implementation of iaddq:
unix> (cd ../ptest; make SIM=../seq/ssim TFLAGS=-i)

For more information on the SEQ simulator refer to the handout CS:APP3e Guide to Y86-64 Processor Simulators (simguide.pdf).

6 PartC

You will be working in directory sim/pipe in this part.

The ncopy function in Figure 2 copies a len-element integer array src to a non-overlapping dst, re- turning a count of the number of negative integers contained in src. Figure 3 shows the baseline Y86-64 version of ncopy. The file pipe-full.hcl contains a copy of the HCL code for PIPE, along with a declaration of the constant value IIADDQ.

1 /*

  1. 2  * ncopy – copy src to dst, returning number of negative ints
  2. 3  * contained in src array.

4 */
5 word_t ncopy(word_t *src, word_t *dst, word_t len) 6{
7
8
9

10

11 12

13 14

15 16 17 18

while (len > 0) { val = *src++; *dst++ = val;

if (val < 0) count++;

len–; }

return count; }

word_t count = 0; word_t val;

Figure 2: C version of the ncopy function. See sim/pipe/ncopy.c.
Your task in Part C is to modify ncopy.ys and pipe-full.hcl with the goal of making ncopy.ys

run as fast as possible.

You will be handing in two files: pipe-full.hcl and ncopy.ys. Each file should begin with a header comment with the following information:

• YournameandID.
• Ahigh-leveldescriptionofyourcode.Ineachcase,describehowandwhyyoumodifiedyourcode.

Coding Rules

You are free to make any modifications you wish, with the following constraints:

  • Your ncopy.ys function must work for arbitrary array sizes. You might be tempted to hardwire your solution for 64-element arrays by simply coding 64 copy instructions, but this would be a bad idea because we will be grading your solution based on its performance on arbitrary arrays.
  • Yourncopy.ys function must run correctly with YIS. By correctly, we mean that it must correctly copy the src block and return (in %rax) the correct number of negative integers.
  • The assembled version of your ncopy file must not be more than 1000 bytes long. You can check the length of any program with the ncopy function embedded using the provided script check-len.pl:

    unix> ./check-len.pl < ncopy.yo

1 ################################################################## 2 # ncopy.ys – Copy a src block of len words to dst.
3 # Return the number of negative words (<0) contained in src.
4#

5 # Include your name and ID here.
6#
7 # Describe how and why you modified the baseline code. 8#
9

  1. 10  #
  2. 11  #
  3. 12  #
  4. 13  ncopy:

14

17
18
19
20
21
22 Loop: 23

24
25
26
27
28 Npos: 29

# Loop header xorq %rax,%rax andq %rdx,%rdx jle Done

mrmovq (%rdi), %r10 rmmovq %r10, (%rsi) andq %r10, %r10
jg Npos

irmovq $1, %r10 addq %r10, %rax irmovq $1, %r10 subq %r10, %rdx irmovq $8, %r10 addq %r10, %rdi addq %r10, %rsi andq %rdx,%rdx jg Loop

# count = 0;
# len <= 0?
# if so, goto Done:

# read val from src…
# …and store it to dst #val>0?
# if so, goto Npos:

# count++

# len–

################################################################## Do not modify this portion
Function prologue.
%rdi = src, %rsi = dst, %rdx =len

  1. 15  ##################################################################
  2. 16  # You can modify this portion

30 31 32 33 34

  1. 35  ##################################################################
  2. 36  # Do not modify the following section of code

# src++
# dst++
#len>0?
# if so, goto Loop:

  1. 37  # Function epilogue.
  2. 38  Done:
  3. 39  ret
  4. 40  ##################################################################
  5. 41  # Keep the following label at the end of your function
  6. 42  End:
    Figure 3: Baseline Y86-64 version of the ncopyfunction. See sim/pipe/ncopy.ys.

• Your pipe-full.hcl implementation must pass the regression tests in ../y86-code and ../ptest (without the -iflag that tests iaddq).

Other than that, you are free to implement the iaddq instruction if you think that will help. You may make any semantics preserving transformations to the ncopy.ys function, such as reordering instruc- tions, replacing groups of instructions with single instructions, deleting some instructions, and adding other instructions. You may find it useful to read about loop unrolling in Section 5.8 of CS:APP3e.

Building and Running Your Solution

In order to test your solution, you will need to build a driver program that calls your ncopy function. We have provided you with the gen-driver.pl program that generates a driver program for arbitrary sized input arrays. For example, typing

unix> make drivers
will construct the following two useful driver programs:

  • sdriver.yo: A small driver program that tests an ncopy function on small arrays with 4 elements. If your solution is correct, then this program will halt with a value of 2 in register %rax after copying thesrcarray.
  • ldriver.yo: A large driver program that tests an ncopy function on larger arrays with 63 ele-

ments. If your solution is correct, then this program will halt with a value of 32 (0x20) in %rax after copying the src array.

Each time you modify your ncopy.ys program, you can rebuild the driver programs by typing unix> make drivers
Each time you modify your pipe-full.hcl file, you can rebuild the simulator by typing unix> make psim

If you want to rebuild the simulator and the driver programs, type

unix> make
To test your solution in GUI mode on a small 4-element array, type unix> ./psim -g sdriver.yo
To test your solution on a larger 63-element array, type
unix> ./psim -g ldriver.yo

register

Once your simulator correctly runs your version of ncopy.ys on these two block lengths, you will want to perform the following additional tests:

  • Testing your driver files on the ISA simulator. Make sure that your ncopy.ys function works prop- erly with YIS:

    unix> makedrivers
    unix> ../misc/yissdriver.yo

  • TestingyourcodeonarangeofblocklengthswiththeISAsimulator.ThePerlscriptcorrectness.pl generates driver files with block lengths from 0 up to some limit (default 65), plus some larger sizes.
    It simulates them (by default with YIS), and checks the results. It generates a report showing the status for each block length:

    unix> ./correctness.pl
    This script generates test programs where the result count varies randomly from one run to another,

    and so it provides a more stringent test than the standard drivers.

    If you get incorrect results for some length K, you can generate a driver file for that length that includes checking code, and where the result variesrandomly:

    unix> ./gen-driver.pl -f ncopy.ys -n K -rc > driver.ys unix> makedriver.yo
    unix> ../misc/yisdriver.yo

    The program will end with register %raxhaving the following value:

    0xaaaa : All tests pass.
    0xbbbb : Incorrect count
    0xcccc : Function ncopy is more than 1000 bytes long.
    0xdddd : Some of the source data was not copied to its destination.
    0xeeee : Some word just before or just after the destination region was corrupted.

  • Testing your pipeline simulator on the benchmark programs. Once your simulator is able to cor- rectly execute sdriver.ys and ldriver.ys, you should test it against the Y86-64 benchmark programs in../y86-code:

    unix> (cd ../y86-code; make testpsim)
    This will run psim on the benchmark programs and compare results with YIS.

  • Testing your pipeline simulator with extensive regression tests. Once you can execute the benchmark programs correctly, then you should check it with the regression tests in ../ptest. For example, if your solution implements the iaddq instruction, then

    unix> (cd ../ptest; make SIM=../pipe/psim TFLAGS=-i)

  • Testing your code on a range of block lengths with the pipeline simulator. Finally, you can run the

    same code tests on the pipeline simulator that you did earlier with the ISA simulator

    unix> ./correctness.pl-p

7 Evaluation

The lab is worth 150 points: 30 points for Part A, 30 points for Part B, and 90 points for Part C.

Part A

Part A is worth 30 points, 10 points for each Y86-64 solution program. Each solution program will be eval- uated for correctness, including proper handling of the stack and registers, as well as functional equivalence with the example C functions in examples.c.

The programs sum.ys and rsum.ys will be considered correct if the graders do not spot any errors in them, and their respective sum_list and rsum_list functions return the sum 0xabc in register %rax.

The program copy.ys will be considered correct if the graders do not spot any errors in them, and the copy_block function returns the sum 0x007 in register %rax, copies the three 64-bit values 0x001, 0x002, and 0x004 to the 24 bytes beginning at address dest, and does not corrupt other memory locations.

Part B

This part of the lab is worth 30 points:
• 10 points for your description of the computations required for the iaddq instruction.

• 10 points for passing the benchmark regression tests in y86-code, to verify that your simulator still correctly executes the benchmarksuite.

• 10pointsforpassingtheregressiontestsinptestforiaddq. Part C

This part of the Lab is worth 90 points: You will not receive any credit if either your code forncopy.ys or your modified simulator fails any of the tests described earlier.

  • 15 points each for your descriptions in the headers of ncopy.ys and pipe-full.hcl and the quality of theseimplementations.
  • 60 points for performance. To receive credit here, your solution must be correct, as defined earlier. That is, ncopy runs correctly with YIS, and pipe-full.hcl passes all tests in y86-code and ptest.

    We will express the performance of your function in units of cycles per element (CPE). That is, if the simulated code requires C cycles to copy a block of N elements, then the CPE is C/N . The PIPE simulator displays the total number of cycles required to complete the program. The baseline version of the ncopy function running on the standard PIPE simulator with a large 63-element array requires 901 cycles to copy 63 elements, for a CPE of 901/63 = 14.30.

Since some cycles are used to set up the call to ncopy and to set up the loop within ncopy, you will find that you will get different values of the CPE for different block lengths (generally the CPE will drop as N increases).

We will therefore evaluate the performance of your function by computing the average of the CPEs for blocks ranging from 1 to 64 elements. You can use the Perl script benchmark.pl in the pipe directory to run simulations of your ncopy.ys code over a range of block lengths and compute the average CPE. Simply run the command

unix> ./benchmark.pl

to see what happens. For example, the baseline version of the ncopy function has CPE values ranging between 33.00 and 14.27, with an average of 15.34. Note that this Perl script does not check for the correctness of the answer. Use the scriptcorrectness.plfor this.

You should be able to achieve an average CPE of less than 9.00. Our best version averages 7.61. If your average CPE is c, then your score S for this portion of the lab will be:

0, S= 20. 10.5−𝑐 ,

60,

𝑐 > 10.5 7.65≤𝑐≤10.50 𝑐 < 7.65

By default, benchmark.pl and correctness.pl compile and test ncopy.ys. Use the -f argument to specify a different file name. The -h flag gives a complete list of the command line arguments.

8 Handin Instructions

You will need to submit all your solution files to Canvas site directly. All the files should have your X500 id as a prefix.

  • Youwillbehandinginthreesetsoffiles:

    – PartA:sim/miscfoldershouldcontainsum.ys,rsum.ys,andcopy.ysfiles – PartB:sim/seq shouldcontainthefilesseq-full.hcl.
    – PartC:sim/pipeshouldcontainncopy.ysandpipe-full.hcl.

  • MakesureyouhaveincludedyournamesandIDsinacommentatthetopofeachofyourhandin files.
  • To name your files for part X, go to your archlab-handout directory and type: unix> makehandin-partXX500=your_x500_id

    where X is a, b, or c, and where X500 is your x500 ID. For example, to handin Part A:

unix> makehandin-partaX500=suren009 • Youcanfindyourhandinbylookingin

./archlab-handout

Submit all your three part files (A,B and C) to Canvas directly at the end. Each of you will submit 6 files (say X500-sum.ys, X500-rsum.ys, X500-copy.ys, X500-seq-full.hcl, X500-ncopy.ys, X500-pipe- full.hcl)

9 Hints

  • By design, both sdriver.yo and ldriver.yo are small enough to debug with in GUI mode. We find it easiest to debug in GUI mode, and suggest that you use it.
  • With some X servers, the “Program Code” window begins life as a closed icon when you run psim orssimin GUI mode. Simply click on the icon to expand the window.
  • WithsomeMicrosoftWindows-basedXservers,the“MemoryContents”windowwillnotautomati- cally resize itself. You’ll need to resize the window byhand.
  • The psim and ssim simulators terminate with a segmentation fault if you ask them to execute a file that is not a valid Y86-64 object file.