《2022年操作系统实验-内存管理 2.pdf》由会员分享,可在线阅读,更多相关《2022年操作系统实验-内存管理 2.pdf(11页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、广州大学学生实验报告开课学院及实验室:计算机科学与工程实验室 2015 年 11 月 29 日实验课程名称操作系统实验成绩实验项目名称实验 3 内存管理指导老师一、实验目的通过模拟实现请求页式存储管理的几种基本页面置换算法,了解虚拟存储技术的特点,掌握虚拟存储请求页式存储管理中几种基本页面置换算法的基本思想和实现过程,并比较它们的效率。二、实验内容1、常用页面置换算法模拟实验设计一个虚拟存储区和内存工作区,并使用下述算法计算访问命中率。1)、最佳淘汰算法(OPT)2)、先进先出的算法(FIFO)3)、最近最久未使用算法(LRU )4)、最不经常使用算法(LFU )5)、最近未使用算法(NUR
2、)命中率页面失效次数页地址流长度2、在 Linux 环境下利用下列系统调用malloc(), free()编写一段程序实现内存分配与回收的管理。要求:1)、返回已分配给变量的内存地址;2)、返回释放后的内存地址;3)、释放已分配的内存空间后,返回释放内存后未使用内存的大小。三、实验原理一、虚拟存储系统UNIX 中,为了提高内存利用率,提供了内外存进程对换机制;内存空间的分配和回收均以页为单位进行;一个进程只需将其一部分(段或页) 调入内存便可运行;还支持请求调页的存储管理方式。当进程在运行中需要访问某部分程序和数据时,发现其所在页面不在内存,就立即提出请求(向CPU 发出缺中断),由系统将其所
3、需页面调入内存。这种页面调入方式叫请求调页。为实现请求调页,核心配置了四种数据结构:页表、页框号、 访问位、 修改位、 有效位、保护位等。二、页面置换算法当 CPU 接收到缺页中断信号,中断处理程序先保存现场,分析中断原因,转入缺页中断处理程序。该程序通过查找页表,得到该页所在外存的物理块号。如果此时内存未满,能容纳新页,则启动磁盘I/O 将所缺之页调入内存,然后修改页表。如果内存已满,则须按某种置换算法从内存中选出一页准备换出,是否重新写盘由页表的修改位决定,然后将缺页调入,修改页表。利用修改后的页表,去形成所要访问数据的物理地址,再去访问内存数据。整个页面的调入过程对用户是透明的。常用的页
4、面置换算法有1、最佳置换算法(Optimal )名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 11 页 - - - - - - - - - 2、先进先出法(Fisrt In First Out )3、最近最久未使用(Least Recently Used)4、最不经常使用法(Least Frequently Used)5、最近未使用法(No Used Recently )四、实验设备Win7下虚拟机 VMware-workstation-11.0.0及 CentOS-5
5、.8-i386 五、实验要求书写实验报告。 提交实验报告。 报告主要以操作结果以及分析回答实验中问题为主,可以以截图进行说明。六、实验程序T4: #include #include #define TRUE 1 #define FALSE 0 #define INVALID -1 #define total_instruction 320 /*指令流长 */ #define total_vp 32 /*虚页长 */ #define clear_period 50 /*清0周期 */ typedef struct /*页面结构 */ int pn,pfn,counter,time; pl_typ
6、e; pl_type pltotal_vp; /*页面结构数组*/ struct pfc_struct /*页面控制结构*/ int pn,pfn; struct pfc_struct *next; ; typedef struct pfc_struct pfc_type; pfc_type pfctotal_vp,*freepf_head,*busypf_head,*busypf_tail; int diseffect, atotal_instruction; int pagetotal_instruction, offsettotal_instruction; int initialize
7、(int); int FIFO(int); int LRU(int); int LFU(int); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 11 页 - - - - - - - - - int NUR(int); int OPT(int); int main() int s,i,j; srand(10*getpid(); /*由于每次运行时进程号不同,故可用来作为初始化随机数队列的 “ 种子 ” */ s=(float)319*rand()/32767/32767
8、/2+1; / for(i=0;itotal_instruction;i+=4) /*产生指令队列*/ if(s319) printf(When i=%d,Error,s=%dn,i,s); exit(0); ai=s; /*任选一指令访问点m*/ ai+1=ai+1; /*顺序执行一条指令*/ ai+2=(float)ai*rand()/32767/32767/2; /*执行前地址指令m */ ai+3=ai+2+1; /*顺序执行一条指令*/ s=(float)(318-ai+2)*rand()/32767/32767/2+ai+2+2; if(ai+2318)|(s319) printf
9、(a%d+2,a number which is :%d and s=%dn,i,ai+2,s); for (i=0;itotal_instruction;i+) /*将指令序列变换成页地址流*/ pagei=ai/10; offseti=ai%10; for(i=4;i=32;i+) /*用户内存工作区从4个页面到 32个页面 */ printf(-%2d page frames-n,i); FIFO(i); LRU(i); LFU(i); NUR(i); OPT(i); return 0; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - -
10、 - - - 名师精心整理 - - - - - - - 第 3 页,共 11 页 - - - - - - - - - int initialize(total_pf) /*初始化相关数据结构*/ int total_pf; /*用户进程的内存页面数*/ int i; diseffect=0; for(i=0;itotal_vp;i+) pli.pn=i; pli.pfn=INVALID; /*置页面控制结构中的页号,页面为空*/ pli.counter=0; pli.time=-1; /*页面控制结构中的访问次数为0,时间为 -1*/ for(i=0;itotal_pf-1;i+) pfci.
11、next=&pfci+1; pfci.pfn=i; /*建立 pfci-1和pfci之间的链接 */ pfctotal_pf-1.next=NULL; pfctotal_pf-1.pfn=total_pf-1; freepf_head=&pfc0; /*空页面队列的头指针为pfc0*/ return 0; int FIFO(total_pf) /*先进先出算法 */ int total_pf; /*用户进程的内存页面数*/ int i,j; pfc_type *p; initialize(total_pf); /*初始化相关页面控制用数据结构*/ busypf_head=busypf_tail
12、=NULL; /*忙页面队列头,队列尾链接*/ for(i=0;inext; plbusypf_head-pn.pfn=INVALID; freepf_head=busypf_head; /*释放忙页面队列的第一个页面*/ freepf_head-next=NULL; busypf_head=p; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 11 页 - - - - - - - - - p=freepf_head-next; /*按FIFO方式调新页面入内存页面*/
13、freepf_head-next=NULL; freepf_head-pn=pagei; plpagei.pfn=freepf_head-pfn; if(busypf_tail=NULL) busypf_head=busypf_tail=freepf_head; else busypf_tail-next=freepf_head; /*free页面减少一个*/ busypf_tail=freepf_head; freepf_head=p; printf(FIFO:%6.4fn,1-(float)diseffect/320); return 0; int LRU (total_pf) /*最近最
14、久未使用算法*/ int total_pf; int min,minj,i,j,present_time; initialize(total_pf); present_time=0; for(i=0;itotal_instruction;i+) if(plpagei.pfn=INVALID) /*页面失效 */ diseffect+; if(freepf_head=NULL) /*无空闲页面 */ min=32767; for(j=0;jplj.time&plj.pfn!=INVALID) min=plj.time; minj=j; freepf_head=&pfcplminj.pfn; /腾
15、出一个单元 plminj.pfn=INVALID; plminj.time=-1; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 11 页 - - - - - - - - - freepf_head-next=NULL; plpagei.pfn=freepf_head-pfn; /有空闲页面 , 改为有效 plpagei.time=present_time; freepf_head=freepf_head-next; /减少一个 free 页面 else plpagei
16、.time=present_time; /命中则增加该单元的访问次数 present_time+; printf(LRU:%6.4fn,1-(float)diseffect/320); return 0; int NUR(total_pf) /*最近未使用算法*/ int total_pf; int i,j,dp,cont_flag,old_dp; pfc_type *t; initialize(total_pf); dp=0; for(i=0;itotal_instruction;i+) if (plpagei.pfn=INVALID) /*页面失效 */ diseffect+; if(fr
17、eepf_head=NULL) /*无空闲页面 */ cont_flag=TRUE; old_dp=dp; while(cont_flag) if(pldp.counter=0&pldp.pfn!=INVALID) cont_flag=FALSE; else dp+; if(dp=total_vp) dp=0; if(dp=old_dp) for(j=0;jnext=NULL; plpagei.pfn=freepf_head-pfn; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第
18、6 页,共 11 页 - - - - - - - - - freepf_head=freepf_head-next; else plpagei.counter=1; if(i%clear_period=0) for(j=0;jtotal_vp;j+) plj.counter=0; printf(NUR:%6.4fn,1-(float)diseffect/320); return 0; int OPT(total_pf) /*最佳置换算法 */ int total_pf; int i,j, max,maxpage,d,disttotal_vp; pfc_type *t; initialize(t
19、otal_pf); for(i=0;itotal_instruction;i+) /printf(In OPT for 1,i=%dn,i); /i=86;i=176;206;250;220,221;192,193,194;258;274,275,276,277,278; if(plpagei.pfn=INVALID) /*页面失效 */ diseffect+; if(freepf_head=NULL) /*无空闲页面 */ for(j=0;jtotal_vp;j+) if(plj.pfn!=INVALID) distj=32767; /* 最大 距离 */ else distj=0; d=1
20、; for(j=i+1;jtotal_instruction;j+) if(plpagej.pfn!=INVALID) distpagej=d; d+; max=-1; for(j=0;jtotal_vp;j+) if(maxnext=NULL; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,共 11 页 - - - - - - - - - plmaxpage.pfn=INVALID; plpagei.pfn=freepf_head-pfn; freepf_head=fre
21、epf_head-next; printf(OPT:%6.4fn,1-(float)diseffect/320); return 0; int LFU(total_pf) /*最不经常使用置换法*/ int total_pf; int i,j,min,minpage; pfc_type *t; initialize(total_pf); for(i=0;itotal_instruction;i+) if(plpagei.pfn=INVALID) /*页面失效 */ diseffect+; if(freepf_head=NULL) /*无空闲页面 */ min=32767; for(j=0;jp
22、lj.counter&plj.pfn!=INVALID) min=plj.counter; minpage=j; plj.counter=0; freepf_head=&pfcplminpage.pfn; plminpage.pfn=INVALID; freepf_head-next=NULL; plpagei.pfn=freepf_head-pfn; /有空闲页面 , 改为有效 plpagei.counter+; freepf_head=freepf_head-next; /减少一个 free 页面 else plpagei.counter+; printf(LFU:%6.4fn,1-(fl
23、oat)diseffect/320); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 8 页,共 11 页 - - - - - - - - - return 0; T5程序:/* For _MAX_PATH definition */ #include #include #include int main() int *string; /* Allocate space for a path name */ string=(int*) malloc(10); if(string =
24、 NULL) printf(Insufficient memory availablen); else printf(Memory space allocated for path namen); /*printf (string=%dn,string);*/ printf(string); free(string); printf(Memory freedn); int *stringy; /* Allocate space for a path name */ stringy =(int*) malloc(12); if(stringy=NULL) printf(Insufficient
25、memory availablen); else printf(Memory space allocated for path namen); /*printf (string=%dn,string);*/ printf(stringy); free( stringy ); printf(Memory freedn); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 9 页,共 11 页 - - - - - - - - - 七、总结心得(一)实验分析s . . . 或者执行多次后出现
26、中断名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 10 页,共 11 页 - - - - - - - - - 分析:1、从几种算法的命中率看,OPT 最高,其次为NUR 相对较高,而FIFO 与 LRU 相差无几,最低的是LFU。但每个页面执行结果会有所不同。2、OPT 算法在执行过程中可能会发生错误思考1、为什么OPT 在执行时会有错误产生?(二)实验心得总结通过模拟实现请求页式存储管理的几种基本页面置换算法,了解虚拟存储技术的特点,掌握虚拟存储请求页式存储管理中几种基本页面置换算法的基本思想和实现过程,并比较它们的效率。名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 11 页,共 11 页 - - - - - - - - -