Presentation is loading. Please wait.

Presentation is loading. Please wait.

CMPT 300 Introduction to Operating Systems

Similar presentations


Presentation on theme: "CMPT 300 Introduction to Operating Systems"— Presentation transcript:

1 CMPT 300 Introduction to Operating Systems
Virtual Memory Sample Questions

2 0. Page Table Q: Consider a system with 32-bit virtual address. The virtual memory is implemented by paging, and the page size is 4KB. A user process generates the virtual address 0x What is the page table index for this virtual address? A: Since the page size is 2^12, the page table size is 2^20. The virtual address in binary form is The low-order 12 bits are used as the offset into the page, while the remaining 20 bits are used as the index into the page table, or 0x11123. The computer has 2^18 bytes of physical memory.

3 1.1 Inverted Page Table Consider a system with 32-bit virtual address space, and 4 MB of physical memory. The page size is 8KB (8192-byte). The system uses an Inverted Page Table (IPT). Q: How many bits is each VPN? How many bits is each PPN? Describe what PTE (page table entry) looks like. How many PTEs (page table entries) does the IPT contain? (Remember: PT is indexed by VPN and contains PPN; IPT is indexed by PPN and contains VPN.) A: The virtual address consists of VPN: 19 bits; Offset: 13 bits 2^13=8KB, hence offset is 13 bits; the total virtual address length is 32 bits, hence VPN is 32-3=19 bits. There are a total of 4MB/8KB=512 physical pages, hence the PPN is 9 bits (2^9=512). The IPT contains 512 PTEs. IPT maps from PPN to VPN. It contains 512 PTEs. Each PTE contains a 19-bit field for VPN, plus another field for Process ID, plus additional bits for protection etc. (Offset is not stored in page tables)

4 1.2 Page Table Consider a system with 32-bit virtual address space, and 4 MB of physical memory. The page size is 8KB (8192-byte). The system uses a regular Page Table. Q: How many bits is each VPN? How many bits is each PPN? Describe what PTE (page table entry) looks like. How many PTEs (page table entries) does the PT contain? A: Same as before, VPN: 19 bits; PPN: 9 bits. Each PTE contains a 9-bit field for PPN, plus additional protection bits for protection etc. There are a total of 2^32/2^13=2^19 virtual pages, hence the PT contains 2^19 PTEs. Q: Why is there not a field for Process ID? A: Each process has its own separate page table.

5 2. 1 Page Table 32-bit address:
1K PTEs 4KB 1K PTEs 32-bit address: P1 index P2 index page offset 10 12 Consider a system with 32-bit virtual address using two-level page tables for address translation. The format of the virtual address, physical address, and PTE (page table entry) are as shown. Assume each PTE in both 1st and 2nd level PTs is 2 bytes, including all permission bits. Size of physical memory is 4MB. Q: How large is each page? How many physical pages in total? How many bits in PPN? A: Page size: 2^12 bytes =4 KB; Total number of physical pages is 4MB/4KB=1K=2^10  # bits in PPN is 10.

6 2. 2 Page Table 1K PTEs 4KB 1K PTEs 32-bit address: P1 index P2 index page offset 10 12 Q: What is the largest possible memory needed for storing all page tables? A: There is one page table at the first level, and up to 2^10 = 1K page tables at the 2nd level. Each PTE is 2 bytes. Size of the 1st level page table is 2*(2^10) bytes = 2KB. Size of each 2nd level table is also 2*(2^10) bytes = 2KB. All in all, the page tables use 2KB * 2KB = 2050 KB of memory.

7 2. 3 Page Table 32-bit address:
1K PTEs 4KB 1K PTEs 32-bit address: P1 index P2 index page offset 10 12 Q: Consider a process that is using 512KB of physical memory. What is the minimum number of page tables used by this process? What is the maximum number of page tables this process might use? A: The process uses 512KB / 4 KB = 128 physical pages. Since each 2nd level page can hold up to 1K PTEs, in the best case scenario the process is covered by a single 2nd level PT. we use only 2 page tables: 1st level PT + a 2nd level PT. In the worst case, the process may use a little bit of every physical page (e.g., 0.5 KB of each physical page), and all page tables will be populated. Thus, the process ends up using = 1025 page tables.

8 2. 4 Page Table Q: Assume that instead of two-level PTs, we use an inverted PT for address translation. How many entries are used in the inverted table by a process using 512KB of physical memory? A: The inverted table contains one entry per physical page, hence it has 2^10=1K entries. In the worst case, the process uses all physical pages, which yields 1K entries. In the best case, the process fully uses each physical page, which yields 128 entries.

9 3. TLB Consider a system with the page tables stored in memory. If a memory reference takes 200 nanoseconds, how long does a paged memory reference take? If we add a TLB, and 75 percent of all page-table references are found in the TLB, what is the effective memory reference time? (Assume that finding a page-table entry in the TLB takes zero time, if TLB hit.) A: 400 ns; 200 ns to access the page table and 200 ns to access the word in memory. Effective access time = 0.75 (200 ns) (400 ns) = 250 ns.

10 Page Replacement Consider a physical memory with 4 frames and the following page access pattern: A, B, A, C, D, E, F, A, B, C, F, A, E, F a) Assume we employ the FIFO replacement policy. Show the content of the frames at every access. Give the number of page faults. A B C D E F 1 2 3 4

11 FIFO Replacement

12 b) Assume we employ the LRU replacement policy
b) Assume we employ the LRU replacement policy. Show the content of the frames at every access. Give the number of page faults. A B C D E F 1 2 3 4

13 LRU Replacement

14 c) Assume we employ the clock replacement policy
c) Assume we employ the clock replacement policy. Show the content of the frames at every access. Give the number of page faults. A B C D E F 1 2 3 4

15 Clock Replacement A B C D E F 1 2 3 4 Page faults: 11


Download ppt "CMPT 300 Introduction to Operating Systems"

Similar presentations


Ads by Google