• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            posts - 297,  comments - 15,  trackbacks - 0

            CHAPTER 3 PROTECTED-MODE MEMORY MANAGEMENT

            3.1. MEMORY MANAGEMENT OVERVIEW

            The memory management facilities of the IA-32 architecture are divided into two parts: segmentation and paging. Segmentation provides a mechanism of isolating individual code, data, and stack modules so that multiple programs (or tasks) can run on the same processor without interfering with one another. Paging provides a mechanism for implementing a conventional demand-paged, virtual-memory system where sections of a program’s execution environment are mapped into physical memory as needed. Paging can also be used to provide isolation between multiple tasks. When operating in protected mode, some form of segmentation must be used. There is no mode bit to disable segmentation. The use of paging, however, is optional.

            IA-32架構的內存管理機構(facilities)可劃分為兩個部分:分段(segmentation)和分頁(paging)。分段功能提供了分隔 代碼、數(shù)據(jù)和堆棧的機制,從而使多個進程運行在同一個CPU物理地址空間內而互不影響;分頁可用來實現(xiàn)一種“請求頁式(demand-paged)”的虛 擬內存機制,從而頁化程序執(zhí)行環(huán)境,在程序運行時可將所需要的頁映射到物理內存。分頁機制也可用作隔離多進程任務。分段功能是CPU保護模式必須的,沒有 設置位可以屏蔽內存分段;不過內存分頁則是可選的。

            These two mechanisms (segmentation and paging) can be configured to support simple single-program (or single-task) systems, multitasking systems, or multiple-processor systems that used shared memory.

            As shown in Figure 3-1, segmentation provides a mechanism for dividing the processor’s addressable memory space (called the linear address space) into smaller protected address spaces called segments. Segments can be used to hold the code, data, and stack for a program or to hold system data structures (such as a TSS or LDT). If more than one program (or task) is running on a processor, each program can be assigned its own set of segments. The processor then enforces the boundaries between these segments and insures that one program does not interfere with the execution of another program by writing into the other program’s segments.

            分段和分頁機制被配置成支持單任務系統(tǒng)、多任務系統(tǒng)或多處理器系統(tǒng)。

            如圖3-1,內存分段將CPU的可尋址空間(稱為線性地址空間)劃分更小的受保護的內存段,這些段存放程序的數(shù)據(jù)(代碼、數(shù)據(jù)和堆棧)和系統(tǒng)的數(shù)據(jù)結構 (像TSS 或 LDT)。如果處理器運行著多個任務,那么每個任務都有一集自己獨立的內存段。

            The segmentation mechanism also allows typing of segments so that the operations that may be performed on a particular type of segment can be restricted.

            All the segments in a system are contained in the processor’s linear address space. To locate a byte in a particular segment, a logical address (also called a far pointer) must be provided. A logical address consists of a segment selector and an offset. The segment selector is a unique identifier for a segment. Among other things it provides an offset into a descriptor table (such as the global descriptor table, GDT) to a data structure called a segment descriptor. Each segment has a segment descriptor, which specifies the size of the segment, the access rights and privilege level for the segment, the segment type, and the location of the first byte of the segment in the linear address space (called the base address of the segment). The offset part of the logical address is added to the base address for the segment to locate a byte within the segment. The base address plus the offset thus forms a linear address in the processor’s linear address space.

            進程的各個段都必須位于CPU的線性空間之內,進程要訪問某段的一個字節(jié),必須給出該字節(jié) 的邏輯地址(也叫遠指針)。邏輯地址由段選擇子(segment selector )和偏移值組成。段選擇子是段的唯一標識,指向一個叫段描述符的數(shù)據(jù)結構;段描述符位于一個叫描述表之內(如全局描述表GDT); 每個段必須都有相應的段描述符,用以指定段大小、訪問權限和段的特權級別(privilege level)、段類型和段的首地址在線性地址空間的位置(叫段的基地址)。邏輯地址通過基地址加上段內偏移得到。

            If paging is not used, the linear address space of the processor is mapped directly into the physical address space of processor. The physical address space is defined as the range of addresses that the processor can generate on its address bus.

            Because multitasking computing systems commonly define a linear address space much larger than it is economically feasible to contain all at once in physical memory, some method of “virtualizing” the linear address space is needed. This virtualization of the linear address space is handled through the processor’s paging mechanism.

            如果不用分頁功能,處理器的[線性地址空間]就會直接映射到[物理地址空間]。[物理地址空間]的大小就是處理器能通過地址總線產(chǎn)生的地址范圍。為了直接 使用線性地址空間從而簡化編程和實現(xiàn)多進程而提高內存的利用率,需要實現(xiàn)某種對線性地址空間進行“虛擬化(virtualizing)”,CPU的分頁機 制實現(xiàn)了這種虛擬化。

            Paging supports a “virtual memory” environment where a large linear address space is simulated with a small amount of physical memory (RAM and ROM) and some disk storage. When using paging, each segment is divided into pages (typically 4 KBytes each in size), which are stored either in physical memory or on the disk. The operating system or executive maintains a page directory and a set of page tables to keep track of the pages. When a program (or task) attempts to access an address location in the linear address space, the processor uses the page directory and page tables to translate the linear address into a physical address and then performs the requested operation (read or write) on the memory location. If the page being accessed is not currently in physical memory, the processor interrupts execution of the program (by generating a page-fault exception). The operating system or executive then reads the page into physical memory from the disk and continues executing the program.

            “虛擬內存”就是利用物理內存和磁盤來對CPU的線性地址進行模擬(kemin:高級語言源碼指定的是符號地址,是虛的,有了虛擬內存即便是用匯編指定一 固定地址也是虛的。問題是這些虛存是怎么管理的)。當使用分頁時,進程的每個段都會被分成大小固定的頁,這些頁可能在內存中,也可能在磁盤。操作系統(tǒng)用了 一張頁目錄(page directory)和多張頁表來管理這些頁。當進程試圖訪問線性地址空間的某個位置,處理器會通過頁目錄和頁表先將線性地址轉換成物理地址,然后再訪問 (讀或寫)(kemin:轉換細節(jié)沒有講)。如果被訪問的頁當前不在內存,處理就會中斷進程的運行(通過產(chǎn)生缺頁異常中斷)(kemin:怎么判斷某頁不 在內存?)。操作系統(tǒng)負責從磁盤讀入該頁并繼續(xù)執(zhí)行該進程(kemin:頁讀入的前前后后沒有講)。

            When paging is implemented properly in the operating-system or executive, the swapping of pages between physical memory and the disk is transparent to the correct execution of a program. Even programs written for 16-bit IA-32 processors can be paged (transparently) when they are run in virtual-8086 mode.


            from:

            http://blog.csdn.net/keminlau/archive/2008/10/19/3090337.aspx

            posted on 2010-03-25 15:03 chatler 閱讀(570) 評論(0)  編輯 收藏 引用 所屬分類: OS
            <2010年3月>
            28123456
            78910111213
            14151617181920
            21222324252627
            28293031123
            45678910

            常用鏈接

            留言簿(10)

            隨筆分類(307)

            隨筆檔案(297)

            algorithm

            Books_Free_Online

            C++

            database

            Linux

            Linux shell

            linux socket

            misce

            • cloudward
            • 感覺這個博客還是不錯,雖然做的東西和我不大相關,覺得看看還是有好處的

            network

            OSS

            • Google Android
            • Android is a software stack for mobile devices that includes an operating system, middleware and key applications. This early look at the Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language.
            • os161 file list

            overall

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            久久久精品国产sm调教网站| 国内精品久久久久久久97牛牛| 国内精品久久久久影院优| 欧美久久综合性欧美| 一本大道久久香蕉成人网| 久久99精品久久久久久噜噜| 久久国产成人午夜aⅴ影院| 精品国产综合区久久久久久| 久久综合给合久久国产免费| 一级做a爰片久久毛片毛片| 亚洲国产成人久久综合碰| 久久久久久久免费视频| 久久久久国产一级毛片高清版| 久久99精品久久久久久水蜜桃| 91精品国产色综久久| 亚洲国产高清精品线久久 | 日产精品久久久久久久| 亚洲国产二区三区久久| 久久中文娱乐网| 久久露脸国产精品| 国产精品热久久毛片| 99久久国产宗和精品1上映| 一97日本道伊人久久综合影院| 国产精品无码久久综合网| 久久综合九色综合网站| 精品久久久久久亚洲| 97精品依人久久久大香线蕉97 | 久久99精品国产一区二区三区| 久久久久久亚洲精品无码| 久久精品国产一区二区| 国产精品99久久久久久董美香 | 久久无码AV中文出轨人妻 | 综合久久精品色| 久久久久亚洲AV无码专区桃色| 伊人色综合九久久天天蜜桃| 久久久久一区二区三区| 国内精品久久久久国产盗摄| 亚洲AV无码久久精品成人| 国产精品免费久久久久久久久| 无码8090精品久久一区| 狠狠色婷婷久久一区二区三区|