PAPI 7.1.0.0
Loading...
Searching...
No Matches
pfmlib_intel_atom_priv.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2008 Google, Inc
3 * Contributed by Stephane Eranian <eranian@gmail.com>
4 *
5 * Based on:
6 * Copyright (c) 2006-2007 Hewlett-Packard Development Company, L.P.
7 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a copy
10 * of this software and associated documentation files (the "Software"), to deal
11 * in the Software without restriction, including without limitation the rights
12 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
13 * of the Software, and to permit persons to whom the Software is furnished to do so,
14 * subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in all
17 * copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
20 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
21 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
23 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
24 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 * This file is part of libpfm, a performance monitoring support library for
27 * applications on Linux/ia64.
28 */
29#ifndef __PFMLIB_INTEL_ATOM_PRIV_H__
30#define __PFMLIB_INTEL_ATOM_PRIV_H__
31
32#define PFMLIB_INTEL_ATOM_MAX_UMASK 16
33
34typedef struct {
35 char *pme_uname; /* unit mask name */
36 char *pme_udesc; /* event/umask description */
37 unsigned int pme_ucode; /* unit mask code */
38 unsigned int pme_flags; /* unit mask flags */
40
41typedef struct {
42 char *pme_name; /* event name */
43 char *pme_desc; /* event description */
44 unsigned int pme_code; /* event code */
45 unsigned int pme_numasks; /* number of umasks */
46 unsigned int pme_flags; /* flags */
47 unsigned int pme_fixed; /* fixed counter index, < FIXED_CTR0 if unsupported */
50
51/*
52 * pme_flags value
53 */
54
55/*
56 * pme_flags value (event and unit mask)
57 */
58#define PFMLIB_INTEL_ATOM_UMASK_NCOMBO 0x01 /* unit mask cannot be combined (default exclusive) */
59#define PFMLIB_INTEL_ATOM_FIXED0 0x02 /* event supported by FIXED_CTR0, can work on generic counters */
60#define PFMLIB_INTEL_ATOM_FIXED1 0x04 /* event supported by FIXED_CTR1, can work on generic counters */
61#define PFMLIB_INTEL_ATOM_FIXED2_ONLY 0x08 /* works only on FIXED_CTR2 */
62#define PFMLIB_INTEL_ATOM_PEBS 0x10 /* support PEBS (precise event) */
63#define PFMLIB_INTEL_ATOM_PMC0 0x20 /* works only on IA32_PMC0 */
64#define PFMLIB_INTEL_ATOM_PMC1 0x40 /* works only on IA32_PMC1 */
65
66typedef struct {
67 unsigned int version:8;
68 unsigned int num_cnt:8;
69 unsigned int cnt_width:8;
70 unsigned int ebx_length:8;
71} pmu_eax_t;
72
73typedef struct {
74 unsigned int num_cnt:6;
75 unsigned int cnt_width:6;
76 unsigned int reserved:20;
77} pmu_edx_t;
78
79typedef struct {
80 unsigned int no_core_cycle:1;
81 unsigned int no_inst_retired:1;
82 unsigned int no_ref_cycle:1;
83 unsigned int no_llc_ref:1;
84 unsigned int no_llc_miss:1;
85 unsigned int no_br_retired:1;
86 unsigned int no_br_mispred_retired:1;
87 unsigned int reserved:25;
88} pmu_ebx_t;
89
90#endif /* __PFMLIB_INTEL_ATOM_PRIV_H__ */
uint16_t reserved
uint8_t version
#define PFMLIB_INTEL_ATOM_MAX_UMASK
char * pme_desc
unsigned int pme_numasks
char * pme_name
unsigned int pme_code
unsigned int pme_fixed
unsigned int pme_flags