
CSAPP
Computer Systems A Programmer's Perspective
Third Edition
「已注销」
永远不要高估在低迷期的自己,成长才是永恒的主题。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Chapter 5 Optimizing Program Performance
这章看完了,但是题不想做… 争取看完第一部分以后把实验做一做原创 2020-05-30 15:51:39 · 238 阅读 · 0 评论 -
Chapter 4 Processor Architecture
Homework Problems 对于要求写汇编代码,我一无所知… 4.45 A: When REG is %rsp, it can not correctly describe. Because it will push %rsp - 8 not %rsp. B: movq REG, -8(%rsp) subq $8, %rsp 4.46 A: When REG is %rsp, it ...原创 2020-04-19 10:47:57 · 499 阅读 · 0 评论 -
Chapter 3 Machine-Level Representation of Programs
2020-03-31在自己博客园搬运过来… 2020-03-31 3.71 73 74 75未解决 Homework Problems 3.58 long decode2(long x, long y, long z) { return ((y - z) * x) ^ (((y - z) << 63) >> 63); } 3.59 /* x = 2 ^ 64 *...原创 2020-04-09 15:22:07 · 196 阅读 · 0 评论 -
Chapter 2 Representing and Manipulating Information
2020-03-25在自己博客园搬运过来… Homework Problems 2.57 void show_short(short x) { show_bytes((byte_pointer) &x, sizeof(short)); } void show_long(long x) { show_bytes((byte_pointer) &x, sizeof(l...原创 2020-04-09 15:16:17 · 269 阅读 · 0 评论