This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/core/iwasm
Wenyong Huang 177aa4fc79
Fix aot rotl/rotr 0 issue (#1285)
Fix the issue reported in #1282.
When i32/i64 rotate (rotl/rotr) with 0, the LLVM IRs translated are:
left<<0 | left>>64 and left >>0 | left<<64
The value of left >> 64 and left <<64 in LLVM are treated as poison,
which causes invalid result when executing the aot function.

Directly return left when right is 0 to fix the issue.
2022-07-12 13:43:56 +08:00
..
aot Remove unnecessary memset after mmap (#1273) 2022-07-07 13:53:50 +08:00
common Fix get invokeNative float ret value issue with clang compiler (#1248) 2022-06-26 09:33:54 +08:00
compilation Fix aot rotl/rotr 0 issue (#1285) 2022-07-12 13:43:56 +08:00
include wasm_export.h: mention module byte buffer mutability (#1271) 2022-07-07 10:06:31 +08:00
interpreter Fix sub module's aux stack info not synchronized to main module issue (#1279) 2022-07-11 19:42:29 +08:00
libraries debug_engine: Fix a few typos (#1261) 2022-06-30 15:45:46 +08:00
README.md Enable AoT and wamr-sdk, and change arguments of call wasm API (#157) 2020-01-21 13:26:14 +08:00