aya: improve call relocation error messages

pull/1/head
Alessandro Decina 3 years ago
parent 20b2d4c77d
commit b92b1e18a9

@ -28,8 +28,8 @@ enum RelocationError {
symbol_name: Option<String>, symbol_name: Option<String>,
}, },
#[error("function {address:#x} not found")] #[error("function {address:#x} not found while relocating `{caller_name}`")]
UnknownFunction { address: u64 }, UnknownFunction { address: u64, caller_name: String },
#[error("the map `{name}` at section `{section_index}` has not been created")] #[error("the map `{name}` at section `{section_index}` has not been created")]
MapNotCreated { section_index: usize, name: String }, MapNotCreated { section_index: usize, name: String },
@ -278,6 +278,7 @@ impl<'a> FunctionLinker<'a> {
.get(&callee_address) .get(&callee_address)
.ok_or(RelocationError::UnknownFunction { .ok_or(RelocationError::UnknownFunction {
address: callee_address, address: callee_address,
caller_name: fun.name.clone(),
})?; })?;
let callee_ins_index = self.link_function(program, callee)?; let callee_ins_index = self.link_function(program, callee)?;

Loading…
Cancel
Save