#include <time.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <stdio.h>
#include "../x86info.h"
#include "bench.h"

void show_benchmarks(void)
{
	int ret, tmp=0;

	if (show_bench != 1)
		return;

	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");
}


syntax highlighted by Code2HTML, v. 0.9.1