summaryrefslogtreecommitdiff
path: root/test/gtest/stringify.cpp
diff options
context:
space:
mode:
authorAshley Nelson <nashley@google.com>2023-08-02 17:19:16 -0700
committerGitHub <noreply@github.com>2023-08-03 00:19:16 +0000
commit1cc8ff8cbc112f264c0796f41b01cdc3249d7f07 (patch)
treeeeb216cb24c1a9e1e5ec0e3c101b89f493c233d0 /test/gtest/stringify.cpp
parentc695d6dc0e28fac489ef09a9d231d35f12de62ef (diff)
downloadbinaryen-1cc8ff8cbc112f264c0796f41b01cdc3249d7f07.tar.gz
binaryen-1cc8ff8cbc112f264c0796f41b01cdc3249d7f07.tar.bz2
binaryen-1cc8ff8cbc112f264c0796f41b01cdc3249d7f07.zip
[Outlining] Integration test for suffix_tree and stringify (#5839)
Adds an integration test that identifies the substrings of a stringified wasm module using the suffix_tree.
Diffstat (limited to 'test/gtest/stringify.cpp')
-rw-r--r--test/gtest/stringify.cpp43
1 files changed, 40 insertions, 3 deletions
diff --git a/test/gtest/stringify.cpp b/test/gtest/stringify.cpp
index c60ceefb4..42f4e128f 100644
--- a/test/gtest/stringify.cpp
+++ b/test/gtest/stringify.cpp
@@ -1,6 +1,7 @@
#include "ir/utils.h"
#include "passes/stringify-walker.h"
#include "print-test.h"
+#include "support/suffix_tree.h"
using namespace wasm;
@@ -124,8 +125,7 @@ adding unique symbol
EXPECT_EQ(ss.str(), stringifyText);
}
-TEST_F(StringifyTest, Stringify) {
- auto moduleText = R"wasm(
+static auto dupModuleText = R"wasm(
(module
(func $a
(block $block_a
@@ -161,8 +161,9 @@ TEST_F(StringifyTest, Stringify) {
)
)wasm";
+TEST_F(StringifyTest, Stringify) {
Module wasm;
- parseWast(wasm, moduleText);
+ parseWast(wasm, dupModuleText);
HashStringifyWalker stringify = HashStringifyWalker();
stringify.walkModule(&wasm);
@@ -216,3 +217,39 @@ TEST_F(StringifyTest, Stringify) {
(uint32_t)-13 // separate block_f if-true
}));
}
+
+TEST_F(StringifyTest, Substrings) {
+ Module wasm;
+ parseWast(wasm, dupModuleText);
+
+ HashStringifyWalker stringify = HashStringifyWalker();
+ stringify.walkModule(&wasm);
+
+ SuffixTree st(stringify.hashString);
+ std::vector<SuffixTree::RepeatedSubstring> substrings(st.begin(), st.end());
+ std::sort(
+ substrings.begin(),
+ substrings.end(),
+ [](SuffixTree::RepeatedSubstring a, SuffixTree::RepeatedSubstring b) {
+ size_t aWeight = a.Length * a.StartIndices.size();
+ size_t bWeight = b.Length * b.StartIndices.size();
+ if (aWeight == bWeight) {
+ return a.StartIndices[0] < b.StartIndices[0];
+ }
+ return aWeight > bWeight;
+ });
+
+ EXPECT_EQ(
+ substrings,
+ (std::vector<SuffixTree::RepeatedSubstring>{
+ // 5, 6, 7, 6 appears at idx 9 and again at 22
+ SuffixTree::RepeatedSubstring{4u, (std::vector<unsigned>{9, 22})},
+ // 6, 7, 6 appears at idx 10 and again at 23
+ SuffixTree::RepeatedSubstring{3u, (std::vector<unsigned>{10, 23})},
+ // 10, 11, 6 appears at idx 18 and again at 27
+ SuffixTree::RepeatedSubstring{3u, (std::vector<unsigned>{18, 27})},
+ // 11, 6 appears at idx 32, 19 and again at 28
+ SuffixTree::RepeatedSubstring{2u, (std::vector<unsigned>{32, 19, 28})},
+ // 7, 6 appears at idx 11 and again at 24
+ SuffixTree::RepeatedSubstring{2u, (std::vector<unsigned>{11, 24})}}));
+}