2013-07-07 21:01:21 +00:00
|
|
|
/*
|
2015-10-22 05:13:26 +00:00
|
|
|
* Apple // emulator for *ix
|
2013-07-07 21:01:21 +00:00
|
|
|
*
|
|
|
|
* This software package is subject to the GNU General Public License
|
2015-10-22 05:13:26 +00:00
|
|
|
* version 3 or later (your choice) as published by the Free Software
|
2013-07-07 21:01:21 +00:00
|
|
|
* Foundation.
|
|
|
|
*
|
2015-10-22 05:13:26 +00:00
|
|
|
* Copyright 2013-2015 Aaron Culliney
|
2013-07-07 21:01:21 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COMMON_H_
|
|
|
|
#define _COMMON_H_
|
|
|
|
|
2013-10-23 04:18:03 +00:00
|
|
|
#if defined(__GNUC__) && !defined(_GNU_SOURCE)
|
2015-11-14 07:13:21 +00:00
|
|
|
# define _GNU_SOURCE 1
|
|
|
|
#endif
|
|
|
|
|
2015-07-12 20:59:44 +00:00
|
|
|
// custom annotations
|
2016-03-26 05:34:33 +00:00
|
|
|
#define INOUT
|
2015-07-12 20:59:44 +00:00
|
|
|
#define INPARM
|
2016-03-26 05:34:33 +00:00
|
|
|
#define _NONNULL
|
|
|
|
#define _NULLABLE
|
2015-07-12 20:59:44 +00:00
|
|
|
#define OUTPARM
|
|
|
|
#define PRIVATE
|
|
|
|
#define PUBLIC
|
|
|
|
#define READONLY
|
|
|
|
|
2018-03-25 22:54:23 +00:00
|
|
|
#define CALL_ON_UI_THREAD
|
|
|
|
#define ASSERT_ON_UI_THREAD() \
|
|
|
|
assert(video_isRenderThread())
|
|
|
|
#define ASSERT_NOT_ON_UI_THREAD() \
|
|
|
|
assert(!video_isRenderThread())
|
|
|
|
|
|
|
|
#define CALL_ON_CPU_THREAD
|
|
|
|
#define ASSERT_ON_CPU_THREAD() \
|
|
|
|
assert(timing_isCPUThread())
|
|
|
|
#define ASSERT_NOT_ON_CPU_THREAD() \
|
|
|
|
assert(!timing_isCPUThread())
|
|
|
|
|
2014-01-23 04:42:34 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2013-07-07 21:01:21 +00:00
|
|
|
#include <stdlib.h>
|
2014-01-23 04:42:34 +00:00
|
|
|
#include <stdio.h>
|
2013-07-07 21:01:21 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2013-10-06 06:13:24 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <pthread.h>
|
2013-10-07 04:01:00 +00:00
|
|
|
#include <ctype.h>
|
2013-12-01 04:00:34 +00:00
|
|
|
#include <dirent.h>
|
2014-01-23 04:42:34 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <limits.h>
|
2015-04-27 01:12:56 +00:00
|
|
|
#include <math.h>
|
2014-01-23 04:42:34 +00:00
|
|
|
|
|
|
|
#include <zlib.h>
|
2013-07-07 21:01:21 +00:00
|
|
|
|
2013-11-24 20:19:54 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
2013-12-01 04:00:34 +00:00
|
|
|
#include <sys/stat.h>
|
2013-11-24 20:19:54 +00:00
|
|
|
|
2016-02-07 21:12:59 +00:00
|
|
|
#include "json_parse.h"
|
2016-03-26 05:34:33 +00:00
|
|
|
#include "misc.h"
|
2015-09-11 07:00:04 +00:00
|
|
|
#include "vm.h"
|
2014-01-23 04:42:34 +00:00
|
|
|
#include "timing.h"
|
|
|
|
#include "cpu.h"
|
2017-08-05 18:59:07 +00:00
|
|
|
#include "interface.h"
|
2016-02-07 05:23:40 +00:00
|
|
|
#include "display.h"
|
2017-08-05 18:59:07 +00:00
|
|
|
#include "video/video.h"
|
2014-01-23 04:42:34 +00:00
|
|
|
#include "disk.h"
|
|
|
|
#include "keys.h"
|
|
|
|
#include "joystick.h"
|
|
|
|
#include "glue.h"
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "zlib-helpers.h"
|
|
|
|
|
2018-11-23 18:35:38 +00:00
|
|
|
#include "meta/systrace.h"
|
2015-10-04 21:21:28 +00:00
|
|
|
|
2017-08-20 06:05:58 +00:00
|
|
|
#if __APPLE__
|
|
|
|
# include "meta/darwin-shim.h"
|
|
|
|
# if TARGET_OS_MAC || TARGET_OS_PHONE
|
|
|
|
# import <CoreFoundation/CoreFoundation.h>
|
|
|
|
# endif
|
2015-01-17 05:10:45 +00:00
|
|
|
#endif
|
2014-09-17 03:49:57 +00:00
|
|
|
|
|
|
|
#if VIDEO_OPENGL
|
2017-07-30 17:12:51 +00:00
|
|
|
# include "video_util/glUtil.h"
|
2014-09-17 03:49:57 +00:00
|
|
|
#endif
|
|
|
|
|
2017-07-30 17:12:51 +00:00
|
|
|
#include "meta/log.h"
|
2014-01-23 04:42:34 +00:00
|
|
|
#include "meta/debug.h"
|
|
|
|
|
|
|
|
#include "audio/soundcore.h"
|
|
|
|
#include "audio/speaker.h"
|
|
|
|
#include "audio/mockingboard.h"
|
|
|
|
|
2015-06-28 19:49:26 +00:00
|
|
|
#ifdef ANDROID
|
2015-07-11 21:37:41 +00:00
|
|
|
# include "../Android/jni/android_globals.h"
|
|
|
|
# define USE_SIMD 1
|
|
|
|
# define SIMD_IS_AVAILABLE() (android_armNeonEnabled/* || android_x86SSSE3Enabled*/)
|
|
|
|
#else
|
|
|
|
# define SIMD_IS_AVAILABLE()
|
2015-06-28 19:49:26 +00:00
|
|
|
#endif
|
|
|
|
|
2015-06-02 05:25:29 +00:00
|
|
|
#define PATH_SEPARATOR "/" // =P
|
|
|
|
|
2014-03-30 17:39:45 +00:00
|
|
|
#if !defined(MIN)
|
|
|
|
#define MIN(a,b) (((a) <= (b)) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(MAX)
|
|
|
|
#define MAX(a,b) (((a) >= (b)) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2015-07-03 05:24:14 +00:00
|
|
|
#define SPINLOCK_INIT 0
|
|
|
|
#define SPINLOCK_ACQUIRED -1
|
|
|
|
#define SPINLOCK_ACQUIRE(x) \
|
|
|
|
do { \
|
|
|
|
long val = __sync_sub_and_fetch((x), 1); \
|
|
|
|
if (val == SPINLOCK_ACQUIRED) { \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
__sync_add_and_fetch((x), 1); \
|
|
|
|
} while (1);
|
|
|
|
|
|
|
|
#define SPINLOCK_RELINQUISH(x) \
|
|
|
|
__sync_add_and_fetch((x), 1);
|
|
|
|
|
|
|
|
|
2015-10-04 21:39:53 +00:00
|
|
|
// cribbed from AOSP and modified with usleep() and to also ignore EAGAIN (should this be a different errno than EINTR)
|
|
|
|
#define TEMP_FAILURE_RETRY_FOPEN(exp) ({ \
|
|
|
|
typeof (exp) _rc; \
|
|
|
|
do { \
|
|
|
|
_rc = (exp); \
|
|
|
|
if (_rc == NULL && (errno == EINTR || errno == EAGAIN) ) { \
|
|
|
|
usleep(10); \
|
|
|
|
} else { \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} while (1); \
|
|
|
|
_rc; })
|
|
|
|
|
|
|
|
|
2015-12-31 06:16:57 +00:00
|
|
|
// memory management
|
2017-08-20 05:53:51 +00:00
|
|
|
#include "meta/memmngt.h"
|
2014-09-27 18:03:51 +00:00
|
|
|
|
2015-01-24 07:34:03 +00:00
|
|
|
// branch prediction
|
|
|
|
#define LIKELY(x) __builtin_expect((x), true)
|
|
|
|
#define UNLIKELY(x) __builtin_expect((x), false)
|
|
|
|
|
2017-08-20 06:05:58 +00:00
|
|
|
#if !defined(TEMP_FAILURE_RETRY)
|
|
|
|
# define TEMP_FAILURE_RETRY(exp) ({ \
|
|
|
|
typeof (exp) _rc; \
|
|
|
|
do { \
|
|
|
|
_rc = (exp); \
|
|
|
|
if (_rc == -1 && (errno == EINTR || errno == EAGAIN) ) { \
|
|
|
|
usleep(10); \
|
|
|
|
} else { \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
} while (1); \
|
|
|
|
_rc; })
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2013-07-07 21:01:21 +00:00
|
|
|
#endif // whole file
|