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
|
//===--- ForwardingUtils.swift - Utilities for ownership forwarding -------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 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
//
//===----------------------------------------------------------------------===//
///
/// TODO: Once the hasPointerEscape flags are implemented for
/// BeginBorrowInst, MoveValueInst, and Allocation,
/// ForwardingUseDefWalker should be used to check whether any value
/// is part of a forward-extended lifetime that has a pointer escape.
//===----------------------------------------------------------------------===//
import SIL
private let verbose = false
private func log(_ message: @autoclosure () -> String) {
if verbose {
print("### \(message())")
}
}
/// Return true if any use in `value`s forward-extend lifetime has
/// .pointerEscape operand ownership.
///
/// TODO: the C++ implementation does not yet gather all
/// forward-extended lifetime introducers.
///
/// TODO: Add [pointer_escape] flags to MoveValue, BeginBorrow, and
/// Allocation. Then add a `Value.hasPointerEscapingUse` property that
/// performs the use-def walk to pickup the flags. Then only call into
/// this def-use walk to initially set the flags.
func findPointerEscapingUse(of value: Value) -> Bool {
value.bridged.findPointerEscape()
}
/// Visit the introducers of a forwarded lifetime (Value -> LifetimeIntroducer).
///
/// A lifetime introducer produces an initial OSSA lifetime which may
/// be extended by forwarding instructions. The introducer is never
/// itself the result of a ForwardingInstruction. Example:
///
/// # lifetime introducer
/// %1 = apply -+ -+
/// ... | OSSA lifetime |
/// # forwarding instruction | |
/// %2 = struct $S (%1) -+ -+ | forward-extended lifetime
/// | OSSA lifetime |
/// # non-forwarding consumer | |
/// destroy_value %2 -+ -+
///
/// The lifetime of a single owned value ends when it is forwarded,
/// but certain lifetime properties are relevant for the entire
/// forward-extended lifetime. For example, if an owned lifetime has a
/// pointer-escaping use, then all values in the forward-extended
/// lifetime are also considered pointer-escaping. Certain properties,
/// like lexical lifetimes, only exist on the forward introducer and
/// apply to all forwarded values.
///
/// Note: Although move_value conceptually forwards an owned value, it
/// also summarizes lifetime attributes; therefore, it is not formally
/// a ForwardingInstruction.
///
/// The lifetime introducer of a guaranteed value is the borrow introducer:
///
/// # lifetime introducer / borrow introducer
/// %1 = begin_borrow -+
/// ... | OSSA lifetime == forwarded lifetime
/// # forwarding instruction |
/// %2 = struct $S (%1) | - forwarded uses are within the OSSA lifetime
/// |
/// end_borrow %1 -+
///
/// TODO: When a begin_borrow has no lifetime flags, it can be ignored
/// as a lifetime introducer. In that case, an owned value may
/// introduce guaranteed OSSA lifetimes.
///
/// Forwarded lifetimes also extend through phis. In this case,
/// however, there is no ForwardingInstruction.
///
/// # lifetime introducer
/// %1 = apply -+ -+
/// ... | OSSA lifetime |
/// # phi operand | |
/// br bbContinue(%1: $S) -+ | forward-extended lifetime
/// |
/// bbContinue(%phi : $S): -+ OSSA lifetime |
/// ... | |
/// destroy_value %phi -+ -+
///
/// TODO: when phi lifetime flags are implemented, phis will introduce
/// a lifetime in the same way as move_value.
///
/// This walker is used to query basic lifetime attributes on values,
/// such as "escaping" or "lexical". It must be precise for
/// correctness and is performance critical.
protocol ForwardingUseDefWalker {
associatedtype PathContext
mutating func introducer(_ value: Value, _ path: PathContext) -> WalkResult
// Minimally, check a ValueSet. This walker may traverse chains of
// aggregation and destructuring along with phis.
mutating func needWalk(for value: Value, _ path: PathContext) -> Bool
mutating func walkUp(value: Value, _ path: PathContext) -> WalkResult
}
extension ForwardingUseDefWalker {
mutating func walkUp(value: Value, _ path: PathContext) -> WalkResult {
walkUpDefault(forwarded: value, path)
}
mutating func walkUpDefault(forwarded value: Value, _ path: PathContext)
-> WalkResult {
if let inst = value.forwardingInstruction {
return walkUp(instruction: inst, path)
}
if let phi = Phi(value) {
return walkUp(phi: phi, path)
}
return introducer(value, path)
}
mutating func walkUp(instruction: ForwardingInstruction, _ path: PathContext)
-> WalkResult {
for operand in instruction.forwardedOperands {
if needWalk(for: operand.value, path) {
if walkUp(value: operand.value, path) == .abortWalk {
return .abortWalk
}
}
}
return .continueWalk
}
mutating func walkUp(phi: Phi, _ path: PathContext) -> WalkResult {
for operand in phi.incomingOperands {
if needWalk(for: operand.value, path) {
if walkUp(value: operand.value, path) == .abortWalk {
return .abortWalk
}
}
}
return .continueWalk
}
}
// This conveniently gathers all forward introducers and deinitializes
// visitedValues before the caller has a chance to recurse.
func gatherLifetimeIntroducers(for value: Value, _ context: Context) -> [Value] {
var introducers: [Value] = []
var walker = VisitLifetimeIntroducers(context) {
introducers.append($0)
return .continueWalk
}
defer { walker.deinitialize() }
_ = walker.walkUp(value: value, ())
return introducers
}
// TODO: visitor can be nonescaping when we have borrowed properties.
func visitLifetimeIntroducers(for value: Value, _ context: Context,
visitor: @escaping (Value) -> WalkResult)
-> WalkResult {
var walker = VisitLifetimeIntroducers(context, visitor: visitor)
defer { walker.visitedValues.deinitialize() }
return walker.walkUp(value: value, ())
}
private struct VisitLifetimeIntroducers : ForwardingUseDefWalker {
var visitor: (Value) -> WalkResult
var visitedValues: ValueSet
init(_ context: Context, visitor: @escaping (Value) -> WalkResult) {
self.visitor = visitor
self.visitedValues = ValueSet(context)
}
mutating func deinitialize() { visitedValues.deinitialize() }
mutating func needWalk(for value: Value, _: Void) -> Bool {
visitedValues.insert(value)
}
mutating func introducer(_ value: Value, _: Void) -> WalkResult {
visitor(value)
}
}
enum ForwardingUseResult: CustomStringConvertible {
case operand(Operand)
case deadValue(Value, Operand?)
var description: String {
switch self {
case .operand(let operand):
return operand.description
case .deadValue(let deadValue, let operand):
var desc = "dead value: \(deadValue.description)"
if let operand = operand {
desc += "from: \(operand)"
}
return desc
}
}
}
/// Visit all the non-forwarding uses in a forward-extended lifetime
/// (LifetimeIntroducer -> Operand).
///
/// Minimal requirements:
/// needWalk(for value: Value) -> Bool
/// nonForwardingUse(of operand: Operand) -> WalkResult
/// deadValue(_ value: Value, using operand: Operand?) -> WalkResult
///
/// Start walking:
/// walkDown(root: Value)
///
protocol ForwardingDefUseWalker {
/// Minimally, check a ValueSet. This walker may traverse chains of
/// aggregation and destructuring by default. Implementations may
/// handle phis.
mutating func needWalk(for value: Value) -> Bool
/// A nonForwarding use does not forward ownership, but may
/// propagate the lifetime in other ways, such as an interior
/// pointer.
mutating func nonForwardingUse(of operand: Operand) -> WalkResult
/// Report any initial or forwarded value with no uses. Only relevant for
/// guaranteed values or incomplete OSSA. This could be a dead
/// instruction, a terminator in which the result is dead on one
/// path, or a dead phi.
///
/// \p operand is nil if \p value is the root.
mutating func deadValue(_ value: Value, using operand: Operand?) -> WalkResult
/// This is called for every forwarded value. If the root was an
/// owned value, then this identifies all OSSA lifetimes in the
/// forward-extendd lifetime.
mutating func walkDownUses(of: Value, using: Operand?) -> WalkResult
mutating func walkDown(operand: Operand) -> WalkResult
}
extension ForwardingDefUseWalker {
/// Start walking
mutating func walkDown(root: Value) -> WalkResult {
walkDownUses(of: root, using: nil)
}
mutating func walkDownUses(of value: Value, using operand: Operand?)
-> WalkResult {
return walkDownUsesDefault(forwarding: value, using: operand)
}
mutating func walkDownUsesDefault(forwarding value: Value,
using operand: Operand?)
-> WalkResult {
if !needWalk(for: value) {
return .continueWalk
}
var hasUse = false
for use in value.uses where !use.isTypeDependent {
if walkDown(operand: use) == .abortWalk {
return .abortWalk
}
hasUse = true
}
if !hasUse {
return deadValue(value, using: operand)
}
return .continueWalk
}
mutating func walkDown(operand: Operand) -> WalkResult {
walkDownDefault(forwarding: operand)
}
mutating func walkDownDefault(forwarding operand: Operand) -> WalkResult {
if let inst = operand.instruction as? ForwardingInstruction {
let singleOper = inst.singleForwardedOperand
if singleOper == nil || singleOper! == operand {
return inst.forwardedResults.walk {
walkDownUses(of: $0, using: operand)
}
}
}
if let phi = Phi(using: operand) {
return walkDownUses(of: phi.value, using: operand)
}
return nonForwardingUse(of: operand)
}
}
/// This conveniently allows a closure to be called for each leaf use
/// of a forward-extended lifetime. It should be called on a forward
/// introducer provided by ForwardingDefUseWalker.introducer() or
/// gatherLifetimeIntroducers().
///
/// TODO: make the visitor non-escaping once Swift supports stored
/// non-escaping closues.
func visitForwardedUses(introducer: Value, _ context: Context,
visitor: @escaping (ForwardingUseResult) -> WalkResult)
-> WalkResult {
var useVisitor = VisitForwardedUses(visitor: visitor, context)
defer { useVisitor.visitedValues.deinitialize() }
return useVisitor.walkDown(root: introducer)
}
private struct VisitForwardedUses : ForwardingDefUseWalker {
var visitedValues: ValueSet
var visitor: (ForwardingUseResult) -> WalkResult
init(visitor: @escaping (ForwardingUseResult) -> WalkResult,
_ context: Context) {
self.visitedValues = ValueSet(context)
self.visitor = visitor
}
mutating func needWalk(for value: Value) -> Bool {
visitedValues.insert(value)
}
mutating func nonForwardingUse(of operand: Operand) -> WalkResult {
return visitor(.operand(operand))
}
mutating func deadValue(_ value: Value, using operand: Operand?)
-> WalkResult {
return visitor(.deadValue(value, operand))
}
}
/// Walk all uses of partial_apply [on_stack] that may propagate the closure context. Gather each FullApplySite that
/// either invokes this closure as its callee, or passes the closure as an argument to another function.
///
/// Start walk:
/// walkDown(closure:)
///
/// This is a subset of the functionality in LifetimeDependenceDefUseWalker, but significantly simpler. This avoids
/// traversing lifetime dependencies that do not propagate context. For example, a mark_dependence on a closure extends
/// its lifetime but cannot introduce any new uses of the closure context.
struct NonEscapingClosureDefUseWalker {
let context: Context
var visitedValues: ValueSet
var applyOperandStack: Stack<Operand>
/// `visitor` takes an operand whose instruction is always a FullApplySite.
init(_ context: Context) {
self.context = context
self.visitedValues = ValueSet(context)
self.applyOperandStack = Stack(context)
}
mutating func deinitialize() {
visitedValues.deinitialize()
applyOperandStack.deinitialize()
}
mutating func walkDown(closure: PartialApplyInst) -> WalkResult {
assert(!closure.mayEscape)
return walkDownUses(of: closure, using: nil)
}
mutating func closureContextLeafUse(of operand: Operand) -> WalkResult {
switch operand.instruction {
case is FullApplySite:
applyOperandStack.push(operand)
return .continueWalk
case is MarkDependenceInst, is FixLifetimeInst, is DestroyValueInst:
return .continueWalk
default:
if operand.instruction.isIncidentalUse {
return .continueWalk
}
log(">>> Unexpected closure use \(operand)")
// Escaping or unexpected closure use. Expected escaping uses include ReturnInst with a lifetime-dependent result.
//
// TODO: Check in the SIL verifier that all uses are expected.
return .abortWalk
}
}
}
extension NonEscapingClosureDefUseWalker: ForwardingDefUseWalker {
mutating func needWalk(for value: Value) -> Bool {
visitedValues.insert(value)
}
mutating func nonForwardingUse(of operand: Operand) -> WalkResult {
// Nonescaping closures may be moved, copied, or borrowed.
switch operand.instruction {
case let transition as OwnershipTransitionInstruction:
return walkDownUses(of: transition.ownershipResult, using: operand)
case let convert as ConvertEscapeToNoEscapeInst:
return walkDownUses(of: convert, using: operand)
default:
// Otherwise, assume the use cannot propagate the closure context.
return closureContextLeafUse(of: operand)
}
}
mutating func deadValue(_ value: Value, using operand: Operand?) -> WalkResult {
return .continueWalk
}
}
let forwardingUseDefTest = FunctionTest("forwarding_use_def_test") {
function, arguments, context in
let value = arguments.takeValue()
for introducer in gatherLifetimeIntroducers(for: value, context) {
print("INTRODUCER: \(introducer)")
}
}
let forwardingDefUseTest = FunctionTest("forwarding_def_use_test") {
function, arguments, context in
let value = arguments.takeValue()
_ = visitForwardedUses(introducer: value, context) { useResult in
print("USE: \(useResult)")
return .continueWalk
}
}
|