1 Star 1 Fork 0

ZhouHeyu/CombAndCFTL

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
disksim_interface.c 15.24 KB
一键复制 编辑 原始数据 按行查看 历史
颜明博 提交于 2018-06-25 19:31 . first commit
/*
* DiskSim Storage Subsystem Simulation Environment (Version 3.0)
* Revision Authors: John Bucy, Greg Ganger
* Contributors: John Griffin, Jiri Schindler, Steve Schlosser
*
* Copyright (c) of Carnegie Mellon University, 2001, 2002, 2003.
*
* This software is being provided by the copyright holders under the
* following license. By obtaining, using and/or copying this software,
* you agree that you have read, understood, and will comply with the
* following terms and conditions:
*
* Permission to reproduce, use, and prepare derivative works of this
* software is granted provided the copyright and "No Warranty" statements
* are included with all reproductions and derivative works and associated
* documentation. This software may also be redistributed without charge
* provided that the copyright and "No Warranty" statements are included
* in all redistributions.
*
* NO WARRANTY. THIS SOFTWARE IS FURNISHED ON AN "AS IS" BASIS.
* CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER
* EXPRESSED OR IMPLIED AS TO THE MATTER INCLUDING, BUT NOT LIMITED
* TO: WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY
* OF RESULTS OR RESULTS OBTAINED FROM USE OF THIS SOFTWARE. CARNEGIE
* MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT
* TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
* COPYRIGHT HOLDERS WILL BEAR NO LIABILITY FOR ANY USE OF THIS SOFTWARE
* OR DOCUMENTATION.
*
*/
/*
* DiskSim Storage Subsystem Simulation Environment (Version 2.0)
* Revision Authors: Greg Ganger
* Contributors: Ross Cohen, John Griffin, Steve Schlosser
*
* Copyright (c) of Carnegie Mellon University, 1999.
*
* Permission to reproduce, use, and prepare derivative works of
* this software for internal use is granted provided the copyright
* and "No Warranty" statements are included with all reproductions
* and derivative works. This software may also be redistributed
* without charge provided that the copyright and "No Warranty"
* statements are included in all redistributions.
*
* NO WARRANTY. THIS SOFTWARE IS FURNISHED ON AN "AS IS" BASIS.
* CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER
* EXPRESSED OR IMPLIED AS TO THE MATTER INCLUDING, BUT NOT LIMITED
* TO: WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY
* OF RESULTS OR RESULTS OBTAINED FROM USE OF THIS SOFTWARE. CARNEGIE
* MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT
* TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
*/
/*
* DiskSim Storage Subsystem Simulation Environment
* Authors: Greg Ganger, Bruce Worthington, Yale Patt
*
* Copyright (C) 1993, 1995, 1997 The Regents of the University of Michigan
*
* This software is being provided by the copyright holders under the
* following license. By obtaining, using and/or copying this software,
* you agree that you have read, understood, and will comply with the
* following terms and conditions:
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose and without fee or royalty is
* hereby granted, provided that the full text of this NOTICE appears on
* ALL copies of the software and documentation or portions thereof,
* including modifications, that you make.
*
* THIS SOFTWARE IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO
* REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF EXAMPLE,
* BUT NOT LIMITATION, COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR
* WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR
* THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY
* THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. COPYRIGHT
* HOLDERS WILL BEAR NO LIABILITY FOR ANY USE OF THIS SOFTWARE OR
* DOCUMENTATION.
*
* This software is provided AS IS, WITHOUT REPRESENTATION FROM THE
* UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND
* WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER
* EXPRESSED OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE REGENTS
* OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE LIABLE FOR ANY DAMAGES,
* INCLUDING SPECIAL , INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
* WITH RESPECT TO ANY CLAIM ARISING OUT OF OR IN CONNECTION WITH THE
* USE OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN IF IT HAS
* BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH DAMAGES
*
* The names and trademarks of copyright holders or authors may NOT be
* used in advertising or publicity pertaining to the software without
* specific, written prior permission. Title to copyright in this software
* and any associated documentation will at all times remain with copyright
* holders.
*/
/*****************************************************************************/
/*
This file offers a suggested interface between disksim and a full system
simulator. Using this interface (which assumes only a few characteristics
of the system simulator), disksim will act as a slave of the system simulator,
providing disk request completion indications in time for an interrupt to be
generated in the system simulation. Specifically, disksim code will only be
executed when invoked by one of the procedures in this file.
Using ths interface requires only two significant functionalities of the
system simulation environment:
1. the ability to function correctly without knowing when a disk request
will complete at the time that it is initiated. Via the code in this file,
the system simulation will be informed at some later point in its view of
time that the request is completed. (At this time, the appropriate "disk
request completion" interrupt could be inserted into the system simulation.)
2. the ability for disksim to register a callback with the system simulation
environment. That is, this interface code must be able to say, "please
invoke this function when the simulated time reaches X". It is also helpful
to be able to "deschedule" a callback at a later time -- but lack of this
support can certainly be worked around.
(NOTE: using this interface requires compiling disksim.c with -DEXTERNAL.)
*/
/*****************************************************************************/
#include "disksim_global.h"
#include "disksim_ioface.h"
#include "syssim_driver.h"
/* Added may remove Later */
#include "disksim_iosim.h"
#include "disksim_disk.h"
/* End may Remove Later*/
/* This is the disksim callback for reporting completion of a disk request */
/* to the system-level simulation -- the system-level simulation should */
/* incorporate this completion as appropriate (probably by inserting a */
/* simulated "disk completion interrupt" at the specified simulated time). */
/* Based on the requestdesc pointed to by "curr->buf" (below), the */
/* system-level simulation should be able to determine which request */
/* completed. (A ptr to the system-level simulator's request structure */
/* is a reasonable use of "curr->buf".) */
#define SYNTHIO
static void disksim_interface_io_done_notify (ioreq_event *curr)
{
/* Added may remove Later */
#ifndef SYNTHIO
Request *req = (Request *) curr->buf;
syssim_report_completion (MS_TO_SYSSIMTIME(simtime), req);
#else
Request req;
req.last_seek = disk_last_seektime;
req.last_latency = disk_last_latency;
req.last_cylno = disk_last_cylno;
req.last_angle = disk_last_angle;
req.blkno = curr->blkno;
req.background = 0;
req.devno = curr->devno;
req.sectorcount = curr->bcount;
req.start = curr->time;
/* End may Remove Later*/
syssim_report_completion (MS_TO_SYSSIMTIME(simtime), &req);
#endif
}
/* called once at simulation initialization time */
struct disksim *
disksim_interface_initialize (void *addr,
int len,
const char *pfile,
const char *ofile)
{
return(disksim_interface_initialize_latency(addr,
len,
pfile,
ofile,
0, // latency_weight
NULL, // paramval
NULL, // paramname
0, // synthio
NULL)); // sched_alg
}
struct disksim *
disksim_interface_initialize_latency (void *addr,
int len,
const char *pfile,
const char *ofile,
int latency_weight,
char *paramval,
char *paramname,
int synthio,
char *sched_alg)
{
const char *argv[25];
int argc = 6;
// fprintf (stder, "disksim_initialize\n");
disksim = disksim_initialize_disksim_structure (addr, len);
if(latency_weight){
// iodriver_param_override(paramname,paramval,-1,-1);
argv[argc++] = "driver*";
argv[argc++] = paramname;
argv[argc++] = paramval;
/* note: these parameter names must match those from
* modules/disksim_ioqueue_param.h, etc */
argv[argc++] = "driver*";
argv[argc++] = "Scheduler:Scheduling policy";
argv[argc++] = sched_alg;
argv[argc++] = "driver*";
argv[argc++] = "Scheduler:Scheduling priority scheme";
argv[argc++] = sched_alg;
argv[argc++] = "driver*";
argv[argc++] = "Scheduler:Timeout scheduling";
argv[argc++] = sched_alg;
}
argv[0] = "disksim";
argv[1] = pfile;
argv[2] = ofile;
argv[3] = "external";
argv[4] = "0";
if(synthio == 1){
argv[5] = "1";
}else{
argv[5] = "0";
}
disksim_setup_disksim (argc, (char **)argv);
/* Note that this call must be redone anytime a disksim checkpoint is */
/* restored -- this prevents old function addresses from polluting */
/* the restored execution... */
disksim_set_external_io_done_notify (disksim_interface_io_done_notify);
// fprintf (stder, "disksim_initialize done\n");
return (disksim);
}
/* called once at simulation shutdown time */
void disksim_interface_shutdown (struct disksim *disksim_in, SysTime syssimtime)
{
double curtime = SYSSIMTIME_TO_MS(syssimtime);
disksim = disksim_in;
// fprintf (stderr, "disksim_shutdown\n");
if ((curtime + 0.0001) < simtime) {
fprintf (stderr, "external time is ahead of disksim time: %f > %f\n", curtime, simtime);
exit(1);
}
simtime = curtime;
disksim_cleanup_and_printstats ();
// fprintf (stderr, "disksim_shutdown done\n");
}
/* Prints the current disksim statistics. This call does not reset the */
/* statistics, so the simulation can continue to run and calculate running */
/* totals. "syssimtime" should be the current simulated time of the */
/* system-level simulation. */
void disksim_interface_dump_stats (struct disksim *disksim_in, SysTime syssimtime)
{
double curtime = SYSSIMTIME_TO_MS(syssimtime);
disksim = disksim_in;
// fprintf (stderr, "disksim_dump_stats\n");
if ((disksim->intq) && (disksim->intq->time < curtime) && ((disksim->intq->time + 0.0001) >= curtime)) {
curtime = disksim->intq->time;
}
if (((curtime + 0.0001) < simtime) || ((disksim->intq) && (disksim->intq->time < curtime))) {
fprintf (stderr, "external time is mismatched with disksim time: %f vs. %f (%f)\n", curtime, simtime, ((disksim->intq) ? disksim->intq->time : 0.0));
exit (0);
}
simtime = curtime;
disksim_cleanstats();
disksim_printstats();
// fprintf (stderr, "disksim_dump_stats done\n");
}
static int event_count = 0;
/* This is the callback for handling internal disksim events while running */
/* as a slave of a system-level simulation. "syssimtime" should be the */
/* current simulated time of the system-level simulation. */
void disksim_interface_internal_event (void *disksim_in, SysTime syssimtime)
{
double curtime = SYSSIMTIME_TO_MS(syssimtime);
disksim = disksim_in;
// fprintf (stderr, "disksim_internal_event\n");
/* if next event time is less than now, error. Also, if no event is */
/* ready to be handled, then this is a spurious callback -- it should */
/* not be possible with the descheduling below (allow it if it is not */
/* possible to deschedule. */
if (disksim->intq != NULL && (disksim->intq->time + 0.0001) < curtime) {
fprintf (stderr, "external time is ahead of disksim time: %f > %f\n", curtime, disksim->intq->time);
exit (0);
}
// fprintf(stderr, "disksim_internal_event: intq->time=%f curtime=%f\n", disksim->intq->time, curtime);
/* while next event time is same as now, handle next event */
if(disksim->intq != NULL){
ASSERT (disksim->intq->time >= simtime);
}
while ((disksim->intq != NULL)
&& (disksim->intq->time <= (curtime + 0.0001)))
{
// fprintf (stderr, "handling internal event: type %d\n", disksim->intq->type);
disksim_simulate_event(event_count++);
}
if (disksim->intq != NULL) {
/* Note: this could be a dangerous operation when employing checkpoint */
/* and, specifically, restore -- functions move around when programs */
/* are changed and recompiled... */
syssim_schedule_callback (disksim_interface_internal_event, MS_TO_SYSSIMTIME(disksim->intq->time));
}
// fprintf (stderr, "disksim_internal_event done\n");
}
/* This function should be called by the system-level simulation when */
/* it wants to issue a request into disksim. "syssimtime" should be the */
/* system-level simulation time at which the request should "arrive". */
/* "requestdesc" is the system-level simulator's description of the */
/* request (device number, block number, length, etc.). */
void disksim_interface_request_arrive (struct disksim *disksim_in,
SysTime syssimtime,
Request *requestdesc)
{
double curtime = SYSSIMTIME_TO_MS(syssimtime);
ioreq_event *new;
disksim = disksim_in;
new = (ioreq_event *) getfromextraq();
assert (new != NULL);
new->type = IO_REQUEST_ARRIVE;
new->time = curtime;
new->busno = 0;
new->devno = requestdesc->devno;
new->blkno = requestdesc->blkno;
new->flags = isread(requestdesc) ? READ : WRITE;
if(do_free_blocks == 0 && requestdesc->bytecount != 0){
new->bcount = requestdesc->bytecount / 512;
}else{
new->bcount = requestdesc->sectorcount;
}
/* added for free blocks */
if(1 == requestdesc->background){
}else{
new->flags |= TIME_CRITICAL;
}
/* End Add for free blocks */
new->cause = 0;
new->opid = 0;
new->buf = requestdesc;
io_map_trace_request (new);
/* issue it into simulator */
if (disksim->intq) {
syssim_deschedule_callback (disksim_interface_internal_event);
}
addtointq ((event *)new);
/* while next event time is same as now, handle next event */
while ((disksim->intq != NULL)
&& (disksim->intq->time <= (curtime + 0.0001)))
{
disksim_simulate_event (event_count++);
}
if (disksim->intq) {
/* Note: this could be a dangerous operation when employing checkpoint */
/* and, specifically, restore -- functions move around when programs */
/* are changed and recompiled... */
syssim_schedule_callback (disksim_interface_internal_event, MS_TO_SYSSIMTIME(disksim->intq->time));
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ZhouHeyu/CombAndCFTL.git
git@gitee.com:ZhouHeyu/CombAndCFTL.git
ZhouHeyu
CombAndCFTL
CombAndCFTL
master

搜索帮助