dotnet / corert

This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
http://dot.net
MIT License
2.91k stars 510 forks source link

Wasm: add support for most of the conv_ovf operations #8350

Closed yowl closed 3 years ago

yowl commented 4 years ago

This PR adds support for overflow checking for Wasm for most of the Conv_Ovf opcodes. Still to do are two of native int: Conv_Ovf_I, Conv_Ovf_I_Un . (Conv_Ovf_U is included here). Was going to wait until c#9 was available to do the missing ones.

yowl commented 4 years ago

Closes #8348