1781: Cranelift upgrade r=syrusakbary a=syrusakbary

<!-- 
Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test:
https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests

-->

# Description

Upgrade Cranelift to `0.67`. This upgrade also enables all SIMD tests (with one small exception operator that is still not fixed in Cranelift).

<!-- 
Provide details regarding the change including motivation,
links to related issues, and the context of the PR.
-->


Co-authored-by: Syrus <me@syrusakbary.com>
Co-authored-by: Syrus Akbary <me@syrusakbary.com>
This commit is contained in:
bors[bot]
2020-10-30 04:47:24 +00:00
committed by GitHub
25 changed files with 1128 additions and 475 deletions

View File

@@ -124,7 +124,7 @@ impl LLVMCompiler {
compile_info
.module
.signatures
.into_iter()
.iter()
.collect::<Vec<_>>()
.par_iter()
.map_init(
@@ -149,7 +149,7 @@ impl LLVMCompiler {
compile_info
.module
.functions
.into_iter()
.iter()
.collect::<Vec<_>>()
.par_iter()
.map_init(
@@ -248,7 +248,7 @@ impl Compiler for LLVMCompiler {
let mut frame_section_bytes = vec![];
let mut frame_section_relocations = vec![];
let functions = function_body_inputs
.into_iter()
.iter()
.collect::<Vec<(LocalFunctionIndex, &FunctionBodyData<'_>)>>()
.par_iter()
.map_init(

View File

@@ -184,10 +184,7 @@ impl FuncTranslator {
let mut locals = vec![];
let num_locals = reader.read_local_count().map_err(to_wasm_error)?;
for _ in 0..num_locals {
let mut counter = 0;
let (count, ty) = reader
.read_local_decl(&mut counter)
.map_err(to_wasm_error)?;
let (count, ty) = reader.read_local_decl().map_err(to_wasm_error)?;
let ty = wptype_to_type(ty).map_err(to_compile_error)?;
let ty = type_to_llvm(&intrinsics, ty)?;
for _ in 0..count {