mdriver.c 33 KB
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
/*
 * mdriver.c - Autolab version of the CS:APP Malloc Lab Driver
 *
 * Uses a collection of trace files to tests a malloc/free
 * implementation in mm.c.
 *
 * Copyright (c) 2004, R. Bryant and D. O'Hallaron, All rights reserved.
 * May not be used, modified, or copied without permission.
 */
#include <assert.h>
#include <errno.h>
#include <float.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>

#ifndef __GCC__
#  define __attribute__(args)
#endif

#include "../include/mm.h"
#include "../include/memlib.h"
#include "fsecs.h"
#include "config.h"

/**********************
 * Constants and macros
 **********************/

/* Misc */
#define MAXLINE     1024 /* max string size */
#define HDRLINES       4 /* number of header lines in a trace file */
#define LINENUM(i) (i+5) /* cnvt trace request nums to linenums (origin 1) */

/* Returns true if p is ALIGNMENT-byte aligned */
#define IS_ALIGNED(p)  ((((unsigned long)(p)) % ALIGNMENT) == 0)

/******************************
 * The key compound data types
 *****************************/

/*
 * There are two different, easily-confusable concepts:
 * - opnum: which line in the file.
 * - index: the block number ; corresponds to something allocated.
 * Remember that index (-1) is the null pointer.
 */

/* Records the extent of each block's payload */
typedef struct range_t {
	char *lo;              /* low payload address */
	char *hi;              /* high payload address */
	struct range_t *next;  /* next list element */
	int index;             /* same index as free; for debugging */
} range_t;

/* Characterizes a single trace operation (allocator request) */
typedef struct {
	enum { ALLOC, FREE, REALLOC } type; /* type of request */
	int index;                        /* index for free() to use later */
	size_t size;                      /* byte size of alloc/realloc request */
} traceop_t;

/* Holds the information for one trace file*/
typedef struct {
	char filename[MAXLINE];
	int ignore_ranges;   /* don't check ranges (i.e. this is too big) */
	int num_ids;         /* number of alloc/realloc ids */
	int num_ops;         /* number of distinct requests */
	int weight;          /* weight for this trace (unused) */
	traceop_t *ops;      /* array of requests */
	char **blocks;       /* array of ptrs returned by malloc/realloc... */
	size_t *block_sizes; /* ... and a corresponding array of payload sizes */
	int *block_rand_base;/* index into random_data, if debug is on */
} trace_t;

/*
 * Holds the params to the xxx_speed functions, which are timed by fcyc.
 * This struct is necessary because fcyc accepts only a pointer array
 * as input.
 */
typedef struct {
	trace_t *trace;
	range_t *ranges;
} speed_t;

/* Summarizes the important stats for some malloc function on some trace */
typedef struct {
	/* set in read_trace */
	char filename[MAXLINE];
	int weight;
	double ops;      /* number of ops (malloc/free/realloc) in the trace */

	/* run-time stats defined for both libc and student */
	int valid;       /* was the trace processed correctly by the allocator? */
	double secs;     /* number of secs needed to run the trace */

	/* defined only for the student malloc package */
	double util;     /* space utilization for this trace (always 0 for libc) */

	/* Note: secs and util are only defined if valid is true */
} stats_t;


/********************
 * For debugging.  If debug-mode is on, then we have each block start
 * at a "random" place (a hash of the index), and copy random data
 * into it.  With DBG_CHEAP, we check that the data survived when we
 * realloc and when we free.  With DBG_EXPENSIVE, we check every block
 * every operation.
 * randint_t should be a byte, in case students return unaligned memory.
 *******************/
#define RANDOM_DATA_LEN (1<<16)
typedef unsigned char randint_t;
static const char randint_t_name[] = "byte";
static randint_t random_data[RANDOM_DATA_LEN];


/********************
 * Global variables
 *******************/

static enum { DBG_NONE, DBG_CHEAP, DBG_EXPENSIVE } debug_mode = DBG_CHEAP;

int verbose = 2;        /* global flag for verbose output */
static int errors = 0;  /* number of errs found when running student malloc */
int onetime_flag = 0;

/* Directory where default tracefiles are found */
static char tracedir[MAXLINE] = TRACEDIR;

/* The filenames of the default tracefiles */
static char *default_tracefiles[] = {
	DEFAULT_TRACEFILES, NULL
};

/*********************
 * Function prototypes
 *********************/

/* these functions manipulate range lists */
static int add_range(range_t **ranges, char *lo, int size,
		const trace_t *trace, int opnum, int index);
static void remove_range(range_t **ranges, char *lo);
static void clear_ranges(range_t **ranges);

/* These functions implement the debugging code */
static void init_random_data(void);
static void check_index(const trace_t *trace, int opnum, int index);
static void randomize_block(trace_t *trace, int index);

/* These functions read, allocate, and free storage for traces */
static trace_t *read_trace(stats_t *stats, const char *tracedir,
		const char *filename);
static void reinit_trace(trace_t *trace);
static void free_trace(trace_t *trace);

/* Routines for evaluating the correctness and speed of libc malloc */
static int eval_libc_valid(trace_t *trace);
static void eval_libc_speed(void *ptr);

/* Routines for evaluating correctnes, space utilization, and speed
   of the student's malloc package in mm.c */
static int eval_mm_valid(trace_t *trace, range_t **ranges);
static double eval_mm_util(trace_t *trace, int tracenum);
static void eval_mm_speed(void *ptr);

/* Various helper routines */
static void printresults(int n, stats_t *stats);
static void usage(void);
static void malloc_error(const trace_t *trace, int opnum, const char *fmt, ...)
	__attribute__((format(printf, 3,4)));
static void unix_error(const char *fmt, ...)
	__attribute__((format(printf, 1,2), noreturn));
static void app_error(const char *fmt, ...)
	__attribute__((format(printf, 1,2), noreturn));

/* Run the tests; return the number of tests run (may be less than
   num_tracefiles, if there's a timeout) */
static void run_tests(int num_tracefiles, const char *tracedir,
		char **tracefiles,
		stats_t *mm_stats, range_t *ranges, speed_t *speed_params) {
	volatile int i;

	for (i=0; i < num_tracefiles; i++) {
		trace_t *trace;
		trace = read_trace(&mm_stats[i], tracedir, tracefiles[i]);
		strcpy(mm_stats[i].filename, trace->filename);
		mm_stats[i].ops = trace->num_ops;
		if (verbose > 1)
			printf("Checking mm_malloc for correctness, ");
		mm_stats[i].valid = eval_mm_valid(trace, &ranges);

		if (onetime_flag) {
			free_trace(trace);
			return;
		}
		if (mm_stats[i].valid) {
			if (verbose > 1)
				printf("efficiency, ");
			mm_stats[i].util = eval_mm_util(trace, i);
			speed_params->trace = trace;
			speed_params->ranges = ranges;
			if (verbose > 1)
				printf("and performance.\n");
			mm_stats[i].secs = fsecs(eval_mm_speed, speed_params);
		}
		free_trace(trace);
	}
}

/**************
 * Main routine
 **************/
int main(int argc, char **argv)
{
	int i;
	char c;
	char **tracefiles = NULL;  /* null-terminated array of trace file names */
	int num_tracefiles = 0;    /* the number of traces in that array */

	range_t *ranges = NULL;    /* keeps track of block extents for one trace */
	stats_t *libc_stats = NULL;/* libc stats for each trace */
	stats_t *mm_stats = NULL;  /* mm (i.e. student) stats for each trace */
	speed_t speed_params;      /* input parameters to the xx_speed routines */

	int run_libc = 0;     /* If set, run libc malloc (set by -l) */

	/* temporaries used to compute the performance index */
	double secs, ops, util, avg_mm_util, avg_mm_throughput = 0, p1, p2, perfindex;
	double weight = 0;
	int numcorrect;


	setbuf(stdout, 0);
	setbuf(stderr, 0);

	/*
	 * Read and interpret the command line arguments
	 */
	while ((c = getopt(argc, argv, "d:f:c:hlD")) != EOF) {
		switch (c) {

			case 'f': /* Use one specific trace file only (relative to curr dir) */
				num_tracefiles = 1;
				if ((tracefiles = realloc(tracefiles, 2 * sizeof(char *))) == NULL)
					unix_error("ERROR: realloc failed in main");
				strcpy(tracedir, "./");
				tracefiles[0] = strdup(optarg);
				tracefiles[1] = NULL;
				break;

			case 'c': /* Use one specific trace file and run only once */
				num_tracefiles = 1;
				onetime_flag = 1;
				if ((tracefiles = realloc(tracefiles, 2 * sizeof(char *))) == NULL)
					unix_error("ERROR: realloc failed in main");
				strcpy(tracedir, "./");
				tracefiles[0] = strdup(optarg);
				tracefiles[1] = NULL;
				break;

			case 'l': /* Run libc malloc */
				run_libc = 1;
				break;

			case 'd':
				debug_mode = atoi(optarg);
				break;

			case 'D':
				debug_mode = DBG_EXPENSIVE;
				break;

			case 'h': /* Print this message */
				usage();
				exit(0);

			default:
				usage();
				exit(1);
		}
	}

	if (tracefiles == NULL) {
		tracefiles = default_tracefiles;
		num_tracefiles = sizeof(default_tracefiles) / sizeof(char *) - 1;
		printf("Using default tracefiles in %s\n", tracedir);
	}

	if(debug_mode != DBG_NONE) {
		init_random_data();
	}

	/* Initialize the timing package */
	init_fsecs();

	/*
	 * Optionally run and evaluate the libc malloc package
	 */
	if (run_libc) {
		if (verbose > 1)
			printf("\nTesting libc malloc\n");

		/* Allocate libc stats array, with one stats_t struct per tracefile */
		libc_stats = (stats_t *)calloc(num_tracefiles, sizeof(stats_t));
		if (libc_stats == NULL)
			unix_error("libc_stats calloc in main failed");

		/* Evaluate the libc malloc package using the K-best scheme */
		for (i=0; i < num_tracefiles; i++) {
			trace_t *trace = read_trace(&libc_stats[i], tracedir, tracefiles[i]);

			if (verbose > 1)
				printf("Checking libc malloc for correctness, ");
			libc_stats[i].valid = eval_libc_valid(trace);
			if (libc_stats[i].valid) {
				speed_params.trace = trace;
				if (verbose > 1)
					printf("and performance.\n");
				libc_stats[i].secs = fsecs(eval_libc_speed, &speed_params);
			}
			free_trace(trace);
		}

		/* Display the libc results in a compact table */
		if (verbose) {
			printf("\nResults for libc malloc:\n");
			printresults(num_tracefiles, libc_stats);
		}
	}

	/*
	 * Always run and evaluate the student's mm package
	 */
	if (verbose > 1)
		printf("\nTesting mm malloc\n");

	/* Allocate the mm stats array, with one stats_t struct per tracefile */
	mm_stats = (stats_t *)calloc(num_tracefiles, sizeof(stats_t));
	if (mm_stats == NULL)
		unix_error("mm_stats calloc in main failed");

	/* Initialize the simulated memory system in memlib.c */
	mem_init();

	run_tests(num_tracefiles, tracedir, tracefiles, mm_stats,
			ranges, &speed_params);


	/* Display the mm results in a compact table */
	if (verbose) {
		if (onetime_flag) {
			printf("\n\ncorrectness check finished, by running tracefile \"%s\".\n", tracefiles[num_tracefiles-1]);
			if (mm_stats[num_tracefiles-1].valid) {
				printf(" => correct.\n\n");
			} else {
				printf(" => incorrect.\n\n");
			}
		} else {
			printf("\nResults for mm malloc:\n");
			printresults(num_tracefiles, mm_stats);
			printf("\n");
		}
	}

	/*
	 * Accumulate the aggregate statistics for the student's mm package
	 */
	secs = 0;
	ops = 0;
	util = 0;
	numcorrect = 0;
	for (i=0; i < num_tracefiles; i++) {
		secs += mm_stats[i].secs * mm_stats[i].weight;
		ops += mm_stats[i].ops * mm_stats[i].weight;
		util += mm_stats[i].util * mm_stats[i].weight;
		weight += mm_stats[i].weight;
		if (mm_stats[i].valid)
			numcorrect++;
	}
	if(weight == 0)
		avg_mm_util = 0;
	else
		avg_mm_util = util/weight;

#ifdef STAGE0
#define UTIL_WEIGHT 1.0
#endif

#ifdef STAGE1
#define UTIL_WEIGHT 0.6
#endif


	/*
	 * Compute and print the performance index
	 */
	if (errors == 0) {
		if(weight == 0) {
			avg_mm_throughput = 0;
		}
		else {
			avg_mm_throughput = (secs == 0) ? 0 : ops/secs;
		}
		if (avg_mm_util < MIN_SPACE) {
			p1 = 0.0;
		} else if (avg_mm_util > MAX_SPACE) {
			p1 = UTIL_WEIGHT;
		} else {
			p1 = (avg_mm_util - MIN_SPACE) / (MAX_SPACE - MIN_SPACE) * UTIL_WEIGHT;
		}

		if (avg_mm_throughput < MIN_SPEED) {
			p2 = 0.0;
		} else if (avg_mm_throughput > MAX_SPEED) {
			p2 = 1.0 - UTIL_WEIGHT;
		} else {
			p2 = (avg_mm_throughput - MIN_SPEED) / (MAX_SPEED - MIN_SPEED) * (1.0 - UTIL_WEIGHT);
		}

		perfindex = (p1 + p2)*100.0;
		printf("Perf index = %.0f (util) + %.0f (thru) = %.0f/100\n",
				p1*100,
				p2*100,
				perfindex);

#ifdef STAGE0
        const double BUMP = 65;
		double perfscore = perfindex - BUMP;
		if (perfscore <= 0) {
		    perfscore = 0;
		}
		printf("Score = %.0f/30\n", 30.0*(perfscore)/(100.0 - BUMP));
#endif

#ifdef STAGE1
        const double BUMP = 60;
		double perfscore = perfindex - BUMP;
		if (perfscore <= 0) {
		    perfscore = 0;
		}
		printf("Score = %.0f/60\n", 60.0*(perfscore)/(100.0 - BUMP));
#endif

	}
	else { /* There were errors */
		perfindex = 0.0;
		printf("Terminated with %d errors\n", errors);
        printf("Score = 0\n");
	}

	return errors;
}


/*****************************************************************
 * The following routines manipulate the range list, which keeps
 * track of the extent of every allocated block payload. We use the
 * range list to detect any overlapping allocated blocks.
 ****************************************************************/

/*
 * add_range - As directed by request opnum in trace tracenum,
 *     we've just called the student's mm_malloc to allocate a block of
 *     size bytes at addr lo. After checking the block for correctness,
 *     we create a range struct for this block and add it to the range list.
 */
static int add_range(range_t **ranges, char *lo, int size,
		const trace_t *trace, int opnum, int index)
{
	char *hi = lo + size - 1;
	range_t *p;

	assert(size > 0);

	/* Payload addresses must be ALIGNMENT-byte aligned */
	if (!IS_ALIGNED(lo)) {
		malloc_error(trace, opnum,
				"Payload address (%p) not aligned to %d bytes", lo, ALIGNMENT);
		return 0;
	}

	/* The payload must lie within the extent of the heap */
	if ((lo < (char *)mem_heap_lo()) || (lo > (char *)mem_heap_hi()) ||
			(hi < (char *)mem_heap_lo()) || (hi > (char *)mem_heap_hi())) {
		malloc_error(trace, opnum,
				"Payload (%p:%p) lies outside heap (%p:%p)",
				lo, hi, mem_heap_lo(), mem_heap_hi());
		return 0;
	}

	/* If we can't afford the linear-time loop, we check less thoroughly and
	   just assume the overlap will be caught by writing random bits. */
	if(trace->ignore_ranges || debug_mode == DBG_NONE) return 1;


	/* The payload must not overlap any other payloads */
	for (p = *ranges;  p != NULL;  p = p->next) {
		if ((lo >= p->lo && lo <= p-> hi) ||
				(hi >= p->lo && hi <= p->hi)) {
			malloc_error(trace, opnum,
					"Payload (%p:%p) overlaps another payload (%p:%p)\n",
					lo, hi, p->lo, p->hi);
			return 0;
		}
	}

	/*
	 * Everything looks OK, so remember the extent of this block
	 * by creating a range struct and adding it the range list.
	 */
	if ((p = (range_t *)malloc(sizeof(range_t))) == NULL)
		unix_error("malloc error in add_range");
	p->next = *ranges;
	p->lo = lo;
	p->hi = hi;
	p->index = index;
	*ranges = p;

	return 1;
}

/*
 * remove_range - Free the range record of block whose payload starts at lo
 */
static void remove_range(range_t **ranges, char *lo)
{
	range_t *p;
	range_t **prevpp = ranges;

	for (p = *ranges;  p != NULL; p = p->next) {
		if (p->lo == lo) {
			*prevpp = p->next;
			free(p);
			break;
		}
		prevpp = &(p->next);
	}
}

/*
 * clear_ranges - free all of the range records for a trace
 */
static void clear_ranges(range_t **ranges)
{
	range_t *p;
	range_t *pnext;

	for (p = *ranges;  p != NULL;  p = pnext) {
		pnext = p->next;
		free(p);
	}
	*ranges = NULL;
}

/**********************************************
 * The following routines handle the random data used for
 * checking memory access.
 *********************************************/

static void init_random_data(void) {
	int len;

	if(debug_mode == DBG_NONE) return;

	for(len = 0; len < RANDOM_DATA_LEN; ++len) {
		random_data[len] = random();
	}
}

static void randomize_block(trace_t *traces, int index) {
	size_t size;
	size_t i;
	randint_t *block;
	int base;

	if(debug_mode == DBG_NONE) return;

	traces->block_rand_base[index] = random();

	block = (randint_t*)traces->blocks[index];
	size = traces->block_sizes[index] / sizeof(*block);
	base = traces->block_rand_base[index];

	for(i = 0; i < size; i++) {
		block[i] = random_data[(base + i) % RANDOM_DATA_LEN];
	}
}

static void check_index(const trace_t *trace, int opnum, int index) {
	size_t size;
	size_t i;
	randint_t *block;
	int base;
	int ngarbled = 0;
	int firstgarbled = -1;

	if(index < 0) return; /* we're doing free(NULL) */
	if(debug_mode == DBG_NONE) return;

	block = (randint_t*)trace->blocks[index];
	size = trace->block_sizes[index] / sizeof(*block);
	base = trace->block_rand_base[index];

	for(i = 0; i < size; i++) {
		if(block[i] != random_data[(base + i) % RANDOM_DATA_LEN]) {
			if(firstgarbled == -1) firstgarbled = i;
			ngarbled++;
		}
	}
	if(ngarbled != 0) {
		malloc_error(trace, opnum, "block %d has %d garbled %s%s, "
				"starting at byte %d", index, ngarbled, randint_t_name,
				ngarbled > 1 ? "s" : "", sizeof(randint_t) * firstgarbled);
	}
}

/**********************************************
 * The following routines manipulate tracefiles
 *********************************************/

/*
 * read_trace - read a trace file and store it in memory
 */
static trace_t *read_trace(stats_t *stats, const char *tracedir,
		const char *filename)
{
	FILE *tracefile;
	trace_t *trace;
	char type[MAXLINE];
	int index, size;
	int max_index = 0;
	int op_index;

	if (verbose > 1)
		printf("Reading tracefile: %s\n", filename);

	/* Allocate the trace record */
	if ((trace = (trace_t *) malloc(sizeof(trace_t))) == NULL)
		unix_error("malloc 1 failed in read_trace");

	/* Read the trace file header */
	strcpy(trace->filename, tracedir);
	strcat(trace->filename, filename);
	if ((tracefile = fopen(trace->filename, "r")) == NULL) {
		unix_error("Could not open %s in read_trace", trace->filename);
	}
	assert(fscanf(tracefile, "%d", &trace->weight) != EOF);
	assert(fscanf(tracefile, "%d", &trace->num_ids) != EOF);
	assert(fscanf(tracefile, "%d", &trace->num_ops) != EOF);
	assert(fscanf(tracefile, "%d", &trace->ignore_ranges) != EOF);

	if(trace->weight != 0 && trace->weight != 1) {
		app_error("%s: weight can only be zero or one", trace->filename);
	}
	if(trace->ignore_ranges != 0 && trace->ignore_ranges != 1) {
		app_error("%s: ignore-ranges can only be zero or one", trace->filename);
	}

	/* We'll store each request line in the trace in this array */
	if ((trace->ops =
				(traceop_t *)malloc(trace->num_ops * sizeof(traceop_t))) == NULL)
		unix_error("malloc 2 failed in read_trace");

	/* We'll keep an array of pointers to the allocated blocks here... */
	if ((trace->blocks =
				(char **)calloc(trace->num_ids, sizeof(char *))) == NULL)
		unix_error("malloc 3 failed in read_trace");

	/* ... along with the corresponding byte sizes of each block */
	if ((trace->block_sizes =
				(size_t *)calloc(trace->num_ids,  sizeof(size_t))) == NULL)
		unix_error("malloc 4 failed in read_trace");

	/* and, if we're debugging, the offset into the random data */
	if ((trace->block_rand_base =
				calloc(trace->num_ids, sizeof(*trace->block_rand_base))) == NULL)
		unix_error("malloc 5 failed in read_trace");


	/* read every request line in the trace file */
	index = 0;
	op_index = 0;
	while (fscanf(tracefile, "%s", type) != EOF) {
		switch(type[0]) {
			case 'a':
				assert(fscanf(tracefile, "%u %u", &index, &size) != EOF);
				trace->ops[op_index].type = ALLOC;
				trace->ops[op_index].index = index;
				trace->ops[op_index].size = size;
				max_index = (index > max_index) ? index : max_index;
				break;
			case 'r':
				assert(fscanf(tracefile, "%u %u", &index, &size) != EOF);
				trace->ops[op_index].type = REALLOC;
				trace->ops[op_index].index = index;
				trace->ops[op_index].size = size;
				max_index = (index > max_index) ? index : max_index;
				break;
			case 'f':
				assert(fscanf(tracefile, "%ud", &index) != EOF);
				trace->ops[op_index].type = FREE;
				trace->ops[op_index].index = index;
				break;
			default:
				app_error("Bogus type character (%c) in tracefile %s\n",
						type[0], trace->filename);
		}
		op_index++;
		if(op_index == trace->num_ops) break;
	}
	fclose(tracefile);
	assert(max_index == trace->num_ids - 1);
	assert(trace->num_ops == op_index);

	/* fill in the stats */
	strcpy(stats->filename, trace->filename);
	stats->weight = trace->weight;
	stats->ops = trace->num_ops;

	return trace;
}

/*
 * reinit_trace - get the trace ready for another run.
 */
static void reinit_trace(trace_t *trace)
{
	memset(trace->blocks, 0, trace->num_ids * sizeof(*trace->blocks));
	memset(trace->block_sizes, 0, trace->num_ids * sizeof(*trace->block_sizes));
	/* block_rand_base is unused if size is zero */
}

/*
 * free_trace - Free the trace record and the four arrays it points
 *              to, all of which were allocated in read_trace().
 */
static void free_trace(trace_t *trace)
{
	free(trace->ops);         /* free the three arrays... */
	free(trace->blocks);
	free(trace->block_sizes);
	free(trace->block_rand_base);
	free(trace);              /* and the trace record itself... */
}

/**********************************************************************
 * The following functions evaluate the correctness, space utilization,
 * and throughput of the libc and mm malloc packages.
 **********************************************************************/

/*
 * eval_mm_valid - Check the mm malloc package for correctness
 */
static int eval_mm_valid(trace_t *trace, range_t **ranges)
{
	int i;
	int index;
	size_t size;
	char *newp;
	char *oldp;
	char *p;

	/* Reset the heap and free any records in the range list */
	mem_reset_brk();
	clear_ranges(ranges);
	reinit_trace(trace);

	/* Call the mm package's init function */
	if (!mm_init()) {
		malloc_error(trace, 0, "mm_init failed.");
		return 0;
	}

	/* Interpret each operation in the trace in order */
	for (i = 0;  i < trace->num_ops;  i++) {
		index = trace->ops[i].index;
		size = trace->ops[i].size;

		if(debug_mode == DBG_EXPENSIVE) {
			range_t *r;

			/* Let the students check their own heap */
			mm_checkheap();

			/* Now check that all our allocated blocks have the right data */
			r = *ranges;
			while(r) {
				check_index(trace, i, r->index);
				r = r->next;
			}
		}

		switch (trace->ops[i].type) {

			case ALLOC: /* mm_malloc */

				/* Call the student's malloc */
				if ((p = mm_malloc(size)) == NULL) {
					malloc_error(trace, i, "mm_malloc failed.");
					return 0;
				}

				/*
				 * Test the range of the new block for correctness and add it
				 * to the range list if OK. The block must be  be aligned properly,
				 * and must not overlap any currently allocated block.
				 */
				if (add_range(ranges, p, size, trace, i, index) == 0)
					return 0;

				/* Remember region */
				trace->blocks[index] = p;
				trace->block_sizes[index] = size;

				/* Set to random data, for debugging. */
				randomize_block(trace, index);
				break;

			case REALLOC: /* mm_realloc */
				check_index(trace, i, index);

				/* Call the student's realloc */
				oldp = trace->blocks[index];
				newp = mm_realloc(oldp, size);
				if( (newp == NULL) && (size != 0) ) {
					malloc_error(trace, i, "mm_realloc failed.");
					return 0;
				}
				if( (newp != NULL) && (size == 0) ) {
					malloc_error(trace, i, "mm_realloc with size 0 returned "
							"non-NULL.");
					return 0;
				}


				/* Remove the old region from the range list */
				remove_range(ranges, oldp);

				/* Check new block for correctness and add it to range list */
				if (size > 0) {
					if(add_range(ranges, newp, size, trace, i, index) == 0)
						return 0;
				}


				/* Move the region from where it was.
				 * Check up to min(size, oldsize) for correct copying. */
				trace->blocks[index] = newp;
				if(size < trace->block_sizes[index]) {
					trace->block_sizes[index] = size;
				}
				check_index(trace, i, index);
				trace->block_sizes[index] = size;

				/* Set to random data, for debugging. */
				randomize_block(trace, index);
				break;

			case FREE: /* mm_free */
				check_index(trace, i, index);

				/* Remove region from list and call student's free function */
				if(index == -1) {
					p = 0;
				} else {
					p = trace->blocks[index];
					remove_range(ranges, p);
				}
				mm_free(p);
				break;

			default:
				app_error("Nonexistent request type in eval_mm_valid");
		}

	}

	/* As far as we know, this is a valid malloc package */
	return 1;
}

/*
 * eval_mm_util - Evaluate the space utilization of the student's package
 *   The idea is to remember the high water mark "hwm" of the heap for
 *   an optimal allocator, i.e., no gaps and no internal fragmentation.
 *   Utilization is the ratio hwm/heapsize, where heapsize is the
 *   size of the heap in bytes after running the student's malloc
 *   package on the trace. Note that our implementation of mem_sbrk()
 *   doesn't allow the students to decrement the brk pointer, so brk
 *   is always the high water mark of the heap.
 *
 *   A higher number is better: 1 is optimal.
 */
static double eval_mm_util(trace_t *trace, int tracenum)
{
	int i;
	int index;
	int size, newsize, oldsize;
	int max_total_size = 0;
	int total_size = 0;
	char *p;
	char *newp, *oldp;

	reinit_trace(trace);

	/* initialize the heap and the mm malloc package */
	mem_reset_brk();
	if (!mm_init()) {
		app_error("trace %d: mm_init failed in eval_mm_util", tracenum);
    }

	for (i = 0;  i < trace->num_ops;  i++) {
		switch (trace->ops[i].type) {

			case ALLOC: /* mm_alloc */
				index = trace->ops[i].index;
				size = trace->ops[i].size;

				if ((p = mm_malloc(size)) == NULL) {
					app_error("trace %d: mm_malloc failed in eval_mm_util",
							tracenum);
				}

				/* Remember region and size */
				trace->blocks[index] = p;
				trace->block_sizes[index] = size;

				total_size += size;
				break;

			case REALLOC: /* mm_realloc */
				index = trace->ops[i].index;
				newsize = trace->ops[i].size;
				oldsize = trace->block_sizes[index];

				oldp = trace->blocks[index];
				if ((newp = mm_realloc(oldp,newsize)) == NULL && newsize != 0) {
					app_error("trace %d: mm_realloc failed in eval_mm_util",
							tracenum);
				}

				/* Remember region and size */
				trace->blocks[index] = newp;
				trace->block_sizes[index] = newsize;

				total_size += (newsize - oldsize);
				break;

			case FREE: /* mm_free */
				index = trace->ops[i].index;
				if(index < 0) {
					size = 0;
					p = 0;
				} else {
					size = trace->block_sizes[index];
					p = trace->blocks[index];
				}

				mm_free(p);

				total_size -= size;
				break;

			default:
				app_error("trace %d: Nonexistent request type in eval_mm_util",
						tracenum);
		}

		/* update the high-water mark */
		max_total_size = (total_size > max_total_size) ?
			total_size : max_total_size;
	}

	//printf("max_total_size = %f\n", (double)max_total_size);
	//printf("mem_heapsize = %f\n", (double)mem_heapsize());

	return ((double)max_total_size / (double)mem_heapsize());
}


/*
 * eval_mm_speed - This is the function that is used by fcyc()
 *    to measure the running time of the mm malloc package.
 */
static void eval_mm_speed(void *ptr)
{
	int i, index, size, newsize;
	char *p, *newp, *oldp, *block;
	trace_t *trace = ((speed_t *)ptr)->trace;
	reinit_trace(trace);

	/* Reset the heap and initialize the mm package */
	mem_reset_brk();
	if (!mm_init()) {
		app_error("mm_init failed in eval_mm_speed");
    }

	/* Interpret each trace request */
	for (i = 0;  i < trace->num_ops;  i++)
		switch (trace->ops[i].type) {

			case ALLOC: /* mm_malloc */
				index = trace->ops[i].index;
				size = trace->ops[i].size;
				if ((p = mm_malloc(size)) == NULL)
					app_error("mm_malloc error in eval_mm_speed");
				trace->blocks[index] = p;
				break;

			case REALLOC: /* mm_realloc */
				index = trace->ops[i].index;
				newsize = trace->ops[i].size;
				oldp = trace->blocks[index];
				if ((newp = mm_realloc(oldp,newsize)) == NULL && newsize != 0)
					app_error("mm_realloc error in eval_mm_speed");
				trace->blocks[index] = newp;
				break;

			case FREE: /* mm_free */
				index = trace->ops[i].index;
				if(index < 0) {
					block = 0;
				} else {
					block = trace->blocks[index];
				}
				mm_free(block);
				break;

			default:
				app_error("Nonexistent request type in eval_mm_speed");
		}
}

/*
 * eval_libc_valid - We run this function to make sure that the
 *    libc malloc can run to completion on the set of traces.
 *    We'll be conservative and terminate if any libc malloc call fails.
 *
 */
static int eval_libc_valid(trace_t *trace)
{
	int i, newsize;
	char *p, *newp, *oldp;

	reinit_trace(trace);

	for (i = 0;  i < trace->num_ops;  i++) {
		switch (trace->ops[i].type) {

			case ALLOC: /* malloc */
				if ((p = malloc(trace->ops[i].size)) == NULL) {
					malloc_error(trace, i, "libc malloc failed");
					unix_error("System message");
				}
				trace->blocks[trace->ops[i].index] = p;
				break;

			case REALLOC: /* realloc */
				newsize = trace->ops[i].size;
				oldp = trace->blocks[trace->ops[i].index];
				if ((newp = realloc(oldp, newsize)) == NULL && newsize != 0) {
					malloc_error(trace, i, "libc realloc failed");
					unix_error("System message");
				}
				trace->blocks[trace->ops[i].index] = newp;
				break;

			case FREE: /* free */
				if(trace->ops[i].index >= 0) {
					free(trace->blocks[trace->ops[i].index]);
				} else {
					free(0);
				}
				break;

			default:
				app_error("invalid operation type  in eval_libc_valid");
		}
	}

	return 1;
}

/*
 * eval_libc_speed - This is the function that is used by fcyc() to
 *    measure the running time of the libc malloc package on the set
 *    of traces.
 */
static void eval_libc_speed(void *ptr)
{
	int i;
	int index, size, newsize;
	char *p, *newp, *oldp, *block;
	trace_t *trace = ((speed_t *)ptr)->trace;

	reinit_trace(trace);

	for (i = 0;  i < trace->num_ops;  i++) {
		switch (trace->ops[i].type) {
			case ALLOC: /* malloc */
				index = trace->ops[i].index;
				size = trace->ops[i].size;
				if ((p = malloc(size)) == NULL)
					unix_error("malloc failed in eval_libc_speed");
				trace->blocks[index] = p;
				break;

			case REALLOC: /* realloc */
				index = trace->ops[i].index;
				newsize = trace->ops[i].size;
				oldp = trace->blocks[index];
				if ((newp = realloc(oldp, newsize)) == NULL && newsize != 0)
					unix_error("realloc failed in eval_libc_speed\n");

				trace->blocks[index] = newp;
				break;

			case FREE: /* free */
				index = trace->ops[i].index;
				if(index >= 0) {
					block = trace->blocks[index];
					free(block);
				} else {
					free(0);
				}
				break;
		}
	}
}

/*************************************
 * Some miscellaneous helper routines
 ************************************/


/*
 * printresults - prints a performance summary for some malloc package
 */
static void printresults(int n, stats_t *stats)
{
	int i;
	/* weighted sums all */
	double sumsecs = 0;
	double sumops  = 0;
	double sumutil = 0;
	int sumweight = 0;

	/* Print the individual results for each trace */
	printf("  %6s%6s %5s%8s%9s  %s\n",
			"valid", "util", "ops", "secs", "Kops", "trace");
	for (i=0; i < n; i++) {
		if (stats[i].valid) {
			printf("%2s%4s %5.0f%%%8.0f%10.6f%6.0f %s\n",
					stats[i].weight != 0 ? "*" : "",
					"yes",
					stats[i].util*100.0,
					stats[i].ops,
					stats[i].secs,
					(stats[i].ops/1e3)/stats[i].secs,
					stats[i].filename);
			sumweight += stats[i].weight;
			sumsecs += stats[i].secs * stats[i].weight;
			sumops += stats[i].ops * stats[i].weight;
			sumutil += stats[i].util * stats[i].weight;
		}
		else {
			printf("%2s%4s %6s%8s%9s%6s %s\n",
					stats[i].weight != 0 ? "*" : "",
					"no",
					"-",
					"-",
					"-",
					"-",
					stats[i].filename);
		}
	}

	/* Print the aggregate results for the set of traces */
	if (errors == 0) {
		if(sumweight == 0) sumweight = 1;

		printf("%2d     %5.0f%%%8.0f%10.6f%6.0f\n",
				sumweight,
				(sumutil/(double)sumweight)*100.0,
				sumops,
				sumsecs,
				(sumsecs==0.0) ? 0 : (sumops/1e3)/sumsecs);
	}
	else {
		printf("       %8s%10s%6s\n",
				"-",
				"-",
				"-");
	}

}

/*
 * app_error - Report an arbitrary application error
 */
void app_error(const char *fmt, ...) {
	va_list ap;
	va_start(ap, fmt);
	vprintf(fmt, ap);
	va_end(ap);
	exit(1);
}

/*
 * unix_error - Report the error and its errno.
 */
void unix_error(const char *fmt, ...) {
	va_list ap;
	va_start(ap, fmt);
	vprintf(fmt, ap);
	printf(": %s\n", strerror(errno));
	va_end(ap);
	exit(1);
}

/*
 * malloc_error - Report an error returned by the mm_malloc package
 */
void malloc_error(const trace_t *trace, int opnum, const char *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);

	errors++;

	printf("ERROR [trace %s, line %d]: ", trace->filename, LINENUM(opnum));
	vprintf(fmt, ap);
	putchar('\n');

	va_end(ap);
}

/*
 * usage - Explain the command line arguments
 */
static void usage(void)
{
	fprintf(stderr,
		"Usage: mdriver [-hlD] [-d <i>] [-t <dir>] [-c <file>] [-f <file>]\n"
		"Options\n"
		"\t-d <i>     Debug: 0 off; 1 default; 2 lots.\n"
		"\t-D         Equivalent to -d2.\n"
		"\t-c <file>  Run trace file <file> once, check for correctness only.\n"
		"\t-t <dir>   Directory to find default traces.\n"
		"\t-h         Print this message.\n"
		"\t-l         Run libc malloc as well.\n"
		"\t-f <file>  Use <file> as the trace file.\n"
	);
}