@@ -1681,7 +1681,7 @@ namespace Slang
1681
1681
{
1682
1682
// TODO: actually implement matching here. For now we'll
1683
1683
// just pretend that things are satisfied in order to make progress..
1684
- requirementDict.Add (requiredMemberDeclRef, DeclRef<Decl>(memberDecl, nullptr ));
1684
+ requirementDict.AddIfNotExists (requiredMemberDeclRef, DeclRef<Decl>(memberDecl, nullptr ));
1685
1685
return true ;
1686
1686
}
1687
1687
@@ -1927,10 +1927,16 @@ namespace Slang
1927
1927
// (via the given `inheritanceDecl`) actually provides
1928
1928
// members to satisfy all the requirements in the interface.
1929
1929
bool checkInterfaceConformance (
1930
+ HashSet<DeclRef<InterfaceDecl>> & checkedInterfaceDeclRef,
1930
1931
DeclRef<AggTypeDeclBase> typeDeclRef,
1931
1932
InheritanceDecl* inheritanceDecl,
1932
1933
DeclRef<InterfaceDecl> interfaceDeclRef)
1933
1934
{
1935
+ if (!checkedInterfaceDeclRef.Contains (interfaceDeclRef))
1936
+ checkedInterfaceDeclRef.Add (interfaceDeclRef);
1937
+ else
1938
+ return true ;
1939
+
1934
1940
bool result = true ;
1935
1941
1936
1942
// We need to check the declaration of the interface
@@ -1960,6 +1966,7 @@ namespace Slang
1960
1966
//
1961
1967
// TODO: we *really* need a linearization step here!!!!
1962
1968
result = result && checkConformanceToType (
1969
+ checkedInterfaceDeclRef,
1963
1970
typeDeclRef,
1964
1971
inheritanceDecl,
1965
1972
getBaseType (requiredInheritanceDeclRef));
@@ -1985,6 +1992,7 @@ namespace Slang
1985
1992
}
1986
1993
1987
1994
bool checkConformanceToType (
1995
+ HashSet<DeclRef<InterfaceDecl>>& checkedInterfaceDeclRefs,
1988
1996
DeclRef<AggTypeDeclBase> typeDeclRef,
1989
1997
InheritanceDecl* inheritanceDecl,
1990
1998
Type* baseType)
@@ -1998,6 +2006,7 @@ namespace Slang
1998
2006
// We need to check that it provides all of the members
1999
2007
// required by that interface.
2000
2008
return checkInterfaceConformance (
2009
+ checkedInterfaceDeclRefs,
2001
2010
typeDeclRef,
2002
2011
inheritanceDecl,
2003
2012
baseInterfaceDeclRef);
@@ -2019,7 +2028,8 @@ namespace Slang
2019
2028
// Look at the type being inherited from, and validate
2020
2029
// appropriately.
2021
2030
auto baseType = inheritanceDecl->base .type ;
2022
- return checkConformanceToType (typeDecl, inheritanceDecl, baseType.As <Type>());
2031
+ HashSet<DeclRef<InterfaceDecl>> checkdInterfaceDeclRefs;
2032
+ return checkConformanceToType (checkdInterfaceDeclRefs, typeDecl, inheritanceDecl, baseType.As <Type>());
2023
2033
}
2024
2034
2025
2035
bool checkConformance (
@@ -2107,7 +2117,6 @@ namespace Slang
2107
2117
{
2108
2118
checkDecl (member);
2109
2119
}
2110
-
2111
2120
decl->SetCheckState (getCheckedState ());
2112
2121
}
2113
2122
@@ -4672,9 +4681,12 @@ namespace Slang
4672
4681
// Create a witness that attests to the fact that `type`
4673
4682
// is equal to itself.
4674
4683
RefPtr<Val> createTypeEqualityWitness (
4675
- Type* /* type*/ )
4684
+ Type* type)
4676
4685
{
4677
- SLANG_UNEXPECTED (" unimplemented" );
4686
+ RefPtr<TypeEqualityWitness> rs = new TypeEqualityWitness ();
4687
+ rs->sub = type;
4688
+ rs->sup = type;
4689
+ return rs;
4678
4690
}
4679
4691
4680
4692
// If `sub` is a subtype of `sup`, then return a value that
@@ -7141,4 +7153,8 @@ namespace Slang
7141
7153
return subst;
7142
7154
}
7143
7155
7156
+ void checkDecl (SemanticsVisitor* visitor, Decl* decl)
7157
+ {
7158
+ visitor->checkDecl (decl);
7159
+ }
7144
7160
}
0 commit comments