Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does a computer 'know' what memory is allocated?

Tags:

c++

memory

When memory is allocated in a computer, how does it know which bytes are already occupied and can't be overwritten?

So if these are some bytes of memory that aren't being used:

[0|0|0|0]

How does the computer know whether they are or not? They could just be an integer that equals zero. Or it could be empty memory. How does it know?

like image 303
user3452725 Avatar asked Mar 23 '14 17:03

user3452725


People also ask

How does a computer allocate memory?

Allocation. When the program requests memory for an object or data structure, the memory is allocated to that component until it is explicitly freed up. The allocation process might be manual or automatic. If manual, the developer must explicitly program that allocation into the code.

What is responsible for memory allocation?

Memory allocation is primarily a computer hardware operation but is managed through operating system and software applications. Memory allocation process is quite similar in physical and virtual memory management.

What determines the memory size?

The memory capacity of a device depends on many factors such as the number of available address registers in the CPU. In the case of 32-bit CPUs, they can only address a memory capacity of up to 4 GB. As for a 64-bit computer, the memory capacity is unlimited. Operating systems also influence memory capacity.

How does operating system manage memory?

It checks how much memory is to be allocated to processes. It decides which process will get memory at what time. It tracks whenever some memory gets freed or unallocated and correspondingly it updates the status.


2 Answers

That depends on the way the allocation is performed, but it generally involves manipulation of data belonging to the allocation mechanism.

When you allocate some variable in a function, the allocation is performed by decrementing the stack pointer. Via the stack pointer, your program knows that anything below the stack pointer is not allocated to the stack, while anything above the stack pointer is allocated.

When you allocate something via malloc() etc. on the heap, things are similar, but more complicated: all theses allocators have some internal data structures which they never expose to the calling application, but which allow them to select which memory addresses to return on an allocation request. Some malloc() implementation, for instance, use a number of memory pools for small objects of fixed size, and maintain linked lists of free objects for each fixed size which they track. That way, they can quickly pop one memory region of that list, only doing more expensive computations when they run out of regions to satisfy a certain request size.


In any case, each of the allocators have to request memory from the system kernel from time to time. This mechanism always works on complete memory pages (usually 4 kiB), and works via the syscalls brk() and mmap(). Again, the kernel keeps track of which pages are visible in which processes, and at which addresses they are mapped, so there is additional memory allocated inside the kernel for this.

These mappings are made available to the processor via the page tables, which uses them to resolve the virtual memory addresses to the physical addresses. So here, finally, you have some hardware involved in the process, but that is really far, far down in the guts of the mechanics, much below anything that a userspace process is ever able to see. Still, even the page tables are managed by the software of the kernel, not by the hardware, the hardware only interpretes what the software writes into the page tables.

like image 116
cmaster - reinstate monica Avatar answered Oct 29 '22 01:10

cmaster - reinstate monica


First of all, I have the impression that you believe that there is some unoccupied memory that doesn't holds any value. That's wrong. You can imagine the memory as a very large array when each box contains a value whereas someone put something in it or not. If a memory was never written, then it contains a random value.

Now to answer your question, it's not the computer (meaning the hardware) but the operating system. It holds somewhere in its memory some tables recording which part of the memory are used. Also any byte of memory can be overwriten.

like image 27
hivert Avatar answered Oct 29 '22 01:10

hivert