CallBuiltinFunction
public struct CallBuiltinFunction : Instruction
extension CallBuiltinFunction: CustomStringConvertible
Invokes the built-in function callee, passing operands as the argument list.
-
The function to be invoked.
Declaration
Swift
public let callee: BuiltinFunction -
The arguments to the invocation, in order.
Declaration
Swift
public private(set) var operands: [Operand] { get } -
The site of the code corresponding to that instruction.
Declaration
Swift
public let site: SourceRange -
An instance with the given properties.
Declaration
Swift
fileprivate init(applying s: BuiltinFunction, to operands: [Operand], site: SourceRange) -
Declaration
Swift
public var result: IR.Type? { get } -
Declaration
Swift
public mutating func replaceOperand(at i: Int, with new: Operand) -
Declaration
Swift
public var description: String { get }
View on GitHub