This repository was archived by the owner on Nov 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathvmsim.h
84 lines (71 loc) · 2.1 KB
/
vmsim.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*
* vmsim.h: Virtual memory header file
* (c) Mohammad Hasanzadeh Mofrad, 2019
* (e) [email protected]
*
* Level 1 Page Table PAGE FRAME
* 31------------- 12 | 11 ------------- 0
* |PAGE TABLE ENTRY | PHYSICAL OFFSET |
* -------------------------------------
* <-------20-------> | <-------12------->
*
*/
#ifndef _VMSIM_INCLUDED_H
#define _VMSIM_INCLUDED_H
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <ctype.h>
// 32-Bit Root level Page Table Entry (PTE)
struct pte_32 {
unsigned int* physical_address;
char present;
char dirty;
// Add your reference counter here
};
// Macros to extract pte/frame index
#define FRAME_INDEX(x) ( (x) & 0xfff)
#define PTE32_INDEX(x) (((x) >> 12) & 0xfffff)
// 4KB (2^12) page size
#define PAGE_SIZE_4KB 4096
// Smallest addressable unit in a page
//#define PAGE_SIZE_UNITS 8
// Page table size = Maximum size of the 32-bit memory (4GB)
// divided by page size (4kB): 2^32 / 2^12 = 2^20 (1MB)
#define PT_SIZE_1MB 1048576
// Page table entry size
#define PTE_SIZE_BYTES sizeof(struct pte_32*)
// 32-Bit memory frame data structure
struct frame_struct {
unsigned int frame_number;
unsigned int* physical_address;
unsigned int virtual_address;
struct pte_32* pte_pointer;
struct frame_struct* next;
};
// Number of physical frames
uint32_t numframes;
// Physical memory
unsigned int* physical_frames = NULL;
// Page Table
struct pte_32** page_table = NULL;
// Page Table Entry
struct pte_32* pte = NULL;
// Handle page fault function
struct pte_32* handle_page_fault(unsigned int);
// Fifo page replacement algorithm
unsigned int fifo();
// Fifo page replacement current index
unsigned int current_index = -1;
// Allocate dynamic memory
void* allocate(unsigned long int size);
// Deallocate dynamic memory
void* deallocate(void** ptr, unsigned long int size);
// Auxiliary method for converting a string to uppercase
void toupper_str(char* str);
// Address array hashmap
struct hashmapbase* vm;
// Opt page replacement
unsigned int opt(struct frame_struct* head, unsigned int access_number);
#endif