2012-10-01 19:45:09 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2012-10-01 19:45:09 +00:00
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-11-01 05:21:18 +00:00
|
|
|
#ifndef _RARCH_PERF_H
|
|
|
|
#define _RARCH_PERF_H
|
2012-10-01 19:45:09 +00:00
|
|
|
|
2015-06-02 15:17:46 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2015-03-15 03:41:11 +00:00
|
|
|
#include <retro_inline.h>
|
2015-01-09 01:37:46 +00:00
|
|
|
|
2015-06-02 15:17:46 +00:00
|
|
|
#include "libretro.h"
|
|
|
|
|
2015-01-09 01:37:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MAX_COUNTERS
|
2014-06-01 16:44:30 +00:00
|
|
|
#define MAX_COUNTERS 64
|
2015-01-09 01:37:46 +00:00
|
|
|
#endif
|
2014-06-01 16:44:30 +00:00
|
|
|
|
2015-10-11 16:21:07 +00:00
|
|
|
struct retro_perf_counter **retro_get_perf_counter_rarch(void);
|
2014-06-01 16:44:30 +00:00
|
|
|
|
2015-10-11 16:21:07 +00:00
|
|
|
struct retro_perf_counter **retro_get_perf_counter_libretro(void);
|
|
|
|
|
|
|
|
unsigned retro_get_perf_count_rarch(void);
|
|
|
|
|
|
|
|
unsigned retro_get_perf_count_libretro(void);
|
|
|
|
|
|
|
|
/*
|
2015-09-20 08:02:47 +00:00
|
|
|
* retro_get_perf_counter:
|
2015-01-09 01:37:46 +00:00
|
|
|
*
|
|
|
|
* Gets performance counter.
|
|
|
|
*
|
|
|
|
* Returns: performance counter.
|
|
|
|
**/
|
2015-09-20 08:02:47 +00:00
|
|
|
retro_perf_tick_t retro_get_perf_counter(void);
|
2014-09-07 03:47:18 +00:00
|
|
|
|
2015-01-09 01:37:46 +00:00
|
|
|
/**
|
2015-09-20 08:02:47 +00:00
|
|
|
* retro_get_time_usec:
|
2015-01-09 01:37:46 +00:00
|
|
|
*
|
2015-09-20 08:02:47 +00:00
|
|
|
* Gets time in microseconds. *
|
2015-01-09 01:37:46 +00:00
|
|
|
* Returns: time in microseconds.
|
|
|
|
**/
|
2015-09-20 08:02:47 +00:00
|
|
|
retro_time_t retro_get_time_usec(void);
|
2014-09-07 03:47:18 +00:00
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
void retro_perf_register(struct retro_perf_counter *perf);
|
2014-09-07 03:47:18 +00:00
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
/* Same as retro_perf_register, just for libretro cores. */
|
2014-09-07 03:47:18 +00:00
|
|
|
void retro_perf_register(struct retro_perf_counter *perf);
|
|
|
|
|
2013-12-18 18:10:57 +00:00
|
|
|
void retro_perf_clear(void);
|
2014-09-07 03:47:18 +00:00
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
void retro_perf_log(void);
|
|
|
|
|
2013-12-18 18:10:57 +00:00
|
|
|
void rarch_perf_log(void);
|
2014-09-07 03:47:18 +00:00
|
|
|
|
2015-09-20 08:02:47 +00:00
|
|
|
int rarch_perf_init(struct retro_perf_counter *perf, const char *name);
|
2012-10-01 19:45:09 +00:00
|
|
|
|
2015-01-09 01:37:46 +00:00
|
|
|
/**
|
2015-09-20 08:02:47 +00:00
|
|
|
* retro_perf_start:
|
2015-01-09 01:37:46 +00:00
|
|
|
* @perf : pointer to performance counter
|
|
|
|
*
|
|
|
|
* Start performance counter.
|
|
|
|
**/
|
2015-09-20 08:02:47 +00:00
|
|
|
void retro_perf_start(struct retro_perf_counter *perf);
|
2013-12-18 18:10:57 +00:00
|
|
|
|
2015-01-09 01:37:46 +00:00
|
|
|
/**
|
2015-09-20 08:02:47 +00:00
|
|
|
* retro_perf_stop:
|
2015-01-09 01:37:46 +00:00
|
|
|
* @perf : pointer to performance counter
|
|
|
|
*
|
|
|
|
* Stop performance counter.
|
|
|
|
**/
|
2015-09-20 08:02:47 +00:00
|
|
|
void retro_perf_stop(struct retro_perf_counter *perf);
|
2012-10-01 20:02:20 +00:00
|
|
|
|
2015-01-09 01:37:46 +00:00
|
|
|
/**
|
2015-09-20 08:02:47 +00:00
|
|
|
* retro_get_cpu_features:
|
2015-01-09 01:37:46 +00:00
|
|
|
*
|
|
|
|
* Gets CPU features..
|
|
|
|
*
|
|
|
|
* Returns: bitmask of all CPU features available.
|
|
|
|
**/
|
2015-09-20 08:02:47 +00:00
|
|
|
uint64_t retro_get_cpu_features(void);
|
2013-12-18 18:10:57 +00:00
|
|
|
|
2015-01-09 01:37:46 +00:00
|
|
|
/**
|
2015-09-20 08:02:47 +00:00
|
|
|
* retro_get_cpu_cores:
|
2015-01-09 01:37:46 +00:00
|
|
|
*
|
|
|
|
* Gets the amount of available CPU cores.
|
|
|
|
*
|
|
|
|
* Returns: amount of CPU cores available.
|
|
|
|
**/
|
2015-09-20 08:02:47 +00:00
|
|
|
unsigned retro_get_cpu_cores(void);
|
2014-06-01 20:06:52 +00:00
|
|
|
|
2012-10-01 21:43:16 +00:00
|
|
|
|
2013-02-08 11:05:22 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-01 21:43:16 +00:00
|
|
|
#endif
|
|
|
|
|