
操作系统
文章平均质量分 77
抗大象的蚂蚁
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Conditional Move Instructions(trap)
Not all conditional expressions can be compiled using conditional moves. Most significantly, the abstract code we have shown evaluates both then-expr and else-expr regardless of the test outcome. If o转载 2014-04-15 10:41:06 · 770 阅读 · 0 评论 -
Main features of the X86-64
The combination of the new hardware supplied by Intel and AMD ,and the new versions of GCC targeting these machines makes x86-64code substantially different from that generated for IA32 machines. The转载 2014-04-15 11:20:26 · 469 阅读 · 0 评论 -
Linker Use static Libraries
While static libraries are useful and essential tools, they are also a source of confusion to programmers because of the way the Unix linker uses them to resolve external references.During the symbol转载 2014-04-15 11:22:59 · 388 阅读 · 0 评论 -
The most useful condition codes
CF: Carry Flag.The most recent operation generated a carry out of the most significant bit. Used to detect overflow for unsigned operations.ZF: Zero Flag. The most recent operation yielded zero.SF转载 2014-04-15 10:38:18 · 612 阅读 · 0 评论