1 | /* $Id: common_x86.c,v 1.3 2000-05-23 20:40:25 jeroen Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Mesa 3-D graphics library
|
---|
5 | * Version: 3.3
|
---|
6 | *
|
---|
7 | * Copyright (C) 1999 Brian Paul All Rights Reserved.
|
---|
8 | *
|
---|
9 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
10 | * copy of this software and associated documentation files (the "Software"),
|
---|
11 | * to deal in the Software without restriction, including without limitation
|
---|
12 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
13 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
14 | * Software is furnished to do so, subject to the following conditions:
|
---|
15 | *
|
---|
16 | * The above copyright notice and this permission notice shall be included
|
---|
17 | * in all copies or substantial portions of the Software.
|
---|
18 | *
|
---|
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
---|
20 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
22 | * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
---|
23 | * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
24 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*
|
---|
29 | * Check CPU capabilities & initialize optimized funtions for this particular
|
---|
30 | * processor.
|
---|
31 | *
|
---|
32 | * Written by Holger Waechtler <holger@akaflieg.extern.tu-berlin.de>
|
---|
33 | */
|
---|
34 |
|
---|
35 | #include "glheader.h"
|
---|
36 | #include "common_x86asm.h"
|
---|
37 |
|
---|
38 | #ifdef __WIN32OS2__
|
---|
39 | #include <cpuhlp.h>
|
---|
40 | #else
|
---|
41 | int gl_x86_cpu_features = 0;
|
---|
42 | #endif
|
---|
43 |
|
---|
44 | static void message(const char *msg)
|
---|
45 | {
|
---|
46 | if (getenv("MESA_DEBUG"))
|
---|
47 | fprintf(stderr, "%s\n", msg);
|
---|
48 | }
|
---|
49 |
|
---|
50 |
|
---|
51 | void gl_init_all_x86_asm (void)
|
---|
52 | {
|
---|
53 | #ifdef USE_X86_ASM
|
---|
54 |
|
---|
55 | #ifdef __WIN32OS2__
|
---|
56 | /* Odin specific - use 'built in' cpuhlp lib */
|
---|
57 | if(CPUFeatures & CPUID_FPU_PRESENT)
|
---|
58 | {
|
---|
59 | gl_init_x86_asm_transforms();
|
---|
60 | }
|
---|
61 |
|
---|
62 | #if defined(USE_3DNOW_ASM)
|
---|
63 | if(CPUFeatures /*& CPUID_3DNOW*/)
|
---|
64 | {
|
---|
65 | gl_init_3dnow_asm_transforms();
|
---|
66 | }
|
---|
67 | #endif /* USE_3DNOW_ASM */
|
---|
68 |
|
---|
69 | #else /* __WIN32OS2__ */
|
---|
70 | gl_x86_cpu_features = gl_identify_x86_cpu_features ();
|
---|
71 | gl_x86_cpu_features |= GL_CPU_AnyX86;
|
---|
72 |
|
---|
73 | if (getenv("MESA_NO_ASM") != 0)
|
---|
74 | gl_x86_cpu_features = 0;
|
---|
75 |
|
---|
76 | if (gl_x86_cpu_features & GL_CPU_GenuineIntel) {
|
---|
77 | message("GenuineIntel cpu detected.");
|
---|
78 | }
|
---|
79 |
|
---|
80 | if (gl_x86_cpu_features) {
|
---|
81 | gl_init_x86_asm_transforms ();
|
---|
82 | }
|
---|
83 |
|
---|
84 | #ifdef USE_MMX_ASM
|
---|
85 | if (gl_x86_cpu_features & GL_CPU_MMX) {
|
---|
86 | char *s = getenv( "MESA_NO_MMX" );
|
---|
87 | if (s == NULL) {
|
---|
88 | message("MMX cpu detected.");
|
---|
89 | } else {
|
---|
90 | gl_x86_cpu_features &= (~GL_CPU_MMX);
|
---|
91 | }
|
---|
92 | }
|
---|
93 | #endif /* USE_MMX_ASM */
|
---|
94 |
|
---|
95 |
|
---|
96 | #ifdef USE_3DNOW_ASM
|
---|
97 | if (gl_x86_cpu_features & GL_CPU_3Dnow) {
|
---|
98 | char *s = getenv( "MESA_NO_3DNOW" );
|
---|
99 | if (s == NULL) {
|
---|
100 | message("3Dnow cpu detected.");
|
---|
101 | gl_init_3dnow_asm_transforms ();
|
---|
102 | } else {
|
---|
103 | gl_x86_cpu_features &= (~GL_CPU_3Dnow);
|
---|
104 | }
|
---|
105 | }
|
---|
106 | #endif /* USE_3DNOW_ASM */
|
---|
107 |
|
---|
108 | #endif /* __WIN32OS2__ */
|
---|
109 |
|
---|
110 | #endif /* USE_X86_ASM */
|
---|
111 | }
|
---|
112 |
|
---|