aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/tests/workloads/leafloop.c
blob: 1bf5cc97649b0e23379b63af2718f01246948b03 (plain) (blame)
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
/* SPDX-License-Identifier: GPL-2.0 */
#include <stdlib.h>
#include <linux/compiler.h>
#include "../tests.h"

/* We want to check these symbols in perf script */
noinline void leaf(volatile int b);
noinline void parent(volatile int b);

static volatile int a;

noinline void leaf(volatile int b)
{
	for (;;)
		a += b;
}

noinline void parent(volatile int b)
{
	leaf(b);
}

static int leafloop(int argc, const char **argv)
{
	int c = 1;

	if (argc > 0)
		c = atoi(argv[0]);

	parent(c);
	return 0;
}

DEFINE_WORKLOAD(leafloop);