Files
swift-mirror/lib/AST/DiagnosticGroups.cpp
Doug Gregor d169187d75 Stop rebuilding the world whenever a diagnostic changes
The inclusion of the full diagnostic list (via DiagnosticList.h) in
DiagnosticGroups.h meant that touching any diagnostic caused most of
the world to rebuild, making me sad. Use forward declarations to limit
how much needs to be rebuilt when changing diagnostics.
2024-12-13 16:08:13 -08:00

237 lines
9.6 KiB
C++

//===--- DiagnosticGroups.cpp - Diagnostic Groups ---------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2024 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
//
//===----------------------------------------------------------------------===//
//
// This file defines the diagnostic groups enumaration, group graph
// and auxilary functions.
//
//===----------------------------------------------------------------------===//
#include "swift/AST/DiagnosticGroups.h"
#include "swift/AST/DiagnosticList.h"
#include <unordered_set>
namespace swift {
namespace {
template <size_t SupergroupsSize, size_t SubgroupsSize, size_t DiagnosticsSize>
struct GroupConnections {
std::array<DiagGroupID, SupergroupsSize> supergroups;
std::array<DiagGroupID, SubgroupsSize> subgroups;
std::array<DiagID, DiagnosticsSize> diagnostics;
constexpr GroupConnections(
const std::array<DiagGroupID, SupergroupsSize> &supergroups,
const std::array<DiagGroupID, SubgroupsSize> &subgroups,
const std::array<DiagID, DiagnosticsSize> &diagnostics)
: supergroups(supergroups), subgroups(subgroups),
diagnostics(diagnostics) {}
};
// This CTAD is needed in C++17 only. Remove after update to C++20.
template <size_t SupergroupsSize, size_t SubgroupsSize, size_t DiagnosticsSize>
GroupConnections(const std::array<DiagGroupID, SupergroupsSize> &,
const std::array<DiagGroupID, SubgroupsSize> &,
const std::array<DiagID, DiagnosticsSize> &)
-> GroupConnections<SupergroupsSize, SubgroupsSize, DiagnosticsSize>;
constexpr const auto diagnosticGroupConnections = [] {
constexpr auto sizes = [] {
std::array<size_t, DiagGroupsCount> supergroupsCount{};
std::array<size_t, DiagGroupsCount> subgroupsCount{};
std::array<size_t, DiagGroupsCount> diagnosticsCount{};
// Count edges for each diagnostic group
#define GROUP_LINK(Parent, Child) \
subgroupsCount[(size_t)DiagGroupID::Parent]++; \
supergroupsCount[(size_t)DiagGroupID::Child]++;
#include "swift/AST/DiagnosticGroups.def"
// Count attached diagnostic IDs for each diagnostic group
#define DIAG(KIND, ID, Group, Options, Text, Signature) \
diagnosticsCount[(size_t)DiagGroupID::Group]++;
#include "swift/AST/DiagnosticsAll.def"
return std::tuple{supergroupsCount, subgroupsCount, diagnosticsCount};
}();
constexpr auto supergroupsCount = std::get<0>(sizes);
constexpr auto subgroupsCount = std::get<1>(sizes);
constexpr auto diagnosticsCount = std::get<2>(sizes);
// Declare all edges
#define GROUP(Name, Version) \
std::array<DiagGroupID, supergroupsCount[(size_t)DiagGroupID::Name]> \
Name##_supergroups{}; \
std::array<DiagGroupID, subgroupsCount[(size_t)DiagGroupID::Name]> \
Name##_subgroups{}; \
std::array<DiagID, diagnosticsCount[(size_t)DiagGroupID::Name]> \
Name##_diagnostics{}; \
[[maybe_unused]] size_t Name##_supergroupsIndex = 0; \
[[maybe_unused]] size_t Name##_subgroupsIndex = 0; \
[[maybe_unused]] size_t Name##_diagnosticsIndex = 0;
#include "swift/AST/DiagnosticGroups.def"
// Bind all groups to each other
#define GROUP_LINK(Parent, Child) \
Parent##_subgroups[Parent##_subgroupsIndex++] = DiagGroupID::Child; \
Child##_supergroups[Child##_supergroupsIndex++] = DiagGroupID::Parent;
#include "swift/AST/DiagnosticGroups.def"
// Bind all diagnostics to their groups
#define DIAG(KIND, ID, Group, Options, Text, Signature) \
Group##_diagnostics[Group##_diagnosticsIndex++] = DiagID::ID;
#include "swift/AST/DiagnosticsAll.def"
// Produce the resulting structure with all the edges
#define GROUP(Name, Version) \
GroupConnections(Name##_supergroups, Name##_subgroups, Name##_diagnostics),
return std::tuple{
#include "swift/AST/DiagnosticGroups.def"
};
}();
std::unordered_map<std::string_view, DiagGroupID> nameToIDMap{
#define GROUP(Name, Version) {#Name, DiagGroupID::Name},
#include "swift/AST/DiagnosticGroups.def"
};
void traverseDepthFirst(DiagGroupID id,
std::unordered_set<DiagGroupID> &visited,
llvm::function_ref<void(const DiagGroupInfo &)> func) {
if (visited.insert(id).second) {
const auto &info = getDiagGroupInfoByID(id);
func(info);
for (const auto subgroup : info.subgroups) {
traverseDepthFirst(subgroup, visited, func);
}
}
}
} // end anonymous namespace
constexpr const std::array<DiagGroupInfo, DiagGroupsCount> diagnosticGroupsInfo{
#define GROUP(Name, Version) \
DiagGroupInfo{ \
DiagGroupID::Name, \
#Name, \
#Version, \
llvm::ArrayRef<DiagGroupID>( \
std::get<(size_t)DiagGroupID::Name>(diagnosticGroupConnections) \
.supergroups), \
llvm::ArrayRef<DiagGroupID>( \
std::get<(size_t)DiagGroupID::Name>(diagnosticGroupConnections) \
.subgroups), \
llvm::ArrayRef<DiagID>( \
std::get<(size_t)DiagGroupID::Name>(diagnosticGroupConnections) \
.diagnostics)},
#include "swift/AST/DiagnosticGroups.def"
};
const DiagGroupInfo &getDiagGroupInfoByID(DiagGroupID id) {
return diagnosticGroupsInfo[(size_t)id];
}
std::optional<DiagGroupID> getDiagGroupIDByName(std::string_view name) {
auto it = nameToIDMap.find(name);
if (it == nameToIDMap.end())
return std::nullopt;
return it->second;
}
void DiagGroupInfo::traverseDepthFirst(
llvm::function_ref<void(const DiagGroupInfo &)> func) const {
std::unordered_set<DiagGroupID> visited;
::swift::traverseDepthFirst(id, visited, func);
}
namespace validation {
template <typename F, size_t... Ints>
constexpr void unfold(F &&function, std::index_sequence<Ints...>) {
(function(std::integral_constant<size_t, Ints>{}), ...);
}
template <size_t Size, typename F>
constexpr void constexpr_for(F &&function) {
unfold(function, std::make_index_sequence<Size>());
}
template <size_t Group>
constexpr bool
hasCycleFromGroup(std::array<bool, DiagGroupsCount> &visited,
std::array<bool, DiagGroupsCount> &recursionStack) {
if (!visited[Group]) {
visited[Group] = true;
recursionStack[Group] = true;
constexpr auto subgroups =
std::get<Group>(diagnosticGroupConnections).subgroups;
bool isCycleFound = false;
constexpr_for<subgroups.size()>([&](auto i) {
constexpr auto subgroup = (size_t)subgroups[i];
if (!visited[subgroup] &&
hasCycleFromGroup<subgroup>(visited, recursionStack))
isCycleFound = true;
else if (recursionStack[subgroup])
isCycleFound = true;
});
if (isCycleFound)
return true;
}
recursionStack[Group] = false;
return false;
}
constexpr bool hasCycle() {
std::array<bool, DiagGroupsCount> recursionStack{};
std::array<bool, DiagGroupsCount> visited{};
bool isCycleFound = false;
constexpr_for<DiagGroupsCount>([&](auto i) {
if (!visited[i] && hasCycleFromGroup<i>(visited, recursionStack))
isCycleFound = true;
});
return isCycleFound;
}
template <DiagGroupID Child, DiagGroupID Parent>
constexpr bool isGroupInSupergroup() {
for (const auto group :
std::get<(size_t)Child>(diagnosticGroupConnections).supergroups)
if (group == Parent)
return true;
return false;
}
// Check for isGroupInSupergroup itself
static_assert(!isGroupInSupergroup<DiagGroupID::no_group,
DiagGroupID::DeprecatedDeclaration>() &&
"Bug in isGroupInSupergroup");
static_assert(!hasCycle(), "Diagnostic groups graph has a cycle!");
// Sanity check for the "no_group" group
static_assert((uint16_t)DiagGroupID::no_group == 0, "0 isn't no_group");
static_assert(std::get<0>(diagnosticGroupConnections).supergroups.size() == 0,
"no_group isn't a top-level group");
static_assert(std::get<0>(diagnosticGroupConnections).subgroups.size() == 0,
"no_group shouldn't have subgroups");
// Check groups have associated diagnostics
#define CHECK_NOT_EMPTY(Group) \
static_assert( \
std::get<(uint16_t)DiagGroupID::Group>(diagnosticGroupConnections) \
.diagnostics.size() > 0, \
"'" #Group "' group shouldn't be empty.");
CHECK_NOT_EMPTY(DeprecatedDeclaration)
CHECK_NOT_EMPTY(UnknownWarningGroup)
#undef CHECK_NOT_EMPTY
} // end namespace validation
} // end namespace swift