StackFrame
struct StackFrame
The local variables, parameters, and return address for a function call.
-
The results of instructions.
Declaration
Swift
public var registers: [InstructionID : Value] -
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
var allocations: [Memory.Place] -
Location of values passed to the function.
Declaration
Swift
var parameters: [Memory.Place]
View on GitHub