Trace compact event opcode-8 deactivation branch

This commit is contained in:
Jan Petykiewicz 2026-04-19 01:10:11 -07:00
commit d18bab9833
2 changed files with 26 additions and 0 deletions

View file

@ -9452,6 +9452,18 @@ fn parse_event_runtime_collection_summary_with_tag_width(
.collect::<Vec<_>>();
mutation_candidate_opcodes.sort_unstable();
mutation_candidate_opcodes.dedup();
let mut opcode_0x08_record_indexes = records
.iter()
.filter(|record| {
record
.grouped_effect_rows
.iter()
.any(|row| row.opcode == 0x08)
})
.map(|record| record.record_index)
.collect::<Vec<_>>();
opcode_0x08_record_indexes.sort_unstable();
opcode_0x08_record_indexes.dedup();
let mut mutation_candidate_descriptor_labels = records
.iter()
.flat_map(|record| record.grouped_effect_rows.iter())
@ -9508,6 +9520,15 @@ fn parse_event_runtime_collection_summary_with_tag_width(
mutation_candidate_unknown_descriptor_ids
));
}
if !opcode_0x08_record_indexes.is_empty() {
control_lane_notes.push(format!(
"records with opcode 0x08 in the 0x00431b20 dispatch strip = {:?}",
opcode_0x08_record_indexes
));
control_lane_notes.push(
"checked-in function-map evidence currently grounds opcode 0x08 on the 0x00426d60 company_deactivate_and_clear_chairman_share_links branch".to_string(),
);
}
}
return Some(SmpLoadedEventRuntimeCollectionSummary {