1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
|
/*
* notify_self.c - example of how you can use overflow notifications
*
* Copyright (c) 2002-2006 Hewlett-Packard Development Company, L.P.
* Contributed by Stephane Eranian <eranian@hpl.hp.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <sys/types.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <errno.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <fcntl.h>
#include <perfmon/perfmon.h>
#include <perfmon/pfmlib.h>
#include "detect_pmcs.h"
#define SMPL_PERIOD 1000000000ULL
static volatile unsigned long notification_received;
#define NUM_PMCS PFMLIB_MAX_PMCS
#define NUM_PMDS PFMLIB_MAX_PMDS
static pfarg_pmd_t pd[NUM_PMDS];
static int ctx_fd;
static char *event1_name;
static void fatal_error(char *fmt,...) __attribute__((noreturn));
static void
fatal_error(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
exit(1);
}
static void
warning(char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
}
static void
sigio_handler(int n, struct siginfo *info, struct sigcontext *sc)
{
pfm_msg_t msg;
int fd = ctx_fd;
int r;
if (fd != ctx_fd)
fatal_error("handler does not get valid file descriptor\n");
if (event1_name && pfm_read_pmds(fd, pd+1, 1) == -1)
fatal_error("pfm_read_pmds: %s", strerror(errno));
retry:
r = read(fd, &msg, sizeof(msg));
if (r != sizeof(msg)) {
if(r == -1 && errno == EINTR) {
warning("read interrupted, retrying\n");
goto retry;
}
fatal_error("cannot read overflow message: %s\n", strerror(errno));
}
if (msg.type != PFM_MSG_OVFL)
fatal_error("unexpected msg type: %d\n",msg.type);
/*
* increment our notification counter
*/
notification_received++;
/*
* XXX: risky to do printf() in signal handler!
*/
if (event1_name)
printf("Notification %lu: %"PRIu64" %s ip=0x%llx\n",
notification_received, pd[1].reg_value,
event1_name,
(unsigned long long)msg.pfm_ovfl_msg.msg_ovfl_ip);
else
printf("Notification %lu ip=0x%llx\n",
notification_received,
(unsigned long long)msg.pfm_ovfl_msg.msg_ovfl_ip);
/*
* And resume monitoring
*/
if (pfm_restart(fd) == -1)
fatal_error("pfm_restart: %d\n", errno);
}
/*
* infinite loop waiting for notification to get out
*/
void
busyloop(void)
{
/*
* busy loop to burn CPU cycles
*/
for(;notification_received < 3;) ;
}
#define BPL (sizeof(uint64_t)<<3)
#define LBPL 6
static inline void pfm_bv_set(uint64_t *bv, uint16_t rnum)
{
bv[rnum>>LBPL] |= 1UL << (rnum&(BPL-1));
}
int
main(int argc, char **argv)
{
pfarg_ctx_t ctx;
pfmlib_input_param_t inp;
pfmlib_output_param_t outp;
pfarg_pmc_t pc[NUM_PMCS];
pfarg_load_t load_args;
pfmlib_options_t pfmlib_options;
struct sigaction act;
unsigned int i, num_counters;
size_t len;
int ret;
/*
* Initialize pfm library (required before we can use it)
*/
ret = pfm_initialize();
if (ret != PFMLIB_SUCCESS)
fatal_error("Cannot initialize library: %s\n", pfm_strerror(ret));
/*
* Install the signal handler (SIGIO)
*/
memset(&act, 0, sizeof(act));
act.sa_handler = (sig_t)sigio_handler;
sigaction (SIGIO, &act, 0);
/*
* pass options to library (optional)
*/
memset(&pfmlib_options, 0, sizeof(pfmlib_options));
pfmlib_options.pfm_debug = 0; /* set to 1 for debug */
pfmlib_options.pfm_verbose = 1; /* set to 1 for verbose */
pfm_set_options(&pfmlib_options);
memset(pc, 0, sizeof(pc));
memset(&ctx, 0, sizeof(ctx));
memset(&load_args, 0, sizeof(load_args));
memset(&inp,0, sizeof(inp));
memset(&outp,0, sizeof(outp));
pfm_get_num_counters(&num_counters);
if (pfm_get_cycle_event(&inp.pfp_events[0]) != PFMLIB_SUCCESS)
fatal_error("cannot find cycle event\n");
if (pfm_get_inst_retired_event(&inp.pfp_events[1]) != PFMLIB_SUCCESS)
fatal_error("cannot find inst retired event\n");
i = 2;
/*
* set the default privilege mode for all counters:
* PFM_PLM3 : user level only
*/
inp.pfp_dfl_plm = PFM_PLM3;
if (i > num_counters) {
i = num_counters;
printf("too many events provided (max=%d events), using first %d event(s)\n", num_counters, i);
}
inp.pfp_event_count = i;
/*
* how many counters we use
*/
if (i > 1) {
pfm_get_max_event_name_len(&len);
event1_name = malloc(len+1);
if (event1_name == NULL)
fatal_error("cannot allocate event name\n");
pfm_get_full_event_name(&inp.pfp_events[1], event1_name, len+1);
}
/*
* now create the context for self monitoring/per-task
*/
ctx_fd = pfm_create_context(&ctx, NULL, NULL, 0);
if (ctx_fd == -1) {
if (errno == ENOSYS) {
fatal_error("Your kernel does not have performance monitoring support!\n");
}
fatal_error("Can't create PFM context %s\n", strerror(errno));
}
/*
* build the pfp_unavail_pmcs bitmask by looking
* at what perfmon has available. It is not always
* the case that all PMU registers are actually available
* to applications. For instance, on IA-32 platforms, some
* registers may be reserved for the NMI watchdog timer.
*
* With this bitmap, the library knows which registers NOT to
* use. Of source, it is possible that no valid assignement may
* be possible if certina PMU registers are not available.
*/
detect_unavail_pmcs(ctx_fd, &inp.pfp_unavail_pmcs);
/*
* let the library figure out the values for the PMCS
*/
if ((ret=pfm_dispatch_events(&inp, NULL, &outp, NULL)) != PFMLIB_SUCCESS)
fatal_error("Cannot configure events: %s\n", pfm_strerror(ret));
/*
* Now prepare the argument to initialize the PMDs and PMCS.
*/
for (i=0; i < outp.pfp_pmc_count; i++) {
pc[i].reg_num = outp.pfp_pmcs[i].reg_num;
pc[i].reg_value = outp.pfp_pmcs[i].reg_value;
}
for (i=0; i < outp.pfp_pmd_count; i++)
pd[i].reg_num = outp.pfp_pmds[i].reg_num;
/*
* We want to get notified when the counter used for our first
* event overflows
*/
pd[0].reg_flags |= PFM_REGFL_OVFL_NOTIFY;
/*
* nothing to sample when only one counter
*/
if (inp.pfp_event_count > 1)
pfm_bv_set(pd[0].reg_reset_pmds, pd[1].reg_num);
/*
* we arm the first counter, such that it will overflow
* after SMPL_PERIOD events have been observed
*/
pd[0].reg_value = - SMPL_PERIOD;
pd[0].reg_long_reset = - SMPL_PERIOD;
pd[0].reg_short_reset = - SMPL_PERIOD;
/*
* Now program the registers
*/
if (pfm_write_pmcs(ctx_fd, pc, outp.pfp_pmc_count))
fatal_error("pfm_write_pmcs error errno %d\n",errno);
if (pfm_write_pmds(ctx_fd, pd, outp.pfp_pmd_count))
fatal_error("pfm_write_pmds error errno %d\n",errno);
/*
* we want to monitor ourself
*/
load_args.load_pid = getpid();
if (pfm_load_context(ctx_fd, &load_args))
fatal_error("pfm_load_context error errno %d\n",errno);
/*
* setup asynchronous notification on the file descriptor
*/
ret = fcntl(ctx_fd, F_SETFL, fcntl(ctx_fd, F_GETFL, 0) | O_ASYNC);
if (ret == -1)
fatal_error("cannot set ASYNC: %s\n", strerror(errno));
/*
* get ownership of the descriptor
*/
ret = fcntl(ctx_fd, F_SETOWN, getpid());
if (ret == -1)
fatal_error("cannot setown: %s\n", strerror(errno));
/*
* Let's roll now
*/
pfm_self_start(ctx_fd);
busyloop();
pfm_self_stop(ctx_fd);
/*
* free our context
*/
close(ctx_fd);
if (event1_name)
free(event1_name);
return 0;
}
|