Blame src/libpfm-3.y/examples_ia64_v2.0/ita_dear.c

Packit 577717
/*
Packit 577717
 * ita_dear.c - example of how use the D-EAR with the Itanium PMU
Packit 577717
 *
Packit 577717
 * Copyright (c) 2003-2006 Hewlett-Packard Development Company, L.P.
Packit 577717
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
 *
Packit 577717
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 577717
 * of this software and associated documentation files (the "Software"), to deal
Packit 577717
 * in the Software without restriction, including without limitation the rights
Packit 577717
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 577717
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit 577717
 * subject to the following conditions:
Packit 577717
 *
Packit 577717
 * The above copyright notice and this permission notice shall be included in all
Packit 577717
 * copies or substantial portions of the Software.
Packit 577717
 *
Packit 577717
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit 577717
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit 577717
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit 577717
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit 577717
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit 577717
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
 *
Packit 577717
 * This file is part of libpfm, a performance monitoring support library for
Packit 577717
 * applications on Linux/ia64.
Packit 577717
 */
Packit 577717
#include <sys/types.h>
Packit 577717
#include <stdio.h>
Packit 577717
#include <stdlib.h>
Packit 577717
#include <stdarg.h>
Packit 577717
#include <errno.h>
Packit 577717
#include <unistd.h>
Packit 577717
#include <string.h>
Packit 577717
#include <signal.h>
Packit 577717
#include <fcntl.h>
Packit 577717
Packit 577717
#include <perfmon/perfmon.h>
Packit 577717
#include <perfmon/perfmon_default_smpl.h>
Packit 577717
#include <perfmon/pfmlib_itanium.h>
Packit 577717
Packit 577717
#define NUM_PMCS PFMLIB_MAX_PMCS
Packit 577717
#define NUM_PMDS PFMLIB_MAX_PMDS
Packit 577717
Packit 577717
#define MAX_EVT_NAME_LEN	128
Packit 577717
#define MAX_PMU_NAME_LEN	32
Packit 577717
Packit 577717
#define EVENT_NAME	"DATA_EAR_CACHE_LAT4"
Packit 577717
#define SMPL_PERIOD	(40)
Packit 577717
Packit 577717
#define M_PMD(x)		(1UL<<(x))
Packit 577717
#define DEAR_REGS_MASK		(M_PMD(2)|M_PMD(3)|M_PMD(17))
Packit 577717
Packit 577717
typedef pfm_default_smpl_hdr_t		dear_hdr_t;
Packit 577717
typedef pfm_default_smpl_entry_t	dear_entry_t;
Packit 577717
typedef pfm_default_smpl_ctx_arg_t	dear_ctx_t;
Packit 577717
#define DEAR_FMT_UUID	        	PFM_DEFAULT_SMPL_UUID
Packit 577717
Packit 577717
static pfm_uuid_t buf_fmt_id = DEAR_FMT_UUID;
Packit 577717
Packit 577717
Packit 577717
static void *smpl_vaddr;
Packit 577717
static unsigned long entry_size;
Packit 577717
static int id;
Packit 577717
Packit 577717
#if defined(__ECC) && defined(__INTEL_COMPILER)
Packit 577717
Packit 577717
/* if you do not have this file, your compiler is too old */
Packit 577717
#include <ia64intrin.h>
Packit 577717
Packit 577717
#define hweight64(x)	_m64_popcnt(x)
Packit 577717
Packit 577717
#elif defined(__GNUC__)
Packit 577717
Packit 577717
static __inline__ int
Packit 577717
hweight64 (unsigned long x)
Packit 577717
{
Packit 577717
	unsigned long result;
Packit 577717
	__asm__ ("popcnt %0=%1" : "=r" (result) : "r" (x));
Packit 577717
	return (int)result;
Packit 577717
}
Packit 577717
Packit 577717
#else
Packit 577717
#error "you need to provide inline assembly from your compiler"
Packit 577717
#endif
Packit 577717
Packit 577717
long
Packit 577717
do_test(unsigned long size)
Packit 577717
{
Packit 577717
    unsigned long i, sum  = 0;
Packit 577717
    int *array;
Packit 577717
Packit 577717
    printf("buffer size %.1fMB\n", (size*sizeof(int))/1024.0);
Packit 577717
    array = (int *)malloc(size * sizeof(int));
Packit 577717
    if (array == NULL ) {
Packit 577717
        printf("buffer size %.1fMB\n", (size*sizeof(int))/1024.0);
Packit 577717
        exit(1);
Packit 577717
    }
Packit 577717
    for(i=0; i
Packit 577717
        array[i]=1;
Packit 577717
    }
Packit 577717
    return sum;
Packit 577717
}
Packit 577717
Packit 577717
static void fatal_error(char *fmt,...) __attribute__((noreturn));
Packit 577717
Packit 577717
static void
Packit 577717
fatal_error(char *fmt, ...)
Packit 577717
{
Packit 577717
	va_list ap;
Packit 577717
Packit 577717
	va_start(ap, fmt);
Packit 577717
	vfprintf(stderr, fmt, ap);
Packit 577717
	va_end(ap);
Packit 577717
Packit 577717
	exit(1);
Packit 577717
}
Packit 577717
Packit 577717
/*
Packit 577717
 * print content of sampling buffer
Packit 577717
 *
Packit 577717
 * XXX: using stdio to print from a signal handler is not safe with multi-threaded
Packit 577717
 * applications
Packit 577717
 */
Packit 577717
#define safe_printf	printf
Packit 577717
Packit 577717
static void
Packit 577717
process_smpl_buffer(void)
Packit 577717
{
Packit 577717
	dear_hdr_t *hdr;
Packit 577717
	dear_entry_t *ent;
Packit 577717
	unsigned long pos;
Packit 577717
	unsigned long smpl_entry = 0;
Packit 577717
	pfm_ita_pmd_reg_t *reg;
Packit 577717
	unsigned long i;
Packit 577717
	int ret;
Packit 577717
	static unsigned long last_ovfl = ~0UL;
Packit 577717
Packit 577717
	hdr = (dear_hdr_t *)smpl_vaddr;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * check that we are not diplaying the previous set of samples again.
Packit 577717
	 * Required to take care of the last batch of samples.
Packit 577717
	 */
Packit 577717
	if (hdr->hdr_overflows <= last_ovfl && last_ovfl != ~0UL) {
Packit 577717
		printf("skipping identical set of samples %lu <= %lu\n", hdr->hdr_overflows, last_ovfl);
Packit 577717
		return;
Packit 577717
	}
Packit 577717
Packit 577717
	pos = (unsigned long)(hdr+1);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * walk through all the entries recored in the buffer
Packit 577717
	 */
Packit 577717
	for(i=0; i < hdr->hdr_count; i++) {
Packit 577717
Packit 577717
		ret = 0;
Packit 577717
Packit 577717
		ent = (dear_entry_t *)pos;
Packit 577717
		/*
Packit 577717
		 * print entry header
Packit 577717
		 */
Packit 577717
		safe_printf("Entry %ld PID:%d CPU:%d STAMP:0x%lx IIP:0x%016lx\n",
Packit 577717
			smpl_entry++,
Packit 577717
			ent->pid,
Packit 577717
			ent->cpu,
Packit 577717
			ent->tstamp,
Packit 577717
			ent->ip);
Packit 577717
Packit 577717
		/*
Packit 577717
		 * point to first recorded register (always contiguous with entry header)
Packit 577717
		 */
Packit 577717
		reg = (pfm_ita_pmd_reg_t*)(ent+1);
Packit 577717
Packit 577717
		safe_printf("PMD2 : 0x%016lx\n", reg->pmd_val);
Packit 577717
Packit 577717
		reg++;
Packit 577717
Packit 577717
		safe_printf("PMD3 : 0x%016lx, latency %u\n",
Packit 577717
			    reg->pmd_val,
Packit 577717
			    reg->pmd3_ita_reg.dear_latency);
Packit 577717
Packit 577717
		reg++;
Packit 577717
Packit 577717
		safe_printf("PMD17: 0x%016lx, valid %c, address 0x%016lx\n",
Packit 577717
				reg->pmd_val,
Packit 577717
				reg->pmd17_ita_reg.dear_vl ? 'Y': 'N',
Packit 577717
				(reg->pmd17_ita_reg.dear_iaddr << 4) |
Packit 577717
				(unsigned long)reg->pmd17_ita_reg.dear_slot);
Packit 577717
Packit 577717
		/*
Packit 577717
		 * move to next entry
Packit 577717
		 */
Packit 577717
		pos += entry_size;
Packit 577717
	}
Packit 577717
}
Packit 577717
Packit 577717
static void
Packit 577717
overflow_handler(int n, struct siginfo *info, struct sigcontext *sc)
Packit 577717
{
Packit 577717
	/* dangerous */
Packit 577717
	printf("Notification received\n");
Packit 577717
Packit 577717
	process_smpl_buffer();
Packit 577717
	/*
Packit 577717
	 * And resume monitoring
Packit 577717
	 */
Packit 577717
	if (perfmonctl(id, PFM_RESTART,NULL, 0) == -1) {
Packit 577717
		perror("PFM_RESTART");
Packit 577717
		exit(1);
Packit 577717
	}
Packit 577717
}
Packit 577717
Packit 577717
int
Packit 577717
main(void)
Packit 577717
{
Packit 577717
	pfarg_reg_t pd[NUM_PMDS];
Packit 577717
	pfarg_reg_t pc[NUM_PMCS];
Packit 577717
	pfmlib_input_param_t inp;
Packit 577717
	pfmlib_output_param_t outp;
Packit 577717
	pfmlib_event_t ev;
Packit 577717
	dear_ctx_t ctx[1];
Packit 577717
	pfarg_load_t load_args;
Packit 577717
	pfmlib_options_t pfmlib_options;
Packit 577717
	struct sigaction act;
Packit 577717
	unsigned int i;
Packit 577717
	int ret, type = 0;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Initialize pfm library (required before we can use it)
Packit 577717
	 */
Packit 577717
	if (pfm_initialize() != PFMLIB_SUCCESS) {
Packit 577717
		fatal_error("Can't initialize library\n");
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Let's make sure we run this on the right CPU
Packit 577717
	 */
Packit 577717
	pfm_get_pmu_type(&type);
Packit 577717
	if (type != PFMLIB_ITANIUM_PMU) {
Packit 577717
		char model[MAX_PMU_NAME_LEN];
Packit 577717
		pfm_get_pmu_name(model, MAX_PMU_NAME_LEN);
Packit 577717
		fatal_error("this program does not work with %s PMU\n", model);
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Install the overflow handler (SIGIO)
Packit 577717
	 */
Packit 577717
	memset(&act, 0, sizeof(act));
Packit 577717
	act.sa_handler = (sig_t)overflow_handler;
Packit 577717
	sigaction (SIGIO, &act, 0);
Packit 577717
Packit 577717
Packit 577717
	/*
Packit 577717
	 * pass options to library (optional)
Packit 577717
	 */
Packit 577717
	memset(&pfmlib_options, 0, sizeof(pfmlib_options));
Packit 577717
	pfmlib_options.pfm_debug = 0; /* set to 1 for debug */
Packit 577717
	pfmlib_options.pfm_verbose = 1; /* set to 1 for debug */
Packit 577717
	pfm_set_options(&pfmlib_options);
Packit 577717
Packit 577717
Packit 577717
Packit 577717
	memset(pd, 0, sizeof(pd));
Packit 577717
	memset(pc, 0, sizeof(pc));
Packit 577717
	memset(ctx, 0, sizeof(ctx));
Packit 577717
	memset(&load_args, 0, sizeof(load_args));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * prepare parameters to library. we don't use any Itanium
Packit 577717
	 * specific features here. so the pfp_model is NULL.
Packit 577717
	 */
Packit 577717
	memset(&inp,0, sizeof(inp));
Packit 577717
	memset(&outp,0, sizeof(outp));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * To count the number of occurence of this instruction, we must
Packit 577717
	 * program a counting monitor with the IA64_TAGGED_INST_RETIRED_PMC8
Packit 577717
	 * event.
Packit 577717
	 */
Packit 577717
	if (pfm_find_full_event(EVENT_NAME, &ev) != PFMLIB_SUCCESS) {
Packit 577717
		fatal_error("cannot find event %s\n", EVENT_NAME);
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * set the (global) privilege mode:
Packit 577717
	 * 	PFM_PLM0 : kernel level only
Packit 577717
	 */
Packit 577717
	inp.pfp_dfl_plm   = PFM_PLM0|PFM_PLM3;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * how many counters we use
Packit 577717
	 */
Packit 577717
	inp.pfp_event_count = 1;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * propagate the event descriptor
Packit 577717
	 */
Packit 577717
	inp.pfp_events[0] = ev;
Packit 577717
	
Packit 577717
	/*
Packit 577717
	 * let the library figure out the values for the PMCS
Packit 577717
	 *
Packit 577717
	 * We use all global settings for this EAR.
Packit 577717
	 */
Packit 577717
	if ((ret=pfm_dispatch_events(&inp, NULL, &outp, NULL)) != PFMLIB_SUCCESS) {
Packit 577717
		fatal_error("cannot configure events: %s\n", pfm_strerror(ret));
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * prepare context structure.
Packit 577717
	 *
Packit 577717
	 * format specific parameters MUST be concatenated to the regular
Packit 577717
	 * pfarg_context_t structure. For convenience, the default sampling
Packit 577717
	 * format provides a data structure that already combines the pfarg_context_t
Packit 577717
	 * with what is needed fot this format.
Packit 577717
	 */
Packit 577717
Packit 577717
	 /*
Packit 577717
	  * We initialize the format specific information.
Packit 577717
	  * The format is identified by its UUID which must be copied
Packit 577717
	  * into the ctx_buf_fmt_id field.
Packit 577717
	  */
Packit 577717
	memcpy(ctx[0].ctx_arg.ctx_smpl_buf_id, buf_fmt_id, sizeof(pfm_uuid_t));
Packit 577717
Packit 577717
	/*
Packit 577717
	 * the size of the buffer is indicated in bytes (not entries).
Packit 577717
	 *
Packit 577717
	 * The kernel will record into the buffer up to a certain point.
Packit 577717
	 * No partial samples are ever recorded.
Packit 577717
	 */
Packit 577717
	ctx[0].buf_arg.buf_size = 4096;
Packit 577717
Packit 577717
Packit 577717
	/*
Packit 577717
	 * now create the context for self monitoring/per-task
Packit 577717
	 */
Packit 577717
	if (perfmonctl(0, PFM_CREATE_CONTEXT, ctx, 1) == -1 ) {
Packit 577717
		if (errno == ENOSYS) {
Packit 577717
			fatal_error("Your kernel does not have performance monitoring support!\n");
Packit 577717
		}
Packit 577717
		fatal_error("Can't create PFM context %s\n", strerror(errno));
Packit 577717
	}
Packit 577717
	/*
Packit 577717
	 * extract the file descriptor we will use to
Packit 577717
	 * identify this newly created context
Packit 577717
	 */
Packit 577717
	id = ctx[0].ctx_arg.ctx_fd;
Packit 577717
Packit 577717
	printf("Sampling buffer mapped at %p\n", ctx[0].ctx_arg.ctx_smpl_vaddr);
Packit 577717
Packit 577717
	smpl_vaddr = ctx[0].ctx_arg.ctx_smpl_vaddr;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Now prepare the argument to initialize the PMDs and PMCS.
Packit 577717
	 * We must pfp_pmc_count to determine the number of PMC to intialize.
Packit 577717
	 * We must use pfp_event_count to determine the number of PMD to initialize.
Packit 577717
	 * Some events causes extra PMCs to be used, so  pfp_pmc_count may be >= pfp_event_count.
Packit 577717
	 *
Packit 577717
	 * This step is new compared to libpfm-2.x. It is necessary because the library no
Packit 577717
	 * longer knows about the kernel data structures.
Packit 577717
	 */
Packit 577717
Packit 577717
	for (i=0; i < outp.pfp_pmc_count; i++) {
Packit 577717
		pc[i].reg_num   = outp.pfp_pmcs[i].reg_num;
Packit 577717
		pc[i].reg_value = outp.pfp_pmcs[i].reg_value;
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * the PMC controlling the event ALWAYS come first, that's why this loop
Packit 577717
	 * is safe even when extra PMC are needed to support a particular event.
Packit 577717
	 */
Packit 577717
	for (i=0; i < inp.pfp_event_count; i++) {
Packit 577717
		pd[i].reg_num   = pc[i].reg_num;
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * indicate we want notification when buffer is full
Packit 577717
	 */
Packit 577717
	pc[0].reg_flags |= PFM_REGFL_OVFL_NOTIFY;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * indicate which PMD to include in the sample
Packit 577717
	 */
Packit 577717
	pc[0].reg_smpl_pmds[0] = DEAR_REGS_MASK;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * compute size of each sample: fixed-size header + all our DEAR regs
Packit 577717
	 */
Packit 577717
	entry_size = sizeof(dear_entry_t)+(hweight64(DEAR_REGS_MASK)<<3);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * initialize the PMD and the sampling period
Packit 577717
	 */
Packit 577717
	pd[0].reg_value       = (~0UL) - SMPL_PERIOD +1;
Packit 577717
	pd[0].reg_long_reset  = (~0UL) - SMPL_PERIOD +1;
Packit 577717
	pd[0].reg_short_reset = (~0UL) - SMPL_PERIOD +1;
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Now program the registers
Packit 577717
	 *
Packit 577717
	 * We don't use the save variable to indicate the number of elements passed to
Packit 577717
	 * the kernel because, as we said earlier, pc may contain more elements than
Packit 577717
	 * the number of events we specified, i.e., contains more thann coutning monitors.
Packit 577717
	 */
Packit 577717
	if (perfmonctl(id, PFM_WRITE_PMCS, pc, outp.pfp_pmc_count) == -1) {
Packit 577717
		fatal_error("perfmonctl error PFM_WRITE_PMCS errno %d\n",errno);
Packit 577717
	}
Packit 577717
	if (perfmonctl(id, PFM_WRITE_PMDS, pd, inp.pfp_event_count) == -1) {
Packit 577717
		fatal_error("perfmonctl error PFM_WRITE_PMDS errno %d\n",errno);
Packit 577717
	}
Packit 577717
	/*
Packit 577717
	 * attach context to stopped task
Packit 577717
	 */
Packit 577717
	load_args.load_pid = getpid();
Packit 577717
	if (perfmonctl(id, PFM_LOAD_CONTEXT, &load_args, 1) == -1) {
Packit 577717
		fatal_error("perfmonctl error PFM_LOAD_CONTEXT errno %d\n",errno);
Packit 577717
	}
Packit 577717
	/*
Packit 577717
	 * setup asynchronous notification on the file descriptor
Packit 577717
	 */
Packit 577717
	ret = fcntl(id, F_SETFL, fcntl(id, F_GETFL, 0) | O_ASYNC);
Packit 577717
	if (ret == -1) {
Packit 577717
		fatal_error("cannot set ASYNC: %s\n", strerror(errno));
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * get ownership of the descriptor
Packit 577717
	 */
Packit 577717
	ret = fcntl(id, F_SETOWN, getpid());
Packit 577717
	if (ret == -1) {
Packit 577717
		fatal_error("cannot setown: %s\n", strerror(errno));
Packit 577717
	}
Packit 577717
Packit 577717
	/*
Packit 577717
	 * Let's roll now.
Packit 577717
	 */
Packit 577717
	pfm_self_start(id);
Packit 577717
Packit 577717
	do_test(10000);
Packit 577717
Packit 577717
	pfm_self_stop(id);
Packit 577717
Packit 577717
	/*
Packit 577717
	 * We must call the processing routine to cover the last entries recorded
Packit 577717
	 * in the sampling buffer, i.e. which may not be full
Packit 577717
	 */
Packit 577717
	process_smpl_buffer();
Packit 577717
Packit 577717
	/*
Packit 577717
	 * let's stop this now
Packit 577717
	 */
Packit 577717
	close(id);
Packit 577717
	return 0;
Packit 577717
}