1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
|
//===--- TypeDifference.cpp - Utility for concrete type unification -------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2021 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
//
//===----------------------------------------------------------------------===//
//
// A mechanism for working with types that are related via the transformation
// of replacing a type parameter term with another type parameter term or
// concrete type.
//
// Used by concrete type unification (in PropertyUnification.cpp) and for
// substitution simplification (SimplifySubstitutions.cpp) to define rewrite
// loops relating various rules for rewrite system minimization.
//
//===----------------------------------------------------------------------===//
#include "TypeDifference.h"
#include "swift/AST/Types.h"
#include "swift/AST/TypeMatcher.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/DenseSet.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
#include "RewriteContext.h"
#include "RewriteSystem.h"
#include "Term.h"
using namespace swift;
using namespace rewriting;
MutableTerm TypeDifference::getOriginalSubstitution(unsigned index) const {
return MutableTerm(LHS.getSubstitutions()[index]);
}
MutableTerm TypeDifference::getReplacementSubstitution(unsigned index) const {
for (const auto &pair : SameTypes) {
if (pair.first == index) {
// Given a transformation Xn -> Xn', return the term Xn'.
return MutableTerm(pair.second);
}
}
for (const auto &pair : ConcreteTypes) {
if (pair.first == index) {
// Given a transformation Xn -> [concrete: D], return the
// return Xn.[concrete: D].
auto result = getOriginalSubstitution(index);
result.add(pair.second);
return result;
}
}
// Otherwise return the original substitution Xn.
return getOriginalSubstitution(index);
}
void TypeDifference::dump(llvm::raw_ostream &out) const {
llvm::errs() << "Base term: " << BaseTerm << "\n";
llvm::errs() << "LHS: " << LHS << "\n";
llvm::errs() << "RHS: " << RHS << "\n";
for (const auto &pair : SameTypes) {
out << "- " << getOriginalSubstitution(pair.first) << " (#";
out << pair.first << ") -> " << pair.second << "\n";
}
for (const auto &pair : ConcreteTypes) {
out << "- " << getOriginalSubstitution(pair.first) << " (#";
out << pair.first << ") -> " << pair.second << "\n";
}
}
void TypeDifference::verify(RewriteContext &ctx) const {
#define VERIFY(expr, str) \
if (!(expr)) { \
llvm::errs() << "TypeDifference::verify(): " << str << "\n"; \
dump(llvm::errs()); \
abort(); \
}
VERIFY(LHS.getKind() == RHS.getKind(), "Kind mismatch");
if (LHS == RHS) {
VERIFY(SameTypes.empty(), "Abstract substitutions with equal symbols");
VERIFY(ConcreteTypes.empty(), "Concrete substitutions with equal symbols");
} else {
VERIFY(!SameTypes.empty() || !ConcreteTypes.empty(),
"Missing substitutions with non-equal symbols");
llvm::DenseSet<unsigned> lhsVisited;
for (const auto &pair : SameTypes) {
auto first = LHS.getSubstitutions()[pair.first];
VERIFY(*first.compare(pair.second, ctx) > 0, "Order violation");
VERIFY(lhsVisited.insert(pair.first).second, "Duplicate substitutions");
}
for (const auto &pair : ConcreteTypes) {
VERIFY(pair.first < LHS.getSubstitutions().size(),
"Out-of-bounds substitution");
VERIFY(lhsVisited.insert(pair.first).second, "Duplicate substitutions");
VERIFY(pair.second.getKind() == Symbol::Kind::ConcreteType, "Bad kind");
}
}
#undef VERIFY
}
namespace {
class ConcreteTypeMatcher : public TypeMatcher<ConcreteTypeMatcher> {
ArrayRef<Term> LHSSubstitutions;
ArrayRef<Term> RHSSubstitutions;
RewriteContext &Context;
public:
/// Mismatches where both sides are type parameters and the left hand
/// side orders before the right hand side. The integer is an index
/// into the LHSSubstitutions array.
SmallVector<std::pair<unsigned, Term>, 1> SameTypesOnLHS;
/// Mismatches where both sides are type parameters and the left hand
/// side orders after the right hand side. The integer is an index
/// into the RHSSubstitutions array.
SmallVector<std::pair<unsigned, Term>, 1> SameTypesOnRHS;
/// Mismatches where the left hand side is concrete and the right hand
/// side is a type parameter. The integer is an index into the
/// RHSSubstitutions array.
SmallVector<std::pair<unsigned, Symbol>, 1> ConcreteTypesOnLHS;
/// Mismatches where the right hand side is concrete and the left hand
/// side is a type parameter. The integer is an index into the
/// LHSSubstitutions array.
SmallVector<std::pair<unsigned, Symbol>, 1> ConcreteTypesOnRHS;
/// Mismatches where both sides are concrete; the presence of at least
/// one such mismatch indicates a conflict.
SmallVector<std::pair<CanType, CanType>, 1> ConcreteConflicts;
ConcreteTypeMatcher(ArrayRef<Term> lhsSubstitutions,
ArrayRef<Term> rhsSubstitutions,
RewriteContext &ctx)
: LHSSubstitutions(lhsSubstitutions),
RHSSubstitutions(rhsSubstitutions),
Context(ctx) {}
bool alwaysMismatchTypeParameters() const { return true; }
bool mismatch(TypeBase *lhsType, TypeBase *rhsType,
Type sugaredFirstType) {
bool lhsAbstract = lhsType->isTypeParameter();
bool rhsAbstract = rhsType->isTypeParameter();
if (lhsAbstract && rhsAbstract) {
// FIXME: same-element requirements
assert(lhsType->isParameterPack() == rhsType->isParameterPack());
unsigned lhsIndex = RewriteContext::getGenericParamIndex(lhsType);
unsigned rhsIndex = RewriteContext::getGenericParamIndex(rhsType);
auto lhsTerm = LHSSubstitutions[lhsIndex];
auto rhsTerm = RHSSubstitutions[rhsIndex];
std::optional<int> compare = lhsTerm.compare(rhsTerm, Context);
if (*compare < 0) {
SameTypesOnLHS.emplace_back(rhsIndex, lhsTerm);
} else if (compare > 0) {
SameTypesOnRHS.emplace_back(lhsIndex, rhsTerm);
} else {
assert(lhsTerm == rhsTerm);
}
return true;
}
if (lhsAbstract) {
assert(!rhsAbstract);
unsigned lhsIndex = RewriteContext::getGenericParamIndex(lhsType);
SmallVector<Term, 2> result;
auto rhsSchema = Context.getRelativeSubstitutionSchemaFromType(
CanType(rhsType), RHSSubstitutions, result);
auto rhsSymbol = Symbol::forConcreteType(rhsSchema, result, Context);
ConcreteTypesOnRHS.emplace_back(lhsIndex, rhsSymbol);
return true;
}
if (rhsAbstract) {
assert(!lhsAbstract);
unsigned rhsIndex = RewriteContext::getGenericParamIndex(rhsType);
SmallVector<Term, 2> result;
auto lhsSchema = Context.getRelativeSubstitutionSchemaFromType(
CanType(lhsType), LHSSubstitutions, result);
auto lhsSymbol = Symbol::forConcreteType(lhsSchema, result, Context);
ConcreteTypesOnLHS.emplace_back(rhsIndex, lhsSymbol);
return true;
}
// Any other kind of type mismatch involves conflicting concrete types on
// both sides, which can only happen on invalid input.
assert(!lhsAbstract && !rhsAbstract);
ConcreteConflicts.emplace_back(CanType(lhsType), CanType(rhsType));
return true;
}
void verify() const {
#define VERIFY(expr, str) \
if (!(expr)) { \
llvm::errs() << "ConcreteTypeMatcher::verify(): " << str << "\n"; \
dump(llvm::errs()); \
abort(); \
}
llvm::DenseSet<unsigned> lhsVisited;
llvm::DenseSet<unsigned> rhsVisited;
for (const auto &pair : SameTypesOnLHS) {
auto first = RHSSubstitutions[pair.first];
VERIFY(*first.compare(pair.second, Context) > 0, "Order violation");
VERIFY(rhsVisited.insert(pair.first).second, "Duplicate substitution");
VERIFY(first.getRootProtocol() == pair.second.getRootProtocol(),
"Transformation does not preserve domain");
}
for (const auto &pair : SameTypesOnRHS) {
auto first = LHSSubstitutions[pair.first];
VERIFY(*first.compare(pair.second, Context) > 0, "Order violation");
VERIFY(lhsVisited.insert(pair.first).second, "Duplicate substitution");
VERIFY(first.getRootProtocol() == pair.second.getRootProtocol(),
"Transformation does not preserve domain");
}
for (const auto &pair : ConcreteTypesOnLHS) {
VERIFY(pair.first < RHSSubstitutions.size(),
"Out-of-bounds substitution");
VERIFY(rhsVisited.insert(pair.first).second, "Duplicate substitution");
}
for (const auto &pair : ConcreteTypesOnRHS) {
VERIFY(pair.first < LHSSubstitutions.size(),
"Out-of-bounds substitution");
VERIFY(lhsVisited.insert(pair.first).second, "Duplicate substitution");
}
#undef VERIFY
}
void dump(llvm::raw_ostream &out) const {
out << "Abstract differences with LHS < RHS:\n";
for (const auto &pair : SameTypesOnLHS) {
out << "- " << RHSSubstitutions[pair.first] << " (#";
out << pair.first << ") -> " << pair.second << "\n";
}
out << "Abstract differences with RHS < LHS:\n";
for (const auto &pair : SameTypesOnRHS) {
out << "- " << LHSSubstitutions[pair.first] << " (#";
out << pair.first << ") -> " << pair.second << "\n";
}
out << "Concrete differences with LHS < RHS:\n";
for (const auto &pair : ConcreteTypesOnLHS) {
out << "- " << RHSSubstitutions[pair.first] << " (#";
out << pair.first << ") -> " << pair.second << "\n";
}
out << "Concrete differences with RHS < LHS:\n";
for (const auto &pair : ConcreteTypesOnRHS) {
out << "- " << LHSSubstitutions[pair.first] << " (#";
out << pair.first << ") -> " << pair.second << "\n";
}
out << "Concrete conflicts:\n";
for (const auto &pair : ConcreteConflicts) {
out << "- " << pair.first << " vs " << pair.second << "\n";
}
}
};
}
TypeDifference
swift::rewriting::buildTypeDifference(
Term baseTerm, Symbol symbol,
const llvm::SmallVector<std::pair<unsigned, Term>, 1> &sameTypes,
const llvm::SmallVector<std::pair<unsigned, Symbol>, 1> &concreteTypes,
RewriteContext &ctx) {
auto &astCtx = ctx.getASTContext();
SmallVector<Term, 2> resultSubstitutions;
auto nextSubstitution = [&](Term t) -> Type {
unsigned index = resultSubstitutions.size();
resultSubstitutions.push_back(t);
return GenericTypeParamType::get(/*isParameterPack=*/false,
/*depth=*/0, index, astCtx);
};
auto type = symbol.getConcreteType();
auto substitutions = symbol.getSubstitutions();
Type resultType = type.transformRec([&](Type t) -> std::optional<Type> {
if (t->is<GenericTypeParamType>()) {
unsigned index = RewriteContext::getGenericParamIndex(t);
for (const auto &pair : sameTypes) {
if (pair.first == index)
return nextSubstitution(pair.second);
}
for (const auto &pair : concreteTypes) {
if (pair.first == index) {
auto concreteSymbol = pair.second;
auto concreteType = concreteSymbol.getConcreteType();
return concreteType.transformRec([&](Type t) -> std::optional<Type> {
if (t->is<GenericTypeParamType>()) {
unsigned index = RewriteContext::getGenericParamIndex(t);
Term substitution = concreteSymbol.getSubstitutions()[index];
return nextSubstitution(substitution);
}
assert(!t->is<DependentMemberType>());
return std::nullopt;
});
}
}
assert(!t->is<DependentMemberType>());
return nextSubstitution(substitutions[index]);
}
return std::nullopt;
});
auto resultSymbol = [&]() {
switch (symbol.getKind()) {
case Symbol::Kind::Superclass:
return Symbol::forSuperclass(resultType->getCanonicalType(),
resultSubstitutions, ctx);
case Symbol::Kind::ConcreteType:
return Symbol::forConcreteType(resultType->getCanonicalType(),
resultSubstitutions, ctx);
case Symbol::Kind::ConcreteConformance:
return Symbol::forConcreteConformance(resultType->getCanonicalType(),
resultSubstitutions,
symbol.getProtocol(),
ctx);
default:
break;
}
llvm_unreachable("Bad symbol kind");
}();
return {baseTerm, symbol, resultSymbol, sameTypes, concreteTypes};
}
unsigned
RewriteSystem::recordTypeDifference(const TypeDifference &difference) {
assert(difference.LHS != difference.RHS);
auto key = std::make_tuple(difference.BaseTerm,
difference.LHS,
difference.RHS);
auto found = DifferenceMap.find(key);
if (found != DifferenceMap.end())
return found->second;
unsigned index = Differences.size();
Differences.push_back(difference);
auto inserted = DifferenceMap.insert(std::make_pair(key, index));
assert(inserted.second);
(void) inserted;
return index;
}
const TypeDifference &RewriteSystem::getTypeDifference(unsigned index) const {
return Differences[index];
}
/// Computes the "meet" (LHS ∧ RHS) of two concrete type symbols (LHS and RHS
/// respectively), together with a set of transformations that turn LHS into
/// (LHS ∧ RHS) and RHS into (LHS ∧ RHS), respectively.
///
/// Returns 0, 1 or 2 transformations via the two Optional<unsigned>
/// out parameters. The integer is an index that can be passed to
/// RewriteSystem::getTypeDifference() to return a TypeDifference.
///
/// - If LHS == RHS, both lhsDifference and rhsDifference will be None.
///
/// - If LHS == (LHS ∧ RHS), then lhsTransform will be None. Otherwise,
/// lhsTransform describes the transform from LHS to (LHS ∧ RHS).
///
/// - If RHS == (LHS ∧ RHS), then rhsTransform will be None. Otherwise,
/// rhsTransform describes the transform from LHS to (LHS ∧ RHS).
///
/// - If (LHS ∧ RHS) is distinct from both LHS and RHS, then both
/// lhsTransform and rhsTransform will be populated with a value.
///
/// Also returns a boolean indicating if there was a concrete type conflict,
/// meaning that LHS and RHS had distinct concrete types at the same
/// position (eg, if LHS == Array<Int> and RHS == Array<String>).
///
/// See the comment at the top of TypeDifference in TypeDifference.h for a
/// description of the actual transformations.
bool RewriteSystem::computeTypeDifference(
Term baseTerm, Symbol lhs, Symbol rhs,
std::optional<unsigned> &lhsDifferenceID,
std::optional<unsigned> &rhsDifferenceID) {
assert(lhs.getKind() == rhs.getKind());
lhsDifferenceID = std::nullopt;
rhsDifferenceID = std::nullopt;
// Fast path if there's nothing to do.
if (lhs == rhs)
return false;
// Match the types to find differences.
ConcreteTypeMatcher matcher(lhs.getSubstitutions(),
rhs.getSubstitutions(),
Context);
bool success = matcher.match(lhs.getConcreteType(),
rhs.getConcreteType());
assert(success);
(void) success;
matcher.verify();
auto lhsMeetRhs = buildTypeDifference(baseTerm, lhs,
matcher.SameTypesOnRHS,
matcher.ConcreteTypesOnRHS,
Context);
lhsMeetRhs.verify(Context);
auto rhsMeetLhs = buildTypeDifference(baseTerm, rhs,
matcher.SameTypesOnLHS,
matcher.ConcreteTypesOnLHS,
Context);
rhsMeetLhs.verify(Context);
bool isConflict = (matcher.ConcreteConflicts.size() > 0);
if (!isConflict) {
// The meet operation should be commutative.
if (lhsMeetRhs.RHS != rhsMeetLhs.RHS) {
llvm::errs() << "Meet operation was not commutative:\n\n";
llvm::errs() << "LHS: " << lhs << "\n";
llvm::errs() << "RHS: " << rhs << "\n";
matcher.dump(llvm::errs());
llvm::errs() << "\n";
llvm::errs() << "LHS ∧ RHS: " << lhsMeetRhs.RHS << "\n";
llvm::errs() << "RHS ∧ LHS: " << rhsMeetLhs.RHS << "\n";
abort();
}
// The meet operation should be idempotent.
{
// (LHS ∧ (LHS ∧ RHS)) == (LHS ∧ RHS)
auto lhsMeetLhsMeetRhs = buildTypeDifference(baseTerm, lhs,
lhsMeetRhs.SameTypes,
lhsMeetRhs.ConcreteTypes,
Context);
lhsMeetLhsMeetRhs.verify(Context);
if (lhsMeetRhs.RHS != lhsMeetLhsMeetRhs.RHS) {
llvm::errs() << "Meet operation was not idempotent:\n\n";
llvm::errs() << "LHS: " << lhs << "\n";
llvm::errs() << "RHS: " << rhs << "\n";
matcher.dump(llvm::errs());
llvm::errs() << "\n";
llvm::errs() << "LHS ∧ RHS: " << lhsMeetRhs.RHS << "\n";
llvm::errs() << "LHS ∧ (LHS ∧ RHS): " << lhsMeetLhsMeetRhs.RHS << "\n";
abort();
}
}
{
// (RHS ∧ (RHS ∧ LHS)) == (RHS ∧ LHS)
auto rhsMeetRhsMeetRhs = buildTypeDifference(baseTerm, rhs,
rhsMeetLhs.SameTypes,
rhsMeetLhs.ConcreteTypes,
Context);
rhsMeetRhsMeetRhs.verify(Context);
if (lhsMeetRhs.RHS != rhsMeetRhsMeetRhs.RHS) {
llvm::errs() << "Meet operation was not idempotent:\n\n";
llvm::errs() << "LHS: " << lhs << "\n";
llvm::errs() << "RHS: " << rhs << "\n";
matcher.dump(llvm::errs());
llvm::errs() << "\n";
llvm::errs() << "RHS ∧ LHS: " << rhsMeetLhs.RHS << "\n";
llvm::errs() << "RHS ∧ (RHS ∧ LHS): " << rhsMeetRhsMeetRhs.RHS << "\n";
abort();
}
}
}
if (lhs != lhsMeetRhs.RHS)
lhsDifferenceID = recordTypeDifference(lhsMeetRhs);
if (rhs != rhsMeetLhs.RHS)
rhsDifferenceID = recordTypeDifference(rhsMeetLhs);
return isConflict;
}
|