wasm-micro-runtime/core/iwasm/interpreter
liang.he c7148a6823
Fix potential integer overflow issues (#4429)
It is reported as "Multiplication result converted to larger type".
And "Multiplication result may overflow 'Type A' before it is
converted to 'Type B'." Type A is a larger type than Type B.

Since the conversion applies after the multiplication, arithmetic
overflow may still occur.

> The rule flags every multiplication of two non-constant integer expressions
> that is (explicitly or implicitly) converted to a larger integer type. The
> conversion is an indication that the expression would produce a result that
> would be too large to fit in the smaller integer type.
2025-07-01 13:39:30 +08:00
..
iwasm_interp.cmake Implement wasm mini loader and refine footprint of loader and runtime (#276) 2020-06-08 11:19:09 +08:00
SConscript add porting codes of rt-thread (#494) 2021-01-14 11:26:35 +08:00
wasm_interp_classic.c Fix few shadow warnings (#4409) 2025-06-27 11:55:32 +08:00
wasm_interp_fast.c feat: Add instruction metering for interpreter (#4122) 2025-05-26 16:16:42 +08:00
wasm_interp.h Calculate func_index instead of adding an extra field to wasm frame 2025-01-28 11:09:32 +00:00
wasm_loader.c loader: fix a potential overflow issue (#4427) 2025-06-30 12:57:57 +08:00
wasm_loader.h Enhance wasm loading with LoadArgs and support module names (#3265) 2024-04-07 15:04:35 +08:00
wasm_mini_loader.c Collective fix for typos and minor bugs (#4369) 2025-06-17 09:26:00 +08:00
wasm_opcode.h Add select 128 (#4236) 2025-05-14 12:35:56 +08:00
wasm_runtime.c Fix potential integer overflow issues (#4429) 2025-07-01 13:39:30 +08:00
wasm_runtime.h Refactor copy callstack feature (#4401) 2025-06-24 20:38:30 +08:00
wasm.h Enhance type checking for function types in loader and improve error handling (#4294) 2025-05-28 20:29:09 +08:00