Paging Table

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2021 May 19 8:12
Editor
Edited
Edited
2021 May 19 8:22
Refs
Refs
Paging Tables
 

One table (mean one image) for each process: part of process’s state

Contents
  1. Flags: valid/invalid (also called resident) bit, dirty bit, reference (also called clock or used) bit used for clock page change algorithm
  1. Page frame number
Page table is kept in main memory
- Page-table base register (PTBR) points to the page table of each process
- Page-table length register (PTLR) indicates size of the page table of each process
use tlb to lessen memory access overhead to find page
page table size is pretty big → – Only need to map the portion of the address space actually being used (tiny fraction of entire address space)
Approach Methods
– Multi-level(Hierarchical) paging, Hashed page table, Inverted page table
 
 
 
 

Recommendations