ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/bench.c
Revision: 1.13
Committed: Tue Jun 1 01:15:34 2010 UTC (13 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_6
Changes since 1.12: +1 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #include <stdio.h>
2 #include <unistd.h>
3 #include <assert.h>
4 #include <string.h>
5 #include <time.h>
6 #include <sys/time.h>
7 #include <sys/times.h>
8 #include <sys/types.h>
9 #include <sys/socket.h>
10 #include <sys/mman.h>
11 #include <sys/ioctl.h>
12 #include <sys/stat.h>
13 #include <sys/resource.h>
14 #include <math.h>
15 #include <signal.h>
16 #include <X11/Xlib.h>
17
18 #include "lzf.h"
19 //#include "fastlz.c"
20
21 typedef unsigned long tval;
22 typedef unsigned long long stamp64;
23
24 extern inline tval stamp(void)
25 {
26 tval tsc;
27 asm volatile("rdtsc" : "=a" (tsc) : : "edx");
28 return tsc;
29 }
30
31 extern inline tval measure(tval t)
32 {
33 tval tsc;
34 asm volatile("rdtsc" : "=a" (tsc) : : "edx");
35 if (tsc>t)
36 return tsc-t;
37 else
38 return t-tsc;
39 }
40
41 static void sigu (int signum)
42 {
43 }
44
45 #define DSIZE 2821120
46
47 unsigned char data[DSIZE], data2[DSIZE*2], data3[DSIZE*2];
48
49 int main(void)
50 {
51 tval s;
52 tval si[1000];
53 int i, l, j;
54 int min = 1<<30;
55 int lp;
56 char buf[8192];
57 int p[2];
58 long ctr = 1;
59 struct stat sbuf;
60
61 pipe (p);
62
63 FILE *f = fopen ("data", "r");
64 fread (data, DSIZE, 1, f);
65 fclose (f);
66
67 signal (SIGURG, sigu);
68
69 for (lp = 0; lp < 1000000; lp++) {
70 s=stamp();
71
72 //struct timespec ts; clock_gettime (CLOCK_THREAD_CPUTIME_ID, &ts);
73 //printf ("%9ld\n", ts.tv_nsec);//D
74 //struct rusage usage; getrusage (RUSAGE_SELF, &usage);
75 //struct tms tms; times (&tms);
76
77 //kill (0, SIGURG);
78 //write (evfd, &ctr, 8);
79 //read (evfd, &ctr, 8);
80 //write (p[1], &buf, 1);
81 //read (p[0], &buf, 4);
82 //stat ("/etc/passwd", &sbuf);
83 //struct timeval tv; gettimeofday (&tv, 0);
84 //void *x = mmap (0, 16384, PROT_READ|PROT_WRITE, MAP_ANONYMOUS|MAP_PRIVATE,-1,0);
85
86 l = lzf_compress (data, DSIZE, data2, DSIZE*2);
87 assert(l);
88
89 j = lzf_decompress (data2, l, data3, DSIZE*2);
90 assert (j == DSIZE);
91
92 si[0]=measure(s);
93
94 assert (!memcmp (data, data3, DSIZE));
95
96 printf ("\r%10d (%d) ", si[0], l);
97 if (si[0] < min && si[0] > 0)
98 {
99 printf ("\n");
100 min = si[0];
101 }
102
103 fflush (stdout);
104
105 //assert (memcmp (data, data3, DSIZE) == 0);
106 }
107 return 0;
108 }
109
110
111