内存
Contents
memory layout
- initialized data(data): global/static
- Uninitialized Data Segment: gloabl/static
虚拟内存
操作系统对物理内存做了屏蔽,进程只能访问到虚拟内存
;
mmu(memory management unit) 再通过page table 将虚拟内存地址转换成物理内存地址
分页
- 为什么 如果不分页,那么 page table 将特别大;
- 如何
getconf PAGE_SIZE
一般每页为4kb;也即是内存管理的最小单位
转换(翻译)过程
通过编号+偏移量进行住转换
3. io
1. summary
1. throughput
throughput: the total size of read/write operations per second IOPS: the time of read/write operations per second
Throughput = IOPS x block size
程序访问是虚拟内存地址,操作系统会将虚拟内存地址映射物理内存地址;
为提高物理内存查找效率,将虚拟内存和物理内存分成页,(4kb~16kb)
虚拟内存通过page map 映射成对应物理内存地址
常见的内存分配
1. TCMalloc
TCMalloc分配内存的基本单位是Span,由n个page构成
核心思想:多级分配,减少锁的使用,本地线程分配则是完全无锁操作。
- 小对象分配,(0, 256KB]: 每个线程维护一份本地缓存(Thread cache),分配对象时候从本本地缓存找到对应的 size class上,查找class所指向的单链表上的第一个空闲对象
- 中等对象[256KB, 1MB]: 从pageheap中查找对应的page
磁盘
扇区:存储最基本(小)单位,通常为512byte; 块:操作系统I/O 的基本(小)单位;
run time
- allocate
- static allocate:
- create in stack;
- location, size are determined at compile time
- runtime allocate
- crete in heap
- location, size are determined at c
- static allocate: