FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
perfmon_intel.h
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2019 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #ifndef _PERFMON_INTEL_H_
19 #define _PERFMON_INTEL_H_
20 
21 #include <vppinfra/clib.h>
22 #include <vppinfra/format.h>
23 
24 typedef struct
25 {
26  u8 event_code[2];
28  char *event_name;
30 
31 typedef struct
32 {
37 
38 typedef struct
39 {
45 
46 
47 void
49  perfmon_intel_pmc_event_t * e, int n_events);
50 
51 #define PERFMON_REGISTER_INTEL_PMC(m, e) \
52 static void __clib_constructor \
53 perfmon_register_intel_pmc_constructor() \
54 { \
55  perfmon_register_intel_pmc (m, ARRAY_LEN(m), e, ARRAY_LEN (e)); \
56 }
57 
58 #endif /* _PERFMON_INTEL_H_ */
59 
60 /*
61  * fd.io coding-style-patch-verification: ON
62  *
63  * Local Variables:
64  * eval: (c-set-style "gnu")
65  * End:
66  */
void perfmon_register_intel_pmc(perfmon_intel_pmc_cpu_model_t *m, int n_models, perfmon_intel_pmc_event_t *e, int n_events)
Definition: perfmon.c:31
unsigned char u8
Definition: types.h:56
unsigned int u32
Definition: types.h:88
perfmon_intel_pmc_event_t * events
Definition: perfmon_intel.h:40
perfmon_intel_pmc_cpu_model_t * models
Definition: perfmon_intel.h:41