1 / 28

Operating System 7 MEMORY MANAGEMENT

Operating System 7 MEMORY MANAGEMENT. MEMORY MANAGEMENT REQUIREMENTS. • Relocation • Protection • Sharing • Logical organization • Physical organization. MEMORY PARTITIONING.

paulos
Download Presentation

Operating System 7 MEMORY MANAGEMENT

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Operating System 7MEMORY MANAGEMENT

  2. MEMORY MANAGEMENT REQUIREMENTS

  3. • Relocation • Protection • Sharing • Logical organization • Physical organization

  4. MEMORY PARTITIONING

  5. The principal operation ofmemory management is to bringprocesses into mainmemory for execution by the processor. Inalmost all modernmultiprogrammingsystems,this involves a sophisticated scheme known as virtual memory. Virtualmemory is, in turn, based on the use of one or both of two basic techniques: segmentation and paging.

  6. Fixed Partitioning Partition Sizes • A program may be too big to fit into a partition. • Main memory utilization is extremely inefficient. • Bothof these problems can be lessened,though not solved, by using unequalsize partitions (Figure 7.2b).

  7. Placement Algorithm • With equal-size partitions, the placement of processes in memory is trivial. • With unequal-size partitions, there are two possible ways to assign processesto partitions. The simplest way is to assign each process to the smallest partitionwithin which it will fit. • However, there are disadvantages: •The number of partitions specified at system generation time limits the numberof active (not suspended) processes in the system. •Because partition sizes are preset at system generation time, small jobs will notutilize partition space efficiently. In an environment where the main storagerequirement of all jobs is known beforehand, this may be reasonable, but in most cases, it is an inefficient technique.

  8. Dynamic Partitioning • To overcome some of the difficulties with fixed partitioning, an approach known as dynamic partitioning was developed. • With dynamic partitioning, the partitions are of variable length and number.When a process is brought into main memory, it is allocated exactly as much memoryas it requires and no more. • To as external fragmentation, indicating that the memory that isexternal to all partitions becomes increasingly fragmented. This is in contrast to internal fragmentation, referred to earlier. • One technique for overcoming external fragmentation is compaction.

  9. Placement Algorithm • Best-fit chooses the block that is closest in size to the request. First-fit begins to scan memory from thebeginning and chooses the first available block that is large enough. Next-fit beginsto scan memory from the location of the last placement, and chooses the next availableblock that is large enough. • The first-fit algorithm is not only the simplest but usually the best and fastest as well.Thenext-fit algorithm tends to produce slightly worse results than the first-fit.The nextfitalgorithm will more frequently lead to an allocation from a free block at the end of memory.

  10. Replacement Algorithm • In a multiprogramming system using dynamic partitioning,there will come a time when all of the processes in main memory are in ablocked state and there is insufficient memory, even after compaction, for an additionalprocess. To avoid wasting processor time waiting for an active process to becomeunblocked, the operating system will swap one of the processes out of mainmemory to make room for a new process or for a process in a Ready-Suspend state.

  11. Relocation • To solve this problem, a distinction is made among several types ofaddresses. A logical address is a reference to a memory location independent of thecurrent assignment of data to memory; a translation must be made to a physicaladdress before the memory access can be achieved.A relative address is a particularexample of logical address, in which the address is expressed as a location relative tosome known point, usually a value in a processor register. A physical address, orabsolute address, is an actual location in main memory.

  12. PAGING

  13. Both unequal fixed-sizeand variable-size partitions areinefficient in the use ofmemory; the former results in internalfragmentation,thelatterinexternal fragmentation. • Recall that in the case of simple partition, alogical address is the location of a word relative to the beginning of theprogram; theprocessor translates that into a physical address.With paging, the logical-to-physicaladdress translation is still done by processor hardware. Now theprocessor mustknow how to access the page table of the current process.Presented with a logicaladdress (page number, offset), the processor uses the page table toproduce a physical address (frame number, offset).

  14. Thus we see that simple paging, as described here, issimilar to fixed partitioning.The differences are that, with paging, the partitions are rather small; a programmay occupy more than one partition; and these partitions need not be contiguous.

  15. To make this paging scheme convenient, let us dictatethat the page size,hence the frame size, must be a power of 2.With the use of a page sizethat is apower of 2, it is easy to demonstrate that therelative address,

  16. The consequences of using a page size that is a power of 2 are twofold. First,the logical addressing scheme is transparent to the programmer, the assembler, andthe linker. Each logical address(page number, offset) of a program is identical to itsrelative address. Second, it is a relatively easy matter to implement a function inhardware to perform dynamic address translation at run time.

  17. 0000010111011110 • number 1, offset 478.

  18. SEGMENTATION

  19. A user program can be subdivided using segmentation, in which the program and itsassociated data are divided into a number ofsegments. It is not required that all segmentsof allprograms be ofthe same length, although there is a maximum segmentlength. As with paging, a logical address using segmentation consists of two parts, inthis case a segment number and an offset. • Segmentation eliminates internal fragmentation but, like dynamic partitioning, it suffers from external fragmentation. However, because a process is broken upinto a number of smaller pieces, the external fragmentation should be less. • Whereas paging is invisible to the programmer, segmentation isusually visibleand is provided as a convenience for organizing programs and data. • Another consequence of unequal-size segments is that there is no simple relationshipbetween logical addresses and physical addresses. Analogous to paging, asimple segmentation scheme would make use of a segment table for each process anda list of free blocks of main memory

  20. Consider an address of n mbits, where the leftmost n bits are the segment number and the rightmost mbitsare the offset. In our example (Figure 7.11c), n 4 and m 12. Thus the maximumsegment size is 212 4096.The following steps are needed for address translation: • • Extract the segment number as the leftmost n bits of the logical address. • • Use the segment number as an index into the process segment table to find thestarting physical address of the segment. • • Compare the offset, expressed in the rightmost m bits, to the length of the segment. If the offset is greater than or equal to the length, the address is invalid. • • The desired physical address is the sum of the starting physicaladdress of the segment plus the offset. • To summarize, with simple segmentation, a process is divided into a number ofsegments that need not be of equal size.When a process is brought in, all of its segments are loaded into available regions of memory, and a segment table is set up.

  21. Selesai....

More Related