Support a proper vmctx that contains more than just memory offset

This commit is contained in:
Jef
2019-01-16 16:34:24 +01:00
parent d7434fe5d2
commit a7fa7da7d4
7 changed files with 375 additions and 101 deletions

View File

@@ -1,4 +1,4 @@
#![feature(plugin, test, const_slice_len, never_type)]
#![feature(plugin, test, const_slice_len, never_type, alloc_layout_extra)]
#![plugin(dynasm)]
extern crate test;
@@ -28,5 +28,4 @@ mod translate_sections;
#[cfg(test)]
mod tests;
pub use module::translate;
pub use module::TranslatedModule;
pub use module::{translate, TranslatedModule, ExecutableModule};