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
|
/* -*- c-file-style: "GNU" -*- */
/*
* Copyright (C) CNRS, INRIA, Université Bordeaux 1, Télécom SudParis
* See COPYING in top-level directory.
*/
#include <sys/time.h>
#include <semaphore.h>
#include <unistd.h>
#include <time.h>
#include <pthread.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
/* Number of iterations */
#define ITER 10
/* Number of threads */
#define NTH 2
typedef union {
unsigned long long tick;
struct {
unsigned low;
unsigned high;
};
} tick_t;
int fd[2][2];
sem_t thread_ready;
#define TICK_DIFF(t1, t2) \
((t2).tick - (t1).tick)
#define TIME_DIFF(t1, t2) \
((t2.tv_sec - t1.tv_sec) * 1000000 + (t2.tv_usec - t1.tv_usec))
// Debugging part, print out only if debugging level of the system is verbose or more
int _debug = -77;
void debug(char *fmt, ...) {
if (_debug == -77) {
char *buf = getenv("DEBUG_LEVEL");
if (buf == NULL)
_debug = 0;
else
_debug = atoi(buf);
}
if (_debug >= 2) { // debug verbose mode
va_list va;
va_start(va, fmt);
vfprintf(stderr, fmt, va);
va_end(va);
}
}
// end of debugging part
/* Fake computation of usec microseconds */
void compute(int usec) {
struct timeval tv1, tv2;
gettimeofday(&tv1, NULL);
do {
gettimeofday(&tv2, NULL);
} while (TIME_DIFF(tv1, tv2) < usec);
}
void test_malloc() {
int i, j;
char*buffer[ITER];
for (i = 0; i < ITER; i++) {
int alloc_size = (1 + i) * 1024;
debug("\tloop %d/%d: allocating %d bytes\n", i, ITER, alloc_size);
buffer[i] = malloc(alloc_size);
for (j = 0; j < (1 + i) * 1024; j++) {
buffer[i][j] = 'a';
}
/* compute for 1ms */
compute(50000);
free(buffer[i]);
compute(10000);
}
}
void test_realloc() {
int i, j;
char*buffer[ITER];
for (i = 0; i < ITER; i++) {
int alloc_size = (1 + i) * 1024;
debug("\tloop %d/%d: allocating %d bytes\n", i, ITER, alloc_size);
buffer[i] = malloc(alloc_size);
for (j = 0; j < (1 + i) * 1024; j++) {
buffer[i][j] = 'a';
}
/* compute for 1ms */
compute(20000);
alloc_size *= 2;
debug("\t\tloop %d/%d: reallocating %d bytes\n", i, ITER, alloc_size);
buffer[i] = realloc(buffer[i], alloc_size);
compute(20000);
free(buffer[i]);
compute(10000);
}
}
void test_calloc() {
int i, j;
char*buffer[ITER];
for (i = 0; i < ITER; i++) {
int alloc_size = (1 + i) * 1024;
debug("\tloop %d/%d: allocating %d bytes\n", i, ITER, alloc_size);
buffer[i] = calloc(alloc_size, sizeof(uint8_t));
for (j = 0; j < (1 + i) * 1024; j++) {
buffer[i][j] = 'a';
}
/* compute for 1ms */
compute(50000);
free(buffer[i]);
compute(10000);
}
}
int main(int argc, char**argv) {
char* buffer[ITER];
int i, j;
debug("Testing malloc\n");
test_malloc();
debug("1/2 done\n");
compute(100000);
test_malloc();
debug("2/2 done\n");
compute(100000);
debug("Testing realloc\n");
test_realloc();
debug("realloc done\n");
compute(100000);
debug("Testing calloc\n");
test_calloc();
debug("calloc done\n");
return 0;
}
|