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 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
|
//===--- Effects.swift - Defines function effects -------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 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
//
//===----------------------------------------------------------------------===//
/// All effects for a function.
///
/// It consists of escape and side effects.
public struct FunctionEffects : CustomStringConvertible, NoReflectionChildren {
public var escapeEffects = EscapeEffects(arguments: [])
// If nil, the side effects are not computed yet and clients need to assume
// the worst effects (using `Function.getDefinedSideEffects()`).
public var sideEffects: SideEffects?
public init() {}
public init(copiedFrom src: FunctionEffects, resultArgDelta: Int) {
self.escapeEffects = EscapeEffects(arguments: src.escapeEffects.arguments.compactMap {
EscapeEffects.ArgumentEffect(copiedFrom: $0, resultArgDelta: resultArgDelta)
})
// Cannot copy side effects
self.sideEffects = nil
}
public var description: String {
var numArgEffects = escapeEffects.arguments.reduce(0, { max($0, $1.argumentIndex) }) + 1
if let sideEffects = sideEffects {
numArgEffects = max(numArgEffects, sideEffects.arguments.count)
}
var result = ""
for argIdx in 0..<numArgEffects {
var argStrings: [String] = []
for escEffect in escapeEffects.arguments where escEffect.argumentIndex == argIdx {
argStrings.append(escEffect.bodyDescription)
}
if let sideEffects = sideEffects, argIdx < sideEffects.arguments.count {
let argDescription = sideEffects.arguments[argIdx].bodyDescription
if !argDescription.isEmpty {
argStrings.append(argDescription)
}
}
if !argStrings.isEmpty {
result += "[%\(argIdx): " + argStrings.joined(separator: ", ") + "]\n"
}
}
if let sideEffects = sideEffects {
result += "[global: \(sideEffects.global)]\n"
}
return result
}
}
extension Function {
/// Returns the global side effects of the function.
public func getSideEffects() -> SideEffects.GlobalEffects {
if let sideEffects = effects.sideEffects {
/// There are computed side effects.
return sideEffects.accumulatedEffects
} else {
var effects = definedGlobalEffects
// Even a `[readnone]` function can read from indirect arguments.
if (0..<numArguments).contains(where: {argumentConventions[$0].isIndirectIn}) {
effects.memory.read = true
}
// Even `[readnone]` and `[readonly]` functions write to indirect results.
if numIndirectResultArguments > 0 {
effects.memory.write = true
}
return effects
}
}
/// Returns the side effects for a function argument.
///
/// The `argument` can be a function argument in this function or an apply argument in a caller.
public func getSideEffects(forArgument argument: ProjectedValue,
atIndex argumentIndex: Int,
withConvention convention: ArgumentConvention) -> SideEffects.GlobalEffects {
var result = SideEffects.GlobalEffects()
// Effects are only defined for operations which don't involve a load.
// In case the argument's path involves a load we need to return the global effects.
if argument.value.type.isAddress {
// Indirect arguments:
if argument.path.mayHaveClassProjection {
// For example:
// bb0(%0: $*C):
// %1 = load %0 // the involved load
// %2 = ref_element_addr %1 // class projection
return getSideEffects()
}
} else {
// Direct arguments:
if argument.path.mayHaveTwoClassProjections {
// For example:
// bb0(%0: $C):
// %1 = ref_element_addr %1 // first class projection
// %2 = load %1 // the involved load
// %3 = ref_element_addr %2 // second class projection
return getSideEffects()
} else if argument.path.mayHaveClassProjection {
// For example:
// bb0(%0: $C):
// %1 = ref_element_addr %1 // class projection
// %2 = load [take] %1 // the involved load
// destroy_value %2
result.ownership = getSideEffects().ownership
}
}
if let sideEffects = effects.sideEffects {
/// There are computed side effects.
let argEffect = sideEffects.getArgumentEffects(for: argumentIndex)
if let effectPath = argEffect.read, effectPath.mayOverlap(with: argument.path) {
result.memory.read = true
}
if let effectPath = argEffect.write, effectPath.mayOverlap(with: argument.path) {
result.memory.write = true
}
if let effectPath = argEffect.copy, effectPath.mayOverlap(with: argument.path) {
result.ownership.copy = true
}
if let effectPath = argEffect.destroy, effectPath.mayOverlap(with: argument.path) {
result.ownership.destroy = true
}
return result
} else {
/// Even for defined effects, there might be additional effects due to the argument conventions.
var result = definedGlobalEffects
if convention.isIndirectIn {
// Even a `[readnone]` function can read from an indirect argument.
result.memory.read = true
} else if convention.isIndirectOut {
// Even `[readnone]` and `[readonly]` functions write to indirect results.
result.memory.write = true
}
return result.restrictedTo(argument: argument, withConvention: convention)
}
}
/// Global effect of the function, defined by effect attributes.
public var definedGlobalEffects: SideEffects.GlobalEffects {
switch name {
case "_swift_stdlib_malloc_size", "_swift_stdlib_has_malloc_size":
// These C runtime functions, which are used in the array implementation, have defined effects.
return SideEffects.GlobalEffects(memory: SideEffects.Memory(read: true))
default:
break
}
if isProgramTerminationPoint {
// We can ignore any memory writes in a program termination point, because it's not relevant
// for the caller. But we need to consider memory reads, otherwise preceeding memory writes
// would be eliminated by dead-store-elimination in the caller. E.g. String initialization
// for error strings which are printed by the program termination point.
// Regarding ownership: a program termination point must not touch any reference counted objects.
return SideEffects.GlobalEffects(memory: SideEffects.Memory(read: true))
}
var result = SideEffects.GlobalEffects.worstEffects
switch effectAttribute {
case .none:
// The common case: there is no effect attribute, so we have to assume the worst effects.
break
case .readNone:
result.memory.read = false
result.memory.write = false
result.ownership.destroy = false
result.allocates = false
case .readOnly:
result.memory.write = false
result.ownership.destroy = false
result.allocates = false
case .releaseNone:
result.ownership.destroy = false
}
return result
}
}
/// Escape effects.
///
/// The escape effects describe which arguments are not escaping or escaping to
/// the return value or other arguments.
public struct EscapeEffects : CustomStringConvertible, NoReflectionChildren {
public var arguments: [ArgumentEffect]
public func canEscape(argumentIndex: Int, path: SmallProjectionPath) -> Bool {
return !arguments.contains(where: {
if case .notEscaping = $0.kind, $0.argumentIndex == argumentIndex {
if path.matches(pattern: $0.pathPattern) {
return true
}
}
return false
})
}
public var description: String {
let maxArgIdx = arguments.reduce(0) { max($0, $1.argumentIndex) }
var result = ""
for argIdx in 0...maxArgIdx {
var argStrings: [String] = []
for escEffect in arguments where escEffect.argumentIndex == argIdx {
argStrings.append(escEffect.bodyDescription)
}
if !argStrings.isEmpty {
result += "[%\(argIdx): " + argStrings.joined(separator: ", ") + "]\n"
}
}
return result
}
/// An escape effect on a function argument.
public struct ArgumentEffect : Equatable, CustomStringConvertible, NoReflectionChildren {
public enum Kind : Equatable {
/// The argument value does not escape.
///
/// Syntax examples:
/// [%0: noescape] // argument 0 does not escape
/// [%0: noescape **] // argument 0 and all transitively contained values do not escape
///
case notEscaping
/// The argument value escapes to the function return value.
///
/// Syntax examples:
/// [%0: escape s1 => %r] // field 2 of argument 0 exclusively escapes via return.
/// [%0: escape s1 -> %r] // field 2 of argument 0 - and other values - escape via return
///
/// The `isExclusive` flag is true if only the argument escapes, but nothing else escapes to
/// the return value.
/// For example, `isExclusive` is true for the following function:
///
/// @_effect(escaping c => return)
/// func exclusiveEscape(_ c: Class) -> Class { return c }
///
/// but not in this case:
///
/// var global: Class
///
/// @_effect(escaping c -> return)
/// func notExclusiveEscape(_ c: Class) -> Class { return cond ? c : global }
///
/// Also, if `isExclusive` is true, there must not be a store in the chain from the argument to
/// the return, e.g.
///
/// @_effect(escaping x -> return)
/// func notExclusiveEscape(_ s: String) -> Class {
/// c = new Class()
/// c.s = s // Store, which prevents the effect to be `isExclusive`
/// return s
/// }
case escapingToReturn(toPath: SmallProjectionPath, isExclusive: Bool)
/// Like `escapingToReturn`, but the argument escapes to another argument.
///
/// Example: The argument effects of
///
/// func argToArgEscape(_ r: inout Class, _ c: Class) { r = c }
///
/// would be
/// [%1: escape => %0] // Argument 1 escapes to argument 0
///
/// It's not allowed that the argument (or a derived value) is _stored_ to an object which is loaded from somewhere.
/// In the following example `c` is loaded from the indirect inout argument and `s` is stored to a field of `c`:
///
/// func noEscapeEffect(_ c: inout Class, s: String) {
/// c.s = s
/// }
///
/// In this case there is no escaping effect from `s` to `c`.
/// Note that theoretically this rule also applies to the `escapingToReturn` effect, but it's impossible
/// to construct such a situation for an argument which is only escaping to the function return.
///
/// The `escapingToArgument` doesn't have an `isExclusive` flag, because an argument-to-argument escape
/// always involves a store, which makes an exclusive escape impossible.
case escapingToArgument(toArgumentIndex: Int, toPath: SmallProjectionPath)
}
/// To which argument does this effect apply to?
public let argumentIndex: Int
/// To which projection(s) of the argument does this effect apply to?
public let pathPattern: SmallProjectionPath
/// The kind of effect.
public let kind: Kind
/// True, if this effect is derived in an optimization pass.
/// False, if this effect is defined in the Swift source code.
public let isDerived: Bool
public init(_ kind: Kind, argumentIndex: Int, pathPattern: SmallProjectionPath, isDerived: Bool = true) {
self.argumentIndex = argumentIndex
self.pathPattern = pathPattern
self.kind = kind
self.isDerived = isDerived
}
/// Copy the ArgumentEffect by applying a delta on the argument index.
///
/// This is used when copying argument effects for specialized functions where
/// the indirect result is converted to a direct return value (in this case the
/// `resultArgDelta` is -1).
init?(copiedFrom srcEffect: ArgumentEffect, resultArgDelta: Int) {
if srcEffect.argumentIndex + resultArgDelta < 0 {
return nil
}
self.argumentIndex = srcEffect.argumentIndex + resultArgDelta
self.pathPattern = srcEffect.pathPattern
self.isDerived = srcEffect.isDerived
switch srcEffect.kind {
case .notEscaping:
self.kind = .notEscaping
case .escapingToReturn(let toPath, let exclusive):
if resultArgDelta > 0 {
if resultArgDelta != 1 {
return nil
}
self.kind = .escapingToArgument(toArgumentIndex: 0, toPath: toPath)
} else {
self.kind = .escapingToReturn(toPath: toPath, isExclusive: exclusive)
}
case .escapingToArgument(let toArgIdx, let toPath):
let resultingToArgIdx = toArgIdx + resultArgDelta
if resultingToArgIdx < 0 {
if resultingToArgIdx != -1 {
return nil
}
self.kind = .escapingToReturn(toPath: toPath, isExclusive: false)
} else {
self.kind = .escapingToArgument(toArgumentIndex: resultingToArgIdx, toPath: toPath)
}
}
}
public func matches(_ rhsArgIdx: Int, _ rhsPath: SmallProjectionPath) -> Bool {
if argumentIndex != rhsArgIdx {
return false
}
return rhsPath.matches(pattern: pathPattern)
}
public var bodyDescription: String {
let patternStr = (isDerived ? "" : "!") + (pathPattern.isEmpty ? "" : " \(pathPattern)")
switch kind {
case .notEscaping:
return "noescape\(patternStr)"
case .escapingToReturn(let toPath, let exclusive):
let toPathStr = (toPath.isEmpty ? "" : ".\(toPath)")
return "escape\(patternStr) \(exclusive ? "=>" : "->") %r\(toPathStr)"
case .escapingToArgument(let toArgIdx, let toPath):
let toPathStr = (toPath.isEmpty ? "" : ".\(toPath)")
return "escape\(patternStr) -> %\(toArgIdx)\(toPathStr)"
}
}
public var description: String {
"\(argumentIndex): \(bodyDescription)"
}
}
}
/// Side effects.
///
/// Side effects describe the memory (read, write) and ownership (copy, destroy)
/// of the function arguments and the function as a whole.
public struct SideEffects : CustomStringConvertible, NoReflectionChildren {
/// Effects, which can be attributed to a specific argument.
///
/// This array is indexed by the argument index. Arguments which indices, which
/// are not included in this array, are defined to have no effects.
public let arguments: [ArgumentEffects]
/// Effects, which cannot be attributed to a specific argument.
public let global: GlobalEffects
public init(arguments: [ArgumentEffects], global: GlobalEffects) {
self.arguments = arguments
self.global = global
}
/// Returns the effects of an argument.
///
/// In constrast to using `arguments` directly, it's valid to have an `argumentIndex`
/// which is larger than the number of elements in `arguments`.
public func getArgumentEffects(for argumentIndex: Int) -> ArgumentEffects {
if argumentIndex < arguments.count {
return arguments[argumentIndex]
}
return ArgumentEffects()
}
/// The "accumulated" effects of the function, which includes the `global` effects and
/// all argument effects.
public var accumulatedEffects: GlobalEffects {
var result = global
for argEffect in arguments {
if argEffect.read != nil { result.memory.read = true }
if argEffect.write != nil { result.memory.write = true }
if argEffect.copy != nil { result.ownership.copy = true }
if argEffect.destroy != nil { result.ownership.destroy = true }
}
return result
}
public var description: String {
var result = ""
for (argIdx, argument) in arguments.enumerated() {
let argDescription = argument.bodyDescription
if !argDescription.isEmpty {
result += "[%\(argIdx): \(argDescription)]\n"
}
}
result += "[global: \(global)]\n"
return result
}
/// Side-effects of a specific function argument.
///
/// The paths describe what (projeted) values of an argument are affected.
/// If a path is nil, than there is no such effect on the argument.
///
/// A path can contain any projection or wildcards, as long as there is no load involved.
/// In other words, an effect path can refer to the argument value directly or to anything the
/// argument "points to", but does not cover anything which is loaded from memory.
/// For example, if the `write` path for an inout argument is nil, there is no write to the inout address.
/// But there might very well be a write to a class field of a reference which is loaded from the inout.
/// ```
/// bb0(%0 : $*X): // inout
/// %1 = load %0 // read path = v**
/// %2 = ref_element_addr %1, #f
/// store %x to %2 // not covered by argument effects! -> goes to global effects
/// ```
///
/// For direct argument it's different, because a direct argument (which contains a class reference) can point
/// to a class field.
/// ```
/// bb0(%0 : $X): // direct argument
/// %1 = ref_element_addr %0, #f
/// store %x to %1 // write path = c*.v**
/// %2 = load %1 // read path = c*.v**
/// %3 = ref_element_addr %2, #f
/// store %x to %3 // not covered by argument effects! -> goes to global effects
/// ```
public struct ArgumentEffects : Equatable, CustomStringConvertible, NoReflectionChildren {
/// If not nil, the function may read from the argument at the path.
public var read: SmallProjectionPath?
/// If not nil, the function may write to the argument at the path.
public var write: SmallProjectionPath?
/// If not nil, the function may copy/retain the argument at the path (only non-trivial values).
public var copy: SmallProjectionPath?
/// If not nil, the function may destroy/release the argument at the path (only non-trivial values).
public var destroy: SmallProjectionPath?
public init() {}
var isEmpty: Bool { self == ArgumentEffects() }
/// The `description` without the square brackets
public var bodyDescription: String {
var results: [String] = []
if let path = read { results.append("read \(path)") }
if let path = write { results.append("write \(path)") }
if let path = copy { results.append("copy \(path)") }
if let path = destroy { results.append("destroy \(path)") }
return results.joined(separator: ", ")
}
public var description: String { "[\(bodyDescription)]" }
}
/// "Global" effects of the function.
///
/// Global effects are effects which cannot be associated with function arguments,
/// for example reading from a global variable or reading from loaded value from an argument.
public struct GlobalEffects : Equatable, CustomStringConvertible, NoReflectionChildren {
/// Memory reads and writes.
public var memory: Memory
/// Copies and destroys.
public var ownership: Ownership
/// If true, the function may allocate an object.
///
/// This only includes allocations, which escape the function. Local allocations
/// are not observable form the outside and are therefore not considered.
public var allocates: Bool
/// If true, destroys of lexical values may not be hoisted over applies of
/// the function.
///
/// This is true when the function (or a callee, transitively) contains a
/// deinit barrier instruction.
public var isDeinitBarrier: Bool
/// When called with default arguments, it creates an "effect-free" GlobalEffects.
public init(memory: Memory = Memory(read: false, write: false),
ownership: Ownership = Ownership(copy: false, destroy: false),
allocates: Bool = false,
isDeinitBarrier: Bool = false) {
self.memory = memory
self.ownership = ownership
self.allocates = allocates
self.isDeinitBarrier = isDeinitBarrier
}
public mutating func merge(with other: GlobalEffects) {
memory.merge(with: other.memory)
ownership.merge(with: other.ownership)
allocates = allocates || other.allocates
isDeinitBarrier = isDeinitBarrier || other.isDeinitBarrier
}
/// Removes effects, which cannot occur for an `argument` value with a given `convention`.
public func restrictedTo(argument: ProjectedValue, withConvention convention: ArgumentConvention) -> GlobalEffects {
var result = self
let isTrivial = argument.value.hasTrivialNonPointerType
if isTrivial {
// There cannot be any ownership effects on trivial arguments.
result.ownership = SideEffects.Ownership()
}
switch convention {
case .indirectIn, .packOwned:
result.memory.write = false
case .indirectInGuaranteed, .packGuaranteed:
result.memory.write = false
result.ownership.destroy = false
case .indirectOut, .packOut, .packInout:
result.memory.read = false
result.ownership.copy = false
result.ownership.destroy = false
case .directGuaranteed:
// Note that `directGuaranteed` still has a "destroy" effect, because an object stored in
// a class property could be destroyed.
if !argument.path.mayHaveClassProjection {
result.ownership.destroy = false
}
fallthrough
case .directOwned, .directUnowned:
if isTrivial {
// Trivial direct arguments cannot have class properties which could be loaded from/stored to.
result.memory = SideEffects.Memory()
}
case .indirectInout, .indirectInoutAliasable:
break
}
return result
}
public static var worstEffects: GlobalEffects {
GlobalEffects(memory: .worstEffects, ownership: .worstEffects, allocates: true, isDeinitBarrier: true)
}
public var description: String {
var res: [String] = [memory.description, ownership.description].filter { !$0.isEmpty }
if allocates { res += ["allocate"] }
if isDeinitBarrier { res += ["deinit_barrier"] }
return res.joined(separator: ",")
}
}
/// Memory read and write effects.
public struct Memory : Equatable, CustomStringConvertible, NoReflectionChildren {
public var read: Bool
public var write: Bool
public init(read: Bool = false, write: Bool = false) {
self.read = read
self.write = write
}
public var description: String {
switch (read, write) {
case (false, false): return ""
case (false, true): return "write"
case (true, false): return "read"
case (true, true): return "read,write"
}
}
public mutating func merge(with other: Memory) {
read = read || other.read
write = write || other.write
}
public static var worstEffects: Memory {
Memory(read: true, write: true)
}
}
/// Copy and destroy effects.
public struct Ownership : Equatable, CustomStringConvertible, NoReflectionChildren {
public var copy: Bool
public var destroy: Bool
public init(copy: Bool = false, destroy: Bool = false) {
self.copy = copy
self.destroy = destroy
}
public var description: String {
switch (copy, destroy) {
case (false, false): return ""
case (false, true): return "destroy"
case (true, false): return "copy"
case (true, true): return "copy,destroy"
}
}
public mutating func merge(with other: Ownership) {
copy = copy || other.copy
destroy = destroy || other.destroy
}
public static var worstEffects: Ownership {
Ownership(copy: true, destroy: true)
}
}
}
//===----------------------------------------------------------------------===//
// Parsing
//===----------------------------------------------------------------------===//
extension StringParser {
mutating func parseEffectFromSource(for function: Function,
params: Dictionary<String, Int>) throws -> EscapeEffects.ArgumentEffect {
if consume("notEscaping") {
let argIdx = try parseArgumentIndexFromSource(for: function, params: params)
let path = try parsePathPatternFromSource(for: function, type: function.argumentTypes[argIdx])
return EscapeEffects.ArgumentEffect(.notEscaping, argumentIndex: argIdx, pathPattern: path, isDerived: false)
}
if consume("escaping") {
let fromArgIdx = try parseArgumentIndexFromSource(for: function, params: params)
let fromPath = try parsePathPatternFromSource(for: function, type: function.argumentTypes[fromArgIdx])
let exclusive = try parseEscapingArrow()
if consume("return") {
if function.numIndirectResultArguments > 0 {
if function.numIndirectResultArguments != 1 {
try throwError("multi-value returns not supported yet")
}
let toPath = try parsePathPatternFromSource(for: function, type: function.argumentTypes[0])
// Exclusive escapes are ignored for indirect return values.
return EscapeEffects.ArgumentEffect(.escapingToArgument(toArgumentIndex: 0, toPath: toPath),
argumentIndex: fromArgIdx, pathPattern: fromPath, isDerived: false)
}
let toPath = try parsePathPatternFromSource(for: function, type: function.resultType)
return EscapeEffects.ArgumentEffect(.escapingToReturn(toPath: toPath, isExclusive: exclusive),
argumentIndex: fromArgIdx, pathPattern: fromPath, isDerived: false)
}
if exclusive {
try throwError("exclusive escapes to arguments are not supported")
}
let toArgIdx = try parseArgumentIndexFromSource(for: function, params: params)
let toPath = try parsePathPatternFromSource(for: function, type: function.argumentTypes[toArgIdx])
return EscapeEffects.ArgumentEffect(.escapingToArgument(toArgumentIndex: toArgIdx, toPath: toPath),
argumentIndex: fromArgIdx, pathPattern: fromPath, isDerived: false)
}
try throwError("unknown effect")
}
private mutating func parseArgumentIndexFromSource(for function: Function,
params: Dictionary<String, Int>) throws -> Int {
if consume("self") {
if !function.hasSelfArgument {
try throwError("function does not have a self argument")
}
return function.selfArgumentIndex
}
if let name = consumeIdentifier() {
guard let idx = params[name] else {
try throwError("parameter not found")
}
return idx + function.numIndirectResultArguments
}
try throwError("parameter name expected")
}
private mutating func parsePathPatternFromSource(for function: Function, type: Type) throws -> SmallProjectionPath {
if consume(".") {
return try parseProjectionPathFromSource(for: function, type: type)
}
if !type.isClass {
try throwError("the value is not a class - add 'anyValueFields'")
}
return SmallProjectionPath()
}
mutating func parseEffectsFromSIL(to effects: inout FunctionEffects) throws {
if consume("global") {
if !consume(":") {
try throwError("expected ':'")
}
try parseGlobalSideEffectsFromSIL(to: &effects)
return
}
let argumentIndex = try parseArgumentIndexFromSIL()
if !consume(":") {
try throwError("expected ':'")
}
try parseEffectsFromSIL(argumentIndex: argumentIndex, to: &effects)
}
mutating func parseEffectsFromSIL(argumentIndex: Int, to effects: inout FunctionEffects) throws {
repeat {
if consume("noescape") {
let isDerived = !consume("!")
let path = try parseProjectionPathFromSIL()
let effect = EscapeEffects.ArgumentEffect(.notEscaping, argumentIndex: argumentIndex,
pathPattern: path, isDerived: isDerived)
effects.escapeEffects.arguments.append(effect)
} else if consume("escape") {
let isDerived = !consume("!")
let fromPath = try parseProjectionPathFromSIL()
let exclusive = try parseEscapingArrow()
let effect: EscapeEffects.ArgumentEffect
if consume("%r") {
let toPath = consume(".") ? try parseProjectionPathFromSIL() : SmallProjectionPath()
effect = EscapeEffects.ArgumentEffect(.escapingToReturn(toPath: toPath, isExclusive: exclusive),
argumentIndex: argumentIndex, pathPattern: fromPath, isDerived: isDerived)
} else {
if exclusive {
try throwError("exclusive escapes to arguments are not supported")
}
let toArgIdx = try parseArgumentIndexFromSIL()
let toPath = consume(".") ? try parseProjectionPathFromSIL() : SmallProjectionPath()
effect = EscapeEffects.ArgumentEffect(.escapingToArgument(toArgumentIndex: toArgIdx, toPath: toPath),
argumentIndex: argumentIndex, pathPattern: fromPath, isDerived: isDerived)
}
effects.escapeEffects.arguments.append(effect)
} else if consume("read") {
try parseSideEffectPath(\.read, for: argumentIndex)
} else if consume("write") {
try parseSideEffectPath(\.write, for: argumentIndex)
} else if consume("copy") {
try parseSideEffectPath(\.copy, for: argumentIndex)
} else if consume("destroy") {
try parseSideEffectPath(\.destroy, for: argumentIndex)
} else {
try throwError("unknown effect")
}
} while consume(",")
func parseSideEffectPath(_ e: WritableKeyPath<SideEffects.ArgumentEffects, SmallProjectionPath?>, for argumentIndex: Int) throws {
var arguments = effects.sideEffects?.arguments ?? []
while arguments.count <= argumentIndex {
arguments.append(SideEffects.ArgumentEffects())
}
arguments[argumentIndex][keyPath: e] = try parseProjectionPathFromSIL()
let global = effects.sideEffects?.global ?? SideEffects.GlobalEffects()
effects.sideEffects = SideEffects(arguments: arguments, global: global)
}
}
mutating func parseGlobalSideEffectsFromSIL(to effects: inout FunctionEffects) throws {
var globalEffects = SideEffects.GlobalEffects()
repeat {
if consume("read") { globalEffects.memory.read = true }
else if consume("write") { globalEffects.memory.write = true }
else if consume("copy") { globalEffects.ownership.copy = true }
else if consume("destroy") { globalEffects.ownership.destroy = true }
else if consume("allocate") { globalEffects.allocates = true }
else if consume("deinit_barrier") { globalEffects.isDeinitBarrier = true }
else {
break
}
} while consume(",")
let arguments = effects.sideEffects?.arguments ?? []
effects.sideEffects = SideEffects(arguments: arguments, global: globalEffects)
return
}
private mutating func parseArgumentIndexFromSIL() throws -> Int {
if consume("%") {
if let argIdx = consumeInt() {
return argIdx
}
try throwError("expected argument index")
}
try throwError("expected parameter")
}
private mutating func parseEscapingArrow() throws -> Bool {
if consume("=>") { return true }
if consume("->") { return false }
try throwError("expected '=>' or '->'")
}
}
public extension Optional where Wrapped == SmallProjectionPath {
mutating func merge(with path: SmallProjectionPath) {
if let existingPath = self {
self = existingPath.merge(with: path)
} else {
self = path
}
}
}
|