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

            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.

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

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

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

            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)多進程而提高內(nèi)存的利用率,需要實現(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.

            “虛擬內(nèi)存”就是利用物理內(nèi)存和磁盤來對CPU的線性地址進行模擬(kemin:高級語言源碼指定的是符號地址,是虛的,有了虛擬內(nèi)存即便是用匯編指定一 固定地址也是虛的。問題是這些虛存是怎么管理的)。當使用分頁時,進程的每個段都會被分成大小固定的頁,這些頁可能在內(nèi)存中,也可能在磁盤。操作系統(tǒng)用了 一張頁目錄(page directory)和多張頁表來管理這些頁。當進程試圖訪問線性地址空間的某個位置,處理器會通過頁目錄和頁表先將線性地址轉(zhuǎn)換成物理地址,然后再訪問 (讀或?qū)懀╧emin:轉(zhuǎn)換細節(jié)沒有講)。如果被訪問的頁當前不在內(nèi)存,處理就會中斷進程的運行(通過產(chǎn)生缺頁異常中斷)(kemin:怎么判斷某頁不 在內(nèi)存?)。操作系統(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 閱讀(571) 評論(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
            • 感覺這個博客還是不錯,雖然做的東西和我不大相關(guān),覺得看看還是有好處的

            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

            搜索

            •  

            最新評論

            閱讀排行榜

            評論排行榜

            久久久午夜精品| 国产精品毛片久久久久久久| 久久久久人妻精品一区三寸蜜桃 | 久久黄视频| 久久久久亚洲av成人网人人软件| 久久精品亚洲一区二区三区浴池| 精品乱码久久久久久夜夜嗨 | 伊人色综合久久天天| 亚洲人成无码网站久久99热国产| 国产V综合V亚洲欧美久久| 久久中文精品无码中文字幕| 久久66热人妻偷产精品9| 无码任你躁久久久久久久| 国产综合久久久久久鬼色| 亚洲国产一成久久精品国产成人综合 | 国产精品免费久久| 亚洲精品国精品久久99热一| 久久无码一区二区三区少妇| 99久久国语露脸精品国产| 久久精品人人做人人爽电影| 久久91精品综合国产首页| 精品国产乱码久久久久久1区2区| 99久久综合国产精品免费| AAA级久久久精品无码区| 精品无码久久久久久午夜| 亚洲AV无码1区2区久久| 人妻无码αv中文字幕久久琪琪布| 国产精品xxxx国产喷水亚洲国产精品无码久久一区 | 久久久久久久精品妇女99| 久久激情五月丁香伊人| 日本三级久久网| 伊人热人久久中文字幕| 久久精品人人做人人爽电影| 国产精品久久久久久福利漫画| 亚洲精品乱码久久久久久蜜桃不卡| 日本五月天婷久久网站| 99久久精品免费看国产一区二区三区 | 午夜视频久久久久一区| 国产精品久久久久久久人人看| 久久久黄色大片| 99久久99久久精品国产片果冻|