report | 代做Algorithm | 代写oop | Python | assignment | lab | os代写 – Assignment 3: Virtual Memory Simulator

Assignment 3: Virtual Memory Simulator

report | 代做Algorithm | 代写oop | Python | assignment | lab | os代写 – 该题目是一个常规的Python的练习题目代写, 涵盖了report/Algorithm/oop/Python等方面, 这个项目是lab代写的代写题目

report代写 代做report

You will implement a VM Simulator which will simulate the operation of a virtual memory system. To launch the system, your simulator will accept one optional command-line argument for the selection of the page replacement algorithm. The system will then accept commands to read/write from/to a virtual address space. Your system will need to correctly move pages between disk and main memory in order to satisfy access requests. Your system will need to properly maintain the page table as part of this process.

1. Parameters of the Virtual Memory System

  • Each address in memory stores a single integer.
  • All memory locations are initialized to the value of -1.
  • All virtual pages are initially on disk, so the valid bits of all page table entries are equal to 0.
  • When a virtual page is on disk, its disk page number is the same as its virtual page number.
  • Your virtual memory system will have 64 addresses (0 – 63).
  • Main memory has 32 addresses (0 – 31).
  • Each page contains 8 addresses, so your virtual memory system will have 8 pages and your main memory will have 4 pages.
  • Pages are numbered sequentially starting at the lowest memory address. So page 0 contains addresses 0-7, page 1 contains addresses 8-15, and so on.

2. User Interface of VM Simulator

The user will type in a sequence of commands and your program will perform the operation specified by each command. Your program will execute in a l oop which starts with your program printing a > prompt at the beginning of the line in order to let the user know that your program is ready to receive a new command. The user will type in a command, followed by any necessary arguments, and then hit the enter key to indicate that the command is complete. Your program will then execute the command, print data to the screen if necessary, print a > prompt on a new line to receive a new command. (Note: > is one > and one space.)

3 Commands

Your program must (and will only) process the following user commands.

  1. read <virtual_addr> : This command prints the contents of a memory address. The command takes one argument which is the virtual address of the memory location to be read. When a page fault occurs, A Page Fault Has Occurred\n is printed to the screen before the contents of a memory address.
  2. write <virtual_addr> : The command writes data to a memory location. The command takes two arguments, the virtual address to write the data to, and an integer which will be written to the address. When a page fault occurs, A Page Fault Has Occurred\n is printed on the screen.
  3. showmain : This command prints the contents of a physical page in the main memory. The command takes one argument which is the number of the physical page to be printed. Since each page contains eight addresses, eight contents of addresses should be printed and together with their associated physical addresses. You can see the format from the example below which shows the contents of physical page 1 that includes the value 100 at address 8, the value 101 at address 9, the value 102 at address 10, and so on.

8: 9: 10: 11: 12: 105 13: 107 14: 101 15: 100

  1. showdisk : This command prints the contents of a page on disk. The command takes one argument which is the number of the disk page to be printed. Since each page contains eight addresses, eight contents of addresses should be printed and together with their associated addresses. The format for printing the contents of the disk page is the same as the showmain command.
  2. showptable : This command prints the contents of the page table. Your virtual memory system contains 8 virtual pages, so this command will print 8 page table entries. Each page table entry contains three fields of information about a page. 1. Valid bit : 1 indicates that the corresponding page is in main memory and 0 indicates that the page is on disk. 2. Page Number (PN) : This is an integer indicating the number of the page (in main memory or disk) where the virtual page can be found in memory. The PN refers to a main memory physical page number when the valid bit is equal to 1, and the PN refers to a disk page number when the valid bit is 0. Note that when the valid bit is 0, the PN is always the same as the virtual page number. 3. Dirty bit : 1 indicates that the corresponding page has been written to while in main memory. 0 indicates that the page has not been written to since it has been in main memory. The dirty
bit has no meaning if the page is not in main memory, i.e. if the valid bit is 0.

The showptable command will print the contents of each page table entry on a separate line in the following format, where each line is divided by colons with four entries, virtual page number, Valid bit , PN, and Dirty bit. Below is an example output of a page table from the showptable command. For instance, the first line represents that At virtual page number 0, Valid bit is 1, Page Number is 0, and Dirty bit is 0

0:1:0: 1:1:3: 2:0:2: …

Although the above example only shows 3 pages for brevity, your showptable command should print all 8 pages from the page table.

  1. quit : This command quits the program. (Note: No need to print anything.)

4. Page Replacement Algorithm (Handling page faults)

When a page fault occurs, a disk page must be copied into the main memory. If there is one or more pages in main memory which is available (there is not a virtual page mapped to it) then the disk page should be copied into the available main memory page with the lowest page number. If all pages in main memory are in use, then a victim page must be chosen for eviction from main memory. You will implement two page replacement algorithms, FIFO and LRU, for the virtual memory system. And the page replacement algorithm will be selected at startup.

  • FIFO : The simplest algorithm is First-In-First-Out replacement. When a page fault occurs, the page that has been the longest in the main memory will be replaced.
  • LRU : The near-optimal algorithm is Least Recently Used replacement. When a page fault occurs, the page that is the least recently used/accessed in the main memory will be replaced. show* commands do not count as use.

Remember that the victim page must be copied back to disk before it is evicted if its own dirty bit is

  1. When a victim page is copied back to disk, always copy it back to the disk page whose number is the same as the number of the virtual page.

Your simulator should accept EITHER FIFO or LRU as the command-line argument OR no command-line argument, which by default adopts the FIFO algorithm. The following examples show how your simulator should launch the system. We assume that the linux prompt is the symbol $ and the executable is named a.out.

Additional Note:

For the sake of simplicity, the page table will be assumed to be stored separately from the main memory. This means that when you issue the showmain command you will not see the page table contents. Also, when you issue the showptable command you will not see the main memory.

For keeping counters please do not use time(NULL)because it will cause issues when running with autoCoverage.py. Use a global counter as a clock instead which increments by 1 each time you issue any command. Assume maximum number of commands will be < 255.

5. Testing instructions:

For this assignment you will need to create a set of tests for your program which collectively achieve 100% line coverage, executing every line of code in your program. You will need to submit your test data so that we can verify that you have achieved 100% line coverage. We have created a Python script called autocov.py which you should download with the assignment and use before you submit your assignment in order to ensure that you have achieved 100% line coverage. The autocov.py script will compile and execute your code with a set of test cases which you define and it will report the line coverage achieved by the test case. Do not modify the autocov.py script which we provide.

Test Runs

Testing is performed by executing your program a number of times with different test data. Each test execution of your code is referred to as a test run (run for short) and the test data associated with each run must be stored in a .run file. A .run file will contain all of the test data which will be supplied to your program during a single test execution. There are two types of test data which can be supplied to your program, command-line inputs and interactive inputs. Command-line inputs are those supplied at the command line when the program is invoked, and interactive inputs are those supplied during the execution of the program through stdin, typically from the keyboard.

A .run file is a text file describing all of the inputs supplied to your program for a single execution. The name of each .run file must have the suffix .run, but the prefix does not matter. Each line of a

$ ./a.out The system, by default, adopts the FIFO replacement algorithm.
$ ./a.out FIFO The system adopts the FIFO replacement algorithm.
$ ./a.out LRU The system adopts the LRU replacement algorithm

.run file can be no longer than 80 characters. The first line of the .run file is a series of command-line arguments passed to the program when it is invoked. Each command-line argument on the first line of the .run file must be separated by at least one space or tab character. The remaining lines of the .run files contain a sequence of interactive inputs which will be supplied to your program through stdin, as if they were typed into the keyboard.

Input to autocov.py

The autocov.py script requires your access to the source code of your program and the set of .run files to be used during testing. Your source code file must be named hw.c. This is important; it is the only file which will be compiled by the script. Any number of .run files may be provided. All of these files, hw.c and all of your .run files, must be zipped together into a single zip file named hw.zip. You can create the zip file using the zip command on linux. For example, if you have two .run files called t1.run and t2.run then you could create the zip file with the following command: zip hw.zip hw.c t1.run t2.run. The hw.zip file is the only input to the autocov.py script.

Running autocov.py

In order to execute the script, the autocov.py file must be placed in the same directory as the hw.zip file and another directory called hw. The hw directory will be used by the script to compile and run your program, so it should be empty before running the script. The script needs to be run using a Python interpreter version 3.6.8 or later. On the open lab systems the command python3 invokes the Python 3.x interpreter, so you can run the autocov.py script by entering the command python autocov.py. The script will print a number of lines to the screen, including program outputs, but the second-to-last line should look like this, Lines executed: X% of Y, where X is the line coverage and Y is the number of lines in your program.

6. Submission Instructions:

Your source code and .run files must be submitted as a single .zip file. Your source code file must be named hw.c. This is important; it is the only file which will be compiled by the script. Any number of .run files may be provided. All of these files, hw.c and all of your .run files, must be zipped together into a single zip file named hw.zip. You can create the zip file using the zip command on linux. For example, if you have two .run files called t1.run and t2.run then you could create the zip file with the following command: zip hw.zip hw.c t1.run t2.run. Be sure that your program runs and compiles with gcc version 4.8.5. Also, be sure that no compiler switches are used, other than the following.

  • -std=C
  • -std=C
  • -o
  • -fprofile-arcs
  • -ftest-coverage

7. Example Usage

Following the above assumption, this is an example, launching the system with the FIFO replacement algorithm. The text typed by the user is bold. $ ./a.out FIFO

quit

Additional Example Usage (eviction from main memory)

This is another example, launching the system with the LRU replacement algorithm. The text typed by the user is bold.

quit

  • 0:0:0: > showptable
  • 1:0:1:
  • 2:0:2:
  • 3:0:3:
  • 4:0:4:
  • 5:0:5:
  • 6:0:6:
  • 7:0:7:
  • read

    • A Page Fault Has Occurred
  • write

  • read

  • showmain

  • 0:-
  • 1:
  • 2:-
  • 3:-
  • 4:-
  • 5:-
  • 6:-
  • 7:-
  • 0:0:0: > showptable
  • 1:1:0:
  • 2:0:2:
  • 3:0:3:
  • 4:0:4:
  • 5:0:5:
  • 6:0:6:
  • 7:0:7:
  • write $ ./a.out LRU

  • write A Page Fault Has Occurred

  • read A Page Fault Has Occurred

    • A Page Fault Has Occurred
  • read

    • A Page Fault Has Occurred
  • read

  • write

  • showmain

  • 8:-
  • 9:-
  • 10:-
  • 11:-
  • 12:-
  • 13:-
  • 14:-
  • 15:
  • showdisk

  • 24:-
  • 25:-
  • 26:-
  • 27:-
  • 28:-
  • 29:-
  • 30:-
  • 31:-
  • 0:1:3: > showptable
  • 1:1:0:
  • 2:1:2:
  • 3:1:1:
  • 4:0:4:
  • 5:0:5:
  • 6:0:6:
  • 7:0:7:
  • read

    • A Page Fault Has Occurred
  • showmain

  • 8:-
  • 9:-
  • 10:-
  • 11:-
  • 12:-
  • 13:-
  • 14:-
  • 15:-
  • showdisk

  • 24:-
  • 25:-
  • 26:-
  • 27:-
  • 28:-
  • 29:-
  • 30:-
  • 31:
  • 0:1:3: > showptable
  • 1:1:0:
  • 2:1:2:
  • 3:0:3:
  • 4:1:1:
  • 5:0:5:
  • 6:0:6:
  • 7:0:7: