mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* C++: add a function `getDestructors(SILType type, bool isExactType)’: if the type is a final class or `isExactType` is true, then return the one and only destructor of that class. * swift: add `getDestructor(ofExactType type: Type)` and `getIncompleteCallees` * swift: remove `getDestructor` from the PassContext. The API of the `calleeAnalysis` can be used instead.
58 lines
1.9 KiB
Swift
58 lines
1.9 KiB
Swift
//===--- CalleeAnalysis.swift - the callee analysis -----------------------===//
|
|
//
|
|
// 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 OptimizerBridging
|
|
import SIL
|
|
|
|
public struct CalleeAnalysis {
|
|
let bridged: BridgedCalleeAnalysis
|
|
|
|
public func getCallees(callee: Value) -> FunctionArray? {
|
|
let bridgedFuncs = CalleeAnalysis_getCallees(bridged, callee.bridged)
|
|
if bridgedFuncs.incomplete != 0 {
|
|
return nil
|
|
}
|
|
return FunctionArray(bridged: bridgedFuncs)
|
|
}
|
|
|
|
public func getIncompleteCallees(callee: Value) -> FunctionArray {
|
|
return FunctionArray(bridged: CalleeAnalysis_getCallees(bridged, callee.bridged))
|
|
}
|
|
|
|
public func getDestructor(ofExactType type: Type) -> Function? {
|
|
let destructors = FunctionArray(bridged: CalleeAnalysis_getDestructors(bridged, type.bridged, /*isExactType*/ 1))
|
|
if destructors.count == 1 {
|
|
return destructors[0]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
public func getDestructors(of type: Type) -> FunctionArray? {
|
|
let bridgedDtors = CalleeAnalysis_getDestructors(bridged, type.bridged, /*isExactType*/ 0)
|
|
if bridgedDtors.incomplete != 0 {
|
|
return nil
|
|
}
|
|
return FunctionArray(bridged: bridgedDtors)
|
|
}
|
|
}
|
|
|
|
public struct FunctionArray : RandomAccessCollection, FormattedLikeArray {
|
|
fileprivate let bridged: BridgedCalleeList
|
|
|
|
public var startIndex: Int { 0 }
|
|
public var endIndex: Int { BridgedFunctionArray_size(bridged) }
|
|
|
|
public subscript(_ index: Int) -> Function {
|
|
return BridgedFunctionArray_get(bridged, index).function
|
|
}
|
|
}
|