diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-16 22:41:38 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-16 22:41:38 +0200 |
commit | 1d8941667906dced913a308c9a39fd055ac5186f (patch) | |
tree | b016664c7243eb67014509860385aa6182a0cd78 /src/registers.rs | |
parent | 38e07fae8b3d06cd43b4c9793c07c2048b32d095 (diff) |
Filter sys calls
Diffstat (limited to 'src/registers.rs')
-rw-r--r-- | src/registers.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/registers.rs b/src/registers.rs index ec2e12c..5832bc5 100644 --- a/src/registers.rs +++ b/src/registers.rs @@ -40,12 +40,17 @@ impl RegistersData { self.timestamp.format("%+").to_string() } + /// Return the rax name as syscall name + pub fn rax(&self) -> &str { + syscall_name(self.orig_rax) + } + /// Returns a good string which shows the output for a line pub fn output(&self) -> String { format!( "[{}]: {}({:x}, {:x}, {:x}, ...) = {:x}", self.date(), - syscall_name(self.orig_rax).bold(), + self.rax().bold(), self.rdi, self.rsi, self.rdx, @@ -58,7 +63,7 @@ impl RegistersData { Line::from(vec![ Span::raw(format!("[{}]: ", self.date())), Span::styled( - format!("{}", syscall_name(self.orig_rax)), + format!("{}", self.rax()), Style::default().add_modifier(Modifier::BOLD), ), Span::raw(format!( |