91b102c763
The opcodes were renamed long ago, but the macros were still using the old syntax. This CL was created using the following command (for WASM_GET_LOCAL, WASM_SET_LOCAL, and WASM_TEE_LOCAL): ag -l WASM_GET_LOCAL | xargs -L 1 sed -i 's/\bWASM_SET_LOCAL\b/WASM_LOCAL_SET/g' R=ahaas@chromium.org Bug: v8:11074 Change-Id: I0018bea185030be29344e66e59706fed183cc2f1 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2595446 Reviewed-by: Andreas Haas <ahaas@chromium.org> Commit-Queue: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/master@{#71835}
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "test/cctest/cctest.h"
|
|
#include "test/cctest/wasm/wasm-run-utils.h"
|
|
#include "test/common/wasm/wasm-macro-gen.h"
|
|
|
|
namespace v8 {
|
|
namespace internal {
|
|
namespace wasm {
|
|
|
|
WASM_EXEC_TEST(I32SExtendI8) {
|
|
WasmRunner<int32_t, int32_t> r(execution_tier);
|
|
BUILD(r, WASM_I32_SIGN_EXT_I8(WASM_LOCAL_GET(0)));
|
|
CHECK_EQ(0, r.Call(0));
|
|
CHECK_EQ(1, r.Call(1));
|
|
CHECK_EQ(-1, r.Call(-1));
|
|
CHECK_EQ(0x7a, r.Call(0x7a));
|
|
CHECK_EQ(-0x80, r.Call(0x80));
|
|
}
|
|
|
|
WASM_EXEC_TEST(I32SExtendI16) {
|
|
WasmRunner<int32_t, int32_t> r(execution_tier);
|
|
BUILD(r, WASM_I32_SIGN_EXT_I16(WASM_LOCAL_GET(0)));
|
|
CHECK_EQ(0, r.Call(0));
|
|
CHECK_EQ(1, r.Call(1));
|
|
CHECK_EQ(-1, r.Call(-1));
|
|
CHECK_EQ(0x7afa, r.Call(0x7afa));
|
|
CHECK_EQ(-0x8000, r.Call(0x8000));
|
|
}
|
|
|
|
WASM_EXEC_TEST(I64SExtendI8) {
|
|
WasmRunner<int64_t, int64_t> r(execution_tier);
|
|
BUILD(r, WASM_I64_SIGN_EXT_I8(WASM_LOCAL_GET(0)));
|
|
CHECK_EQ(0, r.Call(0));
|
|
CHECK_EQ(1, r.Call(1));
|
|
CHECK_EQ(-1, r.Call(-1));
|
|
CHECK_EQ(0x7a, r.Call(0x7a));
|
|
CHECK_EQ(-0x80, r.Call(0x80));
|
|
}
|
|
|
|
WASM_EXEC_TEST(I64SExtendI16) {
|
|
WasmRunner<int64_t, int64_t> r(execution_tier);
|
|
BUILD(r, WASM_I64_SIGN_EXT_I16(WASM_LOCAL_GET(0)));
|
|
CHECK_EQ(0, r.Call(0));
|
|
CHECK_EQ(1, r.Call(1));
|
|
CHECK_EQ(-1, r.Call(-1));
|
|
CHECK_EQ(0x7afa, r.Call(0x7afa));
|
|
CHECK_EQ(-0x8000, r.Call(0x8000));
|
|
}
|
|
|
|
WASM_EXEC_TEST(I64SExtendI32) {
|
|
WasmRunner<int64_t, int64_t> r(execution_tier);
|
|
BUILD(r, WASM_I64_SIGN_EXT_I32(WASM_LOCAL_GET(0)));
|
|
CHECK_EQ(0, r.Call(0));
|
|
CHECK_EQ(1, r.Call(1));
|
|
CHECK_EQ(-1, r.Call(-1));
|
|
CHECK_EQ(0x7fffffff, r.Call(0x7fffffff));
|
|
CHECK_EQ(-0x80000000LL, r.Call(0x80000000));
|
|
}
|
|
|
|
} // namespace wasm
|
|
} // namespace internal
|
|
} // namespace v8
|