Giter Club home page Giter Club logo

virtualmemorysimulation's Introduction

Virtual Memory Simulation Assignment

Virtual memory allows a process of P pages to run in F frames, even if F < P. This is achieved by use of a page table, which records which pages are in RAM in which frames, and a page fault mechanism by which the memory management unit (MMU) can ask the operating system (OS) to bring in a page from disk. The page table must be accessible by both the MMU and the OS, and an IPC facility is needed for communication between the MMU and OS. Given the MMU simulator below, write a program that does the work of the OS to maintain a process' use of RAM and the page table. The page table is held in shared memory, and signals are used for IPC. You do not need to simulate the RAM, only the page table maintenance. However, to make things realistic, your OS process must sleep(1) whenever a disk access (write out page to disk, read in page from disk) would be necessary in a real implementation.

The Page Table

The page table has four fields in each page table entry: A Boolean Valid indicating if the page of that index is in RAM. An integer Frame giving the frame number of the page in RAM. A Boolean Dirty indicating if the page has been written to. An integer Requested which is non-zero only if that page is not in RAM and has been requested by the MMU. In this case it's value is the PID of the MMU. The OS process must create the page table in shared memory, and initialize it to indicate that no pages are loaded (all Valid fields set to 0). You may need to add more fields for your OS, with corresponding changes in the MMU.

The MMU

This memory management unit simulator takes several arguments: The number of pages in the process. A reference string of memory accesses, each of the form , e.g., W3 is a write to page 3. The PID of the OS process. The MMU attaches to the shared memory (using the OS PID on the command line as the key), then runs through the reference string. For each memory access, the MMU:

Checks if the page is in RAM. If not in RAM, writes its PID into the Requested field for that page. Simluates a page fault by signalling the OS with a SIGUSR1. Blocks until it receives a SIGCONT signal from the OS to indicate that the page has been loaded (well, as mentioned above, the load is not done in this project, just simulated by sleep(1) delays). If the access is a write access, sets the Dirty bit. Prints the updated page table. When all memory accesses have been processed, the MMU detaches from the shared memory and signals the OS one last time, but without placing its PID in any Requested field. That must be detected by the OS, at which point it can destroy the shared memory and exit.

The OS

The OS simulator must take two arguments: The number of pages in the process. The number of frames allocated to the process. For simplicity, assume that the pages and frames are numbered 0, 1, 2, ... After creating and initializing the page table in the shared memory, the OS must sit in a loop waiting for a SIGUSR1 signal from the MMU. When it receives a signal, it must:

Scan through the page table looking for a non-zero value in the Requested field. If a non-zero value is found, it's the PID of the MMU, and indicates that the MMU wants the page at that index loaded. If there is a free frame allocate the next one to the page. If there are no free frames, choose a victim page. If the victim page is dirty, simulate writing the page to disk by sleep(1) and increment the counter of disk accesses. Update the page table to indicate that the victim page is no longer Valid. Simulate the page load by sleep(1) and increment the counter of disk accesses. Update the page table to indicate that the page is Valid, in the allocated Frame, not Dirty, and clear the Requested field. Print the updated page table. Send a SIGCONT signal to the MMU to indicate that the page is now loaded. If no non-zero Requested field was found, the OS exits the loop. You can use whatever algorithm you want for choosing a victim page. You may need to add extra fields to the page table, and make minor modifications to the MMU code (ask me if you are unsure if what you are doing is minor). Before terminating the OS must print out the total number of disk accesses, and destroy the shared memory.

virtualmemorysimulation's People

Contributors

fktech123 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.