blob: 49d9f92513acf9e07066e37cd249c5468ba8510a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "benchmark/benchmark_api.h"
#include <ctime>
#include "osdcore.h"
#include "osdcomm.h"
#define MAME_NOASM 1
osd_ticks_t osd_ticks(void)
{
// use the standard library clock function
return clock();
}
#include "eminline.h"
static void BM_count_leading_zeros_noasm(benchmark::State& state) {
uint32_t cnt = 0x332533;
while (state.KeepRunning()) {
(void)count_leading_zeros_32(cnt);
cnt++;
}
}
// Register the function as a benchmark
BENCHMARK(BM_count_leading_zeros_noasm);
|