Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions jingle/src/modeling/machine/cpu/concrete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ impl From<PcodeMachineAddress> for ConcretePcodeAddress {
}
}

impl From<&PcodeMachineAddress> for ConcretePcodeAddress {
fn from(value: &PcodeMachineAddress) -> Self {
Self {
machine: *value,
pcode: 0,
}
}
}
/// Simple in-function transition handling, transitioning from one address to the
/// next per uninterpreted/unanalyzed pcode. The implementation is used for
/// the initial exploration of a CFG. The analyses built around this have
Expand Down