Skip to content

Commit 68f529a

Browse files
authored
Merge pull request shader-slang#370 from csyonghe/master
bug fixes to get falcor example shader code to compile.
2 parents 59691ae + a74a549 commit 68f529a

File tree

6 files changed

+72
-11
lines changed

6 files changed

+72
-11
lines changed

source/slang/check.cpp

+21-5
Original file line numberDiff line numberDiff line change
@@ -1681,7 +1681,7 @@ namespace Slang
16811681
{
16821682
// TODO: actually implement matching here. For now we'll
16831683
// 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));
16851685
return true;
16861686
}
16871687

@@ -1927,10 +1927,16 @@ namespace Slang
19271927
// (via the given `inheritanceDecl`) actually provides
19281928
// members to satisfy all the requirements in the interface.
19291929
bool checkInterfaceConformance(
1930+
HashSet<DeclRef<InterfaceDecl>> & checkedInterfaceDeclRef,
19301931
DeclRef<AggTypeDeclBase> typeDeclRef,
19311932
InheritanceDecl* inheritanceDecl,
19321933
DeclRef<InterfaceDecl> interfaceDeclRef)
19331934
{
1935+
if (!checkedInterfaceDeclRef.Contains(interfaceDeclRef))
1936+
checkedInterfaceDeclRef.Add(interfaceDeclRef);
1937+
else
1938+
return true;
1939+
19341940
bool result = true;
19351941

19361942
// We need to check the declaration of the interface
@@ -1960,6 +1966,7 @@ namespace Slang
19601966
//
19611967
// TODO: we *really* need a linearization step here!!!!
19621968
result = result && checkConformanceToType(
1969+
checkedInterfaceDeclRef,
19631970
typeDeclRef,
19641971
inheritanceDecl,
19651972
getBaseType(requiredInheritanceDeclRef));
@@ -1985,6 +1992,7 @@ namespace Slang
19851992
}
19861993

19871994
bool checkConformanceToType(
1995+
HashSet<DeclRef<InterfaceDecl>>& checkedInterfaceDeclRefs,
19881996
DeclRef<AggTypeDeclBase> typeDeclRef,
19891997
InheritanceDecl* inheritanceDecl,
19901998
Type* baseType)
@@ -1998,6 +2006,7 @@ namespace Slang
19982006
// We need to check that it provides all of the members
19992007
// required by that interface.
20002008
return checkInterfaceConformance(
2009+
checkedInterfaceDeclRefs,
20012010
typeDeclRef,
20022011
inheritanceDecl,
20032012
baseInterfaceDeclRef);
@@ -2019,7 +2028,8 @@ namespace Slang
20192028
// Look at the type being inherited from, and validate
20202029
// appropriately.
20212030
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>());
20232033
}
20242034

20252035
bool checkConformance(
@@ -2107,7 +2117,6 @@ namespace Slang
21072117
{
21082118
checkDecl(member);
21092119
}
2110-
21112120
decl->SetCheckState(getCheckedState());
21122121
}
21132122

@@ -4672,9 +4681,12 @@ namespace Slang
46724681
// Create a witness that attests to the fact that `type`
46734682
// is equal to itself.
46744683
RefPtr<Val> createTypeEqualityWitness(
4675-
Type* /*type*/)
4684+
Type* type)
46764685
{
4677-
SLANG_UNEXPECTED("unimplemented");
4686+
RefPtr<TypeEqualityWitness> rs = new TypeEqualityWitness();
4687+
rs->sub = type;
4688+
rs->sup = type;
4689+
return rs;
46784690
}
46794691

46804692
// If `sub` is a subtype of `sup`, then return a value that
@@ -7141,4 +7153,8 @@ namespace Slang
71417153
return subst;
71427154
}
71437155

7156+
void checkDecl(SemanticsVisitor* visitor, Decl* decl)
7157+
{
7158+
visitor->checkDecl(decl);
7159+
}
71447160
}

source/slang/ir.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -4889,8 +4889,10 @@ namespace Slang
48894889
{
48904890
if (auto subDeclRefType = subtypeWitness->sub.As<DeclRefType>())
48914891
{
4892-
auto genericWitnessTableName = getMangledNameForConformanceWitness(DeclRef<Decl>(subDeclRefType->declRef.getDecl(), nullptr), subtypeWitness->sup);
4892+
auto defaultSubst = createDefaultSubstitutions(entryPointRequest->compileRequest->mSession, subDeclRefType->declRef.getDecl());
4893+
auto genericWitnessTableName = getMangledNameForConformanceWitness(DeclRef<Decl>(subDeclRefType->declRef.getDecl(), defaultSubst), subtypeWitness->sup);
48934894
table = findWitnessTableByName(genericWitnessTableName);
4895+
SLANG_ASSERT(table);
48944896
WitnessTableSpecializationWorkItem workItem;
48954897
workItem.srcTable = (IRWitnessTable*)table;
48964898
workItem.dstTable = context->builder->createWitnessTable();

source/slang/lookup.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace Slang {
66

7+
void checkDecl(SemanticsVisitor* visitor, Decl* decl);
8+
79
//
810

911
DeclRef<ExtensionDecl> ApplyExtensionToType(
@@ -224,6 +226,10 @@ void DoLocalLookupImpl(
224226
LookupResult& result,
225227
BreadcrumbInfo* inBreadcrumbs)
226228
{
229+
if (result.lookedupDecls.Contains(containerDeclRef))
230+
return;
231+
result.lookedupDecls.Add(containerDeclRef);
232+
227233
ContainerDecl* containerDecl = containerDeclRef.getDecl();
228234

229235
// Ensure that the lookup dictionary in the container is up to date
@@ -318,6 +324,7 @@ void DoLocalLookupImpl(
318324
auto baseInterfaces = getMembersOfType<InheritanceDecl>(containerDeclRef);
319325
for (auto inheritanceDeclRef : baseInterfaces)
320326
{
327+
checkDecl(request.semantics, inheritanceDeclRef.decl);
321328
auto baseType = inheritanceDeclRef.getDecl()->base.type.As<DeclRefType>();
322329
SLANG_ASSERT(baseType);
323330
int diff = 0;

source/slang/syntax.cpp

+27-4
Original file line numberDiff line numberDiff line change
@@ -1673,6 +1673,32 @@ void Type::accept(IValVisitor* visitor, void* extra)
16731673

16741674
// TODO: should really have a `type.cpp` and a `witness.cpp`
16751675

1676+
bool TypeEqualityWitness::EqualsVal(Val* val)
1677+
{
1678+
auto otherWitness = dynamic_cast<TypeEqualityWitness*>(val);
1679+
if (!otherWitness)
1680+
return false;
1681+
return sub->Equals(otherWitness->sub);
1682+
}
1683+
1684+
RefPtr<Val> TypeEqualityWitness::SubstituteImpl(SubstitutionSet subst, int * ioDiff)
1685+
{
1686+
RefPtr<TypeEqualityWitness> rs = new TypeEqualityWitness();
1687+
rs->sub = sub->SubstituteImpl(subst, ioDiff).As<Type>();
1688+
rs->sup = sup->SubstituteImpl(subst, ioDiff).As<Type>();
1689+
return rs;
1690+
}
1691+
1692+
String TypeEqualityWitness::ToString()
1693+
{
1694+
return "TypeEqualityWitness(" + sub->ToString() + ")";
1695+
}
1696+
1697+
int TypeEqualityWitness::GetHashCode()
1698+
{
1699+
return sub->GetHashCode();
1700+
}
1701+
16761702
bool DeclaredSubtypeWitness::EqualsVal(Val* val)
16771703
{
16781704
auto otherWitness = dynamic_cast<DeclaredSubtypeWitness*>(val);
@@ -1760,10 +1786,7 @@ void Type::accept(IValVisitor* visitor, void* extra)
17601786

17611787
int DeclaredSubtypeWitness::GetHashCode()
17621788
{
1763-
auto hash = sub->GetHashCode();
1764-
hash = combineHash(hash, sup->GetHashCode());
1765-
hash = combineHash(hash, declRef.GetHashCode());
1766-
return hash;
1789+
return declRef.GetHashCode();
17671790
}
17681791

17691792
// TransitiveSubtypeWitness

source/slang/syntax.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -969,6 +969,8 @@ namespace Slang
969969
// used at all, to avoid allocation.
970970
List<LookupResultItem> items;
971971

972+
HashSet<DeclRef<ContainerDecl>> lookedupDecls;
973+
972974
// Was at least one result found?
973975
bool isValid() const { return item.declRef.getDecl() != nullptr; }
974976

@@ -1009,7 +1011,6 @@ namespace Slang
10091011
struct LookupRequest
10101012
{
10111013
SemanticsVisitor* semantics = nullptr;
1012-
10131014
RefPtr<Scope> scope = nullptr;
10141015
RefPtr<Scope> endScope = nullptr;
10151016

source/slang/val-defs.h

+12
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,18 @@ ABSTRACT_SYNTAX_CLASS(SubtypeWitness, Witness)
9090
)
9191
END_SYNTAX_CLASS()
9292

93+
SYNTAX_CLASS(TypeEqualityWitness, SubtypeWitness)
94+
RAW(
95+
virtual bool EqualsVal(Val* val) override;
96+
virtual String ToString() override;
97+
virtual int GetHashCode() override;
98+
virtual RefPtr<Val> SubstituteImpl(SubstitutionSet subst, int * ioDiff) override;
99+
virtual DeclRef<Decl> getLastStepDeclRef() override
100+
{
101+
return DeclRef<Decl>();
102+
}
103+
)
104+
END_SYNTAX_CLASS()
93105
// A witness that one type is a subtype of another
94106
// because some in-scope declaration says so
95107
SYNTAX_CLASS(DeclaredSubtypeWitness, SubtypeWitness)

0 commit comments

Comments
 (0)