mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Introduce three new requests for name lookup operations that avoid performing type checking/semantic analysis. They work using syntactic information (e.g., TypeReprs) and AST-level name lookup operations that will (eventually) avoid and calls back into type checking. The new requests are: * Retrieve the superclass declaration of a protocol or class declaration. Use this request for ClassDecl::getSuperclassDecl() and ProtocolDecl::getSuperclassDecl(). * Retrieve the types “directly referenced” by a particular location in an inheritance clause. This query is based on looking at the TypeReprs and performing fairly-minimal lookup, so it does not involve any Type computations. * Retrieve the types “directly referenced” by the underlying type of a typealias. This query allows us to desugar a typealias without forming a type. Along with these is a core operation to transform a set of TypeDecl*s into a set of NominalTypeDecl*s, looking through typealiases, and without involving Type at all. The superclass-decl request does this to find a ClassDecl; other requests will eventually do this to (e.g.) find all of the protocols mentioned in an inheritance clause.
101 lines
4.2 KiB
C++
101 lines
4.2 KiB
C++
//===--- 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<TypeDecl *, ExtensionDecl *> decl,
|
|
unsigned index) const {
|
|
// FIXME: Copy-pasted from InheritedTypeRequest. We need to consolidate here.
|
|
if (auto typeDecl = decl.dyn_cast<TypeDecl *>())
|
|
return typeDecl->getInherited()[index];
|
|
|
|
return decl.get<ExtensionDecl *>()->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);
|
|
}
|
|
|
|
// Define request evaluation functions for each of the name lookup requests.
|
|
static AbstractRequestFunction *nameLookupRequestFunctions[] = {
|
|
#define SWIFT_TYPEID(Name) \
|
|
reinterpret_cast<AbstractRequestFunction *>(&Name::evaluateRequest),
|
|
#include "swift/AST/NameLookupTypeIDZone.def"
|
|
#undef SWIFT_TYPEID
|
|
};
|
|
|
|
void swift::registerNameLookupRequestFunctions(Evaluator &evaluator) {
|
|
evaluator.registerRequestFunctions(SWIFT_NAME_LOOKUP_REQUESTS_TYPEID_ZONE,
|
|
nameLookupRequestFunctions);
|
|
}
|