//===--- NameLookupRequests.cpp - Name Lookup Requests --------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// #include "swift/AST/NameLookupRequests.h" #include "swift/Subsystems.h" #include "swift/AST/Evaluator.h" #include "swift/AST/Decl.h" #include "swift/AST/Module.h" using namespace swift; namespace swift { // Implement the name lookup type zone. #define SWIFT_TYPEID_ZONE SWIFT_NAME_LOOKUP_REQUESTS_TYPEID_ZONE #define SWIFT_TYPEID_HEADER "swift/AST/NameLookupTypeIDZone.def" #include "swift/Basic/ImplementTypeIDZone.h" #undef SWIFT_TYPEID_ZONE #undef SWIFT_TYPEID_HEADER } //----------------------------------------------------------------------------// // Referenced inherited decls computation. //----------------------------------------------------------------------------// TypeLoc &InheritedDeclsReferencedRequest::getTypeLoc( llvm::PointerUnion decl, unsigned index) const { // FIXME: Copy-pasted from InheritedTypeRequest. We need to consolidate here. if (auto typeDecl = decl.dyn_cast()) return typeDecl->getInherited()[index]; return decl.get()->getInherited()[index]; } void InheritedDeclsReferencedRequest::diagnoseCycle( DiagnosticEngine &diags) const { const auto &storage = getStorage(); auto &typeLoc = getTypeLoc(std::get<0>(storage), std::get<1>(storage)); diags.diagnose(typeLoc.getLoc(), diag::circular_reference); } void InheritedDeclsReferencedRequest::noteCycleStep( DiagnosticEngine &diags) const { const auto &storage = getStorage(); auto &typeLoc = getTypeLoc(std::get<0>(storage), std::get<1>(storage)); diags.diagnose(typeLoc.getLoc(), diag::circular_reference_through); } //----------------------------------------------------------------------------// // Referenced underlying type declarations computation. //----------------------------------------------------------------------------// void UnderlyingTypeDeclsReferencedRequest::diagnoseCycle( DiagnosticEngine &diags) const { // FIXME: Improve this diagnostic. auto subjectDecl = std::get<0>(getStorage()); diags.diagnose(subjectDecl, diag::circular_reference); } void UnderlyingTypeDeclsReferencedRequest::noteCycleStep( DiagnosticEngine &diags) const { auto subjectDecl = std::get<0>(getStorage()); // FIXME: Customize this further. diags.diagnose(subjectDecl, diag::circular_reference_through); } //----------------------------------------------------------------------------// // Superclass declaration computation. //----------------------------------------------------------------------------// void SuperclassDeclRequest::diagnoseCycle(DiagnosticEngine &diags) const { // FIXME: Improve this diagnostic. auto subjectDecl = std::get<0>(getStorage()); diags.diagnose(subjectDecl, diag::circular_reference); } void SuperclassDeclRequest::noteCycleStep(DiagnosticEngine &diags) const { auto subjectDecl = std::get<0>(getStorage()); // FIXME: Customize this further. diags.diagnose(subjectDecl, diag::circular_reference_through); } //----------------------------------------------------------------------------// // Superclass declaration computation. //----------------------------------------------------------------------------// Optional ExtendedNominalRequest::getCachedResult() const { // Note: if we fail to compute any nominal declaration, it's considered // a cache miss. This allows us to recompute the extended nominal types // during extension binding. auto ext = std::get<0>(getStorage()); if (ext->ExtendedNominal) return ext->ExtendedNominal; return None; } void ExtendedNominalRequest::cacheResult(NominalTypeDecl *value) const { auto ext = std::get<0>(getStorage()); if (value) ext->ExtendedNominal = value; } void ExtendedNominalRequest::diagnoseCycle(DiagnosticEngine &diags) const { // FIXME: Improve this diagnostic. auto ext = std::get<0>(getStorage()); diags.diagnose(ext, diag::circular_reference); } void ExtendedNominalRequest::noteCycleStep(DiagnosticEngine &diags) const { auto ext = std::get<0>(getStorage()); // FIXME: Customize this further. diags.diagnose(ext, diag::circular_reference_through); } void SelfBoundsFromWhereClauseRequest::diagnoseCycle( DiagnosticEngine &diags) const { // FIXME: Improve this diagnostic. auto ext = std::get<0>(getStorage()); diags.diagnose(ext, diag::circular_reference); } void SelfBoundsFromWhereClauseRequest::noteCycleStep( DiagnosticEngine &diags) const { auto ext = std::get<0>(getStorage()); // FIXME: Customize this further. diags.diagnose(ext, diag::circular_reference_through); } // Define request evaluation functions for each of the name lookup requests. static AbstractRequestFunction *nameLookupRequestFunctions[] = { #define SWIFT_TYPEID(Name) \ reinterpret_cast(&Name::evaluateRequest), #include "swift/AST/NameLookupTypeIDZone.def" #undef SWIFT_TYPEID }; void swift::registerNameLookupRequestFunctions(Evaluator &evaluator) { evaluator.registerRequestFunctions(SWIFT_NAME_LOOKUP_REQUESTS_TYPEID_ZONE, nameLookupRequestFunctions); }