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
|
|
|
|
* Copyright (C) 2011-2014 - 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
|
|
|
|
2012-10-01 21:43:16 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-02-08 11:05:22 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-12-30 17:44:11 +00:00
|
|
|
#ifdef __ARM_NEON__
|
2014-03-03 22:58:45 +00:00
|
|
|
#ifndef HAVE_NEON
|
2013-12-30 17:44:11 +00:00
|
|
|
#define HAVE_NEON
|
|
|
|
#endif
|
2014-03-03 22:58:45 +00:00
|
|
|
#endif
|
2013-12-30 17:44:11 +00:00
|
|
|
|
2013-02-05 08:41:10 +00:00
|
|
|
#include "boolean.h"
|
2013-12-18 18:10:57 +00:00
|
|
|
#include "libretro.h"
|
2012-10-01 21:43:16 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-12-17 18:10:21 +00:00
|
|
|
retro_perf_tick_t rarch_get_perf_counter(void);
|
|
|
|
retro_time_t rarch_get_time_usec(void);
|
|
|
|
void rarch_perf_register(struct retro_perf_counter *perf);
|
2013-12-18 18:10:57 +00:00
|
|
|
void retro_perf_register(struct retro_perf_counter *perf); // Same as rarch_perf_register, just for libretro cores.
|
|
|
|
void retro_perf_clear(void);
|
|
|
|
void rarch_perf_log(void);
|
|
|
|
void retro_perf_log(void);
|
2012-10-01 19:45:09 +00:00
|
|
|
|
2013-12-18 18:10:57 +00:00
|
|
|
static inline void rarch_perf_start(struct retro_perf_counter *perf)
|
|
|
|
{
|
|
|
|
perf->call_cnt++;
|
|
|
|
perf->start = rarch_get_perf_counter();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rarch_perf_stop(struct retro_perf_counter *perf)
|
|
|
|
{
|
|
|
|
perf->total += rarch_get_perf_counter() - perf->start;
|
|
|
|
}
|
2012-10-01 20:02:20 +00:00
|
|
|
|
2013-12-18 18:10:57 +00:00
|
|
|
uint64_t rarch_get_cpu_features(void);
|
2014-04-15 15:55:40 +00:00
|
|
|
unsigned rarch_get_cpu_cores(void);
|
2013-12-18 18:10:57 +00:00
|
|
|
|
|
|
|
// Used internally by RetroArch.
|
|
|
|
#if defined(PERF_TEST) || !defined(RARCH_INTERNAL)
|
|
|
|
#define RARCH_PERFORMANCE_INIT(X) \
|
|
|
|
static struct retro_perf_counter X = {#X}; \
|
|
|
|
do { \
|
|
|
|
if (!(X).registered) \
|
|
|
|
rarch_perf_register(&(X)); \
|
|
|
|
} while(0)
|
|
|
|
#define RARCH_PERFORMANCE_START(X) rarch_perf_start(&(X))
|
|
|
|
#define RARCH_PERFORMANCE_STOP(X) rarch_perf_stop(&(X))
|
|
|
|
#else
|
|
|
|
#define RARCH_PERFORMANCE_INIT(X)
|
|
|
|
#define RARCH_PERFORMANCE_START(X)
|
|
|
|
#define RARCH_PERFORMANCE_STOP(X)
|
|
|
|
#endif
|
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
|
|
|
|
|