diff options
author | Alon Zakai <azakai@google.com> | 2024-11-06 15:33:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-06 15:33:14 -0800 |
commit | 6724ebe4b9e184a9a73ce82e8b8782f7f5a21d1a (patch) | |
tree | fe2d4682eefcf0addd42de8abac626cb0b07eb6a /src | |
parent | 40210446937cbef7d73606e4331cb6a782e2a875 (diff) | |
download | binaryen-6724ebe4b9e184a9a73ce82e8b8782f7f5a21d1a.tar.gz binaryen-6724ebe4b9e184a9a73ce82e8b8782f7f5a21d1a.tar.bz2 binaryen-6724ebe4b9e184a9a73ce82e8b8782f7f5a21d1a.zip |
[wasm64] Handle 64-bit overflow in optimizeMemoryAccess (#7057)
When we combine a load/store offset with a const, we must not
overflow, as the semantics of offsets do not wrap.
Diffstat (limited to 'src')
-rw-r--r-- | src/passes/OptimizeInstructions.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/passes/OptimizeInstructions.cpp b/src/passes/OptimizeInstructions.cpp index e1478b54f..3a2841c1e 100644 --- a/src/passes/OptimizeInstructions.cpp +++ b/src/passes/OptimizeInstructions.cpp @@ -42,6 +42,7 @@ #include <ir/type-updating.h> #include <ir/utils.h> #include <pass.h> +#include <support/stdckdint.h> #include <support/threads.h> #include <wasm.h> @@ -3501,8 +3502,12 @@ private: uint64_t offset64 = offset; auto mem = getModule()->getMemory(memory); if (mem->is64()) { - last->value = Literal(int64_t(value64 + offset64)); - offset = 0; + // Check for a 64-bit overflow. + uint64_t sum; + if (!std::ckd_add(&sum, value64, offset64)) { + last->value = Literal(int64_t(sum)); + offset = 0; + } } else { // don't do this if it would wrap the pointer if (value64 <= uint64_t(std::numeric_limits<int32_t>::max()) && |