2016-01-25 10:27:29 +00:00
|
|
|
// Copyright 2016 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/unittests/test-utils.h"
|
|
|
|
|
|
|
|
#include "src/bit-vector.h"
|
2017-02-13 09:52:26 +00:00
|
|
|
#include "src/objects-inl.h"
|
2016-01-25 10:27:29 +00:00
|
|
|
#include "src/objects.h"
|
2017-04-25 11:29:17 +00:00
|
|
|
#include "src/v8.h"
|
2016-12-21 12:42:06 +00:00
|
|
|
#include "src/wasm/function-body-decoder.h"
|
2016-01-25 10:27:29 +00:00
|
|
|
#include "src/wasm/wasm-module.h"
|
|
|
|
|
2017-04-25 11:29:17 +00:00
|
|
|
#include "test/common/wasm/test-signatures.h"
|
|
|
|
#include "test/common/wasm/wasm-macro-gen.h"
|
|
|
|
|
2016-01-25 10:27:29 +00:00
|
|
|
#define WASM_SET_ZERO(i) WASM_SET_LOCAL(i, WASM_ZERO)
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace wasm {
|
|
|
|
|
|
|
|
class WasmLoopAssignmentAnalyzerTest : public TestWithZone {
|
|
|
|
public:
|
2016-03-07 21:04:07 +00:00
|
|
|
WasmLoopAssignmentAnalyzerTest() : num_locals(0) {}
|
2016-01-25 10:27:29 +00:00
|
|
|
TestSignatures sigs;
|
2016-03-07 21:04:07 +00:00
|
|
|
uint32_t num_locals;
|
2016-01-25 10:27:29 +00:00
|
|
|
|
|
|
|
BitVector* Analyze(const byte* start, const byte* end) {
|
2016-03-07 21:04:07 +00:00
|
|
|
return AnalyzeLoopAssignmentForTesting(zone(), num_locals, start, end);
|
2016-01-25 10:27:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Empty0) {
|
|
|
|
byte code[] = { 0 };
|
|
|
|
BitVector* assigned = Analyze(code, code);
|
|
|
|
CHECK_NULL(assigned);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Empty1) {
|
2016-09-27 20:46:10 +00:00
|
|
|
byte code[] = {kExprLoop, kLocalVoid, 0};
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
CHECK_EQ(false, assigned->Contains(j));
|
|
|
|
}
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals++;
|
2016-01-25 10:27:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, One) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 5;
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int i = 0; i < 5; i++) {
|
2016-07-21 11:04:06 +00:00
|
|
|
byte code[] = {WASM_LOOP(WASM_SET_ZERO(i))};
|
2016-01-25 10:27:29 +00:00
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
CHECK_EQ(j == i, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-27 20:46:10 +00:00
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, TeeOne) {
|
|
|
|
num_locals = 5;
|
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
byte code[] = {WASM_LOOP(WASM_TEE_LOCAL(i, WASM_ZERO))};
|
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
CHECK_EQ(j == i, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-25 10:27:29 +00:00
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, OneBeyond) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 5;
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int i = 0; i < 5; i++) {
|
2016-07-21 11:04:06 +00:00
|
|
|
byte code[] = {WASM_LOOP(WASM_SET_ZERO(i)), WASM_SET_ZERO(1)};
|
2016-01-25 10:27:29 +00:00
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
CHECK_EQ(j == i, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Two) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 5;
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
for (int j = 0; j < 5; j++) {
|
2016-07-21 11:04:06 +00:00
|
|
|
byte code[] = {WASM_LOOP(WASM_SET_ZERO(i), WASM_SET_ZERO(j))};
|
2016-01-25 10:27:29 +00:00
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int k = 0; k < assigned->length(); k++) {
|
|
|
|
bool expected = k == i || k == j;
|
|
|
|
CHECK_EQ(expected, assigned->Contains(k));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, NestedIf) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 5;
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int i = 0; i < 5; i++) {
|
|
|
|
byte code[] = {WASM_LOOP(
|
2016-07-21 11:04:06 +00:00
|
|
|
WASM_IF_ELSE(WASM_SET_ZERO(0), WASM_SET_ZERO(i), WASM_SET_ZERO(1)))};
|
2016-01-25 10:27:29 +00:00
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
bool expected = i == j || j == 0 || j == 1;
|
|
|
|
CHECK_EQ(expected, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, BigLocal) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 65000;
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int i = 13; i < 65000; i = static_cast<int>(i * 1.5)) {
|
2017-01-09 13:57:26 +00:00
|
|
|
byte code[] = {WASM_LOOP(WASM_I32V_1(11), kExprSetLocal, U32V_3(i))};
|
2016-01-25 10:27:29 +00:00
|
|
|
|
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
bool expected = i == j;
|
|
|
|
CHECK_EQ(expected, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Break) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 3;
|
2016-01-25 10:27:29 +00:00
|
|
|
byte code[] = {
|
2016-07-21 11:04:06 +00:00
|
|
|
WASM_LOOP(WASM_IF(WASM_GET_LOCAL(0), WASM_BRV(1, WASM_SET_ZERO(1)))),
|
2016-01-25 10:27:29 +00:00
|
|
|
WASM_SET_ZERO(0)};
|
|
|
|
|
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
bool expected = j == 1;
|
|
|
|
CHECK_EQ(expected, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Loop1) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 5;
|
2016-01-25 10:27:29 +00:00
|
|
|
byte code[] = {
|
2016-07-21 11:04:06 +00:00
|
|
|
WASM_LOOP(WASM_IF(
|
|
|
|
WASM_GET_LOCAL(0),
|
2017-01-09 13:57:26 +00:00
|
|
|
WASM_BRV(0, WASM_SET_LOCAL(3, WASM_I32_SUB(WASM_GET_LOCAL(0),
|
|
|
|
WASM_I32V_1(1)))))),
|
2016-01-25 10:27:29 +00:00
|
|
|
WASM_GET_LOCAL(0)};
|
|
|
|
|
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
bool expected = j == 3;
|
|
|
|
CHECK_EQ(expected, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Loop2) {
|
2016-03-07 21:04:07 +00:00
|
|
|
num_locals = 6;
|
2016-01-25 10:27:29 +00:00
|
|
|
const byte kIter = 0;
|
|
|
|
const byte kSum = 3;
|
|
|
|
|
|
|
|
byte code[] = {WASM_BLOCK(
|
|
|
|
WASM_WHILE(
|
|
|
|
WASM_GET_LOCAL(kIter),
|
2016-07-21 11:04:06 +00:00
|
|
|
WASM_BLOCK(
|
|
|
|
WASM_SET_LOCAL(
|
|
|
|
kSum, WASM_F32_ADD(WASM_GET_LOCAL(kSum),
|
|
|
|
WASM_LOAD_MEM(MachineType::Float32(),
|
|
|
|
WASM_GET_LOCAL(kIter)))),
|
2017-01-09 13:57:26 +00:00
|
|
|
WASM_SET_LOCAL(
|
|
|
|
kIter, WASM_I32_SUB(WASM_GET_LOCAL(kIter), WASM_I32V_1(4))))),
|
2016-01-25 10:27:29 +00:00
|
|
|
WASM_STORE_MEM(MachineType::Float32(), WASM_ZERO, WASM_GET_LOCAL(kSum)),
|
|
|
|
WASM_GET_LOCAL(kIter))};
|
|
|
|
|
2016-09-27 20:46:10 +00:00
|
|
|
BitVector* assigned = Analyze(code + 2, code + arraysize(code));
|
2016-01-25 10:27:29 +00:00
|
|
|
for (int j = 0; j < assigned->length(); j++) {
|
|
|
|
bool expected = j == kIter || j == kSum;
|
|
|
|
CHECK_EQ(expected, assigned->Contains(j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 20:35:30 +00:00
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, Malformed) {
|
2016-09-27 20:46:10 +00:00
|
|
|
byte code[] = {kExprLoop, kLocalVoid, kExprF32Neg, kExprBrTable, 0x0e, 'h',
|
|
|
|
'e', 'l', 'l', 'o', ',', ' ',
|
|
|
|
'w', 'o', 'r', 'l', 'd', '!'};
|
2016-06-27 20:35:30 +00:00
|
|
|
BitVector* assigned = Analyze(code, code + arraysize(code));
|
|
|
|
CHECK_NULL(assigned);
|
|
|
|
}
|
|
|
|
|
2016-09-01 14:05:19 +00:00
|
|
|
TEST_F(WasmLoopAssignmentAnalyzerTest, regress_642867) {
|
|
|
|
static const byte code[] = {
|
|
|
|
WASM_LOOP(WASM_ZERO, kExprSetLocal, 0xfa, 0xff, 0xff, 0xff,
|
|
|
|
0x0f)}; // local index LEB128 0xfffffffa
|
|
|
|
// Just make sure that the analysis does not crash.
|
|
|
|
Analyze(code, code + arraysize(code));
|
|
|
|
}
|
|
|
|
|
2016-01-25 10:27:29 +00:00
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|