diff options
author | Thomas Lively <tlively@google.com> | 2023-01-10 15:05:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 13:05:56 -0800 |
commit | 31171ca083c7a4d1394ad7812369d385e1dd38a0 (patch) | |
tree | 51d6691faf64fdd266ca31acb5b66295a53d9cc5 /test/gtest/possible-contents.cpp | |
parent | 36e2abbcdd22b2b1707757b49fb4ac8844f28e5d (diff) | |
download | binaryen-31171ca083c7a4d1394ad7812369d385e1dd38a0.tar.gz binaryen-31171ca083c7a4d1394ad7812369d385e1dd38a0.tar.bz2 binaryen-31171ca083c7a4d1394ad7812369d385e1dd38a0.zip |
[Wasm GC] Replace `HeapType::data` with `HeapType::struct_` (#5416)
`struct` has replaced `data` in the upstream spec, so update Binaryen's types to
match. We had already supported `struct` as an alias for data, but now remove
support for `data` entirely. Also remove instructions like `ref.is_data` that
are deprecated and do not make sense without a `data` type.
Diffstat (limited to 'test/gtest/possible-contents.cpp')
-rw-r--r-- | test/gtest/possible-contents.cpp | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/test/gtest/possible-contents.cpp b/test/gtest/possible-contents.cpp index ea2a0c0f0..c6b7d000c 100644 --- a/test/gtest/possible-contents.cpp +++ b/test/gtest/possible-contents.cpp @@ -74,7 +74,7 @@ protected: Type anyref = Type(HeapType::any, Nullable); Type funcref = Type(HeapType::func, Nullable); Type i31ref = Type(HeapType::i31, Nullable); - Type dataref = Type(HeapType::data, Nullable); + Type structref = Type(HeapType::struct_, Nullable); PossibleContents none = PossibleContents::none(); @@ -104,7 +104,7 @@ protected: PossibleContents exactI32 = PossibleContents::exactType(Type::i32); PossibleContents exactAnyref = PossibleContents::exactType(anyref); PossibleContents exactFuncref = PossibleContents::exactType(funcref); - PossibleContents exactDataref = PossibleContents::exactType(dataref); + PossibleContents exactStructref = PossibleContents::exactType(structref); PossibleContents exactI31ref = PossibleContents::exactType(i31ref); PossibleContents exactNonNullAnyref = PossibleContents::exactType(Type(HeapType::any, NonNullable)); @@ -494,7 +494,7 @@ TEST_F(PossibleContentsTest, TestIntersectWithCombinations) { exactI32, exactAnyref, exactFuncref, - exactDataref, + exactStructref, exactI31ref, exactNonNullAnyref, exactNonNullFuncref, @@ -591,36 +591,36 @@ TEST_F(PossibleContentsTest, TestStructCones) { assertCombination(exactA, exactB, PossibleContents::coneType(nullA, 1)); assertCombination(exactA, exactC, PossibleContents::coneType(nullA, 1)); assertCombination(exactA, exactD, PossibleContents::coneType(nullA, 2)); - assertCombination(exactA, exactE, PossibleContents::coneType(dataref, 1)); + assertCombination(exactA, exactE, PossibleContents::coneType(structref, 1)); assertCombination( - exactA, exactDataref, PossibleContents::coneType(dataref, 1)); + exactA, exactStructref, PossibleContents::coneType(structref, 1)); assertCombination(exactB, exactB, exactB); assertCombination(exactB, exactC, PossibleContents::coneType(nullA, 1)); assertCombination(exactB, exactD, PossibleContents::coneType(nullA, 2)); - assertCombination(exactB, exactE, PossibleContents::coneType(dataref, 2)); + assertCombination(exactB, exactE, PossibleContents::coneType(structref, 2)); assertCombination( - exactB, exactDataref, PossibleContents::coneType(dataref, 2)); + exactB, exactStructref, PossibleContents::coneType(structref, 2)); assertCombination(exactC, exactC, exactC); assertCombination(exactC, exactD, PossibleContents::coneType(nullC, 1)); - assertCombination(exactC, exactE, PossibleContents::coneType(dataref, 2)); + assertCombination(exactC, exactE, PossibleContents::coneType(structref, 2)); assertCombination( - exactC, exactDataref, PossibleContents::coneType(dataref, 2)); + exactC, exactStructref, PossibleContents::coneType(structref, 2)); assertCombination(exactD, exactD, exactD); - assertCombination(exactD, exactE, PossibleContents::coneType(dataref, 3)); + assertCombination(exactD, exactE, PossibleContents::coneType(structref, 3)); assertCombination( - exactD, exactDataref, PossibleContents::coneType(dataref, 3)); + exactD, exactStructref, PossibleContents::coneType(structref, 3)); assertCombination(exactE, exactE, exactE); assertCombination( - exactE, exactDataref, PossibleContents::coneType(dataref, 1)); + exactE, exactStructref, PossibleContents::coneType(structref, 1)); - assertCombination(exactDataref, exactDataref, exactDataref); + assertCombination(exactStructref, exactStructref, exactStructref); assertCombination( - exactDataref, exactAnyref, PossibleContents::coneType(anyref, 2)); + exactStructref, exactAnyref, PossibleContents::coneType(anyref, 2)); // Combinations of cones. assertCombination(PossibleContents::coneType(nullA, 5), @@ -640,11 +640,11 @@ TEST_F(PossibleContentsTest, TestStructCones) { assertCombination(PossibleContents::coneType(nullA, 5), PossibleContents::coneType(nullE, 7), - PossibleContents::coneType(dataref, 8)); + PossibleContents::coneType(structref, 8)); assertCombination(PossibleContents::coneType(nullB, 4), - PossibleContents::coneType(dataref, 1), - PossibleContents::coneType(dataref, 6)); + PossibleContents::coneType(structref, 1), + PossibleContents::coneType(structref, 6)); // Combinations of cones and exact types. assertCombination(exactA, @@ -658,18 +658,18 @@ TEST_F(PossibleContentsTest, TestStructCones) { PossibleContents::coneType(nullA, 3)); assertCombination(exactA, PossibleContents::coneType(nullE, 2), - PossibleContents::coneType(dataref, 3)); + PossibleContents::coneType(structref, 3)); assertCombination(exactA, - PossibleContents::coneType(dataref, 1), - PossibleContents::coneType(dataref, 1)); + PossibleContents::coneType(structref, 1), + PossibleContents::coneType(structref, 1)); assertCombination(exactA, - PossibleContents::coneType(dataref, 2), - PossibleContents::coneType(dataref, 2)); + PossibleContents::coneType(structref, 2), + PossibleContents::coneType(structref, 2)); - assertCombination(exactDataref, + assertCombination(exactStructref, PossibleContents::coneType(nullB, 3), - PossibleContents::coneType(dataref, 5)); + PossibleContents::coneType(structref, 5)); // Full cones. assertCombination(PossibleContents::fullConeType(nullA), @@ -694,7 +694,7 @@ TEST_F(PossibleContentsTest, TestStructCones) { PossibleContents::fullConeType(nullA)); assertCombination(PossibleContents::fullConeType(nullA), PossibleContents::fullConeType(nullE), - PossibleContents::fullConeType(dataref)); + PossibleContents::fullConeType(structref)); // Intersections. Test with non-nullable types to avoid the null being a // possible intersection. @@ -902,7 +902,7 @@ TEST_F(PossibleContentsTest, TestOracleManyTypes) { auto bodyContents = oracle.getContents(ResultLocation{wasm->getFunction("foo"), 0}); ASSERT_TRUE(bodyContents.isConeType()); - EXPECT_EQ(bodyContents.getType().getHeapType(), HeapType::data); + EXPECT_EQ(bodyContents.getType().getHeapType(), HeapType::struct_); EXPECT_EQ(bodyContents.getCone().depth, Index(1)); } |