当前位置:网站首页>virtual address space
virtual address space
2022-08-10 22:30:00 【dry rice white】
In the early days when there was no virtual memory, the memory was divided directly for the program in memory.This will cause some problems
The process address space is not isolated: Since the program directly accesses the memory, in the case of multiple processes, some malicious programs can modify the data of other programs at will, which is obviously unwillingsaw.Even some non-malicious programs may cause data changes in other programs when used inappropriately. We hope that the error of removing the program will not affect other programs.
Low memory usage efficiency: For example, the memory size is 128MB, and our A program and B program have already occupied 110MB. At this time, the C program with a size of 20MB needs to run, and there is free space in the memory at this time.If it is not enough, then part of the data of the memory occupied in the program in use will be copied to the disk for storage, and enough space will be moved out for the C program.This involves copying in and out of a large amount of data, which greatly affects efficiency
The address where the program runs is uncertain: At this time, the memory of C is likely to be randomly allocated (A and B are not mentioned here), so the running address of C is uncertain.
To solve this problem?
Proposes the idea of an intermediate isolation, that is to say, adding an intermediate layer indirectly to solve the access to the physical address.According to this method, the memory address accessed in the program is no longer an actual physical memory address, but a virtual address.How to implement it, map it through MMU (map f(x)=y).For each process, we only need to consider its own corresponding virtual address, the operating system can automatically help us correspond to the corresponding physical address, the operating system completes the mapping relationship, maps different programs in different areas, and realizes the processAddress space isolation.
Subsection
People think of doing a one-to-one mapping between the virtual address space and the physical address space.The operating system ensures that the address spaces of different processes are mapped to different regions in the physical address space, so that address isolation can be formed.
Assume there are two processes A and B, the memory required by process A is 10M, and its virtual address space is distributed from 0x00000000 to 0x00A00000, and the memory required by process B is 100M, and its virtual address space is distributed from 0x00000000 to 0x06400000.Then, according to the segmentation mapping method, the mapping area of process A in physical memory is 0x00100000 to 0x00B00000, and the mapping area of process B in physical memory is 0x00C00000 to 0x07000000.Therefore, process A and process B are respectively mapped to different memory ranges, which do not overlap with each other, realizing address isolation.
(Brief understanding: Segmentation completes segmentation of physical memory according to the virtual address space of the process to ensure that different physical memory segments correspond to different processes, and we operate in the virtual address space in the program, and eachThe physical segment mapped by the virtual address space of the process is fixed, so there is no need to worry about modifying the data of other programs)
Note: In the virtual address space of each application, the starting address starts at 0, so As if each application is exclusive all memory space.In fact, not in physical memory, physical memory is segmented
Pagination
In the segmented method, the program is always loaded into memory every time the program is run, while the paging method is different.The idea of paging is that the program allocate memory for which page is used when it is running, and the unused pages are temporarily kept on the hard disk.superior.When these pages are used, memory is allocated for these pages in the physical address space, and then establishes the link between the pages in the virtual address space and the physical memory pages just allocated.map.
A executable file (PE file) is actually a collection of compiled and linked data and instructions. It will also be divided into many pages and executed in the PE file.During the process, the unit it loads into memory is the page.When a PE file is executed, the operating system first creates a 4GB process virtual address space for the program.
To create a 4GB virtual address space is not really to create a space, just to create the data structure required by that kind of mapping mechanism,This data structure is page headings and page tables.
The core idea of the paging method is to allocate a memory page y for the xth page when the executable file is executed to the xth page, and then add this memory page to the process virtual address space Mapping table, this mapping table is equivalent to a y=f(x) function.The application can access the y page associated with the x page through this mapping table.
The source of 4G
We all say that the size of the virtual address space is 0~4G, why is it 0~4G?Because the length of the pointer is 4 under the 32-bit platform, the addressing range of the pointer: 0x00000000-0xFFFFFFFF is exactly 0~4G capacity.
Details about virtual address space
Stack model, solver loading memory
Every program running in Linux is allocated a virtual address space by the operating system.
I've already said this, I don't want to say it
边栏推荐
- 罗克韦尔AB PLC RSLogix5000中计数器指令使用方法介绍
- Live Classroom System 08-Tencent Cloud Object Storage and Course Classification Management
- 云服务器基于 SSH 协议实现免密登录
- camera preview process --- from HAL to OEM
- 美味的佳肴
- Translating scientific and technological papers, how to translate from Russian to Chinese
- Interpretation of the paper (g-U-Nets) "Graph U-Nets"
- 力扣215题,数组中的第K个最大元素
- Black cats take you learn Makefile article 13: a Makefile collection compile problem
- 学会开会|成为有连接感组织的重要技能
猜你喜欢
使用SylixOS虚拟串口,实现系统串口自由
Use Cloudreve to build a private cloud disk
Live Classroom System 08 Supplement - Tencent Cloud Object Storage and Course Classification Management
财务年报怎样翻译,为什么要选择专业翻译公司?
Using SylixOS virtual serial port, serial port free implementation system
The Thread State,
配电网络扩展规划:考虑使用概率性能源生产和消费概况的决策(Matlab代码实现)
FPGA - Memory Resources of 7 Series FPGA Internal Structure -03- Built-in Error Correction Function
阿里巴巴、蚂蚁集团推出分布式数据库 OceanBase 4.0,单机部署性能超 MySQL
Play RT-THREAD of doxygen
随机推荐
shell脚本
服务——DHCP原理与配置
爬虫request.get()出现错误
阿里云新增三大高性能计算解决方案,助力生命科学行业快速发展
QT笔记——vs + qt 创建一个带界面的 dll 和 调用带界面的dll
RTL8721DM 双频WIFI + 蓝牙5.0 物联网(IoT)应用
关于 DataFrame: 处理时间
STL-deque
LeetCode Daily Question (1573. Number of Ways to Split a String)
【SQL刷题】Day3----SQL必会的常用函数专项练习
【开源教程5】疯壳·开源编队无人机-飞控固件烧写
Using SylixOS virtual serial port, serial port free implementation system
Shell编程规范与变量
基于交流潮流的电力系统多元件N-k故障模型研究(Matlab代码实现)【电力系统故障】
12 Recurrent Neural Network RNN2 of Deep Learning
《DevOps围炉夜话》- Pilot - CNCF开源DevOps项目DevStream简介 - feat. PMC成员胡涛
Live Classroom System 08-Tencent Cloud Object Storage and Course Classification Management
艺术与科技的狂欢,阿那亚2022砂之盒沉浸艺术季
深度学习之 12 循环神经网络RNN2
Redis Performance Impact - Asynchronous Mechanisms and Response Latency