AllExperts > Encyclopedia 
Search      
Find out about volunteering to AllExperts

Paging: Encyclopedia BETA


Free Encyclopedia
 Home · Index · Browse A-Z  · Questions and Answers ·
Encyclopedia

Browse A-Z
ABCDEFGHIJKLMNOPQRSTUVWXYZNum


License
Disclaimer

 
 
 
 
Free Online Courses
12 Weeks to Weight Loss
Take Charge of Stress
Learn How to Bake
Budgeting 101
Deeper Faith
DIY Fashion Makeover

       MORE E-COURSES
 
   

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z  Misc

Paging

Alternate meanings: See paging (telecommunications). Bank switching is also sometimes referred to as paging.

In computer operating systems, paging memory allocation (also called memory address translation) algorithms divide computer memory into small partitions, and allocates memory using a page as the smallest building block.

Advantages

A key advantage that this method has over simpler methods such as the buddy memory allocation technique and dynamic allocation techniques is that the memory allocated to a program does not have to be contiguous, and because of that, there is very little external fragmentation - thus little memory is wasted.

Because programs rarely use all parts of their code and data at one point in time, the concept of virtual memory can be implemented by writing pages to disk, and reading pages from disk when they are needed. This is another advantage of paging over other memory allocation techniques.

Disadvantages

The only major disadvantage of paging is the relatively complicated nature of the code required to handle it, especially if virtual memory is to be implemented. Otherwise, there are only minor disadvantages such as the need for a memory management unit (MMU), which means that paging cannot be implemented on some older or smaller processors (in the Intel x86 family, for example, only i386 and higher CPUs possess MMUs). It is also possible for internal fragmentation to occur, when, for example, a little more memory is required to store some data than the size of a page. In this case, a whole new page must be allocated to that data, while only a small fraction of the potential storage space within that page is being used. This kind of fragmentation also occurs when less memory is required to save some data than the size of a page.

How it works

The memory access part of paging is done at the hardware level via page tables, and is handled by the memory management unit. As mentioned earlier, physical memory is divided into small blocks called pages (typically 4 kilobytes or less) in size, and each block is assigned a page number. The operating system may keep a list of free pages in its memory, or may choose to probe the memory each time a memory request is made (though most modern operating systems do the former). Whatever the case, when a program makes a request for memory, the operating system allocates a number of pages to the program, and keeps a list of allocated pages for that particular program in memory. Now, let us take a look at an example.

The table below is an example page allocation list which could result if the following allocations happened in this order: #Program A requests 3 pages of memory#Program C requests 2 pages of memory#Program D requests 2 pages of memory#Program C terminates, leaving 2 empty pages#Program B requests 3 pages of memory, and it is allocated the 2 empty pages that program C left, plus an additional page after program D
Frame NumberPage Allocated toPhysical Memory Address
0Program A.01000:0000
1Program A.11000:1000
2Program A.21000:2000
3Program B.01000:3000
4Program B.11000:4000
5Program D.01000:5000
6Program D.11000:6000
7Program B.21000:7000
Consequently, Program A's page tables would contain the following mapping (Program's Page #=>OS Page #): (0=>0, 1=>1, 2=>2); Program B's : (0=>3,1=>4,2=>7); and Program D's : (0=>5, 1=>6).

Now let's consider what happens when a program wants to access its own memory. Let's say Program A contains a statement "LOAD memory at 20FE". What happens? Let's take a look at it now.

20FE is 0010000011111110 in binary notation (in a 16-bit system), and we have pages of 4K in size. So when a request for memory at 20FE is made, the MMU looks at it in this way :

0010000011111110         =   20FE
__v
 v       Relative memory address in page (00FE)
Page Number (2)Because we have pages 4096 bytes in size, the MMU looks at the first 4 bits for the page number, and the next 12 bits for the relative memory address in the page. If our pages were 2048 bytes in size, the MMU would look at the first 5 bits for the page number, and the next 11 bits for the relative memory address. So a smaller page size means more pages.

Thus, when this memory access request is made, the MMU looks at the program's page tables for the mapping to the OS page number. In this case, the second page of Program A maps to the second OS page. Then, it looks for the physical mapping of the OS page. The second OS page maps to the physical memory address 1000:2000, and the relative memory address that the program wants is 00FE, so the MMU will return memory at the physical address 1000:20FE.

This is a general description. Modern computer architectures use variousmeans to speed up paging. For example on the Intel i386 architectureused in personal computers, among others, the CPU employs a special cache calledTranslation Lookaside Buffer which contains the mapping betweena virtual memory address and the physical address it is backed by.Thus between the first time this mapping is obtained by page table lookupsuntil the physical page is evicted or swapped out, the computationallyexpensive page table lookups need not be repeated, since the result iscached in the TLB. It is the job of the operating system to deletea particular entry from the TLB when this mapping becomes invalid.But as long as the entry is valid it can save thousands or millions ofpage table references.

Paging and virtual memory

When paging is used alongside with virtual memory, the operating system has to keep track of pages in use and pages which will not be used or have not been used for some time. Then, when the operating system deems fit, or when a program requests a page that has been swapped out, the operating system swaps out a page to disk, and brings another page into memory. (See Page replacement algorithms for more details as to how the operating system decides which page to swap in and out.) In this way, you can use more memory than your computer physically has.

See also

* Demand paging



  Rate this Article
   Was this article helpful?
Not at allDefinitely              
   12345  

Email this page
About Us | Advertise on This Site | User Agreement | Privacy Policy | Kids' Privacy Policy | Help
About and About.com are registered trademarks of About, Inc. The About logo is a trademark of About, Inc. All rights reserved.
This is the "GNU Free Documentation License" reference article from the English Wikipedia. All text is available under the terms of the GNU Free Documentation License. See also our Disclaimer.