Blame src/libpfm4/include/perfmon/pfmlib_perf_event.h

Packit 577717
/*
Packit 577717
 * Copyright (c) 2009 Google, Inc
Packit 577717
 * Contributed by Stephane Eranian <eranian@gmail.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
#ifndef __PFMLIB_PERF_EVENTS_H__
Packit 577717
#define __PFMLIB_PERF_EVENTS_H__
Packit 577717
Packit 577717
#include <perfmon/pfmlib.h>
Packit 577717
#include <perfmon/perf_event.h>
Packit 577717
Packit 577717
#pragma GCC visibility push(default)
Packit 577717
Packit 577717
#ifdef __cplusplus
Packit 577717
extern "C" {
Packit 577717
#endif
Packit 577717
Packit 577717
/*
Packit 577717
 * use with PFM_OS_PERF, PFM_OS_PERF_EXT for pfm_get_os_event_encoding()
Packit 577717
 */
Packit 577717
typedef struct {
Packit 577717
	struct perf_event_attr *attr;	/* in/out: perf_event struct pointer */
Packit 577717
	char **fstr;			/* out/in: fully qualified event string */
Packit 577717
	size_t size;			/* sizeof struct */
Packit 577717
	int idx;			/* out: opaque event identifier */
Packit 577717
	int cpu;			/* out: cpu to program, -1 = not set */
Packit 577717
	int flags;			/* out: perf_event_open() flags */
Packit 577717
	int pad0;			/* explicit 64-bit mode padding */
Packit 577717
} pfm_perf_encode_arg_t;
Packit 577717
Packit 577717
#if __WORDSIZE == 64
Packit 577717
#define PFM_PERF_ENCODE_ABI0	40	/* includes 4-byte padding */
Packit 577717
#else
Packit 577717
#define PFM_PERF_ENCODE_ABI0	28
Packit 577717
#endif
Packit 577717
/*
Packit 577717
 * old interface, maintained for backward compatibility with older versions o
Packit 577717
 * the library. Should use pfm_get_os_event_encoding() now
Packit 577717
 */
Packit 577717
extern pfm_err_t pfm_get_perf_event_encoding(const char *str,
Packit 577717
					     int dfl_plm,
Packit 577717
					     struct perf_event_attr *output,
Packit 577717
					     char **fstr,
Packit 577717
					     int *idx);
Packit 577717
Packit 577717
#ifdef __cplusplus /* extern C */
Packit 577717
}
Packit 577717
#endif
Packit 577717
Packit 577717
#pragma GCC visibility pop
Packit 577717
Packit 577717
#endif /* __PFMLIB_PERF_EVENT_H__ */