AllocStack
public struct AllocStack : Instruction
extension AllocStack: CustomStringConvertible
Allocates memory on the stack.
-
The type for which storage is allocated.
Declaration
Swift
public let allocatedType: AnyType -
The site of the code corresponding to that instruction.
Declaration
Swift
public let site: SourceRange -
Creates an instance with the given properties.
Declaration
Swift
fileprivate init(allocatedType: AnyType, site: SourceRange) -
Declaration
Swift
public var result: IR.Type? { get } -
Declaration
Swift
public func replaceOperand(at i: Int, with new: Operand) -
Declaration
Swift
public var description: String { get }
View on GitHub