Tomasulo Theory Flashcards

1
Q

How does the Tomasulo algorithm improves the instruction level parallelism?

A

It uses implicit register renaming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the dependencies that the tomasulo algorithm deals with?

A

The write after read and right after right hazards

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How is the register renaming implemented?

A

It uses reservation stations placed in front of the different function unities

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does Tomasulo algorithm solves the right after read and write after right hazards?

A

By remaining results by using reservation stations numbers instead of register file numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the Basic idea behind the Tomasulo algorithm?

A

The results are passed to the functional units from reservation stations, not through registers, over a common data bus that broadcasts results to all functional units and to store buffers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the Qj and Qk components in the reservation station?

A

They are the pointers to the reservation station responsible to produce the values of the source operands, when they are zero, the value of the source operand is ready

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the contents of a load/store buffer

A

Load/store buffers have busy and address field.

Store buffers also have a FU field, which corresponds to the value to be written in the given address

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the stages of the Tomasulo dynamic scheduling algorithm

A

First issue, when there are checks for structural hazards in reservation stations

Second, start execute, starts when Operands are ready (Which avoids RAW hazard) and the FU is available (check for structural hazards)

Finally, write results, write results on common databus to reservation stations, store buffers, and RF

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the key differences between the Tomasulo and the scoreboard dynamic scheduling algorithms?

A

First, in the Tomasulo technique, the structural issues are checked on the reservation stations while for the scoreboard algorithm, the structural hazards are checked for the functional units.

Second, WAR and WAW are avoided by both renaming and stalling for Tomasulo and scoreboard, respectively

Finally, in the Tomasulo algorithm, the control is distributed on the reservation stations. Differently in the scoreboard technique, the control is centralized through the scoreboard.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are the drawback in the Tomasulo dynamics scheduling algorithm?

A

The complexity (large amount of hardware and power dissipation), many associative stores, performance limited by common databus

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Take a look at the 3 picture in the ACA album and describe the steps taken by the Tomasulo algorithm

A

Take a look at the 3S picture

How well did you know this?
1
Not at all
2
3
4
5
Perfectly