2010-09-08 15:07:14 +00:00
|
|
|
/*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2010-09-08 15:07:14 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2010-09-08 15:07:14 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2010-09-08 15:07:14 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2010-09-08 15:07:14 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2017-02-08 08:32:17 +00:00
|
|
|
#include <stddef.h>
|
2013-11-23 20:32:55 +00:00
|
|
|
#include <stdint.h>
|
2016-12-08 00:16:02 +00:00
|
|
|
#include <stdatomic.h>
|
2013-11-23 20:32:55 +00:00
|
|
|
|
2010-09-08 15:07:14 +00:00
|
|
|
#include "cpu.h"
|
2013-08-20 15:49:01 +00:00
|
|
|
#include "cpu_internal.h"
|
2010-09-08 15:07:14 +00:00
|
|
|
#include "config.h"
|
2012-04-25 17:06:51 +00:00
|
|
|
#include "opt.h"
|
2013-05-24 09:24:27 +00:00
|
|
|
#include "common.h"
|
2010-09-08 15:07:14 +00:00
|
|
|
|
2013-05-23 06:59:07 +00:00
|
|
|
#if HAVE_SCHED_GETAFFINITY
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <sched.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_GETPROCESSAFFINITYMASK
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_SYSCTL
|
|
|
|
#if HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#endif
|
|
|
|
#if HAVE_SYSCONF
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2016-12-08 00:16:02 +00:00
|
|
|
static atomic_int cpu_flags = ATOMIC_VAR_INIT(-1);
|
2012-03-04 15:08:48 +00:00
|
|
|
|
2016-12-08 00:16:02 +00:00
|
|
|
static int get_cpu_flags(void)
|
2010-09-08 15:07:14 +00:00
|
|
|
{
|
2013-12-10 19:13:32 +00:00
|
|
|
if (ARCH_AARCH64)
|
2016-12-08 00:16:02 +00:00
|
|
|
return ff_get_cpu_flags_aarch64();
|
2013-12-10 19:13:32 +00:00
|
|
|
if (ARCH_ARM)
|
2016-12-08 00:16:02 +00:00
|
|
|
return ff_get_cpu_flags_arm();
|
2013-12-10 19:13:32 +00:00
|
|
|
if (ARCH_PPC)
|
2016-12-08 00:16:02 +00:00
|
|
|
return ff_get_cpu_flags_ppc();
|
2013-12-10 19:13:32 +00:00
|
|
|
if (ARCH_X86)
|
2016-12-08 00:16:02 +00:00
|
|
|
return ff_get_cpu_flags_x86();
|
|
|
|
return 0;
|
|
|
|
}
|
2012-03-04 15:08:48 +00:00
|
|
|
|
2016-12-08 00:16:02 +00:00
|
|
|
int av_get_cpu_flags(void)
|
|
|
|
{
|
|
|
|
int flags = atomic_load_explicit(&cpu_flags, memory_order_relaxed);
|
|
|
|
if (flags == -1) {
|
|
|
|
flags = get_cpu_flags();
|
|
|
|
atomic_store_explicit(&cpu_flags, flags, memory_order_relaxed);
|
|
|
|
}
|
2010-09-09 18:51:49 +00:00
|
|
|
return flags;
|
2010-09-08 15:07:14 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 15:08:48 +00:00
|
|
|
void av_set_cpu_flags_mask(int mask)
|
|
|
|
{
|
2016-12-08 00:16:02 +00:00
|
|
|
atomic_store_explicit(&cpu_flags, get_cpu_flags() & mask,
|
|
|
|
memory_order_relaxed);
|
2012-03-04 15:08:48 +00:00
|
|
|
}
|
|
|
|
|
2012-04-25 17:06:51 +00:00
|
|
|
int av_parse_cpu_flags(const char *s)
|
|
|
|
{
|
2012-07-08 16:42:12 +00:00
|
|
|
#define CPUFLAG_MMXEXT (AV_CPU_FLAG_MMX | AV_CPU_FLAG_MMXEXT | AV_CPU_FLAG_CMOV)
|
2012-04-25 17:06:51 +00:00
|
|
|
#define CPUFLAG_3DNOW (AV_CPU_FLAG_3DNOW | AV_CPU_FLAG_MMX)
|
|
|
|
#define CPUFLAG_3DNOWEXT (AV_CPU_FLAG_3DNOWEXT | CPUFLAG_3DNOW)
|
2012-07-08 16:42:12 +00:00
|
|
|
#define CPUFLAG_SSE (AV_CPU_FLAG_SSE | CPUFLAG_MMXEXT)
|
2012-04-25 17:06:51 +00:00
|
|
|
#define CPUFLAG_SSE2 (AV_CPU_FLAG_SSE2 | CPUFLAG_SSE)
|
|
|
|
#define CPUFLAG_SSE2SLOW (AV_CPU_FLAG_SSE2SLOW | CPUFLAG_SSE2)
|
|
|
|
#define CPUFLAG_SSE3 (AV_CPU_FLAG_SSE3 | CPUFLAG_SSE2)
|
|
|
|
#define CPUFLAG_SSE3SLOW (AV_CPU_FLAG_SSE3SLOW | CPUFLAG_SSE3)
|
|
|
|
#define CPUFLAG_SSSE3 (AV_CPU_FLAG_SSSE3 | CPUFLAG_SSE3)
|
|
|
|
#define CPUFLAG_SSE4 (AV_CPU_FLAG_SSE4 | CPUFLAG_SSSE3)
|
|
|
|
#define CPUFLAG_SSE42 (AV_CPU_FLAG_SSE42 | CPUFLAG_SSE4)
|
|
|
|
#define CPUFLAG_AVX (AV_CPU_FLAG_AVX | CPUFLAG_SSE42)
|
2015-05-26 17:29:06 +00:00
|
|
|
#define CPUFLAG_AVXSLOW (AV_CPU_FLAG_AVXSLOW | CPUFLAG_AVX)
|
2012-04-25 17:06:51 +00:00
|
|
|
#define CPUFLAG_XOP (AV_CPU_FLAG_XOP | CPUFLAG_AVX)
|
2014-02-22 04:54:01 +00:00
|
|
|
#define CPUFLAG_FMA3 (AV_CPU_FLAG_FMA3 | CPUFLAG_AVX)
|
2012-04-25 17:06:51 +00:00
|
|
|
#define CPUFLAG_FMA4 (AV_CPU_FLAG_FMA4 | CPUFLAG_AVX)
|
2013-10-25 12:53:56 +00:00
|
|
|
#define CPUFLAG_AVX2 (AV_CPU_FLAG_AVX2 | CPUFLAG_AVX)
|
2015-04-18 23:12:54 +00:00
|
|
|
#define CPUFLAG_BMI2 (AV_CPU_FLAG_BMI2 | AV_CPU_FLAG_BMI1)
|
2012-04-25 17:06:51 +00:00
|
|
|
static const AVOption cpuflags_opts[] = {
|
2012-08-31 09:52:18 +00:00
|
|
|
{ "flags" , NULL, 0, AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT64_MIN, INT64_MAX, .unit = "flags" },
|
2012-04-25 17:11:33 +00:00
|
|
|
#if ARCH_PPC
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "altivec" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ALTIVEC }, .unit = "flags" },
|
2012-04-25 17:11:33 +00:00
|
|
|
#elif ARCH_X86
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "mmx" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_MMX }, .unit = "flags" },
|
|
|
|
{ "mmxext" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_MMXEXT }, .unit = "flags" },
|
|
|
|
{ "sse" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE }, .unit = "flags" },
|
|
|
|
{ "sse2" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE2 }, .unit = "flags" },
|
|
|
|
{ "sse2slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE2SLOW }, .unit = "flags" },
|
|
|
|
{ "sse3" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE3 }, .unit = "flags" },
|
|
|
|
{ "sse3slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE3SLOW }, .unit = "flags" },
|
|
|
|
{ "ssse3" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSSE3 }, .unit = "flags" },
|
|
|
|
{ "atom" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ATOM }, .unit = "flags" },
|
|
|
|
{ "sse4.1" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE4 }, .unit = "flags" },
|
|
|
|
{ "sse4.2" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_SSE42 }, .unit = "flags" },
|
|
|
|
{ "avx" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVX }, .unit = "flags" },
|
2015-05-26 17:29:06 +00:00
|
|
|
{ "avxslow" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVXSLOW }, .unit = "flags" },
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "xop" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_XOP }, .unit = "flags" },
|
2014-02-22 04:54:01 +00:00
|
|
|
{ "fma3" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_FMA3 }, .unit = "flags" },
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "fma4" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_FMA4 }, .unit = "flags" },
|
2013-10-25 12:53:56 +00:00
|
|
|
{ "avx2" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_AVX2 }, .unit = "flags" },
|
2015-04-18 23:12:54 +00:00
|
|
|
{ "bmi1" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_BMI1 }, .unit = "flags" },
|
2014-02-22 04:54:02 +00:00
|
|
|
{ "bmi2" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_BMI2 }, .unit = "flags" },
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "3dnow" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_3DNOW }, .unit = "flags" },
|
|
|
|
{ "3dnowext", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = CPUFLAG_3DNOWEXT }, .unit = "flags" },
|
|
|
|
{ "cmov", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_CMOV }, .unit = "flags" },
|
2012-04-25 17:11:33 +00:00
|
|
|
#elif ARCH_ARM
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "armv5te", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV5TE }, .unit = "flags" },
|
|
|
|
{ "armv6", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6 }, .unit = "flags" },
|
|
|
|
{ "armv6t2", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV6T2 }, .unit = "flags" },
|
|
|
|
{ "vfp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP }, .unit = "flags" },
|
2015-12-09 21:28:36 +00:00
|
|
|
{ "vfp_vm", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP_VM }, .unit = "flags" },
|
2012-08-31 09:45:52 +00:00
|
|
|
{ "vfpv3", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFPV3 }, .unit = "flags" },
|
|
|
|
{ "neon", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_NEON }, .unit = "flags" },
|
2013-12-10 19:13:32 +00:00
|
|
|
#elif ARCH_AARCH64
|
2014-04-05 11:46:51 +00:00
|
|
|
{ "armv8", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_ARMV8 }, .unit = "flags" },
|
2013-12-10 19:13:32 +00:00
|
|
|
{ "neon", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_NEON }, .unit = "flags" },
|
|
|
|
{ "vfp", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AV_CPU_FLAG_VFP }, .unit = "flags" },
|
2012-04-25 17:11:33 +00:00
|
|
|
#endif
|
2012-04-25 17:06:51 +00:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
static const AVClass class = {
|
|
|
|
.class_name = "cpuflags",
|
|
|
|
.item_name = av_default_item_name,
|
|
|
|
.option = cpuflags_opts,
|
|
|
|
.version = LIBAVUTIL_VERSION_INT,
|
|
|
|
};
|
|
|
|
|
|
|
|
int flags = 0, ret;
|
|
|
|
const AVClass *pclass = &class;
|
|
|
|
|
|
|
|
if ((ret = av_opt_eval_flags(&pclass, &cpuflags_opts[0], s, &flags)) < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return flags & INT_MAX;
|
|
|
|
}
|
|
|
|
|
2013-05-23 06:59:07 +00:00
|
|
|
int av_cpu_count(void)
|
|
|
|
{
|
2013-06-01 13:38:51 +00:00
|
|
|
int nb_cpus = 1;
|
2013-05-23 06:59:07 +00:00
|
|
|
#if HAVE_SCHED_GETAFFINITY && defined(CPU_COUNT)
|
|
|
|
cpu_set_t cpuset;
|
|
|
|
|
|
|
|
CPU_ZERO(&cpuset);
|
|
|
|
|
2013-06-01 13:38:51 +00:00
|
|
|
if (!sched_getaffinity(0, sizeof(cpuset), &cpuset))
|
2013-05-23 06:59:07 +00:00
|
|
|
nb_cpus = CPU_COUNT(&cpuset);
|
|
|
|
#elif HAVE_GETPROCESSAFFINITYMASK
|
|
|
|
DWORD_PTR proc_aff, sys_aff;
|
2013-06-01 13:38:51 +00:00
|
|
|
if (GetProcessAffinityMask(GetCurrentProcess(), &proc_aff, &sys_aff))
|
2013-05-23 06:59:07 +00:00
|
|
|
nb_cpus = av_popcount64(proc_aff);
|
|
|
|
#elif HAVE_SYSCTL && defined(HW_NCPU)
|
|
|
|
int mib[2] = { CTL_HW, HW_NCPU };
|
|
|
|
size_t len = sizeof(nb_cpus);
|
|
|
|
|
2013-06-01 13:38:51 +00:00
|
|
|
if (sysctl(mib, 2, &nb_cpus, &len, NULL, 0) == -1)
|
2013-05-23 06:59:07 +00:00
|
|
|
nb_cpus = 0;
|
|
|
|
#elif HAVE_SYSCONF && defined(_SC_NPROC_ONLN)
|
|
|
|
nb_cpus = sysconf(_SC_NPROC_ONLN);
|
|
|
|
#elif HAVE_SYSCONF && defined(_SC_NPROCESSORS_ONLN)
|
|
|
|
nb_cpus = sysconf(_SC_NPROCESSORS_ONLN);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return nb_cpus;
|
|
|
|
}
|
2017-02-08 08:32:17 +00:00
|
|
|
|
|
|
|
size_t av_cpu_max_align(void)
|
|
|
|
{
|
2017-09-14 19:51:26 +00:00
|
|
|
if (ARCH_AARCH64)
|
|
|
|
return ff_get_cpu_max_align_aarch64();
|
|
|
|
if (ARCH_ARM)
|
|
|
|
return ff_get_cpu_max_align_arm();
|
|
|
|
if (ARCH_PPC)
|
|
|
|
return ff_get_cpu_max_align_ppc();
|
|
|
|
if (ARCH_X86)
|
|
|
|
return ff_get_cpu_max_align_x86();
|
2017-02-08 08:32:17 +00:00
|
|
|
return 8;
|
|
|
|
}
|