mirror of
https://github.com/fluencelabs/wasm-utils
synced 2025-04-03 03:31:03 +00:00
import rewiring
This commit is contained in:
parent
06277915da
commit
80d80a37d9
85
src/graph.rs
85
src/graph.rs
@ -9,6 +9,18 @@ enum ImportedOrDeclared<T=()> {
|
|||||||
Declared(T),
|
Declared(T),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl<T> ImportedOrDeclared<T> {
|
||||||
|
fn imported(module: String, name: String) -> Self {
|
||||||
|
ImportedOrDeclared::Imported(module, name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> From<&elements::ImportEntry> for ImportedOrDeclared<T> {
|
||||||
|
fn from(v: &elements::ImportEntry) -> Self {
|
||||||
|
ImportedOrDeclared::Imported(v.module().to_owned(), v.field().to_owned())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
type FuncOrigin = ImportedOrDeclared<Vec<Instruction>>;
|
type FuncOrigin = ImportedOrDeclared<Vec<Instruction>>;
|
||||||
type GlobalOrigin = ImportedOrDeclared<Vec<Instruction>>;
|
type GlobalOrigin = ImportedOrDeclared<Vec<Instruction>>;
|
||||||
type MemoryOrigin = ImportedOrDeclared;
|
type MemoryOrigin = ImportedOrDeclared;
|
||||||
@ -17,18 +29,32 @@ type TableOrigin = ImportedOrDeclared;
|
|||||||
type TypeRef = Rc<RefCell<elements::Type>>;
|
type TypeRef = Rc<RefCell<elements::Type>>;
|
||||||
type FuncRef = Rc<RefCell<Func>>;
|
type FuncRef = Rc<RefCell<Func>>;
|
||||||
type GlobalRef = Rc<RefCell<Global>>;
|
type GlobalRef = Rc<RefCell<Global>>;
|
||||||
|
type MemoryRef = Rc<RefCell<Memory>>;
|
||||||
|
type TableRef = Rc<RefCell<Table>>;
|
||||||
|
|
||||||
struct Func {
|
struct Func {
|
||||||
type_ref: TypeRef,
|
type_ref: TypeRef,
|
||||||
origin: FuncOrigin,
|
origin: FuncOrigin,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Func {
|
||||||
|
fn into_ref(self) -> Rc<RefCell<Self>> {
|
||||||
|
Rc::from(RefCell::from(self))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct Global {
|
struct Global {
|
||||||
content: elements::ValueType,
|
content: elements::ValueType,
|
||||||
is_mut: bool,
|
is_mut: bool,
|
||||||
origin: GlobalOrigin,
|
origin: GlobalOrigin,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Global {
|
||||||
|
fn into_ref(self) -> Rc<RefCell<Self>> {
|
||||||
|
Rc::from(RefCell::from(self))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
enum Instruction {
|
enum Instruction {
|
||||||
Plain(elements::Instruction),
|
Plain(elements::Instruction),
|
||||||
Call(FuncRef),
|
Call(FuncRef),
|
||||||
@ -39,8 +65,21 @@ struct Memory {
|
|||||||
origin: MemoryOrigin,
|
origin: MemoryOrigin,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Memory {
|
||||||
|
fn into_ref(self) -> Rc<RefCell<Self>> {
|
||||||
|
Rc::from(RefCell::from(self))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct Table {
|
struct Table {
|
||||||
origin: TableOrigin,
|
origin: TableOrigin,
|
||||||
|
limits: elements::ResizableLimits,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Table {
|
||||||
|
fn into_ref(self) -> Rc<RefCell<Self>> {
|
||||||
|
Rc::from(RefCell::from(self))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
struct DataSegment {
|
struct DataSegment {
|
||||||
@ -56,14 +95,16 @@ struct ElementSegment {
|
|||||||
enum Export {
|
enum Export {
|
||||||
Func(FuncRef),
|
Func(FuncRef),
|
||||||
Global(GlobalRef),
|
Global(GlobalRef),
|
||||||
|
Table(TableRef),
|
||||||
|
Memory(MemoryRef),
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
struct Module {
|
struct Module {
|
||||||
types: Vec<TypeRef>,
|
types: Vec<TypeRef>,
|
||||||
funcs: Vec<FuncRef>,
|
funcs: Vec<FuncRef>,
|
||||||
tables: Vec<Table>,
|
tables: Vec<TableRef>,
|
||||||
memories: Vec<Memory>,
|
memory: Vec<MemoryRef>,
|
||||||
globals: Vec<GlobalRef>,
|
globals: Vec<GlobalRef>,
|
||||||
elements: Vec<ElementSegment>,
|
elements: Vec<ElementSegment>,
|
||||||
data: Vec<DataSegment>,
|
data: Vec<DataSegment>,
|
||||||
@ -72,7 +113,6 @@ struct Module {
|
|||||||
|
|
||||||
impl Module {
|
impl Module {
|
||||||
|
|
||||||
|
|
||||||
fn from_elements(module: &elements::Module) -> Self {
|
fn from_elements(module: &elements::Module) -> Self {
|
||||||
|
|
||||||
let mut res = Module::default();
|
let mut res = Module::default();
|
||||||
@ -80,7 +120,44 @@ impl Module {
|
|||||||
for section in module.sections() {
|
for section in module.sections() {
|
||||||
match section {
|
match section {
|
||||||
elements::Section::Type(type_section) => {
|
elements::Section::Type(type_section) => {
|
||||||
res.types = type_section.types().iter().cloned().map(|t| Rc::new(RefCell::new(t))).collect();
|
res.types = type_section
|
||||||
|
.types()
|
||||||
|
.iter()
|
||||||
|
.cloned()
|
||||||
|
.map(RefCell::<_>::from)
|
||||||
|
.map(Rc::<_>::from)
|
||||||
|
.collect();
|
||||||
|
},
|
||||||
|
elements::Section::Import(import_section) => {
|
||||||
|
for entry in import_section.entries() {
|
||||||
|
match *entry.external() {
|
||||||
|
elements::External::Function(f) => {
|
||||||
|
res.funcs.push(Func {
|
||||||
|
type_ref: res.types[f as usize].clone(),
|
||||||
|
origin: entry.into(),
|
||||||
|
}.into_ref())
|
||||||
|
},
|
||||||
|
elements::External::Memory(m) => {
|
||||||
|
res.memory.push(Memory {
|
||||||
|
limits: m.limits().clone(),
|
||||||
|
origin: entry.into(),
|
||||||
|
}.into_ref())
|
||||||
|
},
|
||||||
|
elements::External::Global(g) => {
|
||||||
|
res.globals.push(Global {
|
||||||
|
content: g.content_type(),
|
||||||
|
is_mut: g.is_mutable(),
|
||||||
|
origin: entry.into(),
|
||||||
|
}.into_ref())
|
||||||
|
},
|
||||||
|
elements::External::Table(t) => {
|
||||||
|
res.tables.push(Table {
|
||||||
|
limits: t.limits().clone(),
|
||||||
|
origin: entry.into(),
|
||||||
|
}.into_ref())
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
_ => continue,
|
_ => continue,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user