- Virtual address space
Virtual address space (abbreviated VAS) is a memory mapping mechanism available in modern
operating systems such asOpenVMS ,UNIX ,Linux , andWindows NT .Overview
Virtual memory is easiest to comprehend if one thinks in terms of the VAS, and not thephysical memory of the machine nor the size of its page file. Byte values in the VAS come "only" from byte values in a file. The OS manages the mapping between the VAS and the files that hold its values.Each time an application is run in an
operating system (OS), the OS creates a new process and a new VAS for this process.Physical memory comes in various flavors: on-chip cache, off-chip cache, and system memory. As far as the process is concerned, system memory is just another level of cache used by the OS. System memory has a lot to do with performance, but nothing to do with the architecture of a process. The process architecture is based on the VAS. Physical memory is used by the OS to map values from file bytes to VAS addresses: process memory is VAS memory, not physical memory.
Example
:"In the following description, the terminology used will be particular to the Windows NT OS, but the concepts are applicable to other virtual memory operating systems"
When you run a new application in a 32-bit OS, the process has a 4 GB VAS: each one of the
memory address es (from0
to232
-1) in that space can have a single byte as value. Initially, none of them have values ('-' represents no value). Using or setting values in such a VAS would cause a memory exception.0 4GB VAS |----------------------------------------------
Then the application's
EXE file is mapped into the VAS. Addresses in the process VAS are mapped to bytes in the exe file. The OS manages the mapping:0 4GB VAS |---vvvvvvv------------------------------------
mapping |-----
file bytes app.exeThe v's are values from bytes in the mapped file. Then, required DLL files are mapped (this includes custom libraries as well as system ones such as kernel32.dll and user32.dll):
0 4GB VAS |---vvvvvvv----vvvvvv---vvvv-------------------
mapping ||||||| |||||| |||
file bytes app.exe kernel userThe process then starts executing bytes in the exe file. However, the only way the process can use or set '-' values in its VAS is to ask the OS to map them to bytes from a file. A common way to use VAS memory in this way is to map it to the page file. The page file is a single file, but multiple distinct sets of contiguous bytes can be mapped into a VAS:
0 4GB VAS |---vvvvvvv----vvvvvv---vvvv----vv---v----vvv--
mapping ||||||| |||||| |||| || | ||
file bytes app.exe kernel user system_page_fileAnd different parts of the page file can map into the VAS of different processes:
0 4GB VAS 1 |---vvvv-------vvvvvv---vvvv----vv---v----vvv--
mapping |||| |||||| |||| || | ||
file bytes app1 app2 kernel user system_page_file mapping |||| |||||| |||| ||
VAS 2 |--------vvvv--vvvvvv---vvvv-------vv---v------Allocating memory via
system call s such as C'smalloc implicitly maps bytes of thepage file into the VAS. However, a process can also "explicitly" map file bytes.References
*"Advanced Windows" by Jeffrey Richter, Microsoft Press
Wikimedia Foundation. 2010.