Internet
Fact-checked

At EasyTechJunkie, we're committed to delivering accurate, trustworthy information. Our expert-authored content is rigorously fact-checked and sourced from credible authorities. Discover how we uphold the highest standards in providing you with reliable knowledge.

Learn more...

In Computer Operating Systems, what is a Page Table?

Emma G.
Emma G.

Most computers have two forms of memory, virtual memory and physical memory. Virtual memory, as the name implies, is merely a construct that allows a program to operate as though all the information needed to run it is stored in the same place. Each piece of information stored in virtual memory corresponds to a physical memory address. A page table is the data structure the computer's operating system uses to keep track of the connections between virtual memory and physical memory. The process of correlating virtual memory with physical memory is called mapping.

The concept of how the page table organizes the two kinds of memory is best understood using a familiar example. When a computer user creates a playlist in a media player program, he or she may take songs from several different files on the computer. The physical files are not moved, but the program knows where to go to access each song in turn.

A computer operating system uses a page table to keep track of the connections between virtual and physical memory.
A computer operating system uses a page table to keep track of the connections between virtual and physical memory.

The playlist is like the virtual memory. It is a contiguous block of information easily accessed by the program. The individual files with the individual songs in them are like physical memory. They are stored in many different places throughout the computer. The physical memory is stored in a page table.

A piece of hardware in the computer receives requests from virtual memory and then accesses the page table to find the physical memory location of the data. This hardware is called either the memory management unit (MMU) or the dynamic address translation (DAT) unit. In order to make data access happen as quickly as possible, the MMU stores a finite number of often used maps in a table called the translation lookaside buffer. Operating like the favorites tab in a web browser, the translation lookaside buffer allows the computer to quickly jump to an often used memory location.

If the address in question is not one the computer asks for often, the MMU will access the page table directly. It scans through the table until it finds the address in question. Then it returns the address to the translation lookaside buffer from which the program is able to access the information.

Sometimes the computer can't find the address on the page table. This can happen if no map exists between the virtual memory and the physical memory. In this case, the operating system will send a message to the program telling it to shut down. Look up can also fail if the physical file has been moved, for instance if it has been put on a backup disk and removed from the system.

Discussion Comments

Melonlity

@Soulfox -- it would take a few articles to explain what causes page faults and how to eliminate them. Frankly, finding the cause of one can be difficult as you can everything from hardware problems with bad memory or bad disc sectors to software trouble.

Fortunately, most of the time you are looking at a software problem and those can be fixed. Almost all computers have utilities that allow users to click a button and remove temporary files and nasty bits of code that are left over after a program has been uninstalled. Also, defragmenting your hard drive may solve the software issue and your operating system probably has a built in utility for that, too.

Find those utilities and use them. The chances are good you will eliminate the cause of a page fault in the process.

Soulfox

Ever see the nasty message about a page fault causing a program or your entire computer to crash? Those are not uncommon, but how many people know what they are? This article explains that problem well, but what are some things people can do to eliminate page faults?

Post your comments
Login:
Forgot password?
Register:
    • A computer operating system uses a page table to keep track of the connections between virtual and physical memory.
      By: viappy
      A computer operating system uses a page table to keep track of the connections between virtual and physical memory.