Move wasmer_compiler/{section,relocation}.rs to wasmer_types

This commit is contained in:
Manos Pitsidianakis
2022-05-10 16:43:01 +03:00
parent 25057c8f63
commit b1f1939bf7
31 changed files with 101 additions and 84 deletions

View File

@ -28,13 +28,12 @@ use std::convert::TryFrom;
use wasmer_compiler::wasmparser::{MemoryImmediate, Operator};
use wasmer_compiler::{
from_binaryreadererror_wasmerror, wptype_to_type, FunctionBinaryReader, FunctionBodyData,
MiddlewareBinaryReader, ModuleMiddlewareChain, ModuleTranslationState, RelocationTarget,
Symbol, SymbolRegistry,
MiddlewareBinaryReader, ModuleMiddlewareChain, ModuleTranslationState, Symbol, SymbolRegistry,
};
use wasmer_types::entity::PrimaryMap;
use wasmer_types::{
CompileError, FunctionIndex, FunctionType, GlobalIndex, LocalFunctionIndex, MemoryIndex,
ModuleInfo, SignatureIndex, TableIndex, Type,
ModuleInfo, RelocationTarget, SignatureIndex, TableIndex, Type,
};
use wasmer_vm::{MemoryStyle, TableStyle, VMOffsets};