77 lines
2.3 KiB
C
77 lines
2.3 KiB
C
/* LIBPIKA - The PIKA Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
*
|
|
* This library is free software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see
|
|
* <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#if !defined (__PIKA_BASE_H_INSIDE__) && !defined (PIKA_BASE_COMPILATION)
|
|
#error "Only <libpikabase/pikabase.h> can be included directly."
|
|
#endif
|
|
|
|
#ifndef __PIKA_CPU_ACCEL_H__
|
|
#define __PIKA_CPU_ACCEL_H__
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
/**
|
|
* PikaCpuAccelFlags:
|
|
* @PIKA_CPU_ACCEL_NONE: None
|
|
* @PIKA_CPU_ACCEL_X86_MMX: MMX
|
|
* @PIKA_CPU_ACCEL_X86_3DNOW: 3dNow
|
|
* @PIKA_CPU_ACCEL_X86_MMXEXT: MMXEXT
|
|
* @PIKA_CPU_ACCEL_X86_SSE: SSE
|
|
* @PIKA_CPU_ACCEL_X86_SSE2: SSE2
|
|
* @PIKA_CPU_ACCEL_X86_SSE3: SSE3
|
|
* @PIKA_CPU_ACCEL_X86_SSSE3: SSSE3
|
|
* @PIKA_CPU_ACCEL_X86_SSE4_1: SSE4_1
|
|
* @PIKA_CPU_ACCEL_X86_SSE4_2: SSE4_2
|
|
* @PIKA_CPU_ACCEL_X86_AVX: AVX
|
|
* @PIKA_CPU_ACCEL_PPC_ALTIVEC: Altivec
|
|
*
|
|
* Types of detectable CPU accelerations
|
|
**/
|
|
typedef enum
|
|
{
|
|
PIKA_CPU_ACCEL_NONE = 0x0,
|
|
|
|
/* x86 accelerations */
|
|
PIKA_CPU_ACCEL_X86_MMX = 0x80000000,
|
|
PIKA_CPU_ACCEL_X86_3DNOW = 0x40000000,
|
|
PIKA_CPU_ACCEL_X86_MMXEXT = 0x20000000,
|
|
PIKA_CPU_ACCEL_X86_SSE = 0x10000000,
|
|
PIKA_CPU_ACCEL_X86_SSE2 = 0x08000000,
|
|
PIKA_CPU_ACCEL_X86_SSE3 = 0x02000000,
|
|
PIKA_CPU_ACCEL_X86_SSSE3 = 0x01000000,
|
|
PIKA_CPU_ACCEL_X86_SSE4_1 = 0x00800000,
|
|
PIKA_CPU_ACCEL_X86_SSE4_2 = 0x00400000,
|
|
PIKA_CPU_ACCEL_X86_AVX = 0x00200000,
|
|
|
|
/* powerpc accelerations */
|
|
PIKA_CPU_ACCEL_PPC_ALTIVEC = 0x04000000
|
|
} PikaCpuAccelFlags;
|
|
|
|
|
|
PikaCpuAccelFlags pika_cpu_accel_get_support (void);
|
|
|
|
|
|
/* for internal use only */
|
|
void pika_cpu_accel_set_use (gboolean use);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __PIKA_CPU_ACCEL_H__ */
|