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
|
//===--- Rule.h - An oriented rewrite rule in a rewrite system --*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022 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
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_RULE_H
#define SWIFT_RULE_H
#include <optional>
#include "Symbol.h"
#include "Term.h"
namespace llvm {
class raw_ostream;
}
namespace swift {
namespace rewriting {
class RewriteContext;
/// A rewrite rule that replaces occurrences of LHS with RHS.
///
/// LHS must be greater than RHS in the linear order over terms.
///
/// Out-of-line methods are documented in Rule.cpp.
class Rule final {
Term LHS;
Term RHS;
/// The written requirement ID, which can be used to index into the
/// \c WrittenRequirements array in the rewrite system to retrieve
/// the structural requirement.
///
/// This uses a biased representation where an ID of 0 means 'no ID',
/// otherwise the value is the actual ID plus one.
unsigned RequirementID : 16;
/// A 'permanent' rule cannot be deleted by homotopy reduction. These
/// do not correspond to generic requirements and are re-added when the
/// rewrite system is built.
unsigned Permanent : 1;
/// An 'explicit' rule is a generic requirement written by the user.
unsigned Explicit : 1;
/// An 'LHS simplified' rule's left hand side was reduced via another rule.
/// Set by simplifyLeftHandSides().
unsigned LHSSimplified : 1;
/// An 'RHS simplified' rule's right hand side can be reduced via another rule.
/// Set by simplifyRightHandSides().
unsigned RHSSimplified : 1;
/// A 'substitution simplified' rule's left hand side contains substitutions
/// which can be reduced via another rule.
/// Set by simplifyLeftHandSideSubstitutions().
unsigned SubstitutionSimplified : 1;
/// A 'redundant' rule was eliminated by homotopy reduction. Redundant rules
/// still participate in term rewriting, but they are not part of the minimal
/// set of requirements in a generic signature.
unsigned Redundant : 1;
/// A 'conflicting' rule is a property rule which cannot be satisfied by any
/// concrete type because it is mutually exclusive with some other rule.
/// An example would be a pair of concrete type rules:
///
/// T.[concrete: Int] => T
/// T.[concrete: String] => T
///
/// Conflicting rules are detected in property map construction, and are
/// dropped from the minimal set of requirements.
unsigned Conflicting : 1;
/// A 'recursive' rule is a concrete type or superclass rule where the right
/// hand side occurs as a proper prefix of one of its substitutions.
///
/// Recursive rules are detected in RewriteSystem::computeRecursiveRules(),
/// and are dropped from the minimal set of requirements.
unsigned Recursive : 1;
/// Whether this rule is now finalized and immutable.
unsigned Frozen : 1;
public:
Rule(Term lhs, Term rhs)
: LHS(lhs), RHS(rhs) {
RequirementID = 0;
Permanent = false;
Explicit = false;
LHSSimplified = false;
RHSSimplified = false;
SubstitutionSimplified = false;
Redundant = false;
Conflicting = false;
Recursive = false;
Frozen = false;
}
const Term &getLHS() const { return LHS; }
const Term &getRHS() const { return RHS; }
std::optional<Symbol> isPropertyRule() const;
const ProtocolDecl *isProtocolConformanceRule() const;
const ProtocolDecl *isAnyConformanceRule() const;
bool isIdentityConformanceRule() const;
bool isProtocolRefinementRule(RewriteContext &ctx) const;
bool isCircularConformanceRule() const;
/// See above for an explanation of these predicates.
bool isPermanent() const {
return Permanent;
}
bool isExplicit() const {
return Explicit;
}
bool isLHSSimplified() const {
return LHSSimplified;
}
bool isRHSSimplified() const {
return RHSSimplified;
}
bool isSubstitutionSimplified() const {
return SubstitutionSimplified;
}
bool isRedundant() const {
return Redundant;
}
bool isConflicting() const {
return Conflicting;
}
bool isRecursive() const {
return Recursive;
}
bool isFrozen() const {
return Frozen;
}
bool containsUnresolvedSymbols() const {
return (LHS.containsUnresolvedSymbols() ||
RHS.containsUnresolvedSymbols());
}
std::optional<Identifier> isProtocolTypeAliasRule() const;
bool isDerivedFromConcreteProtocolTypeAliasRule() const;
void markLHSSimplified() {
assert(!Frozen);
assert(!LHSSimplified);
LHSSimplified = true;
}
void markRHSSimplified() {
assert(!Frozen);
assert(!RHSSimplified);
RHSSimplified = true;
}
void markSubstitutionSimplified() {
assert(!Frozen);
assert(!SubstitutionSimplified);
SubstitutionSimplified = true;
}
void markPermanent() {
assert(!Frozen);
assert(!Explicit && !Permanent &&
"Permanent and explicit are mutually exclusive");
Permanent = true;
}
void markExplicit() {
assert(!Frozen);
assert(!Explicit && !Permanent &&
"Permanent and explicit are mutually exclusive");
Explicit = true;
}
void markRedundant() {
assert(!Frozen);
assert(!Redundant);
Redundant = true;
}
void markConflicting() {
// It's okay to mark a rule as conflicting multiple times.
if (Conflicting)
return;
assert(!Frozen);
assert(!Permanent && "Permanent rule should not conflict with anything");
Conflicting = true;
}
void markRecursive() {
assert(!Frozen);
assert(!Permanent && "Permanent rule should not be recursive");
assert(!Recursive);
Recursive = true;
}
void freeze() {
Redundant = false;
RequirementID = 0;
Frozen = true;
}
unsigned getDepth() const;
unsigned getNesting() const;
std::optional<int> compare(const Rule &other, RewriteContext &ctx) const;
void dump(llvm::raw_ostream &out) const;
friend llvm::raw_ostream &operator<<(llvm::raw_ostream &out,
const Rule &rule) {
rule.dump(out);
return out;
}
};
} // end namespace rewriting
} // end namespace swift
#endif
|