MarkState
public struct MarkState : Instruction
extension MarkState: CustomStringConvertible
Unsafely sets the initialization state of storage.
-
The storage whose initialization state is updated.
Declaration
Swift
public private(set) var storage: Operand { get } -
trueiffstorageis marked initialized;falseif it is marked uninitialized.Declaration
Swift
public let initialized: Bool -
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(storage: Operand, initialized: Bool, site: SourceRange) -
Declaration
Swift
public var operands: [Operand] { get } -
Declaration
Swift
public mutating func replaceOperand(at i: Int, with new: Operand) -
Declaration
Swift
public var description: String { get }
View on GitHub