1
2
3
4
5
6
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
`include "common.svh"
module sched_tb;
typedef struct packed {
mov_t[1:0] in;
mov_t[0:0] out;
op_t op;
imm_t imm;
} slot_t;
slot_t[1:0] prev_slots;
slot_t[1:0] next_slots;
insn_t[2:0] prev_que;
insn_t[2:0] next_que;
sched #(
.QUE_DEPTH(3),
.SLOT_COUNT(2),
.SLOT_DEPTH(1),
.slot_t(slot_t)
) sched (
.que_i(prev_que),
.que_o(next_que),
.slots_i(prev_slots),
.slots_o(next_slots)
);
slot_t[1:0] first_check = {76'b0,
{{`rn(2), `alu(0)}, {`rn(3), `alu(0)}, {`alu(0), `rn(1)}, 8'h1, 20'h123}
};
slot_t[1:0] second_check = {
{{`rn(2), `alu(0)}, {`rn(1), `alu(0)}, {`alu(0), `rn(5)}, 8'h3, 20'h789},
{{`rn(2), `alu(1)}, {`rn(1), `alu(1)}, {`alu(1), `rn(4)}, 8'h2, 20'h456}
};
initial begin
$dumpfile("sched_tb.vcd");
$dumpvars();
/* pretend we've queued something like
* add r1, r2, r3
* add r4, r2, r1
* add r5, r2, r1
*
* should end up with something like
* add r1, r2, r3 noop
* add r4, r2, r1 add r5, r2, r1
*/
prev_que = {
/* src2, src1, out, op, apparently. Have to get used to
* systemverilog's way of laying out bits, huh. */
{{`rn(2), `alu(0)}, {`rn(1), `alu(0)}, {`alu(0), `rn(5)}, 8'h3, 20'h789},
{{`rn(2), `alu(1)}, {`rn(1), `alu(1)}, {`alu(1), `rn(4)}, 8'h2, 20'h456},
{{`rn(2), `alu(0)}, {`rn(3), `alu(0)}, {`alu(0), `rn(1)}, 8'h1, 20'h123}
/* also, 'reverse' order, first instruction at bottom */
};
prev_slots = '0;
#10
assert (next_slots == first_check)
else $error("\nwanted:\t%h", first_check, "\ngot:\t%h", next_slots);
/* pretend all operations finished */
prev_slots = '0;
prev_que = next_que;
#10
assert (next_slots == second_check)
else $error("\nwanted:\t%h", second_check, "\ngot:\t%h", next_slots);
#10 $finish;
end
endmodule
|