资源简介
CSAPP上的存储山 可以在linux运行 但是不知道怎么弄成图形的
只能在终端界面显示一堆数字
tar vxf mountain tar
cd mountain
make
mountain
代码片段和文件信息
#include
#include
#include
#include
#include “clock.h“
/* Routines for using cycle counter */
/* Detect whether running on Alpha */
#ifdef __alpha
#define IS_ALPHA 1
#else
#define IS_ALPHA 0
#endif
/* Detect whether running on x86 */
#ifdef __i386__
#define IS_x86 1
#else
#define IS_x86 0
#endif
/* Keep track of most recent reading of cycle counter */
static unsigned cyc_hi = 0;
static unsigned cyc_lo = 0;
#if IS_ALPHA
/* Use Alpha cycle timer to compute cycles. Then use
measured clock speed to compute seconds
*/
/*
* counterRoutine is an array of Alpha instructions to access
* the Alpha‘s processor cycle counter. It uses the rpcc
* instruction to access the counter. This 64 bit register is
* divided into two parts. The lower 32 bits are the cycles
* used by the current process. The upper 32 bits are wall
* clock cycles. These instructions read the counter and
* convert the lower 32 bits into an unsigned int - this is the
* user space counter value.
* NOTE: The counter has a very limited time span. With a
* 450MhZ clock the counter can time things for about 9
* seconds. */
static unsigned int counterRoutine[] =
{
0x601fc000u
0x401f0000u
0x6bfa8001u
};
/* Cast the above instructions into a function. */
static unsigned int (*counter)(void)= (void *)counterRoutine;
void start_counter()
{
/* Get cycle counter */
cyc_hi = 0;
cyc_lo = counter();
}
double get_counter()
{
unsigned ncyc_hi ncyc_lo;
unsigned hi lo borrow;
double result;
ncyc_lo = counter();
ncyc_hi = 0;
lo = ncyc_lo - cyc_lo;
borrow = lo > ncyc_lo;
hi = ncyc_hi - cyc_hi - borrow;
result = (double) hi * (1 << 30) * 4 + lo;
if (result < 0) {
fprintf(stderr “Error: Cycle counter returning negative value: %.0f\n“ result);
}
return result;
}
#endif /* Alpha */
#if IS_x86
void access_counter(unsigned *hi unsigned *lo)
{
/* Get cycle counter */
asm(“rdtsc; movl %%edx%0; movl %%eax%1“
: “=r“ (*hi) “=r“ (*lo)
: /* No input */
: “%edx“ “%eax“);
}
void start_counter()
{
access_counter(&cyc_hi &cyc_lo);
}
double get_counter()
{
unsigned ncyc_hi ncyc_lo;
unsigned hi lo borrow;
double result;
/* Get cycle counter */
access_counter(&ncyc_hi &ncyc_lo);
/* Do double precision subtraction */
lo = ncyc_lo - cyc_lo;
borrow = lo > ncyc_lo;
hi = ncyc_hi - cyc_hi - borrow;
result = (double) hi * (1 << 30) * 4 + lo;
if (result < 0) {
fprintf(stderr “Error: Cycle counter returning negative value: %.0f\n“ result);
}
return result;
}
#endif /* x86 */
double ovhd()
{
/* Do it twice to eliminate cache effects */
int i;
double result;
for (i = 0; i < 2; i++) {
start_counter();
result = get_counter();
}
return result;
}
/* Determine clock rate by measuring cycles
elapsed while sleeping for sleeptime seconds */
double mhz_full(int verbose int sleeptime)
{
double rate;
start_counter();
sleep(s
相关资源
- csapp203483
- CSAPP bomblab实验报告
- csapp第三版蓝光版
- CSAPP课件-中科大
- 深入理解计算机系统 (第三版) 英文
- Mountaintop网上资料及个人学习文档
- 深入理解计算机系统-Computer Systems A
- CSAPP
- CSAPP 英文版
- 深入理解计算机系统实验指导及答案
- Computer.Systems.A.Programmers.Perspective.3rd
- CSAPP: malloc lab 文档及解答
- CSAPP_buflab 解答详细过程(内含源程序
- CSAPP笔记PDF
- csapp深入理解计算机系统第三版 实验
- csapp的shlab-handout
- csapp英文第三版官方正式版非扫锚版
- CSAPP 英文 第3版 文字版
- 湖南大学CSAPP课程实验LAB1
- 哈工大csapp课件.rar
- CSAPP性能优化实验
- csapp lab6 malloc lab 96pt
- ics lab8 perflab性能优化实验
- CSAPP 六个重要实验 lab4 实验指导书
- csapp proxylab
- csapp lab archlab 解答
- 深入理解计算机系统原书第三版中文
- CSAPP lab:Code Optimization 代码优化实验
- 强化学习实验 小车爬山例程
- 哈工大计算机系统实验实验八
评论
共有 条评论