view cpudetect.h @ 17216:0fd3e0cc4fd0

1.1180: [does not apply] 1.1179: Removing obsolete, and until recently, misdocumented option -verbose. 1.1178: make -o mandatory and add a warning when the extension does not match the container format, patch by Reynaldo Pinochet 1.1177: Another examples showing how to play raw YUV video samples 1.1176: Make -really-quiet a common option. 1.1175: Fix -v/-verbose description. 1.1174: 10l: \ needs to be escaped in roff. 1.1173: 1/4l 1.1172: Formatting fix 1.1171: Give an example about how to use the famous cqif video samples
author ranma
date Sat, 17 Dec 2005 20:02:47 +0000
parents 821f464b4d90
children b5c6755ffa29
line wrap: on
line source

#ifndef CPUDETECT_H
#define CPUDETECT_H

#define CPUTYPE_I386	3
#define CPUTYPE_I486	4
#define CPUTYPE_I586	5
#define CPUTYPE_I686    6

#ifdef ARCH_X86_64
#  define REGa    rax
#  define REGb    rbx
#  define REGSP   rsp
#  define REG_a  "rax"
#  define REG_b  "rbx"
#  define REG_c  "rcx"
#  define REG_d  "rdx"
#  define REG_S  "rsi"
#  define REG_D  "rdi"
#  define REG_SP "rsp"
#  define REG_BP "rbp"
#else
#  define REGa    eax
#  define REGb    ebx
#  define REGSP   esp
#  define REG_a  "eax"
#  define REG_b  "ebx"
#  define REG_c  "ecx"
#  define REG_d  "edx"
#  define REG_S  "esi"
#  define REG_D  "edi"
#  define REG_SP "esp"
#  define REG_BP "ebp"
#endif

typedef struct cpucaps_s {
	int cpuType;
	int cpuStepping;
	int hasMMX;
	int hasMMX2;
	int has3DNow;
	int has3DNowExt;
	int hasSSE;
	int hasSSE2;
	int isX86;
	unsigned cl_size; /* size of cache line */
        int hasAltiVec;
	int hasTSC;
} CpuCaps;

extern CpuCaps gCpuCaps;

void GetCpuCaps(CpuCaps *caps);

/* returned value is malloc()'ed so free() it after use */
char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]);

#endif /* !CPUDETECT_H */