PAPI 7.1.0.0
Loading...
Searching...
No Matches
pfmlib_itanium2_priv.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2002-2006 Hewlett-Packard Development Company, L.P.
3 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the "Software"), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
17 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
18 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
19 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
20 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * This file is part of libpfm, a performance monitoring support library for
23 * applications on Linux/ia64.
24 */
25#ifndef __PFMLIB_ITANIUM2_PRIV_H__
26#define __PFMLIB_ITANIUM2_PRIV_H__
27
28/*
29 * Event type definitions
30 *
31 * The virtual events are not really defined in the specs but are an artifact used
32 * to quickly and easily setup EAR and/or BTB. The event type encodes the exact feature
33 * which must be configured in combination with a counting monitor.
34 * For instance, DATA_EAR_CACHE_LAT4 is a virtual D-EAR cache event. If the user
35 * requests this event, this will configure a counting monitor to count DATA_EAR_EVENTS
36 * and PMC11 will be configured for cache mode. The latency is encoded in the umask, here
37 * it would correspond to 4 cycles.
38 *
39 */
40#define PFMLIB_ITA2_EVENT_NORMAL 0x0 /* standard counter */
41#define PFMLIB_ITA2_EVENT_BTB 0x1 /* virtual event used with BTB configuration */
42#define PFMLIB_ITA2_EVENT_IEAR_TLB 0x2 /* virtual event used for I-EAR TLB configuration */
43#define PFMLIB_ITA2_EVENT_IEAR_CACHE 0x3 /* virtual event used for I-EAR cache configuration */
44#define PFMLIB_ITA2_EVENT_DEAR_TLB 0x4 /* virtual event used for D-EAR TLB configuration */
45#define PFMLIB_ITA2_EVENT_DEAR_CACHE 0x5 /* virtual event used for D-EAR cache configuration */
46#define PFMLIB_ITA2_EVENT_DEAR_ALAT 0x6 /* virtual event used for D-EAR ALAT configuration */
47
48#define event_is_ear(e) ((e)->pme_type >= PFMLIB_ITA2_EVENT_IEAR_TLB &&(e)->pme_type <= PFMLIB_ITA2_EVENT_DEAR_ALAT)
49#define event_is_iear(e) ((e)->pme_type == PFMLIB_ITA2_EVENT_IEAR_TLB || (e)->pme_type == PFMLIB_ITA2_EVENT_IEAR_CACHE)
50#define event_is_dear(e) ((e)->pme_type >= PFMLIB_ITA2_EVENT_DEAR_TLB && (e)->pme_type <= PFMLIB_ITA2_EVENT_DEAR_ALAT)
51#define event_is_ear_cache(e) ((e)->pme_type == PFMLIB_ITA2_EVENT_DEAR_CACHE || (e)->pme_type == PFMLIB_ITA2_EVENT_IEAR_CACHE)
52#define event_is_ear_tlb(e) ((e)->pme_type == PFMLIB_ITA2_EVENT_IEAR_TLB || (e)->pme_type == PFMLIB_ITA2_EVENT_DEAR_TLB)
53#define event_is_ear_alat(e) ((e)->pme_type == PFMLIB_ITA2_EVENT_DEAR_ALAT)
54#define event_is_btb(e) ((e)->pme_type == PFMLIB_ITA2_EVENT_BTB)
55
56
57/*
58 * Itanium encoding structure
59 * (code must be first 8 bits)
60 */
61typedef struct {
62 unsigned long pme_code:8; /* major event code */
63 unsigned long pme_type:3; /* see definitions above */
64 unsigned long pme_ig1:5; /* ignored */
65 unsigned long pme_umask:16; /* unit mask*/
66 unsigned long pme_ig:32; /* ignored */
68
69typedef union {
70 unsigned long pme_vcode;
71 pme_ita2_entry_code_t pme_ita2_code; /* must not be larger than vcode */
73
74typedef union {
75 unsigned long qual; /* generic qualifier */
76 struct {
77 unsigned long pme_iar:1; /* instruction address range supported */
78 unsigned long pme_opm:1; /* opcode match supported */
79 unsigned long pme_dar:1; /* data address range supported */
80 unsigned long pme_res1:13; /* reserved */
81 unsigned long pme_group:4; /* event group */
82 unsigned long pme_set:4; /* event feature set*/
83 unsigned long pme_res2:40; /* reserved */
84 } pme_qual;
86
87typedef struct {
88 char *pme_name;
90 unsigned long pme_counters; /* supported counters */
91 unsigned int pme_maxincr;
93 char *pme_desc; /* text description of the event */
95
96
97/*
98 * We embed the umask value into the event code. Because it really is
99 * like a subevent.
100 * pme_code:
101 * - lower 16 bits: major event code
102 * - upper 16 bits: unit mask
103 */
104#define pme_code pme_entry_code.pme_ita2_code.pme_code
105#define pme_umask pme_entry_code.pme_ita2_code.pme_umask
106#define pme_used pme_qualifiers.pme_qual_struct.pme_used
107#define pme_type pme_entry_code.pme_ita2_code.pme_type
108
109#define event_opcm_ok(e) ((e)->pme_qualifiers.pme_qual.pme_opm==1)
110#define event_iarr_ok(e) ((e)->pme_qualifiers.pme_qual.pme_iar==1)
111#define event_darr_ok(e) ((e)->pme_qualifiers.pme_qual.pme_dar==1)
112
113#endif /* __PFMLIB_ITANIUM2_PRIV_H__ */
unsigned long pme_ig
unsigned long pme_umask
unsigned long pme_ig1
unsigned long pme_type
unsigned long pme_code
pme_ita2_qualifiers_t pme_qualifiers
unsigned int pme_maxincr
char * pme_desc
unsigned long pme_counters
pme_ita2_code_t pme_entry_code
char * pme_name
pme_ita2_entry_code_t pme_ita2_code
unsigned long pme_vcode