StackFrame
struct StackFrame
The local variables, parameters, and return address for a function call.
-
The results of instructions.
Declaration
Swift
public var registers: [InstructionID : InstructionResult] -
The program counter to which execution should return when popping this frame.
Declaration
Swift
public var returnAddress: CodePointer -
The allocations in this stack frame.
Declaration
Swift
public var allocations: [Address]
View on GitHub