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
|
// DESCRIPTION: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2020 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
`define check_rand(cl, field) \
begin \
longint prev_result; \
int ok = 0; \
void'(cl.randomize()); \
prev_result = longint'(field); \
repeat(9) begin \
longint result; \
void'(cl.randomize()); \
result = longint'(field); \
if (result != prev_result) ok = 1; \
prev_result = result; \
end \
if (ok != 1) $stop; \
end
typedef enum bit[15:0] {
ONE = 3,
TWO = 5,
THREE = 8,
FOUR = 13
} Enum;
typedef struct packed {
int a;
bit b;
Enum c;
} StructInner;
typedef struct packed {
bit x;
StructInner s;
Enum y;
longint z;
} StructOuter;
typedef struct {
int i;
StructOuter j;
Enum k;
longint z;
} StructUnpacked;
class BaseCls1;
endclass
class Inner;
rand logic[7:0] a;
rand logic[15:0] b;
rand logic[3:0] c;
rand logic[11:0] d;
int e;
function new;
a = 0;
b = 0;
c = 0;
d = 0;
e = 0;
endfunction
endclass
class DerivedCls1 extends BaseCls1;
rand Inner i;
rand int j;
int k;
rand Enum l;
function new;
i = new;
j = 0;
k = 0;
l = ONE;
endfunction
endclass
class BaseCls2;
rand int i;
function new;
i = 0;
endfunction
endclass
class DerivedCls2 extends BaseCls2;
rand int j;
function new;
super.new;
j = 0;
endfunction
endclass
class OtherCls;
logic[63:0] v;
rand logic[63:0] w;
rand logic[47:0] x;
rand logic[31:0] y;
rand logic[23:0] z;
rand StructUnpacked str;
function new;
v = 0;
w = 0;
x = 0;
y = 0;
z = 0;
str.i = 0;
str.j = '{x: 1'b0, y: ONE, z: 64'd0, s: '{a: 32'd0, b: 1'b0, c: ONE}};
str.k = ONE;
endfunction
endclass
class ContainsNull;
rand BaseCls1 b;
endclass
class ClsWithInt;
rand int a;
int b;
endclass
class DeriveClsWithInt extends ClsWithInt;
endclass
class DeriveAndContainClsWithInt extends ClsWithInt;
rand ClsWithInt cls1;
ClsWithInt cls2;
function new;
cls1 = new;
cls2 = new;
endfunction
endclass
class ClsUsedOnlyHere;
rand int a;
endclass
typedef ClsUsedOnlyHere cls_used_only_here_t;
class ClsContainUsedOnlyHere;
rand cls_used_only_here_t c;
function new;
c = new;
endfunction
endclass
module t (/*AUTOARG*/);
DerivedCls1 derived1;
DerivedCls2 derived2;
OtherCls other;
BaseCls1 base;
ContainsNull cont;
DeriveClsWithInt der_int;
DeriveAndContainClsWithInt der_contain;
ClsContainUsedOnlyHere cls_cont_used;
initial begin
derived1 = new;
derived2 = new;
other = new;
cont = new;
der_int = new;
der_contain = new;
base = derived1;
cls_cont_used = new;
for (int i = 0; i < 10; i++) begin
void'(base.randomize());
void'(derived2.randomize());
void'(other.randomize());
void'(cont.randomize());
void'(der_int.randomize());
void'(der_contain.randomize());
if (!(derived1.l inside {ONE, TWO, THREE, FOUR})) $stop;
if (!(other.str.j.s.c inside {ONE, TWO, THREE, FOUR})) $stop;
if (!(other.str.j.y inside {ONE, TWO, THREE, FOUR})) $stop;
if (!(other.str.k inside {ONE, TWO, THREE, FOUR})) $stop;
if (derived1.i.e != 0) $stop;
if (derived1.k != 0) $stop;
if (other.v != 0) $stop;
if (cont.b != null) $stop;
if (der_int.b != 0) $stop;
if (der_contain.cls2.a != 0) $stop;
if (der_contain.cls1.b != 0) $stop;
if (der_contain.b != 0) $stop;
end
`check_rand(derived1, derived1.i.a);
`check_rand(derived1, derived1.i.b);
`check_rand(derived1, derived1.i.c);
`check_rand(derived1, derived1.j);
`check_rand(derived1, derived1.l);
`check_rand(derived2, derived2.i);
`check_rand(derived2, derived2.j);
`check_rand(other, other.w);
`check_rand(other, other.x);
`check_rand(other, other.y);
`check_rand(other, other.z);
`check_rand(other, other.str.i);
`check_rand(other, other.str.j.x);
`check_rand(other, other.str.j.y);
`check_rand(other, other.str.j.z);
`check_rand(other, other.str.j.s.a);
`check_rand(other, other.str.j.s.b);
`check_rand(other, other.str.j.s.c);
`check_rand(other, other.str.k);
`check_rand(der_int, der_int.a);
`check_rand(der_contain, der_contain.cls1.a);
`check_rand(der_contain, der_contain.a);
`check_rand(cls_cont_used, cls_cont_used.c.a);
$write("*-* All Finished *-*\n");
$finish;
end
endmodule
|