memory management basics
play

Memory Management Basics Don Porter Portions courtesy Emmett - PowerPoint PPT Presentation

COMP 530: Operating Systems Memory Management Basics Don Porter Portions courtesy Emmett Witchel and Kevin Jeffay 1 COMP 530: Operating Systems Review: Address Spaces MAX sys Physical address space The address space supported by the


  1. COMP 530: Operating Systems Memory Management Basics Don Porter Portions courtesy Emmett Witchel and Kevin Jeffay 1

  2. COMP 530: Operating Systems Review: Address Spaces MAX sys • Physical address space — The address space supported by the hardware – Starting at address 0, going to address MAX sys MAX prog Program • Logical/virtual address space — A process ’ s P view of its own memory – Starting at address 0, going to address MAX prog 0 But where do addresses come from? MOV r0, @0xfffa620e 0

  3. COMP 530: Operating Systems • Which is bigger, physical or virtual address space? – A. Physical address space – B. Virtual address space – C. It depends on the system.

  4. COMP 530: Operating Systems Address Space Generation • The compilation pipeline 0 1000 Library Library Routines Routines 0 100 1100 prog P P : : : : : : push ... : : push ... : : : inc SP, 4 foo() inc SP, x jmp 175 jmp 1175 jmp 75 : jmp _foo : : : : : ... ... ... 75 175 1175 end P foo: ... Compilation Assembly Linking Loading

  5. COMP 530: Operating Systems Program Relocation • Program issues virtual addresses • Machine has physical addresses. • If virtual == physical, then how can we have multiple programs resident concurrently? • Instead, relocate virtual addresses to physical at run time. – While we are relocating, also bounds check addresses for safety. • I can relocate that program (safely) in two registers…

  6. COMP 530: Operating Systems 2 register translation MAX sys MEMORY EXCEPTION Logical Physical no Program 1500 Addresses Addresses ≤ P ’ s + CPU yes physical address space 1000 500 1000 Instructions MAX prog Limit Base Register Register Program P ’ s logical address space 0 0

  7. COMP 530: Operating Systems • With base and bounds registers, the OS needs a hole in physical memory at least as big as the process. – A. True – B. False

  8. COMP 530: Operating Systems The Fragmentation Problem MAX • External fragmentation – Unused memory between units of allocation – E.g, two fixed tables for 2, but a party of 4 • Internal fragmentation Program – Unused memory within Q ’ s a unit of allocation PAS – E.g., a party of 3 at Program Code a table for 4 ( “ text ” ) Data Execution Stack Execution Stack Program R ’ s PAS 0

  9. COMP 530: Operating Systems Dynamic Allocation of Partitions MAX Program P 1 • Simple approach: – Allocate a partition when a process is admitted into the system – Allocate a contiguous memory partition to the Program process P 2 OS keeps track of... P 5 Full-blocks Empty-blocks ( “ holes ” ) Program Allocation strategies P 3 First-fit Best-fit Worst-fit Program P 4 0

  10. COMP 530: Operating Systems First Fit Allocation To allocate n bytes, use the first available free block such 1K bytes that the block size is larger than n. 2K bytes 2K bytes To allocate 400 bytes, we use the 1st free block 500 bytes 500 bytes available

  11. COMP 530: Operating Systems First Fit: Rationale and Implementation • Simplicity! • Requires: – Free block list sorted by address – Allocation requires a search for a suitable partition – De-allocation requires a check to see if the freed partition could be merged with adjacent free partitions (if any) Advantages Disadvantages Simple Slow allocation ◆ ◆ Tends to produce larger External fragmentation ◆ ◆ free blocks toward the end of the address space

  12. COMP 530: Operating Systems Best Fit Allocation To allocate n bytes, use the smallest available free block 1K bytes 1K bytes such that the block size is larger than (or equal to) n. 2K bytes 2K bytes To allocate 400 bytes, we use the 3rd free block 500 bytes available (smallest)

  13. COMP 530: Operating Systems Best Fit: Rationale and Implementation • Avoid fragmenting big free blocks • To minimize the size of external fragments produced • Requires: – Free block list sorted by size – Allocation requires search for a suitable partition – De-allocation requires search + merge with adjacent free partitions, if any Disadvantages Advantages External fragmentation Works well when most ◆ ◆ allocations are of small size Slow de-allocation ◆ Relatively simple Tends to produce many ◆ ◆ useless tiny fragments (not really great)

  14. COMP 530: Operating Systems Worst Fit Allocation To allocate n bytes, use the largest available free block 1K bytes 1K bytes such that the block size is larger than n. 2K bytes To allocate 400 bytes, we use the 2nd free block 500 bytes available (largest)

  15. COMP 530: Operating Systems Worst Fit: Rationale and Implementation • Avoid having too many tiny fragments • Requires: – Free block list sorted by size – Allocation is fast (get the largest partition) – De-allocation requires merge with adjacent free partitions, if any, and then adjusting the free block list Advantages Disadvantages Works best if allocations Slow de-allocation ◆ ◆ are of medium sizes External fragmentation ◆ Tends to break large free ◆ blocks such that large partitions cannot be allocated

  16. COMP 530: Operating Systems Allocation strategies • First fit, best fit and worst fit all suffer from external fragmentation. – A. True – B. False

  17. COMP 530: Operating Systems Eliminating Fragmentation MAX • Compaction Program P 1 – Relocate programs to coalesce holes Swapping Program Ø Preempt processes & reclaim their memory P 2 Ready Running Program P 3 ready ? Waiting queue Suspended suspended Program queue semaphore/condition queues P 4 0

  18. COMP 530: Operating Systems Sharing Between Processes 2 n -1 Heap • Schemes so far have considered only a single address space per process – A single name space per process Run-Time Program – No sharing Stack P ’ s VAS Program How can one share code and data between Data programs without paging? Program Text 0 Program P ’s VAS

  19. COMP 530: Operating Systems Multiple (sub) Name Spaces 2 n -1 2 n 4 -1 Heap Heap (not shared) 2 n 3 -1 0 Run-Time Run-Time Stack Stack (not shared) 2 n 2 -1 0 Program Program Data 2 n 6 -1 Data (not shared) Libraries 0 2 n 1 -1 0 Program Program 2 n 5 -1 Text Text User Code (shared) 0 0 0

  20. COMP 530: Operating Systems Segmentation • New concept: A segment — a memory “ object ” – A virtual address space • A process now addresses objects —a pair ( s , addr ) – s — segment number – addr — an offset within an object • Don’t know size of object, so 32 bits for offset? n 0 n 2 0 n 1 0 s addr s addr Segment + Address register scheme Single address scheme Two ways to encode a virtual address

  21. COMP 530: Operating Systems Implementing Segmentation Program • Add a segment table containing base & P limit register values CPU 1500 MEMORY Program EXCEPTION s o P ’ s Segment no n 0 32 0 1000 ≤ + yes Logical Addresses Limit Base 500 1000 Register Register base limit s 0 STBR Physical Memory Segment Table

  22. COMP 530: Operating Systems Are we done? • Segmentation allows sharing – And dead simple hardware • Can easily cache all translation metadata on-chip – Low latency to translate virtual addresses to physical addresses • Two arithmetic operations (add and limit check) • … but leads to poor memory utilization – We might not use much of a large segment, but we must keep the whole thing in memory (bad memory utilization). – Suffers from external fragmentation – Allocation/deallocation of arbitrary size segments is complex • How can we improve memory management? – stay tuned…

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend