Benbuck Nason
Benbuck Nason
The hash() functions added in the latest v2.4.9 release trigger clang integer sanitizer issues. Since the integer behavior in these functions is intentional, this change suppresses the sanitizer issues.
Hi, I ran the clang static analyzer on vorbis 1.3.5 and it reported these potential issues: ```c++ Logic error: Assigned value is garbage or undefined (libvorbis/lib/floor1.c:461) libvorbis/lib/floor1.c 447 a->xb=xb; 448...
Hi @onqtam, One of the platforms I am using doctest on doesn't support signals, so I made sure to disable DOCTEST_CONFIG_POSIX_SIGNALS. However, since this platform doesn't have the header either,...
Hi @onqtam, On one of my target platforms, I get crashes in doctest because of the global allocations. What would you think about changing them to dynamically allocate when used...
Fix some of the spelling issues found by CSpell.
I'm very new to this code, so I'm not confident at all that this is the best way (or even a good way) to expose export globals, so please let...
Fixes #2349 - WAMR triggers UBSAN alignment issues on x86-64/x86 when built with Fast JIT.
Hi, I have a workload that works fine with a WASM file, but when compiled to AOT, it fails. The difference in behavior seems to happen when the embedding application...
On my machine it takes about 18 minutes for wamrc to compile this wasm file: https://github.com/bnason-nf/karting/raw/main/wgpukarting.wasm.gz My command line is: `wamrc --target=x86_64 -o wgpukarting.aot wgpukarting.wasm` Even though this wasm file...
This adds support to the public export API and internal implementation for import memory objects. The exception to this is that the AOT compiler and loader are currently hardcoded not...