forked from GitHub/haskell-wasm
reimplement script value matching logic and implement part of simd float arithmetic
This commit is contained in:
@@ -558,8 +558,10 @@ getInstrType _ (IRelOp BS64 _) = return $ [I64, I64] ==> I32
|
||||
getInstrType _ (IRelOp (BS128 _) _) = return $ [V128, V128] ==> V128
|
||||
getInstrType _ (FUnOp BS32 _) = return $ F32 ==> F32
|
||||
getInstrType _ (FUnOp BS64 _) = return $ F64 ==> F64
|
||||
getInstrType _ (FUnOp (BS128 _) _) = return $ V128 ==> V128
|
||||
getInstrType _ (FBinOp BS32 _) = return $ [F32, F32] ==> F32
|
||||
getInstrType _ (FBinOp BS64 _) = return $ [F64, F64] ==> F64
|
||||
getInstrType _ (FBinOp (BS128 _) _) = return $ [V128, V128] ==> V128
|
||||
getInstrType _ (FRelOp BS32 _) = return $ [F32, F32] ==> I32
|
||||
getInstrType _ (FRelOp BS64 _) = return $ [F64, F64] ==> I32
|
||||
getInstrType _ I32WrapI64 = return $ I64 ==> I32
|
||||
|
||||
Reference in New Issue
Block a user