Yeppp!  0.9.3
 All Data Structures Functions Variables Enumerations Enumerator Groups Pages
yepLibrary.h
1 /*
2  * Yeppp! library header
3  *
4  * This file is part of Yeppp! library and licensed under 2-clause BSD license.
5  *
6  * Copyright (C) 2010-2012 Marat Dukhan
7  * Copyright (C) 2012-2013 Georgia Institute of Technology
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright notice, this
14  * list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright notice,
16  * this list of conditions and the following disclaimer in the documentation
17  * and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
23  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  * The views and conclusions contained in the software and documentation are those
31  * of the authors and should not be interpreted as representing official policies,
32  * either expressed or implied, of the Yeppp! Project.
33  */
34 
35 #pragma once
36 
37 #include <yepPredefines.h>
38 #include <yepTypes.h>
39 
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45 
53  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_Init();
61  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_Release();
67  YEP_PUBLIC_SYMBOL const struct YepLibraryVersion *yepLibrary_GetVersion();
80  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetString(const enum YepEnumeration *enumerationType, const Yep32u *enumerationValue, void *buffer, YepSize *length);
89  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuIsaFeatures(Yep64u *isaFeatures);
98  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuSimdFeatures(Yep64u *simdFeatures);
107  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuSystemFeatures(Yep64u *systemFeatures);
115  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuVendor(enum YepCpuVendor *vendor);
123  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuArchitecture(enum YepCpuArchitecture *architecture);
131  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuMicroarchitecture(enum YepCpuMicroarchitecture *microarchitecture);
132  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuDataCacheSize(Yep32u level, Yep32u *cacheSize);
133  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuInstructionCacheSize(Yep32u level, Yep32u *cacheSize);
134  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetLogicalCoresCount(Yep32u *logicalCoresCount);
156  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuCyclesAcquire(Yep64u *state);
173  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetCpuCyclesRelease(Yep64u *state, Yep64u *cycles);
183  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetTimerTicks(Yep64u *ticks);
192  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetTimerFrequency(Yep64u *frequency);
201  YEP_PUBLIC_SYMBOL enum YepStatus yepLibrary_GetTimerAccuracy(Yep64u *accuracy);
202 
203 #ifdef __cplusplus
204 }
205 #endif