mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
fa7f7e7354
Adds a test for minimal jit_write_elf functionality. Committer testing: # perf test jit 61: Test jit_write_elf : Ok # # perf test -v jit 61: Test jit_write_elf : --- start --- test child forked, pid 10460 Writing jit code to: /tmp/perf-test-KqxURR test child finished with 0 ---- end ---- Test jit_write_elf: Ok # Committer notes: Fix up the case where HAVE_JITDUMP is no defined. Signed-off-by: Ian Rogers <irogers@google.com> Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Alexios Zavras <alexios.zavras@intel.com> Cc: Allison Randal <allison@lohutok.net> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Kate Stewart <kstewart@linuxfoundation.org> Cc: Leo Yan <leo.yan@linaro.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Michael Petlan <mpetlan@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Song Liu <songliubraving@fb.com> Cc: Stephane Eranian <eranian@google.com> Cc: Thomas Gleixner <tglx@linutronix.de> Link: http://lore.kernel.org/lkml/20191126235913.41855-1-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
52 lines
995 B
C
52 lines
995 B
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <linux/compiler.h>
|
|
|
|
#include "debug.h"
|
|
#include "tests.h"
|
|
|
|
#ifdef HAVE_JITDUMP
|
|
#include <libelf.h>
|
|
#include "../util/genelf.h"
|
|
#endif
|
|
|
|
#define TEMPL "/tmp/perf-test-XXXXXX"
|
|
|
|
int test__jit_write_elf(struct test *test __maybe_unused,
|
|
int subtest __maybe_unused)
|
|
{
|
|
#ifdef HAVE_JITDUMP
|
|
static unsigned char x86_code[] = {
|
|
0xBB, 0x2A, 0x00, 0x00, 0x00, /* movl $42, %ebx */
|
|
0xB8, 0x01, 0x00, 0x00, 0x00, /* movl $1, %eax */
|
|
0xCD, 0x80 /* int $0x80 */
|
|
};
|
|
char path[PATH_MAX];
|
|
int fd, ret;
|
|
|
|
strcpy(path, TEMPL);
|
|
|
|
fd = mkstemp(path);
|
|
if (fd < 0) {
|
|
perror("mkstemp failed");
|
|
return TEST_FAIL;
|
|
}
|
|
|
|
pr_info("Writing jit code to: %s\n", path);
|
|
|
|
ret = jit_write_elf(fd, 0, "main", x86_code, sizeof(x86_code),
|
|
NULL, 0, NULL, 0, 0);
|
|
close(fd);
|
|
|
|
unlink(path);
|
|
|
|
return ret ? TEST_FAIL : 0;
|
|
#else
|
|
return TEST_SKIP;
|
|
#endif
|
|
}
|