4 #include <linux/kernel.h> 5 #include <linux/types.h> 14 #define COMP(m) do { \ 15 if (s1->m != s2->m) { \ 16 pr_debug("Samples differ at '"#m"'\n"); \ 21 #define MCOMP(m) do { \ 22 if (memcmp(&s1->m, &s2->m, sizeof(s1->m))) { \ 23 pr_debug("Samples differ at '"#m"'\n"); \ 30 u64 type, u64 read_format)
34 if (type & PERF_SAMPLE_IDENTIFIER)
37 if (type & PERF_SAMPLE_IP)
40 if (type & PERF_SAMPLE_TID) {
45 if (type & PERF_SAMPLE_TIME)
48 if (type & PERF_SAMPLE_ADDR)
51 if (type & PERF_SAMPLE_ID)
54 if (type & PERF_SAMPLE_STREAM_ID)
57 if (type & PERF_SAMPLE_CPU)
60 if (type & PERF_SAMPLE_PERIOD)
63 if (type & PERF_SAMPLE_READ) {
64 if (read_format & PERF_FORMAT_GROUP)
68 if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED)
69 COMP(read.time_enabled);
70 if (read_format & PERF_FORMAT_TOTAL_TIME_RUNNING)
71 COMP(read.time_running);
73 if (read_format & PERF_FORMAT_GROUP) {
75 MCOMP(read.group.values[i]);
81 if (type & PERF_SAMPLE_CALLCHAIN) {
84 COMP(callchain->ips[i]);
87 if (type & PERF_SAMPLE_RAW) {
90 pr_debug(
"Samples differ at 'raw_data'\n");
95 if (type & PERF_SAMPLE_BRANCH_STACK) {
101 if (type & PERF_SAMPLE_REGS_USER) {
104 COMP(user_regs.mask);
109 pr_debug(
"Samples differ at 'user_regs'\n");
114 if (type & PERF_SAMPLE_STACK_USER) {
115 COMP(user_stack.size);
118 pr_debug(
"Samples differ at 'user_stack'\n");
123 if (type & PERF_SAMPLE_WEIGHT)
126 if (type & PERF_SAMPLE_DATA_SRC)
129 if (type & PERF_SAMPLE_TRANSACTION)
132 if (type & PERF_SAMPLE_REGS_INTR) {
135 COMP(intr_regs.mask);
140 pr_debug(
"Samples differ at 'intr_regs'\n");
145 if (type & PERF_SAMPLE_PHYS_ADDR)
151 static int do_test(u64 sample_type, u64 sample_regs, u64 read_format)
156 .sample_type = sample_type,
157 .read_format = read_format,
166 .data = {3, 201, 202, 203},
173 .data = {1, 211, 212, 213},
176 const u64 raw_data[] = {0x123456780a0b0c0dULL, 0x1102030405060708ULL};
177 const u64
data[] = {0x2211443366558877ULL, 0, 0xaabbccddeeff4321ULL};
196 .abi = PERF_SAMPLE_REGS_ABI_64,
201 .size =
sizeof(
data),
202 .data = (
void *)
data,
205 .time_enabled = 0x030a59d664fca7deULL,
206 .time_running = 0x011b6ae553eb98edULL,
209 .abi = PERF_SAMPLE_REGS_ABI_64,
220 if (sample_type & PERF_SAMPLE_REGS_USER)
221 evsel.
attr.sample_regs_user = sample_regs;
223 if (sample_type & PERF_SAMPLE_REGS_INTR)
224 evsel.
attr.sample_regs_intr = sample_regs;
226 for (i = 0; i <
sizeof(regs); i++)
227 *(i + (u8 *)regs) = i & 0xfe;
229 if (read_format & PERF_FORMAT_GROUP) {
245 memset(event, 0xff, bufsz);
246 event->header.type = PERF_RECORD_SAMPLE;
247 event->header.misc = 0;
248 event->header.size = sz;
253 pr_debug(
"%s failed for sample_type %#"PRIx64
", error %d\n",
254 "perf_event__synthesize_sample", sample_type, err);
259 for (i = bufsz; i > 0; i--) {
260 if (*(i - 1 + (u8 *)event) != 0xff)
264 pr_debug(
"Event size mismatch: actual %zu vs expected %zu\n",
273 pr_debug(
"%s failed for sample_type %#"PRIx64
", error %d\n",
274 "perf_evsel__parse_sample", sample_type, err);
278 if (!
samples_same(&sample, &sample_out, sample_type, read_format)) {
279 pr_debug(
"parsing failed for sample_type %#"PRIx64
"\n",
287 if (ret && read_format)
288 pr_debug(
"read_format %#"PRIx64
"\n", read_format);
302 const u64 rf[] = {4, 5, 6, 7, 12, 13, 14, 15};
313 if (PERF_SAMPLE_MAX > PERF_SAMPLE_PHYS_ADDR << 1) {
314 pr_debug(
"sample format has changed, some new PERF_SAMPLE_ bit was introduced - test needs updating\n");
319 for (sample_type = 1; sample_type != PERF_SAMPLE_MAX;
322 if (sample_type == PERF_SAMPLE_READ) {
323 for (i = 0; i < ARRAY_SIZE(rf); i++) {
324 err =
do_test(sample_type, 0, rf[i]);
332 if (sample_type == PERF_SAMPLE_REGS_USER)
333 sample_regs = 0x3fff;
335 if (sample_type == PERF_SAMPLE_REGS_INTR)
336 sample_regs = 0xff0fff;
338 err =
do_test(sample_type, sample_regs, 0);
344 sample_type = PERF_SAMPLE_MAX - 1;
345 sample_regs = 0x3fff;
346 for (i = 0; i < ARRAY_SIZE(rf); i++) {
347 err =
do_test(sample_type, sample_regs, rf[i]);
struct ip_callchain * callchain
x86 movsq based memset() in arch/x86/lib/memset_64.S") MEMSET_FN(memset_erms
struct sample_read::@79::@81 group
struct sample_read_value one
struct branch_entry entries[0]
int perf_event__synthesize_sample(union perf_event *event, u64 type, u64 read_format, const struct perf_sample *sample)
#define pr_debug(fmt,...)
struct regs_dump user_regs
struct regs_dump intr_regs
struct branch_stack * branch_stack
static bool samples_same(const struct perf_sample *s1, const struct perf_sample *s2, u64 type, u64 read_format)
int test__sample_parsing(struct test *test __maybe_unused, int subtest __maybe_unused)
size_t perf_event__sample_event_size(const struct perf_sample *sample, u64 type, u64 read_format)
static int do_test(u64 sample_type, u64 sample_regs, u64 read_format)
int perf_evsel__parse_sample(struct perf_evsel *evsel, union perf_event *event, struct perf_sample *data)
int __perf_evsel__sample_size(u64 sample_type)
struct stack_dump user_stack
struct perf_event_attr attr