1,195 views
0 votes
0 votes
Consider a paging system with the page table stored in the memory. A memory reference takes 100 ns. We add TLBs and 80% of all page table references are found in TLBs. Finding a page table entry in the TLBs take negligible time.
​How long does a paged memory reference take?
(A) 100 ns
(B) 150 ns
(C) 200 ns
(D) 300 ns

I didn't get what does it meant by "paged" memory reference.

1 Answer

0 votes
0 votes
Means the memory is divided into pages.. so the logical address generated would search for that particular page in the TLB .If it does not get it will search for that page in the main memory ,get the frame no and the offset to get the physical address in the main memory.. If the page is not in the main memory it will generate a page fault..

Related questions

0 votes
0 votes
0 answers
2
SSR17 asked Feb 8
211 views
we have 8 pages (each side 32B) to store in physical memory of 2^32 bits how many bits are required to identify each page , according to me 3 bits are required but that i...