mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
309 lines
9.6 KiB
Swift
309 lines
9.6 KiB
Swift
//===--- BasicBlock.swift - Defines the BasicBlock class ------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import AST
|
|
import SILBridging
|
|
|
|
@_semantics("arc.immortal")
|
|
final public class BasicBlock : CustomStringConvertible, HasShortDescription, Hashable {
|
|
public var next: BasicBlock? { bridged.getNext().block }
|
|
public var previous: BasicBlock? { bridged.getPrevious().block }
|
|
|
|
public var parentFunction: Function { bridged.getFunction().function }
|
|
|
|
public var description: String {
|
|
return String(taking: bridged.getDebugDescription())
|
|
}
|
|
public var shortDescription: String { name }
|
|
|
|
/// The index of the basic block in its function.
|
|
/// This has O(n) complexity. Only use it for debugging
|
|
public var index: Int {
|
|
for (idx, block) in parentFunction.blocks.enumerated() {
|
|
if block == self { return idx }
|
|
}
|
|
fatalError()
|
|
}
|
|
|
|
public var name: String { "bb\(index)" }
|
|
|
|
public static func == (lhs: BasicBlock, rhs: BasicBlock) -> Bool { lhs === rhs }
|
|
|
|
public func hash(into hasher: inout Hasher) {
|
|
hasher.combine(ObjectIdentifier(self))
|
|
}
|
|
|
|
public var bridged: BridgedBasicBlock { BridgedBasicBlock(SwiftObject(self)) }
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Arguments
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
public var arguments: ArgumentArray { ArgumentArray(block: self) }
|
|
|
|
public func addArgument(type: Type, ownership: Ownership, _ context: some MutatingContext) -> Argument {
|
|
context.notifyInstructionsChanged()
|
|
return bridged.addBlockArgument(type.bridged, ownership._bridged).argument
|
|
}
|
|
|
|
public func addFunctionArgument(type: Type, _ context: some MutatingContext) -> FunctionArgument {
|
|
context.notifyInstructionsChanged()
|
|
return bridged.addFunctionArgument(type.bridged).argument as! FunctionArgument
|
|
}
|
|
|
|
public func insertFunctionArgument(atPosition: Int, type: Type, ownership: Ownership, decl: ValueDecl? = nil,
|
|
_ context: some MutatingContext) -> FunctionArgument
|
|
{
|
|
context.notifyInstructionsChanged()
|
|
return bridged.insertFunctionArgument(atPosition, type.bridged, ownership._bridged,
|
|
(decl as Decl?).bridged).argument as! FunctionArgument
|
|
}
|
|
|
|
public func insertPhiArgument(
|
|
atPosition: Int, type: Type, ownership: Ownership, _ context: some MutatingContext
|
|
) -> Argument {
|
|
context.notifyInstructionsChanged()
|
|
return bridged.insertPhiArgument(atPosition, type.bridged, ownership._bridged).argument
|
|
}
|
|
|
|
public func eraseArgument(at index: Int, _ context: some MutatingContext) {
|
|
context.notifyInstructionsChanged()
|
|
bridged.eraseArgument(index)
|
|
}
|
|
|
|
public func eraseAllArguments(_ context: some MutatingContext) {
|
|
// Arguments are stored in an array. We need to erase in reverse order to avoid quadratic complexity.
|
|
for argIdx in (0 ..< arguments.count).reversed() {
|
|
eraseArgument(at: argIdx, context)
|
|
}
|
|
}
|
|
|
|
public func moveAllArguments(to otherBlock: BasicBlock, _ context: some MutatingContext) {
|
|
bridged.moveArgumentsTo(otherBlock.bridged)
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Instructions
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
public var instructions: InstructionList {
|
|
InstructionList(first: bridged.getFirstInst().instruction)
|
|
}
|
|
|
|
public var terminator: TermInst {
|
|
bridged.getLastInst().instruction as! TermInst
|
|
}
|
|
|
|
public func moveAllInstructions(toBeginOf otherBlock: BasicBlock, _ context: some MutatingContext) {
|
|
context.notifyInstructionsChanged()
|
|
context.notifyBranchesChanged()
|
|
bridged.moveAllInstructionsToBegin(otherBlock.bridged)
|
|
}
|
|
|
|
public func moveAllInstructions(toEndOf otherBlock: BasicBlock, _ context: some MutatingContext) {
|
|
context.notifyInstructionsChanged()
|
|
context.notifyBranchesChanged()
|
|
bridged.moveAllInstructionsToEnd(otherBlock.bridged)
|
|
}
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// predecessors and successors
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
public var successors: SuccessorArray { terminator.successors }
|
|
|
|
public var predecessors: PredecessorList {
|
|
PredecessorList(startAt: bridged.getFirstPred())
|
|
}
|
|
|
|
public var singlePredecessor: BasicBlock? {
|
|
var preds = predecessors
|
|
if let p = preds.next() {
|
|
if preds.next() == nil {
|
|
return p
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
public var hasSinglePredecessor: Bool { singlePredecessor != nil }
|
|
|
|
public var singleSuccessor: BasicBlock? {
|
|
successors.count == 1 ? successors[0] : nil
|
|
}
|
|
|
|
/// All function exiting blocks except for ones with an `unreachable` terminator,
|
|
/// not immediately preceded by an apply of a no-return function.
|
|
public var isReachableExitBlock: Bool {
|
|
switch terminator {
|
|
case let termInst where termInst.isFunctionExiting:
|
|
return true
|
|
case is UnreachableInst:
|
|
if let instBeforeUnreachable = terminator.previous,
|
|
let ai = instBeforeUnreachable as? ApplyInst,
|
|
ai.isCalleeNoReturn && !ai.isCalleeTrapNoReturn
|
|
{
|
|
return true
|
|
}
|
|
|
|
return false
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
public func isCriticalEdge(edgeIndex: Int) -> Bool {
|
|
if terminator.successors.count <= 1 {
|
|
return false
|
|
} else {
|
|
return !terminator.successors[edgeIndex].hasSinglePredecessor
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The list of instructions in a BasicBlock.
|
|
///
|
|
/// It's allowed to delete the current, next or any other instructions while
|
|
/// iterating over the instruction list.
|
|
public struct InstructionList : CollectionLikeSequence, IteratorProtocol {
|
|
private var currentInstruction: Instruction?
|
|
|
|
public init(first: Instruction?) { currentInstruction = first }
|
|
|
|
public mutating func next() -> Instruction? {
|
|
if var inst = currentInstruction {
|
|
while inst.isDeleted {
|
|
guard let nextInst = inst.next else {
|
|
return nil
|
|
}
|
|
inst = nextInst
|
|
}
|
|
currentInstruction = inst.next
|
|
return inst
|
|
}
|
|
return nil
|
|
}
|
|
|
|
public var first: Instruction? { currentInstruction }
|
|
|
|
public var last: Instruction? { reversed().first }
|
|
|
|
public func reversed() -> ReverseInstructionList {
|
|
if let inst = currentInstruction {
|
|
let lastInst = inst.bridged.getLastInstOfParent().instruction
|
|
return ReverseInstructionList(first: lastInst)
|
|
}
|
|
return ReverseInstructionList(first: nil)
|
|
}
|
|
}
|
|
|
|
/// The list of instructions in a BasicBlock in reverse order.
|
|
///
|
|
/// It's allowed to delete the current, next or any other instructions while
|
|
/// iterating over the instruction list.
|
|
public struct ReverseInstructionList : CollectionLikeSequence, IteratorProtocol {
|
|
private var currentInstruction: Instruction?
|
|
|
|
public init(first: Instruction?) { currentInstruction = first }
|
|
|
|
public mutating func next() -> Instruction? {
|
|
if var inst = currentInstruction {
|
|
while inst.isDeleted {
|
|
guard let nextInst = inst.previous else {
|
|
return nil
|
|
}
|
|
inst = nextInst
|
|
}
|
|
currentInstruction = inst.previous
|
|
return inst
|
|
}
|
|
return nil
|
|
}
|
|
|
|
public var first: Instruction? { currentInstruction }
|
|
}
|
|
|
|
public struct ArgumentArray : RandomAccessCollection {
|
|
fileprivate let block: BasicBlock
|
|
|
|
public var startIndex: Int { return 0 }
|
|
public var endIndex: Int { block.bridged.getNumArguments() }
|
|
|
|
public subscript(_ index: Int) -> Argument {
|
|
block.bridged.getArgument(index).argument
|
|
}
|
|
}
|
|
|
|
public struct SuccessorArray : RandomAccessCollection, FormattedLikeArray {
|
|
private let base: OptionalBridgedSuccessor
|
|
public let count: Int
|
|
|
|
init(base: OptionalBridgedSuccessor, count: Int) {
|
|
self.base = base
|
|
self.count = count
|
|
}
|
|
|
|
public var startIndex: Int { return 0 }
|
|
public var endIndex: Int { return count }
|
|
|
|
public subscript(_ index: Int) -> BasicBlock {
|
|
assert(index >= startIndex && index < endIndex)
|
|
return base.advancedBy(index).getTargetBlock().block
|
|
}
|
|
}
|
|
|
|
public struct PredecessorList : CollectionLikeSequence, IteratorProtocol {
|
|
private var currentSucc: OptionalBridgedSuccessor
|
|
|
|
public init(startAt: OptionalBridgedSuccessor) { currentSucc = startAt }
|
|
|
|
public mutating func next() -> BasicBlock? {
|
|
if let succ = currentSucc.successor {
|
|
currentSucc = succ.getNext()
|
|
return succ.getContainingInst().instruction.parentBlock
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
// Bridging utilities
|
|
|
|
extension BridgedBasicBlock {
|
|
public var block: BasicBlock { obj.getAs(BasicBlock.self) }
|
|
public var optional: OptionalBridgedBasicBlock {
|
|
OptionalBridgedBasicBlock(obj: self.obj)
|
|
}
|
|
}
|
|
|
|
extension OptionalBridgedBasicBlock {
|
|
public var block: BasicBlock? { obj.getAs(BasicBlock.self) }
|
|
public static var none: OptionalBridgedBasicBlock {
|
|
OptionalBridgedBasicBlock(obj: nil)
|
|
}
|
|
}
|
|
|
|
extension Optional where Wrapped == BasicBlock {
|
|
public var bridged: OptionalBridgedBasicBlock {
|
|
OptionalBridgedBasicBlock(obj: self?.bridged.obj)
|
|
}
|
|
}
|
|
|
|
extension OptionalBridgedSuccessor {
|
|
var successor: BridgedSuccessor? {
|
|
if let succ = succ {
|
|
return BridgedSuccessor(succ: succ)
|
|
}
|
|
return nil
|
|
}
|
|
}
|