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
use std::ffi::CString;

use criterion::measurement::{Measurement, ValueFormatter};
use libpapi_sys::*;

mod formatter;
use formatter::InsFormatter;

pub struct PapiMeasurement {
    event_set: std::os::raw::c_int,
}

impl PapiMeasurement {
    pub fn new(event: &str) -> PapiMeasurement {
        let mut event_set = PAPI_NULL;
        let mut papi_tot_ins: std::os::raw::c_int = 0;

        let event_name = CString::new(event).expect("CString::new failed");

        unsafe {
            let retval = PAPI_library_init(PAPI_VER_CURRENT);
            if retval != PAPI_VER_CURRENT {
                panic!("PAPI_library_init failed {}", retval)
            }

            let retval = PAPI_event_name_to_code(event_name.into_raw(), &mut papi_tot_ins);
            if retval != PAPI_OK as i32 {
                panic!("PAPI_event_name_to_code failed {}", retval)
            }

            let retval = PAPI_create_eventset(&mut event_set);
            if retval != PAPI_OK as i32 {
                panic!("PAPI_create_eventset error {}", retval)
            }

            let retval = PAPI_add_event(event_set.clone(), papi_tot_ins as i32);
            if retval != PAPI_OK as i32 {
                panic!("PAPI_add_event failed {}", retval)
            }
        }

        return PapiMeasurement {
            event_set,
        }
    }
}

impl Measurement for PapiMeasurement {
    type Intermediate = i64;
    type Value = i64;

    fn start(&self) -> Self::Intermediate {
        let mut values = [0i64];

        unsafe {
            let retval = PAPI_start(self.event_set.clone());
            if retval != PAPI_OK as i32 {
                panic!("PAPI_start failed {}", retval)
            }

            let retval = PAPI_read(self.event_set.clone(), values.as_mut_ptr());
            if retval != PAPI_OK as i32 {
                panic!("PAPI_read failed")
            }
        }

        values[0]
    }

    fn end(&self, i: Self::Intermediate) -> Self::Value {
        let mut values = [0i64];

        unsafe {
            let retval = PAPI_stop(self.event_set.clone(), values.as_mut_ptr());
            if retval != PAPI_OK as i32 {
                panic!("PAPI_read failed")
            }
        }

        values[0] - i
    }

    fn add(&self, v1: &Self::Value, v2: &Self::Value) -> Self::Value {
        v1 + v2
    }

    fn zero(&self) -> Self::Value {
        0
    }

    fn to_f64(&self, value: &Self::Value) -> f64 {
        *value as f64
    }

    fn formatter(&self) -> &dyn ValueFormatter {
        &InsFormatter
    }
}