Tutorial Week 9
Questions
Memory Management
Q1: Describe internal and external fragmentation.?
Q2: What are the problems with multiprogrammed systems with fixed-partitioning?
Q3: Assume a system protected with base-limit
registers. What are the problems with such a protected system
(compared to a paged or segmented VM system)?
Q4: A program is to run on a multiprogrammed machine. Describe at which points in time during program development to execution time where addresses within the program can be bound to the actual physical memory it uses for execution? What are the implication of using each of the three binding times?
Q5: Describe four algorithms for allocating regions of contiguous memory, and comment on their properties.
Q6: What is compaction? Why would it be used?
Virtual Memory
Q7: What is swapping?
Q8: What effect does increasing the page size have?
Q9: Why is demand paging generally more prevalent than pre-paging?
Q10: Describe four replacement policies and compare them.
Q11: Translate the following virtual addresses to Physical Addresses using the TLB. The system is a R3000. Indicate if the page is mapped, and if so if its read-only or read/write.
The EntryHi register currently contains 0x00000200.
The virtual addresses are 0x00028123, 0x0008a7eb, 0x0005cfff,0x0001c642, 0x0005b888, 0x00034000.
TLB | |
---|---|
EntryHi | EntryLo |
0x00028200 | 0x0063f400 |
0x00034200 | 0x001fc600 |
0x0005b200 | 0x002af200 |
0x0008a100 | 0x00145600 |
0x0005c100 | 0x006a8700 |
0x0001c200 | 0x00a97600 |