intr_regs         613 tools/perf/builtin-script.c 	return perf_sample__fprintf_regs(&sample->intr_regs,
intr_regs         138 tools/perf/tests/sample-parsing.c 		size_t sz = hweight_long(s1->intr_regs.mask) * sizeof(u64);
intr_regs         140 tools/perf/tests/sample-parsing.c 		COMP(intr_regs.mask);
intr_regs         141 tools/perf/tests/sample-parsing.c 		COMP(intr_regs.abi);
intr_regs         142 tools/perf/tests/sample-parsing.c 		if (s1->intr_regs.abi &&
intr_regs         143 tools/perf/tests/sample-parsing.c 		    (!s1->intr_regs.regs || !s2->intr_regs.regs ||
intr_regs         144 tools/perf/tests/sample-parsing.c 		     memcmp(s1->intr_regs.regs, s2->intr_regs.regs, sz))) {
intr_regs         215 tools/perf/tests/sample-parsing.c 		.intr_regs	= {
intr_regs         142 tools/perf/util/event.h 	struct regs_dump  intr_regs;
intr_regs        2186 tools/perf/util/evsel.c 	data->intr_regs.abi = PERF_SAMPLE_REGS_ABI_NONE;
intr_regs        2189 tools/perf/util/evsel.c 		data->intr_regs.abi = *array;
intr_regs        2192 tools/perf/util/evsel.c 		if (data->intr_regs.abi != PERF_SAMPLE_REGS_ABI_NONE) {
intr_regs        2197 tools/perf/util/evsel.c 			data->intr_regs.mask = mask;
intr_regs        2198 tools/perf/util/evsel.c 			data->intr_regs.regs = (u64 *)array;
intr_regs        1594 tools/perf/util/intel-pt.c static u64 *intel_pt_add_gp_regs(struct regs_dump *intr_regs, u64 *pos,
intr_regs        1615 tools/perf/util/intel-pt.c 			intr_regs->mask |= bit;
intr_regs        1627 tools/perf/util/intel-pt.c static void intel_pt_add_xmm(struct regs_dump *intr_regs, u64 *pos,
intr_regs        1640 tools/perf/util/intel-pt.c 	intr_regs->mask |= (u64)mask << PERF_REG_X86_XMM0;
intr_regs        1760 tools/perf/util/intel-pt.c 		u64 regs[sizeof(sample.intr_regs.mask)];
intr_regs        1764 tools/perf/util/intel-pt.c 		sample.intr_regs.abi = items->is_32_bit ?
intr_regs        1767 tools/perf/util/intel-pt.c 		sample.intr_regs.regs = regs;
intr_regs        1769 tools/perf/util/intel-pt.c 		pos = intel_pt_add_gp_regs(&sample.intr_regs, regs, items, regs_mask);
intr_regs        1771 tools/perf/util/intel-pt.c 		intel_pt_add_xmm(&sample.intr_regs, pos, items, regs_mask);
intr_regs         713 tools/perf/util/scripting-engines/trace-event-python.c 	regs_map(&sample->intr_regs, attr->sample_regs_intr, bf, sizeof(bf));
intr_regs        1139 tools/perf/util/session.c 	struct regs_dump *intr_regs = &sample->intr_regs;
intr_regs        1141 tools/perf/util/session.c 	if (intr_regs->regs)
intr_regs        1142 tools/perf/util/session.c 		regs__printf("intr", intr_regs);
intr_regs        1219 tools/perf/util/synthetic-events.c 		if (sample->intr_regs.abi) {
intr_regs        1221 tools/perf/util/synthetic-events.c 			sz = hweight64(sample->intr_regs.mask) * sizeof(u64);
intr_regs        1384 tools/perf/util/synthetic-events.c 		if (sample->intr_regs.abi) {
intr_regs        1385 tools/perf/util/synthetic-events.c 			*array++ = sample->intr_regs.abi;
intr_regs        1386 tools/perf/util/synthetic-events.c 			sz = hweight64(sample->intr_regs.mask) * sizeof(u64);
intr_regs        1387 tools/perf/util/synthetic-events.c 			memcpy(array, sample->intr_regs.regs, sz);