Memory managementOverview with process image
existoperating systemand in programming, memory management is crucial, which directly affects the program'sperformanceand stability. The following is a summary of the memory management mechanisms of the user-layer and system-layer, as well as process images andVirtual memoryrelated concepts.
1. Memory management
The process of memory management can be divided into user layer and system layer:
User layer
-
STL (Standard Template Library)
- Automatically allocate/release memory: Automatic memory management through STL in C++.
-
C++
- new/delete: Memory allocation and release mechanism in C++, the underlying call to the C language memory management functions.
-
C
- malloc/free: Memory management functions in standard C library, calling POSIX or Linux kernel functions for memory allocation and release.
-
POSIX
- brk/sbrk: Used to adjust the end of the data segment to expand or reduce the heap memory.
-
Linux
- mmap/munmap: Used to map and unmap virtual memory addresses to physical memory.
System layer
-
Kernel (Kernel)
- kmalloc/vmalloc: Used to allocate and free memory in the kernel.
-
drive
- get_free_page: Used to allocate memory pages in the driver.
2. Process image
The executable file stored on the disk of the program. When the program is executed, the system loads it into memory to form a process. The memory distribution of a process is called the process image, from the low address to the high address is:
- text(Code Snippet): Stores binary instructions and constant data.
- data(Data segment): Initialized global variables and static local variables.
- bss(static data segment): Uninitialized global variables and static local variables, automatically cleared before the program runs.
- heap(Heap): A large amount of data manually managed by programmers.
- stack(Stack): Store local variables and block variables.
- environ(Environment Variable Table): Store environment variables, each process has one, and it does not affect each other.
- argv(Command line parameters): Stores command line parameters when the program is running.
practise
Define the data of each memory segment and print their addresses, with/proc/[process id]/maps
Compare the corresponding memory records in the file.
3. Virtual memory
Key points of virtual memory:
- Each process allocates 4GB of virtual memory space.
- Users can only use virtual memory and cannot directly access physical memory.
- The mapping between virtual addresses and physical memory is dynamically maintained by the operating system.
- Only after the virtual address is mapped to physical memory can it be used, otherwise a segfault will occur.
- The 4GB virtual address space is divided into user space (0-3GB) and kernel space (3-4GB).
- User code cannot directly access the kernel space and needs to be accessed indirectly through system calls.
4. Mapping virtual memory and physical memoryfunction
sbrk and brk
- sbrk(intptr_t increment): Adjust the position of the pointer according to the increment, and can be mapped or unmapping.
- brk(void *addr): Directly modify the position of the pointer for memory mapping or unmapping.
mmap and munmap
- mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset): Map virtual memory and physical memory.
- munmap(void *addr, size_t length): Unmap.
Summarize
- sbrk/brkMemory mapping and unmapping are implemented through pointer movement, which belongs to heap memory.
- mmap/munmapNo state is maintained, map directly or unmap.
-
malloc/freeThe underlying call was
sbrk/brk
ormmap/munmap
。 - Only after the virtual address is mapped can physical memory be accessed, and the system dynamically manages the mapping.
Understanding memory management mechanisms is essential to optimizing and debugging programs, especially in high-performance or resource-constrained systems.