2025-03-03 18:28:36 -08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
2022-11-16 15:38:53 -08:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
#include "../tests.h"
|
|
|
|
|
|
|
|
typedef struct _buf {
|
|
|
|
char data1;
|
|
|
|
char reserved[55];
|
|
|
|
char data2;
|
|
|
|
} buf __attribute__((aligned(64)));
|
|
|
|
|
2025-02-26 15:01:09 -08:00
|
|
|
/* volatile to try to avoid the compiler seeing reserved as unused. */
|
|
|
|
static volatile buf workload_datasym_buf1 = {
|
2022-11-16 15:38:53 -08:00
|
|
|
/* to have this in the data section */
|
|
|
|
.reserved[0] = 1,
|
|
|
|
};
|
|
|
|
|
2025-03-03 18:28:36 -08:00
|
|
|
static volatile sig_atomic_t done;
|
|
|
|
|
|
|
|
static void sighandler(int sig __maybe_unused)
|
|
|
|
{
|
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int datasym(int argc, const char **argv)
|
2022-11-16 15:38:53 -08:00
|
|
|
{
|
2025-03-03 18:28:36 -08:00
|
|
|
int sec = 1;
|
|
|
|
|
|
|
|
if (argc > 0)
|
|
|
|
sec = atoi(argv[0]);
|
|
|
|
|
|
|
|
signal(SIGINT, sighandler);
|
|
|
|
signal(SIGALRM, sighandler);
|
|
|
|
alarm(sec);
|
|
|
|
|
|
|
|
while (!done) {
|
2025-02-26 15:01:09 -08:00
|
|
|
workload_datasym_buf1.data1++;
|
|
|
|
if (workload_datasym_buf1.data1 == 123) {
|
2024-04-10 11:34:52 +01:00
|
|
|
/*
|
|
|
|
* Add some 'noise' in the loop to work around errata
|
|
|
|
* 1694299 on Arm N1.
|
|
|
|
*
|
|
|
|
* Bias exists in SPE sampling which can cause the load
|
|
|
|
* and store instructions to be skipped entirely. This
|
|
|
|
* comes and goes randomly depending on the offset the
|
|
|
|
* linker places the datasym loop at in the Perf binary.
|
|
|
|
* With an extra branch in the middle of the loop that
|
|
|
|
* isn't always taken, the instruction stream is no
|
|
|
|
* longer a continuous repeating pattern that interacts
|
|
|
|
* badly with the bias.
|
|
|
|
*/
|
2025-02-26 15:01:09 -08:00
|
|
|
workload_datasym_buf1.data1++;
|
2024-04-10 11:34:52 +01:00
|
|
|
}
|
2025-02-26 15:01:09 -08:00
|
|
|
workload_datasym_buf1.data2 += workload_datasym_buf1.data1;
|
2022-11-16 15:38:53 -08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
DEFINE_WORKLOAD(datasym);
|