<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
        <title>Csapp - 标签 - zwyyy456&#39;s blog</title>
        <link>https://doit.tellm.eu.org/zh/tags/csapp/</link>
        <description>Csapp - 标签 - zwyyy456&#39;s blog</description>
        <generator>Hugo -- gohugo.io</generator><language>zh</language><managingEditor>zwyyy456@hotmail.com (zwyyy456)</managingEditor>
            <webMaster>zwyyy456@hotmail.com (zwyyy456)</webMaster><copyright>This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.</copyright><lastBuildDate>Fri, 28 Jul 2023 19:55:47 &#43;0800</lastBuildDate><atom:link href="https://doit.tellm.eu.org/zh/tags/csapp/" rel="self" type="application/rss+xml" /><item>
    <title>虚拟内存</title>
    <link>https://doit.tellm.eu.org/zh/about_me/</link>
    <pubDate>Fri, 28 Jul 2023 19:55:47 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/about_me/</guid>
    <description><![CDATA[1 虚拟地址空间与物理地址空间地址空间（address space）是一个非负整数地址的有序集合： $$\lbrace 0, 1, 2, \cdots\rbrace$$ 如果地址空间中的整数是连续的，那么我]]></description>
</item><item>
    <title>虚拟内存</title>
    <link>https://doit.tellm.eu.org/zh/virtual_memory/</link>
    <pubDate>Fri, 28 Jul 2023 19:55:47 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/virtual_memory/</guid>
    <description><![CDATA[1 虚拟地址空间与物理地址空间地址空间（address space）是一个非负整数地址的有序集合： $$\lbrace 0, 1, 2, \cdots\rbrace$$ 如果地址空间中的整数是连续的，那么我]]></description>
</item><item>
    <title>异常控制流（Exceptional Control Flow, ECF）</title>
    <link>https://doit.tellm.eu.org/zh/exceptional_control_flow/</link>
    <pubDate>Tue, 27 Jun 2023 15:41:06 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/exceptional_control_flow/</guid>
    <description><![CDATA[1 异常控制流简介从给处理器上电起，直到断电，程序计数器（PC）假设一个值的序列： $$ a_0, a_1, \cdots, a_{n - 1}$$ 每个 $a_k$ 是某个相应的指令 $I_k$ 的地址，每次从 $a_k$ 到 $a_{k +]]></description>
</item><item>
    <title>Linux 动态内存分配</title>
    <link>https://doit.tellm.eu.org/zh/linux_memory_allocate/</link>
    <pubDate>Tue, 20 Jun 2023 15:29:09 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/linux_memory_allocate/</guid>
    <description><![CDATA[1 动态内存分配器进程中名为 heap 的 VM area 就是由动态内存分配器（dynamic memory allocator）来维护的。Heap 会向高地址（向上）增长。对每个]]></description>
</item><item>
    <title>Linux 虚拟内存系统</title>
    <link>https://doit.tellm.eu.org/zh/linux_virtual_memory/</link>
    <pubDate>Sun, 18 Jun 2023 14:50:57 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/linux_virtual_memory/</guid>
    <description><![CDATA[1 Linux 虚拟内存系统首先，对 Linux 的虚拟内存系统做一个概述，以了解一个实际的操作系统是如何组织虚拟内存，以及如何处理缺页（page fault）的。 Linux]]></description>
</item><item>
    <title>CPU 缓存一致性：MESI</title>
    <link>https://doit.tellm.eu.org/zh/cache_mesi/</link>
    <pubDate>Wed, 07 Jun 2023 10:36:47 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/cache_mesi/</guid>
    <description><![CDATA[1 概述MESI（也称伊利诺斯协议）是一种广泛使用的支持 write-back 策略的缓存一致性协议。 2 MESI 状态我们假设 CPU 中共有 $k$ 个核； CPU 中每个 cacheline 使用 $4$ 种状态进行标记]]></description>
</item><item>
    <title>ELF 文件结构分析</title>
    <link>https://doit.tellm.eu.org/zh/elf_file_structure/</link>
    <pubDate>Sun, 28 May 2023 15:59:11 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/elf_file_structure/</guid>
    <description><![CDATA[1 目标文件的格式目前，Linux 平台流行的 可执行文件（Executable）主要包含以下格式： Linux 下的 ELF（Executable Linkable Forma]]></description>
</item><item>
    <title>二进制下的补码、反码、原码——适用于有符号整数</title>
    <link>https://doit.tellm.eu.org/zh/2_complement/</link>
    <pubDate>Mon, 08 May 2023 18:40:47 &#43;0800</pubDate><author>
                    <name>zwyyy456</name>
                </author><guid>https://doit.tellm.eu.org/zh/2_complement/</guid>
    <description><![CDATA[1 简单定义简单起见，我们这里只考虑三位二进制数所能表示的范围，即$[-4, -3, -2, -1, 0,\ 1,\ 2,\ 3]$。 2 机器数和真值一个数在计算机中的二进制表现形式]]></description>
</item></channel>
</rss>
