| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- #include "toolchain/check/check.h"
- #include "common/check.h"
- #include "toolchain/base/pretty_stack_trace_function.h"
- #include "toolchain/base/value_store.h"
- #include "toolchain/check/context.h"
- #include "toolchain/diagnostics/diagnostic_emitter.h"
- #include "toolchain/parse/tree.h"
- #include "toolchain/parse/tree_node_location_translator.h"
- #include "toolchain/sem_ir/file.h"
- namespace Carbon::Check {
- struct UnitInfo {
- explicit UnitInfo(Unit& unit)
- : unit(&unit),
- translator(unit.tokens, unit.tokens->filename(), unit.parse_tree),
- err_tracker(*unit.consumer),
- emitter(translator, err_tracker) {}
- Unit* unit;
- // Emitter information.
- Parse::NodeLocationTranslator translator;
- ErrorTrackingDiagnosticConsumer err_tracker;
- DiagnosticEmitter<Parse::Node> emitter;
- // A list of outgoing imports.
- llvm::SmallVector<std::pair<Parse::Node, UnitInfo*>> imports;
- // The remaining number of imports which must be checked before this unit can
- // be processed.
- int32_t imports_remaining = 0;
- // A list of incoming imports. This will be empty for `impl` files, because
- // imports only touch `api` files.
- llvm::SmallVector<UnitInfo*> incoming_imports;
- };
- // Produces and checks the IR for the provided Parse::Tree.
- // TODO: Both valid and invalid imports should be recorded on the SemIR. Invalid
- // imports should suppress errors where it makes sense.
- static auto CheckParseTree(const SemIR::File& builtin_ir, UnitInfo& unit_info,
- llvm::raw_ostream* vlog_stream) -> void {
- unit_info.unit->sem_ir->emplace(*unit_info.unit->value_stores,
- unit_info.unit->tokens->filename().str(),
- &builtin_ir);
- // For ease-of-access.
- SemIR::File& sem_ir = **unit_info.unit->sem_ir;
- const Parse::Tree& parse_tree = *unit_info.unit->parse_tree;
- Check::Context context(*unit_info.unit->tokens, unit_info.emitter, parse_tree,
- sem_ir, vlog_stream);
- PrettyStackTraceFunction context_dumper(
- [&](llvm::raw_ostream& output) { context.PrintForStackDump(output); });
- // Add a block for the Parse::Tree.
- context.inst_block_stack().Push();
- context.PushScope();
- // Loops over all nodes in the tree. On some errors, this may return early,
- // for example if an unrecoverable state is encountered.
- for (auto parse_node : parse_tree.postorder()) {
- // clang warns on unhandled enum values; clang-tidy is incorrect here.
- // NOLINTNEXTLINE(bugprone-switch-missing-default-case)
- switch (auto parse_kind = parse_tree.node_kind(parse_node)) {
- #define CARBON_PARSE_NODE_KIND(Name) \
- case Parse::NodeKind::Name: { \
- if (!Check::Handle##Name(context, parse_node)) { \
- CARBON_CHECK(unit_info.err_tracker.seen_error()) \
- << "Handle" #Name " returned false without printing a diagnostic"; \
- sem_ir.set_has_errors(true); \
- return; \
- } \
- break; \
- }
- #include "toolchain/parse/node_kind.def"
- }
- }
- // Pop information for the file-level scope.
- sem_ir.set_top_inst_block_id(context.inst_block_stack().Pop());
- context.PopScope();
- context.VerifyOnFinish();
- sem_ir.set_has_errors(unit_info.err_tracker.seen_error());
- #ifndef NDEBUG
- if (auto verify = sem_ir.Verify(); !verify.ok()) {
- CARBON_FATAL() << sem_ir << "Built invalid semantics IR: " << verify.error()
- << "\n";
- }
- #endif
- }
- // The package and library names, used as map keys.
- using ImportKey = std::pair<llvm::StringRef, llvm::StringRef>;
- // Returns a key form of the package object. file_package_id is only used for
- // imports, not the main package directive; as a consequence, it will be invalid
- // for the main package directive.
- static auto GetImportKey(UnitInfo& unit_info, IdentifierId file_package_id,
- Parse::Tree::PackagingNames names) -> ImportKey {
- auto* stores = unit_info.unit->value_stores;
- llvm::StringRef package_name =
- names.package_id.is_valid() ? stores->identifiers().Get(names.package_id)
- : file_package_id.is_valid() ? stores->identifiers().Get(file_package_id)
- : "";
- llvm::StringRef library_name =
- names.library_id.is_valid()
- ? stores->string_literals().Get(names.library_id)
- : "";
- return {package_name, library_name};
- }
- static constexpr llvm::StringLiteral ExplicitMainName = "Main";
- // Marks an import as required on both the source and target file.
- //
- // The ID comparisons between the import and unit are okay because they both
- // come from the same file.
- static auto TrackImport(
- llvm::DenseMap<ImportKey, UnitInfo*>& api_map,
- llvm::DenseMap<ImportKey, Parse::Node>* explicit_import_map,
- UnitInfo& unit_info, Parse::Tree::PackagingNames import) -> void {
- const auto& packaging = unit_info.unit->parse_tree->packaging_directive();
- IdentifierId file_package_id =
- packaging ? packaging->names.package_id : IdentifierId::Invalid;
- auto import_key = GetImportKey(unit_info, file_package_id, import);
- // True if the import has `Main` as the package name, even if it comes from
- // the file's packaging (diagnostics may differentiate).
- bool is_explicit_main = import_key.first == ExplicitMainName;
- // Explicit imports need more validation than implicit ones. We try to do
- // these in an order of imports that should be removed, followed by imports
- // that might be valid with syntax fixes.
- if (explicit_import_map) {
- // Diagnose redundant imports.
- if (auto [insert_it, success] =
- explicit_import_map->insert({import_key, import.node});
- !success) {
- CARBON_DIAGNOSTIC(RepeatedImport, Error,
- "Library imported more than once.");
- CARBON_DIAGNOSTIC(FirstImported, Note, "First import here.");
- unit_info.emitter.Build(import.node, RepeatedImport)
- .Note(insert_it->second, FirstImported)
- .Emit();
- return;
- }
- // True if the file's package is implicitly `Main` (by omitting an explicit
- // package name).
- bool is_file_implicit_main =
- !packaging || !packaging->names.package_id.is_valid();
- // True if the import is using implicit "current package" syntax (by
- // omitting an explicit package name).
- bool is_import_implicit_current_package = !import.package_id.is_valid();
- // True if the import is using `default` library syntax.
- bool is_import_default_library = !import.library_id.is_valid();
- // True if the import and file point at the same package, even by
- // incorrectly specifying the current package name to `import`.
- bool is_same_package = is_import_implicit_current_package ||
- import.package_id == file_package_id;
- // True if the import points at the same library as the file's library.
- bool is_same_library =
- is_same_package &&
- (packaging ? import.library_id == packaging->names.library_id
- : is_import_default_library);
- // Diagnose explicit imports of the same library, whether from `api` or
- // `impl`.
- if (is_same_library) {
- CARBON_DIAGNOSTIC(ExplicitImportApi, Error,
- "Explicit import of `api` from `impl` file is "
- "redundant with implicit import.");
- CARBON_DIAGNOSTIC(ImportSelf, Error, "File cannot import itself.");
- bool is_impl =
- !packaging || packaging->api_or_impl == Parse::Tree::ApiOrImpl::Impl;
- unit_info.emitter.Emit(import.node,
- is_impl ? ExplicitImportApi : ImportSelf);
- return;
- }
- // Diagnose explicit imports of `Main//default`. There is no `api` for it.
- // This lets other diagnostics handle explicit `Main` package naming.
- if (is_file_implicit_main && is_import_implicit_current_package &&
- is_import_default_library) {
- CARBON_DIAGNOSTIC(ImportMainDefaultLibrary, Error,
- "Cannot import `Main//default`.");
- unit_info.emitter.Emit(import.node, ImportMainDefaultLibrary);
- return;
- }
- if (!is_import_implicit_current_package) {
- // Diagnose explicit imports of the same package that use the package
- // name.
- if (is_same_package || (is_file_implicit_main && is_explicit_main)) {
- CARBON_DIAGNOSTIC(
- ImportCurrentPackageByName, Error,
- "Imports from the current package must omit the package name.");
- unit_info.emitter.Emit(import.node, ImportCurrentPackageByName);
- return;
- }
- // Diagnose explicit imports from `Main`.
- if (is_explicit_main) {
- CARBON_DIAGNOSTIC(ImportMainPackage, Error,
- "Cannot import `Main` from other packages.");
- unit_info.emitter.Emit(import.node, ImportMainPackage);
- return;
- }
- }
- } else if (is_explicit_main) {
- // An implicit import with an explicit `Main` occurs when a `package` rule
- // has bad syntax, which will have been diagnosed when building the API map.
- // As a consequence, we return silently.
- return;
- }
- if (auto api = api_map.find(import_key); api != api_map.end()) {
- unit_info.imports.push_back({import.node, api->second});
- ++unit_info.imports_remaining;
- api->second->incoming_imports.push_back(&unit_info);
- } else {
- CARBON_DIAGNOSTIC(LibraryApiNotFound, Error,
- "Corresponding API not found.");
- CARBON_DIAGNOSTIC(ImportNotFound, Error, "Imported API not found.");
- unit_info.emitter.Emit(
- import.node, explicit_import_map ? ImportNotFound : LibraryApiNotFound);
- }
- }
- auto CheckParseTrees(const SemIR::File& builtin_ir,
- llvm::MutableArrayRef<Unit> units,
- llvm::raw_ostream* vlog_stream) -> void {
- // Prepare diagnostic emitters in case we run into issues during package
- // checking.
- //
- // UnitInfo is big due to its SmallVectors, so we default to 0 on the stack.
- llvm::SmallVector<UnitInfo, 0> unit_infos;
- unit_infos.reserve(units.size());
- for (auto& unit : units) {
- unit_infos.emplace_back(unit);
- }
- // Create a map of APIs which might be imported.
- llvm::DenseMap<ImportKey, UnitInfo*> api_map;
- for (auto& unit_info : unit_infos) {
- // TODO: It may be good to validate filenames here, but that would have use
- // put .impl.carbon on almost all tests (which are in `Main//default`). We
- // should probably get leads direction on filenames before enforcing.
- const auto& packaging = unit_info.unit->parse_tree->packaging_directive();
- // An import key formed from the `package` or `library` directive. Or, for
- // Main//default, a placeholder key.
- auto import_key = packaging ? GetImportKey(unit_info, IdentifierId::Invalid,
- packaging->names)
- // Construct a boring key for Main//default.
- : ImportKey{"", ""};
- // Diagnose explicit `Main` uses before they become marked as possible
- // APIs.
- if (import_key.first == ExplicitMainName) {
- CARBON_DIAGNOSTIC(ExplicitMainPackage, Error,
- "`Main//default` must omit `package` directive.");
- CARBON_DIAGNOSTIC(ExplicitMainLibrary, Error,
- "Use `library` directive in `Main` package libraries.");
- unit_info.emitter.Emit(packaging->names.node, import_key.second.empty()
- ? ExplicitMainPackage
- : ExplicitMainLibrary);
- continue;
- }
- if (packaging && packaging->api_or_impl == Parse::Tree::ApiOrImpl::Impl) {
- continue;
- }
- auto [entry, success] = api_map.insert({import_key, &unit_info});
- if (!success) {
- llvm::StringRef prev_filename = entry->second->unit->tokens->filename();
- if (packaging) {
- CARBON_DIAGNOSTIC(DuplicateLibraryApi, Error,
- "Library's API previously provided by `{0}`.",
- llvm::StringRef);
- unit_info.emitter.Emit(packaging->names.node, DuplicateLibraryApi,
- prev_filename);
- } else {
- CARBON_DIAGNOSTIC(DuplicateMainApi, Error,
- "Main//default previously provided by `{0}`.",
- llvm::StringRef);
- // Use the invalid node because there's no node to associate with.
- unit_info.emitter.Emit(Parse::Node::Invalid, DuplicateMainApi,
- prev_filename);
- }
- }
- }
- // Mark down imports for all files.
- llvm::SmallVector<UnitInfo*> ready_to_check;
- ready_to_check.reserve(units.size());
- for (auto& unit_info : unit_infos) {
- if (const auto& packaging =
- unit_info.unit->parse_tree->packaging_directive()) {
- if (packaging->api_or_impl == Parse::Tree::ApiOrImpl::Impl) {
- // An `impl` has an implicit import of its `api`.
- TrackImport(api_map, nullptr, unit_info, packaging->names);
- }
- }
- llvm::DenseMap<ImportKey, Parse::Node> explicit_import_map;
- for (const auto& import : unit_info.unit->parse_tree->imports()) {
- TrackImport(api_map, &explicit_import_map, unit_info, import);
- }
- // If there were no imports, mark the file as ready to check for below.
- if (unit_info.imports_remaining == 0) {
- ready_to_check.push_back(&unit_info);
- }
- }
- // Check everything with no dependencies. Earlier entries with dependencies
- // will be checked as soon as all their dependencies have been checked.
- for (int check_index = 0;
- check_index < static_cast<int>(ready_to_check.size()); ++check_index) {
- auto* unit_info = ready_to_check[check_index];
- CheckParseTree(builtin_ir, *unit_info, vlog_stream);
- for (auto* incoming_import : unit_info->incoming_imports) {
- --incoming_import->imports_remaining;
- if (incoming_import->imports_remaining == 0) {
- ready_to_check.push_back(incoming_import);
- }
- }
- }
- // If there are still units with remaining imports, it means there's a
- // dependency loop.
- if (ready_to_check.size() < unit_infos.size()) {
- // Go through units and mask out unevaluated imports. This breaks everything
- // associated with a loop equivalently, whether it's part of it or depending
- // on a part of it.
- // TODO: Better identify cycles, maybe try to untangle them.
- for (auto& unit_info : unit_infos) {
- if (unit_info.imports_remaining > 0) {
- for (auto* import_it = unit_info.imports.begin();
- import_it != unit_info.imports.end();) {
- auto* import_unit = import_it->second->unit;
- if (*import_unit->sem_ir) {
- ++import_it;
- } else {
- CARBON_DIAGNOSTIC(ImportCycleDetected, Error,
- "Import cannot be used due to a cycle. Cycle "
- "must be fixed to import.");
- unit_info.emitter.Emit(import_it->first, ImportCycleDetected);
- import_it = unit_info.imports.erase(import_it);
- }
- }
- }
- }
- // Check the remaining file contents, which are probably broken due to
- // incomplete imports.
- for (auto& unit_info : unit_infos) {
- if (unit_info.imports_remaining > 0) {
- CheckParseTree(builtin_ir, unit_info, vlog_stream);
- }
- }
- }
- }
- } // namespace Carbon::Check
|