/*****************************************************************************1* cpu.h: cpu detection2*****************************************************************************3* Copyright (C) 2004-2016 x264 project4*5* Authors: Loren Merritt <[email protected]>6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17* You should have received a copy of the GNU General Public License18* along with this program; if not, write to the Free Software19* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111, USA.20*21* This program is also available under a commercial proprietary license.22* For more information, contact us at [email protected].23*****************************************************************************/2425#ifndef X264_CPU_H26#define X264_CPU_H2728uint32_t x264_cpu_detect( void );29int x264_cpu_num_processors( void );30void x264_cpu_emms( void );31void x264_cpu_sfence( void );32#if HAVE_MMX33/* There is no way to forbid the compiler from using float instructions34* before the emms so miscompilation could theoretically occur in the35* unlikely event that the compiler reorders emms and float instructions. */36#if HAVE_X86_INLINE_ASM37/* Clobbering memory makes the compiler less likely to reorder code. */38#define x264_emms() asm volatile( "emms":::"memory","st","st(1)","st(2)", \39"st(3)","st(4)","st(5)","st(6)","st(7)" )40#else41#define x264_emms() x264_cpu_emms()42#endif43#else44#define x264_emms()45#endif46#define x264_sfence x264_cpu_sfence4748/* kludge:49* gcc can't give variables any greater alignment than the stack frame has.50* We need 32 byte alignment for AVX2, so here we make sure that the stack is51* aligned to 32 bytes.52* gcc 4.2 introduced __attribute__((force_align_arg_pointer)) to fix this53* problem, but I don't want to require such a new version.54* aligning to 32 bytes only works if the compiler supports keeping that55* alignment between functions (osdep.h handles manual alignment of arrays56* if it doesn't).57*/58#if (ARCH_X86 || STACK_ALIGNMENT > 16) && HAVE_MMX59intptr_t x264_stack_align( void (*func)(), ... );60#define x264_stack_align(func,...) x264_stack_align((void (*)())func, __VA_ARGS__)61#else62#define x264_stack_align(func,...) func(__VA_ARGS__)63#endif6465typedef struct66{67const char name[16];68uint32_t flags;69} x264_cpu_name_t;70extern const x264_cpu_name_t x264_cpu_names[];7172#endif737475