实验五 存储管理

1 实验目的:

     通过请求页式存储管理中页面置换算法模拟设计,了解虚拟存储技术的特点,掌握请求页式存储管理的页面置换算法。

2 实验内容:

  1. 通过随机数产生一个指令序列,共320条指令;
  2. 将指令序列变换为页面号;
  3. 计算FIFO算法在分配不同内存块下的命中率。(假设分配的内存块从4块至32块。)

<程序设计>

设计一个虚拟存储区和内存工作区,使用FIFO算法计算访问命中率。

首先用Srand()和rand()函数定义和产生指令序列,然后将指令序列变换成相应的页面号,并针对FIFO算法计算相应的命中率。

命中率=1-缺页率

相关定义如下:

  1. 数据结构
  1. 页面类型结构pl_type

   pn页号, pfn块号,counter为一个周期内访问页面次数,time为访问时间

  1. 页面控制结构中

   pfc[total_vp]定义用户进程虚页控制结构

   *freepf_head为空页面头的指针

   *busypf_head为忙页面头的指针

   *busypf_tail为忙页面尾的指针

2.函数定义

1void initialize():初始化函数,给每个相关的页面赋值

2void FIFO():计算使用FIFO算法时的命中率

3.变量定义

 1int a[total_instruction]:指令流数组

 2int page[total_instruction]:每条指令所属页号

 3int offset[total_instruction]:每页装入10条指令后取模运算页号偏移值

 4int total_pf:用户进程的内存块数

 5int diseffect:页面失效次数,即缺页次数

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>

#define TRUE 1
#define FALSE 0
#define INVALID -1
#define NULL 0
#define total_instruction 320    /* 指令流长 */
#define total_vp 32              /* 虚页长 */
#define clear_period 50          /*清零周期*/
typedef struct{                  /* 页面结构*/
  int pn,pfn,counter,time;
}pl_type;
pl_type pl[total_vp];            /* 页面结构数组*/
struct pfc_struct{               /* 页面控制结构*/
  int pn,pfn;
  struct pfc_struct *next;
};



typedef struct pfc_struct pfc_type;
pfc_type pfc[total_vp],*freepf_head,*busypf_head,*busypf_tail;
int diseffect,  a[total_instruction];
int page[total_instruction],  offset[total_instruction];

void initialize(int total_pf)         /*初始化相关数据结构*/
                              /*用户进程的内存页面数*/
{
  int i;
  diseffect=0;
  for(i=0;i<total_vp;i++)
  {
    pl[i].pn=i;pl[i].pfn=INVALID;  /*置页面控制结构中的页号,页面为空*/
    pl[i].counter=0;pl[i].time=-1; /*页面控制结构中的访问次数为0,时间为-1*/
  }
  for(i=1;i<total_pf;i++)
  {
    pfc[i-1].next=&pfc[i];pfc[i-1].pfn=i-1; /*建立pfc[i-1]和pfc[i]之间的链接*/
  }
  pfc[total_pf-1].next=NULL;pfc[total_pf-1].pfn=total_pf-1;
  freepf_head=&pfc[0];             /*空页面队列的头指针为pfc[0]*/
}

void FIFO(int total_pf)                    /* FIFO算法*/
                            /* 用户进程的内存页面数*/
{
  int i,j;
  pfc_type *p,*t;
  initialize(total_pf);               /* 初始化相关页面控制用数据结构*/
  busypf_head=busypf_tail=NULL;       /* 忙页面队列头,队列尾链接*/
  for(i=0;i<total_instruction;i++)
  {

    if(pl[page[i]].pfn==INVALID)     /*页面失效*/
    {

      diseffect+=1;                  /* 失效次数*/
      if(freepf_head==NULL)          /* 无空闲页面*/
      {
        p=busypf_head->next;
        pl[busypf_head->pn].pfn=INVALID;
        freepf_head=busypf_head;     /*释放忙页面队列中的第一个页面*/
        freepf_head->next=NULL;
        busypf_head=p;
      }
      p=freepf_head->next;          /*按FIFO方式调新页面入内存页面*/
      freepf_head->next=NULL;
      freepf_head->pn=page[i];
      pl[page[i]].pfn=freepf_head->pfn;
      if(busypf_tail==NULL)
            busypf_head=busypf_tail=freepf_head;
      else
      {
        busypf_tail->next=freepf_head;
        busypf_tail=freepf_head;
      }
      freepf_head=p;      
    }
  }
  printf(" FIFO:%6.4f",1-(float)diseffect/320);
}

main()
{
  int S,i,j,temp;

  srand(getpid()*10);  /*由于每次运行时进程号不同,故可以用来作为初始化随即数队列的“种子”*/
  S=(float)319*rand()/RAND_MAX+1;
//  printf("s=%d\n",S);
  for(i=0;i<total_instruction;i+=4)  /* 产生指令队列*/
  {
    a[i]=S;                          /*任选一指令访问点*/
    a[i+1]=a[i]+1;                   /* 顺序执行一条指令*/
//    a[i+2]=(float)a[i]*rand()/32767;
    a[i+2]=(float)a[i]*rand()/RAND_MAX;/* 执行前地址指令m'*/
    a[i+3]=a[i+2]+1;                   /* 执行后地址指令*/
    S=(float)rand()*(318-a[i+2])/RAND_MAX+a[i+2]+2;
        
  }
  for(i=0;i<total_instruction;i++)     /* 将指令序列变换成页地址流*/
  {
    page[i]=a[i]/10;
    offset[i]=a[i]%10;

  }
  for(i=4;i<=32;i++)                   /* 用户内存工作区从4个页面到32个页面*/
  {
    printf("%2d page frames",i);
    FIFO(i);
    printf("\n");
  }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值