Merge branch 'master' into singlepass_multivalue

This commit is contained in:
ptitSeb
2022-06-16 16:28:58 +02:00
committed by GitHub
242 changed files with 1266 additions and 7576 deletions

View File

@ -20,16 +20,17 @@ use gimli::write::{EhFrame, FrameTable};
use rayon::prelude::{IntoParallelIterator, ParallelIterator};
use std::sync::Arc;
use wasmer_compiler::{
Architecture, CallingConvention, Compilation, CompileError, CompileModuleInfo,
CompiledFunction, Compiler, CompilerConfig, CpuFeature, Dwarf, FunctionBinaryReader,
FunctionBody, FunctionBodyData, MiddlewareBinaryReader, ModuleMiddleware,
ModuleMiddlewareChain, ModuleTranslationState, OperatingSystem, SectionIndex, Target,
TrapInformation,
Architecture, CallingConvention, Compiler, CompilerConfig, CpuFeature, FunctionBinaryReader,
FunctionBodyData, MiddlewareBinaryReader, ModuleMiddleware, ModuleMiddlewareChain,
ModuleTranslationState, OperatingSystem, Target,
};
use wasmer_types::entity::{EntityRef, PrimaryMap};
use wasmer_types::{
FunctionIndex, FunctionType, LocalFunctionIndex, MemoryIndex, ModuleInfo, TableIndex, TrapCode,
VMOffsets,
Compilation, CompileModuleInfo, CompiledFunction, Dwarf, FunctionBody, TrapInformation,
};
use wasmer_types::{
CompileError, FunctionIndex, FunctionType, LocalFunctionIndex, MemoryIndex, ModuleInfo,
SectionIndex, TableIndex, TrapCode, VMOffsets,
};
/// A compiler that compiles a WebAssembly module with Singlepass.