Module Definition
dashboard | hierarchy | modlist | groups | tests | asserts

Module : prim_packer
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.50 100.00 100.00 90.00 100.00

Source File(s) :
/workspaces/repo/scratch/os_regression_2024_08_28/kmac_unmasked-sim-vcs/default/sim-vcs/../src/lowrisc_prim_all_0.1/rtl/prim_packer.sv

Module self-instances :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
tb.dut.u_msgfifo.u_packer 97.50 100.00 100.00 90.00 100.00



Module Instance : tb.dut.u_msgfifo.u_packer

Instance :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.50 100.00 100.00 90.00 100.00


Instance's subtree :
SCORELINECONDTOGGLEFSMBRANCHASSERT
97.50 100.00 100.00 90.00 100.00


Parent :
SCORELINECONDTOGGLEFSMBRANCHASSERTNAME
97.92 100.00 100.00 91.67 100.00 u_msgfifo


Subtrees :
NAMESCORELINECONDTOGGLEFSMBRANCHASSERT
no children


Since this is the module's only instance, the coverage report is the same as for the module.
Line Coverage for Module : prim_packer
Line No.TotalCoveredPercent
TOTAL6666100.00
ALWAYS6533100.00
CONT_ASSIGN7211100.00
ALWAYS7866100.00
ALWAYS9055100.00
ALWAYS15744100.00
CONT_ASSIGN16511100.00
CONT_ASSIGN16611100.00
CONT_ASSIGN17011100.00
CONT_ASSIGN17111100.00
CONT_ASSIGN17411100.00
CONT_ASSIGN17511100.00
CONT_ASSIGN17811100.00
CONT_ASSIGN18011100.00
ALWAYS18599100.00
ALWAYS21488100.00
ALWAYS23533100.00
ALWAYS2431414100.00
CONT_ASSIGN27911100.00
CONT_ASSIGN28311100.00
CONT_ASSIGN29100
CONT_ASSIGN29411100.00
CONT_ASSIGN29511100.00
CONT_ASSIGN29611100.00
CONT_ASSIGN29900

64 // counting mask_i ones 65 1/1 inmask_ones = '0; Tests: T1 T2 T3  66 1/1 for (int i = 0 ; i < InW ; i++) begin Tests: T1 T2 T3  67 1/1 inmask_ones = inmask_ones + OnesCntW'(mask_i[i]); Tests: T1 T2 T3  68 end 69 end 70 71 logic [PtrW-1:0] pos_with_input; 72 1/1 assign pos_with_input = pos_q + PtrW'(inmask_ones); Tests: T1 T2 T3  73 74 if (EnProtection == 1'b 0) begin : g_pos_nodup 75 logic [PtrW-1:0] pos_d; 76 77 always_comb begin 78 1/1 pos_d = pos_q; Tests: T1 T2 T3  79 80 1/1 unique case ({ack_in, ack_out}) Tests: T1 T2 T3  81 1/1 2'b00: pos_d = pos_q; Tests: T1 T2 T3  82 1/1 2'b01: pos_d = (int'(pos_q) <= OutW) ? '0 : pos_q - PtrW'(OutW); Tests: T1 T2 T3  83 1/1 2'b10: pos_d = pos_with_input; Tests: T1 T2 T3  84 1/1 2'b11: pos_d = (int'(pos_with_input) <= OutW) ? '0 : pos_with_input - PtrW'(OutW); Tests: T3 T5 T21  85 default: pos_d = pos_q; 86 endcase 87 end 88 89 always_ff @(posedge clk_i or negedge rst_ni) begin 90 1/1 if (!rst_ni) begin Tests: T1 T2 T3  91 1/1 pos_q <= '0; Tests: T1 T2 T3  92 1/1 end else if (flush_done) begin Tests: T1 T2 T3  93 1/1 pos_q <= '0; Tests: T1 T2 T4  94 end else begin 95 1/1 pos_q <= pos_d; Tests: T1 T2 T3  96 end 97 end 98 99 assign err_o = 1'b 0; // No checker logic 100 101 end else begin : g_pos_dupcnt // EnProtection == 1'b 1 102 // incr_en: Increase the pos by cnt_step. ack_in && !ack_out 103 // decr_en: Decrease the pos by cnt_step. !ack_in && ack_out 104 // set_en: Set to specific value in case of ack_in && ack_out. 105 // This case, the value could be increased or descreased based on 106 // the input size (inmask_ones) 107 logic cnt_incr_en, cnt_decr_en, cnt_set_en; 108 logic [PtrW-1:0] cnt_step, cnt_set; 109 110 assign cnt_incr_en = ack_in && !ack_out; 111 assign cnt_decr_en = !ack_in && ack_out; 112 assign cnt_set_en = ack_in && ack_out; 113 114 // counter has underflow protection. 115 assign cnt_step = (cnt_incr_en) ? PtrW'(inmask_ones) : PtrW'(OutW); 116 117 always_comb begin : cnt_set_logic 118 119 // default, consuming all data 120 cnt_set = '0; 121 122 if (pos_with_input > PtrW'(OutW)) begin 123 // pos_q + inmask_ones is bigger than Output width. Still data remained. 124 cnt_set = pos_with_input - PtrW'(OutW); 125 end 126 end : cnt_set_logic 127 128 129 prim_count #( 130 .Width (PtrW), 131 .ResetValue ('0 ) 132 ) u_pos ( 133 .clk_i, 134 .rst_ni, 135 136 .clr_i (flush_done), 137 138 .set_i (cnt_set_en), 139 .set_cnt_i (cnt_set ), 140 141 .incr_en_i (cnt_incr_en), 142 .decr_en_i (cnt_decr_en), 143 .step_i (cnt_step ), 144 .commit_i (1'b1 ), 145 146 .cnt_o (pos_q ), // Current counter state 147 .cnt_after_commit_o ( ), // Next counter state 148 149 .err_o 150 ); 151 end // g_pos_dupcnt 152 153 //--------------------------------------------------------------------------- 154 155 // Leading one detector for mask_i 156 always_comb begin 157 1/1 lod_idx = 0; Tests: T1 T2 T3  158 1/1 for (int i = InW-1; i >= 0 ; i--) begin Tests: T1 T2 T3  159 1/1 if (mask_i[i] == 1'b1) begin Tests: T1 T2 T3  160 1/1 lod_idx = IdxW'(unsigned'(i)); Tests: T1 T2 T3  161 end MISSING_ELSE 162 end 163 end 164 165 1/1 assign ack_in = valid_i & ready_o; Tests: T1 T2 T3  166 1/1 assign ack_out = valid_o & ready_i; Tests: T1 T2 T3  167 168 // Data process ============================================================= 169 // shiftr : Input data shifted right to put the leading one at bit zero 170 1/1 assign shiftr_data = (valid_i) ? data_i >> lod_idx : '0; Tests: T1 T2 T3  171 1/1 assign shiftr_mask = (valid_i) ? mask_i >> lod_idx : '0; Tests: T1 T2 T3  172 173 // shiftl : Input data shifted into the current stored position 174 1/1 assign shiftl_data = ConcatW'(shiftr_data) << pos_q; Tests: T1 T2 T3  175 1/1 assign shiftl_mask = ConcatW'(shiftr_mask) << pos_q; Tests: T1 T2 T3  176 177 // concat : Merging stored and shiftl 178 1/1 assign concat_data = {{(InW){1'b0}}, stored_data & stored_mask} | Tests: T1 T2 T3  179 (shiftl_data & shiftl_mask); 180 1/1 assign concat_mask = {{(InW){1'b0}}, stored_mask} | shiftl_mask; Tests: T1 T2 T3  181 182 logic [Width-1:0] stored_data_next, stored_mask_next; 183 184 always_comb begin 185 1/1 unique case ({ack_in, ack_out}) Tests: T1 T2 T3  186 2'b 00: begin 187 1/1 stored_data_next = stored_data; Tests: T1 T2 T3  188 1/1 stored_mask_next = stored_mask; Tests: T1 T2 T3  189 end 190 2'b 01: begin 191 // ack_out : shift the amount of OutW 192 1/1 stored_data_next = {{OutW{1'b0}}, stored_data[Width-1:OutW]}; Tests: T1 T2 T3  193 1/1 stored_mask_next = {{OutW{1'b0}}, stored_mask[Width-1:OutW]}; Tests: T1 T2 T3  194 end 195 2'b 10: begin 196 // ack_in : Store concat data 197 1/1 stored_data_next = concat_data[0+:Width]; Tests: T1 T2 T3  198 1/1 stored_mask_next = concat_mask[0+:Width]; Tests: T1 T2 T3  199 end 200 2'b 11: begin 201 // both : shift the concat_data 202 1/1 stored_data_next = concat_data[ConcatW-1:OutW]; Tests: T3 T5 T21  203 1/1 stored_mask_next = concat_mask[ConcatW-1:OutW]; Tests: T3 T5 T21  204 end 205 default: begin 206 stored_data_next = stored_data; 207 stored_mask_next = stored_mask; 208 end 209 endcase 210 end 211 212 // Store the data temporary if it doesn't exceed OutW 213 always_ff @(posedge clk_i or negedge rst_ni) begin 214 1/1 if (!rst_ni) begin Tests: T1 T2 T3  215 1/1 stored_data <= '0; Tests: T1 T2 T3  216 1/1 stored_mask <= '0; Tests: T1 T2 T3  217 1/1 end else if (flush_done) begin Tests: T1 T2 T3  218 1/1 stored_data <= '0; Tests: T1 T2 T4  219 1/1 stored_mask <= '0; Tests: T1 T2 T4  220 end else begin 221 1/1 stored_data <= stored_data_next; Tests: T1 T2 T3  222 1/1 stored_mask <= stored_mask_next; Tests: T1 T2 T3  223 end 224 end 225 //--------------------------------------------------------------------------- 226 227 // flush handling 228 typedef enum logic { 229 FlushIdle, 230 FlushSend 231 } flush_st_e; 232 flush_st_e flush_st, flush_st_next; 233 234 always_ff @(posedge clk_i or negedge rst_ni) begin 235 1/1 if (!rst_ni) begin Tests: T1 T2 T3  236 1/1 flush_st <= FlushIdle; Tests: T1 T2 T3  237 end else begin 238 1/1 flush_st <= flush_st_next; Tests: T1 T2 T3  239 end 240 end 241 242 always_comb begin 243 1/1 flush_st_next = FlushIdle; Tests: T1 T2 T3  244 245 1/1 flush_valid = 1'b0; Tests: T1 T2 T3  246 1/1 flush_done = 1'b0; Tests: T1 T2 T3  247 248 1/1 unique case (flush_st) Tests: T1 T2 T3  249 FlushIdle: begin 250 1/1 if (flush_i) begin Tests: T1 T2 T3  251 1/1 flush_st_next = FlushSend; Tests: T1 T2 T4  252 end else begin 253 1/1 flush_st_next = FlushIdle; Tests: T1 T2 T3  254 end 255 end 256 257 FlushSend: begin 258 1/1 if (pos_q == '0) begin Tests: T1 T2 T4  259 1/1 flush_st_next = FlushIdle; Tests: T1 T2 T4  260 261 1/1 flush_valid = 1'b 0; Tests: T1 T2 T4  262 1/1 flush_done = 1'b 1; Tests: T1 T2 T4  263 end else begin 264 1/1 flush_st_next = FlushSend; Tests: T1 T2 T12  265 266 1/1 flush_valid = 1'b 1; Tests: T1 T2 T12  267 1/1 flush_done = 1'b 0; Tests: T1 T2 T12  268 end 269 end 270 default: begin 271 flush_st_next = FlushIdle; 272 273 flush_valid = 1'b 0; 274 flush_done = 1'b 0; 275 end 276 endcase 277 end 278 279 1/1 assign flush_done_o = flush_done; Tests: T1 T2 T3  280 281 282 // Output signals =========================================================== 283 1/1 assign valid_next = (int'(pos_q) >= OutW) ? 1'b 1 : flush_valid; Tests: T1 T2 T3  284 285 // storage space is InW + OutW. So technically, ready_o can be asserted even 286 // if `pos_q` is greater than OutW. But in order to do that, the logic should 287 // use `inmask_ones` value whether pos_q+inmask_ones is less than (InW+OutW) 288 // with `valid_i`. It creates a path from `valid_i` --> `ready_o`. 289 // It may create a timing loop in some modules that use `ready_o` to 290 // `valid_i` (which is not a good practice though) 291 unreachable assign ready_next = int'(pos_q) <= OutW; 292 293 // Output request 294 1/1 assign valid_o = valid_next; Tests: T1 T2 T3  295 1/1 assign data_o = stored_data[OutW-1:0]; Tests: T1 T2 T3  296 1/1 assign mask_o = stored_mask[OutW-1:0]; Tests: T1 T2 T3  297 298 // ready_o 299 unreachable assign ready_o = ready_next;

Cond Coverage for Module : prim_packer
TotalCoveredPercent
Conditions1616100.00
Logical1616100.00
Non-Logical00
Event00

 LINE       82
 EXPRESSION ((int'(pos_q) <= OutW) ? '0 : ((pos_q - 8'(OutW))))
             ----------1----------
-1-StatusTests
0UnreachableT1,T2,T12
1CoveredT1,T2,T3

 LINE       84
 EXPRESSION ((int'(pos_with_input) <= OutW) ? '0 : ((pos_with_input - 8'(OutW))))
             ---------------1--------------
-1-StatusTests
0UnreachableT3,T5,T21
1CoveredT26,T64,T117

 LINE       159
 EXPRESSION (mask_i[i] == 1'b1)
            ---------1---------
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT1,T2,T3

 LINE       165
 EXPRESSION (valid_i & ready_o)
             ---1---   ---2---
-1--2-StatusTests
01CoveredT1,T2,T3
10UnreachableT24,T25,T26
11CoveredT1,T2,T3

 LINE       166
 EXPRESSION (valid_o & ready_i)
             ---1---   ---2---
-1--2-StatusTests
01CoveredT1,T2,T3
10CoveredT24,T25,T26
11CoveredT1,T2,T3

 LINE       170
 EXPRESSION (valid_i ? ((data_i >> lod_idx)) : '0)
             ---1---
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT1,T2,T3

 LINE       171
 EXPRESSION (valid_i ? ((mask_i >> lod_idx)) : '0)
             ---1---
-1-StatusTests
0CoveredT1,T2,T3
1CoveredT1,T2,T3

 LINE       258
 EXPRESSION (pos_q == '0)
            ------1------
-1-StatusTests
0CoveredT1,T2,T12
1CoveredT1,T2,T4

 LINE       283
 EXPRESSION ((int'(pos_q) >= OutW) ? 1'b1 : flush_valid)
             ----------1----------
-1-StatusTests
0CoveredT1,T2,T3
1UnreachableT1,T2,T3

Branch Coverage for Module : prim_packer
Line No.TotalCoveredPercent
Branches 30 27 90.00
TERNARY 170 2 2 100.00
TERNARY 171 2 2 100.00
TERNARY 283 1 1 100.00
IF 159 2 2 100.00
CASE 185 5 4 80.00
IF 214 3 3 100.00
IF 235 2 2 100.00
CASE 248 5 4 80.00
CASE 80 5 4 80.00
IF 90 3 3 100.00


170 assign shiftr_data = (valid_i) ? data_i >> lod_idx : '0; -1- ==> ==>

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


171 assign shiftr_mask = (valid_i) ? mask_i >> lod_idx : '0; -1- ==> ==>

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


283 assign valid_next = (int'(pos_q) >= OutW) ? 1'b 1 : flush_valid; -1- ==> (Unreachable) ==>

Branches:
-1-StatusTests
1 Unreachable T1,T2,T3
0 Covered T1,T2,T3


159 if (mask_i[i] == 1'b1) begin -1- 160 lod_idx = IdxW'(unsigned'(i)); ==> 161 end MISSING_ELSE ==>

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


185 unique case ({ack_in, ack_out}) -1- 186 2'b 00: begin 187 stored_data_next = stored_data; ==> 188 stored_mask_next = stored_mask; 189 end 190 2'b 01: begin 191 // ack_out : shift the amount of OutW 192 stored_data_next = {{OutW{1'b0}}, stored_data[Width-1:OutW]}; ==> 193 stored_mask_next = {{OutW{1'b0}}, stored_mask[Width-1:OutW]}; 194 end 195 2'b 10: begin 196 // ack_in : Store concat data 197 stored_data_next = concat_data[0+:Width]; ==> 198 stored_mask_next = concat_mask[0+:Width]; 199 end 200 2'b 11: begin 201 // both : shift the concat_data 202 stored_data_next = concat_data[ConcatW-1:OutW]; ==> 203 stored_mask_next = concat_mask[ConcatW-1:OutW]; 204 end 205 default: begin 206 stored_data_next = stored_data; ==>

Branches:
-1-StatusTests
2'b00 Covered T1,T2,T3
2'b01 Covered T1,T2,T3
2'b10 Covered T1,T2,T3
2'b11 Covered T3,T5,T21
default Not Covered


214 if (!rst_ni) begin -1- 215 stored_data <= '0; ==> 216 stored_mask <= '0; 217 end else if (flush_done) begin -2- 218 stored_data <= '0; ==> 219 stored_mask <= '0; 220 end else begin 221 stored_data <= stored_data_next; ==>

Branches:
-1--2-StatusTests
1 - Covered T1,T2,T3
0 1 Covered T1,T2,T4
0 0 Covered T1,T2,T3


235 if (!rst_ni) begin -1- 236 flush_st <= FlushIdle; ==> 237 end else begin 238 flush_st <= flush_st_next; ==>

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


248 unique case (flush_st) -1- 249 FlushIdle: begin 250 if (flush_i) begin -2- 251 flush_st_next = FlushSend; ==> 252 end else begin 253 flush_st_next = FlushIdle; ==> 254 end 255 end 256 257 FlushSend: begin 258 if (pos_q == '0) begin -3- 259 flush_st_next = FlushIdle; ==> 260 261 flush_valid = 1'b 0; 262 flush_done = 1'b 1; 263 end else begin 264 flush_st_next = FlushSend; ==> 265 266 flush_valid = 1'b 1; 267 flush_done = 1'b 0; 268 end 269 end 270 default: begin 271 flush_st_next = FlushIdle; ==>

Branches:
-1--2--3-StatusTests
FlushIdle 1 - Covered T1,T2,T4
FlushIdle 0 - Covered T1,T2,T3
FlushSend - 1 Covered T1,T2,T4
FlushSend - 0 Covered T1,T2,T12
default - - Not Covered


80 unique case ({ack_in, ack_out}) -1- 81 2'b00: pos_d = pos_q; ==> 82 2'b01: pos_d = (int'(pos_q) <= OutW) ? '0 : pos_q - PtrW'(OutW); -2- ==> ==> (Unreachable) 83 2'b10: pos_d = pos_with_input; ==> 84 2'b11: pos_d = (int'(pos_with_input) <= OutW) ? '0 : pos_with_input - PtrW'(OutW); -3- ==> ==> (Unreachable) 85 default: pos_d = pos_q; ==>

Branches:
-1--2--3-StatusTests
2'b00 - - Covered T1,T2,T3
2'b01 1 - Covered T1,T2,T3
2'b01 0 - Unreachable T1,T2,T12
2'b10 - - Covered T1,T2,T3
2'b11 - 1 Covered T26,T64,T117
2'b11 - 0 Unreachable T3,T5,T21
default - - Not Covered


90 if (!rst_ni) begin -1- 91 pos_q <= '0; ==> 92 end else if (flush_done) begin -2- 93 pos_q <= '0; ==> 94 end else begin 95 pos_q <= pos_d; ==>

Branches:
-1--2-StatusTests
1 - Covered T1,T2,T3
0 1 Covered T1,T2,T4
0 0 Covered T1,T2,T3


Assert Coverage for Module : prim_packer
TotalAttemptedPercentSucceeded/MatchedPercent
Assertions 28 28 100.00 28 100.00
Cover properties 0 0 0
Cover sequences 0 0 0
Total 28 28 100.00 28 100.00




Assertion Details

NameAttemptsReal SuccessesFailuresIncomplete
DataIStable_M 570654578 131117 0 663
DataOStableWhenPending_A 570654578 115591 0 663
ExFlushValid_M 570654578 57963 0 0
ExcessiveDataStored_A 570654578 57664 0 0
ExcessiveMaskStored_A 570654578 57664 0 0
FlushFollowedByDone_A 570654578 57963 0 663
ValidIDeassertedOnFlush_M 570654578 105081 0 0
ValidOAssertedForStoredDataGTEOutW_A 570654578 10727458 0 0
ValidOPairedWidthReadyI_A 570654578 115591 0 0
g_byte_assert.InputDividedBy8_A 663 663 0 0
g_byte_assert.OutputDividedBy8_A 663 663 0 0
g_byte_assert.g_byte_input_masking[0].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[1].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[2].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[3].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[4].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[5].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[6].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_input_masking[7].InputMaskContiguous_A 570654578 23307074 0 0
g_byte_assert.g_byte_output_masking[0].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[1].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[2].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[3].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[4].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[5].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[6].OutputMaskContiguous_A 570654578 10772688 0 0
g_byte_assert.g_byte_output_masking[7].OutputMaskContiguous_A 570654578 10772688 0 0
gen_mask_assert.ContiguousOnesMask_M 570654578 23307074 0 0


DataIStable_M
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 131117 0 663
T10 492639 0 0 1
T11 151208 0 0 1
T24 189367 15992 0 1
T25 74950 180 0 1
T26 447827 268 0 1
T27 0 3 0 0
T33 0 434 0 0
T43 0 418 0 0
T50 90945 0 0 1
T64 0 420 0 0
T90 2715 0 0 1
T91 2296 0 0 1
T92 40228 0 0 1
T93 156284 0 0 1
T116 0 9 0 0
T118 0 37 0 0
T119 0 11956 0 0

DataOStableWhenPending_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 115591 0 663
T10 492639 0 0 1
T11 151208 0 0 1
T24 189367 16506 0 1
T25 74950 180 0 1
T26 447827 61 0 1
T33 0 434 0 0
T43 0 444 0 0
T48 0 89 0 0
T50 90945 0 0 1
T64 0 212 0 0
T90 2715 0 0 1
T91 2296 0 0 1
T92 40228 0 0 1
T93 156284 0 0 1
T118 0 37 0 0
T119 0 12386 0 0
T120 0 49 0 0

ExFlushValid_M
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 57963 0 0
T1 2409 3 0 0
T2 2815 3 0 0
T3 3648 0 0 0
T4 30690 4 0 0
T5 3717 0 0 0
T12 7564 3 0 0
T13 3385 3 0 0
T14 73090 73 0 0
T15 4569 1 0 0
T16 0 137 0 0
T17 0 6 0 0
T18 0 73 0 0
T19 1206 0 0 0

ExcessiveDataStored_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 57664 0 0
T9 3905 0 0 0
T21 587142 83 0 0
T22 147834 0 0 0
T24 0 7682 0 0
T25 0 78 0 0
T26 0 86 0 0
T27 0 1 0 0
T32 96286 0 0 0
T41 0 6 0 0
T42 0 1 0 0
T43 0 257 0 0
T52 17767 0 0 0
T64 0 70 0 0
T82 163725 0 0 0
T83 27107 0 0 0
T94 5793 0 0 0
T118 0 19 0 0
T121 272142 0 0 0
T122 214723 0 0 0

ExcessiveMaskStored_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 57664 0 0
T9 3905 0 0 0
T21 587142 83 0 0
T22 147834 0 0 0
T24 0 7682 0 0
T25 0 78 0 0
T26 0 86 0 0
T27 0 1 0 0
T32 96286 0 0 0
T41 0 6 0 0
T42 0 1 0 0
T43 0 257 0 0
T52 17767 0 0 0
T64 0 70 0 0
T82 163725 0 0 0
T83 27107 0 0 0
T94 5793 0 0 0
T118 0 19 0 0
T121 272142 0 0 0
T122 214723 0 0 0

FlushFollowedByDone_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 57963 0 663
T1 2409 3 0 1
T2 2815 3 0 1
T3 3648 0 0 1
T4 30690 4 0 1
T5 3717 0 0 1
T12 7564 3 0 1
T13 3385 3 0 1
T14 73090 73 0 1
T15 4569 1 0 1
T16 0 137 0 0
T17 0 6 0 0
T18 0 73 0 0
T19 1206 0 0 1

ValidIDeassertedOnFlush_M
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 105081 0 0
T1 2409 6 0 0
T2 2815 6 0 0
T3 3648 0 0 0
T4 30690 4 0 0
T5 3717 0 0 0
T12 7564 6 0 0
T13 3385 6 0 0
T14 73090 136 0 0
T15 4569 2 0 0
T16 0 256 0 0
T17 0 6 0 0
T18 0 136 0 0
T19 1206 0 0 0

ValidOAssertedForStoredDataGTEOutW_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10727458 0 0
T1 2409 25 0 0
T2 2815 50 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 50 0 0
T13 3385 50 0 0
T14 73090 297 0 0
T15 4569 0 0 0
T16 0 1105 0 0
T18 0 297 0 0
T19 1206 0 0 0
T95 0 637 0 0

ValidOPairedWidthReadyI_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 115591 0 0
T10 492639 0 0 0
T11 151208 0 0 0
T24 189367 16506 0 0
T25 74950 180 0 0
T26 447827 61 0 0
T33 0 434 0 0
T43 0 444 0 0
T48 0 89 0 0
T50 90945 0 0 0
T64 0 212 0 0
T90 2715 0 0 0
T91 2296 0 0 0
T92 40228 0 0 0
T93 156284 0 0 0
T118 0 37 0 0
T119 0 12386 0 0
T120 0 49 0 0

g_byte_assert.InputDividedBy8_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 663 663 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
T12 1 1 0 0
T13 1 1 0 0
T14 1 1 0 0
T15 1 1 0 0
T19 1 1 0 0

g_byte_assert.OutputDividedBy8_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 663 663 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
T12 1 1 0 0
T13 1 1 0 0
T14 1 1 0 0
T15 1 1 0 0
T19 1 1 0 0

g_byte_assert.g_byte_input_masking[0].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[1].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[2].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[3].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[4].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[5].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[6].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_input_masking[7].InputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[0].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[1].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[2].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[3].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[4].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[5].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[6].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

g_byte_assert.g_byte_output_masking[7].OutputMaskContiguous_A
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 10772688 0 0
T1 2409 28 0 0
T2 2815 53 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 53 0 0
T13 3385 53 0 0
T14 73090 360 0 0
T15 4569 1 0 0
T16 0 1224 0 0
T18 0 360 0 0
T19 1206 0 0 0

gen_mask_assert.ContiguousOnesMask_M
NameAttemptsReal SuccessesFailuresIncomplete
Total 570654578 23307074 0 0
T1 2409 77 0 0
T2 2815 124 0 0
T3 3648 5 0 0
T4 30690 0 0 0
T5 3717 2 0 0
T12 7564 120 0 0
T13 3385 125 0 0
T14 73090 767 0 0
T15 4569 3 0 0
T16 0 2739 0 0
T18 0 825 0 0
T19 1206 0 0 0

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