HPCToolkit
perf_skid.h
Go to the documentation of this file.
1 // -*-Mode: C++;-*- // technically C99
2 
3 // * BeginRiceCopyright *****************************************************
4 //
5 // --------------------------------------------------------------------------
6 // Part of HPCToolkit (hpctoolkit.org)
7 //
8 // Information about sources of support for research and development of
9 // HPCToolkit is at 'hpctoolkit.org' and in 'README.Acknowledgments'.
10 // --------------------------------------------------------------------------
11 //
12 // Copyright ((c)) 2002-2019, Rice University
13 // All rights reserved.
14 //
15 // Redistribution and use in source and binary forms, with or without
16 // modification, are permitted provided that the following conditions are
17 // met:
18 //
19 // * Redistributions of source code must retain the above copyright
20 // notice, this list of conditions and the following disclaimer.
21 //
22 // * Redistributions in binary form must reproduce the above copyright
23 // notice, this list of conditions and the following disclaimer in the
24 // documentation and/or other materials provided with the distribution.
25 //
26 // * Neither the name of Rice University (RICE) nor the names of its
27 // contributors may be used to endorse or promote products derived from
28 // this software without specific prior written permission.
29 //
30 // This software is provided by RICE and contributors "as is" and any
31 // express or implied warranties, including, but not limited to, the
32 // implied warranties of merchantability and fitness for a particular
33 // purpose are disclaimed. In no event shall RICE or contributors be
34 // liable for any direct, indirect, incidental, special, exemplary, or
35 // consequential damages (including, but not limited to, procurement of
36 // substitute goods or services; loss of use, data, or profits; or
37 // business interruption) however caused and on any theory of liability,
38 // whether in contract, strict liability, or tort (including negligence
39 // or otherwise) arising in any way out of the use of this software, even
40 // if advised of the possibility of such damage.
41 //
42 // ******************************************************* EndRiceCopyright *
43 
44 
45 #ifndef __PERF_SKID_H__
46 #define __PERF_SKID_H__
47 
48 // constants of precise_ip (see the man page)
49 #define PERF_EVENT_AUTODETECT_SKID 4
50 #define PERF_EVENT_SKID_ZERO_REQUIRED 3
51 #define PERF_EVENT_SKID_ZERO_REQUESTED 2
52 #define PERF_EVENT_SKID_CONSTANT 1
53 #define PERF_EVENT_SKID_ARBITRARY 0
54 #define PERF_EVENT_SKID_ERROR -1
55 
56 
57 // parse the event into event_name and the type of precise_ip
58 // the name of the event excludes the precise ip suffix
59 // returns:
60 // PERF_EVENT_AUTODETECT_SKID
61 // PERF_EVENT_SKID_ZERO_REQUIRED
62 // PERF_EVENT_SKID_ZERO_REQUESTED
63 // PERF_EVENT_SKID_CONSTANT
64 // PERF_EVENT_SKID_ARBITRARY
65 // PERF_EVENT_SKID_NONE
66 // PERF_EVENT_SKID_ERROR
67 int
68 perf_skid_parse_event(const char *event_string, char **event_string_without_skidmarks);
69 
70 int
71 perf_skid_set_max_precise_ip(struct perf_event_attr *attr);
72 
73 u64
74 perf_skid_get_precise_ip(struct perf_event_attr *attr);
75 #endif
int perf_skid_parse_event(const char *event_string, char **event_string_without_skidmarks)
Definition: perf_skid.c:243
int perf_skid_set_max_precise_ip(struct perf_event_attr *attr)
Definition: perf_skid.c:176
__u64 u64
u64 perf_skid_get_precise_ip(struct perf_event_attr *attr)
Definition: perf_skid.c:207