Stack allocations

Stack allocations are used to allocate memory on the stack. They are useful for storing temporary values that are only needed for a short period of time.

The stack allocations start at address 61294 and end at address 65535. The stack grows upwards, so the first stack allocation is at address 61294 and the last stack allocation is at address 65535.

When a function is called, the current stack pointer is stored. When the function returns, the stack pointer is reset to the stored value. This means that stack allocations are only valid within the function they are declared in.

Declaring a stack allocation

A stack allocation is declared using the stackalloc keyword, followed by the type of the allocation and the name of the allocation:

int[] numbers = stackalloc int[10]

Assigning a stack allocation

Since stack allocations are pointers, they can be used like any other pointer:

int[] numbers = stackalloc int[10]

numbers[0] = 1 // Set the first element of the array to 1

int result = numbers[0] // Get the first element of the array

Example

The following shows an example of the stack allocations growing upwards:

int allocate() {
    // Allocate 10 integers on the stack
    int[] numbers = stackalloc int[10]

    // Return the address of the stack allocation
    return get_address(numbers)
}

// The following call will return address 61294
allocate()

void allocate_call() {
    // The following call will return address 61294
    allocate()

    // Because the stack is reset after a function returns,
    // the following call allocation will also return address 61294
    int[] numbers = stackalloc int[10]

    // The following call will return address 61304
    // because we allocated 10 integers in this function
    allocate()
}

allocate_call()

// Utility function to get the address of a stack allocation
inline int get_address(int[] pointer) => asm { AIN @pointer }