summaryrefslogtreecommitdiff
path: root/rust/src/relocation.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-10 19:24:35 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit7e32ee8b629e3e4f8d061cbe0729ff961b3502d7 (patch)
treeb33eedcd9afb5422aefd1a42e95f4a9ab2e7cca0 /rust/src/relocation.rs
parent4180c31fda63b6ccb9ce4ee543031fe4a5060d5f (diff)
[Rust] Remove `NonSSAVariant` bound from `LowLevelILFunction`
We don't do enough with the lifted il != non lifted il to justify the bound. This makes modifying IL much less work as the historical lifted il bound is gone.
Diffstat (limited to 'rust/src/relocation.rs')
-rw-r--r--rust/src/relocation.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/rust/src/relocation.rs b/rust/src/relocation.rs
index 2b24279b..a4f9667e 100644
--- a/rust/src/relocation.rs
+++ b/rust/src/relocation.rs
@@ -1,4 +1,4 @@
-use crate::low_level_il::RegularLowLevelILFunction;
+use crate::low_level_il::LowLevelILRegularFunction;
use crate::rc::Guard;
use crate::string::IntoCStr;
use crate::{
@@ -265,7 +265,7 @@ pub trait RelocationHandler: 'static + Sized + AsRef<CoreRelocationHandler> {
_data: &[u8],
_addr: u64,
// TODO: Are we sure this is not a liftedilfunction?
- _il: &RegularLowLevelILFunction,
+ _il: &LowLevelILRegularFunction,
_reloc: &Relocation,
) -> RelocationOperand {
RelocationOperand::AutocoerceExternPtr
@@ -363,7 +363,7 @@ impl RelocationHandler for CoreRelocationHandler {
&self,
data: &[u8],
addr: u64,
- il: &RegularLowLevelILFunction,
+ il: &LowLevelILRegularFunction,
reloc: &Relocation,
) -> RelocationOperand {
unsafe {
@@ -495,7 +495,7 @@ where
return RelocationOperand::Invalid.into();
}
let arch = unsafe { CoreArchitecture::from_raw(arch) };
- let il = unsafe { RegularLowLevelILFunction::from_raw_with_arch(il, Some(arch)) };
+ let il = unsafe { LowLevelILRegularFunction::from_raw_with_arch(il, Some(arch)) };
custom_handler
.get_operand_for_external_relocation(data, addr, &il, &reloc)