File: t_cover_line.out

package info (click to toggle)
verilator 5.038-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 162,552 kB
  • sloc: cpp: 139,204; python: 20,931; ansic: 10,222; yacc: 6,000; lex: 1,925; makefile: 1,260; sh: 494; perl: 282; fortran: 22
file content (536 lines) | stat: -rw-r--r-- 19,145 bytes parent folder | download
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
//      // verilator_coverage annotation
        // DESCRIPTION: Verilator: Verilog Test module
        //
        // This file ONLY is placed under the Creative Commons Public Domain, for
        // any use, without warranty, 2008 by Wilson Snyder.
        // SPDX-License-Identifier: CC0-1.0
        
        module t (/*AUTOARG*/
           // Inputs
           clk
           );
        
           input clk;
        
           reg   toggle;
%000001    initial toggle=0;
-000001  point: comment=block hier=top.t
        
           integer cyc;
%000001    initial cyc=1;
-000001  point: comment=block hier=top.t
        
           wire [7:0] cyc_copy = cyc[7:0];
        
           alpha a1 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk),
                     .toggle                    (toggle));
           alpha a2 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk),
                     .toggle                    (toggle));
           beta  b1 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk),
                     .toggle                    (toggle));
           beta  b2 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk),
                     .toggle                    (toggle));
           tsk   t1 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk),
                     .toggle                    (toggle));
           off   o1 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk),
                     .toggle                    (toggle));
           tab tab1 (/*AUTOINST*/
                     // Inputs
                     .clk                       (clk));
           par par1 (/*AUTOINST*/);
           cond cond1 (/*AUTOINST*/
                       // Inputs
                       .clk                     (clk),
                       .cyc                     (cyc));
        
 000010    always @ (posedge clk) begin
+000010  point: comment=block hier=top.t
~000010       if (cyc!=0) begin
+000010  point: comment=if hier=top.t
-000000  point: comment=else hier=top.t
 000010          cyc <= cyc + 1;
+000010  point: comment=if hier=top.t
 000010          toggle <= '0;
+000010  point: comment=if hier=top.t
                 // Single and multiline if
%000009          if (cyc==3) $write("");
-000001  point: comment=if hier=top.t
-000009  point: comment=else hier=top.t
%000009          if (cyc==3)
-000001  point: comment=if hier=top.t
-000009  point: comment=else hier=top.t
%000001            begin
-000001  point: comment=if hier=top.t
%000001               $write("");
-000001  point: comment=if hier=top.t
                   end
                 // Single and multiline else
%000009          if (cyc==3) ; else $write("");
-000001  point: comment=if hier=top.t
-000009  point: comment=else hier=top.t
%000009          if (cyc==3) ;
-000001  point: comment=if hier=top.t
-000009  point: comment=else hier=top.t
                 else
%000009            begin
-000009  point: comment=else hier=top.t
%000009               $write("");
-000009  point: comment=else hier=top.t
                   end
                 // Single and multiline if else
%000009          if (cyc==3) $write(""); else $write("");
-000001  point: comment=if hier=top.t
-000009  point: comment=else hier=top.t
%000009          if (cyc==3)
-000001  point: comment=if hier=top.t
-000009  point: comment=else hier=top.t
%000001            begin
-000001  point: comment=if hier=top.t
%000001               $write("");
-000001  point: comment=if hier=top.t
                   end
                 else
%000009            begin
-000009  point: comment=else hier=top.t
%000009               $write("");
-000009  point: comment=else hier=top.t
                   end
                 //  multiline elseif
%000001          if (cyc==3)
-000001  point: comment=elsif hier=top.t
%000001            begin
-000001  point: comment=elsif hier=top.t
%000001               $write("");
-000001  point: comment=elsif hier=top.t
                   end
%000001          else if (cyc==4)
-000001  point: comment=elsif hier=top.t
%000001            begin
-000001  point: comment=elsif hier=top.t
%000001               $write("");
-000001  point: comment=elsif hier=top.t
                   end
%000007          else if (cyc==5)
-000001  point: comment=if hier=top.t
-000007  point: comment=else hier=top.t
%000001            begin
-000001  point: comment=if hier=top.t
%000001               $write("");
-000001  point: comment=if hier=top.t
                   end
                 else
%000007            begin
-000007  point: comment=else hier=top.t
%000007               $write("");
-000007  point: comment=else hier=top.t
                   end
                 // Single and multiline while
%000000          while (0);
-000000  point: comment=block hier=top.t
%000000          while (0) begin
-000000  point: comment=block hier=top.t
%000000             $write("");
-000000  point: comment=block hier=top.t
                 end
%000000          do ; while (0);
-000000  point: comment=block hier=top.t
~000010          do begin
-000000  point: comment=block hier=top.t
+000010  point: comment=if hier=top.t
~000010             $write("");
-000000  point: comment=block hier=top.t
+000010  point: comment=if hier=top.t
%000000          end while (0);
-000000  point: comment=block hier=top.t
                 //===
                 // Task and complicated
%000001          if (cyc==3) begin
-000001  point: comment=elsif hier=top.t
%000001             toggle <= '1;
-000001  point: comment=elsif hier=top.t
                 end
%000001          else if (cyc==5) begin
-000001  point: comment=elsif hier=top.t
        `ifdef VERILATOR
%000001             $c("this->call_task();");
-000001  point: comment=elsif hier=top.t
        `else
                    call_task();
        `endif
                 end
%000007          else if (cyc==10) begin
-000001  point: comment=if hier=top.t
-000007  point: comment=else hier=top.t
%000001             $write("*-* All Finished *-*\n");
-000001  point: comment=if hier=top.t
%000001             $finish;
-000001  point: comment=if hier=top.t
                 end
              end
           end
        
%000001    task call_task;
-000001  point: comment=block hier=top.t
              /* verilator public */
%000001       t1.center_task(1'b1);
-000001  point: comment=block hier=top.t
           endtask
        
        endmodule
        
        module alpha (/*AUTOARG*/
           // Inputs
           clk, toggle
           );
           input clk;
           input toggle;
 000020    always @ (posedge clk) begin
+000020  point: comment=block hier=top.t.a*
~000018       if (toggle) begin  // CHECK_COVER(0,"top.t.a*",18)
-000002  point: comment=if hier=top.t.a*
+000018  point: comment=else hier=top.t.a*
%000002          $write("");
-000002  point: comment=if hier=top.t.a*
                 // t.a1 and t.a2 collapse to a count of 2
              end
 000018       if (toggle) begin  // *** t_cover_line.vlt turns this off
+000018  point: comment=else hier=top.t.a*
                 $write("");  // CHECK_COVER_MISSING(0)
                 // This doesn't even get added
        `ifdef ATTRIBUTE
                 // verilator coverage_block_off
        `endif
              end
           end
        endmodule
        
        module beta (/*AUTOARG*/
           // Inputs
           clk, toggle
           );
           input clk;
           input toggle;
        
           /* verilator public_module */
        
 000020    always @ (posedge clk) begin
+000020  point: comment=block hier=top.t.b*
 000020       $write("");  // Always covered
+000020  point: comment=block hier=top.t.b*
~000020       if (0) begin  // CHECK_COVER(0,"top.t.b*",0)
-000000  point: comment=if hier=top.t.b*
+000020  point: comment=else hier=top.t.b*
                 // Make sure that we don't optimize away zero buckets
%000000          $write("");
-000000  point: comment=if hier=top.t.b*
              end
~000018       if (toggle) begin  // CHECK_COVER(0,"top.t.b*",2)
-000002  point: comment=if hier=top.t.b*
+000018  point: comment=else hier=top.t.b*
                 // t.b1 and t.b2 collapse to a count of 2
%000002          $write("");
-000002  point: comment=if hier=top.t.b*
              end
 000018       if (toggle) begin : block
+000018  point: comment=else hier=top.t.b*
                 // This doesn't
        `ifdef ATTRIBUTE
                 // verilator coverage_block_off
        `endif
                 begin end  // *** t_cover_line.vlt turns this off (so need begin/end)
                 if (1) begin end  // CHECK_COVER_MISSING(0)
                 $write("");  // CHECK_COVER_MISSING(0)
              end
           end
        endmodule
        
        class Cls;
           bit m_toggle;
%000001    function new(bit toggle);
-000001  point: comment=block hier=top.$unit::Cls__Vclpkg
%000001       m_toggle = toggle;
-000001  point: comment=block hier=top.$unit::Cls__Vclpkg
%000001       if (m_toggle) begin  // CHECK_COVER(0,"top.$unit::Cls",1)
-000001  point: comment=if hier=top.$unit::Cls__Vclpkg
-000000  point: comment=else hier=top.$unit::Cls__Vclpkg
%000001          $write("");
-000001  point: comment=if hier=top.$unit::Cls__Vclpkg
              end
           endfunction
 000011    static function void fstatic(bit toggle);
+000011  point: comment=block hier=top.$unit::Cls__Vclpkg
~000011       if (1) begin  // CHECK_COVER(0,"top.$unit::Cls",1)
+000011  point: comment=if hier=top.$unit::Cls__Vclpkg
-000000  point: comment=else hier=top.$unit::Cls__Vclpkg
 000011          $write("");
+000011  point: comment=if hier=top.$unit::Cls__Vclpkg
              end
           endfunction
 000011    function void fauto();
+000011  point: comment=block hier=top.$unit::Cls__Vclpkg
~000011       if (m_toggle) begin  // CHECK_COVER(0,"top.$unit::Cls",11)
+000011  point: comment=if hier=top.$unit::Cls__Vclpkg
-000000  point: comment=else hier=top.$unit::Cls__Vclpkg
 000011          $write("");
+000011  point: comment=if hier=top.$unit::Cls__Vclpkg
              end
           endfunction
        endclass
        
        module tsk (/*AUTOARG*/
           // Inputs
           clk, toggle
           );
           input clk;
           input toggle;
        
           /* verilator public_module */
        
 000010    always @ (posedge clk) begin
+000010  point: comment=block hier=top.t.t1
 000010       center_task(1'b0);
+000010  point: comment=block hier=top.t.t1
           end
        
 000011    task center_task;
+000011  point: comment=block hier=top.t.t1
              input external;
 000011       begin
+000011  point: comment=block hier=top.t.t1
~000010          if (toggle) begin  // CHECK_COVER(0,"top.t.t1",1)
-000001  point: comment=if hier=top.t.t1
+000010  point: comment=else hier=top.t.t1
%000001             $write("");
-000001  point: comment=if hier=top.t.t1
                 end
~000010          if (external) begin  // CHECK_COVER(0,"top.t.t1",1)
-000001  point: comment=if hier=top.t.t1
+000010  point: comment=else hier=top.t.t1
%000001             $write("[%0t] Got external pulse\n", $time);
-000001  point: comment=if hier=top.t.t1
                 end
              end
 000011       begin
+000011  point: comment=block hier=top.t.t1
%000001          Cls c = new(1'b1);
-000001  point: comment=block hier=top.t.t1
 000011          c.fauto();
+000011  point: comment=block hier=top.t.t1
 000011          Cls::fstatic(1'b1);
+000011  point: comment=block hier=top.t.t1
              end
           endtask
        endmodule
        
        module off (/*AUTOARG*/
           // Inputs
           clk, toggle
           );
           input clk;
           input toggle;
        
           // verilator coverage_off
           always @ (posedge clk) begin
              if (toggle) begin
                 $write("");  // CHECK_COVER_MISSING(0)
                 // because under coverage_module_off
              end
           end
           // verilator coverage_on
 000010    always @ (posedge clk) begin
+000010  point: comment=block hier=top.t.o1
%000009       if (toggle) begin
-000001  point: comment=if hier=top.t.o1
-000009  point: comment=else hier=top.t.o1
                 // because under coverage_module_off
%000001          $write("");
-000001  point: comment=if hier=top.t.o1
%000001          if (0) ;  // CHECK_COVER(0,"top.t.o1",1)
-000000  point: comment=if hier=top.t.o1
-000001  point: comment=else hier=top.t.o1
              end
           end
        endmodule
        
        module tab (input clk);
           bit [3:0] cyc4;
           int decoded;
        
 000010    always @ (posedge clk) begin
+000010  point: comment=block hier=top.t.tab1
 000010       case (cyc4)
+000010  point: comment=block hier=top.t.tab1
%000001         1: decoded = 10;
-000001  point: comment=case hier=top.t.tab1
%000001         2: decoded = 20;
-000001  point: comment=case hier=top.t.tab1
%000001         3: decoded = 30;
-000001  point: comment=case hier=top.t.tab1
%000001         4: decoded = 40;
-000001  point: comment=case hier=top.t.tab1
%000001         5: decoded = 50;
-000001  point: comment=case hier=top.t.tab1
%000005         default: decoded = 0;
-000005  point: comment=case hier=top.t.tab1
              endcase
           end
        
 000010    always @ (posedge clk) begin
+000010  point: comment=block hier=top.t.tab1
 000010       cyc4 <= cyc4 + 1;
+000010  point: comment=block hier=top.t.tab1
           end
        endmodule
        
        module par();
           localparam int CALLS_FUNC = param_func(1);
        
           // We don't currently count elaboration time use towards coverage.  This
           // seems safer for functions used both at elaboration time and not - but may
           // revisit this.
%000000    function automatic int param_func(int i);
-000000  point: comment=block hier=top.t.par1
%000000       if (i == 0) begin
-000000  point: comment=if hier=top.t.par1
-000000  point: comment=else hier=top.t.par1
%000000          i = 99; // Uncovered
-000000  point: comment=if hier=top.t.par1
              end
%000000       else begin
-000000  point: comment=else hier=top.t.par1
%000000          i = i + 1;
-000000  point: comment=else hier=top.t.par1
              end
%000000       return i;
-000000  point: comment=block hier=top.t.par1
           endfunction
        
        endmodule
        
        package my_pkg;
%000001    int x = 1 ? 1 : 0;
-000001  point: comment=block hier=top.my_pkg
        endpackage
        
%000001 class Getter1;
-000001  point: comment=block hier=top.$unit::Getter1__Vclpkg
 000020    function int get_1;
+000020  point: comment=block hier=top.$unit::Getter1__Vclpkg
 000020       return 1;
+000020  point: comment=block hier=top.$unit::Getter1__Vclpkg
           endfunction
        endclass
        
        module cond(input logic clk, input int cyc);
           logic a, b, c, d, e, f, g, h, k, l, m;
           logic [5:0] tab;
           typedef logic [7:0] arr_t[1:0];
           arr_t data[1:0];
%000001    Getter1 getter1 = new;
-000001  point: comment=block hier=top.t.cond1
           string s;
        
 000021    function logic func_side_effect;
+000021  point: comment=block hier=top.t.cond1
 000021       $display("SIDE EFFECT");
+000021  point: comment=block hier=top.t.cond1
 000021       return 1;
+000021  point: comment=block hier=top.t.cond1
           endfunction
        
 000010    function arr_t get_arr;
+000010  point: comment=block hier=top.t.cond1
              arr_t arr;
 000010       return arr;
+000010  point: comment=block hier=top.t.cond1
           endfunction
        
~000031    assign a = (cyc == 0) ? clk : 1'bz;
-000000  point: comment=cond_then hier=top.t.cond1
+000031  point: comment=cond_else hier=top.t.cond1
~000028    assign b = (cyc == 1) ? clk : 0;
-000003  point: comment=cond_then hier=top.t.cond1
+000028  point: comment=cond_else hier=top.t.cond1
~000021    assign c = func_side_effect() ? clk : 0;
+000021  point: comment=cond_then hier=top.t.cond1
-000000  point: comment=cond_else hier=top.t.cond1
 000010    always @(posedge clk) begin
+000010  point: comment=block hier=top.t.cond1
~000010       d = (cyc % 3 == 0) ? 1 : 0;
+000010  point: comment=block hier=top.t.cond1
-000003  point: comment=cond_then hier=top.t.cond1
-000007  point: comment=cond_else hier=top.t.cond1
~000010       s = (getter1.get_1() == 0) ? "abcd" : $sformatf("%d", getter1.get_1()[4:0]);
+000010  point: comment=block hier=top.t.cond1
-000000  point: comment=cond_then hier=top.t.cond1
+000010  point: comment=cond_else hier=top.t.cond1
           end
~000019    assign e = (cyc % 3 == 1) ? (clk ? 1 : 0) : 1;
+000012  point: comment=cond_then hier=top.t.cond1
+000019  point: comment=cond_else hier=top.t.cond1
-000007  point: comment=cond_then hier=top.t.cond1
-000005  point: comment=cond_else hier=top.t.cond1
        
           // ternary operator in condition shouldn't be included to the coverae
~000011    assign f = (cyc != 0 ? 1 : 0) ? 1 : 0;
+000011  point: comment=cond_then hier=top.t.cond1
-000000  point: comment=cond_else hier=top.t.cond1
           // the same as in index
           assign tab[clk ? 1 : 0] = 1;
           assign m = tab[clk ? 3 : 4];
        
           for (genvar i = 0; i < 2; i++) begin
 000011       assign g = clk ? 1 : 0;
+000010  point: comment=cond_then hier=top.t.cond1
+000011  point: comment=cond_else hier=top.t.cond1
           end
        
 000011    always begin
+000011  point: comment=block hier=top.t.cond1
~000010       if (cyc == 5) h = cyc > 5 ? 1 : 0;
-000000  point: comment=cond_then hier=top.t.cond1
-000001  point: comment=cond_else hier=top.t.cond1
-000001  point: comment=if hier=top.t.cond1
+000010  point: comment=else hier=top.t.cond1
 000010       else h = 1;
+000010  point: comment=else hier=top.t.cond1
        
~000011       data[0] = (cyc == 2) ? '{8'h01, 8'h02} : get_arr();
+000011  point: comment=block hier=top.t.cond1
-000001  point: comment=cond_then hier=top.t.cond1
+000010  point: comment=cond_else hier=top.t.cond1
        
              // ternary operator in conditions should be skipped
 000055       for (int i = 0; (i < 5) ? 1 : 0; i++) begin
+000011  point: comment=block hier=top.t.cond1
+000055  point: comment=block hier=top.t.cond1
 000055          k = 1'(i);
+000055  point: comment=block hier=top.t.cond1
              end
 000044       for (int i = 0; i < 7; i = (i > 4) ? i + 1 : i + 2) begin
+000011  point: comment=block hier=top.t.cond1
+000044  point: comment=block hier=top.t.cond1
 000044          k = 1'(i);
+000044  point: comment=block hier=top.t.cond1
              end
        
~000011       if (k ? 1 : 0) k = 1;
-000000  point: comment=if hier=top.t.cond1
+000011  point: comment=else hier=top.t.cond1
 000011       else k = 0;
+000011  point: comment=else hier=top.t.cond1
           end
        endmodule