PAPI 7.1.0.0
Loading...
Searching...
No Matches
map-unknown.c
Go to the documentation of this file.
1/****************************/
2/* THIS IS OPEN SOURCE CODE */
3/****************************/
4
5/*
6* File: map-unknown.c
7* Author: Harald Servat
8* redcrash@gmail.com
9*/
10
11#include "freebsd.h"
12#include "papiStdEventDefs.h"
13#include "map.h"
14
15/****************************************************************************
16 UNKNOWN SUBSTRATE
17 UNKNOWN SUBSTRATE
18 UNKNOWN SUBSTRATE
19 UNKNOWN SUBSTRATE
20****************************************************************************/
21
22/*
23 NativeEvent_Value_UnknownProcessor must match UnkProcessor_info
24*/
25
27{
28 { "branches", "Measure the number of branches retired." },
29 { "branch-mispredicts", "Measure the number of retired branches that were mispredicted." },
30 /* { "cycles", "Measure processor cycles." }, */
31 { "dc-misses", "Measure the number of data cache misses." },
32 { "ic-misses", "Measure the number of instruction cache misses." },
33 { "instructions", "Measure the number of instructions retired." },
34 { "interrupts", "Measure the number of interrupts seen." },
35 { "unhalted-cycles", "Measure the number of cycles the processor is not in a halted or sleep state." },
36 { NULL, NULL }
37};
Native_Event_LabelDescription_t UnkProcessor_info[]
Definition: map-unknown.c:26