How can I use a page table to convert a virtual address into a physical one?

How can I convert an arbitrary logical address like 51996 into a physical memory address? If I take log base 2 (4096), I get 12. I think this is how many bits I'm suppose to use for the offset of my address. I'm just not sure. 51996 / 4096 = 12.69. So does this mean it lay on page#12 with a certain offset? How do I then turn that into the physical address of "51996"?

26.8k 11 11 gold badges 86 86 silver badges 105 105 bronze badges asked May 6, 2009 at 20:08 Sinquist Sinquist

5 Answers 5

To determine the page of a given memory address, take the first P bits (of the N bit) number.

P = lg2(numberOfPages)
In your example, P=lg2(16)=4

So the first 4 bits of a given memory address will tell us the page. That means the rest should be the offset from the start of that page.

Your example address, 51996, is 1100101100011100 in binary. I.e. [1100:101100011100].

1100 (12 in decimal) is the page number
101100011100 (2844 in decimal) is the offset

Now we need to find where page 12 is in memory.
Looking at your frame table, it appears that page 12 is resident in the 6th frame. In a system where all memory is pageable (i.e. no memory mapped IO) the 6th page frame will be at (entriesPerPage*frameNum)-1

In this case, 4000*6-1 = 23999 (The "-1" is needed since memory is 0-indexed.)

In this case, 4096*6-1 = 24575 (The "-1" is needed since memory is 0-indexed.)

Now all we have to do is add the offset and we have the physical memory address:

23999 + 2844=26843 = 0x68DB

24575 + 2844 = 27419 = 0x6B1B

Hope this (edit) was helpful XD

Edit: Thanks to Jel for catching my mistake :) Thanks to user8 for catching my other mistake! (frameNum instead of pageNum).