cmu15-213 csapp 總結(jié)
csapp的總結(jié)(還是一年前學的。。。)
lecture1--4
整數(shù)和float。整數(shù)主要是補碼表示,float就是IEEE標準,這是他們的底層表示。
unsigned與int轉(zhuǎn)換,不改變底層bit,還是那些bit,只是對bit的處理改變。而float與int轉(zhuǎn)換,則是根據(jù)原來的值,產(chǎn)生新的bit值。
lecture5--9
這部分主要是匯編指令入門,如果做了相應的lab、聽了課,就差不多了
alignment(lectrue8)
主要對于結(jié)構(gòu)體
struct rec { ? ?char c; ? ?int i[2]; ? ?double v;} *p;unaligned:c(1字節(jié))i[0](4)i[1](4)v[8]aligned:c(1)free(3)i[0](4)i[1](4)free(4)v[8]
aligned data要求數(shù)據(jù)是k字節(jié),其地址必須是k的倍數(shù);
如果是多個struct相鄰,aligned要求是struct地址必須是k的倍數(shù),k是自己內(nèi)部所有數(shù)據(jù)中k最大的那個;
同樣,可以重排,改變順序,節(jié)省浪費空間
buffer overflow(lec9)
a. 如gets的bug, 進而注入代碼等
防護:棧的起始位置隨機、canary等
b. return-oriented programming attacksbig endian little endian(lec9):用于多字節(jié)對象
例如假設上述變量x類型為int,位于地址0x100處,它的值為0x01234567,地址范圍為0x100~0x103字節(jié),其內(nèi)部排列順序依賴于機器的類型。大端法從首位開始將是:0x100: 0x01, 0x101: 0x23,..。而小端法將是:0x100: 0x67, 0x101: 0x45,..。
lecture10--optimization
因為compiler能力有限,不能無限優(yōu)化代碼
將某個函數(shù)的返回值,存儲下來,避免循環(huán)里多次調(diào)用、以及循環(huán)里的乘法等。如果學過compiler知道,compiler是有限的,沒必要把一切交給不那么智能的compiler處理
等等,見ppt,這部分不是那么重要,因為這你也記不住
lec11-lec12(memory)
locality(temporal spatial)
Cache: A smaller,faster storage device that acts as a staging area for a subset of the data in a larger, slower device.
cache miss(cold miss, conflict miss, capacity miss)
cache organization(lec12)
direct mapped cache(E=1)write with cache
write hit:
write-through(write immediately to memory)
write-back(defer write to memory until replacement of line)
write miss:
Write-allocate (load into cache, update line in cache)
No-write-allocate (writes straight to memory, does not load into cache)
write-through + no-write-allocate
write-back+write-allocate
矩陣乘法的優(yōu)化(lec12最后)
lec13(linking)
格式為ELF
linker symbols:global symbols/ external symbols/local symbols(static)
static library \ shared library(at load time\run time)
lec14--15(ecf)
lec16(io)
unix io(read(), write()...)(unbuffered)
standard io(printf()...)(buffered)
linux file(csapp 943)
shared file(open twice)
after fork
lec17--20(vm)
vm in linux(csapp 867頁)
malloc
summary
csapp內(nèi)容很繁雜,很多細節(jié)可能一問或者多想就會出錯,而csapp自身在廣不在深。所以想解決深度問題,可能就需要更進一步學習更深入知識,而csapp不行。
比如linking那里的static library和shared library,elf等等,你不自己實操看源碼就很難體會,光靠csapp這本書的理論知識不太夠,所以我也就不想太細扣了。打算放下這些問題,進行深入學習了。等把更深入的知識學會,這些問題應該也就不再是問題了,或者是很easy的問題了。
所以吸收csapp的知識作為基礎、內(nèi)功,學習更深入的就行了,這門課就至此徹底結(jié)束了。