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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2022 by Antmicro Ltd.
// SPDX-License-Identifier: CC0-1.0
`ifdef TEST_VERBOSE
`define WRITE_VERBOSE(args) $write args
`else
`define WRITE_VERBOSE(args)
`endif
class BaseClass;
virtual task sleep;
endtask
virtual task await;
endtask
endclass
module t;
// =============================================
// EVENTS
class EventClass extends BaseClass;
event e;
int trig_count;
function new;
trig_count = 0;
endfunction
task inc_trig_count;
trig_count++;
endtask;
task sleep;
@e inc_trig_count;
`WRITE_VERBOSE(("Event in class triggered at time %0t!\n", $time));
endtask
task wake;
->e;
endtask
endclass
class WaitClass extends BaseClass;
int a;
int b;
logic ok;
function new;
a = 0;
b = 0;
ok = 0;
endfunction
task await;
wait(a == 4 && b > 16) if (a != 4 || b <= 16) $stop;
ok = 1;
`WRITE_VERBOSE(("Condition in object met at time %0t!\n", $time));
endtask
endclass
class LocalWaitClass extends BaseClass;
logic ok;
function new;
ok = 0;
endfunction
task await;
int a = 0;
int b = 100;
fork
wait(a == 42 || b != 100) if (a != 42 && b == 100) $stop;
#10 a = 42;
join
ok = 1;
`WRITE_VERBOSE(("Condition with local variables met at time %0t!\n", $time));
endtask
endclass
class ClkClass;
logic clk;
int count;
function new;
clk = 0;
count = 0;
endfunction
task flip;
clk = ~clk;
endtask;
task count_5;
@(posedge clk) count++;
@(posedge clk) count++;
@(posedge clk) count++;
@(posedge clk) count++;
@(posedge clk) count++;
endtask
endclass
EventClass ec = new;
WaitClass wc = new;
LocalWaitClass lc = new;
ClkClass cc = new;
initial begin
@ec.e;
ec.sleep;
if (wc.ok) $stop;
wc.await;
if (lc.ok) $stop;
lc.await;
end
initial #20 ec.wake;
initial #40 ->ec.e;
initial begin
wc.a = #50 4;
wc.b = #10 32;
end
always @ec.e begin
ec.inc_trig_count;
`WRITE_VERBOSE(("Event in class triggered at time %0t!\n", $time));
end
always #5 cc.flip;
initial cc.count_5;
initial begin
#80
if (cc.count != 5) $stop;
if (ec.trig_count != 3) $stop;
if (!wc.ok) $stop;
if (!lc.ok) $stop;
end
// =============================================
// DELAYS
virtual class DelayClass;
pure virtual task do_delay;
pure virtual task do_sth_else;
endclass
`ifdef TEST_VERBOSE
`define DELAY_CLASS(dt) \
class Delay``dt extends DelayClass; \
virtual task do_delay; \
$write("Starting a #%0d delay\n", dt); \
#dt \
$write("Ended a #%0d delay\n", dt); \
endtask \
virtual task do_sth_else; \
$write("Task with no delay (in Delay%0d)\n", dt); \
endtask \
endclass
`else
`define DELAY_CLASS(dt) \
class Delay``dt extends DelayClass; \
virtual task do_delay; \
#dt; \
endtask \
virtual task do_sth_else; \
endtask \
endclass
`endif
`DELAY_CLASS(10);
`DELAY_CLASS(20);
`DELAY_CLASS(40);
class NoDelay extends DelayClass;
virtual task do_delay;
`WRITE_VERBOSE(("Task with no delay\n"));
endtask
virtual task do_sth_else;
`WRITE_VERBOSE(("Task with no delay (in NoDelay)\n"));
endtask
endclass
class AssignDelayClass;
logic x;
logic y;
task do_assign;
y = #10 x;
`WRITE_VERBOSE(("Did assignment with delay\n"));
endtask
endclass
initial begin
DelayClass dc;
Delay10 d10 = new;
Delay20 d20 = new;
Delay40 d40 = new;
NoDelay dNo = new;
AssignDelayClass dAsgn = new;
`WRITE_VERBOSE(("I'm at time %0t\n", $time));
dc = d10;
dc.do_delay;
dc.do_sth_else;
`WRITE_VERBOSE(("I'm at time %0t\n", $time));
if ($time != 10) $stop;
dc = d20;
dc.do_delay;
dc.do_sth_else;
`WRITE_VERBOSE(("I'm at time %0t\n", $time));
if ($time != 30) $stop;
dc = d40;
dc.do_delay;
dc.do_sth_else;
`WRITE_VERBOSE(("I'm at time %0t\n", $time));
if ($time != 70) $stop;
dc = dNo;
dc.do_delay;
dc.do_sth_else;
`WRITE_VERBOSE(("I'm at time %0t\n", $time));
dAsgn.x = 1;
dAsgn.y = 0;
fork #5 dAsgn.x = 0; join_none
dAsgn.do_assign;
if ($time != 80) $stop;
if (dAsgn.y != 1) $stop;
// Test if the object is deleted before do_assign finishes:
fork dAsgn.do_assign; join_none
#5 dAsgn = null;
#15 $write("*-* All Finished *-*\n");
$finish;
end
// =============================================
// FORKS
class ForkDelayClass;
task do_delay; #40; endtask
endclass
class ForkClass;
int done = 0;
task do_fork();
ForkDelayClass d;
fork
begin
#10 done++;
`WRITE_VERBOSE(("Forked process %0d ending at time %0t\n", done, $time));
end
fork
begin
#20 done++;
`WRITE_VERBOSE(("Forked process %0d ending at time %0t\n", done, $time));
d = new;
end
begin
#30 d.do_delay;
done++;
`WRITE_VERBOSE(("Forked process %0d ending at time %0t\n", done, $time));
end
join
join
done++;
`WRITE_VERBOSE(("All forked processes ended at time %0t\n", $time));
endtask
endclass
initial begin
ForkClass fc = new;
fc.do_fork;
if (fc.done != 4 || $time != 70) $stop;
end
initial #101 $stop; // timeout
endmodule
|