Narrow event trigger bridge to nondirect framing
This commit is contained in:
parent
dc620a6714
commit
bf97363fca
2 changed files with 17 additions and 0 deletions
|
|
@ -9546,6 +9546,11 @@ fn parse_event_runtime_collection_summary_with_tag_width(
|
|||
"decoded grouped rows already reach the 0x00431b20 dispatch strip in this collection even though the current inspection surface recovered no trigger/control kind bytes for those records"
|
||||
.to_string(),
|
||||
);
|
||||
if nondirect_compact_record_count == records.len() {
|
||||
control_lane_notes.push(
|
||||
"every currently decoded dispatch-strip row in this collection still sits in the nondirect compact 0x4e99/0x4e9a/0x4e9b family with null [event+0x7ef], so the direct full-record 0x4e21/0x4e22 framing path is not currently bridging trigger-kind control bytes for these mutation-capable rows".to_string(),
|
||||
);
|
||||
}
|
||||
}
|
||||
control_lane_notes.push(format!(
|
||||
"0x00431b20 dispatch-strip opcodes present in decoded grouped rows = {:?}",
|
||||
|
|
@ -22335,6 +22340,11 @@ mod tests {
|
|||
assert!(summary.control_lane_notes.iter().any(|line| {
|
||||
line.contains("decoded grouped rows already reach the 0x00431b20 dispatch strip")
|
||||
}));
|
||||
assert!(summary.control_lane_notes.iter().any(|line| {
|
||||
line.contains("every currently decoded dispatch-strip row")
|
||||
&& line.contains("0x4e99/0x4e9a/0x4e9b")
|
||||
&& line.contains("0x4e21/0x4e22")
|
||||
}));
|
||||
assert!(
|
||||
summary
|
||||
.control_lane_notes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue