Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

making your own malloc function?

Tags:

c

malloc

I read that some games rewrite their own malloc to be more efficient. I don't understand how this is possible in a virtual memory world. If I recall correctly, malloc actually calls an OS specific function, which maps the virtual address to a real address with the MMU. So then how can someone make their own memory allocator and allocate real memory, without calling the actual runtime's malloc?

Thanks

like image 501
jmasterx Avatar asked Jan 16 '11 04:01

jmasterx


People also ask

How do I create a malloc function?

Allocated memory between two allocated memory: When Memory is free to allocate in between two allocated memory block. we have to use that memory chunk for allocation. Allocated from Initial block When Initial block is free.

What algorithm does malloc use?

Malloc Algorithm In a nutshell, malloc works like this: If there is a suitable (exact match only) chunk in the tcache, it is returned to the caller. No attempt is made to use an available chunk from a larger-sized bin. If the request is large enough, mmap() is used to request memory directly from the operating system.

Is it better to use malloc () or calloc ()?

In malloc function, number of arguments is 1 while in calloc function, number of argument is 2. malloc() time efficiency is higher than calloc() whereas malloc() is not secure as compared to calloc() malloc does not initialize memory whereas calloc performs memory initialization.

Which data structure you will use for implementing the malloc and free functions?

You use malloc() and free() on an mspace, or you can delete the mspace and free all memory allocated in the mspace.


6 Answers

It's certainly possible to write an allocator more efficient than a general purpose one.

If you know the properties of your allocations, you can blow general purpose allocators out of the water.

Case in point: many years ago, we had to design and code up a communication subsystem (HDLC, X.25 and proprietary layers) for embedded systems. The fact that we knew the maximum allocation would always be less than 128 bytes (or something like that) meant that we didn't have to mess around with variable sized blocks at all. Every allocation was for 128 bytes no matter how much you asked for.

Of course, if you asked for more, it returned NULL.

By using fixed-length blocks, we were able to speed up allocations and de-allocations greatly, using bitmaps and associated structures to hold accounting information rather than relying on slower linked lists. In addition, the need to coalesce freed blocks was not needed.

Granted, this was a special case but you'll find that's so for games as well. In fact, we've even used this in a general purpose system where allocations below a certain threshold got a fixed amount of memory from a self-managed pre-allocated pool done the same way. Any other allocations (larger than the threshold or if the pool was fully allocated) were sent through to the "real" malloc.

like image 127
paxdiablo Avatar answered Oct 06 '22 03:10

paxdiablo


Just because malloc() is a standard C function doesn't mean that it's the lowest level access you have to the memory system. In fact, malloc() is probably implemented in terms of lower-level operating system functionality. That means you could call those lower level interfaces too. They might be OS-specific, but they might allow you better performance than you would get from the malloc() interface. If that were the case, you could implement your own memory allocation system any way you want, and maybe be even more efficient about it - optimizing the algorithm for the characteristics of the size and frequency of allocations you're going to make, for example.

like image 34
Carl Norum Avatar answered Oct 06 '22 05:10

Carl Norum


In general, malloc will call an OS-specific function to obtain a bunch of memory (at least one VM page), and will then divide that memory up into smaller chunks as needed to return to the caller of malloc.

The malloc library will also have a list (or lists) of free blocks, so it can often meet a request without asking the OS for more memory. Determining how many different block sizes to handle, deciding whether to attempt to combine adjacent free blocks, and so forth, are the choices the malloc library implementor has to make.

It's possible for you to bypass the malloc library and directly invoke the OS-level "give me some memory" function and do your own allocation/freeing within the memory you get from the OS. Such implementations are likely to be OS-specific. Another alternative is to use malloc for initial allocations, but maintain your own cache of freed objects.

like image 35
David Gelhar Avatar answered Oct 06 '22 04:10

David Gelhar


One thing you can do is have your allocator allocate a pool of memory, then service requests from than (and allocate a bigger pool if it runs out). I'm not sure if that's what they're doing though.

like image 31
Brendan Long Avatar answered Oct 06 '22 03:10

Brendan Long


If I recall correctly, malloc actually calls an OS specific function

Not quite. Most hardware has a 4KB page size. Operating systems generally don't expose a memory allocation interface offering anything smaller than page-sized (and page-aligned) chunks.

malloc spends most of its time managing the virtual memory space that has already been allocated, and only occasionally requests more memory from the OS (obviously this depends on the size of the items you allocate and how often you free).

There is a common misconception that when you free something it is immediately returned to the operating system. While this sometimes occurs (particularly for larger memory blocks) it is generally the case that freed memory remains allocated to the process and can then be re-used by later mallocs.

So most of the work is in bookkeeping of already-allocated virtual space. Allocation strategies can have many aims, such as fast operation, low memory wastage, good locality, space for dynamic growth (e.g. realloc) and so on.

If you know more about your pattern of memory allocation and release, you can optimise malloc and free for your usage patterns or provide a more extensive interface.

For instance, you may be allocating lots of equal-sized objects, which may change the optimal allocation parameters. Or you may always free large amounts of objects at once, in which case you don't want free to be doing fancy things.

Have a look at memory pools and obstacks.

like image 43
Artelius Avatar answered Oct 06 '22 04:10

Artelius


See How do games like GTA IV not fragment the heap?.

like image 43
EmeryBerger Avatar answered Oct 06 '22 05:10

EmeryBerger