Open In App

Inverted Page Table in Operating System

Most Operating Systems implement a separate page table for each process, i.e. for the ‘n’ number of processes running on a Multiprocessing/ Timesharing Operating System, there is an ‘n’ number of page tables stored in the memory. Sometimes when a process is very large and it occupies virtual memory then with the size of the process, its page table size also increases substantially.

Example: A process of size 2 GB with:
Page size = 512 Bytes
Size of page table entry = 4 Bytes, then
Number of pages in the process = 2 GB / 512 B = 222
Page Table Size = 222 * 22 = 224 bytes

Through this example, it can be concluded that for multiple processes running simultaneously in an OS, a considerable part of memory is occupied by page tables only. Operating Systems also incorporate multilevel paging schemes which further increase the space required for storing the page tables and a large amount of memory is invested in storing them. The amount of memory occupied by the page tables can turn out to be a huge overhead and is always unacceptable as main memory is always a scarce resource. Various efforts are made to utilize the memory efficiently and to maintain a good balance in the level of multiprogramming and efficient CPU utilization. 



What is an Inverted Page Table?

In an operating system that uses virtual memory, an Inverted Page Table (IPT) is a data structure used to map physical memory pages to virtual memory pages. Unlike a traditional Page Table, which is a per-process data structure, an IPT is a system-wide data structure that contains an entry for each physical page in memory.

An alternate approach is to use the Inverted Page Table structure that consists of a one-page table entry for every frame of the main memory. So the number of page table entries in the Inverted Page Table reduces to the number of frames in physical memory and a single page table is used to represent the paging information of all the processes.



Through the inverted page table, the overhead of storing an individual page table for every process gets eliminated and only a fixed portion of memory is required to store the paging information of all the processes together. This technique is called inverted paging as the indexing is done concerning the frame number instead of the logical page number.

Components of Inverted Page Table

Each entry in the page table contains the following fields.

Working of Inverted Page Table

The operation of an inverted page table is shown below.

Inverted Page Table

The virtual address generated by the CPU contains the fields and each page table entry contains the other relevant information required in paging related mechanism. When a memory reference takes place, this virtual address is matched by the Memory Management Unit(MMU), the Inverted Page table is searched and the corresponding frame number is obtained. If the match is found at the ith entry then the physical address of the process is sent as the real address otherwise if no match is found then Segmentation Fault is generated. Note: Number of Entries in Inverted page table = Number of frames in Physical Address Space(PAS).

Examples: The Inverted Page table and its variations are implemented in various systems like PowerPC, UltraSPARC, and the IA-64 architecture. An implementation of the Mach operating system on the RT-PC also uses this technique. 

Advantages of Inverted Page Table

The Main advantages of the inverted page table are as follow:

Each entry in the IPT contains the virtual address(es) that map to that physical page, as well as other information such as the process ID of the process that owns the virtual address(es), the access permissions for the page, and other page attributes. This information is used by the operating system to manage the allocation and deallocation of physical memory pages, as well as to ensure that processes are accessing memory only in a safe and controlled manner.

However, there are also some potential disadvantages to using an IPT, such as increased overhead for lookups and the potential for contention between processes for physical memory pages. As with any memory management technique, the choice of whether to use an IPT or a Page Table depends on the specific requirements and constraints of the operating system and hardware platform being used.

Conclusion

At the end, we now know that Inverted Page Table is an important concept in Operating Systems. Systems which have big address spaces provides a better solution to the tracking and management of memory pages problem. It reduces memory usage and seen times by indexing pages according to their actual memory locations rather than their virtual addresses. It is very crucial for system developers to understand the Inverted Page Table because it is a key component of memory allocation and efficiency, which helps to maintain the general stability and responsiveness of operating systems.

Inverted Page Table – FAQs

1. Where is the Inverted Page Table mostly used?

Inverted Page Tables are mostly used in some specialized cases or in the perspective of research areas.

2. How collisions are handled in Inverted Page Tables?

In case of a hash collision, some data structures are used like linked list or tree for resolving the collision.

3. Can the Inverted Page System suit all memory systems?

An inverted Page Table is best suited to systems having limited physical memory but a large virtual address space.


Article Tags :