-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPerformanceLap.h
More file actions
60 lines (45 loc) · 1.4 KB
/
PerformanceLap.h
File metadata and controls
60 lines (45 loc) · 1.4 KB
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
/**
*
* Copyright (C) 2015, David Castells-Rufas <david.castells@uab.es>, CEPHIS, Universitat Autonoma de Barcelona
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef PERFORMANCECOUNTER_H_
#define PERFORMANCECOUNTER_H_
#ifndef INT64_DEFINED
typedef long long int64;
typedef unsigned long long uint64;
#define INT64_DEFINED
#endif
#define PERFORMANCE_COUNTER_FREQ 50000000.0
/**
* Returns the high performance (64bit) counter value
* It contains the clock cycles from the system initialization
*
* @return the number of clocks (50Mhz) from initialization
*/
/*extern inline __attribute__((always_inline)) */
void perfCounter(uint64 * p64);
double secondsBetweenLaps(uint64 t0, uint64 tf);
class PerformanceLap
{
public:
PerformanceLap();
void start();
void stop();
double lap();
private:
uint64 m_t0;
uint64 m_tf;
};
#endif /*PERFORMANCECOUNTER_H_*/