mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
22d37eccd818b51fbbefda5b6f13d2bc8f44f757
5277 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
dab697186b |
[test] Mark this recently-added crasher as requiring assertions. (#12284)
Added in Doug's
|
||
|
|
c999f621a7 | Add fixed crasher from SR-5905. | ||
|
|
b42585b98d | Add crashing test case from SR-5546. | ||
|
|
d12dbf99ea |
[Type checker] Diagnose failed attempts to resolve associated type witnesses.
If unqualified name lookup finds an associated type, but resolution to the type witness fails, produce a diagnostic rather than silently failing. Fixes the crash in SR-5825, SR-5881, and SR-5905. It's conceivable that we could resolve this with suitably global associated type inference... but that's far off and it's best not to crash until then. |
||
|
|
7e6b564bf5 | Add fixed crasher from rdar://problem/33575781 | ||
|
|
9c3d6ce265 | Add compiler crasher from SR-5825 | ||
|
|
19caa2027d | Add failing test from rdar://problem/31164540. | ||
|
|
2b54380e7d | Add now-passing test for rdar://problem/30965000. | ||
|
|
2db79df9f5 | Add crasher for rdar://problem/27383752. | ||
|
|
e770910aad | Add crashing test case for rdar://problem/26498438. | ||
|
|
0f30f5e7de |
[AST] Don't try to compute substitutions for a missing generic signature.
Eliminates the crash in rdar://problem/34184392, but we still don't handle this pattern. |
||
|
|
092a8e789a |
Temporarily disable parse_stdlib tests on Linux.
They're breaking CI because we seem to be running out of memory (?). Need to investigate. |
||
|
|
5426fe2b16 | Resolve another fixed crasher. It also doesn't need to be a long test | ||
|
|
5db9b11f2f | Address a resolved crasher | ||
|
|
797df6e8d7 |
Eliminate the _*Indexable protocols.
The various _*Indexable protocols only exist to work around the lack of recursive protocol constraints. Eliminate all of the *_Indexable protocols, collapsing their requirements into the corresponding Collection protocol (e.g., _MutableIndexable —> Collection). This introduces a number of extraneous requirements into the various Collection protocols to work around bugs in associated type inference. Specifically, to work around the lack of "global" inference of associated type witnesses. These hacks were implicitly present in the *Indexable protocols; I've made marked them as ABI FIXMEs here so we can remove them when associated type inference improves. Fixes rdar://problem/21935030 and a number of ABI FIXMEs in the library. |
||
|
|
fb253b182a |
Use a more efficient SubSequence type for lazy map and filter.
Rather than using the default slice type when slicing the collection produced by a lazy map or filter, slice the base collection and form a new lazy map/filter collection from it. This allows any optimizations provided by the collection SubSequence type to kick in, as well as ensuring that slicing a lazy collection provides the same type as producing a lazy collection of a slice. This is technically source-breaking, because someone could have spelled out the types of slicing a lazy filter or map… but it seems unlikely to matter in practice and the benefits could be significant. Fixes ABI FIXME’s #28 and #46. |
||
|
|
cd3bf0341e | [Parse] Fix crash case in parseStmtForeach | ||
|
|
a8083a08eb | Merge pull request #12187 from DougGregor/sr-5579 | ||
|
|
fa0c986c25 |
[Type checker] Make sure we fully validate ‘where’ clauses in protocols.
Fixes SR-5579 and an existing crash. |
||
|
|
f331060ba7 |
[ClangImporter] Don't add duplicate search paths
Besides saving some calls to stat(), this also causes problems when the user specifies a search path that Clang already adds by default, like $SDKROOT/Library/Frameworks/. Why? Because Swift adds its search paths after Clang has already configured its defaults, but Clang reconfigures its search paths from scratch when compiling a module to a PCM file to cache. This led to system search paths being found sooner in the primary Clang instance than in the PCM files, which in turn resulted in the PCM files being considered out of date. This isn't likely to affect people much in practice, but it's better to get right. (We ran into this during Doug's experiments in making /System/Library/PrivateFrameworks a default search path in Clang r313317; turns out that's problematic for other reasons as well.) rdar://problem/34664596 |
||
|
|
1a23d42621 |
[swiftc (60 vs. 5595)] Add crasher in swift::GenericSignatureBuilder::Constraint
Add test case for crash triggered in `swift::GenericSignatureBuilder::Constraint`.
Current number of unresolved compiler crashers: 60 (5595 resolved)
Assertion failure in `llvm/include/llvm/ADT/Optional.h (line 128)`:
```
Assertion `hasVal' failed.
When executing: T *llvm::Optional<swift::GenericSignatureBuilder::Constraint<swift::Type> >::getPointer() [T = swift::GenericSignatureBuilder::Constraint<swift::Type>]
```
Assertion context:
```c++
hasVal = false;
}
}
const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
T& getValue() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
explicit operator bool() const { return hasVal; }
bool hasValue() const { return hasVal; }
```
Stack trace:
```
0 0x0000000003e9c484 PrintStackTraceSignalHandler(void*) (/path/to/swift/bin/swift+0x3e9c484)
1 0x0000000003e9c7c6 SignalHandler(int) (/path/to/swift/bin/swift+0x3e9c7c6)
2 0x00007f3fbe08c390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390)
3 0x00007f3fbc5b1428 gsignal /build/glibc-bfm8X4/glibc-2.23/signal/../sysdeps/unix/sysv/linux/raise.c:54:0
4 0x00007f3fbc5b302a abort /build/glibc-bfm8X4/glibc-2.23/stdlib/abort.c:91:0
5 0x00007f3fbc5a9bd7 __assert_fail_base /build/glibc-bfm8X4/glibc-2.23/assert/assert.c:92:0
6 0x00007f3fbc5a9c82 (/lib/x86_64-linux-gnu/libc.so.6+0x2dc82)
7 0x000000000169bac2 swift::GenericSignatureBuilder::Constraint<swift::Type> swift::GenericSignatureBuilder::checkConstraintList<swift::Type, swift::Type>(llvm::ArrayRef<swift::GenericTypeParamType*>, std::vector<swift::GenericSignatureBuilder::Constraint<swift::Type>, std::allocator<swift::GenericSignatureBuilder::Constraint<swift::Type> > >&, llvm::function_ref<bool (swift::GenericSignatureBuilder::Constraint<swift::Type> const&)>, llvm::function_ref<swift::GenericSignatureBuilder::ConstraintRelation (swift::GenericSignatureBuilder::Constraint<swift::Type> const&)>, llvm::Optional<swift::Diag<unsigned int, swift::Type, swift::Type, swift::Type> >, swift::Diag<swift::Type, swift::Type>, swift::Diag<unsigned int, swift::Type, swift::Type>, llvm::function_ref<swift::Type (swift::Type const&)>, bool) (/path/to/swift/bin/swift+0x169bac2)
8 0x0000000001686a69 swift::GenericSignatureBuilder::checkConcreteTypeConstraints(llvm::ArrayRef<swift::GenericTypeParamType*>, swift::GenericSignatureBuilder::PotentialArchetype*) (/path/to/swift/bin/swift+0x1686a69)
9 0x0000000001684e17 swift::GenericSignatureBuilder::finalize(swift::SourceLoc, llvm::ArrayRef<swift::GenericTypeParamType*>, bool) (/path/to/swift/bin/swift+0x1684e17)
10 0x000000000168d713 swift::GenericSignatureBuilder::computeGenericSignature(swift::SourceLoc, bool) && (/path/to/swift/bin/swift+0x168d713)
11 0x000000000168d96d swift::GenericSignatureBuilder::computeRequirementSignature(swift::ProtocolDecl*) (/path/to/swift/bin/swift+0x168d96d)
12 0x0000000001649dd6 swift::ProtocolDecl::computeRequirementSignature() (/path/to/swift/bin/swift+0x1649dd6)
13 0x00000000012d22a8 swift::TypeChecker::validateGenericTypeSignature(swift::GenericTypeDecl*) (/path/to/swift/bin/swift+0x12d22a8)
14 0x00000000012a0208 swift::TypeChecker::validateDecl(swift::ValueDecl*) (/path/to/swift/bin/swift+0x12a0208)
15 0x00000000012b14ef (anonymous namespace)::DeclChecker::visitProtocolDecl(swift::ProtocolDecl*) (/path/to/swift/bin/swift+0x12b14ef)
16 0x000000000129e39f (anonymous namespace)::DeclChecker::visit(swift::Decl*) (/path/to/swift/bin/swift+0x129e39f)
17 0x000000000129e233 swift::TypeChecker::typeCheckDecl(swift::Decl*, bool) (/path/to/swift/bin/swift+0x129e233)
18 0x000000000132e9f5 swift::performTypeChecking(swift::SourceFile&, swift::TopLevelContext&, swift::OptionSet<swift::TypeCheckingFlags, unsigned int>, unsigned int, unsigned int, unsigned int, unsigned int) (/path/to/swift/bin/swift+0x132e9f5)
19 0x0000000001052ed4 swift::CompilerInstance::parseAndTypeCheckMainFile(swift::PersistentParserState&, swift::DelayedParsingCallbacks*, swift::OptionSet<swift::TypeCheckingFlags, unsigned int>) (/path/to/swift/bin/swift+0x1052ed4)
20 0x0000000001051f97 swift::CompilerInstance::parseAndCheckTypes(swift::CompilerInstance::ImplicitImports const&) (/path/to/swift/bin/swift+0x1051f97)
21 0x00000000010518ba swift::CompilerInstance::performSema() (/path/to/swift/bin/swift+0x10518ba)
22 0x00000000004bdb56 performCompile(swift::CompilerInstance&, swift::CompilerInvocation&, llvm::ArrayRef<char const*>, int&, swift::FrontendObserver*, swift::UnifiedStatsReporter*) (/path/to/swift/bin/swift+0x4bdb56)
23 0x00000000004bc919 swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) (/path/to/swift/bin/swift+0x4bc919)
24 0x0000000000474c14 main (/path/to/swift/bin/swift+0x474c14)
25 0x00007f3fbc59c830 __libc_start_main /build/glibc-bfm8X4/glibc-2.23/csu/../csu/libc-start.c:325:0
26 0x00000000004724c9 _start (/path/to/swift/bin/swift+0x4724c9)
```
|
||
|
|
d6795658e5 |
[swiftc (59 vs. 5595)] Add crasher in swift::GenericSignature::getCanonicalTypeInContext
Add test case for crash triggered in `swift::GenericSignature::getCanonicalTypeInContext`. Current number of unresolved compiler crashers: 59 (5595 resolved) /cc @DougGregor - just wanted to let you know that this crasher caused an assertion failure for the assertion `isCanonicalTypeInContext(result, builder)` added on 2017-02-02 by you in commit |
||
|
|
d32b32f3e2 |
[swiftc (58 vs. 5595)] Add crasher in swift::constraints::ConstraintSystem::getTypeOfMemberReference
Add test case for crash triggered in `swift::constraints::ConstraintSystem::getTypeOfMemberReference`. Current number of unresolved compiler crashers: 58 (5595 resolved) /cc @slavapestov - just wanted to let you know that this crasher caused an assertion failure for the assertion `!type->hasUnboundGenericType()` added on 2017-05-21 by you in commit |
||
|
|
32a7ec0078 |
[swiftc (57 vs. 5595)] Add crasher in swift::TypeBase::getDesugaredType(...)
Add test case for crash triggered in `swift::TypeBase::getDesugaredType(...)`. Current number of unresolved compiler crashers: 57 (5595 resolved) Stack trace: ``` 0 0x0000000003e9c484 PrintStackTraceSignalHandler(void*) (/path/to/swift/bin/swift+0x3e9c484) 1 0x0000000003e9c7c6 SignalHandler(int) (/path/to/swift/bin/swift+0x3e9c7c6) 2 0x00007f4a27c59390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390) 3 0x00000000016dc830 swift::TypeBase::getDesugaredType() (/path/to/swift/bin/swift+0x16dc830) 4 0x0000000001326838 resolveTypeDecl(swift::TypeChecker&, swift::TypeDecl*, swift::SourceLoc, swift::DeclContext*, swift::DeclContext*, swift::GenericIdentTypeRepr*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x1326838) 5 0x0000000001326386 resolveTopLevelIdentTypeComponent(swift::TypeChecker&, swift::DeclContext*, swift::ComponentIdentTypeRepr*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, bool, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x1326386) 6 0x0000000001320856 resolveIdentTypeComponent(swift::TypeChecker&, swift::DeclContext*, llvm::ArrayRef<swift::ComponentIdentTypeRepr*>, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, bool, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x1320856) 7 0x00000000013201da swift::TypeChecker::resolveIdentifierType(swift::DeclContext*, swift::IdentTypeRepr*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, bool, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x13201da) 8 0x0000000001320fa0 (anonymous namespace)::TypeResolver::resolveType(swift::TypeRepr*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>) (/path/to/swift/bin/swift+0x1320fa0) 9 0x0000000001320eac swift::TypeChecker::resolveType(swift::TypeRepr*, swift::DeclContext*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x1320eac) 10 0x000000000131f785 swift::TypeChecker::validateType(swift::TypeLoc&, swift::DeclContext*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x131f785) 11 0x00000000012a0158 swift::TypeChecker::validateDecl(swift::ValueDecl*) (/path/to/swift/bin/swift+0x12a0158) 12 0x00000000012d4cbd swift::TypeChecker::lookupMemberType(swift::DeclContext*, swift::Type, swift::Identifier, swift::OptionSet<swift::NameLookupFlags, unsigned int>) (/path/to/swift/bin/swift+0x12d4cbd) 13 0x0000000001320a7e resolveIdentTypeComponent(swift::TypeChecker&, swift::DeclContext*, llvm::ArrayRef<swift::ComponentIdentTypeRepr*>, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, bool, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x1320a7e) 14 0x00000000013201da swift::TypeChecker::resolveIdentifierType(swift::DeclContext*, swift::IdentTypeRepr*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, bool, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x13201da) 15 0x0000000001320fa0 (anonymous namespace)::TypeResolver::resolveType(swift::TypeRepr*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>) (/path/to/swift/bin/swift+0x1320fa0) 16 0x0000000001320eac swift::TypeChecker::resolveType(swift::TypeRepr*, swift::DeclContext*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x1320eac) 17 0x000000000131f785 swift::TypeChecker::validateType(swift::TypeLoc&, swift::DeclContext*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) (/path/to/swift/bin/swift+0x131f785) 18 0x00000000012a1445 validateTypealiasType(swift::TypeChecker&, swift::TypeAliasDecl*) (/path/to/swift/bin/swift+0x12a1445) 19 0x00000000012a02f5 swift::TypeChecker::validateDecl(swift::ValueDecl*) (/path/to/swift/bin/swift+0x12a02f5) 20 0x00000000012b14ef (anonymous namespace)::DeclChecker::visitProtocolDecl(swift::ProtocolDecl*) (/path/to/swift/bin/swift+0x12b14ef) 21 0x000000000129e39f (anonymous namespace)::DeclChecker::visit(swift::Decl*) (/path/to/swift/bin/swift+0x129e39f) 22 0x000000000129e233 swift::TypeChecker::typeCheckDecl(swift::Decl*, bool) (/path/to/swift/bin/swift+0x129e233) 23 0x000000000132e9f5 swift::performTypeChecking(swift::SourceFile&, swift::TopLevelContext&, swift::OptionSet<swift::TypeCheckingFlags, unsigned int>, unsigned int, unsigned int, unsigned int, unsigned int) (/path/to/swift/bin/swift+0x132e9f5) 24 0x0000000001052ed4 swift::CompilerInstance::parseAndTypeCheckMainFile(swift::PersistentParserState&, swift::DelayedParsingCallbacks*, swift::OptionSet<swift::TypeCheckingFlags, unsigned int>) (/path/to/swift/bin/swift+0x1052ed4) 25 0x0000000001051f97 swift::CompilerInstance::parseAndCheckTypes(swift::CompilerInstance::ImplicitImports const&) (/path/to/swift/bin/swift+0x1051f97) 26 0x00000000010518ba swift::CompilerInstance::performSema() (/path/to/swift/bin/swift+0x10518ba) 27 0x00000000004bdb56 performCompile(swift::CompilerInstance&, swift::CompilerInvocation&, llvm::ArrayRef<char const*>, int&, swift::FrontendObserver*, swift::UnifiedStatsReporter*) (/path/to/swift/bin/swift+0x4bdb56) 28 0x00000000004bc919 swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) (/path/to/swift/bin/swift+0x4bc919) 29 0x0000000000474c14 main (/path/to/swift/bin/swift+0x474c14) 30 0x00007f4a26169830 __libc_start_main /build/glibc-bfm8X4/glibc-2.23/csu/../csu/libc-start.c:325:0 31 0x00000000004724c9 _start (/path/to/swift/bin/swift+0x4724c9) ``` |
||
|
|
5995d3d290 |
[swiftc (56 vs. 5595)] Add crasher in swift::Type::transformRec
Add test case for crash triggered in `swift::Type::transformRec`. Current number of unresolved compiler crashers: 56 (5595 resolved) Stack trace: ``` 0 0x0000000003e9c484 PrintStackTraceSignalHandler(void*) (/path/to/swift/bin/swift+0x3e9c484) 1 0x0000000003e9c7c6 SignalHandler(int) (/path/to/swift/bin/swift+0x3e9c7c6) 2 0x00007f7e8df65390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390) 3 0x00000000016753a2 swift::GenericSignatureBuilder::EquivalenceClass::getAnchor(llvm::ArrayRef<swift::GenericTypeParamType*>) (/path/to/swift/bin/swift+0x16753a2) 4 0x0000000001675ab9 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675ab9) 5 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 6 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 7 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 8 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 9 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 10 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 11 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 12 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 13 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 14 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 15 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 16 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 17 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 18 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 19 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 20 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 21 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 22 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 23 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 24 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 25 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 26 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 27 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 28 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 29 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 30 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 31 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 32 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 33 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 34 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 35 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 36 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 37 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 38 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 39 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 40 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 41 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 42 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 43 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 44 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 45 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 46 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 47 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 48 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 49 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 50 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 51 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 52 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 53 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 54 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 55 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 56 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 57 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 58 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 59 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 60 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 61 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 62 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 63 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 64 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 65 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 66 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 67 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 68 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 69 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 70 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 71 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 72 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 73 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 74 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 75 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 76 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 77 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 78 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 79 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 80 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 81 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 82 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 83 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 84 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 85 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 86 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 87 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 88 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 89 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 90 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 91 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 92 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 93 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 94 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 95 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 96 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 97 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 98 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 99 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 100 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 101 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 102 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 103 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 104 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 105 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 106 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 107 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 108 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 109 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 110 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 111 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 112 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 113 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 114 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 115 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 116 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 117 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 118 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 119 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 120 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 121 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 122 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 123 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 124 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 125 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 126 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 127 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 128 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 129 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 130 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 131 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 132 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 133 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 134 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 135 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 136 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 137 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 138 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 139 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 140 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 141 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 142 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 143 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 144 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 145 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 146 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 147 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 148 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 149 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 150 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 151 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 152 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 153 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 154 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 155 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 156 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 157 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 158 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 159 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 160 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 161 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 162 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 163 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 164 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 165 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 166 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 167 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 168 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 169 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 170 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 171 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 172 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 173 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 174 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 175 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 176 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 177 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 178 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 179 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 180 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 181 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 182 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 183 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 184 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 185 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 186 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 187 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 188 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 189 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 190 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 191 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 192 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 193 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 194 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 195 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 196 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 197 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 198 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 199 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 200 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 201 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 202 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 203 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 204 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 205 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 206 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 207 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 208 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 209 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 210 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 211 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 212 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 213 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 214 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 215 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 216 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 217 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 218 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 219 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 220 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 221 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 222 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 223 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 224 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 225 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 226 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 227 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 228 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 229 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 230 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 231 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 232 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 233 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 234 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 235 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 236 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 237 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 238 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 239 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 240 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 241 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 242 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 243 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 244 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 245 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 246 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 247 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 248 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) 249 0x0000000001675e79 swift::GenericSignatureBuilder::EquivalenceClass::getTypeInContext(swift::GenericSignatureBuilder&, swift::GenericEnvironment*) (/path/to/swift/bin/swift+0x1675e79) 250 0x000000000166a4a3 swift::GenericEnvironment::QueryInterfaceTypeSubstitutions::operator()(swift::SubstitutableType*) const (/path/to/swift/bin/swift+0x166a4a3) 251 0x00000000016e5fa9 llvm::Optional<swift::Type> llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>::callback_fn<substType(swift::Type, llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions)::$_18>(long, swift::TypeBase*) (/path/to/swift/bin/swift+0x16e5fa9) 252 0x00000000016e2446 swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e2446) 253 0x00000000016e275d swift::Type::transformRec(llvm::function_ref<llvm::Optional<swift::Type> (swift::TypeBase*)>) const (/path/to/swift/bin/swift+0x16e275d) 254 0x00000000016e0e16 swift::Type::subst(llvm::function_ref<swift::Type (swift::SubstitutableType*)>, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>, swift::SubstOptions) const (/path/to/swift/bin/swift+0x16e0e16) 255 0x000000000166a5da swift::GenericEnvironment::mapTypeIntoContext(swift::Type, llvm::function_ref<llvm::Optional<swift::ProtocolConformanceRef> (swift::CanType, swift::Type, swift::ProtocolType*)>) const (/path/to/swift/bin/swift+0x166a5da) ``` |
||
|
|
1a330d7306 |
[swiftc (55 vs. 5595)] Add crasher in swift::ProtocolType::canonicalizeProtocols
Add test case for crash triggered in `swift::ProtocolType::canonicalizeProtocols`. Current number of unresolved compiler crashers: 55 (5595 resolved) Stack trace: ``` 0 0x0000000003e9c484 PrintStackTraceSignalHandler(void*) (/path/to/swift/bin/swift+0x3e9c484) 1 0x0000000003e9c7c6 SignalHandler(int) (/path/to/swift/bin/swift+0x3e9c7c6) 2 0x00007fc2aa064390 __restore_rt (/lib/x86_64-linux-gnu/libpthread.so.0+0x11390) 3 0x00000000016db70e swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16db70e) 4 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 5 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 6 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 7 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 8 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 9 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 10 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 11 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 12 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 13 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 14 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 15 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 16 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 17 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 18 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 19 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 20 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 21 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 22 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 23 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 24 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 25 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 26 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 27 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 28 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 29 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 30 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 31 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 32 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 33 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 34 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 35 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 36 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 37 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 38 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 39 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 40 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 41 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 42 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 43 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 44 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 45 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 46 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 47 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 48 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 49 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 50 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 51 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 52 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 53 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 54 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 55 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 56 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 57 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 58 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 59 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 60 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 61 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 62 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 63 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 64 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 65 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 66 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 67 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 68 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 69 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 70 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 71 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 72 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 73 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 74 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 75 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 76 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 77 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 78 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 79 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 80 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 81 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 82 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 83 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 84 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 85 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 86 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 87 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 88 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 89 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 90 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 91 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 92 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 93 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 94 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 95 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 96 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 97 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 98 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 99 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 100 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 101 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 102 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 103 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 104 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 105 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 106 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 107 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 108 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 109 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 110 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 111 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 112 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 113 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 114 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 115 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 116 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 117 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 118 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 119 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 120 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 121 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 122 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 123 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 124 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 125 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 126 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 127 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 128 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 129 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 130 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 131 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 132 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 133 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 134 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 135 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 136 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 137 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 138 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 139 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 140 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 141 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 142 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 143 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 144 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 145 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 146 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 147 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 148 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 149 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 150 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 151 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 152 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 153 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 154 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 155 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 156 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 157 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 158 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 159 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 160 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 161 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 162 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 163 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 164 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 165 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 166 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 167 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 168 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 169 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 170 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 171 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 172 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 173 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 174 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 175 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 176 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 177 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 178 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 179 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 180 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 181 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 182 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 183 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 184 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 185 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 186 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 187 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 188 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 189 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 190 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 191 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 192 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 193 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 194 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 195 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 196 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 197 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 198 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 199 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 200 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 201 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 202 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 203 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 204 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 205 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 206 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 207 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 208 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 209 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 210 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 211 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 212 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 213 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 214 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 215 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 216 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 217 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 218 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 219 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 220 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 221 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 222 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 223 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 224 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 225 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 226 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 227 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 228 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 229 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 230 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 231 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 232 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 233 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 234 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 235 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 236 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 237 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 238 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 239 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 240 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 241 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 242 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 243 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 244 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 245 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 246 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 247 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 248 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 249 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 250 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 251 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) 252 0x00000000016dc47a swift::ProtocolCompositionType::get(swift::ASTContext const&, llvm::ArrayRef<swift::Type>, bool) (/path/to/swift/bin/swift+0x16dc47a) 253 0x00000000016d7dbc swift::TypeBase::getCanonicalType() (/path/to/swift/bin/swift+0x16d7dbc) 254 0x00000000016487d5 swift::ProtocolDecl::getInheritedProtocols() const (/path/to/swift/bin/swift+0x16487d5) 255 0x00000000016dba90 swift::ProtocolType::canonicalizeProtocols(llvm::SmallVectorImpl<swift::ProtocolDecl*>&) (/path/to/swift/bin/swift+0x16dba90) ``` |
||
|
|
d93bed5ed1 |
[GSB] Move a well-formed GenericSignatureBuilder to be the canonical builder.
Once we compute a generic signature from a generic signature builder, all queries involving that generic signature will go through a separate (canonicalized) builder, and the original builder can no longer be used. The canonicalization process then creates a new, effectively identical generic signature builder. How silly. Once we’ve computed the signature of a generic signature builder, “register” it with the ASTContext, allowing us to move the existing generic signature builder into place as the canonical generic signature builder. The builder requires minimal patching but is otherwise fully usable. Thanks to Slava Pestov for the idea! |
||
|
|
54864f858c |
[Type checker] Replace a use of GenericSignatureBuilder::resolveArchetype().
The type checker shouldn’t know about potential archetypes. Use GenericSignatureBuilder::resolveEquivalenceClass() and perform the lookup into that instead. The test case change highlights an existing problem with generic signature minimization. |
||
|
|
118eb003ed | Resolve a fixed crasher | ||
|
|
044af751f3 |
Sema: Fix a failure to emit a diagnostic
CSDiag was misinterpreting the result of checkGenericArguments(). A result of SubstitutionFailure does not mean a diagnostic was emitted, only a result of Failure means that. This fixes a case where we did not emit a diagnostic, result in a crash on invalid. The diagnostic is still poor, but that's better than crashing. Fixes <https://bugs.swift.org/browse/SR-5932>, <rdar://problem/34522739>. |
||
|
|
1c32c22304 | Skip inconsistent ArrayNew tests | ||
|
|
ed5b202c8f |
[stdlib] Implement -retainCount in _SwiftNativeNS*Base
Fixes rdar://problem/28002554. |
||
|
|
3b06f2e897 |
Merge pull request #12072 from xedin/rdar-33429010
[ConstraintGraph] Don't try to contract edge of parameter bindings with `inout` attribute |
||
|
|
0c74e485a3 |
Merge pull request #12107 from apple/revert-12097-gsb-nested-type-lookup
Revert "[GSB] Centralize, clean up, and cache nested type name lookup" |
||
|
|
2129101485 | Merge pull request #12113 from xedin/rdar-33613329 | ||
|
|
9d9a6c6231 |
[Diagnostics] Restore inout ParamDecl types properly after type-check
We are currently in process of removing `InOutType`
so `VarDecl::get{Interface}Type` is going to wrap base
type into `InOutType` if its flag indicates that it's
an `inout` parameter declaration. But such type can't
be restored directly using `VarDecl::set{Interface}Type`
caller needs additional logic to extract base type.
Resolves: rdar://problem/33613329
|
||
|
|
a1ccab8a8d |
Merge pull request #12052 from slavapestov/remove-parent-field-from-type-metadata
Remove parent field from type metadata |
||
|
|
0787a4ec48 |
Merge pull request #12061 from lancep/CVarArgBoolConformance
[stdlib] Bool should conform to the CVarArg protocol |
||
|
|
8b73de60a9 |
IRGen: Remove GenericTypeRequirements::ParentType
Finally, remove the parent type metadata argument from type constructors. Now that type constructors don't take a parent metadata pointer, we can hit some asserts concerning type constructors that do not have any parameters. This happens when you define a concrete type in a fully-constrained extension of a generic type. A more efficient ABI would use concrete type metadata for these cases, but that would be a bigger change that we can do later, so for now just relax these assertions. This resolves a runtime crasher since a circular metadata case is no longer circular. I renamed the crasher to reference the more specific radar since the more general issue of circular metadata is still unresolved. |
||
|
|
8f5d8aa7f9 | Revert "[GSB] Centralize, clean up, and cache nested type name lookup" | ||
|
|
07b9232235 | Correctly handle big endian systems, updated the comment for va_arg usage | ||
|
|
d417281ed9 |
Merge pull request #12097 from DougGregor/gsb-nested-type-lookup
[GSB] Centralize, clean up, and cache nested type name lookup |
||
|
|
4b43cbe26b | Resolve a fixed crasher | ||
|
|
ab3f77baf2 |
Make SILInstruction no longer a subclass of ValueBase and
introduce a common superclass, SILNode. This is in preparation for allowing instructions to have multiple results. It is also a somewhat more elegant representation for instructions that have zero results. Instructions that are known to have exactly one result inherit from a class, SingleValueInstruction, that subclasses both ValueBase and SILInstruction. Some care must be taken when working with SILNode pointers and testing for equality; please see the comment on SILNode for more information. A number of SIL passes needed to be updated in order to handle this new distinction between SIL values and SIL instructions. Note that the SIL parser is now stricter about not trying to assign a result value from an instruction (like 'return' or 'strong_retain') that does not produce any. |
||
|
|
00f44ce24a | Revert "Create fewer generic signature builders" | ||
|
|
eccdedaf97 |
Merge pull request #12062 from DougGregor/make-fewer-gsbs
Create fewer generic signature builders |
||
|
|
80e4a2226b |
[ConstraintGraph] Don't try to contract edge of parameter bindings with inout attribute
Currently edge related to the parameter bindings is contracted without properly checking if newly created equivalence class has the same inout & l-value requirements. This patch improves the situation by disallowing contraction of the edges related to parameter binding constraint where left-hand side has `inout` attribute set. Such guarantees that parameter can get `inout` type assigned when argument gets `l-value` type. Resolves: rdar://problem/33429010 |
||
|
|
76a532b3af |
[GSB] Move a well-formed GenericSignatureBuilder to be the canonical builder.
Once we compute a generic signature from a generic signature builder, all queries involving that generic signature will go through a separate (canonicalized) builder, and the original builder can no longer be used. The canonicalization process then creates a new, effectively identical generic signature builder. How silly. Once we’ve computed the signature of a generic signature builder, “register” it with the ASTContext, allowing us to move the existing generic signature builder into place as the canonical generic signature builder. The builder requires minimal patching but is otherwise fully usable. Thanks to Slava Pestov for the idea! |
||
|
|
9fa2cc8192 | removed uneeded compiler flags | ||
|
|
6056ebede1 | Add tests for Bool’s conformance to CVarArg |