FASM: Dynamic array

1.7k Views Asked by At

How can I store variables in an array, which size is known only on run-time? How can I access elements of this array? I think it should be easy, but I don't see a way.

I mean something like dynamic arrays in C.

3

There are 3 best solutions below

0
On

You don't state which operating system, but under Windows, VirtualAlloc is an easy way of allocating coarse blocks of memory. It returns a pointer which you can load into a register and use as a base address.

invoke  VirtualAlloc,NULL,size,MEM_COMMIT+MEM_RESERVE,PAGE_READWRITE
mov     [eax],something
0
On

For WinAPI this would be sth like:

invoke HeapAlloc, hHeap, flags, size
mov    [pointer], eax

For more information see this (HeapAlloc)
https://learn.microsoft.com/en-us/windows/win32/api/heapapi/nf-heapapi-heapalloc
and this (Heaps in Windows)
https://learn.microsoft.com/en-us/windows/win32/api/heapapi/

1
On

You could also allocate memory with a static size on stack at the beginning of your function:

proc yourFunction stdcall param1:DWORD
local yourData[256]:BYTE
  ;...
endp

It has the disadvantage of having a static size (256 bytes in the example above) but you don't have to call plattform specific APIs like VirtualAlloc and it is cleaned up when you leave your function (no need to keep track of your allocated data and call VirtualFree()).