diff options
author | Ashley Nelson <nashley@google.com> | 2023-07-21 14:15:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 14:15:45 -0700 |
commit | e2f5d79fd0f9bd12d69733e98b534ce63592bd57 (patch) | |
tree | 7f6c0b2878f421c0d94de05c741f0c137ca5f92b /test/gtest/stringify.cpp | |
parent | 84af3482c31bb33595cbb72f30070bc27eab721c (diff) | |
download | binaryen-e2f5d79fd0f9bd12d69733e98b534ce63592bd57.tar.gz binaryen-e2f5d79fd0f9bd12d69733e98b534ce63592bd57.tar.bz2 binaryen-e2f5d79fd0f9bd12d69733e98b534ce63592bd57.zip |
[Outlining] Changing stringify values to 32-bit (#5832)
The LLVM suffix tree expects to be provided with a vector of 32-bit unsigned integers. This PR makes it easier to integrate our wasm program string with the suffix tree.
Because the range of possible values is reduced from 2^64 to 2^32, a signed integer was added to manage the next separator value and ensure we're using every possible negative number.
Diffstat (limited to 'test/gtest/stringify.cpp')
-rw-r--r-- | test/gtest/stringify.cpp | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/test/gtest/stringify.cpp b/test/gtest/stringify.cpp index 06d5ccb0c..c60ceefb4 100644 --- a/test/gtest/stringify.cpp +++ b/test/gtest/stringify.cpp @@ -168,51 +168,51 @@ TEST_F(StringifyTest, Stringify) { stringify.walkModule(&wasm); EXPECT_EQ(stringify.hashString, - (std::vector<uint64_t>{ + (std::vector<uint32_t>{ 0, // function block evaluated as a whole - (uint64_t)-1, // separate function block from function contents - 2, // block_a evaluated as a whole - 3, // block_b evaluated as a whole - 4, // block_c evaluated as a whole - 2, // block_d has the same contents as block_a - 4, // block_e has the same contents as block_c - 5, // block_f evaluated as a whole - (uint64_t)-6, // separate blocks from block contents - 7, // i32.const 20 - 8, // drop, all drops will be the same symbol - 9, // i32.const 10 - 8, // drop - (uint64_t)-10, // separate block_a contents - 11, // i32.const 0, if condition - 12, // block_b's if evaluated as a whole - 8, // drop - (uint64_t)-13, // separate block_b contents - 14, // i32.const 1, if condition - 15, // block_c's if evaluated as a whole - 8, // drop - (uint64_t)-16, // separate block_c contents - 7, // i32.const 20 - 8, // drop - 9, // i32.const 10 - 8, // drop - (uint64_t)-17, // separate block_d contents - 14, // i32.const 1, if condition - 15, // block_e if evaluated as a whole - 8, // drop - (uint64_t)-18, // separate block_e contents - 11, // i32.const 0, if condition - 15, // block_f's if evaluated as a whole - 8, // drop - (uint64_t)-19, // separate block_f contents - 20, // i32.const 40 - (uint64_t)-21, // separate block_b if-true - 22, // i32.const 5 - (uint64_t)-23, // separate block_b if-false - 24, // i32.const 30 - (uint64_t)-25, // separate block_c if-true - 24, // i32.const 30 - (uint64_t)-26, // separate block_e if-true - 24, // i32.const 30 - (uint64_t)-27 // separate block_f if-true + (uint32_t)-1, // separate function block from function contents + 1, // block_a evaluated as a whole + 2, // block_b evaluated as a whole + 3, // block_c evaluated as a whole + 1, // block_d has the same contents as block_a + 3, // block_e has the same contents as block_c + 4, // block_f evaluated as a whole + (uint32_t)-2, // separate blocks from block contents + 5, // i32.const 20 + 6, // drop, all drops will be the same symbol + 7, // i32.const 10 + 6, // drop + (uint32_t)-3, // separate block_a contents + 8, // i32.const 0, if condition + 9, // block_b's if evaluated as a whole + 6, // drop + (uint32_t)-4, // separate block_b contents + 10, // i32.const 1, if condition + 11, // block_c's if evaluated as a whole + 6, // drop + (uint32_t)-5, // separate block_c contents + 5, // i32.const 20 + 6, // drop + 7, // i32.const 10 + 6, // drop + (uint32_t)-6, // separate block_d contents + 10, // i32.const 1, if condition + 11, // block_e if evaluated as a whole + 6, // drop + (uint32_t)-7, // separate block_e contents + 8, // i32.const 0, if condition + 11, // block_f's if evaluated as a whole + 6, // drop + (uint32_t)-8, // separate block_f contents + 12, // i32.const 40 + (uint32_t)-9, // separate block_b if-true + 13, // i32.const 5 + (uint32_t)-10, // separate block_b if-false + 14, // i32.const 30 + (uint32_t)-11, // separate block_c if-true + 14, // i32.const 30 + (uint32_t)-12, // separate block_e if-true + 14, // i32.const 30 + (uint32_t)-13 // separate block_f if-true })); } |