6.004 Spring 2015 - 1 of 4

Transcription

6.004 Spring 2015 - 1 of 4
MASSACHUSETTS INSTITUTE OF TECHNOLO GY
DEPARTMENT OF ELECTRICAL ENGINEERING AND COMPUTER SCIENCE
6.004 Computation Structures
Spring 2015
Quiz #2: March 20, 2015
Name
Michael
o WF 10, 34-302
o WF 11, 34-302
Athena login name
Philippe
o WF 12, 34-301
o WF 1, 34-301
Miriam
o WF 2, 34-301
o WF 3, 34-301
Ciara
o WF 12, 34-302
o WF 1, 34-302
Score
Louis
o WF 2, 34-302
o WF 3, 34-302
Please enter your name and Athena login name in the spaces above. Enter your answers in
the spaces provided after each question. You can use the extra white space and the backs of the
pages for scratch work.
Problem 1. Beta Assembly (4 points)
For the Beta instruction sequence shown below, indicate the values in the specified registers after
the sequence has been executed starting at location 0. Execution terminates when the HALT()
instruction is reached. Assume that all registers have been initialized to 0 before execution
begins.
Remember that even though the Beta reads and writes 32-bit words from memory, all addresses
are byte addresses, i.e., the addresses of successive words in memory differ by 4.
A summary of Beta instructions is attached at the end of the quiz.
. = 0 LD(r31, X, r0) CMPLE(r0, r31, r1) BNE(r1, L1, r1) ADDC(r31, 17, r2) BEQ(r31, L2, r31) L1: SRAC(r0, 4, r2) L2: HALT() . = 0x1CE8 X: LONG(0x87654321) Value left in R0? 0x_______________
Value left in R1? 0x_______________
Value left in R2? 0x_______________
Value UASM assigns to L1: 0x_______________
6.004 Spring 2015
- 1 of 4 -
Quiz #2
1
2
3
4
/4
/6
/9
/11
Problem 2. Finite-state Machines (6 points)
Below is a state transition diagram for a 4-state FSM with a single binary input B. The FSM has
single output – a light that is “on” when the FSM is in states “E” or “S”. The starting state, “W”,
is marked by the heavy circle.
B=0
B=1
B=1
N
B=0
B=1
E
W
B=1
S
B=0
B=0
(A) (1 Point) Does this FSM have a set or sets of equivalent states that can be merged to yield an
equivalent FSM with fewer states?
List set(s) of states that can be merged or write NONE:________________
(B) (5 Points) Please fill in as many entries as possible in the following truth table for the FSM.
The light output is a function of the current state and should be 1 when the light is “on” and
0 when it’s “off.”
6.004 Spring 2015
S1
S0
B
S1’
0
0
0
0
0
1
0
1
0
0
0
1
0
1
1
1
0
1
1
0
0
1
0
1
1
1
0
1
1
1
- 2 of 4 -
S0’ light
Quiz #2
Problem 3. Pipelining (9 points)
The following circuit uses six full adder modules (as you’ve seen in lecture and lab) arranged in a
combinational circuit that computes a 3-bit value F=A+B+5 for 3-bit inputs A and B:
A2
B2
A1
FA
B1
A0
FA
B0
FA
1
0
0
1
FA
FA
FA
F2
F1
F0
0
The full adders have a tPD of 6ns.
(A) (1 Point) Give the latency and throughput of the combinational circuit.
Latency: _______ns; Throughput: __________
(B) (4 Points) Indicate, on the above diagram, appropriate locations to place ideal (zero-delay)
registers to pipeline the circuit for maximum throughput using a minimum number of
registers. Be sure to include a register on each output.
(mark circuit above)
(C) (2 Points) Give the latency and throughput of your pipelined circuit.
Latency: _______ns; Throughput: __________
(D) (2 Points) Consider generalizing the circuit to accommodate A and B values with N bits.
Give the asymptotic hardware cost of the pipelined circuit as a function of N.
Asymptotic hardware cost: Θ(__________)
6.004 Spring 2015
- 3 of 4 -
Quiz #2
Problem 4. Stacks & Procedures (11 points)
The following C program computes the log base 2 of its argument. The
assembly code for the procedure is shown on the right, along with a stack
trace showing the execution of ilog2(10). The execution has been halted just
as it’s about to execute the instruction labeled “rtn:”
/* compute log base 2 of arg */ int ilog2(unsigned x) { unsigned y; if (x == 0) return 0; else { /* shift x right by 1 bit */ y = x >> 1; return ilog2(y) + 1; } } (A) (4 Points) What are the values in R0, SP, BP and LP at the time
execution was halted? Please express the values in hex or write “CAN’T
TELL”.
Value in R0: 0x_______________ in SP: 0x_______________
Value in BP: 0x_______________ in LP: 0x_______________
ilog2: PUSH(LP) PUSH(BP) MOVE(SP,BP) ALLOCATE(1) PUSH(R1) LD(BP,-­‐12,R0) BEQ(R0,rtn,R31) LD(BP,-­‐12,R1) SHRC(R1,1,R1) ST(R1,0,BP) LD(BP,0,R1) PUSH(R1) BR(ilog2,LP) DEALLOCATE(1) ADDC(R0,1,R0) rtn: POP(R1) xxx: DEALLOCATE(1) MOVE(BP,SP) POP(BP) POP(LP) JMP(LP) 5 (B) (5 Points) Please fill in the values for the five blank locations in the stack
trace shown on the right. Please express the values in hex.
1A8 Fill in values (in hex!) for 5 blank locations
(C) (1 Point) In the assembly language code for ilog2 there is the instruction
“LD(BP,-12,R0)”. If this instruction were rewritten as
“LD(SP,NNN,R0)” what is correct value to use for NNN?
Correct value for NNN: _______________
Values are in hex!
208 (D) (1 Point) In the assembly language code for ilog2, what is the address of
the memory location labeled “xxx:”? Please express the value in hex.
2 5 1 1A8 Address of location labeled “xxx:”: 0x_______________
230 BP→
0 1 END OF QUIZ 2!
6.004 Spring 2015
- 4 of 4 -
0 Quiz #2