Gary Guo vor 3 Jahren
Ursprung
Commit
8b06d29ed8
4 geänderte Dateien mit 13 neuen und 3 gelöschten Zeilen
  1. 0 2
      Cargo.toml
  2. 7 1
      src/arch/x86_64.rs
  3. 1 0
      src/find_fde/mod.rs
  4. 5 0
      src/lib.rs

+ 0 - 2
Cargo.toml

@@ -7,8 +7,6 @@ edition = "2018"
 [dependencies]
 gimli = { version = "0.25.0", default-features = false, features = ["read"] }
 libc = "0.2"
-fallible-iterator = "0.1"
-log = "0.4"
 once_cell = "1.8"
 
 [profile.release]

+ 7 - 1
src/arch/x86_64.rs

@@ -11,6 +11,13 @@ pub struct Context {
     pub fcw: usize,
 }
 
+pub struct Arch;
+
+impl Arch {
+    pub const SP: Register = X86_64::RSP;
+    pub const RA: Register = X86_64::RA;
+}
+
 impl fmt::Debug for Context {
     fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
         let mut fmt = fmt.debug_struct("Context");
@@ -84,7 +91,6 @@ pub extern "C-unwind" fn save_context() -> Context {
 
 #[naked]
 pub unsafe extern "C" fn restore_context(ctx: &Context) -> ! {
-    // No need to save caller-saved registers here.
     asm!(
         "
         /* Restore stack */

+ 1 - 0
src/find_fde/mod.rs

@@ -4,6 +4,7 @@ mod registry;
 use crate::util::*;
 use gimli::{BaseAddresses, EhFrame, FrameDescriptionEntry};
 
+#[derive(Debug)]
 pub struct FDESearchResult {
     pub fde: FrameDescriptionEntry<StaticSlice>,
     pub bases: BaseAddresses,

+ 5 - 0
src/lib.rs

@@ -1,3 +1,8 @@
+#![feature(c_unwind)]
+#![feature(naked_functions)]
+#![feature(asm)]
+#![allow(unused_unsafe)]
+
 mod arch;
 mod find_fde;
 mod util;