summaryrefslogtreecommitdiff
path: root/bench/benchmarks.c
blob: 49ff008d4e40ce50dd7e8b0b111aaa67b7d9adb5 (plain)
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
#include <time.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <stdio.h>
#include "../x86info.h"
#include "bench.h"

#ifdef __linux__
#include <asm/unistd.h>
#endif

void show_benchmarks(void)
{
	int tmp = 0;

	if (show_bench != 1)
		return;

#ifdef __linux__
	TIME(asm volatile("int $0x80" :"=a" (tmp) :"0" (__NR_getppid)), "int 0x80");
#endif
	TIME(asm volatile("cpuid": : :"ax", "dx", "cx", "bx"), "cpuid");

	TIME(asm volatile("addl $1,0(%esp)"), "addl");
	TIME(asm volatile("lock ; addl $1,0(%esp)"), "locked add");

	TIME(asm volatile("bswap %0" : "=r" (tmp) : "0" (tmp)), "bswap");
}