Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(569)

Unified Diff: test/unittests/wasm/ast-decoder-unittest.cc

Issue 2285643002: [wasm] Validate the alignment of load and store instructions. (Closed)
Patch Set: signed unsigned mismatch Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/wasm/ast-decoder.h ('K') | « src/wasm/wasm-interpreter.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/wasm/ast-decoder-unittest.cc
diff --git a/test/unittests/wasm/ast-decoder-unittest.cc b/test/unittests/wasm/ast-decoder-unittest.cc
index 7311f063a0ad8984ab47808cd8120ecb8dd8decb..c6b221b9ad53b976bb561f174b0d0e2886a81752 100644
--- a/test/unittests/wasm/ast-decoder-unittest.cc
+++ b/test/unittests/wasm/ast-decoder-unittest.cc
@@ -1073,6 +1073,40 @@ TEST_F(AstDecoderTest, LoadMemOffset) {
}
}
+TEST_F(AstDecoderTest, LoadMemAlignment) {
+ struct {
+ WasmOpcode instruction;
+ uint32_t maximum_aligment;
+ } values[] = {
+ {kExprI32LoadMem8U, 0}, // --
+ {kExprI32LoadMem8S, 0}, // --
+ {kExprI32LoadMem16U, 1}, // --
+ {kExprI32LoadMem16S, 1}, // --
+ {kExprI64LoadMem8U, 0}, // --
+ {kExprI64LoadMem8S, 0}, // --
+ {kExprI64LoadMem16U, 1}, // --
+ {kExprI64LoadMem16S, 1}, // --
+ {kExprI64LoadMem32U, 2}, // --
+ {kExprI64LoadMem32S, 2}, // --
+ {kExprI32LoadMem, 2}, // --
+ {kExprI64LoadMem, 3}, // --
+ {kExprF32LoadMem, 2}, // --
+ {kExprF64LoadMem, 3}, // --
+ };
+
+ for (int i = 0; i < arraysize(values); i++) {
+ for (byte alignment = 0; alignment <= 4; alignment++) {
+ byte code[] = {kExprI8Const, 0, static_cast<byte>(values[i].instruction),
+ alignment, ZERO_OFFSET};
+ if (static_cast<uint32_t>(alignment) <= values[i].maximum_aligment) {
+ EXPECT_VERIFIES(sigs.v_i(), code);
+ } else {
+ EXPECT_FAILURE(sigs.v_i(), code);
+ }
+ }
+ }
+}
+
TEST_F(AstDecoderTest, StoreMemOffset) {
for (int offset = 0; offset < 128; offset += 7) {
byte code[] = {WASM_STORE_MEM_OFFSET(MachineType::Int32(), offset,
« src/wasm/ast-decoder.h ('K') | « src/wasm/wasm-interpreter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698