dashboard | hierarchy | modlist | groups | tests | asserts

Module Instance : tb.dut.u_padring.gen_mio_pads[43].u_mio_pad.gen_generic.u_impl_generic

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
gen_mio_pads[43].u_mio_pad


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_padring.gen_mio_pads[44].u_mio_pad.gen_generic.u_impl_generic

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
gen_mio_pads[44].u_mio_pad


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_padring.gen_mio_pads[45].u_mio_pad.gen_generic.u_impl_generic

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
gen_mio_pads[45].u_mio_pad


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Module Instance : tb.dut.u_padring.gen_mio_pads[46].u_mio_pad.gen_generic.u_impl_generic

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
100.00 100.00 100.00 100.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
gen_mio_pads[46].u_mio_pad


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children

Go back
Module Instances:
tb.dut.u_padring.gen_mio_pads[43].u_mio_pad.gen_generic.u_impl_generic
tb.dut.u_padring.gen_mio_pads[44].u_mio_pad.gen_generic.u_impl_generic
tb.dut.u_padring.gen_mio_pads[45].u_mio_pad.gen_generic.u_impl_generic
tb.dut.u_padring.gen_mio_pads[46].u_mio_pad.gen_generic.u_impl_generic
Line Coverage for Instance : tb.dut.u_padring.gen_mio_pads[43].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
TOTAL88100.00
CONT_ASSIGN3900
CONT_ASSIGN5111100.00
CONT_ASSIGN7811100.00
CONT_ASSIGN8011100.00
CONT_ASSIGN8411100.00
CONT_ASSIGN8511100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9311100.00
CONT_ASSIGN9511100.00

38 logic unused_sigs; 39 unreachable assign unused_sigs = ^{attr_i.slew_rate, 40 attr_i.drive_strength[3:1], 41 attr_i.od_en, 42 attr_i.schmitt_en, 43 attr_i.keep_en, 44 scanmode_i, 45 pok_i}; 46 //VCS coverage on 47 // pragma coverage on 48 49 // Input enable (active-high) 50 logic ie; 51 1/1 assign ie = ie_i & ~attr_i.input_disable; Tests: T20 T21 T22  52 53 if (PadType == InputStd) begin : gen_input_only 54 //VCS coverage off 55 // pragma coverage off 56 logic unused_in_sigs; 57 assign unused_in_sigs = ^{out_i, 58 oe_i, 59 attr_i.virt_od_en, 60 attr_i.drive_strength}; 61 //VCS coverage on 62 // pragma coverage on 63 64 assign in_raw_o = ie ? inout_io : 1'bz; 65 // input inversion 66 assign in_o = attr_i.invert ^ in_raw_o; 67 68 // pulls are not supported by verilator 69 `ifndef VERILATOR 70 // pullup / pulldown termination 71 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; 72 `endif 73 end else if (PadType == BidirTol || 74 PadType == DualBidirTol || 75 PadType == BidirOd || 76 PadType == BidirStd) begin : gen_bidir 77 78 1/1 assign in_raw_o = ie ? inout_io : 1'bz; Tests: T2 T27 T37  79 // input inversion 80 1/1 assign in_o = attr_i.invert ^ in_raw_o; Tests: T2 T27 T37  81 82 // virtual open drain emulation 83 logic oe, out; 84 1/1 assign out = out_i ^ attr_i.invert; Tests: T2 T27 T37  85 1/1 assign oe = oe_i & ((attr_i.virt_od_en & ~out) | ~attr_i.virt_od_en); Tests: T2 T27 T37  86 87 // drive strength attributes are not supported by verilator 88 `ifdef VERILATOR 89 assign inout_io = (oe) ? out : 1'bz; 90 `else 91 // different driver types 92 1/1 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T37  93 1/1 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T37  94 // pullup / pulldown termination 95 1/1 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; Tests: T20 T21 T22 

Cond Coverage for Instance : tb.dut.u_padring.gen_mio_pads[43].u_mio_pad.gen_generic.u_impl_generic
TotalCoveredPercent
Conditions3333100.00
Logical3333100.00
Non-Logical00
Event00

 LINE       51
 EXPRESSION (ie_i & ((~attr_i.input_disable)))
             --1-   ------------2------------
-1--2-StatusTests
01Unreachable
10CoveredT20,T21,T22
11CoveredT1,T2,T3

 LINE       78
 EXPRESSION (ie ? inout_io : 1'bz)
             -1
-1-StatusTests
0CoveredT20,T21,T22
1CoveredT1,T2,T3

 LINE       80
 EXPRESSION (attr_i.invert ^ in_raw_o)
             ------1------   ----2---
-1--2-StatusTests
00CoveredT27,T37,T38
01CoveredT2,T27,T37
10CoveredT20,T22,T49
11CoveredT20,T49,T50

 LINE       84
 EXPRESSION (out_i ^ attr_i.invert)
             --1--   ------2------
-1--2-StatusTests
00CoveredT1,T2,T3
01CoveredT20,T21,T22
10CoveredT2,T27,T37
11CoveredT20,T22,T49

 LINE       85
 EXPRESSION (oe_i & ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en))))
             --1-   ---------------------------------2---------------------------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T37

 LINE       85
 SUB-EXPRESSION ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en)))
                 --------------------1-------------------   -----------2----------
-1--2-StatusTests
00CoveredT20,T21,T22
01CoveredT1,T2,T3
10CoveredT20,T21,T22

 LINE       85
 SUB-EXPRESSION (attr_i.virt_od_en & ((~gen_bidir.out)))
                 --------1--------   ---------2--------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT20,T21,T22

 LINE       92
 EXPRESSION ((gen_bidir.oe && attr_i.drive_strength[0]) ? gen_bidir.out : 1'bz)
             ---------------------1--------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

 LINE       92
 SUB-EXPRESSION (gen_bidir.oe && attr_i.drive_strength[0])
                 ------1-----    ------------2-----------
-1--2-StatusTests
01CoveredT20,T21,T22
10CoveredT2,T27,T37
11CoveredT20,T21,T22

 LINE       93
 EXPRESSION ((gen_bidir.oe && ((!attr_i.drive_strength[0]))) ? gen_bidir.out : 1'bz)
             -----------------------1-----------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT2,T27,T37

 LINE       93
 SUB-EXPRESSION (gen_bidir.oe && ((!attr_i.drive_strength[0])))
                 ------1-----    --------------2--------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T37

 LINE       95
 EXPRESSION (attr_i.pull_en ? attr_i.pull_select : 1'bz)
             -------1------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

Branch Coverage for Instance : tb.dut.u_padring.gen_mio_pads[43].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
Branches 8 8 100.00
TERNARY 78 2 2 100.00
TERNARY 92 2 2 100.00
TERNARY 93 2 2 100.00
TERNARY 95 2 2 100.00


78 assign in_raw_o = ie ? inout_io : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T20,T21,T22


92 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


93 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T2,T27,T37
0 Covered T1,T2,T3


95 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


Assert Coverage for Instance : tb.dut.u_padring.gen_mio_pads[43].u_mio_pad.gen_generic.u_impl_generic
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 1 1 100.00 1 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 1 1 100.00 1 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
AnalogNoScan_A 1016 1016 0 0


AnalogNoScan_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 1016 1016 0 0
T1 1 1 0 0
T2 1 1 0 0
T3 1 1 0 0
T4 1 1 0 0
T5 1 1 0 0
T6 1 1 0 0
T7 1 1 0 0
T9 1 1 0 0
T25 1 1 0 0
T107 1 1 0 0

Line Coverage for Instance : tb.dut.u_padring.gen_mio_pads[44].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
TOTAL88100.00
CONT_ASSIGN3900
CONT_ASSIGN5111100.00
CONT_ASSIGN7811100.00
CONT_ASSIGN8011100.00
CONT_ASSIGN8411100.00
CONT_ASSIGN8511100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9311100.00
CONT_ASSIGN9511100.00

38 logic unused_sigs; 39 unreachable assign unused_sigs = ^{attr_i.slew_rate, 40 attr_i.drive_strength[3:1], 41 attr_i.od_en, 42 attr_i.schmitt_en, 43 attr_i.keep_en, 44 scanmode_i, 45 pok_i}; 46 //VCS coverage on 47 // pragma coverage on 48 49 // Input enable (active-high) 50 logic ie; 51 1/1 assign ie = ie_i & ~attr_i.input_disable; Tests: T20 T21 T22  52 53 if (PadType == InputStd) begin : gen_input_only 54 //VCS coverage off 55 // pragma coverage off 56 logic unused_in_sigs; 57 assign unused_in_sigs = ^{out_i, 58 oe_i, 59 attr_i.virt_od_en, 60 attr_i.drive_strength}; 61 //VCS coverage on 62 // pragma coverage on 63 64 assign in_raw_o = ie ? inout_io : 1'bz; 65 // input inversion 66 assign in_o = attr_i.invert ^ in_raw_o; 67 68 // pulls are not supported by verilator 69 `ifndef VERILATOR 70 // pullup / pulldown termination 71 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; 72 `endif 73 end else if (PadType == BidirTol || 74 PadType == DualBidirTol || 75 PadType == BidirOd || 76 PadType == BidirStd) begin : gen_bidir 77 78 1/1 assign in_raw_o = ie ? inout_io : 1'bz; Tests: T2 T27 T37  79 // input inversion 80 1/1 assign in_o = attr_i.invert ^ in_raw_o; Tests: T2 T27 T37  81 82 // virtual open drain emulation 83 logic oe, out; 84 1/1 assign out = out_i ^ attr_i.invert; Tests: T27 T37 T42  85 1/1 assign oe = oe_i & ((attr_i.virt_od_en & ~out) | ~attr_i.virt_od_en); Tests: T2 T27 T37  86 87 // drive strength attributes are not supported by verilator 88 `ifdef VERILATOR 89 assign inout_io = (oe) ? out : 1'bz; 90 `else 91 // different driver types 92 1/1 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T37  93 1/1 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T37  94 // pullup / pulldown termination 95 1/1 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; Tests: T20 T21 T22 

Cond Coverage for Instance : tb.dut.u_padring.gen_mio_pads[44].u_mio_pad.gen_generic.u_impl_generic
TotalCoveredPercent
Conditions3333100.00
Logical3333100.00
Non-Logical00
Event00

 LINE       51
 EXPRESSION (ie_i & ((~attr_i.input_disable)))
             --1-   ------------2------------
-1--2-StatusTests
01Unreachable
10CoveredT20,T21,T22
11CoveredT1,T2,T3

 LINE       78
 EXPRESSION (ie ? inout_io : 1'bz)
             -1
-1-StatusTests
0CoveredT20,T21,T22
1CoveredT1,T2,T3

 LINE       80
 EXPRESSION (attr_i.invert ^ in_raw_o)
             ------1------   ----2---
-1--2-StatusTests
00CoveredT2,T27,T37
01CoveredT27,T37,T42
10CoveredT20,T22,T49
11CoveredT20,T21,T22

 LINE       84
 EXPRESSION (out_i ^ attr_i.invert)
             --1--   ------2------
-1--2-StatusTests
00CoveredT1,T2,T3
01CoveredT20,T21,T22
10CoveredT27,T37,T42
11CoveredT20,T21,T22

 LINE       85
 EXPRESSION (oe_i & ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en))))
             --1-   ---------------------------------2---------------------------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T22,T49
11CoveredT2,T27,T37

 LINE       85
 SUB-EXPRESSION ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en)))
                 --------------------1-------------------   -----------2----------
-1--2-StatusTests
00CoveredT20,T21,T22
01CoveredT1,T2,T3
10CoveredT20,T21,T22

 LINE       85
 SUB-EXPRESSION (attr_i.virt_od_en & ((~gen_bidir.out)))
                 --------1--------   ---------2--------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT20,T21,T22

 LINE       92
 EXPRESSION ((gen_bidir.oe && attr_i.drive_strength[0]) ? gen_bidir.out : 1'bz)
             ---------------------1--------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

 LINE       92
 SUB-EXPRESSION (gen_bidir.oe && attr_i.drive_strength[0])
                 ------1-----    ------------2-----------
-1--2-StatusTests
01CoveredT20,T21,T22
10CoveredT2,T27,T37
11CoveredT20,T21,T22

 LINE       93
 EXPRESSION ((gen_bidir.oe && ((!attr_i.drive_strength[0]))) ? gen_bidir.out : 1'bz)
             -----------------------1-----------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT2,T27,T37

 LINE       93
 SUB-EXPRESSION (gen_bidir.oe && ((!attr_i.drive_strength[0])))
                 ------1-----    --------------2--------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T37

 LINE       95
 EXPRESSION (attr_i.pull_en ? attr_i.pull_select : 1'bz)
             -------1------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

Branch Coverage for Instance : tb.dut.u_padring.gen_mio_pads[44].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
Branches 8 8 100.00
TERNARY 78 2 2 100.00
TERNARY 92 2 2 100.00
TERNARY 93 2 2 100.00
TERNARY 95 2 2 100.00


78 assign in_raw_o = ie ? inout_io : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T20,T21,T22


92 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


93 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T2,T27,T37
0 Covered T1,T2,T3


95 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


Assert Coverage for Instance : tb.dut.u_padring.gen_mio_pads[44].u_mio_pad.gen_generic.u_impl_generic
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 1 1 100.00 1 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 1 1 100.00 1 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
AnalogNoScan_A 1016 1016 0 0


AnalogNoScan_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 1016 1016 0 0
T1 1 1 0 0
T2 1 1 0 0
T3 1 1 0 0
T4 1 1 0 0
T5 1 1 0 0
T6 1 1 0 0
T7 1 1 0 0
T9 1 1 0 0
T25 1 1 0 0
T107 1 1 0 0

Line Coverage for Instance : tb.dut.u_padring.gen_mio_pads[45].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
TOTAL88100.00
CONT_ASSIGN3900
CONT_ASSIGN5111100.00
CONT_ASSIGN7811100.00
CONT_ASSIGN8011100.00
CONT_ASSIGN8411100.00
CONT_ASSIGN8511100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9311100.00
CONT_ASSIGN9511100.00

38 logic unused_sigs; 39 unreachable assign unused_sigs = ^{attr_i.slew_rate, 40 attr_i.drive_strength[3:1], 41 attr_i.od_en, 42 attr_i.schmitt_en, 43 attr_i.keep_en, 44 scanmode_i, 45 pok_i}; 46 //VCS coverage on 47 // pragma coverage on 48 49 // Input enable (active-high) 50 logic ie; 51 1/1 assign ie = ie_i & ~attr_i.input_disable; Tests: T20 T21 T22  52 53 if (PadType == InputStd) begin : gen_input_only 54 //VCS coverage off 55 // pragma coverage off 56 logic unused_in_sigs; 57 assign unused_in_sigs = ^{out_i, 58 oe_i, 59 attr_i.virt_od_en, 60 attr_i.drive_strength}; 61 //VCS coverage on 62 // pragma coverage on 63 64 assign in_raw_o = ie ? inout_io : 1'bz; 65 // input inversion 66 assign in_o = attr_i.invert ^ in_raw_o; 67 68 // pulls are not supported by verilator 69 `ifndef VERILATOR 70 // pullup / pulldown termination 71 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; 72 `endif 73 end else if (PadType == BidirTol || 74 PadType == DualBidirTol || 75 PadType == BidirOd || 76 PadType == BidirStd) begin : gen_bidir 77 78 1/1 assign in_raw_o = ie ? inout_io : 1'bz; Tests: T2 T27 T38  79 // input inversion 80 1/1 assign in_o = attr_i.invert ^ in_raw_o; Tests: T2 T27 T38  81 82 // virtual open drain emulation 83 logic oe, out; 84 1/1 assign out = out_i ^ attr_i.invert; Tests: T2 T27 T42  85 1/1 assign oe = oe_i & ((attr_i.virt_od_en & ~out) | ~attr_i.virt_od_en); Tests: T2 T27 T42  86 87 // drive strength attributes are not supported by verilator 88 `ifdef VERILATOR 89 assign inout_io = (oe) ? out : 1'bz; 90 `else 91 // different driver types 92 1/1 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T42  93 1/1 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T42  94 // pullup / pulldown termination 95 1/1 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; Tests: T20 T21 T22 

Cond Coverage for Instance : tb.dut.u_padring.gen_mio_pads[45].u_mio_pad.gen_generic.u_impl_generic
TotalCoveredPercent
Conditions3333100.00
Logical3333100.00
Non-Logical00
Event00

 LINE       51
 EXPRESSION (ie_i & ((~attr_i.input_disable)))
             --1-   ------------2------------
-1--2-StatusTests
01Unreachable
10CoveredT20,T21,T22
11CoveredT1,T2,T3

 LINE       78
 EXPRESSION (ie ? inout_io : 1'bz)
             -1
-1-StatusTests
0CoveredT20,T21,T22
1CoveredT1,T2,T3

 LINE       80
 EXPRESSION (attr_i.invert ^ in_raw_o)
             ------1------   ----2---
-1--2-StatusTests
00CoveredT27,T38,T42
01CoveredT2,T27,T42
10CoveredT20,T21,T22
11CoveredT20,T21,T22

 LINE       84
 EXPRESSION (out_i ^ attr_i.invert)
             --1--   ------2------
-1--2-StatusTests
00CoveredT1,T2,T3
01CoveredT20,T21,T22
10CoveredT2,T27,T42
11CoveredT20,T21,T22

 LINE       85
 EXPRESSION (oe_i & ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en))))
             --1-   ---------------------------------2---------------------------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T42

 LINE       85
 SUB-EXPRESSION ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en)))
                 --------------------1-------------------   -----------2----------
-1--2-StatusTests
00CoveredT20,T21,T22
01CoveredT1,T2,T3
10CoveredT20,T21,T22

 LINE       85
 SUB-EXPRESSION (attr_i.virt_od_en & ((~gen_bidir.out)))
                 --------1--------   ---------2--------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT20,T21,T22

 LINE       92
 EXPRESSION ((gen_bidir.oe && attr_i.drive_strength[0]) ? gen_bidir.out : 1'bz)
             ---------------------1--------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

 LINE       92
 SUB-EXPRESSION (gen_bidir.oe && attr_i.drive_strength[0])
                 ------1-----    ------------2-----------
-1--2-StatusTests
01CoveredT20,T21,T22
10CoveredT2,T27,T42
11CoveredT20,T21,T22

 LINE       93
 EXPRESSION ((gen_bidir.oe && ((!attr_i.drive_strength[0]))) ? gen_bidir.out : 1'bz)
             -----------------------1-----------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT2,T27,T42

 LINE       93
 SUB-EXPRESSION (gen_bidir.oe && ((!attr_i.drive_strength[0])))
                 ------1-----    --------------2--------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T42

 LINE       95
 EXPRESSION (attr_i.pull_en ? attr_i.pull_select : 1'bz)
             -------1------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

Branch Coverage for Instance : tb.dut.u_padring.gen_mio_pads[45].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
Branches 8 8 100.00
TERNARY 78 2 2 100.00
TERNARY 92 2 2 100.00
TERNARY 93 2 2 100.00
TERNARY 95 2 2 100.00


78 assign in_raw_o = ie ? inout_io : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T20,T21,T22


92 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


93 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T2,T27,T42
0 Covered T1,T2,T3


95 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


Assert Coverage for Instance : tb.dut.u_padring.gen_mio_pads[45].u_mio_pad.gen_generic.u_impl_generic
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 1 1 100.00 1 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 1 1 100.00 1 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
AnalogNoScan_A 1016 1016 0 0


AnalogNoScan_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 1016 1016 0 0
T1 1 1 0 0
T2 1 1 0 0
T3 1 1 0 0
T4 1 1 0 0
T5 1 1 0 0
T6 1 1 0 0
T7 1 1 0 0
T9 1 1 0 0
T25 1 1 0 0
T107 1 1 0 0

Line Coverage for Instance : tb.dut.u_padring.gen_mio_pads[46].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
TOTAL88100.00
CONT_ASSIGN3900
CONT_ASSIGN5111100.00
CONT_ASSIGN7811100.00
CONT_ASSIGN8011100.00
CONT_ASSIGN8411100.00
CONT_ASSIGN8511100.00
CONT_ASSIGN9211100.00
CONT_ASSIGN9311100.00
CONT_ASSIGN9511100.00

38 logic unused_sigs; 39 unreachable assign unused_sigs = ^{attr_i.slew_rate, 40 attr_i.drive_strength[3:1], 41 attr_i.od_en, 42 attr_i.schmitt_en, 43 attr_i.keep_en, 44 scanmode_i, 45 pok_i}; 46 //VCS coverage on 47 // pragma coverage on 48 49 // Input enable (active-high) 50 logic ie; 51 1/1 assign ie = ie_i & ~attr_i.input_disable; Tests: T20 T21 T22  52 53 if (PadType == InputStd) begin : gen_input_only 54 //VCS coverage off 55 // pragma coverage off 56 logic unused_in_sigs; 57 assign unused_in_sigs = ^{out_i, 58 oe_i, 59 attr_i.virt_od_en, 60 attr_i.drive_strength}; 61 //VCS coverage on 62 // pragma coverage on 63 64 assign in_raw_o = ie ? inout_io : 1'bz; 65 // input inversion 66 assign in_o = attr_i.invert ^ in_raw_o; 67 68 // pulls are not supported by verilator 69 `ifndef VERILATOR 70 // pullup / pulldown termination 71 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; 72 `endif 73 end else if (PadType == BidirTol || 74 PadType == DualBidirTol || 75 PadType == BidirOd || 76 PadType == BidirStd) begin : gen_bidir 77 78 1/1 assign in_raw_o = ie ? inout_io : 1'bz; Tests: T2 T27 T28  79 // input inversion 80 1/1 assign in_o = attr_i.invert ^ in_raw_o; Tests: T2 T27 T28  81 82 // virtual open drain emulation 83 logic oe, out; 84 1/1 assign out = out_i ^ attr_i.invert; Tests: T27 T37 T42  85 1/1 assign oe = oe_i & ((attr_i.virt_od_en & ~out) | ~attr_i.virt_od_en); Tests: T2 T27 T37  86 87 // drive strength attributes are not supported by verilator 88 `ifdef VERILATOR 89 assign inout_io = (oe) ? out : 1'bz; 90 `else 91 // different driver types 92 1/1 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T37  93 1/1 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; Tests: T2 T27 T37  94 // pullup / pulldown termination 95 1/1 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; Tests: T20 T21 T22 

Cond Coverage for Instance : tb.dut.u_padring.gen_mio_pads[46].u_mio_pad.gen_generic.u_impl_generic
TotalCoveredPercent
Conditions3333100.00
Logical3333100.00
Non-Logical00
Event00

 LINE       51
 EXPRESSION (ie_i & ((~attr_i.input_disable)))
             --1-   ------------2------------
-1--2-StatusTests
01Unreachable
10CoveredT20,T21,T22
11CoveredT1,T2,T3

 LINE       78
 EXPRESSION (ie ? inout_io : 1'bz)
             -1
-1-StatusTests
0CoveredT20,T21,T22
1CoveredT1,T2,T3

 LINE       80
 EXPRESSION (attr_i.invert ^ in_raw_o)
             ------1------   ----2---
-1--2-StatusTests
00CoveredT2,T27,T28
01CoveredT27,T28,T13
10CoveredT20,T21,T22
11CoveredT20,T21,T22

 LINE       84
 EXPRESSION (out_i ^ attr_i.invert)
             --1--   ------2------
-1--2-StatusTests
00CoveredT1,T2,T3
01CoveredT20,T21,T22
10CoveredT27,T37,T42
11CoveredT20,T21,T22

 LINE       85
 EXPRESSION (oe_i & ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en))))
             --1-   ---------------------------------2---------------------------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T37

 LINE       85
 SUB-EXPRESSION ((attr_i.virt_od_en & ((~gen_bidir.out))) | ((~attr_i.virt_od_en)))
                 --------------------1-------------------   -----------2----------
-1--2-StatusTests
00CoveredT20,T21,T22
01CoveredT1,T2,T3
10CoveredT20,T21,T22

 LINE       85
 SUB-EXPRESSION (attr_i.virt_od_en & ((~gen_bidir.out)))
                 --------1--------   ---------2--------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT20,T21,T22

 LINE       92
 EXPRESSION ((gen_bidir.oe && attr_i.drive_strength[0]) ? gen_bidir.out : 1'bz)
             ---------------------1--------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

 LINE       92
 SUB-EXPRESSION (gen_bidir.oe && attr_i.drive_strength[0])
                 ------1-----    ------------2-----------
-1--2-StatusTests
01CoveredT20,T21,T22
10CoveredT2,T27,T37
11CoveredT20,T21,T22

 LINE       93
 EXPRESSION ((gen_bidir.oe && ((!attr_i.drive_strength[0]))) ? gen_bidir.out : 1'bz)
             -----------------------1-----------------------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT2,T27,T37

 LINE       93
 SUB-EXPRESSION (gen_bidir.oe && ((!attr_i.drive_strength[0])))
                 ------1-----    --------------2--------------
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT20,T21,T22
11CoveredT2,T27,T37

 LINE       95
 EXPRESSION (attr_i.pull_en ? attr_i.pull_select : 1'bz)
             -------1------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT20,T21,T22

Branch Coverage for Instance : tb.dut.u_padring.gen_mio_pads[46].u_mio_pad.gen_generic.u_impl_generic
Line No.TotalCoveredPercent
Branches 8 8 100.00
TERNARY 78 2 2 100.00
TERNARY 92 2 2 100.00
TERNARY 93 2 2 100.00
TERNARY 95 2 2 100.00


78 assign in_raw_o = ie ? inout_io : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T1,T2,T3
0 Covered T20,T21,T22


92 assign (strong0, strong1) inout_io = (oe && attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


93 assign (pull0, pull1) inout_io = (oe && !attr_i.drive_strength[0]) ? out : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T2,T27,T37
0 Covered T1,T2,T3


95 assign (weak0, weak1) inout_io = attr_i.pull_en ? attr_i.pull_select : 1'bz; -1- ==> ==>

Branches:
-1-StatusTests
1 Covered T20,T21,T22
0 Covered T1,T2,T3


Assert Coverage for Instance : tb.dut.u_padring.gen_mio_pads[46].u_mio_pad.gen_generic.u_impl_generic
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 1 1 100.00 1 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 1 1 100.00 1 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
AnalogNoScan_A 1016 1016 0 0


AnalogNoScan_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 1016 1016 0 0
T1 1 1 0 0
T2 1 1 0 0
T3 1 1 0 0
T4 1 1 0 0
T5 1 1 0 0
T6 1 1 0 0
T7 1 1 0 0
T9 1 1 0 0
T25 1 1 0 0
T107 1 1 0 0

0% 10% 20% 30% 40% 50% 60% 70% 80% 90% 100%