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
|
//===--- ModulePassContext.swift ------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2022 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 SIL
import OptimizerBridging
/// The context which is passed to a `ModulePass`'s run-function.
///
/// It provides access to all functions, v-tables and witness tables of a module,
/// but it doesn't provide any APIs to modify functions.
/// In order to modify a function, a module pass must use `transform(function:)`.
struct ModulePassContext : Context, CustomStringConvertible {
let _bridged: BridgedPassContext
var description: String {
return String(taking: _bridged.getModuleDescription())
}
struct FunctionList : CollectionLikeSequence, IteratorProtocol {
private var currentFunction: Function?
fileprivate init(first: Function?) { currentFunction = first }
mutating func next() -> Function? {
if let f = currentFunction {
currentFunction = BridgedPassContext.getNextFunctionInModule(f.bridged).function
return f
}
return nil
}
}
struct GlobalVariableList : CollectionLikeSequence, IteratorProtocol {
private var currentGlobal: GlobalVariable?
fileprivate init(first: GlobalVariable?) { currentGlobal = first }
mutating func next() -> GlobalVariable? {
if let g = currentGlobal {
currentGlobal = BridgedPassContext.getNextGlobalInModule(g.bridged).globalVar
return g
}
return nil
}
}
struct VTableArray : BridgedRandomAccessCollection {
fileprivate let bridgedCtxt: BridgedPassContext
var startIndex: Int { return 0 }
var endIndex: Int { return bridgedCtxt.getNumVTables() }
subscript(_ index: Int) -> VTable {
assert(index >= startIndex && index < endIndex)
return VTable(bridged: bridgedCtxt.getVTable(index))
}
}
struct WitnessTableList : CollectionLikeSequence, IteratorProtocol {
private var currentTable: WitnessTable?
fileprivate init(first: WitnessTable?) { currentTable = first }
mutating func next() -> WitnessTable? {
if let t = currentTable {
currentTable = BridgedPassContext.getNextWitnessTableInModule(t.bridged).witnessTable
return t
}
return nil
}
}
struct DefaultWitnessTableList : CollectionLikeSequence, IteratorProtocol {
private var currentTable: DefaultWitnessTable?
fileprivate init(first: DefaultWitnessTable?) { currentTable = first }
mutating func next() -> DefaultWitnessTable? {
if let t = currentTable {
currentTable = BridgedPassContext.getNextDefaultWitnessTableInModule(t.bridged).defaultWitnessTable
return t
}
return nil
}
}
var functions: FunctionList {
FunctionList(first: _bridged.getFirstFunctionInModule().function)
}
var globalVariables: GlobalVariableList {
GlobalVariableList(first: _bridged.getFirstGlobalInModule().globalVar)
}
var vTables: VTableArray { VTableArray(bridgedCtxt: _bridged) }
var witnessTables: WitnessTableList {
WitnessTableList(first: _bridged.getFirstWitnessTableInModule().witnessTable)
}
var defaultWitnessTables: DefaultWitnessTableList {
DefaultWitnessTableList(first: _bridged.getFirstDefaultWitnessTableInModule().defaultWitnessTable)
}
/// Run a closure with a `PassContext` for a function, which allows to modify that function.
///
/// Only a single `transform` can be alive at the same time, i.e. it's not allowed to nest
/// calls to `transform`.
func transform(function: Function, _ runOnFunction: (FunctionPassContext) -> ()) {
_bridged.beginTransformFunction(function.bridged)
runOnFunction(FunctionPassContext(_bridged: _bridged))
_bridged.endTransformFunction();
}
func loadFunction(function: Function, loadCalleesRecursively: Bool) -> Bool {
if function.isDefinition {
return true
}
_bridged.loadFunction(function.bridged, loadCalleesRecursively)
return function.isDefinition
}
func specialize(function: Function, for substitutions: SubstitutionMap) -> Function? {
return _bridged.specializeFunction(function.bridged, substitutions.bridged).function
}
enum DeserializationMode {
case allFunctions
case onlySharedFunctions
}
func deserializeAllCallees(of function: Function, mode: DeserializationMode) {
_bridged.deserializeAllCallees(function.bridged, mode == .allFunctions ? true : false)
}
@discardableResult
func createWitnessTable(entries: [WitnessTable.Entry],
conformance: Conformance,
linkage: Linkage,
serialized: Bool) -> WitnessTable
{
let bridgedEntries = entries.map { $0.bridged }
let bridgedWitnessTable = bridgedEntries.withBridgedArrayRef {
_bridged.createWitnessTable(linkage.bridged, serialized, conformance.bridged, $0)
}
return WitnessTable(bridged: bridgedWitnessTable)
}
@discardableResult
func createSpecializedVTable(entries: [VTable.Entry],
for classType: Type,
isSerialized: Bool) -> VTable
{
let bridgedEntries = entries.map { $0.bridged }
let bridgedVTable = bridgedEntries.withBridgedArrayRef {
_bridged.createSpecializedVTable(classType.bridged, isSerialized, $0)
}
return VTable(bridged: bridgedVTable)
}
func replaceVTableEntries(of vTable: VTable, with entries: [VTable.Entry]) {
let bridgedEntries = entries.map { $0.bridged }
bridgedEntries.withBridgedArrayRef {
vTable.bridged.replaceEntries($0)
}
notifyFunctionTablesChanged()
}
func createEmptyFunction(
name: String,
parameters: [ParameterInfo],
hasSelfParameter: Bool,
fromOriginal originalFunction: Function
) -> Function {
return name._withBridgedStringRef { nameRef in
let bridgedParamInfos = parameters.map { $0._bridged }
return bridgedParamInfos.withUnsafeBufferPointer { paramBuf in
_bridged.createEmptyFunction(nameRef, paramBuf.baseAddress, paramBuf.count,
hasSelfParameter, originalFunction.bridged).function
}
}
}
func moveFunctionBody(from sourceFunc: Function, to destFunc: Function) {
precondition(!destFunc.isDefinition, "cannot move body to non-empty function")
_bridged.moveFunctionBody(sourceFunc.bridged, destFunc.bridged)
}
func mangleAsyncRemoved(from function: Function) -> String {
return String(taking: _bridged.mangleAsyncRemoved(function.bridged))
}
func mangle(withDeadArguments: [Int], from function: Function) -> String {
withDeadArguments.withUnsafeBufferPointer { bufPtr in
bufPtr.withMemoryRebound(to: Int.self) { valPtr in
String(taking: _bridged.mangleWithDeadArgs(valPtr.baseAddress,
withDeadArguments.count,
function.bridged))
}
}
}
func notifyFunctionTablesChanged() {
_bridged.asNotificationHandler().notifyChanges(.functionTablesChanged)
}
}
extension GlobalVariable {
func setIsLet(to value: Bool, _ context: ModulePassContext) {
bridged.setLet(value)
}
}
extension Function {
func set(linkage: Linkage, _ context: ModulePassContext) {
bridged.setLinkage(linkage.bridged)
}
func set(isSerialized: Bool, _ context: ModulePassContext) {
bridged.setIsSerialized(isSerialized)
}
}
|