1
0
SWNote/Linux/Linux_Memory.md
2022-01-11 15:42:52 +08:00

81 lines
2.1 KiB
Markdown
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Linux Memory
- logical address (逻辑地址)
- virtual address (虚拟地址)
- linear address (线性地址)
- physical address (物理地址)
![memory](../img/linux_memory.png)
*Logical Address*
逻辑地址,是由一个段选择符加上一个指定段内相对地址的偏移量(**Offset**)组成的,表示为 [段选择符:段内偏移量],例如:[CSEIP]
*Virtual Address*
虚拟地址,其实就是如上逻辑地址的**段内偏移Offset**。所以:
逻辑地址可以表示为 [段标识符:**虚拟地址**], 驱动代码或者应用程序中所用的地址就是**虚拟地址**比如以下程序中指针p的输出
```c
#include <stdio.h>
#include <stdlib.h>void main(void){ int *p;
p = (int*)malloc(sizeof(int));
printf("addres is %p\n", p);
free(p); return;
}
```
*Linear Address*
线性地址是平坦的统一地址空间。intel x86 中,线性地址是由逻辑地址经过段页式转换得到的。
*Physical Address*
物理地址就是物理内存的地址。但是注意在做页表转换的时候,这里存的可不是真正的物理地址,而是物理内存块的编号。
内核把物理内存按照4K大小编号考虑k到物理内存的起始地址是固定的所以从内存编号的序号就可以算出该编号对应的物理内存块的起始地址了。例如
物理内存起始地址为0x50000000, 那么编号为0的物理块的起始地址为0x50000000
编号为1的物理块的起始地址为 0x50001000 以此类推。
所以,根据物理内存块的编号,就可以转换得到该物理内存块的起始地址,也叫做物理内存的基地址。了解这一点非常重要,因为后续做页表映射的时候会用到。
# Segment & Page
[why use segment & page to manage memory pls check](https://blog.csdn.net/low5252/article/details/106068865)
# Memory Lock
- mutex lock
- spin lock
![mutex_lock](../img/mutex_lock.png)
![spin_lock](../img/spin_lock.png)
# Linux Memory Managemant
[url](<https://www.toutiao.com/i6855591224003265036>)