1848b8605Smrg/*
2848b8605Smrg * Mesa 3-D graphics library
3848b8605Smrg *
4848b8605Smrg * Copyright (C) 2009  VMware, Inc.  All Rights Reserved.
5848b8605Smrg *
6848b8605Smrg * Permission is hereby granted, free of charge, to any person obtaining a
7848b8605Smrg * copy of this software and associated documentation files (the "Software"),
8848b8605Smrg * to deal in the Software without restriction, including without limitation
9848b8605Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10848b8605Smrg * and/or sell copies of the Software, and to permit persons to whom the
11848b8605Smrg * Software is furnished to do so, subject to the following conditions:
12848b8605Smrg *
13848b8605Smrg * The above copyright notice and this permission notice shall be included
14848b8605Smrg * in all copies or substantial portions of the Software.
15848b8605Smrg *
16848b8605Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17848b8605Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18848b8605Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19848b8605Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20848b8605Smrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21848b8605Smrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22848b8605Smrg * OTHER DEALINGS IN THE SOFTWARE.
23848b8605Smrg */
24848b8605Smrg
25848b8605Smrg
26b8e80941Smrg#include "main/imports.h"
27848b8605Smrg#include "main/cpuinfo.h"
28848b8605Smrg
29848b8605Smrg
30848b8605Smrg/**
31848b8605Smrg * This function should be called before the various "cpu_has_foo" macros
32848b8605Smrg * are used.
33848b8605Smrg */
34848b8605Smrgvoid
35848b8605Smrg_mesa_get_cpu_features(void)
36848b8605Smrg{
37848b8605Smrg#if defined USE_X86_ASM || defined USE_X86_64_ASM
38848b8605Smrg   _mesa_get_x86_features();
39848b8605Smrg#endif
40848b8605Smrg}
41848b8605Smrg
42848b8605Smrg
43848b8605Smrg/**
44848b8605Smrg * Return a string describing the CPU architexture and extensions that
45848b8605Smrg * Mesa is using (such as SSE or Altivec).
46848b8605Smrg * \return information string, free it with free()
47848b8605Smrg */
48848b8605Smrgchar *
49848b8605Smrg_mesa_get_cpu_string(void)
50848b8605Smrg{
51848b8605Smrg#define MAX_STRING 50
52848b8605Smrg   char *buffer;
53848b8605Smrg
54848b8605Smrg   buffer = malloc(MAX_STRING);
55848b8605Smrg   if (!buffer)
56848b8605Smrg      return NULL;
57848b8605Smrg
58848b8605Smrg   buffer[0] = 0;
59848b8605Smrg
60848b8605Smrg#ifdef USE_X86_ASM
61848b8605Smrg
62848b8605Smrg   if (_mesa_x86_cpu_features) {
63848b8605Smrg      strcat(buffer, "x86");
64848b8605Smrg   }
65848b8605Smrg
66848b8605Smrg# ifdef USE_MMX_ASM
67848b8605Smrg   if (cpu_has_mmx) {
68848b8605Smrg      strcat(buffer, (cpu_has_mmxext) ? "/MMX+" : "/MMX");
69848b8605Smrg   }
70848b8605Smrg# endif
71848b8605Smrg# ifdef USE_3DNOW_ASM
72848b8605Smrg   if (cpu_has_3dnow) {
73848b8605Smrg      strcat(buffer, (cpu_has_3dnowext) ? "/3DNow!+" : "/3DNow!");
74848b8605Smrg   }
75848b8605Smrg# endif
76848b8605Smrg# ifdef USE_SSE_ASM
77848b8605Smrg   if (cpu_has_xmm) {
78848b8605Smrg      strcat(buffer, (cpu_has_xmm2) ? "/SSE2" : "/SSE");
79848b8605Smrg   }
80848b8605Smrg# endif
81848b8605Smrg
82848b8605Smrg#elif defined(USE_SPARC_ASM)
83848b8605Smrg
84848b8605Smrg   strcat(buffer, "SPARC");
85848b8605Smrg
86848b8605Smrg#endif
87848b8605Smrg
88848b8605Smrg   assert(strlen(buffer) < MAX_STRING);
89848b8605Smrg
90848b8605Smrg   return buffer;
91848b8605Smrg}
92