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
|
//===--- FormalEvaluation.h -------------------------------------*- C++ -*-===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SILGEN_FORMALEVALUATION_H
#define SWIFT_SILGEN_FORMALEVALUATION_H
#include "Cleanup.h"
#include "swift/Basic/DiverseStack.h"
#include "swift/SIL/SILValue.h"
#include <optional>
namespace swift {
namespace Lowering {
class SILGenFunction;
class LogicalPathComponent;
class FormalEvaluationScope;
class FormalAccess {
public:
enum Kind { Shared, Exclusive, Owned, Unenforced };
private:
unsigned allocatedSize;
Kind kind;
protected:
SILLocation loc;
CleanupHandle cleanup;
bool finished;
FormalAccess(unsigned allocatedSize, Kind kind, SILLocation loc,
CleanupHandle cleanup)
: allocatedSize(allocatedSize), kind(kind), loc(loc), cleanup(cleanup),
finished(false) {}
public:
virtual ~FormalAccess() {}
// This anchor method serves three purposes: it aligns the class to
// a pointer boundary, it makes the class a primary base so that
// subclasses will be at offset zero, and it anchors the v-table
// to a specific file.
virtual void _anchor();
/// Return the allocated size of this object. This is required by
/// DiverseStack for iteration.
size_t allocated_size() const { return allocatedSize; }
CleanupHandle getCleanup() const { return cleanup; }
Kind getKind() const { return kind; }
void finish(SILGenFunction &SGF) { finishImpl(SGF); }
void setFinished() { finished = true; }
bool isFinished() const { return finished; }
void verify(SILGenFunction &SGF) const;
protected:
virtual void finishImpl(SILGenFunction &SGF) = 0;
};
// FIXME: Misnomer. This is not used for borrowing a formal memory location
// (ExclusiveBorrowFormalAccess is always used for that). This is only used for
// formal access from a +0 value, which requires producing a "borrowed"
// SILValue.
class SharedBorrowFormalAccess : public FormalAccess {
SILValue originalValue;
SILValue borrowedValue;
public:
SharedBorrowFormalAccess(SILLocation loc, CleanupHandle cleanup,
SILValue originalValue, SILValue borrowedValue)
: FormalAccess(sizeof(*this), FormalAccess::Shared, loc, cleanup),
originalValue(originalValue), borrowedValue(borrowedValue) {}
SILValue getBorrowedValue() const { return borrowedValue; }
SILValue getOriginalValue() const { return originalValue; }
private:
void finishImpl(SILGenFunction &SGF) override;
};
class OwnedFormalAccess : public FormalAccess {
SILValue value;
public:
OwnedFormalAccess(SILLocation loc, CleanupHandle cleanup, SILValue value)
: FormalAccess(sizeof(*this), FormalAccess::Owned, loc, cleanup),
value(value) {}
SILValue getValue() const { return value; }
private:
void finishImpl(SILGenFunction &SGF) override;
};
class FormalEvaluationContext {
DiverseStack<FormalAccess, 128> stack;
FormalEvaluationScope *innermostScope = nullptr;
friend class FormalEvaluationScope;
public:
using stable_iterator = decltype(stack)::stable_iterator;
using iterator = decltype(stack)::iterator;
FormalEvaluationContext() : stack() {}
// This is a type that can only be embedded in other types, it can not be
// moved or copied.
FormalEvaluationContext(const FormalEvaluationContext &) = delete;
FormalEvaluationContext(FormalEvaluationContext &&) = delete;
FormalEvaluationContext &operator=(const FormalEvaluationContext &) = delete;
FormalEvaluationContext &operator=(FormalEvaluationContext &&) = delete;
~FormalEvaluationContext() {
assert(stack.empty() &&
"entries remaining on formal evaluation cleanup stack at end of function!");
}
iterator begin() { return stack.begin(); }
iterator end() { return stack.end(); }
stable_iterator stabilize(iterator iter) const {
return stack.stabilize(iter);
}
stable_iterator stable_begin() { return stabilize(begin()); }
iterator find(stable_iterator iter) { return stack.find(iter); }
FormalAccess &findAndAdvance(stable_iterator &stable) {
return stack.findAndAdvance(stable);
}
template <class U, class... ArgTypes> void push(ArgTypes &&... args) {
stack.push<U>(std::forward<ArgTypes>(args)...);
}
void pop() { stack.pop(); }
/// Pop objects off of the stack until \p the object pointed to by stable_iter
/// is the top element of the stack.
void pop(stable_iterator stable_iter) { stack.pop(stable_iter); }
bool isInFormalEvaluationScope() const { return innermostScope != nullptr; }
void dump(SILGenFunction &SGF);
#ifndef NDEBUG
void checkCleanupDeactivation(CleanupHandle handle);
#endif
};
/// A scope associated with the beginning of the evaluation of an lvalue.
///
/// The evaluation of an l-value is split into two stages: its formal
/// evaluation, which evaluates any independent r-values embedded in the l-value
/// expression (e.g. class references and subscript indices), and its formal
/// access duration, which delimits the span of time for which the referenced
/// storage is actually accessed.
///
/// Note that other evaluations can be interleaved between the formal evaluation
/// and the beginning of the formal access. For example, in a simple assignment
/// statement, the left-hand side of the assignment is first formally evaluated
/// as an l-value, then the right-hand side is evaluated as an r-value, and only
/// then does the write access begin to the l-value.
///
/// Note also that the formal evaluation of an l-value will sometimes require
/// its component l-values to be formally accessed. For example, the formal
/// access of the l-value `x?.prop` will initiate an access to `x` immediately
/// because the downstream evaluation must be skipped if `x` has no value, which
/// cannot be determined without beginning the access.
///
/// *NOTE* All formal access contain a pointer to a cleanup in the normal
/// cleanup stack. This is to ensure that when SILGen calls
/// Cleanups.emitBranchAndCleanups (and other special cleanup code along error
/// edges), writebacks are properly created. What is key to notice is that all
/// of these cleanup emission types are non-destructive. Contrast this with
/// normal scope popping. In such a case, the scope pop is destructive. This
/// means that any pointers from the formal access to the cleanup stack is now
/// invalid.
///
/// In order to avoid this issue, it is important to /never/ create a formal
/// access cleanup when the "top level" scope is not a formal evaluation scope.
class FormalEvaluationScope {
SILGenFunction &SGF;
std::optional<FormalEvaluationContext::stable_iterator> savedDepth;
/// The immediate outer evaluation scope. This scope is only inserted
/// into the chain if it wasn't in an inout conversion scope on creation.
FormalEvaluationScope *previous;
bool wasInInOutConversionScope;
friend class FormalEvaluationContext;
public:
FormalEvaluationScope(SILGenFunction &SGF);
~FormalEvaluationScope() {
if (!savedDepth.has_value())
return;
popImpl();
}
bool isPopped() const { return !savedDepth.has_value(); }
void pop() {
if (wasInInOutConversionScope)
return;
assert(!isPopped() && "popping an already-popped scope!");
popImpl();
savedDepth.reset();
}
FormalEvaluationScope(const FormalEvaluationScope &) = delete;
FormalEvaluationScope &operator=(const FormalEvaluationScope &) = delete;
FormalEvaluationScope(FormalEvaluationScope &&o);
FormalEvaluationScope &operator=(FormalEvaluationScope &&o) = delete;
/// Verify that we can successfully access all of the inner lexical scopes
/// that would be popped by this scope.
void verify() const;
private:
void popImpl();
};
#ifndef NDEBUG
inline void
FormalEvaluationContext::checkCleanupDeactivation(CleanupHandle handle) {
for (auto &access : *this) {
assert((access.isFinished() || access.getCleanup() != handle) &&
"popping active formal-evaluation cleanup");
}
}
#endif
} // namespace Lowering
} // namespace swift
#endif
|