[SOLVED] cache simulator代写:CSCI 2500 Group Project Instruction Pipeline and Cache (IPLC) Simulator

30 $

File Name: cache_simulator代写:CSCI_2500_Group_Project_Instruction_Pipeline_and_Cache_(IPLC)_Simulator.zip
File Size: 894.9 KB

SKU: 3100415227 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


CSCI 2500 Group Project

April 7, 2017

Instruction Pipeline and Cache (IPLC) Simulator

Due Date: Wednesday, May 3rd, 2017

Overview

For this GROUP assignment (up to 4 students per team) you will be implementing and comparing various implementations of a combined instruction pipeline and cache (IPLC) simulator. In particular, your group will be determining what design yields the best overall performance (i.e., fewest cycles). For the pipeline/- cache simulation portion, you will be given a template which you will need to extend including the following set of les:

• instruction-trace.txt: This is an instruction trace le. The format is described below.

• iplc-sim.c: template for the simulator code.

• Make le: builds the iplc simulator.

• taken-2-2-2.out: trace- le output for the case described below. Used to help you debug your imple- mentation.

Instruction Trace Format

Figure 1, provides a example of the nearly 35,000 plus MIPS instruction trace. This trace is from a 2-D Matrix Swap and Multiply MIPS code.

The format for each instruction is as follows. First, each instruction occupies a single line of text. The rst eld is the memory address at which the instruction is located. Next, follows the MIPS instruction mnemonic (e.g., lw for Load Word followed by the registers and or o set that might be used as part of the instruction. A colon (:) is used to denote the instruction has ended and the address that follows is the absolute memory DATA address that was read or written by that instruction if it accessed memory. Instructions that do not

access memory will not have a colon nor DATA address following.

NOTE: I have provided you with the code necessary to parse this instruction trace le.

Cache Details

Using this cache simulator and INSTRUCTION and DATA address trace (which the cache simulator skeleton code reads in for you), your overall goal is to nd the optimal values for (1) block size, and (2) associativity such that the miss rate of the cache is minimal, yet the total size of the cache must be less than 10240 bits. Notice the total size of the cache is expressed in bits and not bytes!. Possible cache con gurations are the following:

1

0x00400000lw $4, 0($29): 7fffef480x00400004addiu $5, $29, 40x00400008addiu $6, $5, 40x0040000csll $2, $4, 20x00400010addu $6, $6, $20x00400014jal 0x004000240x00400024addi $29, $29, -40x00400028sw $31, 0($29): 7fffef440x0040002clui $4, 4097
0x00400030lui $1, 40970x00400034ori $5, $1, 2000x00400038ori $6, $0, 50x0040003cjal 0x0040025c0x0040025cori $8, $0, 40x00400260add $9, $0, $00x00400264beq $9, $8, 1800x00400268ori $10, $0, 20x0040026cbeq $10, $8, 1640x00400270add $11, $9, $90x00400274add $11, $11, $110x00400278add $11, $11, $110x0040027cadd $11, $11, $110x00400280add $12, $10, $100x00400284add $12, $12, $120x00400288add $11, $11, $120x0040028cadd $11, $11, $40x00400290lw $13, 0($11): 10010008

Figure 1: Example instruction trace from the MIPS 2-D Matrix Swap and Multiple Program. There are 34,753 instructions in this trace!

• Possible Block Sizes: – 1 word (32 bits)

– 2 words (64 bits)

– 4 words (128 bits)
• Levels of Associativity

– direct mapped (1-way set associative) – 2-way set associative
– 4-way set associative

Cache Size Function: You can express the size of the cache in terms of 3 factors: • BlockSize
• Associativity
• IndexBits

CacheSize = Associativity ∗ (2IndexBits ∗ (32 ∗ BlockSize + 33 − IndexBits − BlockOffSetBits))

where BlockOffSetBits is the Log2 of the BlockSize.

Using the above equation (which has been coded for you in the cache skeleton), you need to nd the largest value for the index such that it results in a total cache size that is less than or equal to maximum cache size

2

of 10,240 (10k) bits FOR EACH combination of blocks size and level of associativity. Thus, there will be 9 value combinations of index size, block size and level of associativity. Your cache simulator should compute this.

Use your software skills to build a “cache” data structure that is dynamic (i.e., use malloc()). Meaning, I do not want to see 9 hard coded cache data structures that correspond to the above 9 di erent con gurations.

You are to assume that on reads and writes, the data is brought into the cache – i.e., to simplify things, you will have a “write/miss” in this cache.

In order for you to check yourself, I have provided the pipeline trace and cache performance output for the 2 bits of cache index, 2 word block size, 2-way set associative, branches taken case. Note, this case is not the largest cache size you could have had and is solely to help you debug.

As you will see, for this very small cache (only 2480 bits) the cache miss rate is high (i.e., > 16%). You are allowed to have a MAX cache size of 10240 bits. So, you need to determine the 9 possible con gurations using the template such that each con guration is the maximum index (number of cache lines) for a given block size and level of associativity. Equally, if your cache simulator does not get this precise answer, then your cache simulator is incorrect and you will not get the performance in cycles correct.

Pipeline Details

The pipeline is the standard 5-stage design consisting of FETCH, DECODE, ALU, MEM and WRITEBACK stages. The design features you are to consider are:

  • On a cache instruction MISS, the pipeline FETCH stage incurs a stall penalty of 10 clock cycles.
  • On a data word MISS (LW/SW instruction) is also a 10 clock cycle stall penalty in the MEM stage

    for LW and WRITEBACK stage for SW.

  • Determine which branch prediction method yields better performance, TAKEN or NOT-TAKEN?
  • Last, you are to “forward” registers across stages to avoid pipeline stalls.

    Note, you will know if a branch is taken because you can see if the address for the next instruction is 4 bytes larger or not. That is, if P C + 4 was not the next instruction, then you know the branch was taken. Thus, if your predictor guesses wrong, you just need to insert the NOP instruction into the pipeline but do not count that as a real instruction but count the cycles.

    The forwarding logic can be found in the textbook. Note, however, your logic is much easier. You will know what instruction you are processing as opposed to particular control signal lines. For example, if either Reg1 or Reg2 being used in the DECODE stage are the Dest_Reg in the ALU, or MEM stages, you can FORWARD either Reg1 or Reg2 to avoid the stall. That is, when you detect this condition, you’ll allow the pipeline to continue without stalling (e.g., adding delay cycles to overall cycle count). Also note that if a Dest_Reg in the WRITEBACK stage is used in the DECODE stage, then no forwarding is needed since the write occurs in the rst half of the clock cycle and the read occurs in the last half of the clock cycle for that pipeline stage.

    The functions you will write for this functionality are detailed in comments provided in the template code iplc-sim.c which I will cover in class.

    Performance Evaluation

    You will run your simulator 18 times – 9 cache con gurations plus branch predictor con gured TAKEN and 9 cache con gurations plus branch predictor con gured NOT-TAKEN.

    Show the summary output for all your runs and indicate which con guration performed best for this instruction trace le.

3

Grading Criteria

The following is how these projects will be graded.

  1. The project is viewed as 3 major parts: Cache Simulator (20 points), Pipeline Simulator (35 points), and Performance Evaluation (20 points). You should provide good comments in your code (15 points) so we can follow what you are doing – this is especially true if something does not work right. You can at least explain what you where trying to accomplish with your comments.
  2. Write-up and documentation (detailed below) is worth 10 points.
  3. If you have a logic error with your cache or pipeline simulator, you will only be deducted points from that part. So, suppose your cache simulator does not work well at all, then you could obtain a score of 80 points if all other parts are done well.
  4. If your simulator seg faults or dumps core due to an error, the most points you can obtain is 25. Having code written that does not work correctly hurts you much more than having much less code that actually does useful operations.

Report Write-up Instructions

Provide a write-up that summarizes your implementation. Describe how each team member contributed to the overall project. Please note, that while not all team members need to be involved in the nal project write-up process, it is expected that ALL team members participate and contribute to the design and implementation process. This part of the project document should come rst.

4

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] cache simulator代写:CSCI 2500 Group Project Instruction Pipeline and Cache (IPLC) Simulator
30 $