OpCodes.Localloc Field

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Allocates a certain number of bytes from the local dynamic memory pool and pushes the address (a transient pointer, type *) of the first allocated byte onto the evaluation stack.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public Shared ReadOnly Localloc As OpCode
public static readonly OpCode Localloc

Remarks

The following table lists the instruction's hexadecimal and Microsoft intermediate language (MSIL) assembly format, along with a brief reference summary:

Format

Assembly Format

Description

FE 0F

localloc

Allocate space from the local heap.

The stack transitional behavior, in sequential order, is:

  1. The number of bytes to be allocated is pushed onto the stack.

  2. The number of bytes is popped from the stack; an amount of memory corresponding to the size is allocated from the local heap.

  3. A pointer to the first byte of the allocated memory is pushed onto the stack.

The localloc instruction allocates size (type natural unsigned int) bytes from the local dynamic memory pool and returns the address (a transient pointer, type *) of the first allocated byte. The block of memory returned is initialized to 0 only if the initialize flag on the method is true. When the current method executes a Ret, the local memory pool is made available for reuse.

The resulting address is aligned so that any primitive data type can be stored there using the stind instructions (such as Stind_I4) and loaded using the ldind instructions (such as Ldind_I4).

The localloc instruction cannot occur within a filter, catch, finally, or fault block.

StackOverflowException is thrown if there is insufficient memory to service the request.

The following Emit method overload can use the localloc opcode:

  • ILGenerator.Emit(OpCode)

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.